From a3637ae537ca09302ebac88c2802b81b1e550caa Mon Sep 17 00:00:00 2001 From: Artemis Date: Thu, 30 Nov 2023 19:33:26 +0000 Subject: [PATCH 1/8] Init Commit --- .gitignore | 3 + assets/LAVIS_technical_report.pdf | Bin 1627414 -> 0 bytes .../datasets/aokvqa/defaults_instruct.yaml | 52 + .../datasets/audiocaps/defaults_mm_cap.yaml | 49 + .../audiocaps/defaults_mm_cap_instruct.yaml | 52 + .../datasets/audiocaps/defaults_mm_qa.yaml | 51 + .../datasets/audioset/defaults_mm_cap.yaml | 47 + .../audioset/defaults_mm_cap_instruct.yaml | 48 + .../avsd/defaults_mm_dial_instruct.yaml | 65 + .../datasets/capfilt14m/defaults_cap.yaml | 30 + .../capfilt14m/defaults_cap_instruct.yaml | 34 + .../datasets/charade/defaults_cap.yaml | 52 + .../charade/defaults_cap_instruct.yaml | 54 + .../datasets/clotho/defaults_mm_cap.yaml | 41 + .../clotho/defaults_mm_cap_instruct.yaml | 42 + .../datasets/clotho/defaults_mm_qa.yaml | 44 + .../datasets/coco/defaults_cap_instruct.yaml | 44 + .../datasets/coco/defaults_vqa_instruct.yaml | 57 + lavis/configs/datasets/coin/defaults_cap.yaml | 51 + .../datasets/coin/defaults_cap_instruct.yaml | 53 + .../defaults_12m_instruct.yaml | 37 + .../defaults_3m_instruct.yaml | 36 + .../defaults_mm_audio_video.yaml | 63 + .../defaults_mm_image_pc.yaml | 48 + .../audiocaps_discrn.json | 1 + .../objaverse_discrn.json | 1 + .../datasets/esc50/defaults_mm_cls.yaml | 37 + .../datasets/flickr30k/defaults_cap.yaml | 39 + .../flickr30k/defaults_cap_instruct.yaml | 41 + .../gqa/balanced_testdev_instruct.yaml | 46 + .../datasets/gqa/balanced_val_instruct.yaml | 47 + .../datasets/gqa/defaults_instruct.yaml | 55 + lavis/configs/datasets/iconqa/defaults.yaml | 52 + .../datasets/iconqa/defaults_instruct.yaml | 55 + .../configs/datasets/laion/defaults_400M.yaml | 20 + .../laion/defaults_400M_instruct.yaml | 31 + .../datasets/llava150k/defaults_dial.yaml | 32 + .../datasets/modelnet40/defaults_cls.yaml | 55 + .../msrvtt/defaults_cap_instruct.yaml | 48 + .../datasets/msrvtt/defaults_qa_instruct.yaml | 51 + .../datasets/msvd/defaults_cap_instruct.yaml | 50 + .../datasets/msvd/defaults_qa_instruct.yaml | 53 + .../datasets/music_avqa/defaults_mm_qa.yaml | 66 + .../music_avqa/defaults_mm_qa_instruct.yaml | 69 + .../datasets/objaverse/defaults_mm_cap.yaml | 54 + .../objaverse/defaults_mm_cap_instruct.yaml | 55 + .../datasets/objaverse/defaults_mm_qa.yaml | 55 + lavis/configs/datasets/ocrvqa/defaults.yaml | 33 + .../datasets/ocrvqa/defaults_instruct.yaml | 35 + .../datasets/okvqa/defaults_instruct.yaml | 53 + .../sbu_caption/defaults_instruct.yaml | 38 + .../configs/datasets/scienceqa/defaults.yaml | 51 + .../datasets/scienceqa/defaults_instruct.yaml | 54 + .../datasets/shapenet/defaults_mm_cap.yaml | 51 + .../shapenet/defaults_mm_cap_instruct.yaml | 53 + .../datasets/snli_ve/defaults_instruct.yaml | 49 + lavis/configs/datasets/textcaps/defaults.yaml | 46 + .../datasets/textcaps/defaults_instruct.yaml | 47 + .../datasets/valor/defaults_mm_cap.yaml | 68 + .../valor/defaults_mm_cap_instruct.yaml | 70 + .../configs/datasets/vatex/defaults_cap.yaml | 2 +- .../datasets/vatex/defaults_cap_instruct.yaml | 62 + .../vg/defaults_caption_instruct.yaml | 34 + .../datasets/vg/defaults_vqa_instruct.yaml | 34 + .../configs/datasets/violin/defaults_cap.yaml | 51 + .../violin/defaults_cap_instruct.yaml | 53 + .../datasets/violin/defaults_entail.yaml | 52 + .../violin/defaults_entail_instruct.yaml | 51 + .../datasets/visdial/defaults_dial.yaml | 41 + .../visdial/defaults_dial_instruct.yaml | 41 + lavis/configs/datasets/vizwiz/defaults.yaml | 43 + lavis/configs/datasets/vlep/defaults_cap.yaml | 51 + .../datasets/vlep/defaults_cap_instruct.yaml | 53 + lavis/configs/datasets/vsr/defaults.yaml | 49 + .../datasets/vsr/defaults_classification.yaml | 49 + .../vsr/defaults_classification_instruct.yaml | 49 + .../datasets/vsr/defaults_instruct.yaml | 53 + .../datasets/wavcaps/defaults_mm_cap.yaml | 63 + .../wavcaps/defaults_mm_cap_instruct.yaml | 63 + .../configs/datasets/webvid/defaults_cap.yaml | 41 + .../webvid/defaults_cap_instruct.yaml | 43 + .../datasets/youcook/defaults_cap.yaml | 51 + .../youcook/defaults_cap_instruct.yaml | 53 + .../datasets/yt8m/defaults_mm_dial.yaml | 62 + .../blip2/blip2_xinstruct_vicuna13b.yaml | 74 + .../blip2/blip2_xinstruct_vicuna7b.yaml | 77 + .../builders/audio_caption_builder.py | 123 + lavis/datasets/builders/audio_qa_builder.py | 28 + lavis/datasets/builders/discrn_builders.py | 28 + .../builders/object3d_caption_builder.py | 65 + .../object3d_classification_builder.py | 19 + .../datasets/builders/object3d_qa_builder.py | 19 + .../datasets/audio_captioning_datasets.py | 407 +++ .../datasets/audio_classification_datasets.py | 100 + lavis/datasets/datasets/audio_qa_datasets.py | 116 + lavis/datasets/datasets/capfilt_dataset.py | 58 + .../discriminatory_reasoning_datasets.py | 165 ++ lavis/datasets/datasets/iconqa_datasets.py | 143 + lavis/datasets/datasets/llava150k_dataset.py | 37 + lavis/datasets/datasets/music_avqa.py | 71 + .../datasets/object3d_captioning_datasets.py | 177 ++ .../object3d_classification_datasets.py | 158 + .../datasets/datasets/object3d_qa_datasets.py | 65 + lavis/datasets/datasets/ocr_datasets.py | 69 + lavis/datasets/datasets/textcaps_datasets.py | 57 + lavis/datasets/datasets/valor_caption.py | 104 + .../datasets/vatex_captioning_datasets.py | 104 + lavis/datasets/datasets/violin_dataset.py | 112 + .../datasets/visdial_dialogue_datasets.py | 138 + .../datasets/datasets/vizwiz_vqa_datasets.py | 54 + lavis/datasets/datasets/vlep_dataset.py | 72 + lavis/datasets/datasets/vsr_datasets.py | 104 + .../datasets/yt8m_video_dialogue_datasets.py | 66 + .../download_scripts/download_charade.py | 26 + .../download_scripts/download_coin.py | 57 + .../download_scripts/download_iconqa.py | 35 + .../download_scripts/download_violin.py | 19 + lavis/models/beats/BEATs.py | 180 ++ lavis/models/beats/LICENSE_BEATs.txt | 21 + lavis/models/beats/README.md | 127 + lavis/models/beats/Tokenizers.py | 173 ++ lavis/models/beats/backbone.py | 783 +++++ lavis/models/beats/modules.py | 219 ++ lavis/models/beats/quantizer.py | 215 ++ lavis/models/beats_encoder.py | 43 + .../blip2_models/blip2_vicuna_xinstruct.py | 2640 +++++++++++++++++ lavis/models/ulip_models/ULIP_models.py | 243 ++ lavis/models/ulip_models/losses.py | 62 + .../pointbert/PointTransformer_8192point.yaml | 32 + .../ulip_models/pointbert/checkpoint.py | 126 + lavis/models/ulip_models/pointbert/dvae.py | 342 +++ lavis/models/ulip_models/pointbert/logger.py | 127 + lavis/models/ulip_models/pointbert/misc.py | 287 ++ .../ulip_models/pointbert/point_encoder.py | 225 ++ .../ulip_models/ulip_scaled_up_config.yaml | 32 + lavis/models/ulip_models/utils/__init__.py | 7 + lavis/models/ulip_models/utils/build.py | 17 + lavis/models/ulip_models/utils/config.py | 63 + lavis/models/ulip_models/utils/io.py | 42 + lavis/models/ulip_models/utils/logger.py | 127 + lavis/models/ulip_models/utils/registry.py | 288 ++ lavis/models/ulip_models/utils/tokenizer.py | 151 + lavis/models/ulip_models/utils/utils.py | 242 ++ lavis/processors/audio_processors.py | 141 + .../processors/instruction_text_processors.py | 502 ++++ lavis/processors/ulip_processors.py | 260 ++ ...ption_nocaps_out_domain_flant5xl_eval.yaml | 81 + ...tion_nocaps_out_domain_flant5xxl_eval.yaml | 81 + .../caption_coco_flant5xl_eval_test.yaml | 89 + .../caption_coco_flant5xl_eval_val.yaml | 89 + .../caption_coco_flant5xxl_eval_test.yaml | 89 + .../caption_coco_flant5xxl_eval_val.yaml | 89 + .../caption_coco_vicuna13b_eval_test.yaml | 90 + .../caption_coco_vicuna13b_eval_val.yaml | 90 + .../caption_coco_vicuna7b_eval_test.yaml | 89 + .../caption_coco_vicuna7b_eval_val.yaml | 89 + .../caption_msrvtt_flant5xl_eval_test.yaml | 95 + .../caption_msrvtt_flant5xl_eval_val.yaml | 96 + .../caption_msrvtt_flant5xxl_eval_test.yaml | 96 + .../caption_msrvtt_flant5xxl_eval_val.yaml | 96 + .../caption_msrvtt_vicuna13b_eval_test.yaml | 93 + .../caption_msrvtt_vicuna13b_eval_val.yaml | 94 + .../caption_msrvtt_vicuna7b_eval_test.yaml | 95 + .../caption_msrvtt_vicuna7b_eval_val.yaml | 95 + .../caption_msvd_flant5xl_eval.yaml | 92 + .../caption_msvd_flant5xxl_eval.yaml | 92 + .../caption_msvd_vicuna13b_eval.yaml | 93 + .../caption_msvd_vicuna7b_eval.yaml | 93 + ...ption_nocaps_out_domain_flant5xl_eval.yaml | 82 + ...tion_nocaps_out_domain_flant5xxl_eval.yaml | 82 + ...tion_nocaps_out_domain_vicuna13b_eval.yaml | 82 + ...ption_nocaps_out_domain_vicuna7b_eval.yaml | 82 + .../caption_vatex_flant5xl_eval.yaml | 90 + .../caption_vatex_flant5xxl_eval.yaml | 90 + .../caption_vatex_vicuna13b_eval.yaml | 90 + .../caption_vatex_vicuna7b_eval.yaml | 91 + .../classification_modelnet40_vicuna13b.yaml | 101 + .../classification_modelnet40_vicuna7b.yaml | 100 + .../classification_snlive_flant5xl.yaml | 94 + .../classification_snlive_flant5xxl.yaml | 95 + .../classification_snlive_vicuna13b.yaml | 93 + .../classification_snlive_vicuna13b_test.yaml | 93 + .../classification_snlive_vicuna7b_test.yaml | 93 + .../classification_snlive_vicuna7b_val.yaml | 93 + .../completion_modelnet40_vicuna13b.yaml | 101 + .../completion_modelnet40_vicuna7b.yaml | 102 + .../qa_msrvtt_flant5xl_eval_test.yaml | 92 + .../qa_msrvtt_flant5xxl_eval_test.yaml | 92 + .../qa_msrvtt_vicuna13b_eval_test.yaml | 92 + .../qa_msrvtt_vicuna7b_eval_test.yaml | 92 + .../instructblip/qa_msvd_flant5xl_eval.yaml | 100 + .../instructblip/qa_msvd_flant5xxl_eval.yaml | 100 + .../instructblip/qa_msvd_vicuna13b_eval.yaml | 100 + .../instructblip/qa_msvd_vicuna7b_eval.yaml | 100 + .../instructblip/qa_okvqa_flant5xl_eval.yaml | 90 + .../instructblip/qa_okvqa_flant5xxl_eval.yaml | 90 + .../instructblip/qa_okvqa_vicuna13b_eval.yaml | 90 + .../instructblip/qa_okvqa_vicuna7b_eval.yaml | 90 + .../eval/discrn/audio_video_caption.yaml | 176 ++ .../eval/discrn/audio_video_caption_13b.yaml | 176 ++ .../eval/discrn/audio_video_describe.yaml | 176 ++ .../eval/discrn/audio_video_describe_13b.yaml | 177 ++ .../discrn/audio_video_describe_nocue.yaml | 176 ++ .../audio_video_describe_proj copy.yaml | 179 ++ .../discrn/audio_video_describe_proj.yaml | 179 ++ .../audio_video_describe_rand_init.yaml | 176 ++ .../eval/discrn/image_3d_caption.yaml | 154 + .../eval/discrn/image_3d_caption_13b.yaml | 154 + .../eval/discrn/image_3d_describe.yaml | 154 + .../eval/discrn/image_3d_describe_13b.yaml | 154 + .../discrn/image_3d_describe_no_init.yaml | 154 + .../eval/discrn/image_3d_describe_nocue.yaml | 154 + .../eval/discrn/image_3d_describe_proj.yaml | 157 + .../audio/audiocaps_captioning_qa.yaml | 159 + .../audio/audiocaps_captioning_test.yaml | 161 + .../audio/audiocaps_captioning_val.yaml | 161 + .../vicuna13b/audio/clothoQA_captioning.yaml | 155 + .../vicuna13b/audio/clothov1_captioning.yaml | 147 + .../vicuna13b/audio/clothov2_captioning.yaml | 148 + .../vicuna13b/audio/esc50_classification.yaml | 151 + .../esc50_classification_completion.yaml | 151 + .../musicavqa/musicavqa_audio_eval.yaml | 182 ++ .../musicavqa/musicavqa_joint_eval.yaml | 181 ++ .../musicavqa/musicavqa_video_eval.yaml | 182 ++ .../vatex/vatex_audio_captioning.yaml | 183 ++ .../crossmodal/vatex/vatex_captioning.yaml | 180 ++ .../vatex/vatex_joint_captioning.yaml | 183 ++ .../vatex_joint_captioning_interleave.yaml | 184 ++ .../vicuna13b/image/coco_captioning_test.yaml | 154 + .../vicuna13b/image/coco_captioning_val.yaml | 154 + .../vicuna13b/image/flickr30k_captioning.yaml | 150 + .../eval/vicuna13b/image/gqa_qa.yaml | 148 + .../vicuna13b/image/nocaps_captioning.yaml | 142 + .../image/nocaps_out_domain_captioning.yaml | 143 + .../eval/vicuna13b/image/okvqa_qa.yaml | 157 + .../image/snlive_classification_test.yaml | 153 + .../image/snlive_classification_val.yaml | 153 + .../eval/vicuna13b/image/vizwiz_qa.yaml | 151 + .../image_with_coco/coco_captioning_test.yaml | 154 + .../image_with_coco/coco_captioning_val.yaml | 154 + .../image_with_coco/flickr30k_captioning.yaml | 149 + .../vicuna13b/image_with_coco/gqa_qa.yaml | 147 + .../image_with_coco/nocaps_captioning.yaml | 142 + .../nocaps_out_domain_captioning.yaml | 143 + .../vicuna13b/image_with_coco/okvqa_qa.yaml | 156 + .../snlive_classification_test.yaml | 152 + .../snlive_classification_val.yaml | 152 + .../vicuna13b/image_with_coco/vizwiz_qa.yaml | 151 + .../pc/modelnet40_classification.yaml | 148 + .../vicuna13b/pc/modelnet40_completion.yaml | 147 + .../vicuna13b/pc/objaverse_captioning.yaml | 167 ++ .../eval/vicuna13b/pc/objaverse_qa.yaml | 166 ++ .../vicuna13b/video/msrvtt_captioning.yaml | 159 + .../video/msrvtt_captioning_test.yaml | 160 + .../video/msrvtt_captioning_val.yaml | 160 + .../eval/vicuna13b/video/msrvtt_qa_test.yaml | 158 + .../eval/vicuna13b/video/msrvtt_qa_val.yaml | 158 + .../eval/vicuna13b/video/msvd_captioning.yaml | 158 + .../eval/vicuna13b/video/msvd_qa.yaml | 168 ++ .../video/vatex_audio_captioning.yaml | 183 ++ .../vicuna13b/video/vatex_captioning.yaml | 180 ++ .../video/vatex_joint_captioning.yaml | 183 ++ .../vatex_joint_captioning_interleave.yaml | 184 ++ .../video_image/msvd_captioning.yaml | 158 + .../eval/vicuna13b/video_image/msvd_qa.yaml | 167 ++ .../video_image/vatex_captioning.yaml | 182 ++ .../audio/audiocaps_captioning_qa.yaml | 155 + .../audio/audiocaps_captioning_test.yaml | 160 + .../audio/audiocaps_captioning_val.yaml | 160 + .../vicuna7b/audio/clothoQA_captioning.yaml | 158 + .../vicuna7b/audio/clothov1_captioning.yaml | 147 + .../vicuna7b/audio/clothov2_captioning.yaml | 147 + .../vicuna7b/audio/esc50_classification.yaml | 149 + .../esc50_classification_completion.yaml | 149 + .../audiocaps_captioning_qa.yaml | 159 + .../audiocaps_captioning_test.yaml | 160 + .../audiocaps_captioning_val.yaml | 160 + .../audio_no_init/clothoQA_captioning.yaml | 155 + .../audio_no_init/clothov1_captioning.yaml | 147 + .../audio_no_init/clothov2_captioning.yaml | 147 + .../audio_no_init/esc50_classification.yaml | 151 + .../esc50_classification_completion.yaml | 151 + .../audiocaps_captioning_qa.yaml | 160 + .../audiocaps_captioning_test.yaml | 160 + .../audiocaps_captioning_val.yaml | 160 + .../clothoQA_captioning.yaml | 160 + .../clothov1_captioning.yaml | 149 + .../clothov2_captioning.yaml | 149 + .../esc50_classification.yaml | 154 + .../esc50_classification_completion.yaml | 154 + .../audiocaps_captioning_qa.yaml | 159 + .../audiocaps_captioning_test.yaml | 160 + .../audiocaps_captioning_val.yaml | 160 + .../clothoQA_captioning.yaml | 157 + .../clothov1_captioning.yaml | 149 + .../clothov2_captioning.yaml | 149 + .../esc50_classification.yaml | 154 + .../esc50_classification_completion.yaml | 154 + .../musicavqa/musicavqa_audio_eval.yaml | 182 ++ .../musicavqa/musicavqa_joint_eval.yaml | 182 ++ .../musicavqa/musicavqa_video_eval.yaml | 182 ++ .../vatex/vatex_audio_captioning.yaml | 186 ++ .../crossmodal/vatex/vatex_captioning.yaml | 185 ++ .../vatex/vatex_joint_captioning.yaml | 186 ++ .../vatex_joint_captioning_interleave.yaml | 187 ++ .../vicuna7b/image/coco_captioning_test.yaml | 154 + .../vicuna7b/image/coco_captioning_val.yaml | 154 + .../vicuna7b/image/flickr30k_captioning.yaml | 150 + .../eval/vicuna7b/image/gqa_qa.yaml | 149 + .../eval/vicuna7b/image/gqa_qa_val.yaml | 149 + .../vicuna7b/image/nocaps_captioning.yaml | 145 + .../image/nocaps_out_domain_captioning.yaml | 147 + .../eval/vicuna7b/image/okvqa_qa.yaml | 157 + .../image/snlive_classification_test.yaml | 153 + .../image/snlive_classification_val.yaml | 153 + .../eval/vicuna7b/image/vizwiz_qa.yaml | 152 + .../image_full_init/coco_captioning_test.yaml | 154 + .../image_full_init/coco_captioning_val.yaml | 154 + .../image_full_init/flickr30k_captioning.yaml | 150 + .../eval/vicuna7b/image_full_init/gqa_qa.yaml | 149 + .../vicuna7b/image_full_init/gqa_qa_val.yaml | 149 + .../image_full_init/nocaps_captioning.yaml | 145 + .../nocaps_out_domain_captioning.yaml | 147 + .../vicuna7b/image_full_init/okvqa_qa.yaml | 157 + .../snlive_classification_test.yaml | 153 + .../snlive_classification_val.yaml | 153 + .../vicuna7b/image_full_init/vizwiz_qa.yaml | 152 + .../image_no_init/coco_captioning_test.yaml | 154 + .../image_no_init/coco_captioning_val.yaml | 154 + .../image_no_init/flickr30k_captioning.yaml | 150 + .../eval/vicuna7b/image_no_init/gqa_qa.yaml | 149 + .../vicuna7b/image_no_init/gqa_qa_val.yaml | 149 + .../image_no_init/nocaps_captioning.yaml | 145 + .../nocaps_out_domain_captioning.yaml | 147 + .../eval/vicuna7b/image_no_init/okvqa_qa.yaml | 157 + .../snlive_classification_test.yaml | 153 + .../snlive_classification_val.yaml | 153 + .../vicuna7b/image_no_init/vizwiz_qa.yaml | 152 + .../image_pre_coco/coco_captioning_test.yaml | 153 + .../image_pre_coco/coco_captioning_val.yaml | 153 + .../image_pre_coco/flickr30k_captioning.yaml | 149 + .../eval/vicuna7b/image_pre_coco/gqa_qa.yaml | 148 + .../image_pre_coco/nocaps_captioning.yaml | 144 + .../nocaps_out_domain_captioning.yaml | 146 + .../vicuna7b/image_pre_coco/okvqa_qa.yaml | 156 + .../snlive_classification_test.yaml | 152 + .../snlive_classification_val.yaml | 152 + .../vicuna7b/image_pre_coco/vizwiz_qa.yaml | 151 + .../coco_captioning_test.yaml | 154 + .../coco_captioning_val.yaml | 154 + .../flickr30k_captioning.yaml | 152 + .../image_projection_only/gqa_qa.yaml | 151 + .../image_projection_only/gqa_qa_val.yaml | 149 + .../nocaps_captioning.yaml | 147 + .../nocaps_out_domain_captioning.yaml | 148 + .../image_projection_only/okvqa_qa.yaml | 157 + .../snlive_classification_test.yaml | 153 + .../snlive_classification_val.yaml | 153 + .../image_projection_only/vizwiz_qa.yaml | 154 + .../pc/modelnet40_classification.yaml | 148 + .../vicuna7b/pc/modelnet40_completion.yaml | 166 ++ .../vicuna7b/pc/objaverse_captioning.yaml | 167 ++ .../eval/vicuna7b/pc/objaverse_qa.yaml | 166 ++ .../pc_no_init/modelnet40_classification.yaml | 148 + .../pc_no_init/modelnet40_completion.yaml | 166 ++ .../pc_no_init/objaverse_captioning.yaml | 167 ++ .../vicuna7b/pc_no_init/objaverse_qa.yaml | 166 ++ .../modelnet40_classification.yaml | 150 + .../modelnet40_completion.yaml | 168 ++ .../objaverse_captioning.yaml | 169 ++ .../pc_projection_only/objaverse_qa.yaml | 167 ++ .../pc_ulip1/modelnet40_classification.yaml | 148 + .../pc_ulip1/modelnet40_completion.yaml | 167 ++ .../pc_ulip1/objaverse_captioning.yaml | 167 ++ .../eval/vicuna7b/pc_ulip1/objaverse_qa.yaml | 166 ++ .../modelnet40_classification.yaml | 148 + .../modelnet40_completion.yaml | 167 ++ .../objaverse_captioning.yaml | 168 ++ .../pc_ulip2_scaled_up/objaverse_qa.yaml | 166 ++ .../modelnet40_classification.yaml | 148 + .../modelnet40_completion.yaml | 167 ++ .../objaverse_captioning.yaml | 167 ++ .../pc_ulip_objaverse/objaverse_qa.yaml | 166 ++ .../modelnet40_classification.yaml | 148 + .../modelnet40_completion.yaml | 167 ++ .../objaverse_captioning.yaml | 167 ++ .../objaverse_qa.yaml | 166 ++ .../modelnet40_classification.yaml | 148 + .../modelnet40_completion.yaml | 167 ++ .../objaverse_captioning.yaml | 167 ++ .../pc_ulip_shapenet/objaverse_qa.yaml | 166 ++ .../video/msrvtt_captioning_test.yaml | 160 + .../vicuna7b/video/msrvtt_captioning_val.yaml | 160 + .../eval/vicuna7b/video/msrvtt_qa_test.yaml | 158 + .../eval/vicuna7b/video/msrvtt_qa_val.yaml | 158 + .../eval/vicuna7b/video/msvd_captioning.yaml | 158 + .../eval/vicuna7b/video/msvd_qa.yaml | 168 ++ .../eval/vicuna7b/video/vatex_captioning.yaml | 185 ++ .../vicuna7b/video_image/msvd_captioning.yaml | 158 + .../eval/vicuna7b/video_image/msvd_qa.yaml | 168 ++ .../video_image/vatex_captioning.yaml | 183 ++ .../video_image_pre_coco/msvd_captioning.yaml | 157 + .../video_image_pre_coco/msvd_qa.yaml | 167 ++ .../vatex_captioning.yaml | 156 + .../msrvtt_captioning_test.yaml | 160 + .../msrvtt_captioning_val.yaml | 160 + .../video_no_upsample/msrvtt_qa_test.yaml | 158 + .../video_no_upsample/msrvtt_qa_val.yaml | 158 + .../video_no_upsample/msvd_captioning.yaml | 158 + .../video_no_upsample/msvd_captioning_up.yaml | 158 + .../vicuna7b/video_no_upsample/msvd_qa.yaml | 169 ++ .../video_no_upsample/msvd_qa_up.yaml | 169 ++ .../video_no_upsample/vatex_captioning.yaml | 158 + .../vatex_captioning_up.yaml | 158 + .../audio/audiocaps_captioning_qa.yaml | 159 + .../audio/audiocaps_captioning_test.yaml | 161 + .../audio/audiocaps_captioning_val.yaml | 161 + .../audio/clothoQA_captioning.yaml | 155 + .../audio/clothov1_captioning.yaml | 147 + .../audio/clothov2_captioning.yaml | 147 + .../audio/esc50_classification.yaml | 151 + .../esc50_classification_completion.yaml | 151 + .../musicavqa/musicavqa_audio_eval.yaml | 182 ++ .../musicavqa/musicavqa_joint_eval.yaml | 182 ++ .../musicavqa/musicavqa_video_eval.yaml | 182 ++ .../vatex/vatex_audio_captioning.yaml | 183 ++ .../crossmodal/vatex/vatex_captioning.yaml | 182 ++ .../vatex/vatex_joint_captioning.yaml | 183 ++ .../image/coco_captioning_test.yaml | 154 + .../image/coco_captioning_val.yaml | 154 + .../image/flickr30k_captioning.yaml | 150 + .../eval/vicuna7b_nocue/image/gqa_qa.yaml | 148 + .../image/nocaps_captioning.yaml | 144 + .../image/nocaps_out_domain_captioning.yaml | 146 + .../eval/vicuna7b_nocue/image/okvqa_qa.yaml | 157 + .../image/snlive_classification_test.yaml | 152 + .../image/snlive_classification_val.yaml | 152 + .../eval/vicuna7b_nocue/image/vizwiz_qa.yaml | 152 + .../pc/modelnet40_classification.yaml | 148 + .../pc/modelnet40_completion.yaml | 148 + .../pc/objaverse_captioning.yaml | 167 ++ .../eval/vicuna7b_nocue/pc/objaverse_qa.yaml | 163 + .../video/msrvtt_captioning_test.yaml | 160 + .../video/msrvtt_captioning_val.yaml | 160 + .../vicuna7b_nocue/video/msrvtt_qa_test.yaml | 158 + .../vicuna7b_nocue/video/msrvtt_qa_val.yaml | 158 + .../vicuna7b_nocue/video/msvd_captioning.yaml | 158 + .../eval/vicuna7b_nocue/video/msvd_qa.yaml | 166 ++ .../video/vatex_captioning.yaml | 182 ++ .../video_image/msvd_captioning.yaml | 158 + .../vicuna7b_nocue/video_image/msvd_qa.yaml | 165 ++ .../video_image/vatex_captioning.yaml | 181 ++ .../nocaps/instructblip/original.yaml | 81 + .../nocaps/instructblip/template_1.yaml | 81 + .../nocaps/instructblip/template_2.yaml | 81 + .../nocaps/instructblip/template_3.yaml | 81 + .../nocaps/instructblip/template_4.yaml | 81 + .../nocaps/instructblip/template_5.yaml | 81 + .../nocaps/xinstructblip/template_1.yaml | 145 + .../nocaps/xinstructblip/template_2.yaml | 145 + .../nocaps/xinstructblip/template_3.yaml | 145 + .../nocaps/xinstructblip/template_4.yaml | 145 + .../nocaps/xinstructblip/template_5.yaml | 145 + .../train/vicuna13b/audio_training.yaml | 218 ++ .../vicuna13b/audio_training_continue.yaml | 299 ++ .../train/vicuna13b/image_train.yaml | 345 +++ .../train/vicuna13b/image_train_continue.yaml | 542 ++++ .../train/vicuna13b/pc_training.yaml | 170 ++ .../train/vicuna13b/video_training.yaml | 202 ++ .../train/vicuna7b/audio_training.yaml | 215 ++ .../vicuna7b/audio_training_improved.yaml | 216 ++ .../vicuna7b/audio_training_no_init.yaml | 282 ++ .../audio_training_projection_only.yaml | 218 ++ .../audio_training_projection_only_nocue.yaml | 218 ++ .../train/vicuna7b/image_train.yaml | 346 +++ .../train/vicuna7b/image_train_improved.yaml | 346 +++ .../train/vicuna7b/image_train_no_init.yaml | 346 +++ .../vicuna7b/image_train_projection_only.yaml | 347 +++ .../train/vicuna7b/lora_training.yaml | 926 ++++++ .../train/vicuna7b/pc_training.yaml | 168 ++ .../train/vicuna7b/pc_training_improved.yaml | 171 ++ .../train/vicuna7b/pc_training_no_init.yaml | 169 ++ .../vicuna7b/pc_training_projection_only.yaml | 171 ++ .../pc_training_projection_only_nocue.yaml | 171 ++ .../train/vicuna7b/pc_training_scaled_up.yaml | 168 ++ .../train/vicuna7b/pc_training_ulip1.yaml | 169 ++ ...training_ulip2_objaverse_shapenet_k_1.yaml | 168 ++ .../vicuna7b/pc_training_ulip_objaverse.yaml | 168 ++ .../vicuna7b/pc_training_ulip_shapenet.yaml | 167 ++ .../train/vicuna7b/video_training.yaml | 201 ++ .../video_training_no_msrvtt_upsample.yaml | 202 ++ .../train/vicuna7b_nocue/audio_training.yaml | 217 ++ .../train/vicuna7b_nocue/image_train.yaml | 344 +++ .../train/vicuna7b_nocue/pc_training.yaml | 169 ++ .../train/vicuna7b_nocue/video_training.yaml | 201 ++ projects/blip2/model_card.pdf | Bin 125298 -> 0 bytes projects/xinstructblip/README.md | 229 ++ .../xinstructblip/assets/architecture.png | Bin 0 -> 202606 bytes projects/xinstructblip/assets/data.png | Bin 0 -> 340719 bytes .../data_aug/3d_qa_data_generation.py | 105 + .../data_aug/audio_qa_data_generation.py | 86 + .../xinstructblip/demo/configs/vicuna13b.yaml | 77 + .../xinstructblip/demo/configs/vicuna7b.yaml | 78 + .../demo/configs/vicuna7b_blip_init.yaml | 74 + .../demo/configs/vicuna7b_no_init.yaml | 74 + .../demo/configs/vicuna7b_nocue.yaml | 75 + .../demo/configs/vicuna7b_projection.yaml | 83 + .../demo/configs/vicuna7b_rand.yaml | 75 + .../demo/configs/vicuna7b_v2.yaml | 78 + projects/xinstructblip/demo/demo.ipynb | 393 +++ .../demo/examples/audio/110714_wren.wav | Bin 0 -> 1731222 bytes .../examples/audio/Group_of_Dogs_Barking.wav | Bin 0 -> 1908780 bytes .../demo/examples/point_cloud/banana.glb | Bin 0 -> 9041624 bytes projects/xinstructblip/demo/run_demo.py | 248 ++ .../discrn/caption_baseline/predict_audio.py | 66 + .../discrn/caption_baseline/predict_image.py | 253 ++ .../discrn/caption_baseline/predict_pc.py | 250 ++ .../discrn/caption_baseline/predict_video.py | 262 ++ .../discrn/caption_baseline/render_images.py | 59 + .../data_generation/audiocaps_video_audio.py | 161 + .../data_generation/objaverse_img_3d.py | 156 + .../modelnet_baseline/render_images.py | 41 + requirements.txt | 11 +- 523 files changed, 72144 insertions(+), 2 deletions(-) delete mode 100644 assets/LAVIS_technical_report.pdf create mode 100644 lavis/configs/datasets/aokvqa/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/audiocaps/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/audiocaps/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/audiocaps/defaults_mm_qa.yaml create mode 100644 lavis/configs/datasets/audioset/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/audioset/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/avsd/defaults_mm_dial_instruct.yaml create mode 100644 lavis/configs/datasets/capfilt14m/defaults_cap.yaml create mode 100644 lavis/configs/datasets/capfilt14m/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/charade/defaults_cap.yaml create mode 100644 lavis/configs/datasets/charade/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/clotho/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/clotho/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/clotho/defaults_mm_qa.yaml create mode 100644 lavis/configs/datasets/coco/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/coco/defaults_vqa_instruct.yaml create mode 100644 lavis/configs/datasets/coin/defaults_cap.yaml create mode 100644 lavis/configs/datasets/coin/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/conceptual_caption/defaults_12m_instruct.yaml create mode 100644 lavis/configs/datasets/conceptual_caption/defaults_3m_instruct.yaml create mode 100644 lavis/configs/datasets/discriminatory_reasoning/defaults_mm_audio_video.yaml create mode 100644 lavis/configs/datasets/discriminatory_reasoning/defaults_mm_image_pc.yaml create mode 100644 lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/audiocaps_discrn.json create mode 100644 lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/objaverse_discrn.json create mode 100644 lavis/configs/datasets/esc50/defaults_mm_cls.yaml create mode 100644 lavis/configs/datasets/flickr30k/defaults_cap.yaml create mode 100644 lavis/configs/datasets/flickr30k/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/gqa/balanced_testdev_instruct.yaml create mode 100644 lavis/configs/datasets/gqa/balanced_val_instruct.yaml create mode 100644 lavis/configs/datasets/gqa/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/iconqa/defaults.yaml create mode 100644 lavis/configs/datasets/iconqa/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/laion/defaults_400M.yaml create mode 100644 lavis/configs/datasets/laion/defaults_400M_instruct.yaml create mode 100644 lavis/configs/datasets/llava150k/defaults_dial.yaml create mode 100644 lavis/configs/datasets/modelnet40/defaults_cls.yaml create mode 100644 lavis/configs/datasets/msrvtt/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/msrvtt/defaults_qa_instruct.yaml create mode 100644 lavis/configs/datasets/msvd/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/msvd/defaults_qa_instruct.yaml create mode 100644 lavis/configs/datasets/music_avqa/defaults_mm_qa.yaml create mode 100644 lavis/configs/datasets/music_avqa/defaults_mm_qa_instruct.yaml create mode 100644 lavis/configs/datasets/objaverse/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/objaverse/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/objaverse/defaults_mm_qa.yaml create mode 100644 lavis/configs/datasets/ocrvqa/defaults.yaml create mode 100644 lavis/configs/datasets/ocrvqa/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/okvqa/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/sbu_caption/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/scienceqa/defaults.yaml create mode 100644 lavis/configs/datasets/scienceqa/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/shapenet/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/shapenet/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/snli_ve/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/textcaps/defaults.yaml create mode 100644 lavis/configs/datasets/textcaps/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/valor/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/valor/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/vatex/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/vg/defaults_caption_instruct.yaml create mode 100644 lavis/configs/datasets/vg/defaults_vqa_instruct.yaml create mode 100644 lavis/configs/datasets/violin/defaults_cap.yaml create mode 100644 lavis/configs/datasets/violin/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/violin/defaults_entail.yaml create mode 100644 lavis/configs/datasets/violin/defaults_entail_instruct.yaml create mode 100644 lavis/configs/datasets/visdial/defaults_dial.yaml create mode 100644 lavis/configs/datasets/visdial/defaults_dial_instruct.yaml create mode 100644 lavis/configs/datasets/vizwiz/defaults.yaml create mode 100644 lavis/configs/datasets/vlep/defaults_cap.yaml create mode 100644 lavis/configs/datasets/vlep/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/vsr/defaults.yaml create mode 100644 lavis/configs/datasets/vsr/defaults_classification.yaml create mode 100644 lavis/configs/datasets/vsr/defaults_classification_instruct.yaml create mode 100644 lavis/configs/datasets/vsr/defaults_instruct.yaml create mode 100644 lavis/configs/datasets/wavcaps/defaults_mm_cap.yaml create mode 100644 lavis/configs/datasets/wavcaps/defaults_mm_cap_instruct.yaml create mode 100644 lavis/configs/datasets/webvid/defaults_cap.yaml create mode 100644 lavis/configs/datasets/webvid/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/youcook/defaults_cap.yaml create mode 100644 lavis/configs/datasets/youcook/defaults_cap_instruct.yaml create mode 100644 lavis/configs/datasets/yt8m/defaults_mm_dial.yaml create mode 100644 lavis/configs/models/blip2/blip2_xinstruct_vicuna13b.yaml create mode 100644 lavis/configs/models/blip2/blip2_xinstruct_vicuna7b.yaml create mode 100644 lavis/datasets/builders/audio_caption_builder.py create mode 100644 lavis/datasets/builders/audio_qa_builder.py create mode 100644 lavis/datasets/builders/discrn_builders.py create mode 100644 lavis/datasets/builders/object3d_caption_builder.py create mode 100644 lavis/datasets/builders/object3d_classification_builder.py create mode 100644 lavis/datasets/builders/object3d_qa_builder.py create mode 100644 lavis/datasets/datasets/audio_captioning_datasets.py create mode 100644 lavis/datasets/datasets/audio_classification_datasets.py create mode 100644 lavis/datasets/datasets/audio_qa_datasets.py create mode 100644 lavis/datasets/datasets/capfilt_dataset.py create mode 100644 lavis/datasets/datasets/discriminatory_reasoning_datasets.py create mode 100644 lavis/datasets/datasets/iconqa_datasets.py create mode 100644 lavis/datasets/datasets/llava150k_dataset.py create mode 100644 lavis/datasets/datasets/music_avqa.py create mode 100644 lavis/datasets/datasets/object3d_captioning_datasets.py create mode 100644 lavis/datasets/datasets/object3d_classification_datasets.py create mode 100644 lavis/datasets/datasets/object3d_qa_datasets.py create mode 100644 lavis/datasets/datasets/ocr_datasets.py create mode 100644 lavis/datasets/datasets/textcaps_datasets.py create mode 100644 lavis/datasets/datasets/valor_caption.py create mode 100644 lavis/datasets/datasets/vatex_captioning_datasets.py create mode 100644 lavis/datasets/datasets/violin_dataset.py create mode 100644 lavis/datasets/datasets/visdial_dialogue_datasets.py create mode 100644 lavis/datasets/datasets/vizwiz_vqa_datasets.py create mode 100644 lavis/datasets/datasets/vlep_dataset.py create mode 100644 lavis/datasets/datasets/vsr_datasets.py create mode 100644 lavis/datasets/datasets/yt8m_video_dialogue_datasets.py create mode 100644 lavis/datasets/download_scripts/download_charade.py create mode 100644 lavis/datasets/download_scripts/download_coin.py create mode 100644 lavis/datasets/download_scripts/download_iconqa.py create mode 100644 lavis/datasets/download_scripts/download_violin.py create mode 100644 lavis/models/beats/BEATs.py create mode 100644 lavis/models/beats/LICENSE_BEATs.txt create mode 100644 lavis/models/beats/README.md create mode 100644 lavis/models/beats/Tokenizers.py create mode 100644 lavis/models/beats/backbone.py create mode 100644 lavis/models/beats/modules.py create mode 100644 lavis/models/beats/quantizer.py create mode 100644 lavis/models/beats_encoder.py create mode 100644 lavis/models/blip2_models/blip2_vicuna_xinstruct.py create mode 100644 lavis/models/ulip_models/ULIP_models.py create mode 100644 lavis/models/ulip_models/losses.py create mode 100644 lavis/models/ulip_models/pointbert/PointTransformer_8192point.yaml create mode 100644 lavis/models/ulip_models/pointbert/checkpoint.py create mode 100644 lavis/models/ulip_models/pointbert/dvae.py create mode 100644 lavis/models/ulip_models/pointbert/logger.py create mode 100644 lavis/models/ulip_models/pointbert/misc.py create mode 100644 lavis/models/ulip_models/pointbert/point_encoder.py create mode 100644 lavis/models/ulip_models/ulip_scaled_up_config.yaml create mode 100644 lavis/models/ulip_models/utils/__init__.py create mode 100644 lavis/models/ulip_models/utils/build.py create mode 100644 lavis/models/ulip_models/utils/config.py create mode 100755 lavis/models/ulip_models/utils/io.py create mode 100644 lavis/models/ulip_models/utils/logger.py create mode 100644 lavis/models/ulip_models/utils/registry.py create mode 100644 lavis/models/ulip_models/utils/tokenizer.py create mode 100644 lavis/models/ulip_models/utils/utils.py create mode 100644 lavis/processors/audio_processors.py create mode 100644 lavis/processors/instruction_text_processors.py create mode 100644 lavis/processors/ulip_processors.py create mode 100644 lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xl_eval.yaml create mode 100644 lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xxl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_coco_flant5xl_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_coco_flant5xl_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_coco_flant5xxl_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_coco_flant5xxl_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_coco_vicuna13b_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_coco_vicuna13b_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_coco_vicuna7b_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_coco_vicuna7b_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_test.yaml create mode 100644 lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_val.yaml create mode 100644 lavis/projects/instructblip/caption_msvd_flant5xl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_msvd_flant5xxl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_msvd_vicuna13b_eval.yaml create mode 100644 lavis/projects/instructblip/caption_msvd_vicuna7b_eval.yaml create mode 100644 lavis/projects/instructblip/caption_nocaps_out_domain_flant5xl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_nocaps_out_domain_flant5xxl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_nocaps_out_domain_vicuna13b_eval.yaml create mode 100644 lavis/projects/instructblip/caption_nocaps_out_domain_vicuna7b_eval.yaml create mode 100644 lavis/projects/instructblip/caption_vatex_flant5xl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_vatex_flant5xxl_eval.yaml create mode 100644 lavis/projects/instructblip/caption_vatex_vicuna13b_eval.yaml create mode 100644 lavis/projects/instructblip/caption_vatex_vicuna7b_eval.yaml create mode 100644 lavis/projects/instructblip/classification_modelnet40_vicuna13b.yaml create mode 100644 lavis/projects/instructblip/classification_modelnet40_vicuna7b.yaml create mode 100644 lavis/projects/instructblip/classification_snlive_flant5xl.yaml create mode 100644 lavis/projects/instructblip/classification_snlive_flant5xxl.yaml create mode 100644 lavis/projects/instructblip/classification_snlive_vicuna13b.yaml create mode 100644 lavis/projects/instructblip/classification_snlive_vicuna13b_test.yaml create mode 100644 lavis/projects/instructblip/classification_snlive_vicuna7b_test.yaml create mode 100644 lavis/projects/instructblip/classification_snlive_vicuna7b_val.yaml create mode 100644 lavis/projects/instructblip/completion_modelnet40_vicuna13b.yaml create mode 100644 lavis/projects/instructblip/completion_modelnet40_vicuna7b.yaml create mode 100644 lavis/projects/instructblip/qa_msrvtt_flant5xl_eval_test.yaml create mode 100644 lavis/projects/instructblip/qa_msrvtt_flant5xxl_eval_test.yaml create mode 100644 lavis/projects/instructblip/qa_msrvtt_vicuna13b_eval_test.yaml create mode 100644 lavis/projects/instructblip/qa_msrvtt_vicuna7b_eval_test.yaml create mode 100644 lavis/projects/instructblip/qa_msvd_flant5xl_eval.yaml create mode 100644 lavis/projects/instructblip/qa_msvd_flant5xxl_eval.yaml create mode 100644 lavis/projects/instructblip/qa_msvd_vicuna13b_eval.yaml create mode 100644 lavis/projects/instructblip/qa_msvd_vicuna7b_eval.yaml create mode 100644 lavis/projects/instructblip/qa_okvqa_flant5xl_eval.yaml create mode 100644 lavis/projects/instructblip/qa_okvqa_flant5xxl_eval.yaml create mode 100644 lavis/projects/instructblip/qa_okvqa_vicuna13b_eval.yaml create mode 100644 lavis/projects/instructblip/qa_okvqa_vicuna7b_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption_13b.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_13b.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_nocue.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj copy.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_rand_init.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption_13b.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_13b.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_no_init.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_nocue.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_proj.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothoQA_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov1_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov2_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_audio_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_joint_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_video_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_audio_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_audio_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning_interleave.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothoQA_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov1_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov2_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothoQA_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov1_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov2_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothoQA_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov1_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov2_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothoQA_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov1_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov2_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_audio_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_joint_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_video_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_audio_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning_up.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa_up.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning_up.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothoQA_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov1_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov2_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_audio_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_joint_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_video_eval.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_audio_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_joint_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/flickr30k_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/gqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_out_domain_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/okvqa_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/vizwiz_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_classification.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_completion.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_test.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_val.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_qa.yaml create mode 100644 lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/vatex_captioning.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/original.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_1.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_2.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_3.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_4.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_5.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_1.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_2.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_3.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_4.yaml create mode 100644 lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_5.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna13b/audio_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna13b/audio_training_continue.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna13b/image_train.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna13b/image_train_continue.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna13b/pc_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna13b/video_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/audio_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_improved.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_no_init.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only_nocue.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/image_train.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/image_train_improved.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/image_train_no_init.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/image_train_projection_only.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/lora_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_improved.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_no_init.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only_nocue.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_scaled_up.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip1.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip2_objaverse_shapenet_k_1.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_objaverse.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_shapenet.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/video_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b/video_training_no_msrvtt_upsample.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b_nocue/audio_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b_nocue/image_train.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b_nocue/pc_training.yaml create mode 100644 lavis/projects/xinstruct_blip/train/vicuna7b_nocue/video_training.yaml delete mode 100644 projects/blip2/model_card.pdf create mode 100644 projects/xinstructblip/README.md create mode 100644 projects/xinstructblip/assets/architecture.png create mode 100644 projects/xinstructblip/assets/data.png create mode 100644 projects/xinstructblip/data_aug/3d_qa_data_generation.py create mode 100644 projects/xinstructblip/data_aug/audio_qa_data_generation.py create mode 100644 projects/xinstructblip/demo/configs/vicuna13b.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b_blip_init.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b_no_init.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b_nocue.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b_projection.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b_rand.yaml create mode 100644 projects/xinstructblip/demo/configs/vicuna7b_v2.yaml create mode 100644 projects/xinstructblip/demo/demo.ipynb create mode 100644 projects/xinstructblip/demo/examples/audio/110714_wren.wav create mode 100644 projects/xinstructblip/demo/examples/audio/Group_of_Dogs_Barking.wav create mode 100644 projects/xinstructblip/demo/examples/point_cloud/banana.glb create mode 100644 projects/xinstructblip/demo/run_demo.py create mode 100644 projects/xinstructblip/discrn/caption_baseline/predict_audio.py create mode 100644 projects/xinstructblip/discrn/caption_baseline/predict_image.py create mode 100644 projects/xinstructblip/discrn/caption_baseline/predict_pc.py create mode 100644 projects/xinstructblip/discrn/caption_baseline/predict_video.py create mode 100644 projects/xinstructblip/discrn/caption_baseline/render_images.py create mode 100644 projects/xinstructblip/discrn/data_generation/audiocaps_video_audio.py create mode 100644 projects/xinstructblip/discrn/data_generation/objaverse_img_3d.py create mode 100644 projects/xinstructblip/modelnet_baseline/render_images.py diff --git a/.gitignore b/.gitignore index 1b4f1b656..68b631bc1 100644 --- a/.gitignore +++ b/.gitignore @@ -152,5 +152,8 @@ debug*/ *.dat *.tsv *.gz +*.csv +*.p +*.pdf cache/ diff --git a/assets/LAVIS_technical_report.pdf b/assets/LAVIS_technical_report.pdf deleted file mode 100644 index 14f148e39c43d24876c735cd00f115eb1e611f97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1627414 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 !kc@L^ne>oG{9+I!^*d;Qc%~t)UQs*8oOb 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ϑW&Hy%7Q?sQ9*)CT`hNFzZf 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

  • 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%0A4p-P(Z6S>Z`$^*0l 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

      =I$^&uih<1yO(c-tXljxu`qKkRn*kD1g`! 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

      ~$ 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

        I%O~i=cpt%fCSDsq zNq!{1P38fck@Yk3z{oq;a5ZjV6|CnNZQvYh=oGWfHhhb9*cRIeJ%=bgx43OyRFox} z2C^}WW)>a>b8~Za-{Iozv)w;nM?|=POk_}0xPL^bZ$!9X zSSU_Fpg$~=(K0b!%qR;K(z+@Qs-BBW@qe6bu_9BHuas#tPM+Qy^$a25p@;L2%QNfP zw|XzAQ!V&LfK7{&;Q5_rc*T@!O$aAGs;(WU9fwZJeRoSYG2u%2VA+$kmlPELm? zxg%IFTBlDFEEls7GwY!eg!M=S?g>qTg_vD1!>D=y-!Oo0 z6f7cPm@klT;m0P1|9m)Rems1lnLii3py+j>ga|3Yd~y)aJcMT%f+kN6#fNF(OD6{~ zECU&qpZEEdgjU8hN<7svF4-~?jU_0=h&K#PGz?4J7M5rjl3*B`fa}JQDW*|rrqM|1 z!P*Bs4i$@#*f^F+9C8W|SMVm}FqC{+#3q?U#TduO6V(}1hIJZrtL4|ykolkh61xwy z<**(N0-{MoqCVgbqj*&G=L?{4L4%`E5hMiHa6um!-L^@iT5*|99EKx3&6ZBLWbqKz zvq@orhA1@1WW-JZq#0;-P>$@=SfERQ8<`0m4H6gzzJ*o{6i5=@OAsINY9B687G}X= zT$B;|mq_M-<`bdRkq1T-L8Jo+SmUz@$0o9V0^;@%3c<55paLiWO)LQh;_)GZE^*J8 zdI!ycSYdsHZg4D={AP9wy3jx%U z#(e|vrZFINvINi^Dab$aBm|k_`@q3U zyV#a1c1VL_n@WjJqJ+g-_=ghRHQqtSJ{XY?L3@m;Ki&+$)Sw~iMm_z(dWP=4M%%s7 zP`YJ#+rkj<@$}dC3)K&gGmT0#$LL{5gmGwuNn{L4HMhkl8N?^+Gq|Ynq+lfw1)jw0 z0^Jf{6b@L9z=6fJr?IS%;)E9z088VV5bdlY;(Lyt3xfx)x8R8>LWz|Cg*;pmG48-4 z);Ey%q@hrVZ zh2j(Lp_voJ2TUtLy9?w$B=wZ&c#)!_v%X4Mg~4=UZch%quMytPDn(OmUVEb&#Vl<) zbw^`iQ;ibpUPUpogjukFe#-hm7DVo^vP7Pj!xRe=xtw^3gr-mkluA)upidy8Wo8TV)LHVJjO=`sQd^c+UZX5WfUq$i`vN8Pndl#=?kZ_I zP}aP^qIqvsTX$*8?!3CT^s;td(Jr30TUc>GR(m8%cUaYWv}W(A&Ld~{?mgI1S<$Ih z9x5p~S5q1EBQK9UTs-!0@$}$}D+5pN^p1@_npwm)AJTk;#)se@F|G&V z!{zJ@B6#zN=@Ayq#TT=43jja@_h93E^B&UPd*I$z-(bf9^L)5HQU9`hiAERVynOxQ z)pG9d^*c;DJY9MTpC|62r+4tkiF0+W-I|)NEUm7%p(VGnlC3PK<}~t)I>g%M%(BM1 z&izFdb?LeJGEITHzBZ?Rb>^Is46Nn&>uV1`& z?ZV|tXU?8Ee&Wl6hxT`ssIo-Nq`GR&wHqg=W`>?Vn_74}^?9FP|N47#B3qO73_*Ml z`1Dt=)mya&hzHgK^g-!Erq5{YI?|?1RtEak2Ku(!^sV)`*cNb0-h(JJ?x$ z=0L?aOV>ZXx%&O9Q_rWm#vYVBxRQ7CwBqiC;*tBEk9rSIj~rW?IrnDq^4rCWFP@xP zoIWue%$@!(cY)y`xcj#zNIOw`*ltaVl)ADot=*d zI;IA?hHf{U*_U~4f7XMm6_W_-^~2pX?i6=- zcMTGPhX6r?gdl+gr%>v)>t0-nON$h%`)<2ydv~An%{epo`)20Oz0Vu=nLF$L-8E}{ zcdd72g){^RQ26oK#6U^^^~~-|X@fU&CI-uLy1U=O){xM;j-HBy)F~?v6B1UCSFd5;%M^dU>Q~W$GZH z74JEUIdubD*x>JPcUrSz*gv%Fic!gQ_E#Ht{ZsoGx1ln3Zpp0phBPS98ZI>(<7PY!BO=}QT0ow z`D3O5eH|Q{Cr8bjqv@TZ<(H1(b&N6?V0%4?ryq!Qwk&PmOf6i;OhbNS;N@=d)AhdJ z-roKC_TJA=r{?bsUbuFuyeU7nFes2~7r-?R$kxN_24opJg&7)J>FOBi61KCjvbA?| zbaJ0oA|Wa|LK1B$Az0KJ;%n+HcnnWe&_nR{7g=uF9!Ww92~5ytPYr= z80G-nr25vj2OOO&JUr|@-R+&7tnBPe?QBhLZOv?LEzGcpWOl&I)0vmWE-mI(RNyB_ zMrIBtF+DLlH6c1PnZ-@lHZf7yy%+m>g!r~>`(75`gSscv_=wC0+}o(`l*xQxy**oZ z?n9T$Ciy*^*wtEp|?y>mBJ$cp+q_bA{n8EmGW2~j^nB9wywmj%-}6i}a8EIC=NPyr8@RJ| z;kv|xx@|Pg4#XEncVN*Rp!6l;K;T1UkLH@J=9|@j&Vl*71F)5<{ZNI;QqBMe|&`H8X ze9SY5=Ip297NqJCOmPoVhSKLAsNxo&0^-As?jcl9#JF(6XgFSBbZ?mg=oiU=8t5Gk z9gu;Xmv=DLD*y!=bpH@F5;P-K|A0aDAmrL2)qTSmo*}AkK`QRS6z>SSYoM|ZB7_lY z-r*!m7!Zv-ojUBAG6yD*3Wh)w>0?}52PXn~E&v@yx|85AL_G-nnc4y2OiZW;hQpbu z9u^D55X{IVsjfJZ>BA+GdQf&Ei14RL9xwp_2z^JBm7>!gL#3UK~d`dk@!GR z{{s93S&(-dYz0Rm4ysU*AcLVaf>h0509^;ZM-U%eg%I^%B8>*|aR8E<5b~mubRrWq z@%}^sKiSL(Z0Z5`INI2?2TMk>HN%rMLXk;K#0QHeQltwt5HKVF$W|u`R}vGT7Y}t0 zf+kxliVdiQaEXFbtYDBZCMnE;U>Z&dj)p*{jwbUt*47RR*9-_{`lDPW7}E)KWcs`U&}*vXgicX66+5)n*zP)DwcX5S zhn2%_8^^uY_Iqs|6z!b$I=Jp~@!0F^vB%AOzpIy`yRVA7H^s$+;^s|t^Fgx>#lx58 z7es=AkZ$qh1cafqbH8_pBKAHIGDXf2?>WkXf+8^JfX@iDT6j1SW+WL*?8OH}pk8L5 zd*D77zkT+eyBxjtxCf}fy=>#L+ty>ZgV!Eczy0VSg<9^&pAF&@m1UG8lvlv! z^WqT7!`vR$(s3P+0{|q0?3m{hax2Tyt1HmW0-DRgih5f^aeHG4syI8F%i5$RjkWoR z0g|nDWcq|$XoA2)G2O)Y z;qsWh`RDHWmpHu(ukI{7on3r1cW>qX@&nYc0NKEO=x>qH-+SnH06n7d ztv`Y@b9MF6($d-*8eN{gMvW&C_%PA_?h_8~`SaUfQ2!#k@&U6BI4JfcH-ZP>fBO0T z$Cv2&lw|ech- z&Yd`RxUDpwn-mia;=9#zZfSYy(c}A%p8Ri5e5tXCu2%NCG&SnZ-HLMZid(lS$;p%Q zmaSWH6t~Jz6cp6Y^uLzeysj3 zq_@$!`SJRh5#i9yoc^o4(eC2uA<@imE#h_4BdBC)-C(`R;kuFDs-d2$!QPtNH!81R z5nMda?>v~)*33G6A{)fld$SfA-<^K(oxa-X5kO+o4D6jFbu)MB=f>dkteYOIzjd{s z`$q9Vukg;0cw)3^YP@A)L^?JgMxV^|fMoJU(eRms@r&t;L)8nT4U6Lq5GWz=JzQvf zywvh^x#K0-UcdJK<=B_^57E^rBfhU>n&JJ|&+l;gM{Nu2ouA&Ls}o~c?9}uQnD(NGs{!6h3M7f=2heNLV>sxASP_Y;{f+cOC=z_LM$>A*5f`P zz6?MgM%YUvr4>z;)oqp4B+XX?&90UZWqEmHX({ZZ4KRX24b03FBg&V`6=lFU%CF7i zVTKJoEw@7(woj}%0Q%&WOm0P*R2>^Jn@XY9YvB2?Kvh6eEkE&3j8H7|~uPa4xdLp?A{ zJ(#Bzz}580z%+xVUz)aGx{hBa5Kj-6zL{9)*1|t|r7=BHncf+iewjL1Vy~ZWR6SlF z`2EB3|MRz}3lAXVPe@T3U?oaKHYZ^D7H| z>x&opB@f<1oW-;J)5{RbLHT`PwkhEHgjS_ogJ*KZOn}i=o^{n znwaVvo9GxCX_;FX*x8#pIa@k7m|0pH8lxH1K*Pvb$Jj*A=zxK)p`Mk^frP}+g2Gg8 zP9i%kDux{qmJlAu3iV@!_(TWOv^BQv+Vz9nHUQoCg!s07w@D5~oqr;Yog1w82l0Kk zWg8GrZkM9mZpzl3N?R26ZIMUc3xU3^yY|zxjch%9T>?X${DYkQ1FhXXEnGcpy?h<~ z0zrIM?w+8$eQIH4ywf$k)3xzW;6AT3eb_raIQnpV zI(4>>;j zST#rTicBD$dAPE9sIqkg)i#=LjY)_Inq@e{Hd@mm4kgSEm<>`T=pMVF^+741~i|)jgQ%8boyoRCNoXy9QHTf>gu8LLKtl`CdFYCy`i3#QLm5~W zfDaQnEZJ~87UD4UzyRox4wg7sf^Q@17f19vK#lBZ#3k!McZ*Mf?4& zr3Ajg1dKSS#Q>Vn{0V(63HS-(V?sJa(+JtACtGsNFj!b)wL)W{laluV?-)>2*4Dyw z4^Z<&<4PFHZNPvi6=A|VioP0z7V(OR;DyI)$OZ=qp@2-`dIhc`V~7`Ja+^9ZEsmoX z&DKMMC}0iMF)X`SW&NC(-ax!gBMwBIz=(yCNESEf5Zz=@%tVO_r zscv2jCwHp7GsV%B=Hf|n_n~bxm%4aTu`~ez(cXn-=Sa17P=SC5JE)D5ijxP;I}lx( zsO3S44b>Z8RKck9QS}bRiU&Dpt-)Uy@CAUbo6uNLIrLe4rXcJR7cuDDKSIqblg26LT2%w-t^xScrMU*s-2$oj%LcyE0%90`a1W(=PjhZP3& zaH5z+BuFjEho3Wwn;w?SjV#Jx74ujnxd|XXU?AL{&;-d|Lw*vRoHziq%Cd~Yym-6{ zkPuxfaB{-Hi5p?dgs2DWW^*0Cqe*b6r4*MPjUc}AcB!CIjK#g;stWXilF4-}`eC}g zASWS*i%!Ro1Xf@Q%zK&fndz}PyhIRRPHtjmW^7tobVf#OHa8x`mkxE06NL&F5MN3v zDvnCJ5#{BCKB{YszzF*Btea1tyut`OruR0CosjUrfDax##-JX?8W!ePmhV46 zVGHhqte;Ha`}E5%Uq1ZuD=vTe@a30}Up{>N6_@Wne8zeA%jb8vf?GcPhU>52en815 ze4#Lf&M(~W?(J{v=*+FC6f_-76E=tP#F4p@q|$>K6|IFeEe(gyWS7?`_JI##hHk}vh)R0eR$6ZzsaL31=$6qQw;C8*;TSElgu*?C;#@nSM^eWH>AqT>_O zGkFEM`Nh1#68t?DrJV(3<$Q$u1Z6qU_{xNU$*e41a!y_v(4L(f34srPxkYnJ0xN`_ z6d4}wi^gj*a1`zx7UC`_$|Un5Wd*rhPI+n0(?(`xN!Q! zvCgsr9y=zawyFq2!;AMP*B>qd`o8V=*MI+`jrHC+)OZjRCALOp=E340KJd4 zdymR?(&By|I&o&?cJIiop6*K*FC0I7v_*8Jkv~6r<}`2&C`S8vEK5j!K#_z zy1Qf2Ih3~yi^luPMsEwodxhY^v7V~&KCqZ%tY19ZS3TNSGjK~d)Kd+C@74|BrSthG zPh@m;vOC(7P94v_^ixsajhfK`;F|<3F1YjL5X3(5r0k3j)}qF9VnjULUwQj_N%zgt zA(XugOU8z!L%r3vuLy>2R!;Par+b7mw+iQa1T%ejQFQN)7=!O?cQ=Ty`RQ`|vz5ay zA6|O*V)*mB_5VtIpFw;$vho&4dmn**7-+zGFVpyb{`&USuP>hc0ziBG;I)kSo`Cq4 zNLQzf_-2;orsiiS=jW!D7UtIO&p%qf58`|C^x=CD-{)Wc`p zmt7#vDU!%&t{P=8#buH*jO!tzhvH3P1BUa^t65Yc!8kka11~7jd0AjL*$6wJ56zsF zSZAni5mq$=63fb@B_)!g;(F9_Vv&K%uR{?ia)KZ}9=|pxuO^pY4aCEQA98%SbE%9# zv-7G`(G|=Qu-L^>EPi-wE^>TvNrfQ3)Qr-stTNuW*7$zd_vi2T{pq{CfBtUocR1hg z1M&U1m9kY%RcJ(1*o# zkljutlby<@J2BxWJKLe_DVr*Q_!JMI*mD=dZa32bXBX1}#0QOUkDmKJJ|<%D&~!sLOR~CmnudR-W!1AqCn_V-^g$+ zyOQFMJLLD!m5g2V+*lSKY!jahqX3>EA-)V9&s4&9!8}78Xtns1xu-Buq3M&ZbDvWOuQO)QQHi1k6^ql5K4({w!2w4IZg7<0!e zpKUDN9-N5I78cWyrEVX~w2Yt{2ktiwR<;VGT1C(-!c@&daHuv>8cy+;?bC6N*Kua) zphM={{*3bpQ}qbK!kV&Y2+`dDbRMC|>#3or(+{#;2o=9kdxzrJV^t^2loM@E#WPgJ zBNTi`aS0?ZdW2Bif>oRXlpOu{qXY(CP+|o2M`Nc7FoFDvPFB3J;70cjrMdweK!TwR zycOpFWgE}kcHaB!eH0yhRa}9G!8E9f&=xWLjrBKp@I0{d3Ac$ySF1R{n2O1XG3dTqP zAZhz#q2W`O=_5fll)9+NtdGzHAs8VzhH4kGV(?!MUPU9C7)P~HKuR)ej)J1c(TYrFh9$yAOAo+m1~%_l%&>U%pg1PNmB2l8V`9$^b(H8QfoU^2 z%aB`Om5`p?d-VA*Uk0hRPj$bfi)y0X?Ny+<*cI*2XFacn~8C zq+`c7l!Bpl583eyQo>jRoUTyTVlcA~VG(GItwR=>Ym8%SB&F*mrs^f6kQ`-nf_`|c z9!^xeVMvq?JfZ=i8Ytw6h}8*?#b}@&e8m{N@Cw4zg}OI(E__s7y_Ma3R9wMme$;?4 z2I>5X#vlkI0!$Z2bkaZ+Y=)BpSRgiLAN@mBv9kdDgh>?@tZ{5~sA8)^7Y6{>Kq$X* zFlueWSXx1mu;vn7I5Q319|K~j{!tYFNM*kWrEmNFm6Z~alM##N z7L4nms-?6b3DbMo=@A*6ketlOqP#c(KLM`Jyv!&JGzbN$!r~NR5eN4K{Q>tN$&t|n zej+a;DmNZ=oNt}PErM$DH4ALIVoXz!cauy$KEbDBpY;O>DHdh}% z)X-dCUSCyMFUqf}$Sp6W^G#J9Dk7rHfZ0veCYhy+tb~1&+e?e9bbRH@c7+}*B{@!`S5W4$;$n;bvQO3K7ao7)vFg^x_2mJ zfr&Y{g9l^k59{FrKKTRUs6$0EP&XTEi-eb=ND#>C?8rq`RO@) zLVRiIv6Uizr7#bC$BGMzj|&M3^ziX^3<>dwjPQ+#^u@f0q^7heHzSP`Lx}J4iSC|D z{R41yUcG(m>W%A{E?zo&=G2k0!tCU@P;pH$G`@wUiM4gaB$vMJ_t$^_qoH7PW@PTh zxf^ZbmbAEJD~zqm?}WG0*2vh#z))RLk$5`^^lc@34In;LyKLElLoiTY9+Ds2p8BdP z(D(p-=ISVQQ8!kj$sC?kV+O-SjcLMUIv5+L#l#$LY`g(|=+w~@tu<}c*=M^7A7V&- zy=!^CjpW_#NTx=lfVkz^Za zR7?%k&Y{a?yk%jc1(Ch+UeWN4l7TBl!`I6vdTJ;7#KX5mL$@kNduzuB>c{%)M|x}f zZ;NhTE4_3f|NKummo5}szEE`aQfc=!(a`O>vHphfLFrI;Ro{)$iJ_XQVF-MfX^>71 z*N+YY@x;Bi%P(K#-@IM|jc@!;!{}iB=s-QXU&i|DCj0AW2E=ym#p8D-k+|0xY+!B{m84wmwtXe@bTxB-#>qXr4tPzX`%2asVDEhY zmrw70|M(Wr_w~bDvd-}HtIr_5XHVWfekdcpr6!JRXI7Wz zA3fOE<9qz!^^4D+Kl~38+#?CTe}$!UgZR+g^4Guo>-y@;lgBU1T%8S|Hi58-Us8uT z^eX_dFdVaAK6YUsbhqqH)*HI&G6N#G3@TO(P(SjljzDsfozf6vsF^iZ!4F0s4H>)dRTNz`X!2 zoSeG;Q1>$R-~;qZ)p2F3lSo$*-6e_Ul0?OEO(Kra#8UgC7X)i7y0q zCjx!gXn^z5$n*gDS2Jr1OIwhiwyq9ST@4za3Pnj%iy0B&fBa}eb3fzY0!2Y(An>1rN#=j4fnOQ zGgmX#qv&a=XloMVB%QuTNohNUx<{41hoQdT#9ZCW&(hV))WO}v*7bmyy^)cPp}vJ7 zT~BknB8K)*z_RlPIr;xed_ccH$tL-b=_4>mx?DE4`L@gL+`nT#ZKomw(5JAMx@|XQ zv%>yO+xPCLtD8DFy9I|j`1zxdQ`gE`!_30i$;IA3z|zCr+|^0X(o|Uk#J6WBRYk|b z%*x$O*V3G-ucfNXWEkq|SeP5yTGRD(H|^a1o&1(PbVU<4J-2u>k7Og?Ov8X2!@wLv z-z*)kG!UPb?DMGW$imk3^nwDp(j$5LZGn|$&OqX~K&tz?%RK)$X z-O1*Hx^n{4DM8IK9+fP}?onK@=#i@JmZIg5sAdtVY#OR)6)A&076Zfw^s@}78V4vD z`74=+sG_08GK^{-N(J#92*Un55K`MIUK?dH4sn`xG2htLiOmA9P!&%^>Ov_lArz-z zRTltSI9b*vsDi1oFbs1O5Oen3538p?8d~D0sBrNNr+P+Ey-{@-%kYh+dxTM30~KBT z_qhdv_>^7I00Z0$L4=Ct69%p!i|S+|0fjK(O#di#UzDzdQNf1Jeo9V$%FY4skwP4# z!g>c`5fY($AO(-(2HPiDh)|K0y1;peoo+JphW?gdbi9OP0D|oO!H*XZp(P`ZBC~N`6#4@5{>F6*) zQVf&vC~pBwK{tdF_XqLepOB#=zDM-505pjFhr1E`DDq_l62X1Y>>wIKQY6|U!NVlt z)r4*cghWY5Xq-BPRCh2`5I}<(3NtE(4hhHMorKIvK{PTT3gRX+6d;+X83rF|f?6o_ z$3)zdfjdXQp_&K>CXOah4lEg+z+fdYk~r$AnY!G(1385@Xm>$qk@T0sl}b87HCY^O zGPD8A!QcXU6J+%O?Jfyv>hWo0gd!3}mn7~-B9Jh$%EV0qsvGhjo;S##GSe&=8AeJB z9{^_Q5iIO2s)R%-N5#`o7sE=yBcKdtF=*+G#TO?n3e~UCjIbz1 zOgw65@K)5~*v$B3jkrX$1hxiFTq076OynrZ$AZu$o-tWLE1p0YWg`+$-%1N*(Lz{M za^kS~@QrhPIcc$iJWeGPlcF>|hXF2|uB{hz;V)&5TN82SV3F5Kmal zfy1+`0MmO3i0_q^q*e&hQPslFjw|6O)m8H9vDZL?e%z*7en+F==)uaP9aTpTR(7_O zV{iewURy)ip_ZEC9nC)->pFe-V7sKIT~giETz{~!wx+U(lN1SEFE1xKKMzam3Fut} z@#W_w=kgM>GGej2U0jq7;>+f;($ixyGU7md=x@y8CS~x_Gf?APQkGp>o?k7_E~`x| ztSzWHSl4wyAng)J4_3Bz6*U}9Eoj)b> z%Tw|Tg$*?whgw_ft18kH>yu*+XC%f@ zlBBb9qr#j_jnx@yLE*6(MO7iO$utcerM>(0D3l0S7ld0boH;wt+rPN5w6eUmva)u6 zX=Mpl@2@{xd%V8G0oof#tJjLi9Zh?D~ z(A=lrK70b@{r->h^&@T}xcBMf$Il->eE#&|^B0`=pFYCg`Qr5>u-@$4=+N-Zn>Wv% zKi_`zM0w*uPO&&5yP8$h#;ItB*jFI#XgPi z1QEHCw2H12K|3p_CMj1WkaT1eSELrA!?QRpwF+>MMMf&^sIAh}| zIM^L8rl-W#h>FBj#k}-{UAp|!g>xtVllX4S zh;Ma$e*MAXxBdO_zyHzRJ^%P@_0|2Ewb7o53&$_kSBT?7W6ZP-jF_6bG&*DNJ|G^v zok}>e3KvCGyT}Zmcu_@O9@?Mkb_K?+otpdi>Z&Lj(o|97X{y0Epw2L6(2VIc$bScz z;69qAj+UQ;T}ot_Fpt|IF71*Ow$^g4T`ZcJuA3UKzXRSGYq~ep28g>qdwhNV-1@?W z2aA_h=TDDeO%IC(W3A(ZjngA73sZ*{rVq`Gw%)&cWO4e?;#BA26bbZUpkaQjVQm%~ zU(51j)BSPDJ?M8mrL!Zoh~^=bH#^#lhRlh9>e)L|>@~~|H-Q0Xh8rjQYR7Js4_zr9 zyj(JJt$g5`VCYuaXm90szi51*c4|mE(kmY9slIWg;S#ae-N%vLZ z(5>3xZp=E=40Vh8Z=v>6I5~_#_6D@LOx=-A+>zWFs)Yx&ucvaLuX?z@dZ@2zsJCi- zNHWq_H$ET%ht3Q&%nmo+9cf$`Z@M>za36f9H7m3AYxg9}v*PuIrYEai&ma8s>dEb2 zUN3(A1g%{b;(Jes@6)@lA8`or5qsySw;ROw`v&p7dHLzZv-cprCl6mgSb4s>_?Qsi zT|#^tmd@EJ2z*%OyAO?TW&Y8_l^0JRzJ31WJkJ7YHQWJP~%-iv+M=HURp{A=s5;l~2MitRrK2$jxzuaCJiI zlW`oByBcVGi2eZ&(WO~k)l^^C)*wAtQ`3yW^g_%i6cJ-5G(KYNlnt^MlmI7NYHB;s z*&>x5l1MsWD@FQGP%14c#S}aGUa;PdUQjZ{4zVwlTM6%IKDbf!_@A(eryWM~OZqIi=?E8L`(xyKI zKFZcD%9}SUZQi21Nsh8vPIZf%O!C`GgX*^hms_ZtHmh#hO5ZA{whc8e3Yzi=`t32; zxz}(9#6FljcN@s<(%-tr=6Ov zJ9NEvLF}^%SGA8}IK``BL%}VXfmwDGt-$!_ldkQXuH&1o>y@hQ%GPjT=K5k86MX_1XK^t5dThU1tvG)n>#Lc!uz-!g7Io7BTsD z-igMh&e}RgdW7aIt>CakUnjD9FmIY$+t}DUy102-S=#~eOw6##X9?mnGq*M}IiR7X z3F4#EsY)t}N)$yib3?IMaQX6)(RIQ@QB@sY&h`DV}K@x0EE;m~iU=FGF7! zgFsKyKrgcZPg6fPPnNi9KWbwJ0Ev5Hzy-EXJZ!^6B`>nXIC>< zcXLl)YyS`j??7uy2VDbmrn&)@qM@{(wtugx;x1*yALSJ`E1-LmY_EgqWLSquKG}6L zzfJ}kaBw>epOF8)-=gs2wq0^N6}RtG-J!_XrOe!|tiF98ZR;*Y;H9Cpt!G$-duW)w zub+XforamYzP*E$mluW@EZm$8tj(1*8S+Z|;Oew+b#@B$xAbr|akMdZur##8u{E-_ zQPxoZUP10pazE~8Dw}!fyC)uSPewXVCjg<#JP@C@J2ueSka0CIhvx)~W*o(ZO_O!$ zK;zTKLOO=?P^;n;qwXAsg>)_7RQ-TVL)7(nBx|`PX}TtApv%QRmWql_dltnRvw9qD zH;$Gaiw@i~3fyZEPC-l$p+CD=hE*iZG+4#ZSMfj~#Ug}e8A7!Pp~BB;84eO;*u`R> zT^p=t8-v^*(=O&4H@Coqi7*}1JrBg|La1(lyAa}bBlCO_Y5^f?J{Vu~MKq7@?hl;~ zrbjfZ(0n3P+(MK*A^pVAf)kiQ@oN4tbUzp`v27QpiHM(P7{d!El#bLM)I;zi5Dbul zTw6$-b_h#1C>HzX+PL(OV){g=;ULY2={n#cCj7jCpEAV|j47LkpumL~jM=p~gzV7I zj~pB&3)0`5ac2|rdRur~q1MOg>dABeaH zT}+nv1InTD1w;@NuO18SEDHO8N|3kkm_S8naCihF9imbOXaU zd!*L|9i$t{K13QxnG84%nMahbl0c%2f>CXX4R>;&ui+K(Bmk-K8OP@f&j~(dV{eheuPXJNr7C8XV?d-agd@{kfML63dZtKxfv6W5j|3%3gwQhH^vb45PK7eU`aMH zk-|P2#X@ZhJ_V5fsL?D)jc|1$UkQIH)J7_bTrkssCBD#T3J#g%OHjjo@HoMdn2%H@ zK$?i>=Z~sYsG^aHc(1;(tFwR$2`{-YJ0UMC1}B#rlbI3<+(WnzyLnVb+* zyGUwsYAdtAdd0l>A`<9JLQ)S^Em&JXe@jtr0%qCkFri*wC`Cz&kc)axsqDq}#?p?K zijL-r_D1M^qOP{uV;zm>PaM5?^2Dh_9fumF2c>m~n;VaJv>xqf!4SNtJRj%>uU)x- zm!Hci$W4LX2br(1Aho18vw)w1W_}(oJ{y_7v}h0?5Fm$-_#QXA2xT7?1vT|qWui<$ zZE;;!ZO6Id`a^<-uFAIK`E_k_? zZ*gNoM|)#iow%}~ipQ2@B^=31JzoM>XYnnuuv;R!jU%lZYM1u4)L#$@fP1wm2{~Z_ zKGx=HsucXGFCsq07QS;$Lp2R;8~mu#)+$U)IMsge(zy#auicm!pS-`cyteib-b*xL zLW~3PJz0PHa%OR%>(tG3{!g)-QxOTrlCmxfrMC`W>S#TG=*&p#Pa~Z-=Xxer?=7rN zO-xVRnHaw_j?04n+(bxiL)eD>=3o42oj0rX*n9g}=Zi>nU^45Et@i+$j|FTZ~J z4dY)pUuEZaTz>rZ*Y_Vky?Of%YwfEKR;FjiyL+#lJl!d6s3)a2JmGppO!WvxkNoqnmJ z5N>UXursxyBQCc-i7zgx@8pXl=_TcVVY z5}247mCQ-c$t)BgzL!%}k}W&P@n!N0xkV+sY+iC6KSdc=ffV!qVJKPE1B>ELvP{-a6MmcztxN4_%!XFPz4?cJ0EoD?e4>OFx$6 z_-@`lJHIgY{}1AO|Kj7DC%?Q{fA?_l^}^)((Cx94ou^ClN@Ic}ZHUiPSxH_2 z1yuzFh2V` zs57ngwB0RDqkJ85lLN$Mu{SSQEX{W;&K(>ds=Lz%!V)b`!PVI@KXG(^>cqnI>Dh^{ zUbr7eq*HgA#)q562OFk_o9D(*e$uiqb7*e7?e0X|y@}R^N%UK`V>J&sxb>O#<%#A+ z6tE17C;O`IjWy1VVm2Kc3bpWCZj3M79c`K%sGk{6!*MBZ=;3B{G zQqHB*NoS6PUpgH=aDzKFEJhV4>REbjRo}XfC||{;3&j_H%D-~H;MQe9@71#Y8x?&w zD{fpaxO|Q~*j+k~DF<-nuylO5VWhvNue-G8b}^uDptrj3R_X0)dA&CZ@xfx*Vd!=> zpl|jLz_V!qUe{C|m$ z_&H^`hn7xAd;d6Onqi~11x1|?UOiZOwz?!EKDavXF8>$eTev&5xHz}EvheuP%FCw@ z-oAiG@8z#wKK-2#AJjb}@S(N^IX)OW|Ks z8g3Y9OJq7HsG;e_5jBi4%68GpPPlUdBd*By&{;x!zkXQ#%jYLQzg(G^9zJyXFm@56 z_#Q!A%Mjjyh+MPC96OgNLnAv)ePaVt3rmFdkXe9%)6CM!(#8%QF7{5Y&aNKTaCn-U z8=IP9tk2xi#vJ)RBV(op{vgVL#;2^JxL;{6ov9ic;eYga+t}Dm^nwobo<7_uEG=fG zrnqNk`{d>X~l{6Do>g zi}E6PS;1+k{@J{U{G#~0!h{T76uL9LgB%W6>uMMzVZhW;#fa zX^$?KXo^D|gk2D#Hu^tpqE!zB?=$k>Z4RY4lJvA#hO3$eQ;hr+js29&gK6Xh0s0u$ z5$e|A7-dkik3m13F!*i1zpUI9EnW9Icq@5@fM~D{XB5uT4~o)6{to>c zj?PN1?ld1CO%E@ohY!Oq6s9;$xB>m6>A*erFctT3W$!3ee`r!MsPUwDg`w3G{!A5; z&I_P8`a;4}1o8RFR`$r;IeIT+HT)wrT>X&~gxIHn<`xp%!_)$LOGsx6A-j#x8QuyR zfRK&!VYLCSPQP#!kQ9VD!fWAJRL62345;)#*d`N*Y6ey!2!jF^NO(}P$Xiq=A+;zh z0HRoi<{eHYHq<~Rw}Abg!HNJwJQ^NTR$T&kfp1VP67K{2mZ8dM_V5Z)_6$^phY+?& z6ox=0M368joE{yg6B(@&hW3(hCKf0{&{K--Z{m$ae41j*t$>172o;_Cs{N_?Ur0Y|_- ziie_xM5u&DQV7REMTHm&#WqTnEHcDlz!8&(q(&859@a4+FT%qKA1OOcmz|-9N>Ua_ zD*^e(WVG}U3Wp@(jms*{icM%Iq! z=zQDnuOePzeio~c7Y~6Cw#=;5a18L}abt3`qIo3B7lB)HGos6jQpyXHk?G@S#pGwg z>d8hQOBog%K!s?1$&E+1XI*7>Q(b;5hVNsCit;3)y!xvAhT7sbsqpAQ$*IFF zC%bUkFPuDn@#OK7o$W{4nvb+J9c^nl*51Ny5Y@DTy zo#m}Zxzz{RWo;Z`C%67&LDT8dmQ&bX@4V30dg?~02X|Prl2u8 zOXwcWa|%!QWbuMHxgqTIC=Q@6qezgA%2kwhBEFZE&B@Ep%;s^@(&MtTlS%~Kg2ME; z_~7W+KooTb__=v|IfRG%aI+HY#bwP6qS7L6YEonlH>tBjdh7Ou!Qq<|(?ck4xpeXD zmCHZ%_1(O2^;~%YH$K9zT)@42<>=hqk(JeZ>kt07cXhsd{^94RA6`HH^77&D&(=Pz zFTS1|Tj{H!VBR%?m?W>ihPqDr~1C$G2U9vQ16}>fSaKya4@(w-Y-KU_j`7 z)Ezt3_UzG8RMb-3uTN1zqYFmct#vfbG?|e64Cz$tw(HXsNaoqBK| zsyHY5Ye&09qqi!DE*Ev5&b)a%1*iXfR^R1}qX+#YRfg?Sy-TNq#s(^ed+G;!B>g?o zzHVvH&H7u{MCVTD-n>!_8)pw*_i9n!&C(l}`PVMy40M-{4OWj1)Q;dC9*_?AqwgjE z(uMS!*9yU{-PiJOUP|r0mOa#4InYxxa2xl;gkQ^DavG+Fs_%}~E^chKPgXBYSKghd zSe%p2-))(hYFb`8_V)EO+?-#2`IQuPzW?nbIWmoJqrU|SJ{j)4e}^$X6m@=i_58z& zC-0sAn=N>RgtkR6&> z$}oW^fyxH04NH0KjPg`oC7N4^>#{%$7if89L#?>Axw#8}H3RWU>e_3n(Z?bwEEc2T zGcyM@EVw@g7pk*}3zYP?lvg11*McFx)|O+fEl0$)g!oDb%{Ar~HgNOm(z0ukGb(X1 za%$o2gvbb~5x58Ys6gfdMeZ-Zpe~o#KC2T`1o0_?ICfD?LO~QOpKLV5^AnSczU@!U zA9w$NvuV$doAzzmqPSU3g(UdoRJUyeT1`MpNS_ia}^ zuwBU%S-Ts&gWp6fh<;v7imsBe=&QS3EeH z9&9b_Xan@@qg8Mq7&)`(v4u9BX9}0^-~RH;%GXbiUp-$Qn;hyqbr?V&p5x)4ZXT3n z9Kt;ioMCMfsH`UbefCZDyPgN=g|{^lv0X|OwBio#5oJZ)guO5ZR#jps?NZz;ziZc4g&i1Mhm#Yyhki~>u9MaEKQzAo z_X=?Dd-6{pKC;dLnUCzS%kM;0%MWrpkl=&8bC(KpA6n`sEI3E-w__&G|iw~gTNfLvS_#@Fq~o;4uGssidB%JP1t_tc#1FX zfb!LBeZLG%l(IS}&>iB?-O6xFRQF2O_G0UJBx<>kJq5h3nnM)E6lnHQ0DNeLT5x+h z#xX3zln(^%H3`^b9-@Tn=mIheQpQ)2k*}gzpsG~}-84Ye#Gh&&tY#CgX%)t_3Zu(f zI+?anba;tvB1w$&+kSspxTsjUsn~nLOG)<+)$m2xNRXO0`c-^X9Nko$-DvLaOc!T{ zovpH!&0agF{qBAgPr`JHuE9#)s8Wez_{LCuV^n>kReT~SfIBFLE^+E&){c zAXT4mQoTY7Sb$5>P^lPR!E{$YI7JyAA-E4_AQaIX181Xe1Rg{g8dg|59ri^8to)-@ zaU+yCa4LSRB>5alFjTnR>G452o{GHQO2Frb31m?#E;@(93$ z$1*5J9ofd9aAshzntuR}x^Ey#MIa!ep#`%GPyjItPKWO?0ODXYLq?kD51|J{B5DUv z1=r9J8-y+f?L@#I@{HT7-L;9`YR=@YCH5)Go%Ad)3f z51D=uvZQ1LX38~V5)7i^wL@Zo|IjxvAwk1(L{yx1BughWRudsOU^TWUh?O*6D?DB+ zBu+Dwg)Mc1D3)GCtae1KW_S!>P%9)_1AK}PU&g$6a;P9Xd;#FgfIKbenUO7eVBllJ zXG{7~6EKITg(n9q7%>oA6N!?D*3b=12Fc>9f|zNOFdvWQK}{^G2SzFfMX7|uP{LWN z_(%f~#0yu%^M%Gd58( z4tCR|Z%lk8xk+SpfyYAc3a0n?S+RH#^jDC>%E^k!Oe4gX&y7QE3(|aryto1`t0*T4 z4WB63EXYCM3%jf^8SR~Q6`5#gX=^NQtm6X)Yb&@7)%nfhlIFV7miqEGY31>brpu>} zT{&|C>fX8IN3NYcbN#0?=Z_sZd*slWuFew&+adO~h^xAqB&RysPItB+KiG1(t)Z(~ z0^4VET_q&H%F4VlAV4v!*0i0(;y`|NLs?@}-Jye$uJ*dd zx{884QF>})X37bE`lYhm>!PCD;cO`9!8S>MOa1M}n)6kHuEJ~)hm{)S}oqr7H zA$Et=JhW>*efH`pE@u~4ZuHN!9=?+&xDuDr=^Nf%Tz#Sa^r>5uQ%lcYz4?S(-t%X# zF~P91w0dvm?(`_;{YIw1Zj&>siz|=T9zir*SzNh0H9I>xG1)&b+0!%I(>LEcxY#?e z*wed=bGv)#+Kqb`FVCJmH+kaZXxHJ9_JchV$u*JaY-vdspI4Tg7~EP-R7!whjT?pKZDQHbDZ_g056-&EH#ck<@r5S?al16Dxjf7j>k}hgbE^Ci1Z1zp7 zN+|2hsyUik){HsALpLU8h6aajU%7k^lYAq? zy*IC(CkyPsUL^%-7cO?q%nU6q&8(~~eA}O2|NW2l?%C&`pL}}#_}ABue}DD(>&r)9 zo~`||eD~?Z;N7b~-Ds$4K$)k9jokqaO&w)rK%c6DJQYq(1$mWiuzGI6QT{{kgUM5Y zv3s|ck`hdwDDy2Po3*ih%h$iV^FCVK%;GTa-2*w;9X#>>$L%-do6 zU}B_da#%DwT0J`=n(7nG->F(0Lsg4(epI?JhROA&#VHV9>*PrNa9<@{nzMHrr?90y zgbZEv&<(+zTV;2y3wqDyTsh3Sa4`PbF;3ql-svN;O?CE764R4Myl-7i>$y=d&?6e? zk@k1j_udruT(7)}b-!C>!#x%K*Nc0vmkf3b`)-vF_6UdiM5BYKYN_qHS#j&SV6b0! z>n8vBG1lSE_zP$9daf7uT;um%FN7utSLdDny0JmY^oV3;q;_(!VywStVyJL>q;zgn zI5#Go8Y#WgUotx>otbPI9+b|_9((iZ?r)#asUq`p5?AL2?)~=R9ncT8Er0nSJMZ8A z{_f}B-oE`s_g2Xa-^|io65=DxEqA9EVf9>JdiHqr z^>fs=JpKIc&F^1-`#=8)<(wE^CoP@-{!f41koo=t+TZBNTwB{QBH z#S$1Vi;2cZh)*WH)f3NWNqu%c#`1(o>17;lMH)|(l~TmHZ|tn!Jm%2(Zj z3Kzus(D2FS*Pw$1${=ZC$wdGVGYwdOXsHn5KCLK?X^|XIumK?wHC0v1R{sQ2h<&h_rhr4!%CO3ZjRqO?cVBdD_&D%6K;mB)jR?yrcudziQH7^>QQ1|LJ@=UgDcQzgaE<1~W;n7LAU=$7d!%SW?{iPl zM3m1vRTm*IfB=>q9Ag-cu{iYTeCv)=1@{+ke}2F6+lNOlo-W-PAM7}J1YJ9!JTI>l zGrtVuz)TZAwuPC8rk1H1S>m&>guth*rw=&~qMn_Dvz?<0G(KBVDDHMvbqVoPd`*!WxyK|rNKA!-uhNkMFp=&G4<4+z=KY29K*MF?@ zP;uv>lCG}OuFm4ahl;v7(5B04X-sR9rb+8kYD7sDrK~bRoKTohU7akcPsgdOOycE) z#3s06|2!~&+Cy+p zCh9@gBe%=?TgWYh_>e8A8Wi9X=;s{hYvbw4 z(9`~5`xZIHZF+XvE-|LA$vTdSbPx3KWb685YQd)K63=jsQL_tI1@2h{?zIlv=aQ)E zpQ#nXGYIDC`J#C>RSl6$$h$~%;*$$e&y}U_7(;i6#$qGIK1$U#f*c5i2={rV=)mV` z8$~q_Q8WwMZyBOw6{cbts$v$Th}93^9t1wCP^xtp?f>EKt-snp7k%$_&OLjkr2>@F zVi7{Hx&cLsdmxa6;O_430TLugaCdDBE$&hZ)ZM2pGt-Xj*?P}?_c`a@^?skQ_j&Ih z(6xVf*Lqe~nub`1HGKG*o-6efo2t)IH{vr5-5Ai3&3y1*4%5U7TkvW|9;)ZOzjDsV z$c}DeM>ln#Svk{fUDWMd)SdZS4j?`@)!Lb6fk#8Y(4IrVi!paPXv2gzvyvu!%amqc4=yJYqEeZzH&o)#oTTleWWpXbIC!UcOdgHx&Hy$N2<5|B z3V9L6QIH)l5P>*MIcP!EBIJl^Ie*+PJ;V};zl8{OJTT%Y;&u2V;EMoP;30(I0BaE1 z$ZjAsP+tHe9fnB`J`hhew!4apyDHWSkk^BS637V_L;evSS2p@jyzn+rm7|7F$;})4 z7f1L$y3)U;pq>TNCka1d{m_d^UN&DHpCmp~G^66#aX`W7$pqhd_yYHIJ^i)OIO^t& zB2yhcpwAPpgb1L(VRAg_sJJ1T9icz`8^N9mh{knN%}UIx@VKI5(-#p%;(EnFP!TF2 z4rqEiq6yZE4d*Av`sSsFBaR0EOpW)8 zC%EUC67Ppa2ADi?w+xIgNGJL5RoP^XJ+!hHUZhPeKoi@jY~aE92|TwT#zUEWbw)zerD z;_GRu?QDSdSJ_@G?yRrGgVdB4RF@Ut0qd%YD@3^&Y0)`3iP-PXF3d^D%1X);psFQ2 zy)d)1p{TY;An7QmZpp9hNE9^&WmiTPH78dNWY-Q9Hw{#Gk5+eGghZ8AT#+fN5Y#r7 zwsn;?x0XsIc{!Pdv60m=VeM&g!}+O~g*imss}?TSmcz-pSSOw*#3vdo&Mk=y3TE3| z>7O{vq*K+DsWb}8sLz@hA31u6PFJC;Q?+z;wRJJp>DC~TTpT$+Gd;V!w6eOg23zK} zty_2RJi>M!WWJ|QUI5=feArfa1sU$e+aDi)_i^*~^Rem8=I+6q;#7NV}0xT^4jv)<*Dx8@wT?f zmX`VUjX;)-HeQ2gQHoqpLv?*06iODaHFDi@7ukcAKb_z;k2WLd)ND_;h zJ!1-OeN(OdGo8b7xY0Ro(HZX1soan#udr~x@Supeh?LBv)Qp7q#K@%ND0FgiIJOvJ zPfL%Eiw};7^7Hm_@r0|>#g^l0iH$_h@qjTjm`O6x3Av2fBozJeE83Qw2v=-egEv|ch7!( z`|S79^Xofs-_u`SJox_h#^dR+h1S~Eg0##~PcNIZ1}8Nb+DZo*`{W_^{X_5DP2IZ} zu1-jPsPTl%r>(3^-zSf7AMS93N;!A@7>G|#TN7zMGTXb|+!cw@O@eJW#PHfv+PXklD%X*h3UOtiLCzcOEq-Sdsr+O1W|)#b|drHYMJ zG1)X<5w5Qk&P^oFT#8$nN!gfByD}NSaw%?WF7M__+4W`N=0ef6WhjQ#TPxM;ixpRw zDsTmY+BH}%XN%UR^B2a_7st|;#xm!I(l2$yoNo&0mH15!r_PLJUl@w$?&fuNuv?q$ zFAfLHOk~bam4iKJ$5FG1&X(-?iJZl$yoJdeaNi2xak^+_z7!)4i*u#(Gs5%3DV-gm zmoKMWx|G<|~cb-mtdPc=yivPahuq^5qL5zE9id_qg);gl~qp0&L_W17K zyY=+Ry;mfiJ(XV z8)tF`2GdJYv&%Db#W@94SW7Py)NE^NC{95QOA;pVQbiE>zCUFsqdE8klm*xub``-cvwN|>cpiSES<8tJ9le-yPNs#UZ#w! z=B~dty=chn(Ug(Z-YuuS2W_9=J}f&Z9Fb8xx|2ZP895a_c@=$mRRcMiiM+Or;%SbG zsV~(kMBOS>!z!F<7p2RJIfCODeR!MroY3SSe$*xq)%rR(mVR312mz%SHTGoOzccma z3zaos}!l_&Sn`6M2bFc3}prsFNJ)YtbPgYd#)sw> z)O7;)aM0U=W==f=%;uq^1jBsB`ezMKpV8CRJ*270q|vBq6jfyvCB=h^3I`PA_RF6( zI29EW(%f3TFn{sky|uTmZ@qqXZDd5!-!Ja&7Bx0yOX^Z8s$%mB{nIksqGFvwBJ2Y~ z>^%Lf_}=CLp$@?jEXaA0aooT#mWQvEBgfF5d(Pg?(t&ShY;UT0Tw6g^aqoUP8QDF% z&x==I_JnTw6imJbzymXIeK|Ic(|Lhowd%K);M|U ztgXG1kB_6bhrK7?mdCYrbpi2N^IS|FZRv-!e!d@7zFoMEWeD9alIa+u zg+5iQV7hgHhLyL5i5ta`qh#c!bk1AZHcZ_m4s(h}I0=UwqcrRz88)GG3uH6>)u9HO z!Tjk-Gjdlo@l-wMrE<=Tf~}P@u;R=cyNY^CkRo+&`lXn@pZqy3~gwJHdG@U ziV4=!?A0vMk?2CVWK(efYj9>-J5y{~G)E_fgCoP*2J7l{7RZQAM*0A2FkZU&0M@AJ zej$-SS9KEyH6wd9V@Ikvn>-FmIL)1Drj9fNOH~7NH4_`Er2{~c21=5S{i#Anb4G9v zxQF8fZH}bv*fCpX}}Xf1mx4$pfJ9Mohu#z=!eFB>_-qEsXd?K3{lUA zD(zhae__W#n!=O1F`dyf0|Y~}C?D2S7&}o21K%dYmQ6LYRl_0x<^aywQ7xR%7^7j& z)vzT6{>U>TQOLvsg*At6!J%28*dKqzVX)mvy`;4>!^}y;f(@CHY*JvI5UUo5B|4+1 z(@ovhm5xu6<*sG#M)Hh!n;4#ebrv-3U79Q1dzmzp^FcEwuj*MgryU$p(wP3Do2(e$m3vY zL7n&{w`)8JLK3GXDl4(b0K@~YL2|`M!FH!(W5Uh*kSqVNtGkYi2Xsjd93oAE*QD|s z!BsFXmx|RzKp&6_k}LkPFzvzSGq|3J^=Ts3huk6*PoAe1&y&f;XoUyH>q%QF4^->T zz|6WYd7aoj#0$Ve`nJ&*pBtIsAbXBjg1}aY2aKk0!0HmSZXmLsm`ca+1cXt1Eb4G< zqVffEfrvno&B05HrgCd>`n4Y?WNuyn$`nV#UE z7Vn##5}21BlA9Womlj-F5Zh3dB`HrwNsFX3y|z57Qj}gQNQQ^Ap}M$PQid`XSTuoh z9rZQ6&GkbaEkgkNKm@<-E&VNx1Fg-Yz1^d|UE@Q27kWDe+MBu>CGB-pxKB@0U7JJ< z=<9E(?`y8b>2IzZYHR3gmVo=Z8>{>q{CF!J*08UKp!hX;h~{zO--X0F3!%(tuC)!y>j*1 z=8YTI?qEIP-o3}j@jZF`9K`n=k-HbK(X{#c<=Zze-+p-c?$gV6Zyvq4yMF!kqwn6m z{`BbC+grCEJ-GJ-cff=?))uh2faQf3&t5&c{{(5ijb)6Z%`H#NtW3_XTo{{ZX&tMn znXau}YHYmP)^?+-`*vUdy}_XeL&J}Th93?L-tXiu?7!KkqFU_y55vHd`BK|25q_?z6diz@^ zriRznXJ=-{1_!zZ2f8OFM@NRbbJAjccn+yaq5b{!8=G@CZ?8k<`?}v>|NKXL`}oJV zk3YY8@)IcUE#W?LaQ*d@pT2wa{lnWY*XB2RTe<}qIqA`{!R~x3y)#EBs!T-%js5%S zB-ytYCQm4Ruy-Qj2e&8sJSnn!Vf6&`F%KRx1>S&6%>R(*@V(bFR*$&5p(|O=e&gVQvxoZx`mWpqz2(K-bz~{NKSaIVD zoS$`ANZ(qi*<7sNSU^8#@#JvQU~AA=PsG$<(r8EAKz-PBf7)bU>f}(?%xJ;Pc-F{B zghXN|5S*y5wH)jXoj^~^bm_vBXly9+@<_(z^Jzq_yOchQp3ljGnalZ0vm(5<>4~E8 z%Y{Qj3Ee$GBj>{hh5{=q9Xi{BCobj!^p>WD81F;*C+a;nma71vYxDU_Q;8E71INz0 zj|_8qx?C?^2)(*maO+z2gFCJFZ+G3g-hKP#$jk4p{Pg+tPoIDKyT7SLcf-Zy!H+2}`Gx_@vVe+r$Trk4!V%xpnQ)gFD|nMTqb5 zhu6=3c>n5`&)@&)Pk;Q6zaYW)*Z=zWzy9yP{P{os{6{jz_m@BZ*AE|m8^5%G%w2IY zBr^#Z4N<<-EYxY1rDd04l@DtR*ie8H2V*BBHZ-(A<0FMF$?$d(jgJiNC6*xE2O@*k zmXTSOon0=qfTB)Qn3PrweuVQAl!pXgR6vs3uadXp^B4ofcT&%Q zse||e+F49MdB&y|My8g=IAn{#@RXhbsyi`MBqhExI=Z@A+FCR^O;r_^&I5`E_Y>k% zkXP4Kw{x_PjSp{buG+jh^YX>b_wVjrS-ZHrG&nxq+TLCyu1qc$C*B_zB12H3E9 z#`bIjE0&&_{V6BDsRP&8#nZyY!@_}UV&`gXXG$5=>Xrh#z$_E+4VnUWTfXG8Xs2LcgrKq_swp( zZ)AXwihC8+WDijGDk{qj?T`$zD~YgAU<<8h8t{6Sq|1*HUfRB+8X~RzeD{r#nMZU9c5q_iKRT6O$7cC z=@vn1mO)hF!u6&ayQ>)T51RU_n)$2RM$nyNwb*gmPBEHxRc( z?m>OtL1Rx<6K_=$FEvwdBLAWL1q&V4XmRmonE5cU<3Oey0<=JX23*yXP6v*m2*_E< zfJZTMry26WdTOWHYG+(1fWFhts`{=J6L)psp|QIv!96z>T=}}+U;5UndYH+!QZ}+y zHnvqh=b&QZpk&HYwsxghxlqueY0aiMa@5Jzwx=$Kuf=s|@=4J>(-A-C0~vfUvbHR%{v`)5aBjo+`Fn6$ieW z9ljhOMi7rEeW-bX*%CS(euj6!R+^6n8-7Ts$I_7pjf}~H3hBm#ZU}(Fa)gtI1`CoL zv1?Ktp$S6S@xX(C8ByT^4U1I4Kwq;*4XKN&g|mt!TLtMtw1ASS2v@2li)w01F|koG zXMr5m?YJ7&Y?=j24QqoAJna23tr19MQ_MiYF1SCC5Ub@_Bxjh~s~Xv;nmb}nLfsL2 z6Ih@iWAqw!m^E~v+PkXTvgvrWkTQX&E|{1n`XGTjXLmS7F(U|u1#oHMDIDE^SFn;| zq+S!rM7&^h(QHF5t`igj$Y3g+OlE+vD2^D^;HnXTb;E~`VpTj2BrphJI#A!R3CQ== zAq0oA&;V@w0mNW8CDRYUA1G)Fj*Ae1#^4823N_<^8Wvbg}Y5yBjckBB9A~$jEBr)ppJWxu3MlECqT=ESVoCc6pA4c4H0z=L0%Hih|fm@ z^*H!icWh*!BqszJLsa^}^@&2^CNhT5A)pz*aekM(t(?{2>|*wfQY5D)k1 zY^dpOtQ}};>a45oYpNS)sqY8zHA(uKYA1-bEXgc53dcLQvudRNdtGTPa zp|~VJB`Yf-ryw@FI5I<6T-Ph8X&2PAX> zs46nESlHBE-P2#z)>_!qQP4bCBx%pi%uf#sYfOzF$%-EnWG+a`H`*FD+Z(U8)}x&B zN^>osZ$VOVSuAYH%ix$AYExB|l@A^}eiZQqEgdc0LpmB*8al;rG^9J2pLBGvvazv> z3=ivQZ5_KfHUr{Yxw3h63lY5Aw=l*20Ck!V?mu}1=zH?wxm4rB{@trr@5trLw;(%G z#)78Jx8DQq-o5|)^5y$`cOD_c2PyCa<`~}nfPT(*uRlWUd;a9b<9mgT3Z^Q zne7{#sH>l;t(~uxtTr}mwzl2u?7Gw4d%v&$VgJD6{=vt60}r};?zFYvXl&Z3k*rjR zXM`nV1^K-h8FjI-c~Q~H$*GY^sVN0T$pTSOTCrzRSt!QV1$BufwIz)`$pz&RX*o%S zMY+|I_~Oz;ktDo85|CZ%7GKIwERQMaND#Ioz88^Gm08iAS>BjbSejf?8CxU{&lkH! z<~auC2BuYJR&>M)nmAD<<~|vYq50g{V)q1rXCfM1vU%Yc;Yj0$#anUxtzA95f2RAoXScGp>bU;#4n722Z%eCWj9fE>9GBe_ei?WIZS(0jDZcbu$ zR$N7SL2FxGS9kNs`JTn4iK)qpJ>6{`9Ze(W`v&?u3bRxE+?^BSg1WnFu5QfUzH{~V z-OaE2{q@g(w9SQ^Pj0<>`{eV77r)`WdjWy(=hu&adiCft?48dae0X&G<@GCfrY=lX z7MG<)MJI*?hag&Fpr@mZaGxAa+UNqr+m7`C{g{f1XmO!orJbZL!j@@ zX2+e)c8nk_&y>$iisq-w)>kEKOO>c|xw%ohwN|yhAiOd!fH87)I%8`w_u5jy^(Ddj zY(A#`GIu$9X$H3o z#xG<~j^&MCD!hDIaPeYt|3E-zH?Oq9q_*Dv!bt4mlxTUj6w`k56M}__qVZXbesuy`49hz#fOoh%XPJ_lA6})s+N)xBXJ((zmcKuK(Qx6e>f<6kx}2dhp}s~hV(%D)7~YgBePF; z$Nr--g!q7asCGHIM^$f^riJ`zuChfC%`Q^IK3dZ;R>vvsuv6?&;GT2b3G8&UB9A+S z9tO*L;HEO>H%?x&CUKYx7q;@NFfgLMrIq?cuJ;yGsidgcK~ zY=ci4xg6Kh)6hJodGgE|Y^-Z&>0osoOMEy6MyC3PxME>wY=#ZKlV|i#qPgYl*|Ua* zXU_bC_-IrW5TDY4{Rb5GDeeRDDJmUMXVNWf%rmo-Cnts;KDhei@y4y2bIVJ^H?B|I zy)!#A)!EfqDikKBXNE*XdvHB$tXW3ZY!ho2qUG6g&22blmd+*?P9`=S3o92(Yp%T& z$MLL<1>@M!y$26`vs-4z-re8s-nC=zUi5Q*i-UenDejRK25Ev1SN?S;_zskZE4%(x zX1DYbS7iQW=T6)RH4t5$z`ef{-!8e|$;iUwNs3(L6!z{vK-Jc@baizN4081LH39KC zIoa?r^6ta(@^e#DAe0a^AQ>({ zO+R#62J3>P$N`|aso8VEN>ms@tyna3JBp>Fx{b4jy(@#oBf=KMFH~{bZjZKeXef2D zb_GwV5GSV>&C!#B1{fPY%^rXBR!8>>%R>#@1PJ2cID4zxyVGrW*mlSI1I65la?YM= z%A#6fjvkthd@WlShLsaBc>=^R3J*2Y+)2&EQPs>**~Uc;R#GRx zCiFfh7)tTA43--noDd(&lYyR6?9tnEFlDH1>r8`&$bx?7uE}v{viTY;HwbFrJJ>r> zPzij));yC1<0zKR-I4OclHEs~WC8aGyfH zgqVoW8T^Y~avChAcp`$sSk@q_8F6o-(G>q)EWR2p2@M5kbKuFuY&}FtI7^9^r|IgW z=|V2GP^0P|coeOwXkG;s0{S?T(nmu9%8Pbju6(9J>;j%bWQ zg(f<1Fii+q6KIL(=!C)BVdCI5<72@c0F|gD z#nL^pitd=q2+{IFi48h)LbZL+%t?q(8+VX)-C#IF7xNh?nfbckUl9S^aDNUa`BLHo zV#7Vc12|E^ZsCEhQ2Gk8!gJDsl2G0f#!rLcGc~w0FQ%d}uBtepT9{l>oB-l0FHEQ` zN~tVPuMy?d!5~>KXb_jwhze@U1QJnUeW{?Ostg3z-_mfgw|%s)V`8Xxw70XbxqhIv zp|idUR?luie6Vg-_O~{UbYptFW3aVxyubT$U*}M3eOFy&TXlI?eRXeB?fI^@@qwPn zq5jJQJtN&MqXV562fNyuYKu$DG3p(jg1AXrQB6mFWn)oYOLA!w7$l;oHNAE)uVJXT zzQ1)~vb?E3Cc89QP|-LzQr+EG)ZAIv(wE;doKb&1r>rF$-;FzK=SMG=RZNzZ&s9~f)YWdbwA}3Iyw}z9pu6u;ci)rVfhRo!58Au# zG_~HWZ@5}jy;N2@DJZ;yg%RG{V-YG(#lp=m~if=+vU{b2H zUyPY+m@PlpJvhQYB0M5CEFn2Ef)Jmhi>qy5kVkw%DAIfZ0X!bhf$#1d7Um1|7nbCd ziSo-!3v#j(OG>gD8!Ow}8@qejdVAY|dsCC6y*=$MkcoTS`g_|-1v!D9oTT{R?j8wT zogluOx2}HO@2`LUqXm0}CP$=|7fAYB$CjtAJ-G4e&6Cf>=lS%f*N=aE@$l2L`|ls$ zdHvwVv&G59&W092I(Fy-BYnIAIIdRkU#Y05%gYn=L#d0bEc8BgsihMPh%OiSJTdD4 z&nH5EkTSFs6%HvY9-}IqVW=8u(~PxM?M~8DeXVP=xfdG!wx%=htru-9q|9FO8y#|8 zoKCrMrD1Ei{`yM&&9#OtkQ!W_D|PED4eKlQD+`rNGv!-Y=)2Mcnp>VO#-76JO#a$z z?#g85>SX5Cxx%gGvMrQ+E>*A2l%o|B`*-W};>{(j@I|tgKSMr=N3qEPf9CGtQeB?kV{LuQA3+S&j9E0WZcqn(dN|#sC##B_TRZN^5o&_hqo_& z{`?umEg-%xpML&t;=@1#*=0bE?|b0h@4tWl`%nK6_+CEy_}w!Q-^)j^bl!RT-?c4( zzFXJtZJ*oMAKbn9^x@r?&mO&d@#Mqn=RbaW``a&H{`%)X{SCVefBg&8y}$kOxButQ zAilr+pFjQfx7Xi&8tfl!YV4@5Ypbd;+gI*08B$bX5_ zu1Jwue1QIehsMk|BxhiqU1;(jTjc!cnh zM@Y*OL*~oQt%4Uc2Y?9^X)gLgYjSd{Gjpp`GsVyWfqS@ulaMS-OcAD}mu3L^ax2Jq zUk=2?(wv;ij0|xi9v1kSP!t(k7#xx36_~;ENpi9xxEazJ?e71Xma>f2#8Ofskl%3z&>roy-fMt>f~;6%)N42va&cJKBla^mI8?H zz~KXmhZXnfDqy8uR(lVuo4Xi0cGAAtLH$OC2I7<1N!ckwAq}6PKM)_8cmM`6cJ5|E z^4lS&y<`88UBuXVYOm6XJ<2EdsOj(4vXIv!#7DJ{VmL$-PoQIru4D8eSUMe|jC*gxWhDZqX%Z%^j;9Yc(nNQ#|J-tc<}t`&5g|~L!+b6VBHek z&w89Z&1D$7>zuUF(LBl2I;L~{)TzVAPH1Rhhx($Gid2(qq#*@O+~8lDeT)XzfVy?cAwmSB}Ef+lft5$)z#@IkFP&| zv~ln5^5jI<{CwZNJM)hotUi3OdTncFacQ)FusKhV;uFGWd$H`@?d;th&aq6-+8CNR zm|D76Te{kqyVzQCSm#*wx_W06sI(n&a=+Up^E;WH-|YGa@$HrSW)DJq#Lo%P+dluY z6J#etC~xPkf7vEJ{4MB@972NsMu-ob29xqS!d>PGesu0g?$ zK7OVy95Yu}druE%KVJ|Z%i9OUr*`Bh<0O{rS+IJtygY1puG;#iRCP6v8XKU$#mL_3 z0F$;~^MEn;xKre5R`gNZNa(Y4yC}$fYPR82y9jk0sCd@EzzA}zBPbSODi)zCR$;2v z;c8alYL=mD79kXiV5)fl^_-8I0sr6`?tTJ#J`^Kpd_EL&xIF_k%=~Bud?h{3LFjjc z_(D(owquCmof}!tm*)cFsf9 z+>2)A%`o@)%I)!%Y^Eh!!v>O^i-xs}x}_`KiUSJMaQ4=KW6+*QyqEZ48$ZuOdc$}h zHqc$%k@=E(=cJZASo^>rP@3$y>Naeek>&n#)=I`!2P_;_>|LqIvO)85*pBkK(kxum zEP#7l3OttlKwa#?v3(E&WH|X~I-xAZR};_&%G)-J5`U%-8er5cAjxql)~>1u2^!ic z=~*fm*eIAetC%?}n>j0)vz09&*zu^?n83r@qFvLS<_uxT8;ToBTBu+mj-QUJudbs9 z(}oMNkHPUh1cA>EHdK_%z!Azt#1HBoUKOD{I}QV$OuQXX7_>7NZzdb%rS6(Y^8t?B z{SU#!$aaVCQ5$um+jq8f25CZJ#FK(MboqYAJ^fCxc{*%2EhnA^s$JM_8f7canw zE}jMZ7g*vWEau4s-pd*ihepEZGFpyCU8s8tiG?4tzM+)3y zx(8yvgGxN8m`e0V^$J~DO@m|~{Ga&T@ZT7cdU$K-eWgmvdFZ%A>Jv4vnA^anAs*b; z72t{dCgegq4)_s$r&wJi;~iL(AUlSEOrW19ST6*SNarHQhdxhCHjsK%qze%gRsOm^ zLk9b}Lsbc%lBT5rN$JaL<%jKddceB>AVrd8EX8<)#Fe=Ev6vQ)`6DRmF*7 zL41WEp`s{JguI?0rKTjat}MT_B2W^ zbhlpYX&>oqfl;%wu99$EOZ`AcGt@m?AL(kl(9=28(b`=v>2InVX>Y=Tz}Hn*jjwI1 zu4ty<|;NJyl#dTOop_bGg21zNUP*tSCL$PydLH4(4Pv7*sk%ji!oA z$b5W`LyV_ss@owCOYIZdswa>1JEUz0U5( zz`dUS$6b97J9_T7cHC`fxgn|BsH|QRl};8G3}t3CCnc9f$EL?7CFPc+lr=;ZNW2n7 zi0`4}G(p&uBW|wg91cmzkIgU3t**3v~3R*J7UD5fqVcC+@ zvW~p!&eW3XRAEJCMMZRBxqnubsb{i#oG7iVC#9^{C#BLpB;Pu?fRkA1o>JkPQSO&6 z^h(V2ic1Sl%kqdyu;7JSy2ZN$Bzi|Agv7=BhXurkJO& z!`11=cMc8n*(ScqilUOD?6lMvI6T|i>pQzzJ3CvtyIV&_`Yv1;=VZ(M;lIS zMM-{$FFzwCa&WM5>)HZxeE&ZnKC{!NHip(58*TtEI4(FTKc%Qv)HKpLwlaD3?&g!{ z_usyJ^zqf>?>~I^<>|ebt8-WS+k46j1nJSyF#*1z?mWJ&)w!dGVcMk0%M--gvv+&M zf%LlU+6~+zvkv6Q(q(0t3JTf>_a9P)(x(jQ(`P6fG7q{MY73KGmd+{8THfwKOtzTcQ-&kwhSgl{3ui99yy?LbxlX*)M z1*U|4Skc&pw2n3}Nwq^~tMB=Ngz<|xQqX|`;3qIhApYM9b3!Gh=BG2PZEkPh3czL3QU8+B;)rro$(v!sh0ZmKO7t7E6{F#W%J( zu5WhT+8X)p$riq)fBx~ymmi40_xa;C@gc;ADBtgYBDF1OaoHxmUq8P4<=v|Ieb?q+BZ5$Baji-<9y?XZOJ*FAneE0eL_kZ~Hr+)|Nkuko% zptI#a{`lM9;Od0N_uJ3^{`kSG{@#m?4IMSrFi8??<#zZkEvp=XzKooTd_gs$bGi9q zG-QJKaN~Bh3sLJpSm3N=m^MqW)Bp)DJ-ZUgUP64CKr_*Q&nQ5ig93;z0qfxsxQCNW zXs#kN7pbmXibPH@IzKEbKOi*Q(?8AKFWomND=0KKI4t+;{vQ*+=>X-)X~@Z;Z&O1K*Wv2i zOP3|(E$F>P*p;aO+*8m!Ag`?;%aoJV*dx!}vrk)AURxI2ht8ILItu#_DZD4)Fc zK49P;%(62e=k3@@`F1DuTN!e8$bk4T@V8BT>L~ey38=+~9-p&wBwDDU8X;}u6V-cuj=Ep?i zqM;krkVlKib2>j>`Rd8a&mZsq@b2F8CpWHLyE-~CA!-tPrTXb{Pw3jIoN%NbGGQ=} zF?Eg~I(8Dj&^)54bNHm*+0zC_`bHSzGu1aXH9QCIBegAG>S+rLm%t!r{{U-u4{JW(!ON57>+J|*r;m@3Ba43G z6kMIAEGKli*n99SIZhgkkfDQ)Lkx8=Sb9(}an6GJM#@#t>j?P_bVJ32H`gCx3Q=C15$W<| zAXx?;v2mf8*&noorsJ$)!BVzxQaNXT&=|)-*%YlWFg?1_L1)qgA05FxJeMQB7P#T3 z#q!p0^kUdyH4o2A_R|?KF50-NBJ0QYW=L(55XCf{yqNar>I7-JLo`&gg0T=vB8;8j z7qq)T{PNWV@sa!Ep3u3xHC_C5T>NyLyfwjPP`-!>(-ZIl%c2g~M+;^}QgjKCjz?a< ztt&VYUP=b01f+@>zzVV^ESJcyX|hQl3j{bs_O#ID0^6sRD~zdh2RsqhBD}RYUWd8v zN1Zv^Tz6eIHVt_iPPlX@_jmOH^l9RyIuPgsMoDp)OSghT%BEYns9QKu;V(t$4P3Ie z*q~>F*HlohLS7h~YG|ooXr%x=w1P91gEtF0Chru?#q-0|1rtk%ETU909pD=E(Q<|q z=t1L22?#UvQhC?oL&(lI_^>BwVu867^M5-25r;j3$nH7B zHQx|)V`B0iK}!goYOX#o@sdj*7{?bg=x9b&K_3f-@3EaBea&R6f;cm=(SWu0U`^ng zTY!dJ0Axq>x1bZ1%qGJ1%JHP3q{S~-8|^L_nkNWJDoG*s;olCWKQt(8wyba)!hS;?^9>FDSh4le}xC~qC?yxF>?^YgSQhVPqcBOu`?ykCnM1>Cp8e0 z>(b)Qlsa){l`t8iUTI#OC@;RWAgQb%rK&hnBFwETEvyw`TB)G66x>(RC>Az}MYSS9 zV|fX1uU%46D=h4+t%R;O0NJj-sBy zJDi;7J6lFNS_a!1o5iIyC52Uj{JPTO?ncRIU+2U~AF5z34fYQ8^)@%Rl~zg$Dyoa> zS~JA0QG)vD;^x%qf&9iHVM~AS#A10%Zy;oYies6ojq-Mim9)wa8gIr;Pf%JlVe_PE>;J}M#rb87q*EHwJjh% z;_8IP_YdL&_dS06?D_MTB+B>d-J3V>!FmMu-hBG-_J@z}e*E~JZ0!N}e)#m$_a8pL zeE#~;y~ocUK7Ie<)u-n#-`>6dU~zd9I}1I%%blIe%`MaA6=V4YmkSD(#T8ri4Yym{ z9&~m?;CtNN|D?Mg#P^`J<4!~KwQ9*)S;c%&$>qGf-qh6U*!Y~#$he5uq`ac!vO3?? za<9}H=y%b=)^u@)xb1v;adlW~R+d+h#4MgzIJ^P8sDuu8(;VP>!1Hn4L7XIBjZq#>~dR(%GC9 z$PGw~OsgoU>}>44G&FN%{>JnB@83NC{OIoM&D9&DgBNQ=rCD)Ni6MS5e(t``b`C~o z^>uVG;y{JiCk^+hVY6@7Zpt3~Y%5Qf+ovv1j)nq$Gp(qta^Q%X(g~{aNy@>KY6>HPPJ-$@P_z<;le1F7J`_g%tu<{d)xxE@K3BFpp0_%U>Akv*1ypfXY%G)m1GknX*VpQ|R_a#fDnMk*bLH4@ zzcN?7G*LQxp>TD)=yG>NU#)9@J%PUNI=}OsaUTd z2lsV{jtsCaOqNJ z-#}z#wQWi1v6@=Fp#kry(NvVZEYB2-k0e~|3%$@AcxgCtax`)FQu5+N>e_7f)|zm2 zv2b}ou)I*bfGU`U^6Oh|TUR?D+#dh%`oT}%qotDwd<6GC{PN|)uQ;DS{Qjp;zY*di z{Vl)$;lr=rzyAfs%eOCoeDw@1ogbe+mTs?Oi4V0cw;v-8eETM`bfUTC=H~5NTeojt zyAO@;@%`7(_%O}z?$u8}e*Dw#fBs)Y)cY$b>ICck=@0)wdOQF0zkmMmFV{C7w6*kA zSCSSK%;BLs1&EiKTY=^lY%ZXr1!5oO60&nqw1T~cGN^3G>!GIwJM7VkMNx^U-xNqk z(h2c_;IeW6eYijQ63Bvid4%IqG4Pj;I!&bigvkBD0t%mJa>h3CRpo&43UMIz!PN;L zX*H($GP0|Z)5_zM!HHM^6h*`qMoZIwsTmciY0wbM$!uSyC?!ppoGOII7aK1Ki_8s; z%=Zr=#OE21?jM{T7?SN5@Rgfe1rnqnsZF`)4>x#(a8wiQDDb`nONle*SR( z`?q&qJh^`3#?^_r+3L>vfXpy`?rBZSgSuAAntBxGVGZ5mN6^yA(A3dBeDuT_?Cza~ zw^I+GXJn*rY^-N+7JKW!y(1?u&wkp_;4EC7M~@xF9-lfxT}@3z@!-CF`}fKz?2+Fu zC$B(`lFC7ATl2cQio18#pFO_z?D59+Yt!Qsofj{(&dm&8zSKKB+}hXQ*xV`>mggpB z#`#4BI(c)gdCsRTO;1~x=~-FpSy>s_TAQ(1X3kDWjSTlw)xOz-bl$hXz5gb@oiKKy zwnaM4fX#*NZWe^~{#6FnO{uGs2z*ld`$uidw$calCkPSBAW#v|2jcrX?n#Lc{hxBm zsz;5DfqU$LK*)Udi0^rMI{J7y_;>;OjGdfy&l;aVnW?L*qlcR<-^Gk=r+Egd-ywY) zGh4o^iIcUq{t-#Dx7jINZBOdpo!lBBcFo?o(Bxv51vJBi#N^Kn_}#vX6jD^ z?pXw=8+oeeyB!40Va0>Q`mo#)hMhi`JXMT6NE6FhQpTcY>_Ig|dnXQ0P2WXTpRID% zm14x9nQ-anI5bl?nwdMz9DzPmck;h-vxK!H&B}oa?gR0ivs1Qm0m@-KoetnaABz(V zmhNi!86Jv>BOg?Sh8CIwI15E6h;hMgCym`n)FL$JgTBqbmwZBAv;}RE;uJFdfZI_biq{ELgzjeTMz`eBY&|p_yqFGN3|l_M zii7YV6f_D}`LOVgKq3@OG+2@qIbT>Di9-^0O1ulSf*=TnxEUZ990a}0&XtfCY?)9k zfmD#^&_oKza)5e>oFE6aFtBAZEFGw378Fx+Rckv6o2zNZCM_-~gdyHhqQMbjf`;%t~v0G6Ug)e0~OvnU52EO|84hoWx; z{#B@8(6&ISwh#dk7=(9}kGG%!?0+7zQXpUujVNGYd_MS{06JCh`9M3vng$mA5Q}qm zS4Gt-=H{^|0c0cDL(*ajqyihNdIXYE8ZS(x2dZO5opgt8Pc~pV0>41mKK?Lgl87iO zPf_EE#SL&Da8jDZV}SL%LorjR>4DAqki$srNxMVQ%|eznP~aI5q7@Lr^bf(dpeAHK z1QX| zwuX@(9Db+C1u;Fq9ekS?y4ps2Ixh8f;Sx?xxIkeFZLTZ@>s1!!mgQyE2n$j6GIf4n`urgD zz6*WbeI0GJb&_I?ZPzx(7B@zgbSGE#=GOO@whpwPzuY!-F;85ZU)@;M(O%cnENW>j z?zoWCGM-vL9w9m(R@|3TbD^?ns1()Yagn{*sVmiG*IFBvYbwvf<;ZpG4Gx{o&tI#p zUTdtqTv}8Z7IaDrQ?hgvkJ0H=luk3XG#R)-ozB!`&=@pzO@{Vi-D4+C8k?A=r)PF` zg7_w8rWZkcSJpN+H*Vaxf#w#-d=Ky6dkpAxbtuxzG4a6TimJs#yO z(FuX!QIT=!#iAI2n4c)}$!d)(=}f3-&z1B^Ixh#sW~CGr2^uQ1CG`mv&GF)%h>~8f zw0hrENt$>dy?P{4&=FJETv*dvBnlFI8s^CjH4V%vc11YvJZ^{;E@XAhk=I-+l>XU4I04flyCOe^Ya=$*T?yfSljePMHTc5Py0 ztgWUtKRGEO$UoN4E8LUk;b>!d=Hv-=sy4DV@^aAlfO`=5=yLMgxW~X+ABazJzm}5X zAwZw%fn#b1j;ZW3KSFO5#yq{=^Kh&2)@tc@ck3Qquh?45yE>P1W2NZsM(M^v{>8qC zwmPrTp@f<7{L7;SSj5|0ZMd=Cys;!%pRZiQcEeQh>a=ikxq5B3d~>;KeZFjMwiNL_ zKpz&{SLehiU0IqbU7HiH%~UR25?=1hT)ddKIGi%w6?&n`x37lZCgyh6`&JgQYfAZD zO%WFdGR80DkBwvx^u&z}CJqlIUK~!lbRl=_LgDBI!N^cfS7$~Mb)&~F}# z>T~6D)1v8#;wjY2ObbTNr<9c1iYkmsD-8O2d}l6aEl%f7jwZD=xOFzWwA9&;^!d+E zroy~BaUp!-V#MlV#?*M?#O2iKiJXO5;gz-88(Ur1HU?fkyYl7xS3my<+#|&I%} z;g`?kK;!!jG9QRfihI9)diV4D*PpS=@bVctTRwo}9^HTS;0~#6xpy05eA^lya1Wg= zH*aj-x^?aT{oBu<+<)_2TGaXB^)Ekt|Cc}h{%?ryLE{7H{qYZk__hZcPzy6ZvtC`< zA`(i3LNca6bn*?CxhkQ5e?0v2on zLb)T`e+UxhRsrt7deI5RI8pH!VK0&zN5yFw6(GKh%+j>9 zY+*=5u1{dPr+=!qf10;ns;76-*ZuyI2heHA%fZYE%9HLg?4|A9i%C8db&{@5S(rTK zH21-}si3oepSHX_#@3m8`dnci3vD$n2(}4Mv8* zo$3xU@u2#x4CPxg<4zdxTM!=rP?jm9pu0=)@NUH;yGVu0QJI6scTx2AXq)Xr?FN2y zw+NtE1Q3ItsXxWYM@8R5N#7kuS$8iq^}WsEd9mj_jC8D34_m2foL18~q@jKEkj{~#>P)S}$4{Oh zc|DZ07@a+dl**m>vn+LK3{5AUxnFP@*c)D7ahG}_hOC243VEvv}O&P$3-jtqW2X&p~NM{B{t-`Mw{v5&H`w~C23qJQe}a~k_V_@kHw(9HZP#$L*X9!fBF8hNUj z2heR$=o+MM?oTyE*3U!5z)k5a%2>$I9{n8JKE2dId43lT zBqb*ZzCo(9;bF0zJTh3)3ehkwpo{`Drwwl8QSnd??hHVpjr4ipICVmB&x6F@q~=Dr z3N`JKwj)72$XnX>?wU4k3_K~m#12MBzPcrkZVfu~(sJ<91W{VLsG{}7oTXwyWXFSM ztbLg=NMey(xhLeY; ztt#Yn zAkCT5AR!=>WC=+&5UfgW2QfkCLgy#hDbdx+Zvz@GNpY(O78Qv(6Otn4@SOShr2%<) z&Yo({o~kHFA?+);B==#udO}^*a`i${%wc!`V_dJp&K^3DP3`#zX-Y52e@Hk0OxSCo zkZOaGy@HSWg&y+?I*jYiNN7sOFUU&*vtw&7M9U|b2~#NPhmr0cf&``e^`v(cFB=lD zBLqrJX$0!Y(dE%Ny(K9PRDc20aiTSZ}Pi69>eHzrEDo z4F#~JvaDGwYAh?RD#XtOS*;TB*kI4(`N7GNflGsZ!#$mCElpK*bpo*@GE)>&(3mEy z&n~SNNg8XK+QQ=!eZwNd5|c5}o?2KCUs#$`Ka^2F7FRY9CG1P99WCizsBRuEfQu+P zqAw?XRZ_9uQh#0~DDZOkIC3P<)%ARK=2~s#N<&RgeulrDrG|sWO=KDMG zJs`w~S@s9_9%Eqr#nYDv<-L9L{{6d;sAu`~9=P}8C-ifY^WzU6fBf;|=l_?xw+?E2 zP4Ko%f&~&Bf;+UkyEpBpyN|RSKeHpdv%Bxzo!zSU z`}~-hd++~UQ}w=8Po>f!1aJ7{Yd?SY(|2#b0q)({JaS=j>gucm*fv}dBA zYc{KWKD4N}SUB4tUak<$<+Vn^@)=SrnX66I0NTUO^I?k*V2{ zscF$ENs;lf6&}wYiMT6 zF|*^C?>Dk?G_`dyw@eS`#^tq-}_9`-!o9upW-kXG2yAe2dGH|ICE7S?B^ zW5U|H^7Pc)_=xQIkj&_yC~sFcYjX<&-JRMNG`FzS)Y)okOb8vSsvK2SwwelZONN@N z##(BCK671F2ewvwRpQL#@LK!xd&3y5JAIUY zWW9Q0wPtg@;pEY_tLLz}FnHs9KM?QgnVuWx`mTcJ&U7IwharY57(hQMxO}REda3C0 zsqXW~1?P^oT{wo-_3lf@I!~=Mo>{KHuvmR^Ja?%tR@N0f-WAx+JDeJ=8yBk8UhlU$ zS9WBjc6GjLVYXs^rhIL=c4M_+W3_Q(wPkIkab~unOB62_CrwXgEiaU9tkfQX;qyr2 zvCW2KTTL)_o<7yFb);#0DnmAx)H~oOn@&Bt!8>)ddSf|fR1zTWcW!I76!&>;t>m3M zS-dnCH9X|KvJ|&47r(TSb?gZ5@M@59fK`F{NH z%Mb4f@xj2wg$8Qnh+kW^Q=kdL#5AQsFaOdIOn|JTr zxO?a31GqY$Jbe9p`|CF^zJ-SS?Ki*w-H-o{PEJ&Gg7`4d@W(&=*T4MfFMs~m|Nhe- z{_EY>zpN~s=<1ZB@v>boh=!JiCUmy+0r$XGR7ocKRnVMCwhzjwQ(DzQKo7He$l_IE zH=!-J1Tr5QJKNCVS;->{>2>wpEv@1<0Veqd+p*Emgvysr7(_9shyE7qu#*vXDwkJT zEkus5xpfGQoo#L6wzh$W26VG@Ba#iVk3eE|7gqTS%Fy#EfP)lo7h%B4DzKiA#}igo zwo<39stTvQ0u?c(ZGgVCEYj7Pm|B&XT$PYi`DuS+D$*5{7}&5>#4{ie^>8T&F)q7p9YphdFTCr9QUQ0%#n zBEDU_bv`Fc?tngBEV=LA2fa^!4_>NlD5qv7uWo^*22AzsL7-35N>1NFf#alN?yYVg zs)cF}IQsBc{edWL+i-R3P*s~SHQO*X`*8I`G1{1KK%NVCKDw>zb;I zDvMKcGow#?^mbM_9!ZRzUTAb?*9C@dv<-kXZIet zeS768;-gwRDOczJrSbiG&z@iJCdSU+pu&Y*BIPHCT?V4=?UmoPS7G;F#a(+bANQBx+UwQ|MMW86Nmr|!W4?{985Vd zQQ~?qLhn!nmL2FWaWv;>eV1qhrwILnA$sF~q2qRFOn?G};{aUH z3b9$>9-`|OqUQ;#Cz@Nrpz#^N)#-&d2Yidf*a3A56g{l$#UhNx_6*iW7!Bih9wGYf z==sDv1YQw<7Djgop}C@3le`M@fLM+|NR1A6CCXbslo*3>4x~8+&<=BH&Or=!?7w4t zA%^80!*UC!xu9<|9Q4QX#^!q%u$1GD&4@q)7lh{UIQS@{=mBx8AQEIF?In~Wl-NW; zOkfT2v6Ijr4e>gNaYSVcWn#XNAYLe%QZVw)^o2GT!tvo6x_h#notaLKOeZJiVHc*8 z2h+`u3JDT{KKNJRy+rsfA_e*#gX&fV zzoTIW)i(wZB|*nt5iEQjoX}Ysgarx)*ctgjNP9aOMo>8=>4Li{Wk9HfO&7{3Q3**jj~x_k5)fe; z6lD?`V-_B36BcF94YNSD6kkf0Ai8TX!!wNVzF#!k0~%;3xE_XBY{6T_CtHQa7~;e9 zjbh>(3GP;ETY)4%p*BKKgy)kehGd@t-cD>R!ic-0%o32qHy*yATzsFy^-6Xe@U5#G z5UmIL`?SBm3Nxcha^s4!qVqE%i?X9I!64ulcJK=ut1|JIUwuVZb8UWWLt%AET4g~B zuQ;ozs;IjO!M&!zuBM*$x;{apq+1{rwM)BOhdNs!^Gy!G#@RbH*gx7Ul5`6JeHdks zN&2PT?PEQ{iT*Am_+|<54K9qJkW+&0P4sp`$OG|h%}#C2PH)O4H)p0cXC^lQgR@h| z7H1&>A`d7PwvKiShJ~%24ZQ9aK4#oE7G{sFE*)Q6KC(2wID^07N7_0>X}MLY1@$?_ z)dfX`c?J0)p<&oVH#Rdfv$i_q=HVL_!;Q~Psp-!b%;vUCG)OkO=P$I&PB(Rq))tht zW@gOPR$b^7o*d{B7UlR_nVPC7MLQmxtSYoQp^6LWJTQ&R?; zWxy~nV9;nxhYhXs?1{eF8bT^$`gy_D2csdRXKee>kWvlq@?2Jv0Ha^u#`yZ7!r zqUt)IZ$sdN%(tWTJ$nB5!PD)BPhUL6V8ffQzl6E-BmA5Iy>CDMh)d$_#4TUF1MYoz z`r^TdvOx*1oyw=fup+&G&Qzt7a>CMhAOiWG6C@gLe!WkP^(Vkc*&hD5g z?Vf6p&U8&~pND=f*b<`t!+ zMuvv@Bqv2wRptu>^&q~^_J*qRygFVnB;OgCbZvEZVPSHfIuQFL(*FK|F6nR|h;LZh zUs#Y?T%0i=ZasQz@#3YEH*Q`0v_D_}_(!u~aLj3J3mV6oVQj}XbKqFmO^XTOn! zqnVA1^#KoiCr<}w?}Kih2i)A?{B-n=;zkyx<+t$~QH0dP=Qk81))$=_9h?;zoE{b! z;&#}{(#(osz|qpgHXpJ|*ks>{^08D&Qw0Z26`HChI%;ORYQ~!K(LOed!&M)iuYUh} z>D}|mw~wVS?)E;s(scV=<=u--&+bak9&I|l!8?A0ci~LiwM)I%E{HCk6x_Plck4p` z^>e)_W4U!v46HkQv=x&F7~Q*hq36;`@LeOsz6-|%7mf?h9BDhf*?e}Z_2Mz%<>Q^F zR~yeP)vXU^_7=M|XW2IA+2usjd=CHmu-#|g&U>l~4@>)!#iGRa=I}XLrEH>nX`Z*f z!rxkJ*<5Q~T&R;3%0`=5WHG(Hd?_V~X0@XNRF zfBE*^&y>LT9hKmF|MDqz8NS+n`1&ys_?`jx9^FN1Z~Fn(UZBY!%6A8r&KIzBLg0J* z^80she*W&=AAbMyfBgHu{?C7)rSs2!`SYLu=TCq7Z$fqS`QtEuf2c8!X9$Av;ErqV%huwPap00>$vgId>;Tii;jJImW^c-;;BK9p?| zLTn%Gz?3R<#%4%_g!pReMR+%$2?F%83!8BOeNY%Hu>DutRbSs-%j>Ae5(K=X4I*^8 z)YNp8m9+u-a`GEfGiy^bcDC(^p83;c_1VtLOFfRJ?z0HS?*)V5t&bK_ik+v z->#hl;*&SPoS(chM@h{@NyA)8!%~TC^Fisekk_(O(6v>hA5i8vtC;zyVN%UDM8`Hn z+bU4QoU39HsA?0UVH=7z57_y155?#mjM3d6fuU_pTdr12?qOu#@7`Yi>B}2`{P^&f zclSQNz4P?(wR0CvjLwagwbuk^2ib=h*#@vU4m6f2hi=HCvDt>E2=O@}uLt6@+keQ) z&cV{o&W>n&4!}JND=S>u+7sdf_nDcS8JifHni(^hbif^OPhLr0UP(bkO+`&Zjr4Y^ zDB^Zodu!~j&d-luzj|`}{-vi6uRM8h`QhCQ*RLGEdimIKw6-mdNk;lwg)PNZWr^A8 zei30Nwl->ddTIvxY%5Fi1N(K^Yz1|7lyd_2{s{-fw|Dm*dAU9E^1J2aG0K3mGrvyd z_{anU(fIxfdX&aT5#K-Ukq7aSK;NEypYM_Xe9w-?2jU~3M>ZOWrIToUpUW%mQ`g|w z*r2B+I4Lirdo$e7d&nUV#{{F`S*8q_~ZHVKc0tG-9iKH0Q7dV4rOuQ()#YcN*%^j!jU5BqB!^4D|@ z&~^((AB&!Qh`t*(Ai`kgWCq3=LcGJP;DD`=jB`g1WGH#5dnjN;-;t|x81wFA;av+s zHY&?Tv_+_FWIzFT@YAt#SGRLlJLIS19Ee9ICQ^@ZpdwyZ8^;x66G+3sXd1=#iDdgl z8~Vo@L)F5h9i=v6(T|A(n1XBsB@T~_C`-d2M1kf?_hY#O1P!I1Ub|r!#V}&uH65?R%0rfcO zW7#>73xQO`_6dNB0yL5J^DwNRLy04I15m@mi3}qchiGlkA4%L2s7U4oiJumMN7B!U zF^E_WR5^G@fmZ-MKp*i*0?^=$B?(8|2bhL_RD7ivZb3TuqBsZWxCH9rI=CBMDA<&T z7Kt}RFdt$o`DQ@wk^|nv>r%#4^63JiQeI!;^5w!WiawuIW0Lxe*2lmE{G4PP5uVay zA_!t&5gt_PAQcE;M?I+_772Yr8UA60K@n!$a8u7<_F+GLM_+v>F3mj{-$jOAp&Vx} z;~<73edu1nCP9(bL19*&T$YQ!9>CuZt)#FbQ{Qq>mMNkHU4otA8HUjm6Awn9SBm&( z==LGaIn?nE$I~6ULGkp^B-|hQL|W9R?&>Vdjjza0!YR#(FUpE3&5LiU$*C<%+xSCWtpmcwZn!#I>V~=z+=IH;jJ6gyInlcU zjcW~p9XCJQ1hI(;8d^3`M3^5?Jw=y{b`db>4u1`;_ zPL3U!lL7tKrpEEl6U+0ULO`Opy>XzGKiJkNtgmUUt(FZ-R%WJFXQrX?omgGoTw0u$ z$pnJVh?r!bz?iV8*pQGQOH1?J@N~$@D=Nc4qN1T^z%sM7aS3n<&5X=#uIZT<&7JL- zKFJd=HFu6SSJbuU|Z$t0#}p#_;&w?fVb!J$U~3>6b5Ge|-DR58r(F z@tco7eEH3Xm#@Eixc%bBttS^R-CW;1J2r88VDQ?I^wyB{u4LrCl;GZzvFT^yvS(w{ z&nIUQ*`umjX73LTU+wI<)g#^>o_Gcr9GiYD8NJ=pf2pnGG{0%3qH46DpfxQmBQ7Z^ zzoJqoE$y6$EES|Tj~0sNs(WP}!}A>@i!ph1)!ielBa?Ll;)>qU;-0z8Hd%PZ5M;jQ zu@kj@3q@_?m7=-!@l9Uu1h03LH-KG?k)#??aIP??aiVMTL~+}AWZ8gEet$?AaBnoJ zVK}30EU{jc%xf)Z!CIdvD!;)sy3i}BI`s_MeT#ITSMuaxA-it^k>ex*>*P*+`CUYuQDThiOxDw9c9mSrHmg~h4) z#i_Zu$&r!4-d>?t+y&y34E2_mVu~V1JlMWS(e#)aYAg+PwuU+;{8;L$98DNI)r_=MO|&8N zsYB+oqABLZx!*n``T5Juch9EZznK1Vd*s!<-bYuPZk=nmcUgGxMB}L=)vJs7XO7k1 zzS48;T*vjZ0(7%nKLh{g!0n4-)NfunExLF@2qEv%3B0uX^2z4&N2}4|0;TWVQNful z5MRsb^(M^itxcD2&Qzb6ty<|x>PWN7Ie+|!9N+JLzzx*-5m7$k z=Y+cV^SAGQ`hXw(FTckI-`iIo-aLQ*^2t}vw;}KmOXv0u@!i=b8sAQ5%Wdp3Jl}rs z`o;D)ub+SW<*Ogwz5V6;4}bdoFaLqbb<)}LFNp5}_preJKd^WH_`|>4zyG4AhxBuH zcEU3!1@Tq!IxxIm)6h#6@pvNCr@&oVhsA`ZzQ)!8UIT9FDy!)%suWVXTRQ~191t92 zzLJ)L@;0b=xPNV(sI`4aAe6KVhM*h5r3vCgvahXUq`IybalCwD)NCy-Lz!ncG(l3> z(%jb!>J$v36qLw(jXl_cuO>w?C~v_cyfDAC9k`cQ+Da>O3(Pj#J5Xp_gd5cWmfwR*TqpB< z;58EE+lMkw9IzW5(+sFyK?Dz8O{(6LtT|whPafa~%G>dR{_P4Y*Lw@FJnii@Wmda`tit3h%8Wu`gR?0dy%6fLn2K$w02NhV( z%Eq4Rraqd+-fG6)Di&M~%K%NQKuzmFEt?=Mkf2Qn{;6Tj)pX$Mrk8k6&eT7;yZXyl zH~#eT{y)FJ`|aD?FSb#ia%^N~xV()QmK$mpVr1pdVA>hbjahn_p{3KQF+Mv)^@y?4 z{(zO8JtRM@uA`rmxH>7~BO2dfM~D6UE%8rF3v+W*Hix0Dqe+NQQ65K0MOhWZrv~Cv z!lkB;2Fs8U867$?A-;X%%=UxJ_ivrWd2r|awJXO@om^hQ9|sd+L1#-*MNwd6=s|Z^ zy0MXxhK9VVs;aJz7TrKqM;ij)j-?a0M~H9Vp55|bJ-N^KVM|?pXMP=_Jj%lfMGt4s zuXgSJ)vi5I^nSB5%>d}z{Wpgv1%1>&1BHq(g%Zjm#799N2?p*{Q>U9-V2B|oF*z_X zIpA-^2i)_I!}=bk*vTkEKzy`sbf{-|fM+<@H#!){Cpw6nI4_^XL$0yLu5onlR9a9T zJF3hiw%R(l;@a|$zX2{&+yqCuu=}SP8!?7WZ8Iuq3E+*w4Tfji%wa4>6HKM?+x&@} zOhAsoaR}vcpeV(s7^UY~BPa(sjFQRlLBZV$WMg{=Gu{0RoV|6OeRMsz2H2zb#>xXZ zbZ$5lI<%>P9}Tc|&W$8!=^xI(5(Fj!J%S9-=mNgRkOY)Rq7v>z7h{+x_QY4p2d{!n zia3l)ASVb9BpY*e*eQVahs$t?iICV5nJC-DhY1FRq!p76pCtJwGLqmX1OTZud8{YE z1qwJN?C%9xHjLD(LSZCLo)k$TAqegR1Hy|-M(y#%g6TI(AF5e!0ta?qq%Q+V#VdMK z>EVdZB?CN>#6%91H2=VfN?t@%RAdq%*P<{7f+?mhjL;nG9>8?=qdWOAT)Avlf6gIK z`XNuo0eAXAcczoKvAeIOr>~8>ubC^Ch3_kTQSkBN`_mIi$w)Sk92|`&4e%X^FD^AU zfmT?fogN!RGGS2$00Qdq?Tsx+h?0?MY@G09CeEk*`D!fBYp*S7uPv@E&d5m)PmJ=* zObWp%%S$NDOQzBy?>I1W$R0sW>1 zM58^zX>l*s`j#g~SEt4oMu%smgNx%MYnW_6z31@2SdT#5hG&H9M2&U)in8|lT0r02 z*y!@~&z8lx?+`e(|9-f)M_Za(nPaZ#mne)Z7FJ3)={p!UV>@Pgqe*Wm*!}~XG zJ-B+~#jQJEKYaYTULeaE{+7y89Fq3%gX9}JIgk5292 z-iwKu7r?!#xmUA`U(7ANl+8bzkUf-)-s&BABpuzxJ*8v!2ZnBRiOx5-9;vRGEh+8K z&8du!PfJY8tZJ$dO=Pu>hL?5c2qsHa^%KdBV=0XzIUSSnHJv%ln007Rs%Y^}ta6Gfi7D-hE9)q37FV_QXH~UD4p{t94LJjG(&R(wz)q0uh3^?ZqG5bVH(+S0Dxu(Oe~!(9bBys z5CF8YJ8WqO1<-51i{D|l09TJNPtQm%j|fkfXkWLu0FO94E$!#&=XA*4#K=%r$5db6 zSVzZ5TgymW!$@1*m>g()>X7-2H1_%*GM?@$``uT^-#?%G@M7-WbJ^QRlIORC53jU6 zxFW#j!u1PHGm|NUqDa|r#*xLcqe~^H*Q>9e>AZbGeEn=MSntva;mz~?H&Ebtw&&vU zwo_}BM;CIAE*4)o)d7v~_$nXgmgWm&Q>oouKK=bZ^K+RSYc=z;rLyVVv9Y9)(Xb(@mssLEJ{7Tbv|w|q z==kxnqsQ`Oa}nd?;TvnYXHV8)R{rJ{$?dD7cdkv|y*>+p@5zI+AHRC_)5q_B{_bZG zA2D-+_&)rN_+aeB^$)-Mo(OzDBfb0ntM9&k^X->ke0=lr{TENae!2bj*`qI>Jbd}& z!Sn6=&mKeI1M%Gk@!_Dq<=LZquTaJF^6C56FTVToiyz;Ag`tOk{p0Wd7d)IGK5!pZ z+k(1ISUUd`U7;5*-tO!i5_S&t^p5rPj)T!q)XB%7d2>IH4@D2N2;C6)Y8ymAFq~R4 z(13AvVzw+S?*M=06t_~uhZdJMly<`N35Y{^3%>~spGfER^P4cc&{bL8UQ;XNK{~7y zqH?pav>gY73*}Y9YGMS%i#pK{gVGqJ|ETr$E}}MK2)?Eh{hVm*B!RwC#0JR}U}be@ zO-(1ip}VoZtC`=^(%6s7#)hsYes^7MXLYr(ptw0b8?`MpnOU{Dd7rqe6U4VmYtJ6- zeY>^fc4_U~r7gEtPaa%GU=7|*%Hc^M4s|XJ#QFez5bWehpC^OVyeKl{l$df#NamGY0EvYFTIy;X;*Q#e%INqg zj+wEBfv&u&3dFnJa&mhV<@YKn?4xk+H@iRo^`2e7Avrz}-(C>k=l`4d0DZ{ik@#clWv0Q!hTH;{UoQ9#$vZldcW%iv2zfr49KUQs{~W`> z0^^`UT(SbN!biL9T2zcVURfwWhu%d0KvO|O#)IIY6 zCAOCw#|O}-ZXTd!?5kwrr((`kw+hs<3e>jn$Fm12xHR)oWjV{y56R=Zi;i(~wCnKIRD!P9JmcEU!RL+IU2EvLX zqjJc;`Gh0>JJT2!ja_uV@??X9nKnVpu%EBp}WZ2nkT7-a~yyyg9BGm=U-^ zM$F?uK;Qz1V%WT6`-C#QLRjvB%tJm<4-F3a>K*dIr$rm20K_Az8G>LaicB`dL_&1B zMR=+i+@bJ)LRtb$p=l&B%M`{!We3JX$29g2=lGDlLXJ-e=#Swa&gO=( zxuL9}a1Odz;Q2&f3VK07F`z$g6zBNFOmJm*0wrA$+%tf|)fY+` z?5PB`AY(zuGXlvHnGc8xdnf8>NRbQi>jKkA9FMp?*^wwC#T0w0acGiZaDrhVGJV+f z!^}De5e8R+f%rP2rUoh)2ew;yJE5k5o}eD$4G~p03U?+v1zW5?f`qY9dl}Tz1=#h# z9rV$~8kcQ>`G(L$V(bL}?v$yL&kU-5NK6mDSq=h>@aRJI!^)wPk1jy_fQR-0cb$VC zdXAn3j-Ir`Uf4i1@d_|;^)_x%9{dMJZ+LLaQZmRleoUBf9r z3kG9+$Ot52$pRIr*qujfXhfnRBvCZ>M5Gu;q!@*x%O#B&kqYB0RLD6tk`JiR7pXdP^9UY8CDigJA&_ZzVo#%!iBP0!uJWGFB5OhfflSwViV zzYRm*m`w-qLFU6TF*Czqa|{_QHjNH}Pv3t3{^GKz^T)`;c)!VnO-@AjFg*y))-QRxl@F|KnUp{?>GM2Y5-+cAz?N=|p_~POA<15#1 z9Y1+-Vd?C&?9BMY*^!Y8Qt2hBb6DSNkc?OKO~uvph848s@};fgCkq6#5oP_pd7{v& z(S*jy)Ryrq!9;4~U|K^@aYtWHLvvt8rAtgzc!4mfswaovU)?d1Un7VwsEIA+rBu|W zl~sl%r}%|OA9V9}_4ZCoODrnM&CN*(3UH4M_e)KQEG^D#;#W2`ROV-=78hhTH&si9 zx{%{rUY0E_$wtQp$HpbIvy-yv@&3Nf_O^z}@u9)~u9ik#TPtsTyyxVpm1{T7UcGka z)BgVY$3L0{h>yXxq_ZpxnC1p73(DaM`XhQD-N*{x{WK1_ozAgl8rd6~Q+l7nK~w94 zCRR?A_IKFQ-qFI=+1kOw{-CG*e(wVZxz0|(?r!1UUXi}O;XdAe&Q6E%Hyn#?rmt_R zr)#FKYo@1Ts;gz9qY3VV*vD4eXU9}8PV#zsb>iFS%iq0PdH-VmtL?EDcX}RPZNGoH z?fO~%_4CckGdV+|=y7rC)#!};vwdT#$#`Wd;)ur0``KsQ5^oG{3q6+8Q7Vn|q zr1`nRWwg62mdwg>ho$k86N#(KC7bKD^K+##S)N1^KRc5=HyeW`cZtMpeJ%0WR{r@j zwO1}SUOZoa_Eg>Z(~XzU3$C6Q-MBP(>+1NetJAlyEj_$*^7Zq(-@W_#r*D7!3B>m; zaF049!S~De?~v_-B=^gAFmvt*d|yMP`}XVCAKt#g&cZieJpJm$W0W<$eEQ(Ull#xN zcPyP0@jZl@^9~%I5dKJl@6}V>|GTeV|MZb8@%=k`TKdMh#_8wnLHRf zfndPBY~=FF+cC+9SRa~R(8q#FK2q0-hEE_^Ll>{Ev#MH91y?8TfaVskVJTdlt++EL z_Tcse^r0DshxtFuG+?X&zEBls=lA0-cyM$(G;$0euuLf(;SkliP81LM0@` zrw6eQ4^AXP6*dw0Kzy1O>gwhy>SoI7U_EnX6=RG(pd3a{#aIs9r*0~*YKq|o1w9A+ zO|Hgt(qOx2v79t<-C)16zJrp%K_!NhGRIBL)JxOeUoXALb7HFM!OgiJUtjp=udn^` z_4SXhuRVWw@$9J$$@pL~pBI!KX5nwba@I4j)YIqCwG4FCb+q*vbfzK7ThPgA1Kh*0 zw6%ey)7IX>+!B^f$b6Powpe1{Z)0m~YHG@2u?!8_hK4Kynx3kZeE@1r;TxAv3=qbA3&A_tv?)H%{NUeDu<}jpIk>78XWEkPPW+&MnM#aNMt`hG{&^ zqwo2gEbi@vmIrAMm;bbT*RKijeg2!>yKsHiUJ#!gi0`*#OMM?v`f!~zw-Dm{%?|OA zrFEkBf&L)*{VmOh78kO{j!PUueAG+>dOJyB3k7}Xfg!|)i3vKxH6SP;HZd?hg&Pmn zON7!F5TEED1LBJfN<_pjJ}8MIzNkRxdcHBiJ~2VwF@8R=5cnLulg+(S*}j?VfLu;! zk#SU+X>^5Ic&Tw{iBVXINl2k_KpqF`9<)4EYkH=!u&n2u#_`QG_Rli$&o&OoF$yU( z3oAAycP=&!Dlp~d8GEIJ4VkEC!23XLsjj<)iKeIuqW)k zY!5k_%O18jh))Bo$8g=paFJuVDY4yDST3pzXGNx~0>>TSHuAdmyR>cgXxk`IhYUe} z+TU@O?mFf!nl|pbb~qlo2Yn6pdqYiwwU36H5d`$y0u7wGG$g9L!coJ5bv%Z9Fv-4w zs*uh@7zzvpy$@2IYY4axJP1jM0h)6O&~Xcbx(9g(Awlf=VNMP;n7{{;n*(IwfENHM zR0xaE3NQiuMdETK^oKkkhSVA02(K_*_y%{(mfUcfKUN8_@duYp;a)JSIXw)>o`~>cU`cP-Cjt#$ib)PQhq9{H{PbBN8@5ViD_pFjzth zqu2_aHh3pV^9(+4I1hI^XJ8EtgEbUon^-&qf&rbd3W16hBPe=U`U{G|Eu@FjCxX<` zc!%SoAef8=2lT^`CBbmir~=N@%99`@A%(c|-s0vvn-$)_4$AX4GNA;cF$K2ap#Mgn)FnG?ar&_vXmzyWJW zp*QI%g?E&MD5(Rqgv1#fZ-k~$@=(Y;5={^-op^kzo|MdFpniuWMm?bsFh;JF1DWkI{7-xUChuU&w?laH3Oua0LRMj}|;a85+Ld1y4evTUCqL$4q# zNaFhkUnT>OV0|21A(b@*Lh;-J>RwTuiuZv*z&sISe8!O}#?-bTp2|Q3RS%)R@Dz4r zIww4p8IlN3ELvgpKJCv}dv!@mML~T@c6n}6PI6>YR6t~)M^R=1{&0q<*Hl&9!YdQh zSN68^aRd$3q88H3+1JJ&5H$6-@q3zTrJb$geQ4(FK(oqtZ#ODd#`?%XUJs^Cyl9}U z0TH~BE`e;2^mEQi2bRXA%j43S!9LL6^7t@ZolE1xi{ryf6C=x$qsx!|>PK!l&oc^YUfwrcxeo<$0Ls>yiPI^*qMrwUk#b94gr=X4N@2jn&t)znf zXKcKxs;VO+fF@|gz4H6OfNEOWIy8o<&4Hlkw3K{a34nEIL9%#ic;%F6Xri;Ny|<}h zx~H=wG3Jo9Ies^xk;Mp2EKFKuaKL(b>0&*vGA_mzB*T}hm#Z8 zy~iWtPsXPnNJnq>i7yH|k2N&Sm6i8q=T;}DrNt&@=a*J?^i}pw$MFUe>V|U#;}tzq z?W61U-Lmv@e)Hg9^RTpfV6?1nrm$xzsc|N{Vz9b@rFnF#OtetYG0T^%cfiuwGs+ha z*Y*#Wil#%0MDS;# z+$XIuv9d3{sLLils>2z2uda`)sqyE@?yIyT3WPP1gtteFf81AQ}H9TdE<)Kyq&@`f66 z-gX8f?U`TRoBQF5&F{Wgd-r1Y^&{!_&8`Pm+HRiXUpd7;y~*2Ls5rV@d*L`H^U9B{ zl%8CxI)AL`Drz~;bYDHyb^Wa9!qJxVN9s?nm!Dj#Ja>eT{+9E{F@e{0Vy%9Cwsd{2 z>gZDA=6vnKX#Q|_Y*UqUUJ5%giWL&bay+Q)?4%JHY1z}2y|E%Vd9>&FR@afWwyl-s zBdbkY=xkZ8Uzx95m@QeDD;pZh930MS7e&{%2Xu6YO-!UOFO{sXR;{nrK-#0ORKx1I zv{*hrUo4a5Y^)Wo%%_eFc}fNy)|W$1Ze?FO4STBS@tyJQ`;&KXN^f4lzP$M6rJ-9_ zCT?Asy>or*$%E@(zkd1Mdn9s!duVGxf{&aZ$oYlf-uqvu_}&F1#M%Ni>(HEE+EP^BR*d^sg5ZSE@~U~bXAi1AG3N(7#G)Tau(GNHE(uUx zVHp}@$ic(|7!Wgjkn zr0o;pATH^M_@UGVSCH(3JCxuai3BngF$tk+q^4o2f$4TNQ&m+H?D{E^W2A^q7}UAI z3yK*CHDg6pBkV!!Q!|C$r>tYEs^_4lXRo1atD$YBre&d`X$}jh5@3*VSdHzfZsDmF zpM6+5TzLD+__r@k{rvXQPhVd7@Wth)_s^X^u{t<9SXj>sNR6=cvt&3L=v(OPF%8sp zwNy0Kwe|H3m`u1?AoC&3XJtnQ_^j>iZ0zmLF~(qJWo}9OTdZwuEi5e!4GrmZ8V-X& z(>Ksl*Hi=R$tlXoDehBLmZz#a717&?gH3jnU6+;>96hpl|IUR6x6j_Za{S`C^JJ?Y@0jV<(FY zxZJl7XQz{Mhw^^CXE)hpz~yeL-t({XeAr}{`_-PmLm&40$V>wvJ~>5dik;;6cFQa6 z!5o|Yhr^@6;k1H5Cs zeG^>$QXTv=OapQa1M+Y zS?1hqbH7Ye-*lsZEaR|3^YCJe@DlToBD27J6aQRefT3qPUW@IPOm~dc-5-f!7EPyE zeV2IJ!6+Sv2yJSzYVyVcB461z{;l$=ld^JVYNuy)h4anZMR*0*!j+wZ0C;HiDs zAE7fusOZ2wB&rTU;qrq6lL3b$ZgCBOArngkXw^X52~;!Gq|m^6==}f~x}(n|41a_Z zIS=7JFblk$WI+HavnaUu$od{+Ba)>eI|V=nv^$bv1&|bqL696o)g)dEPymo2JV-<( zGQ}RA#6;D9Aj(5aL{I8X7z7aG zA|Xw@Z|DGlP1HAr1Dhz!uGp3Efv^Q#66^zuELR&y0<9D801gs!z|tTXHN)tH-B3J& z8%gU3?vKv~(tLDcSVhGRK8g@jnBsGY2qD@>S)LRlhsGO5C7WO@kJM%oF%Hbj#ODET z4wOoW56)P~UcrDneHX5QlOMdPG#6i}W?0|QcjeL#dFwm+7`O(~QHtUn4iT1xkB(#> z!|@&hFiBt&WvUQZ!DwV1gT(F#L%}i%a7G%@mDIZ8%g68y14Zhg_0%&+*DF{L%tbZo z5MbY7XK%zXg9%ELqMj&*Q-CI7m@wSJ+zWXZpSs{gLwrTxxjoEy)zW`rDb8uDs}R&zwbxd**H(4%YcZ~ePR`!828eonE%kjZ z--g9BVxyXxg|1Fi!dO_CnVK3hS#%Z))W>je*q@n^EfNh#N2UjdrvxH#X>~oXmfzpg zKR>&8^vH?xXD?m3bmP`F6zk#KxpVF2oy*tmT)B4d`pw5TZ{0d}{QSh^@xER(=$-27 zywKZs1xdX@$#seJCg$^`V|PX-?oUiVlFdAl&E6gzzdj_nJ378SHS=t0?)fA@Z{d|} z@x?Uu7v^B*d^t7u686rC*{7qj?O{lJz4jD&BB@VOvIaPE1l- zYEDsgL#;>*S7&tPKr(+UuWhtWJX1d~U)VI9T`LfdkJb(J)eKIS_Ag|0%*Qs&r1GbP z)2CpIMPW;6&rWV25Bv;fSR+>>= z9hOz$8J+JJo9!JI=NA?klbD#1m6ntg<>%v+l@VW7oK;+yQCgZ^S69ZXDQj-31@R3G zv`fV^g-{l1@RPteD0q_Ov&$K({Br z(4J#v%QA5=ve<88ZD(w0%Q1H_vOH*N<6vy%Xld{6;OKo2eJ{>FjxN49m|I47gR!Zd zkJQ{g^r~mH7 z_M7KgZk&VIC%AQ?`~KD5E2o<;o~S>6wC37r{*ALuS57uS*SmVU%)r+J$Y5!=EjJT zp~Ceg%&&KDt+uVq*Duf3Y%SMsF4u3Z)Gy7JPmkp-&6h9Cmru`>3=U_scSj4m!$-%G zR#!`oZq*(?(s*Gu6Eo;@a(&M%%L_xHoQFMs(Fmd=0vPY@scoPYk;zx*3z?8HC+<&S^)?&BY> zUwhQoH!kdy^z@DQ_D?|O6O!VT0mSa$$>cTkBF9%!)rnO;j5T0D0fP(B;2^zKR1+-^ zHck*9jGeiqt=YxR*+orx#m%6(l8Sb0G$4h?$2tQUXn<@dLVIUr4IwqcZsq9tY$+@w zG9T^_?!&8;Rtms~Fd%iKiW)Ks#_AwGH4}_JC@C3Y?m=FWjY1ew4uhy5>F{JLs2URz#7k986k+w$ zuu#^tP=^0g-AqNzR2h{os>TZHW{TR@5c^cTfh6%pvei-3F7*-LiV zDVdKfwnH2w+k892dgBT3$W{eR&*+eSXNP4OL+}zIW0RmZ96#)t39fwyOfQ0D;w=mGTKd@J)idH%RP*ZQbbf_ z9QLI-`shL3Llh2V=MDp5C_y~5Umo(O9Yl>r0L?jo=HzeSCL_!4N4w zFQgYk=m;LV2Z1T@Ay7kp&?w3J16nSDc&Hx5Iw3w-RG>h{qESIMG68@OlLYH1ArkyZ zbTI<97)mfj*$Y?(ZxKrbqz5$$<(Z^&608T_gi{gOMtA6XaB@bl{bP;D<42Rv9#pD? zEK6hqNskKYDMhXjk4X;R`9LHS;YTF{h?H*@bcV4PX~BNzDb~sa`E8$&Rjhw^yK*I zIQeQj`{_FS>p?cfTXcu$hBPR7UDDmULwqhlI#ikxCSgK(0A&AI_-|3mNxsbhl3?l` zJ1Cw6ARbhFL~zN*A%O_KLm&}r3mnY5V{#ok8nGGXP+DQc4NHPomWonRnMycC@jV8& zY6L(piH*xB;#|d6JDN_(UL>9zfQ1zmop_=kB#{}B!i-3!VNrra9TPwCIzvNIPGf04 zh_9|Zw>&R3FEy?_FTJs{sFhdNR$Ja&UD{Mx+{UZuX=y+&a(_F&r@5}TscrxoUt1#t zzTW0KqThA54+&ca1%&t}db=dT7KyMKV2FDT3L2$dm||}o??p_nhZr~|eYgUFZ%!g! z7#>=k93}mnGt-dyW+Vd;0kO(QmiQ*eaEGaW(VS#pWdbBPfXWx(TRLmYXGc<)WZqc6Xf#d7N5>9K9tSe85_SdHnA<6eL6MwY;x}T z)clL7g%?xv&&fY$o{r15M5nt~UU+(Qc)h=AFsT(dR?#j%r zP0LD%O3W;(sc03|h=vLU(#SGV8h@ljFxD!WFBc4F^13U8L+#^}Regh%;+f*UrIeCb)(D+)`;` zlPtY$I!id6**THc+*8orS=l`hTh`%`)WpqhORkgTHc1=%XY*^j5=xrl%bGK5TXO5` zV~Z-i6HDANvWABaS7pmzRsB$@ueWXqRfi&yr#x#KEFyNYHw?+ z@9AkB#{lE(=;G3}Y<6r&(g%%iacOpRMBLh3%df4dufpVbOhrldK!4lH%GBvIn^*q7 z@9I2YW@=~1v0<@nm^f@3Hpk8oTAq0$?^@5Jo6^U(#~$Are{^%~ z@y*eDS4VGN7{7RO{QQZTtLKkAxPA52)2Hvg{N~$t-x1uSh!42;;oXn$a1!Ff{yaDk&Aql>x4_-dSF2mnDTS$EG(Y;#_@88;nrSr+dH_x}f zdG++en-||B#P{)=-~asMzy0y|{|OH#g?rQ<-=9$4@|QpU{=eS7{$XqL0%SXZa7frC z?d+Cz2!~o*5u+2KC$p(#03scTuN1TCM6)A(EGXgR)pu9@Uz2F!0#3OY8ipRPa$!Ko;*)pm{| z8|a52KP)of5%%FA&8NmvR_Cay8LIApo~n_Gy0MzN5r$7xRM=$dU4^5fYN&?zo`#9K zx`{f4dl-FCRA7_E2YCi8pddcEeFo6@6jTktbSi3QDk>(5xYRIL)i6_4H&wxnWEl|S z?}kdMhKg#&N}A>>fIdA3CE9*@|5(e;{;aDPMm|10`MbB5e|dZ5+n1M~-#dNo#G-Vh zzqq!Bn-Fg5W@ccguV4ZjGZhp*jQtL&&tLI|3uQk z%!1sA1LDIkQ#zBbrLConG`*g#wk{q-1<Qk5TClTj=r{|^TDc`(#6Gz zD;JL3zJBWV_0u=59KUpS^Vrt>>gx2&+{mD`x4gQ{{?L9!Ri)4O!nC=2_ujpLzTZ*; z9~cm4NBi5+`{45=)t&p`)uayg)+xTDu#T|aUl-V^1mCZA@BS5(KI%HTBu$=#_$cVx zVa6TqlSf4-rWq*WQ{JtpyiZNd)WO~-JR%^D^mF>g#rekkztp{jR~u-e_rH5*T3YJ3 zLy!m##oe9Y?(T#TNFan5kc0q%;O^2=>h3mmZ^wOiW_H$hXZNn%z3+S8?-OS4{rv$w zd(Lmpb8> zlu*N9Hjo48OQ@yBRoO*X*o2o+LW`}!izyMsg!ssnBJ0RPyU2W6RH1!LiF0g;Q&f>d zWFgV}lImQOYF*+h?PG|~(>}JE5nszlsI>?EMU>bD=2)S9#WMvZoF<;>#vW;gp6N!u zS(e`ER`!ub;JAbI9eU1MCZ2mtz4jZp?m6V3b&#&L-)`rAU>#$R4rU*nwRIh}4>7b4 z(X~N8a}={cT>_)w?{Gi|ESmlamOjw< zVl91R$nlCa_lz+2k2Z(VE;QcCBh1t#)XX{9%sI%+J;cl>(mWv6JcJ3IOHM2B{IBCAq*ZxrmyWZwDV{Y?d9=I)nt{;kP8B650NP zj)|TSxJH33SpCzi1cJW+o}}$RrN}M?>i|WhE0P#lp}VC(ezHMO4s9w})?*?^MmkZ^ zG-6F0j6_@`XdISIrs_igVo7-Xt%K3=k_=GwO%%R7g1wppG9`zIclZ|LQ9@jfm~1r@?J?=Lpxv+}jSPy|BM~T3p@Ui; z_;M|YNtKCwCB7c=RRMb;3;Gek7pX>aApYWsg1~qy|5#LLnn6Ge0`JFI1Vlsiv%-`- zzLgP>_CU}uc7h_)t%wFn4&t8_{Odw*PgtsTFm9Pi2}-mE_u(@_uY?4QMG1T(;Fu-X z37{cdiD?Ny89B*l*TkedHrY!sq;8j1Y|G5Y+yllb@K!`D$w7h=+ke=tKsPC3m87*s z^FDw+jk-rcvuI4F1r{Z8%IO7_v}}~OXqN8Z?$4Ky4NGS=ufDvcu9Q<-+FVn{Ype$7 z!7<5a*R(fPwL=8tH1zOWQr|L`k?>{cxovuo#IiM2vj)TFNaPyH>5Wr&q>@@m2)- zkn&rf8ixqDGByl#Z*z8XlXP_sA>}te4EvFMYM>Vz5c6Xrm_x6ss*F#~4NA-pPRMfc z4luT~)H5>F)z^h@1Wy>^*9tLn8XB8gQ6W}DCg)YQh&f%uf`P^Uxs&t9uZ}Ek_D#*J zW@lv+Gvd+t>}pPCZb68j7uA-6rzO4pd=pbrg2O_c9PMcoODe?*x*r42YJ&9$?%@&v zJ{v6W(XFk#Xm;hvNt~i0QGKIQC{gzhs)t60h9`zbCcEV5xa;if6iOhzXn5k` z(CGaEHOAKO^s27)^j^dOpR{|Uy<@VTr7W+KlvPw@=4ItoRO3&w-q9wxx=g4_XDcd1 z6a0aN?%~A-VSgoR@kSRqMrT?Er&y|`YQ<`9`&g-PRy=d5WAtRRa)m9Q?VdU&omkc2 z-Xec=p4~qaUo9@~ob4PtBT#P@wogS=^{4RWin~@SdKRk`ixu*@QgJ_bP|cS2B~%C^ zN@VFQRk?7St(X(4*NU6F@>qi6R$&ESTGA>^EN>3TYzQypC6sa#3hSBqr8%V~#g)aG zIZ08`0p;bnjSUq|tg805CaI*oQ_wmx+$WcbmA%r5iNS@%iIr8DIcEkDES<&mh3TnL zd5@6KWr=vrB{^wzmH7kxBK$dV`pnUb|Nrmm^t7jY&}p7Dnx`FNdNkl3pwAsXPY|D# zjf<7__N5a%pO!X=^#S_+=QyL)(~9P1*x;d zL&;~Thkv*ih|kC0^>CoOYnYcSGt@UZ%r7z6Gsf2?$i?okje&!ywwslHaTY ztbhG_?TeR7I3GWqd3{g)>{jpHi{k5NI&Pg8-MT2bcBXxEp?GB?ZM-jPv^V_7T*0N2 z+{+j`KizieM9Zb)?Uzo7E*=+OKc~Pn!^IQQvzx-x8-mjt9Vgd2&V&0-%1&=dw>E@B zePzw{5iO0OqV`CsAZBK)>f{meg;TP#$Gc7*?L2=%e0-gYb855g)F%HpM*7xT)>oQl zr>o{>>qmwwq>=<-XXx}~;jtr}m4(KmYn&6Cywk_|=S~VvAMZGKT5|1@;`UYLqg$%y z_l9v^-XDAQaQgYZsTcQVUOkw9@!ss+OX`zrT}PK>$Ja+LonC+M`jr=t9)0ruM_+&b z^KZZY9+T@t;QRWQ-;ndG??_!IaPK$Ye)a30<9xZj$bhmleA{DufBVb- z{nH=+>(77u=Wl=WwA(w~sJq)P}g-UF%i^YR78F7l@W>NLY z=3>H@q z0s%dW&VGvSehN}&IyyGGIySIw?g#N9;s@fxo&tyuhD=2Huv>Y^PEUu5(MtV;ws?OK zBI#^_r4!Pgu8od9RnL&2Z|Gp4&j8u!g7^$H2a29PO>=NXbM)xA5nav9ABc|(Js|Oi z=Fdae_|se(Fm#Qb4UAk2^c{6^Y3yuh;0Q?6(WPS%{vh5>#}3eU0Ea-I(*cvi2P{1H zMrS%IRONTBO?~&~;vc`b^ZPIE{PL4qA3wc#^THZBGg}00iTNqC0J@2@i7Cz80HFz8 zBqsEYO-)TLEhu>MQ$u`E^q}jJPEM4xI5^N9?CJIl2IN09bUHiH?dg^jOA{;>nV6WG znVFcG>Khrrbwj+J2lwthw0A$a@8CXtBi*Rju=$0FtCvrrt>xCW6A<`rUq5~I(uq?i z){w}aT^Ju6>2DYElhTt-EKPUs)84sTOAA6CqI}zznphtKecRjX+sVG2d!gBB!L&*A zJB_aQFCp)LFmPMc)7B8*?w=CXZyWdi=MpmCwmt}P5T?+*JNNC!65n=<3y5zoaNNTq zG9?wFUQAY2R90p*VLhC5^m9gMC8M*25MNd@Huxel6QZ)>WAoz@%R`to?uj)HiM6z( z26_^KJ`f)*u8N9GUkEnSHM(ASk#$6gO;o8(Oc^b<)FHBf9+pQ7%cDmY+D8{VK;}!V zc4gMOC04r-t7nB{LbWrq)`eN;lvoSfCnLO=7L;q_mqGE*vi8fic1<>NO~MKTdN|FU zVvNnb4;-NF+-FM=Psd@Gj)V3=`fj|qhq7b0<-2<*JNMaXAE0UPr)ur9)7o#l`=H&P z{WiPzS!?aL*>!-bt;5*+c7MKt5uGD{5}3pVnFZ!pm^JQYQqunSV4`1nMb z_{CayN0|h~qWKf!agJG~&Z!vA)+lHR*{EBwgX9zl|6!cDKjg(ELVOyJD6X4>HGqCl ztbj0(oPdY$?}1#1Ac!wA0bhgpk4h7SDkdc`9v_1Dgpm?uj1auQfE2(c04gZS$}hp( zC)NbjG=M2+Rp8mM6q}G_FrXPo1UeeZRe&cL^-cnmVfHQ;WAW6OEFu(=7$b@_Gq8n6 zBjGqyZl>De!{Ph{EkbUCNC({wPD0=Y_$vV?7iy+0jH$3SqWP1s3|SH<-6>dez>5GY zs9Ir|aR*;xs{$TK5-`MLNH7`Sj%~3Oq9=Jz;BBe}5_8ZELzyN)@y349Mm|vn=q80^ ziN!j|qd>M0vUo@U76K)DRASM)f@&8cK0=g)wURX9z>AxhOM@gDkG_;FDly+`3Rejg z5>$jE7g0MiWc|XJfJ*p3N#7|RTfbOy-)N}7h;~{8###hH&t*~|5t3kFoOu|&^-L0} zLzN0dTa95ATk~WBJ|0VsDW*s`!t#nv9z0MeBMoPo;Jb_Ow7e#pJpJE1TZzh&um-V+3hqR{;A;c#3KV0 z7|0CMW*q8g5#+=Z5%CzLFon38R_vHxxr%4?|X z1l)DBBDg1RWeGTSk~WrH$W;h=3IVsLty$jAk#ZV4Sv8OarL9fdujv=IL+=~wg@IEx z+$|pN63N?|2ZTJ8s9i1XoKkkrq6{AeFETMeZw3*+ei@Xzl~MIfe=n|p_;6s|oEz!~ z@l6jXfOQc25b;}^97C(;ky!-&#9W{3MR{V=N@oEYfiw*s(=vY|{ich&Oc z*=2PB5m9&&($GZT!p6$d&d!8lZD?s@Npqq)dnaZ9AbREM*>2UebYNzD@%X^lyi`6Q zkao9=I@$b=hIR=vrv&BFuyi86XG5_J4GmEb52*%KiOd8iX9vi6+lRrRG3?RMiDxct z@SY4S3lBS+!l=lu%1U`%ov6IBrKG&Mx}MMF3pyo2agVr5-o$QgsI2PZG>>+)53}m0 zo9dTa*~j?YQzF6nZs{e3>`I^Fgh+5gz`xifxz*QqZ&3Ykcvidf*e7spPUMW=OwRGok`|7)= zdnPv9dd6$`Jsi2JYkIjwHPHe9RIL??7xLQ1Sc>KD`Abd8b(VaIKe(!#JuV$z>KGi8 zOs%vGE);bPrZ#kQhc+cMml|a2nVj+1dUc+7wXA2QTCr54T&$4IRCcL5My9KT@~}c~ zLfuet$7G#!qFuFIDNq+QcNcL4RUMsW?UM95epC@BFuN(Pypvhk&Ma+8Evd>YF9q?X zX2wTE`BhaHws7h=&9xvtiMUPB(L6CeFwo!AtB{V4_AM?=puc5hWv0KsXM7yP>(kTI zqe_JY3BGP&TUBvRSy8&YhqrZX@$9){XU-mbyFXw5{#)~PcJg&{@^!=zgM*Jf+Boe! zX>?p3wncLb(sovwLvb*-a#KSkh-7CNqFz6iY?i?TJl@{Tb744rL<&z%nkreC_ z>-s_GJ0X7posXp8NRm%=-_3y`GkqZp^Q9(FMwrVUxYJ1^FY95MQpXMpC3=T!4#9+plpnfQwxfK|-H_TN(L5}+ z+Z-aeXRAZ5W1@X~rJYEA2chNZ(R3l<89EpmIvV2A*wN4k*BJ(ebOQsrfgVkt9IAmX zuo0h#+|I#+wn+9tL)@oNKV$?Uk8!}z;gG3|ftj1JiK~%;6AE4o2=3YI>JZ|?r#Pff zhc#43mxesxL4C#{W0ymg-a51Z-P9tF!O@y~H)g*7;L@MIy!*qK@BR9dTc1C>@ZROM zmBrysDL=g=oe^knpkTUny88pKCf&(*~d>kEiDI6B~0qvp3G zjiep`f-cT92F=3K!c6m@xrI3fj0}zO#HCuAc4(QQo4x3&cloZ#Q>g+fUdFSP7y_nkX%}D4m~KB;g@aamTc~lXyTe^;uvE>@z;TG zQ`>r{Hf8r7>s@=um7TjRckVLZvD4%o99-FBwQCP$mo`O9+e&LMW%mIah|AjhYoD6R|1DDn$q(tIP4m9y}}EhiCyPeWnmfr;qrXbfws!@O;fXyJLRd9+m zM%Y7%u@ezLs!uf5{mhBF1bGp@$L;YxqHGeECV{wY4EEV#og7$)gH3SX7&DB-1;xXA ziN+P%a8l|*1Truwm;&Q{&>S(-z|4kbM>gWoW)qo#&qa6*Oh+<_q_qahCc#yl?G6*L z9@I>1j2x1Mw_af2UHx~Sk&xP(6Q~xMr8_|ISiza$9@lV1uBFPM? zOq}o}V^pSq@-V!fjii6EZDs+yvZl;@+&&~WtF%1p>;mgF2(_eH6xli~CRnHDS!Whn z=a$*#SHQhVY?i=hFrY@w1pb?bqFM(AQMi1`fhQLHXhFsVnZ%HcM+4&>0r;m VWH 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 z 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�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 diff --git a/lavis/configs/datasets/aokvqa/defaults_instruct.yaml b/lavis/configs/datasets/aokvqa/defaults_instruct.yaml new file mode 100644 index 000000000..3d6dc37f7 --- /dev/null +++ b/lavis/configs/datasets/aokvqa/defaults_instruct.yaml @@ -0,0 +1,52 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + aok_vqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_train.json + storage: + - aokvqa/annotations/aokvqa_v1p0_train.json + # val: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_val.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/specialized_vocab_train.json + # storage: + # - aokvqa/annotations/aokvqa_v1p0_val.json + # - aokvqa/annotations/specialized_vocab_train_lavis.json + # # - aokvqa/annotations/large_vocab_train_lavis.json + # test: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_test.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/specialized_vocab_train.json + # storage: + # - aokvqa/annotations/aokvqa_v1p0_test.json + # - aokvqa/annotations/specialized_vocab_train_lavis.json + images: + # storage: /coco/images + storage: /export/share/datasets/vision/coco/images diff --git a/lavis/configs/datasets/audiocaps/defaults_mm_cap.yaml b/lavis/configs/datasets/audiocaps/defaults_mm_cap.yaml new file mode 100644 index 000000000..76a05788d --- /dev/null +++ b/lavis/configs/datasets/audiocaps/defaults_mm_cap.yaml @@ -0,0 +1,49 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + audiocaps_mm_caption: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - audiocaps/annotations/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - audiocaps/annotations/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - audiocaps/annotations/test.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio \ No newline at end of file diff --git a/lavis/configs/datasets/audiocaps/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/audiocaps/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..27cf6b06e --- /dev/null +++ b/lavis/configs/datasets/audiocaps/defaults_mm_cap_instruct.yaml @@ -0,0 +1,52 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + build_info: + kwargs: + cached: False + cached_dir: /export/einstein-vision/audio_datasets/audiocaps/beats_features + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - audiocaps/annotations/train.csv + + # val: + # url: + # - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + # storage: + # - audiocaps/annotation/val.csv + + # test: + # url: + # - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + # storage: + # - /export/einstein-vision/audio_datasets/audiocaps/dataset/test.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio \ No newline at end of file diff --git a/lavis/configs/datasets/audiocaps/defaults_mm_qa.yaml b/lavis/configs/datasets/audiocaps/defaults_mm_qa.yaml new file mode 100644 index 000000000..04b9ae39b --- /dev/null +++ b/lavis/configs/datasets/audiocaps/defaults_mm_qa.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + cached: False + # add_binary: True + cached_dir: /export/einstein-vision/audio_datasets/audiocaps/beats_features + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + storage: + - audiocaps_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + + # val: + # url: + # # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + # storage: + # # - audiocaps_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio \ No newline at end of file diff --git a/lavis/configs/datasets/audioset/defaults_mm_cap.yaml b/lavis/configs/datasets/audioset/defaults_mm_cap.yaml new file mode 100644 index 000000000..c00f9aa8f --- /dev/null +++ b/lavis/configs/datasets/audioset/defaults_mm_cap.yaml @@ -0,0 +1,47 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + audioset_mm_caption: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data//audioset/balanced_train_clean.csv + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + storage: + - audioset/balanced_train_clean.csv + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - audioset/annotations/class_labels_indices.csv + + # val: + # url: + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/eval_segments.csv + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + # storage: + # - audioset/annotations/eval_segments.csv + # - audioset/annotations/class_labels_indices.csv + audio: + storage: /export/einstein-vision/audio_datasets/AudioSet/all_audio \ No newline at end of file diff --git a/lavis/configs/datasets/audioset/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/audioset/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..dbb378b08 --- /dev/null +++ b/lavis/configs/datasets/audioset/defaults_mm_cap_instruct.yaml @@ -0,0 +1,48 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data//audioset/balanced_train_clean.csv + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + storage: + - audioset/annotations/balanced_train_clean.csv + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - audioset/annotations/class_labels_indices.csv + + # val: + # url: + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/eval_segments.csv + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + # storage: + # - audioset/annotations/eval_segments.csv + # - audioset/annotations/class_labels_indices.csv + + audio: + storage: /export/einstein-vision/audio_datasets/AudioSet/all_audio \ No newline at end of file diff --git a/lavis/configs/datasets/avsd/defaults_mm_dial_instruct.yaml b/lavis/configs/datasets/avsd/defaults_mm_dial_instruct.yaml new file mode 100644 index 000000000..2a151652d --- /dev/null +++ b/lavis/configs/datasets/avsd/defaults_mm_dial_instruct.yaml @@ -0,0 +1,65 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + avsd_mm_dialogue_instruct: # name of the dataset builder + data_type: [video, audio] + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/avsd_dstc7_train.json + storage: + - avsd/annotations/train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/avsd_dstc7_val.json + storage: + - avsd/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/avsd_dstc7_test.json + storage: + - avsd/annotations/test.json + templates: null + + audio: + storage: /export/video-language-dataset/data/charade/videos + + video: + storage: /export/video-language-dataset/data/charade/videos + diff --git a/lavis/configs/datasets/capfilt14m/defaults_cap.yaml b/lavis/configs/datasets/capfilt14m/defaults_cap.yaml new file mode 100644 index 000000000..7d2821c7b --- /dev/null +++ b/lavis/configs/datasets/capfilt14m/defaults_cap.yaml @@ -0,0 +1,30 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + capfilt14m: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + text_processor: + train: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/capfilt14m/annotation.json + # - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + storage: + - capfilt14m/annotations/annotation.json + # - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + images: + storage: /export/share/datasets/vision/coco/images \ No newline at end of file diff --git a/lavis/configs/datasets/capfilt14m/defaults_cap_instruct.yaml b/lavis/configs/datasets/capfilt14m/defaults_cap_instruct.yaml new file mode 100644 index 000000000..ec4e59e8f --- /dev/null +++ b/lavis/configs/datasets/capfilt14m/defaults_cap_instruct.yaml @@ -0,0 +1,34 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/capfilt14m/annotation.json + # - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + storage: + - capfilt14m/annotations/annotation.json + # - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + + images: + storage: /export/share/datasets/vision/coco/images \ No newline at end of file diff --git a/lavis/configs/datasets/charade/defaults_cap.yaml b/lavis/configs/datasets/charade/defaults_cap.yaml new file mode 100644 index 000000000..c28a1ada2 --- /dev/null +++ b/lavis/configs/datasets/charade/defaults_cap.yaml @@ -0,0 +1,52 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + charade_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/charade/train_lavis.json + # - /export/video-language-dataset/data/charade/train_lavis.json + storage: + - charade/annotations/train.json + # - /export/video-language-dataset/data/charade/train_lavis.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/charade/val_lavis.json + # - /export/video-language-dataset/data/charade/val_lavis.json + storage: + - charade/annotations/val.json + # - /export/video-language-dataset/data/charade/val_lavis.json + videos: + storage: /export/video-language-dataset/data/charade/videos diff --git a/lavis/configs/datasets/charade/defaults_cap_instruct.yaml b/lavis/configs/datasets/charade/defaults_cap_instruct.yaml new file mode 100644 index 000000000..f1a7ba82c --- /dev/null +++ b/lavis/configs/datasets/charade/defaults_cap_instruct.yaml @@ -0,0 +1,54 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + charade_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + + text_processor: + train: + name: blip_instruction + modality: video + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/charade/train_lavis.json + # - /export/video-language-dataset/data/charade/train_lavis.json + storage: + - charade/annotations/train.json + # - /export/video-language-dataset/data/charade/train_lavis.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/charade/val_lavis.json + # - /export/video-language-dataset/data/charade/val_lavis.json + storage: + - charade/annotations/val.json + # - /export/video-language-dataset/data/charade/val_lavis.json + videos: + storage: /export/video-language-dataset/data/charade/videos diff --git a/lavis/configs/datasets/clotho/defaults_mm_cap.yaml b/lavis/configs/datasets/clotho/defaults_mm_cap.yaml new file mode 100644 index 000000000..e04f2b814 --- /dev/null +++ b/lavis/configs/datasets/clotho/defaults_mm_cap.yaml @@ -0,0 +1,41 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: eval + + annotations: + train: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_development.csv + storage: + - clothov2/annotations/clotho_captions_development.csv + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - clothov2/annotations/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + \ No newline at end of file diff --git a/lavis/configs/datasets/clotho/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/clotho/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..5a4b755b2 --- /dev/null +++ b/lavis/configs/datasets/clotho/defaults_mm_cap_instruct.yaml @@ -0,0 +1,42 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + clothov2_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: eval + + annotations: + train: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_development.csv + storage: + - clothov2/annotations/clotho_captions_development.csv + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - clothov2/annotations/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + \ No newline at end of file diff --git a/lavis/configs/datasets/clotho/defaults_mm_qa.yaml b/lavis/configs/datasets/clotho/defaults_mm_qa.yaml new file mode 100644 index 000000000..e7d97651b --- /dev/null +++ b/lavis/configs/datasets/clotho/defaults_mm_qa.yaml @@ -0,0 +1,44 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + \ No newline at end of file diff --git a/lavis/configs/datasets/coco/defaults_cap_instruct.yaml b/lavis/configs/datasets/coco/defaults_cap_instruct.yaml new file mode 100644 index 000000000..bce779906 --- /dev/null +++ b/lavis/configs/datasets/coco/defaults_cap_instruct.yaml @@ -0,0 +1,44 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + coco_caption_instruct: # name of the dataset builder + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + # val: + # url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + # md5: b273847456ef5580e33713b1f7de52a0 + # storage: coco/annotations/coco_karpathy_val.json + # test: + # url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + # md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + # storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images diff --git a/lavis/configs/datasets/coco/defaults_vqa_instruct.yaml b/lavis/configs/datasets/coco/defaults_vqa_instruct.yaml new file mode 100644 index 000000000..5a85202b3 --- /dev/null +++ b/lavis/configs/datasets/coco/defaults_vqa_instruct.yaml @@ -0,0 +1,57 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + coco_vqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_val.json + storage: + - coco/annotations/vqa_train.json + - coco/annotations/vqa_val.json + # val: + # url: + # # TODO make this order insensitive + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_val_eval.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/answer_list.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/v2_OpenEnded_mscoco_val2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/v2_mscoco_val2014_annotations.json + # storage: + # - coco/annotations/vqa_val_eval.json + # - coco/annotations/answer_list.json + # - coco/annotations/v2_OpenEnded_mscoco_val2014_questions.json + # - coco/annotations/v2_mscoco_val2014_annotations.json + # test: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_test.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/answer_list.json + # storage: + # - coco/annotations/vqa_test.json + # - coco/annotations/answer_list.json + images: + storage: /export/share/datasets/vision/coco/images diff --git a/lavis/configs/datasets/coin/defaults_cap.yaml b/lavis/configs/datasets/coin/defaults_cap.yaml new file mode 100644 index 000000000..c783102da --- /dev/null +++ b/lavis/configs/datasets/coin/defaults_cap.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + coin_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/coin/train.json + # - /export/video-language-dataset/data/coin/annotations/train_lavis.json + storage: + - coin/annotations/train.json + # - /export/video-language-dataset/data/coin/annotations/train_lavis.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/coin/val.json + # - /export/video-language-dataset/data/coin/annotations/val_lavis.json + storage: + - coin/annotations/val.json + # - /export/video-language-dataset/data/coin/annotations/val_lavis.json + videos: + storage: /export/video-language-dataset/data/coin/annotations/videos/ diff --git a/lavis/configs/datasets/coin/defaults_cap_instruct.yaml b/lavis/configs/datasets/coin/defaults_cap_instruct.yaml new file mode 100644 index 000000000..e1f8c8f46 --- /dev/null +++ b/lavis/configs/datasets/coin/defaults_cap_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + coin_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/coin/train.json + # - /export/video-language-dataset/data/coin/annotations/train_lavis.json + storage: + - coin/annotations/train.json + # - /export/video-language-dataset/data/coin/annotations/train_lavis.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/coin/val.json + # - /export/video-language-dataset/data/coin/annotations/val_lavis.json + storage: + - coin/annotations/val.json + # - /export/video-language-dataset/data/coin/annotations/val_lavis.json + videos: + storage: /export/video-language-dataset/data/coin/annotations/videos/ diff --git a/lavis/configs/datasets/conceptual_caption/defaults_12m_instruct.yaml b/lavis/configs/datasets/conceptual_caption/defaults_12m_instruct.yaml new file mode 100644 index 000000000..1c576bbcc --- /dev/null +++ b/lavis/configs/datasets/conceptual_caption/defaults_12m_instruct.yaml @@ -0,0 +1,37 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + conceptual_caption_12m_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/cc12m/x_instructblip_clean.json + # - /export/home/workspace/datasets/cc12m.json + storage: + - conceptual_caption/annotations/cc12m.json + images: + storage: conceptual_caption/images_12m diff --git a/lavis/configs/datasets/conceptual_caption/defaults_3m_instruct.yaml b/lavis/configs/datasets/conceptual_caption/defaults_3m_instruct.yaml new file mode 100644 index 000000000..05f2b523a --- /dev/null +++ b/lavis/configs/datasets/conceptual_caption/defaults_3m_instruct.yaml @@ -0,0 +1,36 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + conceptual_caption_3m_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/workspace/datasets/cc3m.json + storage: + - conceptual_caption/annotations/cc3m.json + images: + storage: conceptual_caption/images diff --git a/lavis/configs/datasets/discriminatory_reasoning/defaults_mm_audio_video.yaml b/lavis/configs/datasets/discriminatory_reasoning/defaults_mm_audio_video.yaml new file mode 100644 index 000000000..4b11dbd09 --- /dev/null +++ b/lavis/configs/datasets/discriminatory_reasoning/defaults_mm_audio_video.yaml @@ -0,0 +1,63 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [video, audio] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/audiocaps_discrn.json + storage: + - discrn/annotations/audiocaps.json + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/audiocaps_discrn.json + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val \ No newline at end of file diff --git a/lavis/configs/datasets/discriminatory_reasoning/defaults_mm_image_pc.yaml b/lavis/configs/datasets/discriminatory_reasoning/defaults_mm_image_pc.yaml new file mode 100644 index 000000000..2389aa754 --- /dev/null +++ b/lavis/configs/datasets/discriminatory_reasoning/defaults_mm_image_pc.yaml @@ -0,0 +1,48 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # [images|videos|features] + + + build_info: + + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/objaverse_discrn.json + storage: + - discrn/annotations/objaverse.json + # - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/objaverse_discrn.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ \ No newline at end of file diff --git a/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/audiocaps_discrn.json b/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/audiocaps_discrn.json new file mode 100644 index 000000000..9af592542 --- /dev/null +++ b/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/audiocaps_discrn.json @@ -0,0 +1 @@ +[{"captions": ["a person is burping then speaks and laughs", "a toilet flushes and a female speaks"], "sample_ids": ["wAAkbZToh8", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["burp, laugh, speak", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man burps and a woman speaks", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 0}, {"captions": ["a dog barks and whimpers", "a stream of water runs briefly"], "sample_ids": ["sShpyu2l4YQ", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["barks, whimpers, dog", "stream, water, run"], "captions_pred_video": ["the puppies are playing with a toy", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a dog is barking and growling", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a man speaks and is typing on a keyboard"], "sample_ids": ["xjhAnI2q6hM", "x9JovgqUcs"], "start_seconds": ["6", "500"], "properties": ["engine revs, vehicle, people", "a, man, speaks, keyboard"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man speaks and types on a keyboard"], "question": "which entity is typing on a keyboard?", "label": 1}, {"captions": ["a man woman speak while crickets sing", "people cheer as a vehicle engine revs"], "sample_ids": ["zTLVJCo4WEE", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["a, crickets, sing", "engine revs, vehicle, people"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sfAvvZwdLCY", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["water drains, flushes, water", "female, spraying, scream"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["dogs barking and whimpering", "winds blows roughly as a vehicle races past"], "sample_ids": ["tIY7qOV3rEM", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["barking, whimpering, dog", "wind, blows, vehicle"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a jet engine roars and wind blows "], "question": "which entity is more calm", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["yNtRmrn0io8", "sLUnaPT5gM8"], "start_seconds": ["210", "0"], "properties": ["storm, distance, strike", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a house in the middle of the night", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["rain falls and thunder roars", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a woman speaks happily and an animal chirps"], "sample_ids": ["uEU-Hg5MTN8", "uWAAAL4CIoc"], "start_seconds": ["27", "0"], "properties": ["a woman, laughs, animal", "a woman, chirps, animal"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a dog is barking "], "question": "which entity has a woman speaking and an animal chirps?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a child speaks in closed space"], "sample_ids": ["sncRqQ67iJU", "yW6FWLSLkx4"], "start_seconds": ["460", "40"], "properties": ["loud, repeatedly, man", "child, space, speak"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is snoring", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a stream of water runs briefly"], "sample_ids": ["wDVMhEdTiVw", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["gun, shoot, water", "stream, water, run"], "captions_pred_video": ["a blurry image of trees and water in the forest", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zofjfKhqLk8", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["background, metal, clank", "People, motor, brakes"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a machine?", "label": 0}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["voJh2gJxXhA", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["music, frog, croak", "loud, laughter, intermittent"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a small engine idles continuously", "an airplane engine spools and people speak"], "sample_ids": ["y5WII6cTH7k", "wTjoRj1se3U"], "start_seconds": ["40", "390"], "properties": ["engine, idle, continuously", "airplane, engine, spool"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a motorcycle engine is idling", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vZAqdHZ81yA", "uEU-Hg5MTN8"], "start_seconds": ["180", "27"], "properties": ["engine, motorcycle, idling", "a woman, laughs, animal"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is idling loudly", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 0}, {"captions": ["male speech with light ticking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xO-Q2BlIIPU", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["male, speech, ticking", "a woman, something, fried"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a stream of water runs briefly"], "sample_ids": ["uZesmtKZGSw", "x-PeY8Yb8M4"], "start_seconds": ["250", "300"], "properties": ["men, talk, cars", "stream, water, run"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["birds chirp as a bell rings", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["ziUT9IFTkjg", "zl9Dqx-j7q4"], "start_seconds": ["10", "6"], "properties": ["chirp, bell, ring", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["yajyRTUQk3U", "vlJS7LN2XyM"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "background, clocks, ticking"], "captions_pred_video": ["- a woman cooking in the kitchen", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a ticktock of a clock"], "question": "which entity has a quieter background", "label": 1}, {"captions": ["a train horn sounds and railroad crossing ring", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["s7knHCFW82w", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["horn, sound, train", "airplane, boy, fly"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["u--KhUW8l1Y", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["horn, siren, life", "a woman, laughs, animal"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "multiple people speak and children yell while water gurgles"], "sample_ids": ["w0xsN8X18Y", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["rain, thunder, surface", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "water flows as men speak and yell"], "sample_ids": ["xKB8O8LTs6s", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["music, gunshots, explosion", "water, flow, men"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wyllXV6PjKo", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["a kid, talk, cry", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman speaks and a baby cries", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a machine beeps continuously"], "sample_ids": ["u2f5NpsoHBg", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["person, laugh, clap", "beeps, machine, continuously"], "captions_pred_video": ["is being projected on a screen at the front of the stage", null], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uYT5gxnyMWM", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["a, scream, girl", "three men, wind, flow"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a girl speaking followed by a scream and more girls talking?", "label": 0}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vfYTJq7nU", "vfYTJq7nU"], "start_seconds": ["130", "130"], "properties": ["rustling, ducks, quack", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a duck quacks and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is a video of ducks?", "label": 0}, {"captions": ["a motorcycle engine works nearby", "a horn rings out as a machine runs by"], "sample_ids": ["tOSWIURC-4", "slZLHwNbbt4"], "start_seconds": ["0", "300"], "properties": ["engine, work, nearby", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a lawn mower is running ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "water is sprayed across a hard surface"], "sample_ids": ["soTOh3zYJfY", "sQwlkXjQabo"], "start_seconds": ["40", "10"], "properties": ["vehicle, skid, tires", "water, spray, surface"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["un9VQlzgZM", "yajyRTUQk3U"], "start_seconds": ["5", "400"], "properties": ["females, talk, laugh", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["y8dSeubCNI", "uEU-Hg5MTN8"], "start_seconds": ["4", "27"], "properties": ["men, women, car", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking and a baby is crying"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["u--KhUW8l1Y", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["engine, sound, horn", "female, spraying, scream"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["u6jIvCtKarQ", "yajyRTUQk3U"], "start_seconds": ["70", "400"], "properties": ["a, man, speaks", "a woman, something, fried"], "captions_pred_video": ["footage of a person using a blender on a stove top", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a person sniffles and sneezes", "a frog croaks as other frogs croak in the background"], "sample_ids": ["uRlbY6aoBU", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["sneezes, sniffles, person", "background, frog, croak"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a man is sneezing ", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zcDwZ6W7E3E", "zFjIWfSD-4"], "start_seconds": ["180", "410"], "properties": ["a, man, speak", "People, motor, brakes"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["weDbePuc-Xc", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["cartoon character, music, vocalize", "airplane, boy, fly"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a clock ticktocks"], "sample_ids": ["ukg5L09Wpvo", "v-g-j2uTByM"], "start_seconds": ["150", "30"], "properties": ["clickety-clack, train, whistle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a railroad crossing bell rings as a train horn blows"], "sample_ids": ["w0xsN8X18Y", "tZGN5a7ybxo"], "start_seconds": ["30", "60"], "properties": ["music, surface, rain", "ring, train, horn"], "captions_pred_video": [null, "is taken from a moving vehicle on the train tracks"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a train is moving and blowing its horn "], "question": "which entity is a warning", "label": 1}, {"captions": ["an insect buzzes around continuously", "water flows and trickles"], "sample_ids": ["v25l1jef3JY", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "water, flow, trickle"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "water is splashing and gurgling"], "question": "which entity is not a living thing", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wqZ135Ssz0", "y2bVZ7rz-5M"], "start_seconds": ["60", "280"], "properties": ["two men, woman, birds", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a beep occurs briefly", "a drill drills through something then people begin laughing"], "sample_ids": ["xtWeJ56-U-g", "tEE3MpBt1sg"], "start_seconds": ["20", "50"], "properties": ["beep, occur, briefly", "drill, something, laugh"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "paper is crumpling consistently"], "sample_ids": ["ugHJF0hfYkg", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a helicopter is flying overhead ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a person whistles a meandering tune", "birds chirp and objects are moved around"], "sample_ids": ["uFoga8sHpiw", "yPUYU6t3rwo"], "start_seconds": ["90", "370"], "properties": ["person, tune, whistle", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a bird in a cage", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a person whistles a song", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ugHJF0hfYkg", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["loud, intense, propeller", "wind, blow, vehicle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a car speeding up in the distance", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["u0TrcHhkPQ", "zl9Dqx-j7q4"], "start_seconds": ["20", "6"], "properties": ["distance, car, speed", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vqZuVbG6-HI", "ukg5L09Wpvo"], "start_seconds": ["130", "150"], "properties": ["background, male, female", "clickety-clack, train, whistle"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zgUgkpk78xU", "xfaoyyzw2WU"], "start_seconds": ["70", "180"], "properties": ["horn, bells, ring", "loud, jet engine, roar"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["shmR4OZtzqA", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["man, engine, idle", "loud, laughter, intermittent"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man speaks while a motor runs", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows and a stream of water flows nearby", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sYITalLZjj4", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["stream, flow, wind", "engine, idle, woman"], "captions_pred_video": ["two ducks are swimming in the water near each other", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["wind blows and birds chirp", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yajyRTUQk3U", "su6FAOcOA8c"], "start_seconds": ["400", "4"], "properties": ["a woman, something, fried", "engine, idle, woman"], "captions_pred_video": ["- a woman cooking in the kitchen", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking and a subway train is moving "], "question": "which woman is speaking while something is fried?", "label": 0}, {"captions": ["a female speaks softly as paper crinkles", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xvDdE3zNf8Y", "tDVADusiIoc"], "start_seconds": ["120", "60"], "properties": ["a, female, speaks", "water, radio, man"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["an engine runs loudly", "a car speeding up in the distance"], "sample_ids": ["vqZuVbG6-HI", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["loud, engine, run", "distance, car, speed"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["an aircraft engine runs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yLCORCnd35Q", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["engine, aircraft, runs", "airplane, boy, fly"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "people applaud and hoot and chat quietly"], "sample_ids": ["vBslzh7saPw", "wwyfGO2J4"], "start_seconds": ["90", "90"], "properties": ["engine, roar, louder", "people, applaud, hoot"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "water pouring and bubbling"], "sample_ids": ["sOa7g-44Dag", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["audio, scratching, man", "water, bubbles, pouring"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "water is running from a faucet"], "question": "which entity is a video", "label": 1}, {"captions": ["a man talks as several small engines run", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["u9A6VZQCZpU", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["a, man, talk", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking with light rustling", "a man speaks followed by another man speaking outside"], "sample_ids": ["zOZleIRqZm4", "viuTg1M-dqg"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "two men, speak, follow"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one man speaking?", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a child speaks in closed space"], "sample_ids": ["x5cuQjOdM3E", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["cat, talk, meow", "child, space, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a man talks while metallic objects are rapped and steam is released"], "sample_ids": ["vbZ-0lGPneg", "vuUVPzd2FXw"], "start_seconds": ["30", "160"], "properties": ["a woman, a television program, a bird", "a, steam, release"], "captions_pred_video": ["of a man holding a baby duck in his hands", "of the person cooking on the grill with a spatula"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking and dishes are clanging"], "question": "which entity has a man talking?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a door slams shut and an object moves on a hard surface"], "sample_ids": ["uC9dtII1KDI", "zkKdxzNC97Y"], "start_seconds": ["150", "27"], "properties": ["wind, gusts, distance", "hard, surface, door"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a door is opened and closed"], "question": "which entity is not a door?", "label": 0}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a toilet flushes and a female speaks"], "sample_ids": ["sapQIQUhFc", "yaln9y8I7ms"], "start_seconds": ["280", "230"], "properties": ["liquid, flow, distance", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a toilet flushes and a man speaks"], "question": "which entity is about a toilet?", "label": 1}, {"captions": ["a door opens and closes", "ticking continues without interruption"], "sample_ids": ["vBHyYJ8pL0", "v-g-j2uTByM"], "start_seconds": ["2", "30"], "properties": ["open, close, door", "ticking, continuous, clock"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a car accelerates and wind blows"], "sample_ids": ["uzQnlJXBbOM", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["ringing, beep, stop", "accelerates, wind, blows"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "an airplane flies overhead as a woman speaks"], "sample_ids": ["vbpKkWvfOu4", "zj2R0XoFr5k"], "start_seconds": ["560", "50"], "properties": ["a, man, speaks", "airplane, fly, overhead"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "water runs into a sink while men speak"], "sample_ids": ["wRBHTgrbiwg", "vzceMbklWc"], "start_seconds": ["50", "180"], "properties": ["bird, owl, speak", "water, sink, run"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "water is running and a man is speaking"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["electronic beeps occur in a short series", "water flows as men speak and yell"], "sample_ids": ["y682ml90jGw", "vJ7JPEFhyLA"], "start_seconds": ["11", "16"], "properties": ["beeps, series, electronic", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more natural", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vs65y4qmyBE", "sLUnaPT5gM8"], "start_seconds": ["340", "0"], "properties": ["wind, blows, strongly", "loud, laughter, intermittent"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["three men talk while wind blows and some liquid flows", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vJ7JPEFhyLA", "y8WEcpOlT3I"], "start_seconds": ["16", "40"], "properties": ["three men, wind, flow", "harsh, wind, blows"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity has a harsher wind blowing", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "water flows and trickles"], "sample_ids": ["vimzuGQvdcU", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "water, flow, trickle"], "captions_pred_video": ["a group of people are rafting down a river", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "vehicles pass by on a roadway"], "sample_ids": ["w5W5Kqtc8E", "tgbONvsP47Y"], "start_seconds": ["100", "0"], "properties": ["wind, blow, vehicle", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "plastic is tapped on while someone speaks"], "sample_ids": ["soTOh3zYJfY", "wvKpEYswXO0"], "start_seconds": ["40", "150"], "properties": ["vehicle, skid, tires", "plastic, tap, speak"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["water splashes as an animal walks through", "continuous snoring"], "sample_ids": ["w1ir-sZ3Im8", "sLkeqCDJIyw"], "start_seconds": ["90", "120"], "properties": ["animal, water, splashes", "loud, snoring, noise"], "captions_pred_video": ["footage of a group of people riding horses through a river", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a bird is chirping and tweeting a bird song"], "sample_ids": ["vZAw4apG0Es", "wPz6QRAkEb4"], "start_seconds": ["30", "60"], "properties": ["background, tick, repeat", "chirps, tweets, song"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a bird in a cage on top of a pole"], "captions_pred_audio": ["a clock is ticking and people are talking", "birds are chirping in the background "], "question": "which entity is a bird", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a dog barks and whimpers"], "sample_ids": ["xKB8O8LTs6s", "sShpyu2l4YQ"], "start_seconds": ["70", "0"], "properties": ["music, gunshots, explosion", "barks, whimpers, dog"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "the puppies are playing with a toy"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a dog is barking and growling"], "question": "which entity is more calm", "label": 1}, {"captions": ["a person snoring", "an infant crying frantically"], "sample_ids": ["t8tv5YRMJUg", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["a person, snore, loud", "cry, infant, frantically"], "captions_pred_video": ["of a man getting his face licked by another man", "of the baby crying in the car seat"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a baby cries loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "an adult man speaks over glass clinking"], "sample_ids": ["vJvryTwuAV8", "u6jIvCtKarQ"], "start_seconds": ["16", "70"], "properties": ["audience, cheer, man", "a, man, speaks"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of a person using a blender on a stove top"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking and dishes are being moved with background noise "], "question": "which man speaks over glass clinking", "label": 1}, {"captions": ["birds chirp as a train approaches", "people cheer as a vehicle engine revs"], "sample_ids": ["xM4joTqDVp4", "xjhAnI2q6hM"], "start_seconds": ["160", "6"], "properties": ["bird, chirp, train", "engine revs, vehicle, people"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vJvryTwuAV8", "uEU-Hg5MTN8"], "start_seconds": ["16", "27"], "properties": ["audience, cheer, man", "a woman, laughs, animal"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zj2R0XoFr5k", "tiDFTC-5vU"], "start_seconds": ["50", "30"], "properties": ["airplane, boy, fly", "male, duck, laugh"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a drill runs and two people laugh", "a person speaks briefly"], "sample_ids": ["tEE3MpBt1sg", "zOZleIRqZm4"], "start_seconds": ["50", "80"], "properties": ["two people, laugh, drill", "person, talk, brief"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking with crickets chirping in the background"], "question": "which entity is talking", "label": 1}, {"captions": ["a person screams glaringly", "an airplane engine roars increasingly louder"], "sample_ids": ["xC8kbrKJmco", "vBslzh7saPw"], "start_seconds": ["0", "90"], "properties": ["glaringly, screams, person", "engine, roar, louder"], "captions_pred_video": [null, "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a goat is bleating ", "a jet engine roars and accelerates "], "question": "which entity is louder", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "men speak and a nozzle sprays liquid"], "sample_ids": ["v5P-ThUCINM", "wRV8yMk886E"], "start_seconds": ["400", "0"], "properties": ["background, chirp, bird", "liquid, spray, nozzle"], "captions_pred_video": [null, "two cars are parked in a parking lot at night"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man speaks followed by a loud burst"], "question": "which entity is more likely to be used in a science class", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a man speaks as a car is passing by"], "sample_ids": ["tDVADusiIoc", "sK4u5T8hW78"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "a, car, pass"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["v5P-ThUCINM", "su6FAOcOA8c"], "start_seconds": ["400", "4"], "properties": ["background, chirp, bird", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["an infant crying frantically", "people applaud and hoot and chat quietly"], "sample_ids": ["zwOBqeFTgiU", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["cry, infant, frantically", "people, applaud, hoot"], "captions_pred_video": ["of the baby crying in the car seat", null], "captions_pred_audio": ["a baby cries loudly", "people are clapping and speaking with background noise "], "question": "which entity is a group of people?", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "food is frying while a woman speaks"], "sample_ids": ["sEprKHm8Sj8", "yhQ2Lg-7qDY"], "start_seconds": ["90", "130"], "properties": ["car, tires, slows", "food, woman, speak"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a faucet is running and a man is speaking"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a stream of water runs briefly"], "sample_ids": ["xvDdE3zNf8Y", "x-PeY8Yb8M4"], "start_seconds": ["120", "300"], "properties": ["A, crumple, paper", "stream, water, run"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman speaks and crumples paper", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "small dogs yip and bark sharply"], "sample_ids": ["vK93VuO0yNc", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["male voice, bus, rumble", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "someone snores nearby"], "sample_ids": ["wyllXV6PjKo", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["a baby, a woman, a man", "someone snores, nearby, someone"], "captions_pred_video": [null, "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman speaks and a baby cries", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks as several small engines run", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["u9A6VZQCZpU", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["a, man, talk", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a jet engine roars "], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zF8yoL0rkbI", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "a woman, a television program, a bird"], "captions_pred_video": ["footage of the traffic on the street at night", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vD6lYD1l0BY", "ukg5L09Wpvo"], "start_seconds": ["330", "150"], "properties": ["a, machine, run", "clickety-clack, train, whistle"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["several insects fly while two men talk", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["s-T9OVOiMLo", "tdWhHV3X25Q"], "start_seconds": ["330", "60"], "properties": ["several, fly, men", "applause, audience, yells"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and wind blows", "an airplane accelerates briefly"], "sample_ids": ["sxIvBMSavMQ", "zjTG0gaGCUI"], "start_seconds": ["210", "80"], "properties": ["birds, chirp, wind", "accelerates, airplane, briefly"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a jet engine roars as wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "a man speaks on a radio as wind blows"], "sample_ids": ["uWAAAL4CIoc", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["a, dog, vocalize", "man, radio, blows"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking on a radio?", "label": 1}, {"captions": ["birds vocalize and a man speaks", "water is sprayed across a hard surface"], "sample_ids": ["v0wPrLBI3hg", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["vocalize, bird, speak", "water, spray, surface"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["people speak then an engine runs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["uMTTDZ2mb4", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["engine, run, people", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is about a vehicle engine?", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["u5RmF3c3Aw", "ukg5L09Wpvo"], "start_seconds": ["60", "150"], "properties": ["engine, car, zoom", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man talks as several small engines run", "a man speaks as a motor runs in the background"], "sample_ids": ["u9A6VZQCZpU", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["bees buzz and wind blows", "a piece of wood is being placed down and sawed"], "sample_ids": ["tMJne1a4AFI", "uiItxDsDMFI"], "start_seconds": ["0", "30"], "properties": ["bees buzz, wind blows, bees", "wood, piece, saw"], "captions_pred_video": ["a swarm of bees on the ground", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a swarm of bees buzzing around", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["y8WEcpOlT3I", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["harsh, wind, blows", "two objects, woman, speak"], "captions_pred_video": ["on how to use a sewing machine youtube", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a stream of water runs briefly"], "sample_ids": ["x9JovgqUcs", "x-PeY8Yb8M4"], "start_seconds": ["500", "300"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "small dogs yip and bark sharply"], "sample_ids": ["tDVADusiIoc", "v-wcQf4BDY0"], "start_seconds": ["60", "120"], "properties": ["man, radio, blows", "bark, yip, sharply"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["an insect buzzes around continuously", "loud clanking and banging with brief male speech"], "sample_ids": ["v25l1jef3JY", "sWZzXuWYY"], "start_seconds": ["0", "420"], "properties": ["buzzes, continuously, insect", "male, speech, banging"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a sewing machine runs and a man speaks"], "question": "which entity is louder", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "small dogs yip and bark sharply"], "sample_ids": ["zdYdyF9-m8U", "v-wcQf4BDY0"], "start_seconds": ["7", "120"], "properties": ["wind, crash, shoreline", "bark, yip, sharply"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["waves crash and wind blows ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["ylpYOorfH4o", "wqZ135Ssz0"], "start_seconds": ["410", "60"], "properties": ["motor, run, steady", "man, woman, squawks"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wqZ135Ssz0", "yajyRTUQk3U"], "start_seconds": ["60", "400"], "properties": ["man, woman, squawks", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a man speaks as a car is passing by"], "sample_ids": ["y2bVZ7rz-5M", "sK4u5T8hW78"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "a, car, pass"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "birds chirp and objects are moved around"], "sample_ids": ["uoGVs9yUqY4", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["multiple, vocalize, wind", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["children speak as a female ask them questions", "a telephone rings followed by a woman talking"], "sample_ids": ["wEBlkGWVWwE", "tGcFnX0GHI"], "start_seconds": ["260", "0"], "properties": ["female, speak, questions", "ring, talk, woman"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "pigeons vocalize and birds chirp"], "sample_ids": ["vzceMbklWc", "uiS58TNyUiw"], "start_seconds": ["180", "430"], "properties": ["water, faucet, sink", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["paper folding and crinkling", "a frog vocalizes as birds chirp"], "sample_ids": ["zPpG3RD8lSs", "wqUmIEzuNz4"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "frog, bird, vocalize"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "a frog sitting in the grass on a sunny day"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a cat meows and rustles"], "question": "which entity is not a frog?", "label": 0}, {"captions": ["a dark barks and whimpers", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sYj4hpDUZDQ", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "multiple, people, yell"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "a car accelerates and wind blows"], "sample_ids": ["yDoT73BWsdA", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["engine revs, tires squeal, vehicle", "accelerates, wind, blows"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "wind blowing followed by a zoom"], "sample_ids": ["wRBHTgrbiwg", "vr8ZXjEBhMQ"], "start_seconds": ["50", "150"], "properties": ["birds, chirp, cooing", "wind, blow, zoom"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wSVhSdj0F0", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["horn honks, keys jingle, electronic beep", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a man speaks with another voice speaking in the background"], "sample_ids": ["wqZ135Ssz0", "u21-Z5gJCB8"], "start_seconds": ["60", "30"], "properties": ["man, woman, squawks", "background, voice, man"], "captions_pred_video": [null, "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking with another voice speaking in the background?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "water splashes and a door squeaks"], "sample_ids": ["xBxDz0CFVn0", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["wind, chatter, people", "sound, splash, door"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a dog barks and taps with background noise "], "question": "which entity is more quiet", "label": 0}, {"captions": ["long loud burping by a man", "a man speaks as a car is passing by"], "sample_ids": ["xmiUIOhtZyQ", "sK4u5T8hW78"], "start_seconds": ["60", "30"], "properties": ["loud, burp, man", "a, car, pass"], "captions_pred_video": ["homer simpson drinking a beer", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a car speeding up in the distance"], "sample_ids": ["wwyfGO2J4", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["people, applaud, hoot", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a propeller rotates loudly and intensely"], "sample_ids": ["zofjfKhqLk8", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["background, metal, clings", "loud, intense, propeller"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "water pouring and bubbling"], "sample_ids": ["yDoT73BWsdA", "uyRfq-jKPpo"], "start_seconds": ["10", "50"], "properties": ["engine revs, tires squeal, vehicle", "water, bubbles, pouring"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a stream of water runs briefly"], "sample_ids": ["tMbMDvT50j8", "x-PeY8Yb8M4"], "start_seconds": ["12", "300"], "properties": ["a, cry, woman", "stream, water, run"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby cries and a woman speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["s6DESzUTGjY", "tDVADusiIoc"], "start_seconds": ["16", "60"], "properties": ["wind, laugh, woman", "water, radio, man"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman laughing?", "label": 0}, {"captions": ["a horn honks and then loudly blares", "a duck quacks continuously"], "sample_ids": ["wnpJndXuxLc", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["horn, honk, loud", "quacks, continuously, duck"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["people speak in a closed space", "wind blows as people chatter quietly"], "sample_ids": ["sTpirNYo8vQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["people, space, speak", "wind, chatter, people"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking with wind noise in the background "], "question": "which entity is in a closed space", "label": 0}, {"captions": ["someone snores nearby", "a woman speaks as she rubs two objects together"], "sample_ids": ["spJCm8tD9Zo", "vzxHnu-SFEw"], "start_seconds": ["90", "80"], "properties": ["someone snores, nearby, someone", "two objects, woman, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "water rushes and then a vehicle zooms past"], "sample_ids": ["wRBHTgrbiwg", "s4Uz1Ffgo04"], "start_seconds": ["50", "100"], "properties": ["bird, owl, speak", "water, rushes, vehicle"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more active", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["zj2R0XoFr5k", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["airplane, boy, fly", "loud, multiple, distance"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "winds blows roughly as a vehicle races past"], "sample_ids": ["ylpYOorfH4o", "xjvTpk2Zpr8"], "start_seconds": ["410", "70"], "properties": ["engine, run, loud", "wind, blows, vehicle"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a child speaks in closed space", "a stream of water flows quickly"], "sample_ids": ["yW6FWLSLkx4", "wbHTKEJZyhc"], "start_seconds": ["40", "20"], "properties": ["child, space, speak", "stream, water, flow"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a waterfall is flowing and people are speaking "], "question": "which entity is moving", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wwyfGO2J4", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["people, applaud, hoot", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["a woman speaks with water running", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["wTideSjRFS0", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["water, running, woman", "background, birds, rustling"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "birds are chirping and a chime is ringing "], "question": "which entity has a bird in the background?", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "winds blows roughly as a vehicle races past"], "sample_ids": ["zgUgkpk78xU", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["horn, bell, train", "wind, blows, vehicle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a helicopter engine idles continuously", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["ugHJF0hfYkg", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["engine, idle, continuously", "applause, audience, yells"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and a crowd is clapping"], "question": "which entity is not a person?", "label": 0}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["xNMovAf3o50", "ziUT9IFTkjg"], "start_seconds": ["0", "10"], "properties": ["rain, thunder, music", "background, birds, rustling"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", null], "captions_pred_audio": ["thunder and rain with music playing in the background ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a church bell rings several times", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sUVVjE3Ucp8", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["ring, bell, several", "loud, laughter, intermittent"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a church bell is ringing ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind noise makes sound into a microphone", "a male speaks and another male speaks"], "sample_ids": ["w8uLijTqtlU", "viuTg1M-dqg"], "start_seconds": ["70", "30"], "properties": ["wind, microphone, noise", "two males, speaking, male"], "captions_pred_video": ["footage is blurry and shaky", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a recording", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wTjoRj1se3U", "uYT5gxnyMWM"], "start_seconds": ["390", "50"], "properties": ["engine, run, people", "a, scream, girl"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a jet engine is running and people are talking", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a vehicle engine accelerating then running on idle"], "sample_ids": ["xZepNM9qcRA", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "engine, accelerate, idle"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a car speeding up in the distance"], "sample_ids": ["sZvwOuuPGP0", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["engine, diesel, truck", "distance, car, speed"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", null], "captions_pred_audio": ["a medium engine is running ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["a vehicle accelerates squealing tires", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sd7xVssqlw", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["accelerates, tires, squealing", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["children cry and people talk", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xLwHe825Zs", "xBxDz0CFVn0"], "start_seconds": ["18", "30"], "properties": ["people talk, children cry, people talk", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing as people talk and wind blows?", "label": 1}, {"captions": ["a infant makes noise and is excited", "a man is filing a hard object"], "sample_ids": ["wIJK3-5y0kA", "vveS8HT7Uog"], "start_seconds": ["30", "100"], "properties": ["noise, excited, infant", "a man, hard, object"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is filing and speaking with background noise and breathing "], "question": "which object is harder to file", "label": 0}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a stream of water runs briefly"], "sample_ids": ["siJFXfGWgDk", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["man, woman, vehicle", "stream, water, run"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "paper is crumpling consistently"], "sample_ids": ["ylpYOorfH4o", "v5cSxLaHADY"], "start_seconds": ["410", "0"], "properties": ["engine, run, loud", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and an engine is revving", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a consistent ticking pattern"], "sample_ids": ["wtDqrBygTcU", "sCeWURVHfOM"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "ticking, pattern, clock"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["a man is speaking and a motor is running", "ticking of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "birds chirp and objects are moved around"], "sample_ids": ["tOj4tdLRaA", "yPUYU6t3rwo"], "start_seconds": ["70", "370"], "properties": ["woman, laugh, baby", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a baby laughs and a woman speaks", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a heavy rain falls endlessly"], "sample_ids": ["zliInBdC98Y", "wP8ZKrlx3oA"], "start_seconds": ["30", "40"], "properties": ["a, baby, cries, wails", "heavy, rain, fall"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a baby cries and a woman speaks", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["goats bleat and metal clings", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tH17JPjDPnc", "tdWhHV3X25Q"], "start_seconds": ["260", "60"], "properties": ["bleat, metal, clings", "applause, audience, yells"], "captions_pred_video": ["feed of the goats eating hay in the barn", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a clock ticks quietly and rhythmically"], "sample_ids": ["slZLHwNbbt4", "u7C-AEBQM"], "start_seconds": ["300", "30"], "properties": ["train, horn, sound", "ticks, rhythmic, quiet"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "a car accelerates and wind blows"], "sample_ids": ["vSeGhaZt-aI", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["water, bubbles, speak", "accelerates, wind, blows"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a infant makes noise and is excited", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wIJK3-5y0kA", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["noise, excited, infant", "music, gunfire, explosion"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby cries and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a child yells and another yells", "a man speaks as a car is passing by"], "sample_ids": ["vMDHu7Lxcgw", "sK4u5T8hW78"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "a, car, pass"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["an insect buzzes around continuously", "a toilet flushes and a female speaks"], "sample_ids": ["v25l1jef3JY", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["buzzes, continuously, insect", "female, flushes, toilet"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage is blurry and out of focus"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a toilet flushes and a man speaks"], "question": "which entity is not a person", "label": 0}, {"captions": ["an engine idles consistently before sputtering some", "some men converse over an engine running"], "sample_ids": ["rwTERCUno", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["engine, idle, sputter", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine is idling and vibrating", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaking with light rustling", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zOZleIRqZm4", "sLUnaPT5gM8"], "start_seconds": ["80", "0"], "properties": ["light, rustling, man", "loud, laughter, intermittent"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water quietly rushes by while birds chirp in the background", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["sYITalLZjj4", "wSVhSdj0F0"], "start_seconds": ["30", "10"], "properties": ["water, rushes, background, birds", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a car horn honks and keys jangle with background noise "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "water pouring and bubbling"], "sample_ids": ["yRx9txMcBl0", "uyRfq-jKPpo"], "start_seconds": ["40", "50"], "properties": ["accelerates, tires, squeals", "water, bubbles, pouring"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car is revving its engine and skidding ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "some tunes played by whistling"], "sample_ids": ["uC9dtII1KDI", "u6BnG6YZqJ4"], "start_seconds": ["150", "0"], "properties": ["wind, gusts, distance", "tune, play, whistling"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a person whistling a song"], "question": "which entity is not playing a tune?", "label": 0}, {"captions": ["a dog barks and whimpers", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sShpyu2l4YQ", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["barks, whimpers, dog", "background, frog, croak"], "captions_pred_video": ["the puppies are playing with a toy", "a close up of a frog in the water"], "captions_pred_audio": ["a dog is barking and growling", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "some men converse over an engine running"], "sample_ids": ["s6DESzUTGjY", "sCiy7QS1U"], "start_seconds": ["16", "300"], "properties": ["wind, laugh, woman", "men, converse, engine"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a woman laughing?", "label": 0}, {"captions": ["people speak in the background as a clock ticktocks", "pigeons vocalize and birds chirp"], "sample_ids": ["vZAw4apG0Es", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["background, clock, ticktocks", "vocalize, bird, chirp"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of the pigeon in the cage"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["uZesmtKZGSw", "y8dSeubCNI"], "start_seconds": ["250", "4"], "properties": ["car, track, man", "men, women, car"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "an engine revving and people talking in the background"], "question": "which entity has more people", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "dishes cling together then a man begins to speak"], "sample_ids": ["vKrYfzleLB8", "sQGXqGcwOTc"], "start_seconds": ["110", "3"], "properties": ["a, ring, gunshots", "cling, speak, dishes"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "paper folding and crinkling"], "sample_ids": ["wjsXBsc7M40", "zPpG3RD8lSs"], "start_seconds": ["10", "20"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "paper, fold, crinkle"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a baby laughs and a woman speaks", "the wind blows and a mouse clicks "], "question": "which entity is more likely to be a video", "label": 0}, {"captions": ["a man is filing a hard object", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vveS8HT7Uog", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "stream, water, flow"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "some men converse over an engine running"], "sample_ids": ["s59PfAghdkM", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["bird, chirp, background, horse, neigh", "men, converse, engine"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", null], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more likely to be found in a museum", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a woman speaks and other women and a man talk with her"], "sample_ids": ["v0x1odnXtP0", "vbpKkWvfOu4"], "start_seconds": ["210", "560"], "properties": ["keyboard, type, computer", "a, woman, man"], "captions_pred_video": ["how to make money on youtube in spanish", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking and a man is speaking"], "question": "which is a group of people", "label": 1}, {"captions": ["a child speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yW6FWLSLkx4", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["a, child, speaks", "three men, wind, flow"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "an emergency vehicle engine runs then a horn blows and siren sounds"], "sample_ids": ["shmR4OZtzqA", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["man, engine, idle", "engine, horn, siren"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man speaks while a motor runs", "a truck is honking its horn and a siren is blaring "], "question": "which vehicle has a horn and siren?", "label": 1}, {"captions": ["a small engine idles continuously", "dishes cling together then a man begins to speak"], "sample_ids": ["y5WII6cTH7k", "sQGXqGcwOTc"], "start_seconds": ["40", "3"], "properties": ["engine, idle, continuously", "cling, speak, dishes"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["an engine is knocking and vibrating ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "running water in a faucet with some clinks"], "sample_ids": ["yaln9y8I7ms", "zNRChLjqcU"], "start_seconds": ["230", "220"], "properties": ["female, flushes, toilet", "water, faucet, run"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "water is running from a faucet into a sink"], "question": "which entity is a faucet?", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a stream of water runs briefly"], "sample_ids": ["sDSppXIlJrs", "x-PeY8Yb8M4"], "start_seconds": ["27", "300"], "properties": ["microphone, water, wind", "stream, water, run"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an insect buzzes around continuously", "water is sprayed across a hard surface"], "sample_ids": ["v25l1jef3JY", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["buzzes, continuously, insect", "water, spray, surface"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vZAw4apG0Es", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["background, tick, repeat", "a woman, something, fried"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a person sniffs and sneezes"], "sample_ids": ["yaln9y8I7ms", "uRlbY6aoBU"], "start_seconds": ["230", "0"], "properties": ["female, flushes, toilet", "sneezes, person, sniffs"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is sneezing "], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water drains", "water pouring and bubbling"], "sample_ids": ["sfAvvZwdLCY", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["water drains, flushes, water", "water, bubbles, pouring"], "captions_pred_video": ["footage of the toilet in the bathroom", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a toilet is flushed", "water is running from a faucet"], "question": "which entity is a source of water", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "birds chirp and objects are moved around"], "sample_ids": ["yZmhM1HcsyE", "yPUYU6t3rwo"], "start_seconds": ["4", "370"], "properties": ["engine, roar, water", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks with water running", "an airplane engine runs"], "sample_ids": ["wTideSjRFS0", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["water, running, woman", "engine, airplane, runs"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "the clinking of a train bell with the humming of an engine and a train horn blowing"], "sample_ids": ["xyL9F5VrjkE", "zgUgkpk78xU"], "start_seconds": ["20", "70"], "properties": ["engine, run, wind", "clinking, humming, horn"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaks as horns blow", "water is sprayed across a hard surface"], "sample_ids": ["tHyNqRyK34A", "sQwlkXjQabo"], "start_seconds": ["24", "10"], "properties": ["a, man, speaks", "water, spray, surface"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["yRx9txMcBl0", "y2bVZ7rz-5M"], "start_seconds": ["40", "280"], "properties": ["accelerates, tires, squeals", "motor noise, horn, siren"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning device", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "people speak as gunfire rings out"], "sample_ids": ["xzKKf9bKNUo", "wqTCwqVRDlk"], "start_seconds": ["10", "80"], "properties": ["background, noise, snoring", "gunfire, ring, speak"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wP8ZKrlx3oA", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["rain, storm, thunder", "three men, wind, flow"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a weather event", "label": 0}, {"captions": ["a propeller rotates loudly and intensely", "a man speaks over intermittent keyboard taps"], "sample_ids": ["ugHJF0hfYkg", "tw76HGONaKg"], "start_seconds": ["10", "570"], "properties": ["loud, intense, propeller", "audio, man, keyboard"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man speaks and types on a computer keyboard "], "question": "which is quieter", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a consistent ticking pattern"], "sample_ids": ["sU53zg9Jp7s", "sCeWURVHfOM"], "start_seconds": ["380", "30"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "ticking, pattern, clock"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "ticking of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zkKdxzNC97Y", "zl9Dqx-j7q4"], "start_seconds": ["27", "6"], "properties": ["loud, bang, noise", "engine, laugh, loud"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a door is opened and closed", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["electronic beeps occur in a short series", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y682ml90jGw", "xKB8O8LTs6s"], "start_seconds": ["11", "70"], "properties": ["beeps, series, electronic", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a beeping sound is being made ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "wind blowing followed by a zoom"], "sample_ids": ["tw76HGONaKg", "vr8ZXjEBhMQ"], "start_seconds": ["570", "150"], "properties": ["A, game, keyboard", "wind, blow, zoom"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["two frogs croak at each other", "several insects fly while two men talk"], "sample_ids": ["zg0X6BnhOLQ", "s-T9OVOiMLo"], "start_seconds": ["410", "330"], "properties": ["two frogs, croak, at each other", "several, fly, men"], "captions_pred_video": ["footage of lightning in the sky at night", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a frog is croaking", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a duck quacks continuously"], "sample_ids": ["se87d6yxEOA", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "quacks, continuously, duck"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "roadway noise occurs and a truck accelerates"], "sample_ids": ["xyL9F5VrjkE", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["engine, run, wind", "noise, truck, accelerate"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a fire truck entering a garage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a car is driving on the road "], "question": "which truck is moving", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yPUYU6t3rwo", "tiDFTC-5vU"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "male, duck, laugh"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", null], "captions_pred_audio": ["insects buzz and a man speaks", "a man is speaking and ducks are quacking"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["a child speaks in closed space", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yW6FWLSLkx4", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["child, space, speak", "People, motor, brakes"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a closed space", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "a toilet flushes and water drains"], "sample_ids": ["uYT5gxnyMWM", "sfAvvZwdLCY"], "start_seconds": ["50", "20"], "properties": ["person, spray, yell", "water drains, flushes, water"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a man speaks as a motor runs in the background"], "sample_ids": ["zofjfKhqLk8", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "background, motor, run"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man speaks while a motorcycle revs and accelerates "], "question": "which motor is running in the background", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "some men converse over an engine running"], "sample_ids": ["vs65y4qmyBE", "sCiy7QS1U"], "start_seconds": ["340", "300"], "properties": ["engine, run, man", "men, converse, engine"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man speaking to an engine?", "label": 0}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "small dogs yip and bark sharply"], "sample_ids": ["tDVADusiIoc", "v-wcQf4BDY0"], "start_seconds": ["60", "120"], "properties": ["wind, radio, waves", "bark, yip, sharply"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["shmR4OZtzqA", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "a woman, a television program, a bird"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man speaks while a motor runs", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["some people speak", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vbZ-0lGPneg", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "airplane, boy, fly"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "some light rustling followed by a loud burp and a girl speaking"], "sample_ids": ["xZepNM9qcRA", "vdoxuJn9lTc"], "start_seconds": ["30", "40"], "properties": ["background, motor, run", "burp, loud, girl"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a child speaks followed by a burp"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a horn blasts as warning bells ring", "a woman speaks happily and an animal chirps"], "sample_ids": ["zgUgkpk78xU", "uWAAAL4CIoc"], "start_seconds": ["70", "0"], "properties": ["horn, bells, ring", "a woman, chirps, animal"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person speaks briefly", "wind blows as people chatter quietly"], "sample_ids": ["zOZleIRqZm4", "xBxDz0CFVn0"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "wind, chatter, people"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xKB8O8LTs6s", "tdWhHV3X25Q"], "start_seconds": ["70", "60"], "properties": ["music, radio, gunshots", "applause, audience, yells"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["yLy-WycbVVE", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["background, people, talk", "harsh, wind, blows"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["siJFXfGWgDk", "uiS58TNyUiw"], "start_seconds": ["50", "430"], "properties": ["man, woman, vehicle", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["water flows and trickles", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tB7hWb9gTuQ", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["water, flow, trickle", "applause, audience, yells"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["water is splashing and gurgling", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["white noise and birds chirping", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wRBHTgrbiwg", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["noise, white, chirping", "clickety-clack, train, whistle"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a train blows its whistle and blows its horn "], "question": "which noise is continuous", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a car accelerates and wind blows"], "sample_ids": ["sZPuqDgX2V0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["engine, accelerate, intercom", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which car accelerates", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "wind blows as people chatter quietly"], "sample_ids": ["tK4VlLsNxak", "xBxDz0CFVn0"], "start_seconds": ["120", "30"], "properties": ["a, dial, telephone", "wind, chatter, people"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["u21-Z5gJCB8", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "rooster, crow, background, men"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a person is whistling", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sIXTftIuUgw", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["person, whistling, person", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sQGXqGcwOTc", "ukg5L09Wpvo"], "start_seconds": ["3", "150"], "properties": ["audio, kid, giggles", "clickety-clack, train, whistle"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xO-Q2BlIIPU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["two men, exclamation, speak", "stream, water, flow"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a stream of water flowing as people talk and wind blows?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "someone whistles a tune"], "sample_ids": ["s3cTDAj31g", "sIXTftIuUgw"], "start_seconds": ["80", "90"], "properties": ["man, talk, woman", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "some tunes played by whistling"], "sample_ids": ["w5W5Kqtc8E", "u6BnG6YZqJ4"], "start_seconds": ["100", "0"], "properties": ["water, splashes, motorboat", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wP8ZKrlx3oA", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["heavy, rain, fall", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a train blows its whistle and blows its horn "], "question": "which entity is continuous", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "someone snores nearby"], "sample_ids": ["uEU-Hg5MTN8", "spJCm8tD9Zo"], "start_seconds": ["27", "90"], "properties": ["a woman, laughs, animal", "someone snores, nearby, someone"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["w8uLijTqtlU", "wqZ135Ssz0"], "start_seconds": ["70", "60"], "properties": ["wind, microphone, noise", "two men, woman, birds"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a man speaks as a car is passing by"], "sample_ids": ["x5cuQjOdM3E", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["cat, talk, meow", "a, car, pass"], "captions_pred_video": ["a black background with an airplane flying in the sky", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a male speaks and another male speaks", "an airplane engine spools and people speak"], "sample_ids": ["viuTg1M-dqg", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["two males, speaking, male", "airplane, engine, spool"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a motorcycle engine is revving while people are speaking", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y8dSeubCNI", "uEU-Hg5MTN8"], "start_seconds": ["4", "27"], "properties": ["engine revving, people speaking, motorcycle", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["goats bleat and people speak", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["z5iUE5h0EPs", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["goats bleat, people speak, language", "a woman, something, fried"], "captions_pred_video": ["of the goat in the barn", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a goat bleats and a man speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a toilet flushes and water drains", "water flows as men speak and yell"], "sample_ids": ["sfAvvZwdLCY", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["water drains, flushes, water", "water, flow, men"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water", "label": 1}, {"captions": ["paper is crumpling consistently", "plastic is tapped on while someone speaks"], "sample_ids": ["v5cSxLaHADY", "wvKpEYswXO0"], "start_seconds": ["0", "150"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "plastic, tap, speak"], "captions_pred_video": ["footage of the person holding a pair of scissors", "of the person preparing food in the kitchen"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is being tapped on", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["xSKJGCItUWE", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["engine, work, child", "animal, grunts, snorts"], "captions_pred_video": ["footage of the helicopter flying in the room", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["ylpYOorfH4o", "uZesmtKZGSw"], "start_seconds": ["410", "250"], "properties": ["engine, running, wind", "men, talk, cars"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a telephone rings followed by a woman talking"], "sample_ids": ["ul60S8TXDA8", "tGcFnX0GHI"], "start_seconds": ["60", "0"], "properties": ["sound, distance, bell", "ring, talk, woman"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", null], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["people speak and tapping occurs", "white noise and snoring with some rustling in the background"], "sample_ids": ["tFCUUGdREgA", "xzKKf9bKNUo"], "start_seconds": ["70", "10"], "properties": ["people, tap, speak", "background, noise, snoring"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a person snoring loudly"], "question": "which entity is more quiet", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "a clock ticktocks"], "sample_ids": ["ujMt0-D-x2k", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["snoring, rhythmical, nearby", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of the dog playing with a toy on the floor", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person is snoring loudly", "a clock is ticking loudly"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["vddP56-ogds", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["water, splash, person, laugh", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a train horn sounds as it passes by", "a pigeon cooing as an insect buzzes by briefly"], "sample_ids": ["ukg5L09Wpvo", "yZrFNS7GFBQ"], "start_seconds": ["150", "30"], "properties": ["sound, train, horn", "pigeon, buzzes, insect"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "of the bird in the cage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "an owl hoots in the background "], "question": "which entity is a bird?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a infant makes noise and is excited"], "sample_ids": ["vXlk0lIQBFo", "wIJK3-5y0kA"], "start_seconds": ["470", "30"], "properties": ["wind, speak, vocalize", "noise, excited, infant"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a man speaks as horns blow", "people cheer as a vehicle engine revs"], "sample_ids": ["tHyNqRyK34A", "xjhAnI2q6hM"], "start_seconds": ["24", "6"], "properties": ["a, man, speaks", "engine revs, vehicle, people"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["ukg5L09Wpvo", "yks4cLgIDMc"], "start_seconds": ["150", "170"], "properties": ["a train, a horn, a bell", "background, speaking, child"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["a door opens and birds chirp", "a man speaks as a motor runs in the background"], "sample_ids": ["yeFvk9x0wWI", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "background, motor, run"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["uZesmtKZGSw", "uYT5gxnyMWM"], "start_seconds": ["250", "50"], "properties": ["men, talk, cars", "a, scream, girl"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has more people", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a woman speaks as she rubs two objects together"], "sample_ids": ["yYEVLuqEytU", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["grunt, slurp, background", "two objects, woman, speak"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "people applaud and hoot and chat quietly"], "sample_ids": ["zVacuqSb4LI", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["blares, fades, train", "people, applaud, hoot"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", null], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a telephone rings followed by a woman talking"], "sample_ids": ["rwtmaKiCcQU", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["nozzle, depressed, spray can", "ring, talk, woman"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", null], "captions_pred_audio": ["spraying and people speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "people cheer as a vehicle engine revs"], "sample_ids": ["wRBHTgrbiwg", "xjhAnI2q6hM"], "start_seconds": ["50", "6"], "properties": ["bird, owl, speak", "engine revs, vehicle, people"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tDlysoZiA1I", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["animal, grunts, chirps", "engine, laugh, loud"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a small engine spits as it runs", "an infant crying as a woman laughs"], "sample_ids": ["sZvwOuuPGP0", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["spits, engine, runs", "a, laugh, infant"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a medium engine is running ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["paper folding and crinkling", "a man speaks followed by another man speaking outside"], "sample_ids": ["zPpG3RD8lSs", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "two men, speak, follow"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wyllXV6PjKo", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["a kid, talk, cry", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["someone is snoring while sleeping", "wind blowing followed by a zoom"], "sample_ids": ["ujMt0-D-x2k", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["snore, sleep, someone", "wind, blow, zoom"], "captions_pred_video": ["of the dog playing with a toy on the floor", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a person is snoring loudly", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a person", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "water flows as men speak and yell"], "sample_ids": ["vddP56-ogds", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["water, splash, person, laugh", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows water flowing?", "label": 1}, {"captions": ["water flows followed by women screaming", "a infant makes noise and is excited"], "sample_ids": ["w5W5Kqtc8E", "wIJK3-5y0kA"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a frog croaks as other frogs croak in the background"], "sample_ids": ["zuua6-5goWw", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["birds, chirp, quiet, man, speaks", "background, frog, croak"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a frog is croaking"], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "a man speaks as a car is passing by"], "sample_ids": ["vs65y4qmyBE", "sK4u5T8hW78"], "start_seconds": ["340", "30"], "properties": ["wind, blows, strongly", "a, car, pass"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "roadway noise occurs and a truck accelerates"], "sample_ids": ["xjhAnI2q6hM", "tgbONvsP47Y"], "start_seconds": ["6", "0"], "properties": ["engine revs, vehicle, people", "noise, truck, accelerate"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a car is driving on the road "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a girl speaks followed by a scream and more girls talking", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["uYT5gxnyMWM", "rwtmaKiCcQU"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "nozzle, depressed, spray can"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "spraying and people speaking"], "question": "which entity is about a spray can?", "label": 1}, {"captions": ["a drill runs and two people laugh", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tEE3MpBt1sg", "tiDFTC-5vU"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "male, duck, laugh"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking and ducks are quacking"], "question": "which entity has more people laughing", "label": 1}, {"captions": ["a motorcycle engine is idling", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vZAqdHZ81yA", "tDVADusiIoc"], "start_seconds": ["180", "60"], "properties": ["engine, motorcycle, idling", "water, radio, man"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vh30P49Po6s", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["loud, continuous, quacks", "engine, idle, woman"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a subway train is moving "], "question": "which entity is quieter", "label": 1}, {"captions": ["a weapon fires multiple times", "a vehicle engine revs and tires squeal"], "sample_ids": ["sMC07Ucy7kg", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["weapon, fire, multiple", "engine revs, tires squeal, vehicle"], "captions_pred_video": ["footage is from a car's point of view", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xKB8O8LTs6s", "yDoT73BWsdA"], "start_seconds": ["70", "10"], "properties": ["music, gunshots, explosion", "engine, revs, vehicle"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a car accelerates and wind blows"], "sample_ids": ["wPz6QRAkEb4", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["chirps, tweets, song", "accelerates, wind, blows"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak then an engine runs", "a toilet flushes and a female speaks"], "sample_ids": ["uMTTDZ2mb4", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["engine, run, people", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["x9JovgqUcs", "uZesmtKZGSw"], "start_seconds": ["500", "250"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a duck quacks continuously"], "sample_ids": ["xV7Mg1QucSc", "vh30P49Po6s"], "start_seconds": ["14", "30"], "properties": ["alarm, ticktocks, laughs", "quacks, continuously, duck"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["goats bleat and people speak", "water pouring and bubbling"], "sample_ids": ["z5iUE5h0EPs", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["goats bleat, people speak, language", "water, bubbles, pouring"], "captions_pred_video": ["of the goat in the barn", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a goat bleats and a man speaks", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "some tunes played by whistling"], "sample_ids": ["vSeGhaZt-aI", "u6BnG6YZqJ4"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, run", "tune, play, whistling"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "an infant crying frantically"], "sample_ids": ["xvDdE3zNf8Y", "zwOBqeFTgiU"], "start_seconds": ["120", "30"], "properties": ["A, crumple, paper", "cry, infant, frantically"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman speaks and crumples paper", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["someone snores nearby", "vehicles pass by on a roadway"], "sample_ids": ["spJCm8tD9Zo", "tgbONvsP47Y"], "start_seconds": ["90", "0"], "properties": ["someone snores, nearby, someone", "pass, vehicle, roadway"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person is snoring loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a baby cries and a woman moans", "a child speaks"], "sample_ids": ["smDKStoHBJo", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["a, cry, woman", "a, child, speaks"], "captions_pred_video": ["a man holding a crying baby in his arms", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child?", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zALy31PjDl0", "sLUnaPT5gM8"], "start_seconds": ["21", "0"], "properties": ["a man, a vehicle, a horn", "loud, laughter, intermittent"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a propeller rotates loudly and intensely"], "sample_ids": ["y2ZBGpgbhHM", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["birds, tweet, pant", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["birds chirping and a dog panting", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["wEBlkGWVWwE", "vzxHnu-SFEw"], "start_seconds": ["260", "80"], "properties": ["a, babble, woman", "two objects, woman, speak"], "captions_pred_video": ["shows a person writing on the whiteboard", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman speaks as she rubs two objects together?", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a child speaks"], "sample_ids": ["y2ZBGpgbhHM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["dog, chirp, breathe", "a, child, speaks"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water bubbles and gurgles.", "a car accelerates and wind blows"], "sample_ids": ["tB7hWb9gTuQ", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["bubbles, gurgles, water", "accelerates, wind, blows"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", null], "captions_pred_audio": ["water is splashing and gurgling", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "vehicles pass by on a roadway"], "sample_ids": ["w0xsN8X18Y", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["music, surface, rain", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "a car accelerates and wind blows"], "sample_ids": ["x4a9YGIw4ok", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["water, gurgles, stops", "accelerates, wind, blows"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and water splashes", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp and wind blows", "wind blows as people chatter quietly"], "sample_ids": ["sxIvBMSavMQ", "xBxDz0CFVn0"], "start_seconds": ["210", "30"], "properties": ["birds, chirp, wind", "wind, chatter, people"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["y2bVZ7rz-5M", "ukg5L09Wpvo"], "start_seconds": ["280", "150"], "properties": ["engine, horn, siren", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["sOa7g-44Dag", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["background, man, spray", "a, chirps, bird"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking and bees are buzzing"], "question": "which entity has a bird chirp?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vZAw4apG0Es", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["background, clock, ticktocks", "a woman, something, fried"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman is speaking while food is frying in the background"], "question": "which entity has a clock ticktocking in the background?", "label": 0}, {"captions": ["an adult woman and an adult man speak", "a small engine spits as it runs"], "sample_ids": ["zTLVJCo4WEE", "sZvwOuuPGP0"], "start_seconds": ["30", "50"], "properties": ["two people, adult, speak", "spits, engine, runs"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a medium engine is running "], "question": "which entity is not a person", "label": 1}, {"captions": ["an insect buzzes around continuously", "a vehicle engine accelerating then running on idle"], "sample_ids": ["v25l1jef3JY", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "engine, accelerate, idle"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a male speaks over some small clicks", "paper is crumpling consistently"], "sample_ids": ["uXxVebHsGZ8", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["male, clicks, speak", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xKB8O8LTs6s", "tDVADusiIoc"], "start_seconds": ["70", "60"], "properties": ["music, gunfire, explosion", "water, radio, man"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "water flows and trickles"], "sample_ids": ["yZp6xizR0yU", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "water, flow, trickle"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a man speaking with light rustling"], "sample_ids": ["wztCSUxOf8", "zOZleIRqZm4"], "start_seconds": ["130", "80"], "properties": ["a crowd, yells, applauds", "light, rustling, man"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking with crickets chirping in the background"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "water flows as men speak and yell"], "sample_ids": ["yRx9txMcBl0", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["accelerates, tires, squeals", "water, flow, men"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a vehicle?", "label": 0}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wSVhSdj0F0", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["horn honks, keys jingle, slam", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a duck quacks and a woman speaks"], "question": "which entity is more likely to be heard in a car", "label": 0}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "some men converse over an engine running"], "sample_ids": ["y2bVZ7rz-5M", "sCiy7QS1U"], "start_seconds": ["280", "300"], "properties": ["motor noise, horn, siren", "men, converse, engine"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation between men?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks as a car is passing by"], "sample_ids": ["sfAvvZwdLCY", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "a, car, pass"], "captions_pred_video": ["footage of the toilet in the bathroom", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["ukxt9I7eMMg", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["continuous, woman, speaking", "loud, jet engine, roar"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "someone whistles a tune"], "sample_ids": ["zkKdxzNC97Y", "sIXTftIuUgw"], "start_seconds": ["27", "90"], "properties": ["loud, bang, noise", "someone, tune, whistle"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a person whistling a song"], "question": "which entity is softer", "label": 1}, {"captions": ["a dog barks and whimpers", "vehicles pass by on a roadway"], "sample_ids": ["sShpyu2l4YQ", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["barks, whimpers, dog", "pass, vehicle, roadway"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a dog is barking and growling", "a car is driving on the road "], "question": "which entity is more passive", "label": 1}, {"captions": ["someone snores nearby", "some tunes played by whistling"], "sample_ids": ["spJCm8tD9Zo", "u6BnG6YZqJ4"], "start_seconds": ["90", "0"], "properties": ["someone snores, nearby, someone", "tune, play, whistling"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person is snoring loudly", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "paper is crumpling consistently"], "sample_ids": ["vSeGhaZt-aI", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, speak", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "an insect buzzes around continuously"], "sample_ids": ["wRV8yMk886E", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["liquid, spray, nozzle", "buzzes, continuously, insect"], "captions_pred_video": ["two cars are parked in a parking lot at night", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["an insect buzzes around continuously", "a person sniffles and then sneezes in the distance"], "sample_ids": ["v25l1jef3JY", "uRlbY6aoBU"], "start_seconds": ["0", "0"], "properties": ["buzzes, continuously, insect", "a, distance, sneeze"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is sneezing "], "question": "which entity is not a person?", "label": 0}, {"captions": ["rain falls on a surface as men speak and music plays", "an adult male speaks and dials a rotary phone"], "sample_ids": ["w0xsN8X18Y", "tK4VlLsNxak"], "start_seconds": ["30", "120"], "properties": ["music, surface, rain", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": [null, "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking and using a sewing machine"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["small dogs yip and bark sharply", "vehicles pass by on a roadway"], "sample_ids": ["v-wcQf4BDY0", "tgbONvsP47Y"], "start_seconds": ["120", "0"], "properties": ["bark, yip, sharply", "pass, vehicle, roadway"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a dog barks and growls", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a male speaks and another male speaks", "a car accelerates and wind blows"], "sample_ids": ["viuTg1M-dqg", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["two males, speaking, male", "accelerates, wind, blows"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "wind blows as people chatter quietly"], "sample_ids": ["vimzuGQvdcU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "wind, chatter, people"], "captions_pred_video": ["a group of people are rafting down a river", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "an infant crying frantically"], "sample_ids": ["wz7N8YRy74I", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "cry, infant, frantically"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a toilet flushes and water drains", "someone is typing on a computer keyboard"], "sample_ids": ["sfAvvZwdLCY", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["water drains, flushes, water", "keyboard, type, computer"], "captions_pred_video": ["footage of the toilet in the bathroom", "how to make money on youtube in spanish"], "captions_pred_audio": ["a toilet is flushed", "a person is typing on a keyboard"], "question": "which object is used to type on a computer", "label": 1}, {"captions": ["a man speaks uses a drill", "a duck quacks loudly and continuously"], "sample_ids": ["x5eIC7S0fbg", "vh30P49Po6s"], "start_seconds": ["60", "30"], "properties": ["A man is speaking, uses a drill, and is a tool", "loud, continuous, quacks"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a duck is quacking loudly"], "question": "which entity is a tool", "label": 0}, {"captions": ["a small engine idles continuously", "winds blows roughly as a vehicle races past"], "sample_ids": ["y5WII6cTH7k", "xjvTpk2Zpr8"], "start_seconds": ["40", "70"], "properties": ["engine, idle, continuously", "wind, blows, vehicle"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zuua6-5goWw", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["birds, chirp, quiet, man, speaks", "a woman, something, fried"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a person screams glaringly", "a goat bleats as a person speaks"], "sample_ids": ["xC8kbrKJmco", "tPJvjq9QePY"], "start_seconds": ["0", "40"], "properties": ["glaringly, screams, person", "bleats, person, speak"], "captions_pred_video": [null, "a dog and a sheep in a barn"], "captions_pred_audio": ["a goat is bleating ", "a baby cries and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "some tunes played by whistling"], "sample_ids": ["u7C-AEBQM", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["ticks, rhythmic, quiet", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a ticktock of a clock", "a person whistling a song"], "question": "which entity is not playing a tune?", "label": 0}, {"captions": ["a door opens and birds chirp", "winds blows roughly as a vehicle races past"], "sample_ids": ["yeFvk9x0wWI", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["door, open, birds", "wind, blows, vehicle"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a man is filing a hard object", "a stream of water runs briefly"], "sample_ids": ["vveS8HT7Uog", "x-PeY8Yb8M4"], "start_seconds": ["100", "300"], "properties": ["a man, hard, object", "stream, water, run"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a car is driving on a wet road "], "question": "which entity is not a stream of water?", "label": 0}, {"captions": ["a fly buzzes around loudly as birds chirp", "a kid speaks followed by music playing"], "sample_ids": ["uJV8NDaHqqk", "tQWGZLItBXk"], "start_seconds": ["100", "170"], "properties": ["loud, fly, chirp", "music, kid, speak"], "captions_pred_video": ["a bee hive in a wooden box", "worms revolution screenshots"], "captions_pred_audio": ["a swarm of bees buzzing around", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity is quieter", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "small dogs yip and bark sharply"], "sample_ids": ["u7C-AEBQM", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["ticks, rhythmic, quiet", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a ticktock of a clock", "a dog barks and growls"], "question": "which entity is louder", "label": 1}, {"captions": ["long loud burping by a man", "a clock ticktocks"], "sample_ids": ["xmiUIOhtZyQ", "v-g-j2uTByM"], "start_seconds": ["60", "30"], "properties": ["loud, burp, man", "ticktocks, clock, ticktocks"], "captions_pred_video": ["homer simpson drinking a beer", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person burps and music plays in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a duck quacks continuously"], "sample_ids": ["xyL9F5VrjkE", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["wind, motor, distance", "quacks, continuously, duck"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "small dogs yip and bark sharply"], "sample_ids": ["vddP56-ogds", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["water, flow, laugh", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "some men converse over an engine running"], "sample_ids": ["vimzuGQvdcU", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["a, man, yells", "men, converse, engine"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zFjIWfSD-4", "su6FAOcOA8c"], "start_seconds": ["410", "4"], "properties": ["People, motor, brakes", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wsHBIgzs9Fs", "tdWhHV3X25Q"], "start_seconds": ["50", "60"], "properties": ["horn, continuous, buzzing", "applause, audience, yells"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking and a crowd is clapping"], "question": "which entity is a response to a performance", "label": 1}, {"captions": ["a weapon fires multiple times", "vehicles pass by on a roadway"], "sample_ids": ["sMC07Ucy7kg", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["weapon, fire, multiple", "pass, vehicle, roadway"], "captions_pred_video": ["footage is from a car's point of view", "footage of a fire truck entering a garage"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a car is driving on the road "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a child speaks in closed space"], "sample_ids": ["ylpYOorfH4o", "yW6FWLSLkx4"], "start_seconds": ["410", "40"], "properties": ["engine, run, loud", "child, space, speak"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tOj4tdLRaA", "tdWhHV3X25Q"], "start_seconds": ["70", "60"], "properties": ["woman, laugh, baby", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sAam2NqGhLY", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "engine, accelerate, idle"], "captions_pred_video": ["of a little girl sleeping on a couch", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a person is snoring", "an engine is idling"], "question": "which entity is not a person", "label": 1}, {"captions": ["a man speaks as crickets sing", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["ryFDPxgDOGc", "vbZ-0lGPneg"], "start_seconds": ["570", "30"], "properties": ["a, crickets, sing", "a woman, a television program, a bird"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a dog is whimpering"], "question": "which entity has a man speaking as crickets sing?", "label": 0}, {"captions": ["a muffled toilet flushes and the water drains", "race cars go around a track as a man commentates"], "sample_ids": ["sfAvvZwdLCY", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["flushes, drains, water", "car, track, man"], "captions_pred_video": ["footage of the toilet in the bathroom", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "an animal growls followed by birds chirping"], "sample_ids": ["tOj4tdLRaA", "y2ZBGpgbhHM"], "start_seconds": ["70", "30"], "properties": ["woman, laugh, baby", "animal, growl, bird"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "birds chirping and a dog panting"], "question": "which entity is more likely to be a solitary event", "label": 1}, {"captions": ["a woman talking as an infant is crying", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tMbMDvT50j8", "zFjIWfSD-4"], "start_seconds": ["12", "410"], "properties": ["a, talk, infant", "People, motor, brakes"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a woman talking to an infant?", "label": 0}, {"captions": ["an insect buzzes around continuously", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["v25l1jef3JY", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["buzzes, continuously, insect", "People, motor, brakes"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is not a person?", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uPDn2BFTHk", "uYT5gxnyMWM"], "start_seconds": ["140", "50"], "properties": ["lady, laugh, baby", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "pigeons vocalize and birds chirp"], "sample_ids": ["xzKKf9bKNUo", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["background, noise, snoring", "vocalize, bird, chirp"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "of the pigeon in the cage"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["ticking continues without interruption", "people speak as gunfire rings out"], "sample_ids": ["v-g-j2uTByM", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["ticking, continuous, clock", "gunfire, ring, speak"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be interrupted", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a car speeding up in the distance"], "sample_ids": ["sEprKHm8Sj8", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["car, tires, slows", "distance, car, speed"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which car is speeding up in the distance", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "water flows as men speak and yell"], "sample_ids": ["zkKdxzNC97Y", "vJ7JPEFhyLA"], "start_seconds": ["27", "16"], "properties": ["loud, bang, noise", "water, flow, men"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and yelling?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "water flows and trickles"], "sample_ids": ["vh30P49Po6s", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "water, flow, trickle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a duck is quacking loudly", "water is splashing and gurgling"], "question": "which entity is quieter", "label": 1}, {"captions": ["a dog barks and whimpers", "a woman speaks happily and an animal chirps"], "sample_ids": ["sShpyu2l4YQ", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["barks, whimpers, dog", "a woman, chirps, animal"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a dog is barking "], "question": "which entity is a bird?", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["uiS58TNyUiw", "wqZ135Ssz0"], "start_seconds": ["430", "60"], "properties": ["vocalize, bird, chirp", "two men, woman, birds"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a video of birds?", "label": 0}, {"captions": ["someone is snoring while sleeping", "pigeons vocalize and birds chirp"], "sample_ids": ["ujMt0-D-x2k", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["snore, sleep, someone", "vocalize, bird, chirp"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of the pigeon in the cage"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a horn honks and then loudly blares", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wnpJndXuxLc", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["horn, honk, loud", "three men, wind, flow"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["water splashes and a door squeaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sdXV-ylviw", "zFjIWfSD-4"], "start_seconds": ["190", "410"], "properties": ["sound, splash, door", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a door that squeaks?", "label": 0}, {"captions": ["a telephone rings followed by a woman talking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tGcFnX0GHI", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["ring, talk, woman", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people talking", "label": 1}, {"captions": ["bees buzz as wind blows", "a man speaks as a car is passing by"], "sample_ids": ["tMJne1a4AFI", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["bees, buzz, wind", "a, car, pass"], "captions_pred_video": ["a swarm of bees on the ground", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "water flows as men speak and yell"], "sample_ids": ["vms5XGTDVQc", "vJ7JPEFhyLA"], "start_seconds": ["220", "16"], "properties": ["paper, crumpled, crinkled", "water, flow, men"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a moving object", "label": 1}, {"captions": ["dogs barking and whimpering", "a man speaks as a car is passing by"], "sample_ids": ["tIY7qOV3rEM", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "a, car, pass"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more passive", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sOa7g-44Dag", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["audio, scratching, man", "male, duck, laugh"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["zuua6-5goWw", "x6ijhqRY38s"], "start_seconds": ["30", "250"], "properties": ["birds, chirp, quiet, man, speaks", "something metal, glass, hit"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking and dishes are clanging "], "question": "which entity is about a man talking?", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a woman speaks in a fast tone with a male"], "sample_ids": ["vKrYfzleLB8", "sTpirNYo8vQ"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "a, tone, fast"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man is speaking while a car is revving and accelerating "], "question": "which entity has a man yell?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "a stream of water runs briefly"], "sample_ids": ["zY3icUyMdh8", "x-PeY8Yb8M4"], "start_seconds": ["20", "300"], "properties": ["dog, bark, engine", "stream, water, run"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a female speaks softly as paper crinkles"], "sample_ids": ["xjhAnI2q6hM", "xvDdE3zNf8Y"], "start_seconds": ["6", "120"], "properties": ["engine revs, vehicle, people", "a, female, speaks"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman speaks and crumples paper"], "question": "which entity is a person", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "birds chirp and objects are moved around"], "sample_ids": ["t8CV69hcvF0", "yPUYU6t3rwo"], "start_seconds": ["210", "370"], "properties": ["person, sneeze, follow", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman sneezes and speaks", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["an engine runs loudly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vqZuVbG6-HI", "yajyRTUQk3U"], "start_seconds": ["130", "400"], "properties": ["loud, engine, run", "a woman, something, fried"], "captions_pred_video": ["footage is blurry because it's raining outside", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "pigeons vocalize and birds chirp"], "sample_ids": ["s59PfAghdkM", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["bird, chirp, background, horse, neigh", "vocalize, bird, chirp"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "of the pigeon in the cage"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yFB25fqfU8I", "yajyRTUQk3U"], "start_seconds": ["300", "400"], "properties": ["wave, crash, shoreline", "a woman, something, fried"], "captions_pred_video": ["footage of a person surfing in the ocean", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "several insects fly while two men talk"], "sample_ids": ["vzxHnu-SFEw", "s-T9OVOiMLo"], "start_seconds": ["80", "330"], "properties": ["two objects, woman, speak", "several, fly, men"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a woman speaking as she rubs two objects together?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "birds coo incessantly"], "sample_ids": ["zY3icUyMdh8", "yZrFNS7GFBQ"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "coo, bird, incessant"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of the bird in the cage"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "an owl hoots in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a dark barks and whimpers", "water is sprayed across a hard surface"], "sample_ids": ["sYj4hpDUZDQ", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["barks, whimpers, dark", "water, spray, surface"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a dog barks and a cat meows", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["food is frying and sizzles", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zNRChLjqcU", "w5W5Kqtc8E"], "start_seconds": ["220", "100"], "properties": ["food is frying, sizzles, food", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a duck quacks loudly and continuously", "a woman speaks happily and an animal chirps"], "sample_ids": ["vh30P49Po6s", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["loud, continuous, quacks", "a woman, chirps, animal"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a dog is barking "], "question": "which entity is quieter", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yswmmRZFItk", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["background, frog, croak", "a woman, something, fried"], "captions_pred_video": ["a close up of a frog in the water", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a frog is croaking", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sU53zg9Jp7s", "uEU-Hg5MTN8"], "start_seconds": ["380", "27"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a woman, laughs, animal"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and laughing?", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["s59PfAghdkM", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["bird, chirp, background, horse, neigh", "airplane, boy, fly"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "frogs croak and vocalize"], "sample_ids": ["vb1fPSDI4c", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["multiple, people, yell", "croak, vocalize, frog"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vlS6YMeWAPo", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["sheep, baa, birds", "loud, multiple, distance"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a woman speaks happily and an animal chirps"], "sample_ids": ["ugHJF0hfYkg", "uWAAAL4CIoc"], "start_seconds": ["10", "0"], "properties": ["loud, intense, propeller", "a woman, chirps, animal"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a dog is barking "], "question": "which entity is quieter", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a man speaks as a car is passing by"], "sample_ids": ["zTLVJCo4WEE", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "a, car, pass"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vfYTJq7nU", "w34HjHr6gAY"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a beep sounds followed by a child speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "wind blowing followed by a zoom"], "sample_ids": ["y2bVZ7rz-5M", "vr8ZXjEBhMQ"], "start_seconds": ["280", "150"], "properties": ["engine, horn, siren", "wind, blow, zoom"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "people applaud and hoot and chat quietly"], "sample_ids": ["uiS58TNyUiw", "wwyfGO2J4"], "start_seconds": ["430", "90"], "properties": ["audio, man, speaking", "people, applaud, hoot"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a man speaks then blows a vehicle horn as wind blows"], "sample_ids": ["zofjfKhqLk8", "zALy31PjDl0"], "start_seconds": ["10", "21"], "properties": ["background, metal, clank", "a man, a vehicle, a horn"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a motorcycle is parked on the side of a brick walkway"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a car horn is honking"], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["uYT5gxnyMWM", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["female, spraying, scream", "a, scream, girl"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a baby is crying"], "question": "which entity has a scream", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "some tunes played by whistling"], "sample_ids": ["rwtmaKiCcQU", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["nozzle, depressed, spray can", "tune, play, whistling"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["spraying and people speaking", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["rwtmaKiCcQU", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["nozzle, depressed, spray can", "wind, blow, vehicle"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", null], "captions_pred_audio": ["spraying and people speaking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["several insects fly while two men talk", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["s-T9OVOiMLo", "xKB8O8LTs6s"], "start_seconds": ["330", "70"], "properties": ["several, fly, men", "music, gunfire, explosion"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["su6FAOcOA8c", "zj2R0XoFr5k"], "start_seconds": ["4", "50"], "properties": ["engine, idle, woman", "airplane, boy, fly"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a machine beeps continuously", "a clock ticktocks"], "sample_ids": ["y682ml90jGw", "v-g-j2uTByM"], "start_seconds": ["11", "30"], "properties": ["beeps, machine, continuously", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a beeping sound is being made ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["water splashes as an animal walks through", "a toilet flushes and a female speaks"], "sample_ids": ["w1ir-sZ3Im8", "yaln9y8I7ms"], "start_seconds": ["90", "230"], "properties": ["animal, water, splashes", "female, flushes, toilet"], "captions_pred_video": ["footage of a group of people riding horses through a river", "footage is blurry and out of focus"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a clock ticktocks briefly"], "sample_ids": ["wPz6QRAkEb4", "u7C-AEBQM"], "start_seconds": ["60", "30"], "properties": ["chirps, tweets, song", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "a ticktock of a clock"], "question": "which entity is silent", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vW4x7S1VfQc", "yajyRTUQk3U"], "start_seconds": ["150", "400"], "properties": ["clacking, oil, woman", "a woman, something, fried"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "- a woman cooking in the kitchen"], "captions_pred_audio": ["food sizzles in a frying pan", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "someone whistles a tune"], "sample_ids": ["vbpKkWvfOu4", "sIXTftIuUgw"], "start_seconds": ["560", "90"], "properties": ["a, man, speaks", "someone, tune, whistle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a stream of water runs briefly"], "sample_ids": ["sapQIQUhFc", "x-PeY8Yb8M4"], "start_seconds": ["280", "300"], "properties": ["water, stream, trickles", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a car is driving on a wet road "], "question": "which stream is running", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["siJFXfGWgDk", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["a, bird, vehicle", "airplane, boy, fly"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a bird flying by?", "label": 0}, {"captions": ["a motorcycle engine is idling", "water splashes as an animal walks through"], "sample_ids": ["vZAqdHZ81yA", "w1ir-sZ3Im8"], "start_seconds": ["180", "90"], "properties": ["engine, motorcycle, idling", "animal, water, splashes"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["an engine is idling loudly", "water splashes and gurgles as people speak"], "question": "which entity is not a vehicle", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["yRx9txMcBl0", "uWPRNLnpy7Y"], "start_seconds": ["40", "10"], "properties": ["motors, tires, screech", "accelerate, laugh, vehicle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "is taken from a car driving down the street"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["some clanking with distant murmuring", "someone whistles a tune"], "sample_ids": ["uMTTDZ2mb4", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["clanking, murmuring, distant", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["bees buzz as wind blows", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tMJne1a4AFI", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["bees, buzz, wind", "two men, woman, birds"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["people clap and speak in the distance", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["wwyfGO2J4", "wDVMhEdTiVw"], "start_seconds": ["90", "30"], "properties": ["clap, distance, speak", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["water splashes as an animal walks through", "a man speaks as water trickles down a stream"], "sample_ids": ["w1ir-sZ3Im8", "sapQIQUhFc"], "start_seconds": ["90", "280"], "properties": ["animal, water, splashes", "water, stream, trickles"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a man is speaking and a stream is flowing in the background "], "question": "which entity is a stream?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "paper is crumpling consistently"], "sample_ids": ["zk-xJGQU8-4", "v5cSxLaHADY"], "start_seconds": ["130", "0"], "properties": ["food, man, woman", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a woman sneezes then speaks"], "sample_ids": ["zj2R0XoFr5k", "x4dZyf9Gbj0"], "start_seconds": ["50", "130"], "properties": ["airplane, boy, fly", "sneezes, speaks, woman"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman sneezes and speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["xV7Mg1QucSc", "xfaoyyzw2WU"], "start_seconds": ["14", "180"], "properties": ["alarm, ticktocks, laughs", "loud, jet engine, roar"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tDVADusiIoc", "vYkA3cfXp5Q"], "start_seconds": ["60", "30"], "properties": ["wind, radio, waves", "engine, accelerate, idle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "vehicles pass by on a roadway"], "sample_ids": ["zgUgkpk78xU", "tgbONvsP47Y"], "start_seconds": ["70", "0"], "properties": ["clinking, humming, horn", "pass, vehicle, roadway"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "small dogs yip and bark sharply"], "sample_ids": ["sfAvvZwdLCY", "v-wcQf4BDY0"], "start_seconds": ["20", "120"], "properties": ["flushes, drains, water", "bark, yip, sharply"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a toilet is flushed", "a dog barks and growls"], "question": "which entity is louder", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a person speaks briefly"], "sample_ids": ["sWZzXuWYY", "zOZleIRqZm4"], "start_seconds": ["420", "80"], "properties": ["male, speech, banging", "person, talk, brief"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking with crickets chirping in the background"], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tw76HGONaKg", "zl9Dqx-j7q4"], "start_seconds": ["570", "6"], "properties": ["A, game, keyboard", "engine, laugh, loud"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a woman speaks with water running"], "sample_ids": ["vb1fPSDI4c", "wTideSjRFS0"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "water, running, woman"], "captions_pred_video": [null, "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a woman is speaking while water is running in the background"], "question": "which entity has more people speaking", "label": 0}, {"captions": ["multiple birds chirp and an animal grunts", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tDlysoZiA1I", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["animal, grunt, multiple", "airplane, boy, fly"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "an infant crying as a woman laughs"], "sample_ids": ["xSKJGCItUWE", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["engine, run, boy", "a, laugh, infant"], "captions_pred_video": ["footage of the helicopter flying in the room", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["vddP56-ogds", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["liquid, laughs, man", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["goats bleat and metal clings", "three men talk while wind blows and some liquid flows"], "sample_ids": ["tH17JPjDPnc", "vJ7JPEFhyLA"], "start_seconds": ["260", "16"], "properties": ["bleat, metal, clings", "three men, wind, flow"], "captions_pred_video": ["feed of the goats eating hay in the barn", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a liquid flowing?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["wSVhSdj0F0", "ziUT9IFTkjg"], "start_seconds": ["10", "10"], "properties": ["horn honks, keys jingle, slam", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "birds are chirping and a chime is ringing "], "question": "which entity is more natural", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a man is filing a hard object"], "sample_ids": ["tMbMDvT50j8", "vveS8HT7Uog"], "start_seconds": ["12", "100"], "properties": ["a, cry, woman", "a man, hard, object"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is filing and speaking with background noise and breathing "], "question": "which object is harder to file", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "vehicle engines race around a track as a man commentates"], "sample_ids": ["vzxHnu-SFEw", "sZPuqDgX2V0"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "commentator, race, track"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and a helicopter is flying overhead "], "question": "which is a video", "label": 1}, {"captions": ["some clanking with distant murmuring", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uMTTDZ2mb4", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["clanking, murmuring, distant", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["small dogs yip and bark sharply", "water is sprayed across a hard surface"], "sample_ids": ["v-wcQf4BDY0", "sQwlkXjQabo"], "start_seconds": ["120", "10"], "properties": ["bark, yip, sharply", "water, spray, surface"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a dog barks and growls", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a woman speaks and other women and a man talk with her"], "sample_ids": ["vveS8HT7Uog", "vbpKkWvfOu4"], "start_seconds": ["100", "560"], "properties": ["a man, objects, speak", "a, woman, man"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vcmWSmvti8", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["music, man, fire", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking with wind noise in the background "], "question": "which entity has a man speaking as music plays before artillery is fired?", "label": 0}, {"captions": ["loud clanking and banging with brief male speech", "a duck quacks continuously"], "sample_ids": ["sWZzXuWYY", "vh30P49Po6s"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a consistent ticking pattern", "an airplane engine spools and people speak"], "sample_ids": ["sCeWURVHfOM", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["ticking, pattern, clock", "airplane, engine, spool"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["ticking of a clock", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["an aircraft engine runs", "a horse runs while two women talk"], "sample_ids": ["yLCORCnd35Q", "sdvI1mHAsc"], "start_seconds": ["0", "20"], "properties": ["engine, aircraft, runs", "two women, horse, run"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", null], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "horses clip-clop and a woman speaks"], "question": "which entity is moving", "label": 1}, {"captions": ["a motorcycle engine is idling", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["vZAqdHZ81yA", "yks4cLgIDMc"], "start_seconds": ["180", "170"], "properties": ["engine, motorcycle, idling", "background, speaking, child"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "paper is crumpling consistently"], "sample_ids": ["zkKdxzNC97Y", "v5cSxLaHADY"], "start_seconds": ["27", "0"], "properties": ["hard, surface, door", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a door is opened and closed", "paper is crumpled and crinkled"], "question": "which object is crumpling", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "small dogs growl, bark and yip."], "sample_ids": ["zdYdyF9-m8U", "sShpyu2l4YQ"], "start_seconds": ["7", "0"], "properties": ["wind, crash, shoreline", "growl, bark, yip"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "the puppies are playing with a toy"], "captions_pred_audio": ["waves crash and wind blows ", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sEprKHm8Sj8", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["noise, loud, buzzing", "stream, water, flow"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage is blurry and out of focus"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is a source of noise", "label": 0}, {"captions": ["a man speaking with light rustling", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zOZleIRqZm4", "y8WEcpOlT3I"], "start_seconds": ["80", "40"], "properties": ["light, rustling, man", "harsh, wind, blows"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 0}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vfYTJq7nU", "tDVADusiIoc"], "start_seconds": ["130", "60"], "properties": ["rustling, ducks, quack", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a child speaks in closed space"], "sample_ids": ["vveS8HT7Uog", "yW6FWLSLkx4"], "start_seconds": ["100", "40"], "properties": ["a man, objects, speak", "child, space, speak"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an audience gives applause", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["x6iCUDmRpKQ", "wDVMhEdTiVw"], "start_seconds": ["38", "30"], "properties": ["applause, audience, give", "gun, shoot, water"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a group of people are clapping and cheering", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["zkKdxzNC97Y", "ziUT9IFTkjg"], "start_seconds": ["27", "10"], "properties": ["loud, bang, noise", "background, birds, rustling"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a clock ticktocks"], "sample_ids": ["ugHJF0hfYkg", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a helicopter is flying overhead ", "a clock is ticking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a stream of water flows as people talk and wind blows"], "sample_ids": ["spYNpeN7rPY", "xBxDz0CFVn0"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "stream, water, flow"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "water splashes as an animal walks through"], "sample_ids": ["tOj4tdLRaA", "w1ir-sZ3Im8"], "start_seconds": ["70", "90"], "properties": ["woman, laugh, baby", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby laughs and a woman speaks", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a cat meows as a young woman speaks"], "sample_ids": ["vSeGhaZt-aI", "x5cuQjOdM3E"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "cat, meows, young woman"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a cat meows and a woman speaks"], "question": "which entity is a cat?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a man speaks as a car is passing by"], "sample_ids": ["ylpYOorfH4o", "sK4u5T8hW78"], "start_seconds": ["410", "30"], "properties": ["engine, running, wind", "a, car, pass"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking over a running engine and blowing wind?", "label": 0}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "dishes cling together then a man begins to speak"], "sample_ids": ["vfYTJq7nU", "sQGXqGcwOTc"], "start_seconds": ["130", "3"], "properties": ["rustling, ducks, quack", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a duck quacks and a woman speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["food is frying then a woman speaks", "water pouring and bubbling"], "sample_ids": ["ukxt9I7eMMg", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["food, woman, speak", "water, bubbles, pouring"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["w5W5Kqtc8E", "uZesmtKZGSw"], "start_seconds": ["100", "250"], "properties": ["wind, blow, vehicle", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["un9VQlzgZM", "zj2R0XoFr5k"], "start_seconds": ["5", "50"], "properties": ["females, talk, laugh", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["xM4joTqDVp4", "w34HjHr6gAY"], "start_seconds": ["160", "30"], "properties": ["background, chirp, birds", "beeps, hit, woman"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "an engine runs loudly"], "sample_ids": ["sncRqQ67iJU", "vqZuVbG6-HI"], "start_seconds": ["460", "130"], "properties": ["loud, repeatedly, man", "loud, engine, run"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person is snoring", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["v7jJS8aAyA", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["wind, blows, loudly", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["vdoxuJn9lTc", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["person, burp, girl", "background, motor, run"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a child speaks followed by a burp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a church bell rings several times", "people applaud and hoot and chat quietly"], "sample_ids": ["sUVVjE3Ucp8", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["ring, bell, several", "people, applaud, hoot"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", null], "captions_pred_audio": ["a church bell is ringing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a stream of water flows quickly"], "sample_ids": ["tEE3MpBt1sg", "wbHTKEJZyhc"], "start_seconds": ["50", "20"], "properties": ["drill, something, laugh", "stream, water, flow"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a waterfall is flowing and people are speaking "], "question": "which entity is moving", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a man speaks as a car is passing by"], "sample_ids": ["vfYTJq7nU", "sK4u5T8hW78"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zj2R0XoFr5k", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["airplane, fly, overhead", "a woman, laughs, animal"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["a muffled toilet flushes and the water drains", "a horse runs while two women talk"], "sample_ids": ["sfAvvZwdLCY", "sdvI1mHAsc"], "start_seconds": ["20", "20"], "properties": ["flushes, drains, water", "two women, horse, run"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "horses clip-clop and a woman speaks"], "question": "which entity is a horse?", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a man speaks over intermittent keyboard taps"], "sample_ids": ["zuua6-5goWw", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["sound, pop, bird", "audio, man, keyboard"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "loud clanking and banging with brief male speech"], "sample_ids": ["tDlysoZiA1I", "sWZzXuWYY"], "start_seconds": ["0", "420"], "properties": ["animal, grunts, chirps", "male, speech, banging"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a sewing machine runs and a man speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "winds blows roughly as a vehicle races past"], "sample_ids": ["wyllXV6PjKo", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["a kid, talk, cry", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman speaks and a baby cries", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a power tool runs and touches a surface"], "sample_ids": ["vbZ-0lGPneg", "zfvPRf3chY"], "start_seconds": ["30", "290"], "properties": ["a woman, a television program, a bird", "power tool, run, touch"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking while a power tool is being used "], "question": "which entity is touching a surface", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "someone whistles a tune"], "sample_ids": ["xO-Q2BlIIPU", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["two men, exclamation, speak", "someone, tune, whistle"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a person sneezes followed by another person speaking"], "sample_ids": ["zTLVJCo4WEE", "t8CV69hcvF0"], "start_seconds": ["30", "210"], "properties": ["two people, adult, speak", "person, sneeze, follow"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman sneezes and speaks"], "question": "which entity shows two people speaking?", "label": 0}, {"captions": ["water splashes and a door squeaks", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["sdXV-ylviw", "wSVhSdj0F0"], "start_seconds": ["190", "10"], "properties": ["sound, splash, door", "horn honks, keys jingle, electronic beep"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a car horn honks and keys jangle with background noise "], "question": "which entity has a door?", "label": 0}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "vehicles pass by on a roadway"], "sample_ids": ["zALy31PjDl0", "tgbONvsP47Y"], "start_seconds": ["21", "0"], "properties": ["a man, a vehicle, a horn", "pass, vehicle, roadway"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a car is driving on the road "], "question": "which entity is about vehicles", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sapQIQUhFc", "xBxDz0CFVn0"], "start_seconds": ["280", "30"], "properties": ["water, trickles, flow", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity has more water flowing", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wSVhSdj0F0", "y2bVZ7rz-5M"], "start_seconds": ["10", "280"], "properties": ["horn honks, keys jingle, electronic beep", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honks twice and keys jingle", "label": 0}, {"captions": ["sirens ring and approach with humming of distant traffic", "a piece of wood is being placed down and sawed"], "sample_ids": ["xERFUeZONz8", "uiItxDsDMFI"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "wood, piece, saw"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["an emergency vehicle siren blares", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["rqu8iB22IY", "vbZ-0lGPneg"], "start_seconds": ["5", "30"], "properties": ["sound, repeats, laugh", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "people speak in the background as a clock ticktocks"], "sample_ids": ["ukxt9I7eMMg", "vZAw4apG0Es"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "background, clock, ticktocks"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a clock is ticking and people are talking"], "question": "which entity is a video of a person cooking?", "label": 0}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "vehicles pass by on a roadway"], "sample_ids": ["yI-KvObbDoY", "tgbONvsP47Y"], "start_seconds": ["260", "0"], "properties": ["sound, smack, wind", "pass, vehicle, roadway"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "footage of a fire truck entering a garage"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a clock ticktocks in wind", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yVumC9TGknc", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, wind", "a woman, a television program, a bird"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a series of beeps and chirps", "a woman is speaking and a dog is whimpering"], "question": "which entity is a clock?", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "race cars go around a track as a man commentates"], "sample_ids": ["x4a9YGIw4ok", "uZesmtKZGSw"], "start_seconds": ["120", "250"], "properties": ["water, gurgles, stops", "car, track, man"], "captions_pred_video": ["footage is blurry and out of focus", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a toilet flushes and water splashes", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a video of a race?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "someone whistles a tune"], "sample_ids": ["xERFUeZONz8", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["ring, approach, traffic", "someone, tune, whistle"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", null], "captions_pred_audio": ["an emergency vehicle siren blares", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "wind blows as people chatter quietly"], "sample_ids": ["tDlysoZiA1I", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, multiple", "wind, chatter, people"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["water running down a sink while a man is talking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vSeGhaZt-aI", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["water, sink, talk", "three men, wind, flow"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man talking?", "label": 0}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["vlJS7LN2XyM", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["background, clocks, ticking", "background, birds, rustling"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "birds are chirping and a chime is ringing "], "question": "which entity has a bird in the background?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a man speaks as a motor runs in the background"], "sample_ids": ["vJrjSeP17yE", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "background, motor, run"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person snoring loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 0}, {"captions": ["birds vocalize and chirp continuously", "a child speaks in closed space"], "sample_ids": ["w1mlz3Pe4fU", "yW6FWLSLkx4"], "start_seconds": ["300", "40"], "properties": ["vocalize, chirp, continuously", "child, space, speak"], "captions_pred_video": ["of a bird in a cage", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds are chirping and singing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xjvTpk2Zpr8", "vbZ-0lGPneg"], "start_seconds": ["70", "30"], "properties": ["engine, run, wind", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a television program?", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w2JXXIAdUdg", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["snoring, distance, person", "music, gunfire, explosion"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person snoring and a dog whimpering", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "water splashes as an animal walks through"], "sample_ids": ["s6DESzUTGjY", "w1ir-sZ3Im8"], "start_seconds": ["16", "90"], "properties": ["wind, laugh, woman", "animal, water, splashes"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a helicopter engine runs continuously"], "sample_ids": ["su6FAOcOA8c", "ugHJF0hfYkg"], "start_seconds": ["4", "10"], "properties": ["engine, run, woman", "engine, running, continuously"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a helicopter is flying overhead "], "question": "which entity has an engine running continuously", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["wTjoRj1se3U", "tw76HGONaKg"], "start_seconds": ["390", "570"], "properties": ["engine, run, people", "A, game, keyboard"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man speaks and types on a computer keyboard "], "question": "which entity is a video game?", "label": 1}, {"captions": ["a car speeding up in the distance", "a frog croaks as other frogs croak in the background"], "sample_ids": ["u0TrcHhkPQ", "yswmmRZFItk"], "start_seconds": ["20", "0"], "properties": ["distance, car, speed", "background, frog, croak"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "wind blowing followed by a zoom"], "sample_ids": ["vbZ-0lGPneg", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["a woman, a television program, a bird", "wind, blow, zoom"], "captions_pred_video": ["of a man holding a baby duck in his hands", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wztCSUxOf8", "vlS6YMeWAPo"], "start_seconds": ["130", "40"], "properties": ["a crowd, yells, applauds", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "an engine runs loudly"], "sample_ids": ["yZp6xizR0yU", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["animal, bleat, cry", "loud, engine, run"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["two frogs croak at each other", "a frog croaks as other frogs croak in the background"], "sample_ids": ["zg0X6BnhOLQ", "yswmmRZFItk"], "start_seconds": ["410", "0"], "properties": ["two frogs, croak, at each other", "background, frog, croak"], "captions_pred_video": ["footage of lightning in the sky at night", "a close up of a frog in the water"], "captions_pred_audio": ["a frog is croaking", "a frog is croaking"], "question": "which frog is croaking", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["x5cuQjOdM3E", "zY3icUyMdh8"], "start_seconds": ["30", "20"], "properties": ["cat, meows, young woman", "dog, bark, engine"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a cat meows and a woman speaks", "a car is driving and dogs are barking and squealing "], "question": "which entity is more calm", "label": 0}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "birds vocalize and chirp continuously"], "sample_ids": ["xKB8O8LTs6s", "w1mlz3Pe4fU"], "start_seconds": ["70", "300"], "properties": ["music, gunfire, explosion", "vocalize, chirp, continuously"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a bird in a cage"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "birds are chirping and singing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a train engine runs and a horn blows", "wind blowing and birds chirping with the distant cooing of a large bird"], "sample_ids": ["zPX9o1uDiI", "wRBHTgrbiwg"], "start_seconds": ["40", "50"], "properties": ["engine, horn, run", "birds, chirp, cooing"], "captions_pred_video": [null, "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "birds are chirping and insects are buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["rqfQRErjfk8", "vlS6YMeWAPo"], "start_seconds": ["170", "40"], "properties": ["crowd, cheers, applauds", "sheep, baa, birds"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["siJFXfGWgDk", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["man, woman, vehicle", "water, radio, man"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "water is sprayed across a hard surface"], "sample_ids": ["s7knHCFW82w", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["blow horn, get close, train", "water, spray, surface"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "spraying followed by silence"], "question": "which is a liquid", "label": 1}, {"captions": ["a dark barks and whimpers", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sYj4hpDUZDQ", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["barks, whimpers, dark", "loud, laughter, intermittent"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a dog barks and a cat meows", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a drill runs and two people laugh"], "sample_ids": ["vBHyYJ8pL0", "tEE3MpBt1sg"], "start_seconds": ["2", "50"], "properties": ["noise, door, opening", "two people, laugh, drill"], "captions_pred_video": [null, "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["an airplane engine runs", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yVPZ2MNWpms", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["engine, airplane, runs", "two men, woman, birds"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "paper is crumpling consistently"], "sample_ids": ["wyllXV6PjKo", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["a baby, a woman, a man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman speaks and a baby cries", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["two frogs croak at each other", "someone whistles a tune"], "sample_ids": ["zg0X6BnhOLQ", "sIXTftIuUgw"], "start_seconds": ["410", "90"], "properties": ["two frogs, croak, at each other", "someone, tune, whistle"], "captions_pred_video": ["footage of lightning in the sky at night", null], "captions_pred_audio": ["a frog is croaking", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a baby cries and a woman speaks", "water flows as men speak and yell"], "sample_ids": ["tMbMDvT50j8", "vJ7JPEFhyLA"], "start_seconds": ["12", "16"], "properties": ["a, cry, woman", "water, flow, men"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a baby crying and a woman speaking?", "label": 0}, {"captions": ["birds chirp and wind blows", "small dogs growl, bark and yip."], "sample_ids": ["sxIvBMSavMQ", "sShpyu2l4YQ"], "start_seconds": ["210", "0"], "properties": ["birds, chirp, wind", "growl, bark, yip"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "the puppies are playing with a toy"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "water is sprayed across a hard surface"], "sample_ids": ["sapQIQUhFc", "sQwlkXjQabo"], "start_seconds": ["280", "10"], "properties": ["water, trickles, flow", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "spraying followed by silence"], "question": "which entity is a spray of water?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "vehicles pass by on a roadway"], "sample_ids": ["ylpYOorfH4o", "tgbONvsP47Y"], "start_seconds": ["410", "0"], "properties": ["engine, running, wind", "pass, vehicle, roadway"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a stream of water runs briefly"], "sample_ids": ["wy1eKjR7KC0", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["people, talk, distance", "stream, water, run"], "captions_pred_video": ["two police officers riding motorcycles down the street", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a person snores loudly multiple times at a close distance"], "sample_ids": ["s4Uz1Ffgo04", "sSMl2vc3ek"], "start_seconds": ["100", "20"], "properties": ["roars, background, people speaking", "loud, multiple, distance"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a person snoring loudly"], "question": "which entity is louder", "label": 0}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "people speak as gunfire rings out"], "sample_ids": ["xKB8O8LTs6s", "wqTCwqVRDlk"], "start_seconds": ["70", "80"], "properties": ["music, radio, gunshots", "gunfire, ring, speak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and a gun is fired"], "question": "which entity has more gunshots", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "an infant crying as a woman laughs"], "sample_ids": ["uPDn2BFTHk", "xhmRY9yhC7c"], "start_seconds": ["140", "20"], "properties": ["lady, laugh, baby", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is a video of a baby cooing and fidgeting as a lady speaks and laughs?", "label": 0}, {"captions": ["people clap and speak in the distance", "a clock ticktocks"], "sample_ids": ["wwyfGO2J4", "v-g-j2uTByM"], "start_seconds": ["90", "30"], "properties": ["clap, distance, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["continuous snoring", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["sLkeqCDJIyw", "tDlysoZiA1I"], "start_seconds": ["120", "0"], "properties": ["loud, snoring, noise", "animal, grunts, chirps"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a person is snoring loudly", "birds are chirping and a rooster is crowing "], "question": "which entity is not a noise", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["rwtmaKiCcQU", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["nozzle, depressed, spray can", "a woman, something, fried"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "- a woman cooking in the kitchen"], "captions_pred_audio": ["spraying and people speaking", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "vehicles pass by on a roadway"], "sample_ids": ["uOpoD0gGXcs", "tgbONvsP47Y"], "start_seconds": ["120", "0"], "properties": ["chirps, woman, bird", "pass, vehicle, roadway"], "captions_pred_video": ["a herd of cows grazing in the field", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a duck quacks loudly and continuously"], "sample_ids": ["s6DESzUTGjY", "vh30P49Po6s"], "start_seconds": ["16", "30"], "properties": ["wind, laugh, woman", "loud, continuous, quacks"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a machine beeps continuously", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["y682ml90jGw", "wnpJndXuxLc"], "start_seconds": ["11", "50"], "properties": ["beeps, machine, continuously", "blows, vehicle, train"], "captions_pred_video": [null, "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a beeping sound is being made ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is not a machine?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "some tunes played by whistling"], "sample_ids": ["w5W5Kqtc8E", "u6BnG6YZqJ4"], "start_seconds": ["100", "0"], "properties": ["wind, blow, vehicle", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yajyRTUQk3U", "vJ7JPEFhyLA"], "start_seconds": ["400", "16"], "properties": ["noise, woman, speak", "three men, wind, flow"], "captions_pred_video": ["- a woman cooking in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uWAAAL4CIoc", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["a woman, chirps, animal", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a woman and man are speaking"], "sample_ids": ["xV7Mg1QucSc", "vbpKkWvfOu4"], "start_seconds": ["14", "560"], "properties": ["alarm, ticktocks, laughs", "two people, speaking, woman, man"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a woman is speaking and a man is speaking"], "question": "which entity has two people speaking?", "label": 1}, {"captions": ["multiple ducks quack continuously", "wind blows as people chatter quietly"], "sample_ids": ["wfHeoPDLMaM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "wind, chatter, people"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage is blurry and out of focus"], "captions_pred_audio": ["ducks are quacking", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "people applaud and hoot and chat quietly"], "sample_ids": ["sG7TyPnFDR0", "wwyfGO2J4"], "start_seconds": ["180", "90"], "properties": ["beeps, machine, smoke alarm", "people, applaud, hoot"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a car speeding up in the distance", "a machine beeps continuously"], "sample_ids": ["u0TrcHhkPQ", "y682ml90jGw"], "start_seconds": ["20", "11"], "properties": ["distance, car, speed", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a beeping sound is being made "], "question": "which entity is not silent", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yDoT73BWsdA", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["engine, revs, vehicle", "music, gunfire, explosion"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wSVhSdj0F0", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["beep, clang, footsteps", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["goats bleat and metal clings", "a girl talking, laughing and sneezing noise"], "sample_ids": ["tH17JPjDPnc", "y4tPJXBKDig"], "start_seconds": ["260", "20"], "properties": ["bleat, metal, clings", "a, noise, talk"], "captions_pred_video": ["feed of the goats eating hay in the barn", "footage of the woman wiping her nose with a tissue"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a woman is speaking and coughing with background noise and breathing "], "question": "which entity is talking", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a toilet flushes and a female speaks"], "sample_ids": ["uEU-Hg5MTN8", "yaln9y8I7ms"], "start_seconds": ["27", "230"], "properties": ["a woman, laughs, animal", "female, flushes, toilet"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "water flows as men speak and yell"], "sample_ids": ["v5P-ThUCINM", "vJ7JPEFhyLA"], "start_seconds": ["400", "16"], "properties": ["background, chirp, bird", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a more natural background", "label": 0}, {"captions": ["a fly buzzes around loudly as birds chirp", "a man speaks followed by another man speaking outside"], "sample_ids": ["uJV8NDaHqqk", "viuTg1M-dqg"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "two men, speak, follow"], "captions_pred_video": ["a bee hive in a wooden box", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a train horn blows as it passes by"], "sample_ids": ["vf9xf3vMsGM", "zVacuqSb4LI"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "horn, blows, train"], "captions_pred_video": ["of the person washing their hands under the faucet", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a stream of water runs briefly"], "sample_ids": ["zCrAfDfv6-A", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["person, mouse, click", "stream, water, run"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person whistles a song", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water runs into a sink while men speak", "a car accelerates and wind blows"], "sample_ids": ["vzceMbklWc", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["water, sink, run", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "small dogs yip and bark sharply"], "sample_ids": ["yZmhM1HcsyE", "v-wcQf4BDY0"], "start_seconds": ["4", "120"], "properties": ["engine, roar, water", "bark, yip, sharply"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["electronic beeps occur in a short series", "females talk and laugh over gusting wind"], "sample_ids": ["y682ml90jGw", "un9VQlzgZM"], "start_seconds": ["11", "5"], "properties": ["beeps, series, electronic", "females, talk, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is more natural", "label": 1}, {"captions": ["a man speaks as a machine runs", "small dogs yip and bark sharply"], "sample_ids": ["vD6lYD1l0BY", "v-wcQf4BDY0"], "start_seconds": ["330", "120"], "properties": ["a, machine, run", "bark, yip, sharply"], "captions_pred_video": ["game controller being held in the hands of the person", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a stream of water runs briefly"], "sample_ids": ["tZGN5a7ybxo", "x-PeY8Yb8M4"], "start_seconds": ["60", "300"], "properties": ["ring, train, horn", "stream, water, run"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uEU-Hg5MTN8", "uYT5gxnyMWM"], "start_seconds": ["27", "50"], "properties": ["animal, grunts, snorts", "female, spraying, scream"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a baby is crying"], "question": "which entity has a female speaking?", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uPDn2BFTHk", "zFjIWfSD-4"], "start_seconds": ["140", "410"], "properties": ["lady, laugh, baby", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "paper folding and crinkling"], "sample_ids": ["uOpoD0gGXcs", "zPpG3RD8lSs"], "start_seconds": ["120", "20"], "properties": ["chirps, woman, bird", "paper, fold, crinkle"], "captions_pred_video": ["a herd of cows grazing in the field", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["birds are chirping and a man is speaking", "the wind blows and a mouse clicks "], "question": "which entity is not a living thing", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["t8CV69hcvF0", "zFjIWfSD-4"], "start_seconds": ["210", "410"], "properties": ["person, sneeze, follow", "People, motor, brakes"], "captions_pred_video": ["of an airplane flying in the dark sky at night", null], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person speaking?", "label": 0}, {"captions": ["water rushes by", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["x-PeY8Yb8M4", "wqZ135Ssz0"], "start_seconds": ["300", "60"], "properties": ["water, rushes, by", "two men, woman, birds"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["ziUT9IFTkjg", "vVhthZ45k3Y"], "start_seconds": ["10", "30"], "properties": ["background, birds, rustling", "cat, purr, hiss"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking and a cat is meowing"], "question": "which entity is more animal", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a horn rings out as a machine runs by"], "sample_ids": ["yajyRTUQk3U", "slZLHwNbbt4"], "start_seconds": ["400", "300"], "properties": ["a woman, something, fried", "a, horn, run"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine?", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["vf44CgrjT0A", "sjlVMgdGSK0"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "accelerates, vehicle, race car"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a loud burp", "a car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "an airplane engine runs"], "sample_ids": ["wudZTNBtVqc", "yVPZ2MNWpms"], "start_seconds": ["60", "0"], "properties": ["accelerates, engine, wind", "engine, airplane, runs"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a car is driving by on the road "], "question": "which entity has a moving engine", "label": 1}, {"captions": ["birds vocalize and a man speaks", "water flows and trickles"], "sample_ids": ["v0wPrLBI3hg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["vocalize, bird, speak", "water, flow, trickle"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine runs and a man speaks", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yT5WfYMRr-U", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["engine, run, man", "engine, revs, vehicle"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is about a vehicle engine?", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "someone is typing on a computer keyboard"], "sample_ids": ["vlS6YMeWAPo", "v0x1odnXtP0"], "start_seconds": ["40", "210"], "properties": ["sheep, baa, birds", "keyboard, type, computer"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "how to make money on youtube in spanish"], "captions_pred_audio": ["a goat bleats and birds chirp", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a man speaks as a car is passing by"], "sample_ids": ["zofjfKhqLk8", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "a, car, pass"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["s3cTDAj31g", "zO-LSSY92ZM"], "start_seconds": ["80", "30"], "properties": ["man, talk, woman", "liquid, surface, sound"], "captions_pred_video": [null, "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["a man is speaking and a baby is crying", "steam is hissing and hissing"], "question": "which entity is silent", "label": 1}, {"captions": ["a door opens and birds chirp", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["yeFvk9x0wWI", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "gun, shoot, water"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause harm", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["wz7N8YRy74I", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["rooster, crow, background, people", "a woman, chirps, animal"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a woman is speaking and a dog is barking "], "question": "which entity has a rooster?", "label": 0}, {"captions": ["a person sniffles and then sneezes in the distance", "a child speaks in closed space"], "sample_ids": ["uRlbY6aoBU", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["a, distance, sneeze", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["zkKdxzNC97Y", "vddP56-ogds"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "liquid, laughs, man"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "water is running and gurgling and a man is speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zY3icUyMdh8", "xfaoyyzw2WU"], "start_seconds": ["20", "180"], "properties": ["dog, bark, engine", "loud, jet engine, roar"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a train horn blows as it passes by"], "sample_ids": ["zF8yoL0rkbI", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "horn, blows, train"], "captions_pred_video": ["footage of the traffic on the street at night", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["multiple ducks quack continuously", "a motor noise is accompanied by a door opening and closing"], "sample_ids": ["wfHeoPDLMaM", "vBHyYJ8pL0"], "start_seconds": ["30", "2"], "properties": ["multiple, quack, continuously", "noise, door, opening"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is accompanied by a door opening and closing?", "label": 1}, {"captions": ["people speak as gunfire rings out", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wqTCwqVRDlk", "tDlysoZiA1I"], "start_seconds": ["80", "0"], "properties": ["gunfire, ring, speak", "animal, grunts, chirps"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking and a gun is fired", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a boat travels through the waves as the wind blows loudly and a man speaks over a radio"], "sample_ids": ["vimzuGQvdcU", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["a, man, yells", "wind, radio, waves"], "captions_pred_video": ["a group of people are rafting down a river", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a boat traveling through the waves?", "label": 1}, {"captions": ["footsteps followed by a flushing toilet", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yXrw3GRMZag", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["sound, toilet, flush", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a toilet bowl with water in it", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["rustling followed by a toilet flushing", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a man speaking with light rustling"], "sample_ids": ["sa6TLVbooCc", "zOZleIRqZm4"], "start_seconds": ["240", "80"], "properties": ["people, laugh, child", "light, rustling, man"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking with crickets chirping in the background"], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vJrjSeP17yE", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "stream, water, flow"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage is blurry and out of focus"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["water pouring and bubbling", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uyRfq-jKPpo", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["water, bubbles, pouring", "music, gunfire, explosion"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["water is running from a faucet", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a woman speaks happily and an animal chirps"], "sample_ids": ["yajyRTUQk3U", "uWAAAL4CIoc"], "start_seconds": ["400", "0"], "properties": ["noise, woman, speak", "a woman, chirps, animal"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "people applaud and hoot and chat quietly"], "sample_ids": ["xzKKf9bKNUo", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["background, noise, snoring", "people, applaud, hoot"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", null], "captions_pred_audio": ["a person snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "vehicles pass by on a roadway"], "sample_ids": ["wRBHTgrbiwg", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["bird, owl, speak", "pass, vehicle, roadway"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a car is driving on the road "], "question": "which entity is more likely to be seen in a city", "label": 1}, {"captions": ["water rushes by", "paper is crumpling consistently"], "sample_ids": ["x-PeY8Yb8M4", "v5cSxLaHADY"], "start_seconds": ["300", "0"], "properties": ["water, rushes, by", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car is driving on a wet road ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a frog croaks as other frogs croak in the background"], "sample_ids": ["uOpoD0gGXcs", "yswmmRZFItk"], "start_seconds": ["120", "0"], "properties": ["chirps, woman, bird", "background, frog, croak"], "captions_pred_video": ["a herd of cows grazing in the field", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a woman speaks and then a man speaks"], "sample_ids": ["sYITalLZjj4", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["water, rushes, background, birds", "a, man, speaks"], "captions_pred_video": ["two ducks are swimming in the water near each other", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["wind blows and birds chirp", "a woman is speaking and a man is speaking"], "question": "which entity is a video of a woman speaking and then a man speaking?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["siJFXfGWgDk", "wnpJndXuxLc"], "start_seconds": ["50", "50"], "properties": ["a, bird, vehicle", "blows, vehicle, train"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity has a train blowing a horn?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["y8WEcpOlT3I", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["harsh, wind, blows", "sheep, baa, birds"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person is snoring while sleeping", "a man speaks as a motor runs in the background"], "sample_ids": ["vJrjSeP17yE", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "background, motor, run"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person snoring loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 0}, {"captions": ["water splashes and wind noise is made into a microphone", "a child speaks in closed space"], "sample_ids": ["sDSppXIlJrs", "yW6FWLSLkx4"], "start_seconds": ["27", "40"], "properties": ["microphone, water, wind", "child, space, speak"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "someone whistles a tune"], "sample_ids": ["yYEVLuqEytU", "sIXTftIuUgw"], "start_seconds": ["40", "90"], "properties": ["animal, pig, background", "someone, tune, whistle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", null], "captions_pred_audio": ["several sheep bleat and a man speaks", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks as a machine runs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vD6lYD1l0BY", "zl9Dqx-j7q4"], "start_seconds": ["330", "6"], "properties": ["a, machine, run", "engine, laugh, loud"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a car speeding up in the distance"], "sample_ids": ["y2ZBGpgbhHM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["dog, chirp, breathe", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "someone is typing on a computer keyboard"], "sample_ids": ["tjmoSi330GM", "v0x1odnXtP0"], "start_seconds": ["23", "210"], "properties": ["speed, water, boat", "keyboard, type, computer"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "how to make money on youtube in spanish"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a person is typing on a keyboard"], "question": "which object is moving", "label": 0}, {"captions": ["a horn honks and then loudly blares", "a telephone rings followed by a woman talking"], "sample_ids": ["wnpJndXuxLc", "tGcFnX0GHI"], "start_seconds": ["50", "0"], "properties": ["horn, honk, loud", "ring, talk, woman"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is quieter", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "paper is crumpling consistently"], "sample_ids": ["ugHJF0hfYkg", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["loud, intense, propeller", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a helicopter is flying overhead ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["two frogs croak at each other", "water splashes as an animal walks through"], "sample_ids": ["zg0X6BnhOLQ", "w1ir-sZ3Im8"], "start_seconds": ["410", "90"], "properties": ["two frogs, croak, at each other", "animal, water, splashes"], "captions_pred_video": ["footage of lightning in the sky at night", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a frog is croaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "people cheer as a vehicle engine revs"], "sample_ids": ["vBHyYJ8pL0", "xjhAnI2q6hM"], "start_seconds": ["2", "6"], "properties": ["noise, door, opening", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sd7xVssqlw", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["accelerates, tires, squealing", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car accelerates and revs its engine ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "an infant crying as a woman laughs"], "sample_ids": ["yDoT73BWsdA", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["engine, revs, vehicle", "a, laugh, infant"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vf44CgrjT0A", "tDVADusiIoc"], "start_seconds": ["20", "60"], "properties": ["loud, long, person", "water, radio, man"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a loud burp", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a toilet flushes and water drains"], "sample_ids": ["s59PfAghdkM", "sfAvvZwdLCY"], "start_seconds": ["0", "20"], "properties": ["bird, chirp, background, horse, neigh", "water drains, flushes, water"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage of the toilet in the bathroom"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a small engine spits as it runs", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["sZvwOuuPGP0", "w6RTHR6AeAg"], "start_seconds": ["50", "40"], "properties": ["spits, engine, runs", "call, owl, screech"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", null], "captions_pred_audio": ["a medium engine is running ", "an owl hoots and mechanisms operate "], "question": "which entity is a bird?", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vSeGhaZt-aI", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "gun, shoot, water"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun?", "label": 1}, {"captions": ["some clanking with distant murmuring", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uMTTDZ2mb4", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["clanking, murmuring, distant", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["vehicles pass by on a roadway", "some men converse over an engine running"], "sample_ids": ["tgbONvsP47Y", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["pass, vehicle, roadway", "men, converse, engine"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a dog whimpers as someone inhales/exhales briefly"], "sample_ids": ["sEprKHm8Sj8", "vmrxwuAMb2I"], "start_seconds": ["90", "40"], "properties": ["car, tires, slows", "a dog, inhales, exhales"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "of the dog laying on the bed with his head out of the blanket"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dog barks and growls"], "question": "which entity is a living thing", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["x5cuQjOdM3E", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["cat, meows, young woman", "airplane, boy, fly"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a clock ticktocks continuously", "people cheer as a vehicle engine revs"], "sample_ids": ["vlJS7LN2XyM", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["ticktocks, clock, ticktocks continuously", "engine revs, vehicle, people"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a ticktock of a clock", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "waves crash against a shoreline and people speak"], "sample_ids": ["vz8868znkVQ", "yFB25fqfU8I"], "start_seconds": ["60", "300"], "properties": ["audio, click, kid speaking", "wave, crash, shoreline"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a video", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a man speaks then blows a vehicle horn as wind blows"], "sample_ids": ["zofjfKhqLk8", "zALy31PjDl0"], "start_seconds": ["10", "21"], "properties": ["noise, stop, motor", "a man, a vehicle, a horn"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a motorcycle is parked on the side of a brick walkway"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a car horn is honking"], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an engine starts and increases in power", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zjTG0gaGCUI", "wqZ135Ssz0"], "start_seconds": ["80", "60"], "properties": ["power, increase, engine", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a woman speaks with water running", "wind blowing followed by a zoom"], "sample_ids": ["wTideSjRFS0", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["water, running, woman", "wind, blow, zoom"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a car speeding up in the distance"], "sample_ids": ["sapQIQUhFc", "u0TrcHhkPQ"], "start_seconds": ["280", "20"], "properties": ["water, stream, trickles", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "paper folding and crinkling"], "sample_ids": ["tw76HGONaKg", "zPpG3RD8lSs"], "start_seconds": ["570", "20"], "properties": ["music, click, man", "paper, fold, crinkle"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "the wind blows and a mouse clicks "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp as a train approaches", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xM4joTqDVp4", "zl9Dqx-j7q4"], "start_seconds": ["160", "6"], "properties": ["bird, chirp, train", "engine, laugh, loud"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["water flows as men speak and yell", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vJ7JPEFhyLA", "vJ7JPEFhyLA"], "start_seconds": ["16", "16"], "properties": ["water, flow, men", "three men, wind, flow"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows men speaking and yelling?", "label": 0}, {"captions": ["loud, continuous burping", "an insect buzzes around continuously"], "sample_ids": ["y636gklDioE", "v25l1jef3JY"], "start_seconds": ["20", "0"], "properties": ["loud, continuous, burping", "buzzes, continuously, insect"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person burps loudly several times", "a fly is buzzing around a microphone "], "question": "which entity is not a human", "label": 1}, {"captions": ["someone snores nearby", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["spJCm8tD9Zo", "uEU-Hg5MTN8"], "start_seconds": ["90", "27"], "properties": ["someone snores, nearby, someone", "animal, grunts, snorts"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a vehicle accelerates and squeals tires"], "sample_ids": ["xyL9F5VrjkE", "yRx9txMcBl0"], "start_seconds": ["20", "40"], "properties": ["wind, motor, distance", "accelerates, tires, squeals"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a car accelerates and wind blows"], "sample_ids": ["xKB8O8LTs6s", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["music, radio, gunshots", "accelerates, wind, blows"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["water flows as men speak and yell", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vJ7JPEFhyLA", "wqZ135Ssz0"], "start_seconds": ["16", "60"], "properties": ["water, flow, men", "two men, woman, birds"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "people applaud and hoot and chat quietly"], "sample_ids": ["zcDwZ6W7E3E", "wwyfGO2J4"], "start_seconds": ["180", "90"], "properties": ["a, man, speak", "people, applaud, hoot"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "water pouring and bubbling"], "sample_ids": ["sfAvvZwdLCY", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["flushes, drains, water", "water, bubbles, pouring"], "captions_pred_video": ["footage of the toilet in the bathroom", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a toilet is flushed", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "water flows and trickles"], "sample_ids": ["vveS8HT7Uog", "tB7hWb9gTuQ"], "start_seconds": ["100", "30"], "properties": ["a man, objects, speak", "water, flow, trickle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["someone snores nearby", "a person snores loudly multiple times at a close distance"], "sample_ids": ["spJCm8tD9Zo", "sSMl2vc3ek"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "loud, multiple, distance"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a person snoring loudly"], "question": "which entity is more annoying", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a child speaks in closed space"], "sample_ids": ["zFjIWfSD-4", "yW6FWLSLkx4"], "start_seconds": ["410", "40"], "properties": ["People, motor, brakes", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a dog barks and whimpers", "water is sprayed across a hard surface"], "sample_ids": ["sShpyu2l4YQ", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["barks, whimpers, dog", "water, spray, surface"], "captions_pred_video": ["the puppies are playing with a toy", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a dog is barking and growling", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wy1eKjR7KC0", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["people, talk, distance", "sheep, baa, birds"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "a infant makes noise and is excited"], "sample_ids": ["x6ijhqRY38s", "wIJK3-5y0kA"], "start_seconds": ["250", "30"], "properties": ["something metal, glass, hit", "noise, excited, infant"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tiDFTC-5vU", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["male, duck, laugh", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["someone is snoring while sleeping", "three men talk while wind blows and some liquid flows"], "sample_ids": ["ujMt0-D-x2k", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["snore, sleep, someone", "three men, wind, flow"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a person", "label": 0}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a machine beeps continuously"], "sample_ids": ["uzQnlJXBbOM", "y682ml90jGw"], "start_seconds": ["50", "11"], "properties": ["ringing, beep, stop", "beeps, machine, continuously"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a beeping sound is being made "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "paper is crumpling consistently"], "sample_ids": ["yLy-WycbVVE", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["background, people, talk", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "paper is crumpled and crinkled"], "question": "which entity is more silent", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "an infant crying as a woman laughs"], "sample_ids": ["yFB25fqfU8I", "xhmRY9yhC7c"], "start_seconds": ["300", "20"], "properties": ["wave, crash, shoreline", "a, laugh, infant"], "captions_pred_video": ["footage of a person surfing in the ocean", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a woman speaks as she rubs two objects together"], "sample_ids": ["zofjfKhqLk8", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["background, metal, clank", "two objects, woman, speak"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["water splashes and a door squeaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sdXV-ylviw", "su6FAOcOA8c"], "start_seconds": ["190", "4"], "properties": ["sound, splash, door", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a clock ticktocks"], "sample_ids": ["tOSWIURC-4", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a lawn mower is running ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a woman speaks with water running", "small dogs yip and bark sharply"], "sample_ids": ["wTideSjRFS0", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["water, running, woman", "bark, yip, sharply"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["dogs barking and whimpering", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tIY7qOV3rEM", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["barking, whimpering, dog", "a woman, something, fried"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vSeGhaZt-aI", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["water, bubbles, run", "three men, wind, flow"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a man speaking while water bubbles and runs?", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "a toilet flushes and a female speaks"], "sample_ids": ["s3cTDAj31g", "yaln9y8I7ms"], "start_seconds": ["80", "230"], "properties": ["man, talk, woman", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a toilet flushes and a man speaks"], "question": "which entity is about a toilet?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "dishes cling together then a man begins to speak"], "sample_ids": ["xBxDz0CFVn0", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["wind, chatter, people", "cling, speak, dishes"], "captions_pred_video": ["footage is blurry and out of focus", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a man speaks as crickets sing"], "sample_ids": ["sa6TLVbooCc", "ryFDPxgDOGc"], "start_seconds": ["240", "570"], "properties": ["people, laugh, child", "a, crickets, sing"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a group of people dressed in camouflage and hunting gear in the dark"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking with crickets chirping in the background"], "question": "which entity has a child speaking?", "label": 0}, {"captions": ["wind blows strongly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["w8uLijTqtlU", "tDVADusiIoc"], "start_seconds": ["70", "60"], "properties": ["wind, blows, strongly", "water, radio, man"], "captions_pred_video": ["footage is blurry and shaky", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be in a storm", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "water flows as men speak and yell"], "sample_ids": ["xvDdE3zNf8Y", "vJ7JPEFhyLA"], "start_seconds": ["120", "16"], "properties": ["a, female, speaks", "water, flow, men"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "winds blows roughly as a vehicle races past"], "sample_ids": ["wwyfGO2J4", "xjvTpk2Zpr8"], "start_seconds": ["90", "70"], "properties": ["people, applaud, hoot", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["dogs barking and whimpering", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tIY7qOV3rEM", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "multiple, people, yell"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "paper is crumpling consistently"], "sample_ids": ["sQwlkXjQabo", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["liquid, surface, spray", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["spraying followed by silence", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sLUnaPT5gM8", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "a woman, a television program, a bird"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yYEVLuqEytU", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["animal, pig, background", "men, talk, cars"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "people speak in the background as a clock ticktocks"], "sample_ids": ["tiDFTC-5vU", "vZAw4apG0Es"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "background, clock, ticktocks"], "captions_pred_video": [null, "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a clock is ticking and people are talking"], "question": "which entity has a clock ticktocking in the background?", "label": 1}, {"captions": ["a toilet flushes and water drains", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sfAvvZwdLCY", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["water drains, flushes, water", "music, gunfire, explosion"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a toilet is flushed", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a scene of a toilet flushing and water draining?", "label": 0}, {"captions": ["a motorcycle idles loudly as wind blows", "wind blows as people chatter quietly"], "sample_ids": ["v7jJS8aAyA", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["wind, blows, loudly", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "dishes cling together then a man begins to speak"], "sample_ids": ["wqADXCzngMw", "sQGXqGcwOTc"], "start_seconds": ["340", "3"], "properties": ["audio, humming, revving", "cling, speak, dishes"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "mechanisms are operating and water is splashing "], "question": "which entity is a video", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wTideSjRFS0", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["food, sizzle, woman", "engine, accelerate, idle"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xzKKf9bKNUo", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["background, noise, snoring", "music, gunfire, explosion"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person snoring loudly", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zkKdxzNC97Y", "vJ7JPEFhyLA"], "start_seconds": ["27", "16"], "properties": ["loud, bang, noise", "three men, wind, flow"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a loud noise?", "label": 0}, {"captions": ["a man talks as several small engines run", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["u9A6VZQCZpU", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "people speak as gunfire rings out"], "sample_ids": ["uiItxDsDMFI", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["wood, piece, saw", "gunfire, ring, speak"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sQGXqGcwOTc", "wz7N8YRy74I"], "start_seconds": ["3", "30"], "properties": ["audio, kid, giggles", "rooster, crow, background, men"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a horse runs while two women talk"], "sample_ids": ["zOZleIRqZm4", "sdvI1mHAsc"], "start_seconds": ["80", "20"], "properties": ["rustling, leaves, person", "two women, horse, run"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "horses clip-clop and a woman speaks"], "question": "which entity has more action", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "some men converse over an engine running"], "sample_ids": ["xOZfdgAgJ9o", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["woman, whimpering, speaking", "men, converse, engine"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a person sniffles and sneezes", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["uRlbY6aoBU", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["sneezes, sniffles, person", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zTLVJCo4WEE", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["two people, adult, speak", "a woman, something, fried"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a frog croaks as other frogs croak in the background"], "sample_ids": ["weDbePuc-Xc", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["music, slaps, human", "background, frog, croak"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a close up of a frog in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wsHBIgzs9Fs", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["horn, continuous, buzzing", "airplane, boy, fly"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "several insects fly while two men talk"], "sample_ids": ["zofjfKhqLk8", "s-T9OVOiMLo"], "start_seconds": ["10", "330"], "properties": ["noise, stop, motor", "several, fly, men"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "rain falls on a surface as men speak and thunder roars"], "sample_ids": ["tDVADusiIoc", "w0xsN8X18Y"], "start_seconds": ["60", "30"], "properties": ["man, radio, blows", "rain, thunder, surface"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is about a man speaking on a radio as wind blows?", "label": 0}, {"captions": ["someone snores nearby", "a man speaks as a car is passing by"], "sample_ids": ["spJCm8tD9Zo", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a, car, pass"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["wRV8yMk886E", "t25U-v4k4ts"], "start_seconds": ["0", "40"], "properties": ["liquid, spray, nozzle", "a, chirps, bird"], "captions_pred_video": ["two cars are parked in a parking lot at night", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a man is speaking and bees are buzzing"], "question": "which entity has a bird chirp?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a man speaks while turning a water faucet on"], "sample_ids": ["yYJksgsxx5U", "vf9xf3vMsGM"], "start_seconds": ["30", "540"], "properties": ["audio, woman, silverware", "A man speaks while turning a water faucet on."], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking while water is running in the background"], "question": "which entity is a man?", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "rain falls on a surface as men speak and music plays"], "sample_ids": ["w34HjHr6gAY", "w0xsN8X18Y"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "music, surface, rain"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a child speaks in closed space"], "sample_ids": ["ugHJF0hfYkg", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["engine, running, continuously", "child, space, speak"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not running continuously", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zofjfKhqLk8", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["background, metal, clank", "water, radio, man"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a toilet flushes and water drains unevenly"], "sample_ids": ["smGI3C1NZc", "vhJWZheqaE"], "start_seconds": ["30", "0"], "properties": ["water, drain, toilet", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a toilet is flushed"], "question": "which toilet is leaking?", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a telephone rings followed by a woman talking"], "sample_ids": ["su6FAOcOA8c", "tGcFnX0GHI"], "start_seconds": ["4", "0"], "properties": ["engine, run, woman", "ring, talk, woman"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "people speak as gunfire rings out"], "sample_ids": ["wsHBIgzs9Fs", "wqTCwqVRDlk"], "start_seconds": ["50", "80"], "properties": ["horn, continuous, buzzing", "gunfire, ring, speak"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a kid speaks followed by music playing", "water pouring and bubbling"], "sample_ids": ["tQWGZLItBXk", "uyRfq-jKPpo"], "start_seconds": ["170", "50"], "properties": ["music, kid, speak", "water, bubbles, pouring"], "captions_pred_video": ["worms revolution screenshots", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "water is running from a faucet"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["material crumbles into a microphone", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vofpvUo6NAw", "zFjIWfSD-4"], "start_seconds": ["220", "410"], "properties": ["material, crumbles, microphone", "People, motor, brakes"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", null], "captions_pred_audio": ["paper is being crumpled and crinkled", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a recording", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a duck quacks continuously"], "sample_ids": ["yLy-WycbVVE", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "quacks, continuously, duck"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a stream of water runs briefly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["x-PeY8Yb8M4", "zj2R0XoFr5k"], "start_seconds": ["300", "50"], "properties": ["stream, water, run", "airplane, boy, fly"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car is driving on a wet road ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a propeller rotates loudly and intensely"], "sample_ids": ["ukxt9I7eMMg", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["continuous, woman, speaking", "loud, intense, propeller"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a machine beeps continuously"], "sample_ids": ["wyllXV6PjKo", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["a baby, a woman, a man", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sfAvvZwdLCY", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["flushes, drains, water", "three men, wind, flow"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 0}, {"captions": ["male speech with light ticking", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xO-Q2BlIIPU", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["male, speech, ticking", "a woman, laughs, animal"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "a child speaks in closed space"], "sample_ids": ["zcDwZ6W7E3E", "yW6FWLSLkx4"], "start_seconds": ["180", "40"], "properties": ["a, man, speak", "child, space, speak"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 0}, {"captions": ["a vehicle engine runs as a siren and horn sound", "people cheer as a vehicle engine revs"], "sample_ids": ["u--KhUW8l1Y", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["sound, vehicle, horn", "engine revs, vehicle, people"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a truck is revving its engine and a man is speaking "], "question": "which vehicle is being driven by people?", "label": 1}, {"captions": ["an engine runs loudly", "a man speaks followed by another man speaking outside"], "sample_ids": ["vqZuVbG6-HI", "viuTg1M-dqg"], "start_seconds": ["130", "30"], "properties": ["loud, engine, run", "two men, speak, follow"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which is quieter", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["w2bYrCVLT60", "vfYTJq7nU"], "start_seconds": ["120", "130"], "properties": ["ducks, speak, quack", "rustling, ducks, quack"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a duck quacks and a woman speaks"], "question": "which entity has more ducks", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a frog vocalizes while birds chirp"], "sample_ids": ["uKCSGgof8gI", "vMf1dLD6Sng"], "start_seconds": ["12", "6"], "properties": ["chirps, distance, signal", "frog, bird, vocalize"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "a frog in a pond with pink flowers in the background"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a frog croaks loudly"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a person snoring several times", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["spJCm8tD9Zo", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["snore, person, several", "airplane, boy, fly"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person is snoring loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a woman speaks happily and an animal chirps"], "sample_ids": ["ugHJF0hfYkg", "uWAAAL4CIoc"], "start_seconds": ["10", "0"], "properties": ["loud, propeller, move", "a woman, chirps, animal"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a dog is barking "], "question": "which is quieter", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "a clock ticktocks"], "sample_ids": ["sYITalLZjj4", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["stream, flow, wind", "ticktocks, clock, ticktocks"], "captions_pred_video": ["two ducks are swimming in the water near each other", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["wind blows and birds chirp", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wnpJndXuxLc", "y2bVZ7rz-5M"], "start_seconds": ["50", "280"], "properties": ["blows, vehicle, train", "motor noise, horn, siren"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a loud engine muffles a man as he speaks", "food is frying then a woman speaks"], "sample_ids": ["xyx6eNVEYRY", "ukxt9I7eMMg"], "start_seconds": ["380", "30"], "properties": ["loud, engine, muffles", "food, woman, speak"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a woman is speaking while food is frying in the background "], "question": "which entity is a man speaking?", "label": 0}, {"captions": ["dogs barking and whimpering", "a duck quacks continuously"], "sample_ids": ["tIY7qOV3rEM", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "quacks, continuously, duck"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a man speaks as a car is passing by"], "sample_ids": ["zTLVJCo4WEE", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "a, car, pass"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking with background noise and breathing sounds "], "question": "which entity is in a city", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "paper is crumpling consistently"], "sample_ids": ["vZAw4apG0Es", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["people, clock, converse", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a clock is ticking and people are talking", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["someone snores nearby", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["spJCm8tD9Zo", "uEU-Hg5MTN8"], "start_seconds": ["90", "27"], "properties": ["someone snores, nearby, someone", "a woman, laughs, animal"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a large crowd cheers and applauds", "people cheer as a vehicle engine revs"], "sample_ids": ["rqfQRErjfk8", "xjhAnI2q6hM"], "start_seconds": ["170", "6"], "properties": ["crowd, cheers, applauds", "engine revs, vehicle, people"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a truck is revving its engine and a man is speaking "], "question": "which entity is a crowd?", "label": 0}, {"captions": ["an engine revs and a turning noise is made", "water splashes as an animal walks through"], "sample_ids": ["tOSWIURC-4", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["noise, engine, revs", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a lawn mower is running ", "water splashes and gurgles as people speak"], "question": "which entity is not a noise", "label": 1}, {"captions": ["birds chirp as a bell rings", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["ziUT9IFTkjg", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["chirp, bell, ring", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a duck quacks and a woman speaks"], "question": "which entity is about birds?", "label": 0}, {"captions": ["a man rubs two objects together then speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["vveS8HT7Uog", "vzxHnu-SFEw"], "start_seconds": ["100", "80"], "properties": ["a man, objects, speak", "two objects, woman, speak"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a man speaking?", "label": 0}, {"captions": ["an audience gives applause as a man yells and a group sings", "pigeons vocalize and birds chirp"], "sample_ids": ["tdWhHV3X25Q", "uiS58TNyUiw"], "start_seconds": ["60", "430"], "properties": ["applause, audience, yells", "vocalize, bird, chirp"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a man is filing a hard object", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vveS8HT7Uog", "su6FAOcOA8c"], "start_seconds": ["100", "4"], "properties": ["a man, hard, object", "engine, idle, woman"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a woman is speaking and a subway train is moving "], "question": "which object is being filed", "label": 0}, {"captions": ["frogs croak and vocalize", "paper folding and crinkling"], "sample_ids": ["yswmmRZFItk", "zPpG3RD8lSs"], "start_seconds": ["0", "20"], "properties": ["croak, vocalize, frog", "paper, fold, crinkle"], "captions_pred_video": ["a close up of a frog in the water", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a frog is croaking", "the wind blows and a mouse clicks "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["w2bYrCVLT60", "wwyfGO2J4"], "start_seconds": ["120", "90"], "properties": ["ducks, speak, quack", "people, applaud, hoot"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a dog barks and whimpers"], "sample_ids": ["sa6TLVbooCc", "sShpyu2l4YQ"], "start_seconds": ["240", "0"], "properties": ["people, laugh, child", "barks, whimpers, dog"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "the puppies are playing with a toy"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a dog is barking and growling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["w0xsN8X18Y", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["rain, thunder, surface", "a train, a horn, a bell"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a duck quacks continuously"], "sample_ids": ["wRBHTgrbiwg", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["bird, owl, speak", "quacks, continuously, duck"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a machine beeps continuously"], "sample_ids": ["ugHJF0hfYkg", "y682ml90jGw"], "start_seconds": ["10", "11"], "properties": ["engine, running, continuously", "beeps, machine, continuously"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a beeping sound is being made "], "question": "which machine beeps continuously", "label": 1}, {"captions": ["wind blows as people chatter quietly", "wind blows as people chatter quietly"], "sample_ids": ["xBxDz0CFVn0", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["wind, chatter, people", "wind, chatter, people"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is a photograph", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "vehicles pass by on a roadway"], "sample_ids": ["ylpYOorfH4o", "tgbONvsP47Y"], "start_seconds": ["410", "0"], "properties": ["engine, run, loud", "pass, vehicle, roadway"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a woman speaks happily and an animal chirps"], "sample_ids": ["w5W5Kqtc8E", "uWAAAL4CIoc"], "start_seconds": ["100", "0"], "properties": ["wind, engine, scream", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "people cheer as a vehicle engine revs"], "sample_ids": ["ylpYOorfH4o", "xjhAnI2q6hM"], "start_seconds": ["410", "6"], "properties": ["motor, run, steady", "engine revs, vehicle, people"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a truck is revving its engine and a man is speaking "], "question": "which motor runs steadily as a man speaks", "label": 0}, {"captions": ["a horn blasts loudly as a train passes", "a infant makes noise and is excited"], "sample_ids": ["zsLxS-uLJTw", "wIJK3-5y0kA"], "start_seconds": ["20", "30"], "properties": ["horn, blast, train", "noise, excited, infant"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a baby cries and a woman speaks"], "question": "which is louder", "label": 0}, {"captions": ["a goat screams and people speak in the background", "a door slams shut roughly"], "sample_ids": ["xC8kbrKJmco", "zkKdxzNC97Y"], "start_seconds": ["0", "27"], "properties": ["background, goat, scream", "a door, slams, shut"], "captions_pred_video": [null, "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a goat is bleating ", "a door is opened and closed"], "question": "which entity is quieter", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a toilet flushes and water drains"], "sample_ids": ["y2bVZ7rz-5M", "sfAvvZwdLCY"], "start_seconds": ["280", "20"], "properties": ["motor noise, horn, siren", "water drains, flushes, water"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "paper is crumpling consistently"], "sample_ids": ["vms5XGTDVQc", "v5cSxLaHADY"], "start_seconds": ["220", "0"], "properties": ["paper, crumpled, crinkled", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["paper is crumpled and crinkled", "paper is crumpled and crinkled"], "question": "which paper is crumpling consistently", "label": 1}, {"captions": ["a motorcycle engine works nearby", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tOSWIURC-4", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["engine, work, nearby", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a duck quacks and a woman speaks"], "question": "which entity is a natural event", "label": 1}, {"captions": ["vehicles pass by on a roadway", "pigeons vocalize and birds chirp"], "sample_ids": ["tgbONvsP47Y", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["pass, vehicle, roadway", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a fire truck entering a garage", "of the pigeon in the cage"], "captions_pred_audio": ["a car is driving on the road ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uWPRNLnpy7Y", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["accelerate, laugh, vehicle", "applause, audience, yells"], "captions_pred_video": ["is taken from a car driving down the street", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["wqZ135Ssz0", "uEU-Hg5MTN8"], "start_seconds": ["60", "27"], "properties": ["man, woman, squawks", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a more snorts", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["v5P-ThUCINM", "vfYTJq7nU"], "start_seconds": ["400", "130"], "properties": ["background, chirp, bird", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and birds are chirping", "a duck quacks and a woman speaks"], "question": "which entity has more birds", "label": 1}, {"captions": ["a door opens and birds chirp", "wind blows as people chatter quietly"], "sample_ids": ["yeFvk9x0wWI", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "wind, chatter, people"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage is blurry and out of focus"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "men speak and a nozzle sprays liquid"], "sample_ids": ["u21-Z5gJCB8", "wRV8yMk886E"], "start_seconds": ["30", "0"], "properties": ["background, voice, man", "liquid, spray, nozzle"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man speaks followed by a loud burst"], "question": "which entity is more active", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "water splashes as an animal walks through"], "sample_ids": ["wwyfGO2J4", "w1ir-sZ3Im8"], "start_seconds": ["90", "90"], "properties": ["people, applaud, hoot", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["u21-Z5gJCB8", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "male, duck, laugh"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a child babbles as a woman speaks"], "sample_ids": ["vJvryTwuAV8", "wEBlkGWVWwE"], "start_seconds": ["16", "260"], "properties": ["audience, cheer, man", "a, babble, woman"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "shows a person writing on the whiteboard"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a woman is speaking and a child is speaking with background noise and clapping "], "question": "which entity is a child?", "label": 1}, {"captions": ["food is frying and sizzles", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zNRChLjqcU", "yajyRTUQk3U"], "start_seconds": ["220", "400"], "properties": ["food is frying, sizzles, food", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking while something is fried?", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sZPuqDgX2V0", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["engine, accelerate, intercom", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a beep occurs briefly", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["xtWeJ56-U-g", "w34HjHr6gAY"], "start_seconds": ["20", "30"], "properties": ["beep, occur, briefly", "beeps, hit, woman"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a infant makes noise and is excited"], "sample_ids": ["su6FAOcOA8c", "wIJK3-5y0kA"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "noise, excited, infant"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["u--KhUW8l1Y", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["horn, siren, life", "loud, laughter, intermittent"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a goat screams and people speak in the background", "people applaud and hoot and chat quietly"], "sample_ids": ["xC8kbrKJmco", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["background, goat, scream", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a vehicle engine runs and someone speaks"], "sample_ids": ["yLy-WycbVVE", "zF8yoL0rkbI"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "engine, run, someone"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "footage of the traffic on the street at night"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "the wind is blowing hard and water is splashing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sfAvvZwdLCY", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "engine, accelerate, idle"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a toilet is flushed", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a man speaks as a car is passing by"], "sample_ids": ["slZLHwNbbt4", "sK4u5T8hW78"], "start_seconds": ["300", "30"], "properties": ["clap, distance, horn", "a, car, pass"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a propeller moves loudly nearby", "pigeons vocalize and birds chirp"], "sample_ids": ["ugHJF0hfYkg", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["loud, propeller, move", "vocalize, bird, chirp"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of the pigeon in the cage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and a bee is buzzing"], "question": "which is quieter", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["x9JovgqUcs", "vqZuVbG6-HI"], "start_seconds": ["500", "130"], "properties": ["a, man, speaks, keyboard", "background, male, female"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a lawn mower is running and men are speaking "], "question": "which entity has a man speaking and typing on a keyboard?", "label": 0}, {"captions": ["a clock ticktocks continuously", "a child speaks in closed space"], "sample_ids": ["vlJS7LN2XyM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["ticktocks, clock, ticktocks continuously", "child, space, speak"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "water flows and trickles"], "sample_ids": ["zuua6-5goWw", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "water, flow, trickle"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a person snoring several times", "a pigeon cooing as an insect buzzes by briefly"], "sample_ids": ["spJCm8tD9Zo", "yZrFNS7GFBQ"], "start_seconds": ["90", "30"], "properties": ["snore, person, several", "pigeon, buzzes, insect"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the bird in the cage"], "captions_pred_audio": ["a person is snoring loudly", "an owl hoots in the background "], "question": "which entity is not a person?", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["s4Uz1Ffgo04", "sapQIQUhFc"], "start_seconds": ["100", "280"], "properties": ["water, rushes, motorcycle", "liquid, flow, distance"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["tapping occurs then a baby cries", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["wIJK3-5y0kA", "x9JovgqUcs"], "start_seconds": ["30", "500"], "properties": ["a, cry, baby", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks and types on a keyboard"], "question": "which entity is typing?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["uWAAAL4CIoc", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["a woman, chirps, animal", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wTjoRj1se3U", "xBxDz0CFVn0"], "start_seconds": ["390", "30"], "properties": ["airplane, engine, spool", "stream, water, flow"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage is blurry and out of focus"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["birds tweet and squawk", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["w1mlz3Pe4fU", "tDlysoZiA1I"], "start_seconds": ["300", "0"], "properties": ["squawk, tweet, scream", "animal, grunts, chirps"], "captions_pred_video": ["of a bird in a cage", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping and singing", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sNB8zxXneIM", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["several, quack, cocks", "a woman, something, fried"], "captions_pred_video": ["a group of geese in a cage", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a man speaks on a radio as wind blows"], "sample_ids": ["tgbONvsP47Y", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["pass, vehicle, roadway", "man, radio, blows"], "captions_pred_video": ["footage of a fire truck entering a garage", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a car is driving on the road ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is stationary", "label": 1}, {"captions": ["a man speaks as horns blow", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tHyNqRyK34A", "uYT5gxnyMWM"], "start_seconds": ["24", "50"], "properties": ["a, man, speaks", "female, spraying, scream"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is a woman?", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "people speak and tapping occurs"], "sample_ids": ["vXlk0lIQBFo", "tFCUUGdREgA"], "start_seconds": ["470", "70"], "properties": ["wind, talk, vocalize", "people, tap, speak"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a person riding a white horse in an indoor arena"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking and walking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "someone whistles a tune"], "sample_ids": ["vVhthZ45k3Y", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["cat, purr, hiss", "someone, tune, whistle"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a person whistling a song"], "question": "which entity is a human activity", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a car accelerates and wind blows"], "sample_ids": ["zliInBdC98Y", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["a, baby, cries, wails", "accelerates, wind, blows"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an engine runs loudly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vqZuVbG6-HI", "su6FAOcOA8c"], "start_seconds": ["130", "4"], "properties": ["loud, engine, run", "engine, idle, woman"], "captions_pred_video": ["footage is blurry because it's raining outside", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity is quieter", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wfHeoPDLMaM", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "rooster, crow, background, men"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["ducks are quacking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a clock ticktocks"], "sample_ids": ["yYEVLuqEytU", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "waves crash against a shoreline and people speak"], "sample_ids": ["s6DESzUTGjY", "yFB25fqfU8I"], "start_seconds": ["16", "300"], "properties": ["wind, laugh, woman", "wave, crash, shoreline"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["a man talks as several small engines run", "a rumbling clap in the distance followed by a horn and the rumbling grows louder"], "sample_ids": ["u9A6VZQCZpU", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["a, man, talk", "clap, distance, horn"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is not a clap?", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "a piece of wood is being placed down and sawed"], "sample_ids": ["vbpKkWvfOu4", "uiItxDsDMFI"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "wood, piece, saw"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a saw is being used with background noise "], "question": "which entity is about a piece of wood being sawed?", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a toilet flushes and water sputters as it drains"], "sample_ids": ["tw76HGONaKg", "smGI3C1NZc"], "start_seconds": ["570", "30"], "properties": ["music, click, man", "water, drain, toilet"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a toilet is flushed"], "question": "which entity is silent", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uYT5gxnyMWM", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a man talks followed by a woman shouting"], "sample_ids": ["yeFvk9x0wWI", "s3cTDAj31g"], "start_seconds": ["30", "80"], "properties": ["clack, bird, chirp", "man, talk, woman"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "running water in a faucet with some clinks"], "sample_ids": ["su6FAOcOA8c", "zNRChLjqcU"], "start_seconds": ["4", "220"], "properties": ["engine, idle, woman", "water, faucet, run"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "water is running from a faucet into a sink"], "question": "which entity is a source of water", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a train horn blows as it passes by"], "sample_ids": ["v-wcQf4BDY0", "zVacuqSb4LI"], "start_seconds": ["120", "30"], "properties": ["bark, yip, sharply", "horn, blows, train"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a dog barks and growls", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["zuua6-5goWw", "sapQIQUhFc"], "start_seconds": ["30", "280"], "properties": ["sound, pop, bird", "liquid, flow, distance"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking and a stream is flowing in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["motors rev and run loudly as a person laughs", "a man speaks uses a drill"], "sample_ids": ["zl9Dqx-j7q4", "x5eIC7S0fbg"], "start_seconds": ["6", "60"], "properties": ["motors rev, laugh, loudly", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["footage of a man driving a car in the dark", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["food is frying and sizzles", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["zNRChLjqcU", "xV7Mg1QucSc"], "start_seconds": ["220", "14"], "properties": ["food is frying, sizzles, food", "alarm, ticktocks, laughs"], "captions_pred_video": [null, "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["water is running from a faucet into a sink", "an alarm clock ticks and a woman laughs"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "pigeons vocalize and birds chirp"], "sample_ids": ["vlJS7LN2XyM", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["background, clocks, ticking", "vocalize, bird, chirp"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "of the pigeon in the cage"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "water pouring and bubbling"], "sample_ids": ["sZPuqDgX2V0", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["commentator, race, track", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine runs and a man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["yT5WfYMRr-U", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "background, motor, run"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a man speaking while an engine runs?", "label": 0}, {"captions": ["a male speaks and another male speaks", "paper folding and crinkling"], "sample_ids": ["viuTg1M-dqg", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["two males, speaking, male", "paper, fold, crinkle"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling paper?", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "a infant makes noise and is excited"], "sample_ids": ["vMf1dLD6Sng", "wIJK3-5y0kA"], "start_seconds": ["6", "30"], "properties": ["frog, bird, vocalize", "noise, excited, infant"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a frog croaks loudly", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["male speech with light ticking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xO-Q2BlIIPU", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["male, speech, ticking", "multiple, people, yell"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "dishes cling together then a man begins to speak"], "sample_ids": ["sYITalLZjj4", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["water, rushes, background, birds", "cling, speak, dishes"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["wind blows and birds chirp", "mechanisms are operating and water is splashing "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["yZrFNS7GFBQ", "y8dSeubCNI"], "start_seconds": ["30", "4"], "properties": ["pigeon, buzzes, insect", "men, women, car"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "an engine revving and people talking in the background"], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "continuous sneezing together with speech"], "sample_ids": ["xzKKf9bKNUo", "x4dZyf9Gbj0"], "start_seconds": ["10", "130"], "properties": ["background, noise, snoring", "continuous, sneeze, speech"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage is blurry and out of focus"], "captions_pred_audio": ["a person snoring loudly", "a woman sneezes and speaks"], "question": "which entity is more like a sneeze", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a woman and man are speaking"], "sample_ids": ["tK4VlLsNxak", "vbpKkWvfOu4"], "start_seconds": ["120", "560"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "two people, speaking, woman, man"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a woman is speaking and a man is speaking"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a man speaks as a car is passing by"], "sample_ids": ["sSMl2vc3ek", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["a person, laughs, snores", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["spYNpeN7rPY", "wDVMhEdTiVw"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "gun, shoot, water"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["birds chirp and objects are moved around", "water flows and trickles"], "sample_ids": ["yPUYU6t3rwo", "tB7hWb9gTuQ"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "water, flow, trickle"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["insects buzz and a man speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["weDbePuc-Xc", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["cartoon character, music, vocalize", "clickety-clack, train, whistle"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["children speak as a female ask them questions", "children cheer as a man speaks then an audience screams"], "sample_ids": ["wEBlkGWVWwE", "vJvryTwuAV8"], "start_seconds": ["260", "16"], "properties": ["female, speak, questions", "audience, cheer, man"], "captions_pred_video": ["shows a person writing on the whiteboard", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is a performance", "label": 1}, {"captions": ["women speak and laugh as wind blows", "people applaud and hoot and chat quietly"], "sample_ids": ["un9VQlzgZM", "wwyfGO2J4"], "start_seconds": ["5", "90"], "properties": ["wind, speak, laugh", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "some men converse over an engine running"], "sample_ids": ["sjlVMgdGSK0", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["accelerates, vehicle, race car", "men, converse, engine"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is a still image", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["v5P-ThUCINM", "vlS6YMeWAPo"], "start_seconds": ["400", "40"], "properties": ["background, chirp, bird", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a goat bleats and birds chirp"], "question": "which entity has more birds", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "birds chirp as a train approaches"], "sample_ids": ["tMJne1a4AFI", "xM4joTqDVp4"], "start_seconds": ["0", "160"], "properties": ["wind, buzz, rustling", "bird, chirp, train"], "captions_pred_video": ["a swarm of bees on the ground", "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["a swarm of bees buzzing around", "birds are chirping and a train is moving "], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "paper folding and crinkling"], "sample_ids": ["siJFXfGWgDk", "zPpG3RD8lSs"], "start_seconds": ["50", "20"], "properties": ["a, bird, vehicle", "paper, fold, crinkle"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a car speeding up in the distance"], "sample_ids": ["sAam2NqGhLY", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["snoring, breathing, child", "distance, car, speed"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "water splashes as an animal walks through"], "sample_ids": ["uRExseg-0XI", "w1ir-sZ3Im8"], "start_seconds": ["210", "90"], "properties": ["woman, man, water", "animal, water, splashes"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "water splashes and gurgles as people speak"], "question": "which entity is about water", "label": 1}, {"captions": ["a woman and man speak while food is frying", "someone is typing on a computer keyboard"], "sample_ids": ["zk-xJGQU8-4", "v0x1odnXtP0"], "start_seconds": ["130", "210"], "properties": ["food, man, woman", "keyboard, type, computer"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a person is typing on a keyboard"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "someone is typing on a computer keyboard"], "sample_ids": ["wIvYjuR3nrg", "v0x1odnXtP0"], "start_seconds": ["9", "210"], "properties": ["birds, pigeons, vocalize", "keyboard, type, computer"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "how to make money on youtube in spanish"], "captions_pred_audio": ["birds are chirping and cooing", "a person is typing on a keyboard"], "question": "which entity is typing", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["sWZzXuWYY", "y2bVZ7rz-5M"], "start_seconds": ["420", "280"], "properties": ["male, speech, banging", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "some tunes played by whistling"], "sample_ids": ["vbpKkWvfOu4", "u6BnG6YZqJ4"], "start_seconds": ["560", "0"], "properties": ["a, man, speaks", "tune, play, whistling"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a person snores loudly multiple times at a close distance"], "sample_ids": ["u5RmF3c3Aw", "sSMl2vc3ek"], "start_seconds": ["60", "20"], "properties": ["engine, car, zoom", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vBslzh7saPw", "xfaoyyzw2WU"], "start_seconds": ["90", "180"], "properties": ["power, scream, increase", "loud, jet engine, roar"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a jet engine roars and accelerates ", "an aircraft engine roars and a man speaks "], "question": "which jet engine is louder", "label": 1}, {"captions": ["a man woman speak while crickets sing", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["zTLVJCo4WEE", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["a, crickets, sing", "sound, chirp, buzz"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a bee on a purple thistle flower"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a bee buzzes and a woman speaks"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["some men converse over an engine running", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sCiy7QS1U", "uEU-Hg5MTN8"], "start_seconds": ["300", "27"], "properties": ["men, converse, engine", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["a motorcycle engine is idling", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vZAqdHZ81yA", "tDVADusiIoc"], "start_seconds": ["180", "60"], "properties": ["engine, motorcycle, idling", "water, radio, man"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a train horn blows as it passes by"], "sample_ids": ["vZAqdHZ81yA", "zVacuqSb4LI"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "horn, blows, train"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["an engine is idling loudly", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a clock ticktocks in wind", "an aircraft engine runs as wind blows heavily"], "sample_ids": ["yVumC9TGknc", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["ticktocks, clock, wind", "engine, run, wind"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a series of beeps and chirps", "a jet engine roars and wind blows "], "question": "which object is moving in the wind", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a child speaks in closed space"], "sample_ids": ["tOSWIURC-4", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["engine, work, nearby", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a lawn mower is running ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "pigeons vocalize and birds chirp"], "sample_ids": ["zl9Dqx-j7q4", "uiS58TNyUiw"], "start_seconds": ["6", "430"], "properties": ["motors rev, laugh, loudly", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a man driving a car in the dark", "of the pigeon in the cage"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vBslzh7saPw", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["engine, spools, takes", "airplane, boy, fly"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xSKJGCItUWE", "su6FAOcOA8c"], "start_seconds": ["10", "4"], "properties": ["engine, run, boy", "engine, idle, woman"], "captions_pred_video": ["footage of the helicopter flying in the room", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking and a subway train is moving "], "question": "which entity has a running engine", "label": 0}, {"captions": ["a man speaks as horns blow", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tHyNqRyK34A", "zFjIWfSD-4"], "start_seconds": ["24", "410"], "properties": ["a, man, speaks", "People, motor, brakes"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "an adult man speaks over glass clinking"], "sample_ids": ["yaln9y8I7ms", "u6jIvCtKarQ"], "start_seconds": ["230", "70"], "properties": ["female, flushes, toilet", "a, man, speaks"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person using a blender on a stove top"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking and dishes are being moved with background noise "], "question": "which entity is a man speaking over glass clinking?", "label": 1}, {"captions": ["a person screams glaringly", "a man speaks as a car is passing by"], "sample_ids": ["xC8kbrKJmco", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["glaringly, screams, person", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more passive", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xKB8O8LTs6s", "sSMl2vc3ek"], "start_seconds": ["70", "20"], "properties": ["music, radio, gunshots", "loud, multiple, distance"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vmrxwuAMb2I", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["a dog, inhales, exhales", "rustling, ducks, quack"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", null], "captions_pred_audio": ["a dog barks and growls", "a duck quacks and a woman speaks"], "question": "which entity is about a dog?", "label": 0}, {"captions": ["a man speaks as a car is passing by", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["sK4u5T8hW78", "yks4cLgIDMc"], "start_seconds": ["30", "170"], "properties": ["a, car, pass", "background, speaking, child"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zk-xJGQU8-4", "uYT5gxnyMWM"], "start_seconds": ["130", "50"], "properties": ["food, man, woman", "female, spraying, scream"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman and man speaking?", "label": 0}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "an engine runs loudly"], "sample_ids": ["w6RTHR6AeAg", "vqZuVbG6-HI"], "start_seconds": ["40", "130"], "properties": ["call, owl, screech", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a person uses a saw to cut some wood"], "sample_ids": ["ylpYOorfH4o", "sHbXC6na9hg"], "start_seconds": ["410", "0"], "properties": ["engine, running, wind", "a person, saw, wood"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a man is speaking and an engine is revving", "an engine is idling and vibrating"], "question": "which entity is stationary", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "vehicles pass by on a roadway"], "sample_ids": ["zofjfKhqLk8", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["noise, stop, motor", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "water rushes and then a vehicle zooms past"], "sample_ids": ["ukxt9I7eMMg", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["food, pan, cook", "water, rushes, vehicle"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is moving", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "birds chirp and objects are moved around"], "sample_ids": ["ukg5L09Wpvo", "yPUYU6t3rwo"], "start_seconds": ["150", "370"], "properties": ["clickety-clack, train, whistle", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["children cry and people talk", "an insect buzzes around continuously"], "sample_ids": ["xLwHe825Zs", "v25l1jef3JY"], "start_seconds": ["18", "0"], "properties": ["people talk, children cry, people talk", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a baby cries and a woman speaks", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a frog croaks as other frogs croak in the background"], "sample_ids": ["xfudFO976zE", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["animal, bleats, cry", "background, frog, croak"], "captions_pred_video": ["footage is blurry and shaky", "a close up of a frog in the water"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a frog is croaking"], "question": "which animal is more likely to be a frog?", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y2ZBGpgbhHM", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["dog, chirp, breathe", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds chirping and a dog panting", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "wind blowing followed by a zoom"], "sample_ids": ["yNtRmrn0io8", "vr8ZXjEBhMQ"], "start_seconds": ["210", "150"], "properties": ["storm, distance, strike", "wind, blow, zoom"], "captions_pred_video": ["footage of a house in the middle of the night", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["rain falls and thunder roars", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to cause damage", "label": 0}, {"captions": ["a man speaks as horns blow", "a car accelerates and wind blows"], "sample_ids": ["tHyNqRyK34A", "u0TrcHhkPQ"], "start_seconds": ["24", "20"], "properties": ["a, man, speaks", "accelerates, wind, blows"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tiDFTC-5vU", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["male, duck, laugh", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sfAvvZwdLCY", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["flushes, drains, water", "music, gunfire, explosion"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a toilet is flushed", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a clock ticktocks"], "sample_ids": ["spYNpeN7rPY", "v-g-j2uTByM"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "ticktocks, clock, ticktocks"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a clock is ticking loudly"], "question": "which entity has a clock ticktocks?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a duck quacks loudly and continuously"], "sample_ids": ["vZAw4apG0Es", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "loud, continuous, quacks"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a clock is ticking and people are talking", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "an engine runs loudly"], "sample_ids": ["uiItxDsDMFI", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["wood, piece, saw", "loud, engine, run"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a saw is being used with background noise ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["se87d6yxEOA", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a moving object", "label": 0}, {"captions": ["a man speaks as he moves silverware in a bowl", "small dogs yip and bark sharply"], "sample_ids": ["x6ijhqRY38s", "v-wcQf4BDY0"], "start_seconds": ["250", "120"], "properties": ["bowl, silverware, man", "bark, yip, sharply"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vzxHnu-SFEw", "zl9Dqx-j7q4"], "start_seconds": ["80", "6"], "properties": ["two objects, woman, speak", "engine, laugh, loud"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "an small aircraft engine runs and a boy speaks"], "sample_ids": ["yJ0TePmaOo", "xSKJGCItUWE"], "start_seconds": ["390", "10"], "properties": ["two hard objects, man, speak", "engine, run, boy"], "captions_pred_video": [null, "footage of the helicopter flying in the room"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a high pitched engine is running and a child speaks"], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "a woman speaks and other women and a man talk with her"], "sample_ids": ["w2JXXIAdUdg", "vbpKkWvfOu4"], "start_seconds": ["10", "560"], "properties": ["emits, sleeping, person", "a, woman, man"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a stream of water flows quickly", "winds blows roughly as a vehicle races past"], "sample_ids": ["wbHTKEJZyhc", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["stream, water, flow", "wind, blows, vehicle"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a jet engine roars and wind blows "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zCrAfDfv6-A", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["person, mouse, click", "a, scream, girl"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking and a baby is crying"], "question": "which entity is a person?", "label": 0}, {"captions": ["a sleeping person emits a gravely snore", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["w2JXXIAdUdg", "uZesmtKZGSw"], "start_seconds": ["10", "250"], "properties": ["emits, sleeping, person", "men, talk, cars"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a woman talking as an infant is crying"], "sample_ids": ["xKB8O8LTs6s", "tMbMDvT50j8"], "start_seconds": ["70", "12"], "properties": ["music, gunfire, explosion", "a, talk, infant"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a baby cries and a woman speaks"], "question": "which entity is more calm", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "water flows as men speak and yell"], "sample_ids": ["ukxt9I7eMMg", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["food, pan, cook", "water, flow, men"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a man laughs and speaks as cats purr and hiss", "small dogs yip and bark sharply"], "sample_ids": ["vVhthZ45k3Y", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["cat, purr, hiss", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a dog barks and growls"], "question": "which animal is more playful", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zcDwZ6W7E3E", "vYkA3cfXp5Q"], "start_seconds": ["180", "30"], "properties": ["man, speak, motorcycles", "engine, accelerate, idle"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a drill runs and two people laugh", "a man speaks as a car is passing by"], "sample_ids": ["tEE3MpBt1sg", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "a, car, pass"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car passing by?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "an infant crying frantically"], "sample_ids": ["uZesmtKZGSw", "zwOBqeFTgiU"], "start_seconds": ["250", "30"], "properties": ["men, talk, cars", "cry, infant, frantically"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xl2PIWyXaM", "vfYTJq7nU"], "start_seconds": ["160", "130"], "properties": ["chirp, man, younger person", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "a duck quacks and a woman speaks"], "question": "which entity has more animals", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["x5cuQjOdM3E", "rqu8iB22IY"], "start_seconds": ["30", "5"], "properties": ["cat, meows, young woman", "sound, repeats, laugh"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a dog barks and a man speaks while music plays "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a large bell chimes back and forth loudly", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["w2M4i1mklOA", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["loud, chime, bell", "a, scream, girl"], "captions_pred_video": ["footage of an antique clock", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking and a baby is crying"], "question": "which entity is quieter", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a man speaks as a car is passing by"], "sample_ids": ["yeFvk9x0wWI", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["chirp, twitter, clatter", "a, car, pass"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is silent", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "someone whistles a tune"], "sample_ids": ["wztCSUxOf8", "sIXTftIuUgw"], "start_seconds": ["130", "90"], "properties": ["a crowd, yells, applauds", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a person whistling a song"], "question": "which entity is more quiet", "label": 1}, {"captions": ["vehicles pass by on a roadway", "birds chirp and objects are moved around"], "sample_ids": ["tgbONvsP47Y", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["pass, vehicle, roadway", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a car is driving on the road ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water drains", "a person is burping then speaks and laughs"], "sample_ids": ["sfAvvZwdLCY", "wAAkbZToh8"], "start_seconds": ["20", "0"], "properties": ["water drains, flushes, water", "burp, laugh, speak"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a man burps and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a child speaks in closed space", "wind blowing followed by a zoom"], "sample_ids": ["yW6FWLSLkx4", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["child, space, speak", "wind, blow, zoom"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to blow", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "someone is typing on a computer keyboard"], "sample_ids": ["tw76HGONaKg", "v0x1odnXtP0"], "start_seconds": ["570", "210"], "properties": ["A, game, keyboard", "keyboard, type, computer"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a person is typing on a keyboard"], "question": "which keyboard is used to type on a computer", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "water splashes and a door squeaks"], "sample_ids": ["sapQIQUhFc", "sdXV-ylviw"], "start_seconds": ["280", "190"], "properties": ["water, trickles, flow", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a dog barks and taps with background noise "], "question": "which entity has a door that squeaks?", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "winds blows roughly as a vehicle races past"], "sample_ids": ["wqADXCzngMw", "xjvTpk2Zpr8"], "start_seconds": ["340", "70"], "properties": ["engine, idle, man", "wind, blows, vehicle"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a propeller rotates loudly and intensely"], "sample_ids": ["ugHJF0hfYkg", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["loud, propeller, move", "loud, intense, propeller"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a helicopter is flying overhead ", "a helicopter is flying overhead "], "question": "which propeller is louder", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "an engine runs loudly"], "sample_ids": ["tZGN5a7ybxo", "vqZuVbG6-HI"], "start_seconds": ["60", "130"], "properties": ["ring, train, horn", "loud, engine, run"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a lawn mower is running and men are speaking "], "question": "which train is louder", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zY3icUyMdh8", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["dog, bark, engine", "a woman, something, fried"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a person snoring several times"], "sample_ids": ["yYEVLuqEytU", "spJCm8tD9Zo"], "start_seconds": ["40", "90"], "properties": ["animal, pig, background", "snore, person, several"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a person is snoring loudly"], "question": "which entity is a person?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "two women and a man talk while a kid cries"], "sample_ids": ["vimzuGQvdcU", "wyllXV6PjKo"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "a kid, talk, cry"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a woman speaks and a baby cries"], "question": "which entity has a kid?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["vddP56-ogds", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["water, flow, laugh", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking and a dog is barking "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a toilet flushes and water drains unevenly"], "sample_ids": ["vbZ-0lGPneg", "vhJWZheqaE"], "start_seconds": ["30", "0"], "properties": ["a woman, a television program, a bird", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a toilet is flushed"], "question": "which entity has more water", "label": 1}, {"captions": ["a male speaks and another male speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["viuTg1M-dqg", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["two males, speaking, male", "loud, multiple, distance"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tEE3MpBt1sg", "xfaoyyzw2WU"], "start_seconds": ["50", "180"], "properties": ["drill, something, laugh", "loud, jet engine, roar"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "a toilet flushes and a female speaks"], "sample_ids": ["y8dSeubCNI", "yaln9y8I7ms"], "start_seconds": ["4", "230"], "properties": ["engine revving, people speaking, motorcycle", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["an engine revving and people talking in the background", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a man is filing a hard object", "a train horn blows as it passes by"], "sample_ids": ["vveS8HT7Uog", "zVacuqSb4LI"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "horn, blows, train"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which object is louder", "label": 0}, {"captions": ["a person sneezes followed by another person speaking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["t8CV69hcvF0", "uZesmtKZGSw"], "start_seconds": ["210", "250"], "properties": ["person, sneeze, follow", "men, talk, cars"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a infant makes noise and is excited"], "sample_ids": ["zkKdxzNC97Y", "wIJK3-5y0kA"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "noise, excited, infant"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a door is opened and closed", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a man speaks as a car is passing by"], "sample_ids": ["su6FAOcOA8c", "sK4u5T8hW78"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "a, car, pass"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["distant men speak as a spray can nozzle is depressed", "an infant crying as a woman laughs"], "sample_ids": ["rwtmaKiCcQU", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["nozzle, depressed, spray can", "a, laugh, infant"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["spraying and people speaking", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "water flows and trickles"], "sample_ids": ["yajyRTUQk3U", "tB7hWb9gTuQ"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "water, flow, trickle"], "captions_pred_video": ["- a woman cooking in the kitchen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a small engine idles continuously", "vehicles pass by on a roadway"], "sample_ids": ["y5WII6cTH7k", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["engine, idle, continuously", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of a fire truck entering a garage"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vddP56-ogds", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["water, flow, laugh", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "pigeons vocalize and birds chirp"], "sample_ids": ["yDoT73BWsdA", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["engine, revs, vehicle", "vocalize, bird, chirp"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "of the pigeon in the cage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["an engine runs loudly", "water pouring and bubbling"], "sample_ids": ["vqZuVbG6-HI", "uyRfq-jKPpo"], "start_seconds": ["130", "50"], "properties": ["loud, engine, run", "water, bubbles, pouring"], "captions_pred_video": ["footage is blurry because it's raining outside", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["shmR4OZtzqA", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["man, engine, idle", "animal, grunts, snorts"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man speaks while a motor runs", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "a infant makes noise and is excited"], "sample_ids": ["ugHJF0hfYkg", "wIJK3-5y0kA"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "noise, excited, infant"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a helicopter is flying overhead ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a infant makes noise and is excited"], "sample_ids": ["zl9Dqx-j7q4", "wIJK3-5y0kA"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "noise, excited, infant"], "captions_pred_video": ["footage of a man driving a car in the dark", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a jet engine roars ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a machine beeps continuously"], "sample_ids": ["sQwlkXjQabo", "y682ml90jGw"], "start_seconds": ["10", "11"], "properties": ["liquid, surface, spray", "beeps, machine, continuously"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a beeping sound is being made "], "question": "which entity is not silent", "label": 1}, {"captions": ["a person whistles a meandering tune", "a man speaks as a motor runs in the background"], "sample_ids": ["uFoga8sHpiw", "xZepNM9qcRA"], "start_seconds": ["90", "30"], "properties": ["person, tune, whistle", "background, motor, run"], "captions_pred_video": ["footage of a bird in a cage", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person whistles a song", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 0}, {"captions": ["a dog whimpers and a woman briefly talks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["y1saVTXsKwc", "vb1fPSDI4c"], "start_seconds": ["80", "30"], "properties": ["a, dog, talk", "multiple, people, yell"], "captions_pred_video": ["a dog playing with a pink ball", null], "captions_pred_audio": ["a dog barks and a man speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a clock ticktocks briefly", "a duck quacks continuously"], "sample_ids": ["u7C-AEBQM", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks briefly", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a ticktock of a clock", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xfaoyyzw2WU", "wqZ135Ssz0"], "start_seconds": ["180", "60"], "properties": ["loud, jet engine, roar", "two men, woman, birds"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", null], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which is quieter", "label": 1}, {"captions": ["dogs barking and whimpering", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tIY7qOV3rEM", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["barking, whimpering, dog", "a, scream, girl"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tDVADusiIoc", "vfYTJq7nU"], "start_seconds": ["60", "130"], "properties": ["man, radio, blows", "rustling, ducks, quack"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a duck quacks and a woman speaks"], "question": "which entity is about a man speaking on a radio as wind blows?", "label": 0}, {"captions": ["vehicles pass by on a roadway", "a machine beeps continuously"], "sample_ids": ["tgbONvsP47Y", "y682ml90jGw"], "start_seconds": ["0", "11"], "properties": ["pass, vehicle, roadway", "beeps, machine, continuously"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "a beeping sound is being made "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "an infant crying frantically"], "sample_ids": ["tEE3MpBt1sg", "zwOBqeFTgiU"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "cry, infant, frantically"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "of the baby crying in the car seat"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "several insects fly while two men talk"], "sample_ids": ["s7knHCFW82w", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["blow horn, get close, train", "several, fly, men"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["continuous sizzling with a woman speaking towards the end", "some men converse over an engine running"], "sample_ids": ["ukxt9I7eMMg", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["continuous, woman, speaking", "men, converse, engine"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["paper folding and crinkling", "a toilet flushes and water sputters as it drains"], "sample_ids": ["zPpG3RD8lSs", "smGI3C1NZc"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "water, drain, toilet"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", null], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a car accelerates and wind blows"], "sample_ids": ["u21-Z5gJCB8", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, voice, man", "accelerates, wind, blows"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a child speaks", "vehicles pass by on a roadway"], "sample_ids": ["yW6FWLSLkx4", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["a, child, speaks", "pass, vehicle, roadway"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a goat screams and people speak in the background", "people speak as gunfire rings out"], "sample_ids": ["xC8kbrKJmco", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["background, goat, scream", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["people clap and speak in the distance", "a car accelerates and wind blows"], "sample_ids": ["wwyfGO2J4", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["clap, distance, speak", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "pigeons vocalize and birds chirp"], "sample_ids": ["xKB8O8LTs6s", "uiS58TNyUiw"], "start_seconds": ["70", "430"], "properties": ["music, radio, gunshots", "vocalize, bird, chirp"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of the pigeon in the cage"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a car speeding up in the distance", "paper folding and crinkling"], "sample_ids": ["u0TrcHhkPQ", "zPpG3RD8lSs"], "start_seconds": ["20", "20"], "properties": ["distance, car, speed", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which is not a car", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tK4VlLsNxak", "xKB8O8LTs6s"], "start_seconds": ["120", "70"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "music, gunfire, explosion"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a clock ticktocks"], "sample_ids": ["wvKpEYswXO0", "v-g-j2uTByM"], "start_seconds": ["150", "30"], "properties": ["plastic, tap, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of the person preparing food in the kitchen", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["ziUT9IFTkjg", "yLy-WycbVVE"], "start_seconds": ["10", "30"], "properties": ["background, birds, rustling", "background, people, talk"], "captions_pred_video": [null, "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity has a background of birds chirping?", "label": 0}, {"captions": ["someone snores nearby", "pigeons vocalize and birds chirp"], "sample_ids": ["spJCm8tD9Zo", "uiS58TNyUiw"], "start_seconds": ["90", "430"], "properties": ["someone snores, nearby, someone", "vocalize, bird, chirp"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the pigeon in the cage"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a clock ticktocks"], "sample_ids": ["vf44CgrjT0A", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a loud burp", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sjlVMgdGSK0", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["accelerates, vehicle, race car", "harsh, wind, blows"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["small dogs growl, bark and yip.", "a car accelerates and wind blows"], "sample_ids": ["sShpyu2l4YQ", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["growl, bark, yip", "accelerates, wind, blows"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "a clock ticktocks"], "sample_ids": ["y8dSeubCNI", "v-g-j2uTByM"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an engine revving and people talking in the background", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "water flows as men speak and yell"], "sample_ids": ["tK4VlLsNxak", "vJ7JPEFhyLA"], "start_seconds": ["120", "16"], "properties": ["a, dial, telephone", "water, flow, men"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and dialing a rotary telephone?", "label": 0}, {"captions": ["a person speaks briefly", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zOZleIRqZm4", "vfYTJq7nU"], "start_seconds": ["80", "130"], "properties": ["person, talk, brief", "rustling, ducks, quack"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a duck quacks and a woman speaks"], "question": "which entity is about a person talking?", "label": 0}, {"captions": ["a man sprays as a scraping occurs in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["sOa7g-44Dag", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["background, man, spray", "wind, blows, vehicle"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sxYkFKFIZD0", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["screech, man, door", "three men, wind, flow"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about liquid flowing?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a child speaks in closed space"], "sample_ids": ["spJCm8tD9Zo", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["snores, wheezes, sleeps", "child, space, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vb1fPSDI4c", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["multiple, people, yell", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a woman is speaking while food is frying in the background"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a car accelerates and wind blows"], "sample_ids": ["yRx9txMcBl0", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["motors, tires, screech", "accelerates, wind, blows"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a race car accelerates and revs its engine "], "question": "which entity is a car?", "label": 1}, {"captions": ["a dog barks and whimpers", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sShpyu2l4YQ", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["barks, whimpers, dog", "engine, laugh, loud"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a dog is barking and growling", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet flushes and water drains", "a child speaks in closed space"], "sample_ids": ["sfAvvZwdLCY", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["water drains, flushes, water", "child, space, speak"], "captions_pred_video": ["footage of the toilet in the bathroom", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yYJksgsxx5U", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["audio, clicks, scraping", "stream, water, flow"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["white noise and birds chirping", "birds chirp and objects are moved around"], "sample_ids": ["wRBHTgrbiwg", "yPUYU6t3rwo"], "start_seconds": ["50", "370"], "properties": ["noise, white, chirping", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "insects buzz and a man speaks"], "question": "which entity is more like a video", "label": 1}, {"captions": ["water flows and trickles", "a car speeding up in the distance"], "sample_ids": ["tB7hWb9gTuQ", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["water, flow, trickle", "distance, car, speed"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", null], "captions_pred_audio": ["water is splashing and gurgling", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a car accelerates and wind blows", "water is sprayed across a hard surface"], "sample_ids": ["u0TrcHhkPQ", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["accelerates, wind, blows", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a car accelerates and wind blows"], "sample_ids": ["xfudFO976zE", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["animal, bleats, cry", "accelerates, wind, blows"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a woman speaks as she rubs two objects together"], "sample_ids": ["xyL9F5VrjkE", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["wind, motor, distance", "two objects, woman, speak"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a motor?", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "water flows and trickles"], "sample_ids": ["vbpKkWvfOu4", "tB7hWb9gTuQ"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "water, flow, trickle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a child speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yW6FWLSLkx4", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["a, child, speaks", "rustling, ducks, quack"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a duck quacks and a woman speaks"], "question": "which entity is about a child speaking?", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a car accelerates and wind blows"], "sample_ids": ["tDlfY3nmx1A", "u0TrcHhkPQ"], "start_seconds": ["160", "20"], "properties": ["applause, laugh, man", "accelerates, wind, blows"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", null], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a woman speaks happily and an animal chirps"], "sample_ids": ["zTLVJCo4WEE", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["a, crickets, sing", "a woman, chirps, animal"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman is speaking and a dog is barking "], "question": "which entity has a man and woman speaking?", "label": 0}, {"captions": ["long loud burping by a man", "a man speaks as a car is passing by"], "sample_ids": ["xmiUIOhtZyQ", "sK4u5T8hW78"], "start_seconds": ["60", "30"], "properties": ["loud, burp, man", "a, car, pass"], "captions_pred_video": ["homer simpson drinking a beer", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a propeller rotates loudly and intensely"], "sample_ids": ["sfAvvZwdLCY", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["water drains, flushes, water", "loud, intense, propeller"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a toilet is flushed", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a male speaks over some small clicks", "small dogs yip and bark sharply"], "sample_ids": ["uXxVebHsGZ8", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["male, clicks, speak", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "an infant crying as a woman laughs"], "sample_ids": ["sZPuqDgX2V0", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["engine, accelerate, intercom", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yajyRTUQk3U", "vbZ-0lGPneg"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "a woman, a television program, a bird"], "captions_pred_video": ["- a woman cooking in the kitchen", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking and a dog is whimpering"], "question": "which woman is speaking over sizzling noise", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uYT5gxnyMWM", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["person, spray, yell", "three men, wind, flow"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a person speaking over spraying and another person yelling?", "label": 0}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a vehicle accelerates squealing tires"], "sample_ids": ["weDbePuc-Xc", "sd7xVssqlw"], "start_seconds": ["40", "50"], "properties": ["music, slaps, human", "accelerates, tires, squealing"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a toilet flushes and a female speaks"], "sample_ids": ["vs65y4qmyBE", "yaln9y8I7ms"], "start_seconds": ["340", "230"], "properties": ["wind, blows, strongly", "female, flushes, toilet"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "winds blows roughly as a vehicle races past"], "sample_ids": ["zcDwZ6W7E3E", "xjvTpk2Zpr8"], "start_seconds": ["180", "70"], "properties": ["a, man, speak", "wind, blows, vehicle"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "several insects fly while two men talk"], "sample_ids": ["ylpYOorfH4o", "s-T9OVOiMLo"], "start_seconds": ["410", "330"], "properties": ["engine, running, wind", "several, fly, men"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["some men converse over an engine running", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sCiy7QS1U", "wz7N8YRy74I"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "vehicles pass by on a roadway"], "sample_ids": ["zVacuqSb4LI", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["blares, fades, train", "pass, vehicle, roadway"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "water splashes and a door squeaks"], "sample_ids": ["vb1fPSDI4c", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["multiple, people, yell", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["a crowd of people are talking and laughing", "a dog barks and taps with background noise "], "question": "which entity has a door squeaking?", "label": 1}, {"captions": ["a man speaks as a machine runs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vD6lYD1l0BY", "vbZ-0lGPneg"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "a woman, a television program, a bird"], "captions_pred_video": ["game controller being held in the hands of the person", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a weapon fires multiple times"], "sample_ids": ["zj2R0XoFr5k", "sMC07Ucy7kg"], "start_seconds": ["50", "10"], "properties": ["airplane, boy, fly", "weapon, fire, multiple"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage is from a car's point of view"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["water splashes as an animal walks through", "water splashes and a door squeaks"], "sample_ids": ["w1ir-sZ3Im8", "sdXV-ylviw"], "start_seconds": ["90", "190"], "properties": ["animal, water, splashes", "sound, splash, door"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a dog barks and taps with background noise "], "question": "which entity is more likely to be a video of a door squeaking?", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "an infant crying as a woman laughs"], "sample_ids": ["tZGN5a7ybxo", "xhmRY9yhC7c"], "start_seconds": ["60", "20"], "properties": ["ring, train, horn", "a, laugh, infant"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["t25U-v4k4ts", "w34HjHr6gAY"], "start_seconds": ["40", "30"], "properties": ["a, chirps, bird", "beeps, hit, woman"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a machine engine runs and a man speaks"], "sample_ids": ["vr8ZXjEBhMQ", "vs65y4qmyBE"], "start_seconds": ["150", "340"], "properties": ["wind, blow, zoom", "engine, run, man"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a heavy engine is running and men are speaking "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["water pouring and bubbling", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uyRfq-jKPpo", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["water, bubbles, pouring", "a woman, laughs, animal"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["water is running from a faucet", "a woman is speaking and a baby is crying"], "question": "which entity is a video", "label": 1}, {"captions": ["a person is snoring while sleeping", "a woman speaks and taps on a hard surface before running tap water"], "sample_ids": ["vJrjSeP17yE", "wvKpEYswXO0"], "start_seconds": ["40", "150"], "properties": ["a person is sleeping, snoring, person", "water, tap, run"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a person", "label": 0}, {"captions": ["a crowd yells, reacts and applauds", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wztCSUxOf8", "ukg5L09Wpvo"], "start_seconds": ["130", "150"], "properties": ["a crowd, yells, applauds", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "some tunes played by whistling"], "sample_ids": ["w2JXXIAdUdg", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["snoring, distance, person", "tune, play, whistling"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a person is whistling"], "sample_ids": ["xhmRY9yhC7c", "sIXTftIuUgw"], "start_seconds": ["20", "90"], "properties": ["a, laugh, infant", "person, whistling, person"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a person whistling a song"], "question": "which person is whistling", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uWAAAL4CIoc", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["a woman, chirps, animal", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause harm", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a stream of water runs briefly"], "sample_ids": ["xzKKf9bKNUo", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["background, noise, snoring", "stream, water, run"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "some men converse over an engine running"], "sample_ids": ["zY3icUyMdh8", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["dog, bark, engine", "men, converse, engine"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a dog barking and a vehicle engine idling followed shortly by vehicle engine revving?", "label": 0}, {"captions": ["a woman and man speak while food is frying", "a train horn blows as it passes by"], "sample_ids": ["zk-xJGQU8-4", "zVacuqSb4LI"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "horn, blows, train"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train", "label": 1}, {"captions": ["continuous snoring", "birds chirp and objects are moved around"], "sample_ids": ["sLkeqCDJIyw", "yPUYU6t3rwo"], "start_seconds": ["120", "370"], "properties": ["loud, snoring, noise", "birds chirp, objects are moved around, birds"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a person is snoring loudly", "insects buzz and a man speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["u2f5NpsoHBg", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["person, laugh, clap", "a woman, something, fried"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a telephone rings followed by a woman talking"], "sample_ids": ["yYJksgsxx5U", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["audio, woman, silverware", "ring, talk, woman"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", null], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["food is frying then a woman speaks", "a toilet flushes and a female speaks"], "sample_ids": ["ukxt9I7eMMg", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["food, woman, speak", "female, flushes, toilet"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a toilet flushes and a man speaks"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wnpJndXuxLc", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["blows, vehicle, train", "engine, idle, woman"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "water pouring and bubbling"], "sample_ids": ["y8dSeubCNI", "uyRfq-jKPpo"], "start_seconds": ["4", "50"], "properties": ["engine revving, people speaking, motorcycle", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["an engine revving and people talking in the background", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks while water drains", "a toilet flushes and a female speaks"], "sample_ids": ["vSeGhaZt-aI", "yaln9y8I7ms"], "start_seconds": ["50", "230"], "properties": ["water, drain, man", "female, flushes, toilet"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a person speaks briefly", "an infant crying frantically"], "sample_ids": ["zOZleIRqZm4", "zwOBqeFTgiU"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "cry, infant, frantically"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w0xsN8X18Y", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["rain, thunder, surface", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a man speaking and a rooster crows?", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "a woman speaks as she rubs two objects together"], "sample_ids": ["vz8868znkVQ", "vzxHnu-SFEw"], "start_seconds": ["60", "80"], "properties": ["audio, click, kid speaking", "two objects, woman, speak"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["u--KhUW8l1Y", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "gun, shoot, water"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "water is sprayed across a hard surface"], "sample_ids": ["ul60S8TXDA8", "sQwlkXjQabo"], "start_seconds": ["60", "10"], "properties": ["sound, distance, bell", "water, spray, surface"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["some tunes played by whistling", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["u6BnG6YZqJ4", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["tune, play, whistling", "female, spraying, scream"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "water pouring and bubbling"], "sample_ids": ["uZesmtKZGSw", "uyRfq-jKPpo"], "start_seconds": ["250", "50"], "properties": ["men, talk, cars", "water, bubbles, pouring"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "paper folding and crinkling"], "sample_ids": ["yZmhM1HcsyE", "zPpG3RD8lSs"], "start_seconds": ["4", "20"], "properties": ["engine, roar, water", "paper, fold, crinkle"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "the wind blows and a mouse clicks "], "question": "which entity is more likely to be a paper craft", "label": 1}, {"captions": ["a male speaks over some small clicks", "a woman speaks happily and an animal chirps"], "sample_ids": ["uXxVebHsGZ8", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["male, clicks, speak", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a woman is speaking and a dog is barking "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "some men converse over an engine running"], "sample_ids": ["yRx9txMcBl0", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["motors, tires, screech", "men, converse, engine"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a person talking to someone?", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vSeGhaZt-aI", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["water, bubbles, speak", "a, scream, girl"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["ylpYOorfH4o", "s4Uz1Ffgo04"], "start_seconds": ["410", "100"], "properties": ["engine, run, loud", "roars, background, people speaking"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a woman speaks as she rubs two objects together"], "sample_ids": ["t8CV69hcvF0", "vzxHnu-SFEw"], "start_seconds": ["210", "80"], "properties": ["person, sneeze, follow", "two objects, woman, speak"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "multiple people speak and children yell while water gurgles"], "sample_ids": ["w5W5Kqtc8E", "vb1fPSDI4c"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a crowd of people are talking and laughing"], "question": "which entity has more people yelling", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "people applaud and hoot and chat quietly"], "sample_ids": ["s4Uz1Ffgo04", "wwyfGO2J4"], "start_seconds": ["100", "90"], "properties": ["water, rushes, motorcycle", "people, applaud, hoot"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "winds blows roughly as a vehicle races past"], "sample_ids": ["tOj4tdLRaA", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["woman, laugh, baby", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["water flows as men speak and yell", "water splashes as an animal walks through"], "sample_ids": ["vJ7JPEFhyLA", "w1ir-sZ3Im8"], "start_seconds": ["16", "90"], "properties": ["water, flow, men", "animal, water, splashes"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "water splashes and gurgles as people speak"], "question": "which entity is more calm", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a duck quacks several times"], "sample_ids": ["uzQnlJXBbOM", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "quacks, duck, several"], "captions_pred_video": ["footage of a person using a cell phone on a table", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a telephone rings and a man speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sK4u5T8hW78", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["a, car, pass", "men, talk, cars"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a woman speaks happily and an animal chirps"], "sample_ids": ["tOj4tdLRaA", "uWAAAL4CIoc"], "start_seconds": ["70", "0"], "properties": ["woman, laugh, baby", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a dog is barking "], "question": "which entity has a baby in it", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vzxHnu-SFEw", "xBxDz0CFVn0"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "stream, water, flow"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman talking as an infant is crying", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tMbMDvT50j8", "tdWhHV3X25Q"], "start_seconds": ["12", "60"], "properties": ["a, talk, infant", "applause, audience, yells"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["water splashes as an animal walks through", "someone whistles a tune"], "sample_ids": ["w1ir-sZ3Im8", "sIXTftIuUgw"], "start_seconds": ["90", "90"], "properties": ["animal, water, splashes", "someone, tune, whistle"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a woman speaks with water running", "a stream of water runs briefly"], "sample_ids": ["wTideSjRFS0", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["water, running, woman", "stream, water, run"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["people speak then an engine runs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uMTTDZ2mb4", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["engine, run, people", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["an engine runs loudly", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vqZuVbG6-HI", "vlS6YMeWAPo"], "start_seconds": ["130", "40"], "properties": ["loud, engine, run", "sheep, baa, birds"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a goat bleats and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "water flows and trickles"], "sample_ids": ["rwtmaKiCcQU", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["nozzle, depressed, spray can", "water, flow, trickle"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["spraying and people speaking", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water flows as men speak and yell", "people cheer as a vehicle engine revs"], "sample_ids": ["vJ7JPEFhyLA", "xjhAnI2q6hM"], "start_seconds": ["16", "6"], "properties": ["water, flow, men", "engine revs, vehicle, people"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle?", "label": 1}, {"captions": ["a duck quacks continuously", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vh30P49Po6s", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["quacks, continuously, duck", "a woman, laughs, animal"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a woman speaks and is crumpling paper"], "sample_ids": ["vlS6YMeWAPo", "xvDdE3zNf8Y"], "start_seconds": ["40", "120"], "properties": ["noise, bleat, call", "A, crumple, paper"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a goat bleats and birds chirp", "a woman speaks and crumples paper"], "question": "which entity is crumpling paper", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "water is sprayed across a hard surface"], "sample_ids": ["zl9Dqx-j7q4", "sQwlkXjQabo"], "start_seconds": ["6", "10"], "properties": ["engine, laugh, loud", "water, spray, surface"], "captions_pred_video": ["footage of a man driving a car in the dark", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a jet engine roars ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sSMl2vc3ek", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["loud, multiple, distance", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "people cheer as a vehicle engine revs"], "sample_ids": ["s4Uz1Ffgo04", "xjhAnI2q6hM"], "start_seconds": ["100", "6"], "properties": ["water, rushes, motorcycle", "engine revs, vehicle, people"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a stream of water flows quickly", "a clock ticktocks"], "sample_ids": ["wbHTKEJZyhc", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["stream, water, flow", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a clock ticktocks"], "sample_ids": ["vimzuGQvdcU", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a group of people are rafting down a river", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["s4Uz1Ffgo04", "wz7N8YRy74I"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "rooster, crow, background, men"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "an engine runs loudly"], "sample_ids": ["sZPuqDgX2V0", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["engine, accelerate, intercom", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a lawn mower is running and men are speaking "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a horn honks and then loudly blares", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wnpJndXuxLc", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["horn, honk, loud", "music, gunfire, explosion"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["birds chirp, a woman speaks, and insects buzz", "a frog croaks as other frogs croak in the background"], "sample_ids": ["t97k0cejSQE", "yswmmRZFItk"], "start_seconds": ["250", "0"], "properties": ["sound, chirp, buzz", "background, frog, croak"], "captions_pred_video": ["a bee on a purple thistle flower", "a close up of a frog in the water"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a frog is croaking"], "question": "which entity has a background of frogs?", "label": 1}, {"captions": ["water splashes and a door squeaks", "vehicle engines race around a track as a man commentates"], "sample_ids": ["sdXV-ylviw", "sZPuqDgX2V0"], "start_seconds": ["190", "30"], "properties": ["sound, splash, door", "commentator, race, track"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a video of a race?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a diesel truck engine runs continuously"], "sample_ids": ["sQGXqGcwOTc", "sZvwOuuPGP0"], "start_seconds": ["3", "50"], "properties": ["cling, speak, dishes", "engine, diesel, truck"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a medium engine is running "], "question": "which entity is a moving object", "label": 1}, {"captions": ["water flows followed by women screaming", "a child speaks"], "sample_ids": ["w5W5Kqtc8E", "yW6FWLSLkx4"], "start_seconds": ["100", "40"], "properties": ["water, flow, women", "a, child, speaks"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is silent", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a steam engine runs and whistles as it passes by"], "sample_ids": ["u7C-AEBQM", "se87d6yxEOA"], "start_seconds": ["30", "10"], "properties": ["ticks, rhythmic, quiet", "run, whistle, pass"], "captions_pred_video": [null, "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a ticktock of a clock", "a train is moving and blowing its whistle "], "question": "which entity is louder", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tK4VlLsNxak", "yajyRTUQk3U"], "start_seconds": ["120", "400"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "a woman, something, fried"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["some people speak", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vbZ-0lGPneg", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "a woman, something, fried"], "captions_pred_video": ["of a man holding a baby duck in his hands", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a person sniffles and sneezes", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["uRlbY6aoBU", "x6ijhqRY38s"], "start_seconds": ["0", "250"], "properties": ["sneezes, sniffles, person", "something metal, glass, hit"], "captions_pred_video": [null, "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and dishes are clanging "], "question": "which entity is about hitting something metal against glass?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a toilet flushes and water drains"], "sample_ids": ["s3cTDAj31g", "sfAvvZwdLCY"], "start_seconds": ["80", "20"], "properties": ["man, talk, woman", "water drains, flushes, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["an insect buzzes around continuously", "a duck quacks continuously"], "sample_ids": ["v25l1jef3JY", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "quacks, continuously, duck"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["a stream of water flows quickly", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wbHTKEJZyhc", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["stream, water, flow", "a woman, laughs, animal"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is not a stream of water?", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "several insects fly while two men talk"], "sample_ids": ["xBxDz0CFVn0", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["stream, water, flow", "several, fly, men"], "captions_pred_video": ["footage is blurry and out of focus", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a man woman speak while crickets sing"], "sample_ids": ["yZp6xizR0yU", "zTLVJCo4WEE"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "a, crickets, sing"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a woman speaks and crickets chirp"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["here comes the train and it starts to blow the horn and get close", "wind blows as people chatter quietly"], "sample_ids": ["s7knHCFW82w", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "wind, chatter, people"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man talks while vehicles pass by", "pigeons vocalize and birds chirp"], "sample_ids": ["sK4u5T8hW78", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["a, man, talk", "vocalize, bird, chirp"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "wind blows as people chatter quietly"], "sample_ids": ["y4tPJXBKDig", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["a, noise, talk", "wind, chatter, people"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["yLy-WycbVVE", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["background, people, talk", "a woman, chirps, animal"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "wind blows as people chatter quietly"], "sample_ids": ["uRlbY6aoBU", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["a, distance, sneeze", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "wind blows as people chatter quietly"], "sample_ids": ["yks4cLgIDMc", "xBxDz0CFVn0"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "wind, chatter, people"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a child is crying", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "pigeons vocalize and birds chirp"], "sample_ids": ["tGcFnX0GHI", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["ring, talk, woman", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xBxDz0CFVn0", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["stream, water, flow", "water, radio, man"], "captions_pred_video": ["footage is blurry and out of focus", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a motorcycle engine is revving while people are speaking"], "sample_ids": ["tDlfY3nmx1A", "y8dSeubCNI"], "start_seconds": ["160", "4"], "properties": ["applause, laugh, man", "engine revving, people speaking, motorcycle"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", null], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "an engine revving and people talking in the background"], "question": "which entity is a motorcycle?", "label": 1}, {"captions": ["an engine runs loudly", "wind blowing followed by a zoom"], "sample_ids": ["vqZuVbG6-HI", "vr8ZXjEBhMQ"], "start_seconds": ["130", "150"], "properties": ["loud, engine, run", "wind, blow, zoom"], "captions_pred_video": ["footage is blurry because it's raining outside", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["continuous snoring", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sLkeqCDJIyw", "xKB8O8LTs6s"], "start_seconds": ["120", "70"], "properties": ["loud, snoring, noise", "music, gunfire, explosion"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person is snoring loudly", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is louder", "label": 1}, {"captions": ["a man talks as several small engines run", "water gurgles, metal squeaks and the water stops"], "sample_ids": ["u9A6VZQCZpU", "x4a9YGIw4ok"], "start_seconds": ["30", "120"], "properties": ["a, man, talk", "water, gurgles, stops"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a toilet flushes and water splashes"], "question": "which entity is about water?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a duck quacks continuously"], "sample_ids": ["uYT5gxnyMWM", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "quacks, continuously, duck"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "water pouring and bubbling"], "sample_ids": ["tgbONvsP47Y", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["noise, truck, accelerate", "water, bubbles, pouring"], "captions_pred_video": ["footage of a fire truck entering a garage", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car is driving on the road ", "water is running from a faucet"], "question": "which is a liquid", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a muffled toilet flushes and the water drains"], "sample_ids": ["yajyRTUQk3U", "sfAvvZwdLCY"], "start_seconds": ["400", "20"], "properties": ["noise, woman, speak", "flushes, drains, water"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a toilet is flushed"], "question": "which entity is silent", "label": 1}, {"captions": ["a motorcycle engine works nearby", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tOSWIURC-4", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["engine, work, nearby", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "wind blowing followed by a zoom"], "sample_ids": ["tOSWIURC-4", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["engine, work, nearby", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a lawn mower is running ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["water rushes and then a vehicle zooms past", "a small engine spits as it runs"], "sample_ids": ["s4Uz1Ffgo04", "sZvwOuuPGP0"], "start_seconds": ["100", "50"], "properties": ["water, rushes, vehicle", "spits, engine, runs"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a medium engine is running "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zALy31PjDl0", "zl9Dqx-j7q4"], "start_seconds": ["21", "6"], "properties": ["a man, a vehicle, a horn", "engine, laugh, loud"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yYEVLuqEytU", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["animal, pig, background", "a woman, laughs, animal"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal snorting?", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "some tunes played by whistling"], "sample_ids": ["zVacuqSb4LI", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["blares, fades, train", "tune, play, whistling"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a woman speaks as she rubs two objects together"], "sample_ids": ["tGcFnX0GHI", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["ring, talk, woman", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman is speaking", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "continuous sizzling with a woman speaking towards the end"], "sample_ids": ["tdWhHV3X25Q", "ukxt9I7eMMg"], "start_seconds": ["60", "30"], "properties": ["applause, audience, yells", "continuous, woman, speaking"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking while food is frying in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["an airplane engine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yVPZ2MNWpms", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["engine, airplane, runs", "female, spraying, scream"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is driving by on the road ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["paper folding and crinkling", "pigeons vocalize and birds chirp"], "sample_ids": ["zPpG3RD8lSs", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["paper, fold, crinkle", "vocalize, bird, chirp"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "of the pigeon in the cage"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["loud intermittent buzzing with intermittent laughter", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sLUnaPT5gM8", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["loud, laughter, intermittent", "two men, woman, birds"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["continuous sneezing together with speech", "a infant makes noise and is excited"], "sample_ids": ["x4dZyf9Gbj0", "wIJK3-5y0kA"], "start_seconds": ["130", "30"], "properties": ["continuous, sneeze, speech", "noise, excited, infant"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman sneezes and speaks", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "pigeons vocalize and birds chirp"], "sample_ids": ["rqu8iB22IY", "uiS58TNyUiw"], "start_seconds": ["5", "430"], "properties": ["sound, repeats, laugh", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a vehicle accelerates and squeals tires"], "sample_ids": ["yRx9txMcBl0", "yRx9txMcBl0"], "start_seconds": ["40", "40"], "properties": ["accelerates, tires, squeals", "accelerates, tires, squeals"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a car is revving its engine and skidding "], "question": "which vehicle accelerates and squeals tires", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yks4cLgIDMc", "vb1fPSDI4c"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "multiple, people, yell"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a man speaks followed by another man speaking outside"], "sample_ids": ["xhmRY9yhC7c", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["a, laugh, infant", "two men, speak, follow"], "captions_pred_video": ["of a baby crying in a baby bouncer", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a infant makes noise and is excited"], "sample_ids": ["rwTERCUno", "wIJK3-5y0kA"], "start_seconds": ["90", "30"], "properties": ["engine, idle, sputter", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["an engine is idling and vibrating", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "people speak as gunfire rings out"], "sample_ids": ["yRx9txMcBl0", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["accelerates, tires, squeals", "gunfire, ring, speak"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "people speak as gunfire rings out"], "sample_ids": ["xM4joTqDVp4", "wqTCwqVRDlk"], "start_seconds": ["160", "80"], "properties": ["background, chirp, birds", "gunfire, ring, speak"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sOa7g-44Dag", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["background, man, spray", "engine, laugh, loud"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uOpoD0gGXcs", "sSMl2vc3ek"], "start_seconds": ["120", "20"], "properties": ["chirps, woman, bird", "loud, multiple, distance"], "captions_pred_video": ["a herd of cows grazing in the field", null], "captions_pred_audio": ["birds are chirping and a man is speaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "people speak as gunfire rings out"], "sample_ids": ["yNtRmrn0io8", "wqTCwqVRDlk"], "start_seconds": ["210", "80"], "properties": ["storm, distance, strike", "gunfire, ring, speak"], "captions_pred_video": ["footage of a house in the middle of the night", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["rain falls and thunder roars", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "some tunes played by whistling"], "sample_ids": ["tQWGZLItBXk", "u6BnG6YZqJ4"], "start_seconds": ["170", "0"], "properties": ["music, person, ding", "tune, play, whistling"], "captions_pred_video": ["worms revolution screenshots", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "small dogs yip and bark sharply"], "sample_ids": ["shmR4OZtzqA", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["man, engine, idle", "bark, yip, sharply"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man speaks while a motor runs", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["water quietly rushes by while birds chirp in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sYITalLZjj4", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["water, rushes, background, birds", "a, scream, girl"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["wind blows and birds chirp", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "people speak as gunfire rings out"], "sample_ids": ["yZp6xizR0yU", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["animal, bleat, cry", "gunfire, ring, speak"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["u21-Z5gJCB8", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["background, voice, man", "motor noise, horn, siren"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a machine clanks and thumps and a male speaks", "a toilet flushes and a female speaks"], "sample_ids": ["sWZzXuWYY", "yaln9y8I7ms"], "start_seconds": ["420", "230"], "properties": ["male, clanks, thumps", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a toilet flushes and a man speaks"], "question": "which entity is a machine?", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "water pouring and bubbling"], "sample_ids": ["yZmhM1HcsyE", "uyRfq-jKPpo"], "start_seconds": ["4", "50"], "properties": ["engine, roar, water", "water, bubbles, pouring"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a small engine idles continuously"], "sample_ids": ["x6ijhqRY38s", "y5WII6cTH7k"], "start_seconds": ["250", "40"], "properties": ["bowl, silverware, man", "engine, idle, continuously"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "an engine is knocking and vibrating "], "question": "which entity is not moving", "label": 1}, {"captions": ["a car accelerates and wind blows", "small dogs yip and bark sharply"], "sample_ids": ["u0TrcHhkPQ", "v-wcQf4BDY0"], "start_seconds": ["20", "120"], "properties": ["accelerates, wind, blows", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["xKB8O8LTs6s", "wz7N8YRy74I"], "start_seconds": ["70", "30"], "properties": ["music, gunfire, explosion", "rooster, crow, background, men"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xyL9F5VrjkE", "su6FAOcOA8c"], "start_seconds": ["20", "4"], "properties": ["engine, run, wind", "engine, idle, woman"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wz7N8YRy74I", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["rooster, crow, background, people", "rustling, ducks, quack"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a duck quacks and a woman speaks"], "question": "which entity has more animals", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "an infant crying frantically"], "sample_ids": ["vZAw4apG0Es", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["people, clock, converse", "cry, infant, frantically"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of the baby crying in the car seat"], "captions_pred_audio": ["a clock is ticking and people are talking", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["w0xsN8X18Y", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["music, surface, rain", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and laughing?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uzQnlJXBbOM", "vb1fPSDI4c"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "multiple, people, yell"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "vehicle engines race around a track as a man commentates"], "sample_ids": ["wAAkbZToh8", "sZPuqDgX2V0"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "commentator, race, track"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man burps and a woman speaks", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a video of a person speaking and laughing?", "label": 0}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "a stream of water runs briefly"], "sample_ids": ["vr8ZXjEBhMQ", "x-PeY8Yb8M4"], "start_seconds": ["150", "300"], "properties": ["sound, distance, engine", "stream, water, run"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sU53zg9Jp7s", "vfYTJq7nU"], "start_seconds": ["380", "130"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "rustling, ducks, quack"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a duck quacks and a woman speaks"], "question": "which entity is about a bird?", "label": 0}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "winds blows roughly as a vehicle races past"], "sample_ids": ["ukg5L09Wpvo", "xjvTpk2Zpr8"], "start_seconds": ["150", "70"], "properties": ["clickety-clack, train, whistle", "wind, blows, vehicle"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zj2R0XoFr5k", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["airplane, fly, overhead", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a train blows its whistle and blows its horn "], "question": "which is a train", "label": 1}, {"captions": ["an infant crying frantically", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zwOBqeFTgiU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["cry, infant, frantically", "stream, water, flow"], "captions_pred_video": ["of the baby crying in the car seat", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["dogs barking and whimpering", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["tIY7qOV3rEM", "tDlfY3nmx1A"], "start_seconds": ["0", "160"], "properties": ["barking, whimpering, dog", "applause, laugh, man"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity is a group of people", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["s4Uz1Ffgo04", "zj2R0XoFr5k"], "start_seconds": ["100", "50"], "properties": ["roars, background, people speaking", "airplane, boy, fly"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vlS6YMeWAPo", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["noise, bleat, call", "engine, laugh, loud"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a goat bleats and birds chirp", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vJvryTwuAV8", "yajyRTUQk3U"], "start_seconds": ["16", "400"], "properties": ["audience, cheer, man", "a woman, something, fried"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a man speaking with light rustling", "water pouring and bubbling"], "sample_ids": ["zOZleIRqZm4", "uyRfq-jKPpo"], "start_seconds": ["80", "50"], "properties": ["light, rustling, man", "water, bubbles, pouring"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "water is running from a faucet"], "question": "which entity is more likely to be in a kitchen", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "wind blowing followed by a zoom"], "sample_ids": ["uEU-Hg5MTN8", "vr8ZXjEBhMQ"], "start_seconds": ["27", "150"], "properties": ["animal, grunts, snorts", "wind, blow, zoom"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "an airplane engine spools and people speak"], "sample_ids": ["v0x1odnXtP0", "wTjoRj1se3U"], "start_seconds": ["210", "390"], "properties": ["keyboard, type, computer", "airplane, engine, spool"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a person is typing on a keyboard", "a jet engine is running and people are talking"], "question": "which is not a type of machine", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "speaking following by laughing and clapping"], "sample_ids": ["x6ijhqRY38s", "u2f5NpsoHBg"], "start_seconds": ["250", "30"], "properties": ["bowl, silverware, man", "person, laugh, clap"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a woman is speaking and a crowd is clapping"], "question": "which person is speaking?", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a car speeding up in the distance"], "sample_ids": ["wIvYjuR3nrg", "u0TrcHhkPQ"], "start_seconds": ["9", "20"], "properties": ["birds, pigeons, vocalize", "distance, car, speed"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", null], "captions_pred_audio": ["birds are chirping and cooing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["vbr9mHKc8WM", "wSVhSdj0F0"], "start_seconds": ["40", "10"], "properties": ["noise, loudness, engine", "horn honks, keys jingle, electronic beep"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine is idling", "a car horn honks and keys jangle with background noise "], "question": "which entity is quieter", "label": 0}, {"captions": ["an airplane accelerates briefly", "birds chirp and objects are moved around"], "sample_ids": ["zjTG0gaGCUI", "yPUYU6t3rwo"], "start_seconds": ["80", "370"], "properties": ["accelerates, airplane, briefly", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a jet engine roars as wind blows ", "insects buzz and a man speaks"], "question": "which entity is moving around objects", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "pigeons vocalize and birds chirp"], "sample_ids": ["w8uLijTqtlU", "uiS58TNyUiw"], "start_seconds": ["70", "430"], "properties": ["wind, microphone, noise", "vocalize, bird, chirp"], "captions_pred_video": ["footage is blurry and shaky", "of the pigeon in the cage"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a clock ticktocks"], "sample_ids": ["wztCSUxOf8", "v-g-j2uTByM"], "start_seconds": ["130", "30"], "properties": ["a crowd, yells, applauds", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "people cheer as a vehicle engine revs"], "sample_ids": ["sHbXC6na9hg", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["a person, saw, wood", "engine revs, vehicle, people"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["an engine is idling and vibrating", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sncRqQ67iJU", "xKB8O8LTs6s"], "start_seconds": ["460", "70"], "properties": ["loud, repeatedly, man", "music, gunfire, explosion"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person is snoring", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "children speak and play together"], "sample_ids": ["xyL9F5VrjkE", "yVVP8XvWJTo"], "start_seconds": ["20", "260"], "properties": ["engine, run, wind", "children, speak, play"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "children are speaking and breathing with background noise "], "question": "which entity is more likely to be in motion", "label": 0}, {"captions": ["water splashes and a motorboat passes as people yell", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w5W5Kqtc8E", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["u6jIvCtKarQ", "sLUnaPT5gM8"], "start_seconds": ["70", "0"], "properties": ["a, man, speaks", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a person using a blender on a stove top", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "paper is crumpling consistently"], "sample_ids": ["wSVhSdj0F0", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["beep, clang, footsteps", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "some men converse over an engine running"], "sample_ids": ["sdXV-ylviw", "sCiy7QS1U"], "start_seconds": ["190", "300"], "properties": ["door, toilet, squeaks", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation?", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a woman speaks happily and an animal chirps"], "sample_ids": ["sOa7g-44Dag", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["audio, scratching, man", "a woman, chirps, animal"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a cat meows as a young woman speaks"], "sample_ids": ["rqfQRErjfk8", "x5cuQjOdM3E"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "cat, meows, young woman"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a cat meows and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["zuua6-5goWw", "rqu8iB22IY"], "start_seconds": ["30", "5"], "properties": ["birds, chirp, quiet, man, speaks", "sound, repeats, laugh"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a dog barks and a man speaks while music plays "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a car accelerates and wind blows"], "sample_ids": ["tDVADusiIoc", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["wind, radio, waves", "accelerates, wind, blows"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "paper folding and crinkling"], "sample_ids": ["u5RmF3c3Aw", "zPpG3RD8lSs"], "start_seconds": ["60", "20"], "properties": ["engine, car, zoom", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "the wind blows and a mouse clicks "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "some men converse over an engine running"], "sample_ids": ["soTOh3zYJfY", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["vehicle, skid, tires", "men, converse, engine"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["t25U-v4k4ts", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["a, chirps, bird", "engine, laugh, loud"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["paper is crumpling consistently", "wind blowing followed by a zoom"], "sample_ids": ["v5cSxLaHADY", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "wind, blow, zoom"], "captions_pred_video": ["footage of the person holding a pair of scissors", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["paper is crumpled and crinkled", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vmrxwuAMb2I", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["a dog, inhales, exhales", "animal, grunts, snorts"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a dog barks and growls", "a woman is speaking and a baby is crying"], "question": "which animal is grunting and snorting", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["ukxt9I7eMMg", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["food, pan, cook", "a woman, something, fried"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking while food is frying in the background"], "question": "what is being cooked in the pan?", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zVacuqSb4LI", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["blares, fades, train", "applause, audience, yells"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["tDlysoZiA1I", "ziUT9IFTkjg"], "start_seconds": ["0", "10"], "properties": ["animal, grunt, multiple", "background, birds, rustling"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "birds are chirping and a chime is ringing "], "question": "which entity has a background of birds chirping", "label": 1}, {"captions": ["a rumble grows louder", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y4MY9mp8-TA", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["loudness, increase, rumble", "wind, blow, vehicle"], "captions_pred_video": ["a helicopter flying in the sky", null], "captions_pred_audio": ["a helicopter flies overhead ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["continuous sneezing together with speech", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x4dZyf9Gbj0", "xKB8O8LTs6s"], "start_seconds": ["130", "70"], "properties": ["continuous, sneeze, speech", "music, gunfire, explosion"], "captions_pred_video": ["footage is blurry and out of focus", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman sneezes and speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a man speaks as a motor runs in the background"], "sample_ids": ["w34HjHr6gAY", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["beeps, hit, woman", "background, motor, run"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vddP56-ogds", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["liquid, laughs, man", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a infant makes noise and is excited"], "sample_ids": ["vBslzh7saPw", "wIJK3-5y0kA"], "start_seconds": ["90", "30"], "properties": ["engine, spools, takes", "noise, excited, infant"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a baby cries and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["children speak and play together", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yVVP8XvWJTo", "uYT5gxnyMWM"], "start_seconds": ["260", "50"], "properties": ["children, speak, play", "female, spraying, scream"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uZesmtKZGSw", "tiDFTC-5vU"], "start_seconds": ["250", "30"], "properties": ["car, track, man", "male, duck, laugh"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has a man speaking to a duck?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a child yells and another yells"], "sample_ids": ["vs65y4qmyBE", "vMDHu7Lxcgw"], "start_seconds": ["340", "410"], "properties": ["engine, run, man", "two, yell, child"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a boy playing on a trampoline in the backyard"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a child is shouting"], "question": "which entity is more active", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uiS58TNyUiw", "uYT5gxnyMWM"], "start_seconds": ["430", "50"], "properties": ["vocalize, bird, chirp", "female, spraying, scream"], "captions_pred_video": ["of the pigeon in the cage", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "water flows and trickles"], "sample_ids": ["zkKdxzNC97Y", "tB7hWb9gTuQ"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "water, flow, trickle"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a door is opened and closed", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a child speaks in closed space"], "sample_ids": ["w5W5Kqtc8E", "yW6FWLSLkx4"], "start_seconds": ["100", "40"], "properties": ["wind, engine, scream", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a car accelerates and wind blows"], "sample_ids": ["wyllXV6PjKo", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["a baby, a woman, a man", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a man speaks as a motor runs in the background"], "sample_ids": ["xjhAnI2q6hM", "xZepNM9qcRA"], "start_seconds": ["6", "30"], "properties": ["wind, blow, loudly", "background, motor, run"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "multiple beeps are followed by a squawk and a child speaking"], "sample_ids": ["vbpKkWvfOu4", "w34HjHr6gAY"], "start_seconds": ["560", "30"], "properties": ["a, woman, man", "beeps, squawk, child speaking"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a beep sounds followed by a child speaking"], "question": "which entity has a child speaking?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "rain falls on a surface as men speak and music plays"], "sample_ids": ["wRV8yMk886E", "w0xsN8X18Y"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "music, surface, rain"], "captions_pred_video": ["two cars are parked in a parking lot at night", null], "captions_pred_audio": ["a man speaks followed by a loud burst", "a man is speaking while a motorboat is moving in the background "], "question": "which entity has a nozzle spraying liquid?", "label": 0}, {"captions": ["bees buzz and wind blows", "a car speeding up in the distance"], "sample_ids": ["tMJne1a4AFI", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["bees buzz, wind blows, bees", "distance, car, speed"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "tapping occurs then a baby cries"], "sample_ids": ["xfudFO976zE", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["animal, bleats, cry", "a, cry, baby"], "captions_pred_video": ["footage is blurry and shaky", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a man speaks over intermittent keyboard taps"], "sample_ids": ["sG7TyPnFDR0", "tw76HGONaKg"], "start_seconds": ["180", "570"], "properties": ["beeps, machine, smoke alarm", "audio, man, keyboard"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["y682ml90jGw", "su6FAOcOA8c"], "start_seconds": ["11", "4"], "properties": ["beeps, series, electronic", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "a train horn blows as it passes by"], "sample_ids": ["vms5XGTDVQc", "zVacuqSb4LI"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "horn, blows, train"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["paper is crumpled and crinkled", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["yLy-WycbVVE", "vzceMbklWc"], "start_seconds": ["30", "180"], "properties": ["background, people, talk", "water, faucet, sink"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "water is running and a man is speaking"], "question": "which entity has a sink?", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "people speak as gunfire rings out"], "sample_ids": ["vqZuVbG6-HI", "wqTCwqVRDlk"], "start_seconds": ["130", "80"], "properties": ["background, male, female", "gunfire, ring, speak"], "captions_pred_video": ["footage is blurry because it's raining outside", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking and a gun is fired"], "question": "which entity has more gunfire", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["vXlk0lIQBFo", "wnpJndXuxLc"], "start_seconds": ["470", "50"], "properties": ["wind, talk, vocalize", "beeps, loud, whistle"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a baby cries and a woman moans", "a woman talking as an infant is crying"], "sample_ids": ["smDKStoHBJo", "tMbMDvT50j8"], "start_seconds": ["0", "12"], "properties": ["a, cry, woman", "a, talk, infant"], "captions_pred_video": ["a man holding a crying baby in his arms", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a baby cries and a woman speaks"], "question": "which entity has a woman talking to an infant?", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["spYNpeN7rPY", "uEU-Hg5MTN8"], "start_seconds": ["1", "27"], "properties": ["a clock, ticktock, man", "a woman, laughs, animal"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a clock in it?", "label": 0}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sEprKHm8Sj8", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["car, tires, slows", "airplane, boy, fly"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "small dogs yip and bark sharply"], "sample_ids": ["zofjfKhqLk8", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["noise, stop, motor", "bark, yip, sharply"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["an insect buzzes around continuously", "a car accelerates and wind blows"], "sample_ids": ["v25l1jef3JY", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["buzzes, continuously, insect", "accelerates, wind, blows"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xyx6eNVEYRY", "xBxDz0CFVn0"], "start_seconds": ["380", "30"], "properties": ["loud, engine, muffles", "stream, water, flow"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage is blurry and out of focus"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is flowing", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "an insect buzzes around continuously"], "sample_ids": ["vhJWZheqaE", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["water drains unevenly, toilet flushes, water drains", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a toilet is flushed", "a fly is buzzing around a microphone "], "question": "which entity is a source of noise", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a car accelerates and wind blows"], "sample_ids": ["vcmWSmvti8", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["music, man, fire", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a duck quacks continuously"], "sample_ids": ["yZp6xizR0yU", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "quacks, continuously, duck"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a woman speaks happily and an animal chirps"], "sample_ids": ["sK4u5T8hW78", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["a, car, pass", "a woman, chirps, animal"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["some men converse over an engine running", "a vehicle is skidding and squealing tires"], "sample_ids": ["sCiy7QS1U", "soTOh3zYJfY"], "start_seconds": ["300", "40"], "properties": ["men, converse, engine", "vehicle, skid, tires"], "captions_pred_video": [null, "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a man speaks followed by another man speaking outside"], "sample_ids": ["v-wcQf4BDY0", "viuTg1M-dqg"], "start_seconds": ["120", "30"], "properties": ["bark, yip, sharply", "two men, speak, follow"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["long loud burping by a man", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xmiUIOhtZyQ", "wDVMhEdTiVw"], "start_seconds": ["60", "30"], "properties": ["loud, burp, man", "gun, shoot, water"], "captions_pred_video": ["homer simpson drinking a beer", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person burps and music plays in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not followed by water sloshing nearby?", "label": 0}, {"captions": ["a person uses a saw to cut some wood", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sHbXC6na9hg", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["a person, saw, wood", "a woman, something, fried"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "- a woman cooking in the kitchen"], "captions_pred_audio": ["an engine is idling and vibrating", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vzxHnu-SFEw", "uEU-Hg5MTN8"], "start_seconds": ["80", "27"], "properties": ["two objects, woman, speak", "animal, grunts, snorts"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["people speak and tapping occurs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tFCUUGdREgA", "wDVMhEdTiVw"], "start_seconds": ["70", "30"], "properties": ["people, tap, speak", "gun, shoot, water"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause water to slosh", "label": 1}, {"captions": ["a child speaks in closed space", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yW6FWLSLkx4", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["child, space, speak", "female, spraying, scream"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a infant makes noise and is excited"], "sample_ids": ["zgUgkpk78xU", "wIJK3-5y0kA"], "start_seconds": ["70", "30"], "properties": ["clinking, humming, horn", "noise, excited, infant"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "some tunes played by whistling"], "sample_ids": ["w34HjHr6gAY", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["beeps, hit, woman", "tune, play, whistling"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["an airplane engine runs", "some men converse over an engine running"], "sample_ids": ["yVPZ2MNWpms", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["engine, airplane, runs", "men, converse, engine"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying while a woman speaks", "a beep occurs briefly"], "sample_ids": ["yhQ2Lg-7qDY", "xtWeJ56-U-g"], "start_seconds": ["130", "20"], "properties": ["food, woman, speak", "beep, occur, briefly"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8"], "captions_pred_audio": ["a faucet is running and a man is speaking", "mechanisms are ticking and a beep is heard "], "question": "which entity is silent", "label": 1}, {"captions": ["a toilet flushes and water drains", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sfAvvZwdLCY", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["water drains, flushes, water", "three men, wind, flow"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing", "label": 1}, {"captions": ["a man is filing a hard object", "water is sprayed across a hard surface"], "sample_ids": ["vveS8HT7Uog", "sQwlkXjQabo"], "start_seconds": ["100", "10"], "properties": ["a man, hard, object", "water, spray, surface"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "spraying followed by silence"], "question": "which object is harder to file", "label": 0}, {"captions": ["water flows as men speak and yell", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vJ7JPEFhyLA", "tdWhHV3X25Q"], "start_seconds": ["16", "60"], "properties": ["water, flow, men", "applause, audience, yells"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "vehicles pass by on a roadway"], "sample_ids": ["vveS8HT7Uog", "tgbONvsP47Y"], "start_seconds": ["100", "0"], "properties": ["a man, objects, speak", "pass, vehicle, roadway"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a duck quacks continuously"], "sample_ids": ["xSKJGCItUWE", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["engine, work, child", "quacks, continuously, duck"], "captions_pred_video": ["footage of the helicopter flying in the room", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a vehicle engine runs as a siren and horn sound", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u--KhUW8l1Y", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["sound, vehicle, horn", "airplane, boy, fly"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a clock ticktocks continuously", "someone is typing on a computer keyboard"], "sample_ids": ["vlJS7LN2XyM", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["ticktocks, clock, ticktocks continuously", "keyboard, type, computer"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "how to make money on youtube in spanish"], "captions_pred_audio": ["a ticktock of a clock", "a person is typing on a keyboard"], "question": "which object is moving", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["xKB8O8LTs6s", "vVhthZ45k3Y"], "start_seconds": ["70", "30"], "properties": ["music, gunshots, explosion", "cat, purr, hiss"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage is blurry and out of focus"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and a cat is meowing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks as a machine runs", "vehicles pass by on a roadway"], "sample_ids": ["vD6lYD1l0BY", "tgbONvsP47Y"], "start_seconds": ["330", "0"], "properties": ["a, machine, run", "pass, vehicle, roadway"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains", "plastic is tapped on while someone speaks"], "sample_ids": ["sfAvvZwdLCY", "wvKpEYswXO0"], "start_seconds": ["20", "150"], "properties": ["water drains, flushes, water", "plastic, tap, speak"], "captions_pred_video": ["footage of the toilet in the bathroom", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a baby laugh at a sputter"], "sample_ids": ["ziUT9IFTkjg", "sLUnaPT5gM8"], "start_seconds": ["10", "0"], "properties": ["background, birds, rustling", "laugh, sputter, baby"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more likely to be in a forest?", "label": 0}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a duck quacks loudly and continuously"], "sample_ids": ["sjlVMgdGSK0", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["car, revving, loudly", "loud, continuous, quacks"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "winds blows roughly as a vehicle races past"], "sample_ids": ["sAam2NqGhLY", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["snoring, breathing, child", "wind, blows, vehicle"], "captions_pred_video": ["of a little girl sleeping on a couch", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a person is snoring", "a jet engine roars and wind blows "], "question": "which entity is not a person", "label": 1}, {"captions": ["a child yells and another yells", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vMDHu7Lxcgw", "xBxDz0CFVn0"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "stream, water, flow"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["uiItxDsDMFI", "vlJS7LN2XyM"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "background, clocks, ticking"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a saw is being used with background noise ", "a ticktock of a clock"], "question": "which entity is a video of a person sawing wood?", "label": 0}, {"captions": ["a woman talks while a baby cries and a man whispers", "a stream of water flows as people talk and wind blows"], "sample_ids": ["smDKStoHBJo", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["a, talk, baby, cry", "stream, water, flow"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["a male speaks and another male speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["viuTg1M-dqg", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["two males, speaking, male", "water, radio, man"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a person screams glaringly", "water is sprayed across a hard surface"], "sample_ids": ["xC8kbrKJmco", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["glaringly, screams, person", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a goat is bleating ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a weapon fires multiple times", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sMC07Ucy7kg", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["weapon, fire, multiple", "engine, accelerate, idle"], "captions_pred_video": ["footage is from a car's point of view", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "an engine is idling"], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a goat screams and people speak in the background", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xC8kbrKJmco", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["background, goat, scream", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a machine beeps continuously", "paper is crumpling consistently"], "sample_ids": ["y682ml90jGw", "v5cSxLaHADY"], "start_seconds": ["11", "0"], "properties": ["beeps, machine, continuously", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a beeping sound is being made ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a child speaks in closed space"], "sample_ids": ["zY3icUyMdh8", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["dog, bark, engine", "child, space, speak"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a male speaks and another male speaks", "an infant crying frantically"], "sample_ids": ["viuTg1M-dqg", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "cry, infant, frantically"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "paper folding and crinkling"], "sample_ids": ["tK4VlLsNxak", "zPpG3RD8lSs"], "start_seconds": ["120", "20"], "properties": ["a, dial, telephone", "paper, fold, crinkle"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "the wind blows and a mouse clicks "], "question": "which is not a rotary telephone", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sG7TyPnFDR0", "wDVMhEdTiVw"], "start_seconds": ["180", "30"], "properties": ["beeps, machine, smoke alarm", "gun, shoot, water"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xNMovAf3o50", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["rain, thunder, music", "airplane, boy, fly"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xhmRY9yhC7c", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["a, laugh, infant", "rustling, ducks, quack"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a woman and an infant?", "label": 0}, {"captions": ["wind blowing followed by a zoom", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vr8ZXjEBhMQ", "wqZ135Ssz0"], "start_seconds": ["150", "60"], "properties": ["wind, blow, zoom", "two men, woman, birds"], "captions_pred_video": ["is taken from a motorcycle's point of view", null], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["rustling with distant murmuring", "small dogs yip and bark sharply"], "sample_ids": ["wnNNcxAPwGQ", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["sound, distance, rustling", "bark, yip, sharply"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vJvryTwuAV8", "zl9Dqx-j7q4"], "start_seconds": ["16", "6"], "properties": ["audience, cheer, man", "engine, laugh, loud"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a toilet flushes and a female speaks"], "sample_ids": ["tOSWIURC-4", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["engine, work, nearby", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a lawn mower is running ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a person is snoring while sleeping"], "sample_ids": ["sjlVMgdGSK0", "vJrjSeP17yE"], "start_seconds": ["30", "40"], "properties": ["car, revving, loudly", "a person is sleeping, snoring, person"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a clock ticktocks"], "sample_ids": ["zF8yoL0rkbI", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the traffic on the street at night", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "paper is crumpling consistently"], "sample_ids": ["wvKpEYswXO0", "v5cSxLaHADY"], "start_seconds": ["150", "0"], "properties": ["sound, water, running", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["some people speak", "winds blows roughly as a vehicle races past"], "sample_ids": ["vbZ-0lGPneg", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "wind, blows, vehicle"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["two frogs croak at each other", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zg0X6BnhOLQ", "vb1fPSDI4c"], "start_seconds": ["410", "30"], "properties": ["two frogs, croak, at each other", "multiple, people, yell"], "captions_pred_video": ["footage of lightning in the sky at night", null], "captions_pred_audio": ["a frog is croaking", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows and women speak as livestock vocalizes", "water is sprayed across a hard surface"], "sample_ids": ["vXlk0lIQBFo", "sQwlkXjQabo"], "start_seconds": ["470", "10"], "properties": ["wind, speak, vocalize", "water, spray, surface"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y1saVTXsKwc", "uEU-Hg5MTN8"], "start_seconds": ["80", "27"], "properties": ["a, dog, talk", "a woman, laughs, animal"], "captions_pred_video": ["a dog playing with a pink ball", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a dog barks and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a woman talking to an animal?", "label": 0}, {"captions": ["a jet engine spools up and takes off", "an adult male speaks and dials a rotary phone"], "sample_ids": ["vBslzh7saPw", "tK4VlLsNxak"], "start_seconds": ["90", "120"], "properties": ["engine, spools, takes", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and using a sewing machine"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["siJFXfGWgDk", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["a, bird, vehicle", "people, applaud, hoot"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a large crowd cheers and applauds"], "sample_ids": ["ugHJF0hfYkg", "rqfQRErjfk8"], "start_seconds": ["10", "170"], "properties": ["engine, running, continuously", "crowd, cheers, applauds"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["a helicopter is flying overhead ", "a crowd of people clapping and cheering"], "question": "which entity is a human activity", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "a man speaks as a car is passing by"], "sample_ids": ["tgbONvsP47Y", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["noise, truck, accelerate", "a, car, pass"], "captions_pred_video": ["footage of a fire truck entering a garage", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is driving on the road ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a vehicle", "label": 1}, {"captions": ["white noise and birds chirping", "a propeller rotates loudly and intensely"], "sample_ids": ["wRBHTgrbiwg", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["noise, white, chirping", "loud, intense, propeller"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a helicopter is flying overhead "], "question": "which noise is louder", "label": 1}, {"captions": ["a child babbles as a woman speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["wEBlkGWVWwE", "wqZ135Ssz0"], "start_seconds": ["260", "60"], "properties": ["a, babble, woman", "two men, woman, birds"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["an adult woman and an adult man speak", "people applaud and hoot and chat quietly"], "sample_ids": ["zTLVJCo4WEE", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["two people, adult, speak", "people, applaud, hoot"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xfaoyyzw2WU", "su6FAOcOA8c"], "start_seconds": ["180", "4"], "properties": ["loud, jet engine, roar", "engine, idle, woman"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a woman is speaking and a subway train is moving "], "question": "which engine is quieter", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "an airplane engine spools and people speak"], "sample_ids": ["sjlVMgdGSK0", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["accelerates, vehicle, race car", "airplane, engine, spool"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine is running and people are talking"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w5W5Kqtc8E", "wz7N8YRy74I"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a woman speaks followed by another woman whimpering and speaking"], "sample_ids": ["xBxDz0CFVn0", "xOZfdgAgJ9o"], "start_seconds": ["30", "40"], "properties": ["wind, chatter, people", "woman, whimpering, speaking"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a woman talking to a man in a doctor's office"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wsHBIgzs9Fs", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["horn, continuous, buzzing", "stream, water, flow"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage is blurry and out of focus"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a drill runs and two people laugh"], "sample_ids": ["u7C-AEBQM", "tEE3MpBt1sg"], "start_seconds": ["30", "50"], "properties": ["ticks, rhythmic, quiet", "two people, laugh, drill"], "captions_pred_video": [null, "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a ticktock of a clock", "people are laughing breathing and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "an airplane flies overhead as a woman speaks"], "sample_ids": ["vh30P49Po6s", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["loud, continuous, quacks", "airplane, fly, overhead"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a duck is quacking loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying overhead", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a man speaks with another voice speaking in the background"], "sample_ids": ["su6FAOcOA8c", "u21-Z5gJCB8"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "background, voice, man"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a church bell rings several times", "a child speaks in closed space"], "sample_ids": ["sUVVjE3Ucp8", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["ring, bell, several", "child, space, speak"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a church bell is ringing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a car speeding up in the distance"], "sample_ids": ["tIY7qOV3rEM", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "distance, car, speed"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a baby cries and a woman moans", "paper is crumpling consistently"], "sample_ids": ["smDKStoHBJo", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["a, cry, woman", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an engine runs and a man speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yT5WfYMRr-U", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["engine, run, man", "a woman, something, fried"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["xvDdE3zNf8Y", "sLUnaPT5gM8"], "start_seconds": ["120", "0"], "properties": ["a, female, speaks", "loud, laughter, intermittent"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman speaks and crumples paper", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a piece of wood is being placed down and sawed", "an infant crying and a woman speaking with some distant murmuring"], "sample_ids": ["uiItxDsDMFI", "smDKStoHBJo"], "start_seconds": ["30", "0"], "properties": ["wood, piece, saw", "a, infant, speaking"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a saw is being used with background noise ", "a baby is crying and a woman is speaking"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zgUgkpk78xU", "wDVMhEdTiVw"], "start_seconds": ["70", "30"], "properties": ["horn, bells, ring", "gun, shoot, water"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a warning", "label": 0}, {"captions": ["a man speaks then multiple motorcycles pass by", "water splashes as an animal walks through"], "sample_ids": ["zcDwZ6W7E3E", "w1ir-sZ3Im8"], "start_seconds": ["180", "90"], "properties": ["a, man, speak", "animal, water, splashes"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "water splashes and gurgles as people speak"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["water flows as a woman laughs and a man speaks", "some men converse over an engine running"], "sample_ids": ["vddP56-ogds", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["water, flow, laugh", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man speaking?", "label": 0}, {"captions": ["someone whistles briefly", "a car speeding up in the distance"], "sample_ids": ["uFoga8sHpiw", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["sound, duration, pitch", "distance, car, speed"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "vehicles pass by on a roadway"], "sample_ids": ["zl9Dqx-j7q4", "tgbONvsP47Y"], "start_seconds": ["6", "0"], "properties": ["motors rev, laugh, loudly", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a jet engine roars ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "some men converse over an engine running"], "sample_ids": ["zofjfKhqLk8", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["background, metal, clings", "men, converse, engine"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a machine?", "label": 0}, {"captions": ["a horn blasts loudly as a train passes", "a man speaks as a vehicle engine idles"], "sample_ids": ["zsLxS-uLJTw", "shmR4OZtzqA"], "start_seconds": ["20", "30"], "properties": ["horn, blast, train", "man, engine, idle"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a man speaks while a motor runs"], "question": "which entity is stationary", "label": 1}, {"captions": ["water flows followed by women screaming", "water is sprayed across a hard surface"], "sample_ids": ["w5W5Kqtc8E", "sQwlkXjQabo"], "start_seconds": ["100", "10"], "properties": ["water, flow, women", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "spraying followed by silence"], "question": "which entity is a video of water flowing?", "label": 0}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "water is sprayed across a hard surface"], "sample_ids": ["y8WEcpOlT3I", "sQwlkXjQabo"], "start_seconds": ["40", "10"], "properties": ["harsh, wind, blows", "water, spray, surface"], "captions_pred_video": ["on how to use a sewing machine youtube", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a clock ticktocks briefly", "a man is snoring loudly and repeatedly"], "sample_ids": ["u7C-AEBQM", "sncRqQ67iJU"], "start_seconds": ["30", "460"], "properties": ["ticktocks, clock, ticktocks briefly", "loud, repeatedly, man"], "captions_pred_video": [null, "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a ticktock of a clock", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "multiple people speak and children yell while water gurgles"], "sample_ids": ["rqu8iB22IY", "vb1fPSDI4c"], "start_seconds": ["5", "30"], "properties": ["sound, repeats, laugh", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking?", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "a fly buzzes around loudly as birds chirp"], "sample_ids": ["yYJksgsxx5U", "uJV8NDaHqqk"], "start_seconds": ["30", "100"], "properties": ["audio, clicks, scraping", "loud, fly, chirp"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "a bee hive in a wooden box"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a swarm of bees buzzing around"], "question": "which entity is louder", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a propeller moves loudly nearby"], "sample_ids": ["sHbXC6na9hg", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["a person, saw, wood", "loud, propeller, move"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["an engine is idling and vibrating", "a helicopter is flying overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a toilet flushes and water drains"], "sample_ids": ["u--KhUW8l1Y", "sfAvvZwdLCY"], "start_seconds": ["0", "20"], "properties": ["horn, siren, life", "water drains, flushes, water"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a person speaks as a cage rattles, birds chips and flap wings in the background", "birds chirp and a man speaks"], "sample_ids": ["v0wPrLBI3hg", "zuua6-5goWw"], "start_seconds": ["30", "30"], "properties": ["background, person, cage", "chirp, speak, bird"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "birds are chirping and a man is speaking with background noise "], "question": "which entity has a person speaking and birds chirping?", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "birds chirp and objects are moved around"], "sample_ids": ["xKB8O8LTs6s", "yPUYU6t3rwo"], "start_seconds": ["70", "370"], "properties": ["music, gunfire, explosion", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "insects buzz and a man speaks"], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wTideSjRFS0", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["food, sizzle, woman", "engine, revs, vehicle"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a duck quacks continuously"], "sample_ids": ["vddP56-ogds", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["water, splash, person, laugh", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "wind blows as people chatter quietly"], "sample_ids": ["u2f5NpsoHBg", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "wind, chatter, people"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["spYNpeN7rPY", "uEU-Hg5MTN8"], "start_seconds": ["1", "27"], "properties": ["a clock, ticktock, man", "animal, grunts, snorts"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a duck quacks continuously"], "sample_ids": ["weDbePuc-Xc", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["cartoon character, music, vocalize", "quacks, continuously, duck"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a duck is quacking loudly"], "question": "which entity is a duck?", "label": 1}, {"captions": ["bees buzz and wind blows", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["tMJne1a4AFI", "tw76HGONaKg"], "start_seconds": ["0", "570"], "properties": ["bees buzz, wind blows, bees", "A, game, keyboard"], "captions_pred_video": ["a swarm of bees on the ground", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man speaks and types on a computer keyboard "], "question": "which entity is not a video game?", "label": 0}, {"captions": ["a drill runs and two people laugh", "a clock ticktocks"], "sample_ids": ["tEE3MpBt1sg", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "people applaud and hoot and chat quietly"], "sample_ids": ["tZGN5a7ybxo", "wwyfGO2J4"], "start_seconds": ["60", "90"], "properties": ["ring, train, horn", "people, applaud, hoot"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", null], "captions_pred_audio": ["a train is moving and blowing its horn ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["tQWGZLItBXk", "tw76HGONaKg"], "start_seconds": ["170", "570"], "properties": ["music, kid, speak", "A, game, keyboard"], "captions_pred_video": ["worms revolution screenshots", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man speaks and types on a computer keyboard "], "question": "which entity has a keyboard?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["tDVADusiIoc", "x9JovgqUcs"], "start_seconds": ["60", "500"], "properties": ["water, radio, man", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man speaks and types on a keyboard"], "question": "which entity is indoors", "label": 1}, {"captions": ["a man talks as several small engines run", "a duck quacks continuously"], "sample_ids": ["u9A6VZQCZpU", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["ul60S8TXDA8", "tDVADusiIoc"], "start_seconds": ["60", "60"], "properties": ["sound, distance, bell", "water, radio, man"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a weapon fires multiple times", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["sMC07Ucy7kg", "y2bVZ7rz-5M"], "start_seconds": ["10", "280"], "properties": ["weapon, fire, multiple", "motor noise, horn, siren"], "captions_pred_video": ["footage is from a car's point of view", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is not a weapon?", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["xjvTpk2Zpr8", "vXlk0lIQBFo"], "start_seconds": ["70", "470"], "properties": ["wind, blows, vehicle", "wind, speak, vocalize"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a jet engine roars and wind blows ", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is more calm", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "wind blows as people chatter quietly"], "sample_ids": ["zofjfKhqLk8", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "wind, chatter, people"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage is blurry and out of focus"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vf44CgrjT0A", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["loud, long, person", "music, gunfire, explosion"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a loud burp", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a door slams shut roughly", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zkKdxzNC97Y", "vb1fPSDI4c"], "start_seconds": ["27", "30"], "properties": ["a door, slams, shut", "multiple, people, yell"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a woman speaks happily and an animal chirps"], "sample_ids": ["tQWGZLItBXk", "uWAAAL4CIoc"], "start_seconds": ["170", "0"], "properties": ["voice, music, whoosh", "a woman, chirps, animal"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a dog is barking "], "question": "which entity has a woman speaking and an animal chirps?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "some men converse over an engine running"], "sample_ids": ["s4Uz1Ffgo04", "sCiy7QS1U"], "start_seconds": ["100", "300"], "properties": ["water, rushes, vehicle", "men, converse, engine"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a vehicle zooming past?", "label": 0}, {"captions": ["multiple motorcycles pass by as a man speaks", "several insects fly while two men talk"], "sample_ids": ["zcDwZ6W7E3E", "s-T9OVOiMLo"], "start_seconds": ["180", "330"], "properties": ["man, speak, motorcycles", "several, fly, men"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a man speaking to multiple motorcycles?", "label": 0}, {"captions": ["water pouring and bubbling", "winds blows roughly as a vehicle races past"], "sample_ids": ["uyRfq-jKPpo", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["water, bubbles, pouring", "wind, blows, vehicle"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["water is running from a faucet", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a diesel truck engine runs while wind blows", "a man speaks as a car is passing by"], "sample_ids": ["xyL9F5VrjkE", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["engine, run, wind", "a, car, pass"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a woman and man speak while food is frying", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zk-xJGQU8-4", "wqZ135Ssz0"], "start_seconds": ["130", "60"], "properties": ["food, man, woman", "two men, woman, birds"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["people speak then an engine runs", "a woman speaks happily and an animal chirps"], "sample_ids": ["uMTTDZ2mb4", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["engine, run, people", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is about a woman speaking and an animal chirping?", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "vehicles pass by on a roadway"], "sample_ids": ["tqR406bGiE", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["flush, water, gurgle", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a toilet is flushed", "a car is driving on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a dog barks and whimpers", "water flows and trickles"], "sample_ids": ["sShpyu2l4YQ", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "water, flow, trickle"], "captions_pred_video": ["the puppies are playing with a toy", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a dog is barking and growling", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w2JXXIAdUdg", "wDVMhEdTiVw"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "gun, shoot, water"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause injury", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "wind blows as people chatter quietly"], "sample_ids": ["w2M4i1mklOA", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "wind, chatter, people"], "captions_pred_video": ["footage of an antique clock", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "water is sprayed across a hard surface"], "sample_ids": ["su6FAOcOA8c", "sQwlkXjQabo"], "start_seconds": ["4", "10"], "properties": ["engine, run, woman", "water, spray, surface"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a child speaks in closed space"], "sample_ids": ["tPJvjq9QePY", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["animal, bleat, moo", "child, space, speak"], "captions_pred_video": ["a dog and a sheep in a barn", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a baby cries and a man speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vSeGhaZt-aI", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["water, bubbles, run", "a woman, something, fried"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wyllXV6PjKo", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["a kid, talk, cry", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a woman speaks and a baby cries", "a goat bleats and birds chirp"], "question": "which entity is about animals?", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["y2ZBGpgbhHM", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["dog, chirp, breathe", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "people cheer as a vehicle engine revs"], "sample_ids": ["vuUVPzd2FXw", "xjhAnI2q6hM"], "start_seconds": ["160", "6"], "properties": ["a, steam, release", "engine revs, vehicle, people"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a child speaks in closed space"], "sample_ids": ["y8WEcpOlT3I", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["harsh, wind, blows", "child, space, speak"], "captions_pred_video": ["on how to use a sewing machine youtube", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vzxHnu-SFEw", "ukg5L09Wpvo"], "start_seconds": ["80", "150"], "properties": ["two objects, woman, speak", "clickety-clack, train, whistle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["goats bleat and metal clings", "someone is typing on a computer keyboard"], "sample_ids": ["tH17JPjDPnc", "v0x1odnXtP0"], "start_seconds": ["260", "210"], "properties": ["bleat, metal, clings", "keyboard, type, computer"], "captions_pred_video": ["feed of the goats eating hay in the barn", "how to make money on youtube in spanish"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a dog barks and whimpers", "people speak in a closed space"], "sample_ids": ["sShpyu2l4YQ", "sTpirNYo8vQ"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "people, space, speak"], "captions_pred_video": ["the puppies are playing with a toy", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking while a car is revving and accelerating "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tOSWIURC-4", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["noise, engine, revs", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a lawn mower is running ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a man speaks as a car is passing by"], "sample_ids": ["yZmhM1HcsyE", "sK4u5T8hW78"], "start_seconds": ["4", "30"], "properties": ["engine, roar, water", "a, car, pass"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["people speak then an engine runs", "people cheer as a vehicle engine revs"], "sample_ids": ["uMTTDZ2mb4", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["engine, run, people", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity shows people speaking?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "people cheer as a vehicle engine revs"], "sample_ids": ["zY3icUyMdh8", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["dog, bark, engine", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a man speaks as a car is passing by"], "sample_ids": ["w0xsN8X18Y", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["music, surface, rain", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["birds fly and flutter around", "water splashing and a person laughs in the distance then a man speaks nearby"], "sample_ids": ["wGKgwOP3h30", "vddP56-ogds"], "start_seconds": ["30", "30"], "properties": ["fly, flutter, around", "water, splash, person, laugh"], "captions_pred_video": ["of the pigeons in the coop", null], "captions_pred_audio": ["pigeons coo and flap their wings", "water is running and gurgling and a man is speaking"], "question": "which entity is more active", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a man sprays as a scraping occurs in the background"], "sample_ids": ["y4tPJXBKDig", "sOa7g-44Dag"], "start_seconds": ["20", "30"], "properties": ["a, noise, talk", "background, man, spray"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a man is speaking and rubbing his hands together "], "question": "which entity is a person", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["zcDwZ6W7E3E", "viuTg1M-dqg"], "start_seconds": ["180", "30"], "properties": ["man, speak, motorcycles", "two men, speak, follow"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xV7Mg1QucSc", "vb1fPSDI4c"], "start_seconds": ["14", "30"], "properties": ["alarm, ticktocks, laughs", "multiple, people, yell"], "captions_pred_video": ["a cuckoo clock hanging on the wall", null], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "pigeons vocalize and birds chirp"], "sample_ids": ["yYEVLuqEytU", "uiS58TNyUiw"], "start_seconds": ["40", "430"], "properties": ["animal, pig, background", "vocalize, bird, chirp"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of the pigeon in the cage"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an insect buzzes around continuously", "an infant crying as a woman laughs"], "sample_ids": ["v25l1jef3JY", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["buzzes, continuously, insect", "a, laugh, infant"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a baby cries and a woman speaks"], "question": "which entity is not a person", "label": 0}, {"captions": ["a man speaks followed by another man speaking outside", "water flows and trickles"], "sample_ids": ["viuTg1M-dqg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["two men, speak, follow", "water, flow, trickle"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a drill runs and two people laugh", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tEE3MpBt1sg", "vfYTJq7nU"], "start_seconds": ["50", "130"], "properties": ["two people, laugh, drill", "rustling, ducks, quack"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a duck quacks and a woman speaks"], "question": "which entity is about a drill?", "label": 0}, {"captions": ["a toilet flushes and water sputters as it drains", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["smGI3C1NZc", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["water, drain, toilet", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a dog is whimpering"], "question": "which entity is a video of a toilet?", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "vehicles pass by on a roadway"], "sample_ids": ["sQwlkXjQabo", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["liquid, surface, spray", "pass, vehicle, roadway"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of a fire truck entering a garage"], "captions_pred_audio": ["spraying followed by silence", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as a car is passing by", "an infant crying as a woman laughs"], "sample_ids": ["sK4u5T8hW78", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["a, car, pass", "a, laugh, infant"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["w5W5Kqtc8E", "vlS6YMeWAPo"], "start_seconds": ["100", "40"], "properties": ["water, splashes, motorboat", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a machine runs continuously", "wind blowing followed by a zoom"], "sample_ids": ["wdXV3Pv0jiY", "vr8ZXjEBhMQ"], "start_seconds": ["11", "150"], "properties": ["machine, running, continuously", "wind, blow, zoom"], "captions_pred_video": ["footage is blurry and shaky", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not running continuously", "label": 1}, {"captions": ["scraping and female speech with distant music", "a woman speaks and is crumpling paper"], "sample_ids": ["yHeVV-xeOxQ", "xvDdE3zNf8Y"], "start_seconds": ["130", "120"], "properties": ["female, speech, music", "A, crumple, paper"], "captions_pred_video": ["of a girl milking a goat's udder", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a woman speaks and crumples paper"], "question": "which entity is a woman speaking?", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "rain falls on a surface as men speak and music plays"], "sample_ids": ["spYNpeN7rPY", "w0xsN8X18Y"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "music, surface, rain"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", null], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking while a motorboat is moving in the background "], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["a man speaks as bees buzz and birds chirp", "a person snores loudly multiple times at a close distance"], "sample_ids": ["t25U-v4k4ts", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["bees buzz, birds chirp, man speaks", "loud, multiple, distance"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a clock ticktocks"], "sample_ids": ["y682ml90jGw", "v-g-j2uTByM"], "start_seconds": ["11", "30"], "properties": ["beeps, series, electronic", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a beeping sound is being made ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["vW4x7S1VfQc", "tw76HGONaKg"], "start_seconds": ["150", "570"], "properties": ["clacking, oil, woman", "A, game, keyboard"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["food sizzles in a frying pan", "a man speaks and types on a computer keyboard "], "question": "which entity is a video of a man playing a video game?", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wudZTNBtVqc", "wz7N8YRy74I"], "start_seconds": ["60", "30"], "properties": ["accelerates, engine, wind", "rooster, crow, background, men"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "an airplane engine spools and people speak"], "sample_ids": ["yNtRmrn0io8", "wTjoRj1se3U"], "start_seconds": ["210", "390"], "properties": ["storm, distance, strike", "airplane, engine, spool"], "captions_pred_video": ["footage of a house in the middle of the night", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["rain falls and thunder roars", "a jet engine is running and people are talking"], "question": "which is a moving object", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a telephone rings followed by a woman talking"], "sample_ids": ["vSeGhaZt-aI", "tGcFnX0GHI"], "start_seconds": ["50", "0"], "properties": ["water, sink, talk", "ring, talk, woman"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["wvKpEYswXO0", "wRBHTgrbiwg"], "start_seconds": ["150", "50"], "properties": ["water, tap, run", "bird, owl, speak"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "birds are chirping and insects are buzzing"], "question": "which entity has more birds", "label": 1}, {"captions": ["multiple ducks quack continuously", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wfHeoPDLMaM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "stream, water, flow"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage is blurry and out of focus"], "captions_pred_audio": ["ducks are quacking", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["weDbePuc-Xc", "yDoT73BWsdA"], "start_seconds": ["40", "10"], "properties": ["music, slaps, human", "engine, revs, vehicle"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tgbONvsP47Y", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["noise, truck, accelerate", "engine, idle, woman"], "captions_pred_video": ["footage of a fire truck entering a garage", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xyL9F5VrjkE", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["wind, motor, distance", "a woman, something, fried"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "- a woman cooking in the kitchen"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a duck quacks several times", "a train horn blows as it passes by"], "sample_ids": ["vh30P49Po6s", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["quacks, duck, several", "horn, blows, train"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a duck is quacking loudly", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["wind blows strongly", "a clock ticktocks"], "sample_ids": ["w8uLijTqtlU", "v-g-j2uTByM"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is blurry and shaky", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["the wind is blowing strongly", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "paper is crumpling consistently"], "sample_ids": ["w2JXXIAdUdg", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["snoring, distance, person", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person snoring and a dog whimpering", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a drill runs and two people laugh", "a horn rings out as a machine runs by"], "sample_ids": ["tEE3MpBt1sg", "slZLHwNbbt4"], "start_seconds": ["50", "300"], "properties": ["two people, laugh, drill", "a, horn, run"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a man speaks while a machine runs before a smoke alarm beeps"], "sample_ids": ["siJFXfGWgDk", "sG7TyPnFDR0"], "start_seconds": ["50", "180"], "properties": ["a, bird, vehicle", "beeps, machine, smoke alarm"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a person is using an espresso machine in a restaurant"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and a microwave oven is beeping "], "question": "which entity has a vehicle passing nearby?", "label": 0}, {"captions": ["a male speaks and another male speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["viuTg1M-dqg", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["two males, speaking, male", "animal, grunts, snorts"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity has a more snorts", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zuua6-5goWw", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["birds, chirp, quiet, man, speaks", "men, talk, cars"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "pigeons vocalize and birds chirp"], "sample_ids": ["zkKdxzNC97Y", "uiS58TNyUiw"], "start_seconds": ["27", "430"], "properties": ["loud, bang, noise", "vocalize, bird, chirp"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of the pigeon in the cage"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background"], "sample_ids": ["tiDFTC-5vU", "yYEVLuqEytU"], "start_seconds": ["30", "40"], "properties": ["male, duck, laugh", "animal, pig, background"], "captions_pred_video": [null, "a baby goat is being petted by a person's hand"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "several sheep bleat and a man speaks"], "question": "which entity has a pig in it?", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "birds chirp and objects are moved around"], "sample_ids": ["yYEVLuqEytU", "yPUYU6t3rwo"], "start_seconds": ["40", "370"], "properties": ["animal, pig, background", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["several sheep bleat and a man speaks", "insects buzz and a man speaks"], "question": "which entity has more birds", "label": 1}, {"captions": ["a child speaks in closed space", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yW6FWLSLkx4", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["child, space, speak", "multiple, people, yell"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a duck quacks continuously"], "sample_ids": ["wy1eKjR7KC0", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "quacks, continuously, duck"], "captions_pred_video": ["two police officers riding motorcycles down the street", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["s4Uz1Ffgo04", "zFjIWfSD-4"], "start_seconds": ["100", "410"], "properties": ["roars, background, people speaking", "People, motor, brakes"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["an small aircraft engine runs and a boy speaks", "an airplane engine runs"], "sample_ids": ["xSKJGCItUWE", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["engine, run, boy", "engine, airplane, runs"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a car is driving by on the road "], "question": "which entity has a boy speaking?", "label": 0}, {"captions": ["a car accelerates and wind blows", "a man talks while a clock does ticktock"], "sample_ids": ["u0TrcHhkPQ", "spYNpeN7rPY"], "start_seconds": ["20", "1"], "properties": ["accelerates, wind, blows", "a clock, ticktock, man"], "captions_pred_video": [null, "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and breathing with background noise "], "question": "which entity is stationary", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a stream of water runs briefly"], "sample_ids": ["ugHJF0hfYkg", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["engine, running, continuously", "stream, water, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving on a wet road "], "question": "which entity is running continuously", "label": 0}, {"captions": ["a woman talking as an infant is crying", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["tMbMDvT50j8", "y8WEcpOlT3I"], "start_seconds": ["12", "40"], "properties": ["a, talk, infant", "harsh, wind, blows"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is about a woman talking to an infant?", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tK4VlLsNxak", "tDVADusiIoc"], "start_seconds": ["120", "60"], "properties": ["a, dial, telephone", "water, radio, man"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "an infant crying frantically"], "sample_ids": ["sjlVMgdGSK0", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["accelerates, vehicle, race car", "cry, infant, frantically"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "of the baby crying in the car seat"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a clock ticktocks"], "sample_ids": ["vbr9mHKc8WM", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an engine is idling", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["vSeGhaZt-aI", "uiS58TNyUiw"], "start_seconds": ["50", "430"], "properties": ["water, bubbles, speak", "vocalize, bird, chirp"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a male speaks and another male speaks", "water flows and trickles"], "sample_ids": ["viuTg1M-dqg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "water, flow, trickle"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zALy31PjDl0", "uYT5gxnyMWM"], "start_seconds": ["21", "50"], "properties": ["a man, a vehicle, a horn", "female, spraying, scream"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a woman is speaking and a baby is crying"], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["a child speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yW6FWLSLkx4", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["a, child, speaks", "two men, woman, birds"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a drill runs and two people laugh", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tEE3MpBt1sg", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["two people, laugh, drill", "a woman, something, fried"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "- a woman cooking in the kitchen"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["someone snores nearby", "people speak softly as food sizzles"], "sample_ids": ["spJCm8tD9Zo", "yhQ2Lg-7qDY"], "start_seconds": ["90", "130"], "properties": ["someone snores, nearby, someone", "food, sizzle, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a person is snoring loudly", "a faucet is running and a man is speaking"], "question": "which entity is more active", "label": 1}, {"captions": ["an electronic device bleeps once", "an airplane engine roars increasingly louder"], "sample_ids": ["tHJ6JSa8Y4", "vBslzh7saPw"], "start_seconds": ["0", "90"], "properties": ["bleeps, electronic, device", "engine, roar, louder"], "captions_pred_video": [null, "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a clock is ticking and beeping", "a jet engine roars and accelerates "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["tOSWIURC-4", "wyllXV6PjKo"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "a baby, a woman, a man"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a woman speaks and a baby cries"], "question": "which entity is a person", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vXlk0lIQBFo", "xBxDz0CFVn0"], "start_seconds": ["470", "30"], "properties": ["wind, talk, vocalize", "stream, water, flow"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage is blurry and out of focus"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing as people talk and wind blows?", "label": 1}, {"captions": ["material crumbles into a microphone", "a car speeds away loudly followed by a car revving loudly and driving away while outside"], "sample_ids": ["vofpvUo6NAw", "sjlVMgdGSK0"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "car, revving, loudly"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains", "water splashes as an animal walks through"], "sample_ids": ["sfAvvZwdLCY", "w1ir-sZ3Im8"], "start_seconds": ["20", "90"], "properties": ["water drains, flushes, water", "animal, water, splashes"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a toilet is flushed", "water splashes and gurgles as people speak"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a stream of water flows quickly", "an audience gives applause"], "sample_ids": ["wbHTKEJZyhc", "x6iCUDmRpKQ"], "start_seconds": ["20", "38"], "properties": ["stream, water, flow", "applause, audience, give"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "a black background with the moon and stars in the sky"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a group of people are clapping and cheering"], "question": "which entity is a human activity", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vcmWSmvti8", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a clicking followed by some people laughing and a kid speaking"], "sample_ids": ["ugHJF0hfYkg", "vz8868znkVQ"], "start_seconds": ["10", "60"], "properties": ["loud, intense, propeller", "audio, click, kid speaking"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a video of a plane flying over a cloudy sky"], "captions_pred_audio": ["a helicopter is flying overhead ", "a baby is laughing and breathing with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a stream of water runs briefly", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["x-PeY8Yb8M4", "yDoT73BWsdA"], "start_seconds": ["300", "10"], "properties": ["stream, water, run", "engine, revs, vehicle"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car is driving on a wet road ", "a race car accelerates and revs its engine "], "question": "which entity is a moving object", "label": 1}, {"captions": ["an engine runs and a man speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["yT5WfYMRr-U", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["engine, run, man", "engine revs, vehicle, people"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["loud clanking and banging with brief male speech", "water splashes as an animal walks through"], "sample_ids": ["sWZzXuWYY", "w1ir-sZ3Im8"], "start_seconds": ["420", "90"], "properties": ["male, speech, banging", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "people speak as gunfire rings out"], "sample_ids": ["vdoxuJn9lTc", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["burp, loud, girl", "gunfire, ring, speak"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a infant makes noise and is excited"], "sample_ids": ["u--KhUW8l1Y", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "noise, excited, infant"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["y2bVZ7rz-5M", "tdWhHV3X25Q"], "start_seconds": ["280", "60"], "properties": ["motor noise, horn, siren", "applause, audience, yells"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and a crowd is clapping"], "question": "which entity is a response to a performance", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "paper folding and crinkling"], "sample_ids": ["uZesmtKZGSw", "zPpG3RD8lSs"], "start_seconds": ["250", "20"], "properties": ["men, talk, cars", "paper, fold, crinkle"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "the wind blows and a mouse clicks "], "question": "which entity is more quiet", "label": 1}, {"captions": ["several insects fly while two men talk", "a horse runs while two women talk"], "sample_ids": ["s-T9OVOiMLo", "sdvI1mHAsc"], "start_seconds": ["330", "20"], "properties": ["several, fly, men", "two women, horse, run"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", null], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "horses clip-clop and a woman speaks"], "question": "which entity is a horse?", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wnpJndXuxLc", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["blows, vehicle, train", "rooster, crow, background, men"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "people cheer as a vehicle engine revs"], "sample_ids": ["zkKdxzNC97Y", "xjhAnI2q6hM"], "start_seconds": ["27", "6"], "properties": ["hard, surface, door", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a door is opened and closed", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a woman speaks as she rubs two objects together"], "sample_ids": ["x6ijhqRY38s", "vzxHnu-SFEw"], "start_seconds": ["250", "80"], "properties": ["bowl, silverware, man", "two objects, woman, speak"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is being moved in the bowl", "label": 0}, {"captions": ["a clang followed by a toilet flushing", "water pouring and bubbling"], "sample_ids": ["wNZ5thZM7XU", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["sound, flush, toilet", "water, bubbles, pouring"], "captions_pred_video": ["footage of a toilet in a bathroom stall", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a toilet flushes", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a stream of water flows as people talk and wind blows"], "sample_ids": ["voJh2gJxXhA", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["music, frog, croak", "stream, water, flow"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "footage is blurry and out of focus"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sapQIQUhFc", "uEU-Hg5MTN8"], "start_seconds": ["280", "27"], "properties": ["liquid, flow, distance", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a man talking nearby and another man talking far away?", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["su6FAOcOA8c", "tdWhHV3X25Q"], "start_seconds": ["4", "60"], "properties": ["engine, run, woman", "applause, audience, yells"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zj2R0XoFr5k", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["airplane, boy, fly", "gun, shoot, water"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["birds chirp and wind blows", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["sxIvBMSavMQ", "sjlVMgdGSK0"], "start_seconds": ["210", "30"], "properties": ["birds, chirp, wind", "accelerates, vehicle, race car"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "an insect buzzes around continuously"], "sample_ids": ["w0xsN8X18Y", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["music, surface, rain", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a man speaks followed by another man speaking outside"], "sample_ids": ["zofjfKhqLk8", "viuTg1M-dqg"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "two men, speak, follow"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "speaking following by laughing and clapping"], "sample_ids": ["slZLHwNbbt4", "u2f5NpsoHBg"], "start_seconds": ["300", "30"], "properties": ["train, horn, sound", "person, laugh, clap"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking and a crowd is clapping"], "question": "which entity is a person", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wTjoRj1se3U", "tdWhHV3X25Q"], "start_seconds": ["390", "60"], "properties": ["engine, run, people", "applause, audience, yells"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["frogs croak and vocalize", "a man speaks as a car is passing by"], "sample_ids": ["yswmmRZFItk", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["croak, vocalize, frog", "a, car, pass"], "captions_pred_video": ["a close up of a frog in the water", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a frog is croaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a woman speaks as she rubs two objects together"], "sample_ids": ["weDbePuc-Xc", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["music, slaps, human", "two objects, woman, speak"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "people speak as gunfire rings out"], "sample_ids": ["smDKStoHBJo", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["a, infant, speaking", "gunfire, ring, speak"], "captions_pred_video": ["a man holding a crying baby in his arms", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and a gun is fired"], "question": "which entity is about a woman speaking to an infant?", "label": 0}, {"captions": ["a woman talks while a baby cries and a man whispers", "a man speaks followed by another man speaking outside"], "sample_ids": ["smDKStoHBJo", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["a, talk, baby, cry", "two men, speak, follow"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a baby?", "label": 0}, {"captions": ["a duck quacks loudly and continuously", "a man speaks followed by another man speaking outside"], "sample_ids": ["vh30P49Po6s", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "two men, speak, follow"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is quieter", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a jet engine spools up and takes off"], "sample_ids": ["zNRChLjqcU", "vBslzh7saPw"], "start_seconds": ["220", "90"], "properties": ["water, faucet, run", "engine, spools, takes"], "captions_pred_video": [null, "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["water is running from a faucet into a sink", "a jet engine roars and accelerates "], "question": "which entity is a moving object", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "winds blows roughly as a vehicle races past"], "sample_ids": ["sQGXqGcwOTc", "xjvTpk2Zpr8"], "start_seconds": ["3", "70"], "properties": ["audio, kid, giggles", "wind, blows, vehicle"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["sjlVMgdGSK0", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["car, revving, loudly", "sheep, baa, birds"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a goat bleats and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a dog barks and whimpers"], "sample_ids": ["uJV8NDaHqqk", "sShpyu2l4YQ"], "start_seconds": ["100", "0"], "properties": ["loud, fly, chirp", "barks, whimpers, dog"], "captions_pred_video": ["a bee hive in a wooden box", "the puppies are playing with a toy"], "captions_pred_audio": ["a swarm of bees buzzing around", "a dog is barking and growling"], "question": "which entity is quieter", "label": 1}, {"captions": ["a dog barks and whimpers", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sShpyu2l4YQ", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["barks, whimpers, dog", "music, gunfire, explosion"], "captions_pred_video": ["the puppies are playing with a toy", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog is barking and growling", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["a guy speaks with birds chirping in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["v5P-ThUCINM", "xBxDz0CFVn0"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking with wind noise in the background "], "question": "which entity is a natural scene", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a horn honks and then loudly blares"], "sample_ids": ["weDbePuc-Xc", "wnpJndXuxLc"], "start_seconds": ["40", "50"], "properties": ["music, slaps, human", "horn, honk, loud"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a dog barks and whimpers", "someone is typing on a computer keyboard"], "sample_ids": ["sShpyu2l4YQ", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["barks, whimpers, dog", "keyboard, type, computer"], "captions_pred_video": ["the puppies are playing with a toy", "how to make money on youtube in spanish"], "captions_pred_audio": ["a dog is barking and growling", "a person is typing on a keyboard"], "question": "which entity is typing", "label": 1}, {"captions": ["a child speaks in closed space", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yW6FWLSLkx4", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["child, space, speak", "rooster, crow, background, men"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a person is snoring while sleeping"], "sample_ids": ["xV7Mg1QucSc", "vJrjSeP17yE"], "start_seconds": ["14", "40"], "properties": ["alarm, ticktocks, laughs", "a person is sleeping, snoring, person"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["ukxt9I7eMMg", "w6RTHR6AeAg"], "start_seconds": ["30", "40"], "properties": ["continuous, woman, speaking", "call, owl, screech"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "an owl hoots and mechanisms operate "], "question": "which entity is a bird?", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a baby cries and a woman speaks"], "sample_ids": ["tDlfY3nmx1A", "tMbMDvT50j8"], "start_seconds": ["160", "12"], "properties": ["applause, laugh, man", "a, cry, woman"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a baby cries and a woman speaks"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["dogs barking and whimpering", "water splashes as an animal walks through"], "sample_ids": ["tIY7qOV3rEM", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["barking, whimpering, dog", "animal, water, splashes"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and wind blows", "a girl talking, laughing and sneezing noise"], "sample_ids": ["sxIvBMSavMQ", "y4tPJXBKDig"], "start_seconds": ["210", "20"], "properties": ["birds, chirp, wind", "a, noise, talk"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage of the woman wiping her nose with a tissue"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking and coughing with background noise and breathing "], "question": "which entity is talking", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tGcFnX0GHI", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["ring, talk, woman", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["someone whistles briefly", "small dogs yip and bark sharply"], "sample_ids": ["uFoga8sHpiw", "v-wcQf4BDY0"], "start_seconds": ["90", "120"], "properties": ["sound, duration, pitch", "bark, yip, sharply"], "captions_pred_video": ["footage of a bird in a cage", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a person whistles a song", "a dog barks and growls"], "question": "which entity is louder", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a telephone rings followed by a woman talking"], "sample_ids": ["vs65y4qmyBE", "tGcFnX0GHI"], "start_seconds": ["340", "0"], "properties": ["engine, run, man", "ring, talk, woman"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["vs65y4qmyBE", "y8dSeubCNI"], "start_seconds": ["340", "4"], "properties": ["wind, blows, strongly", "men, women, car"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "an engine revving and people talking in the background"], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["ugHJF0hfYkg", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["loud, propeller, move", "water, radio, man"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not moving", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "winds blows roughly as a vehicle races past"], "sample_ids": ["sEprKHm8Sj8", "xjvTpk2Zpr8"], "start_seconds": ["90", "70"], "properties": ["car, tires, slows", "wind, blows, vehicle"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a jet engine roars and wind blows "], "question": "which vehicle is moving faster", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "motors rev and run loudly as a person laughs"], "sample_ids": ["uiItxDsDMFI", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["wood, piece, saw", "motors rev, laugh, loudly"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a saw is being used with background noise ", "a jet engine roars "], "question": "which entity is not a person?", "label": 0}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a vehicle is skidding and squealing tires"], "sample_ids": ["y2bVZ7rz-5M", "soTOh3zYJfY"], "start_seconds": ["280", "40"], "properties": ["motor noise, horn, siren", "vehicle, skid, tires"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "birds chirp and objects are moved around"], "sample_ids": ["s4Uz1Ffgo04", "yPUYU6t3rwo"], "start_seconds": ["100", "370"], "properties": ["water, rushes, motorcycle", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "insects buzz and a man speaks"], "question": "which entity is more calm", "label": 1}, {"captions": ["water is sprayed across a hard surface", "several insects fly while two men talk"], "sample_ids": ["sQwlkXjQabo", "s-T9OVOiMLo"], "start_seconds": ["10", "330"], "properties": ["water, spray, surface", "several, fly, men"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a natural event", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a woman speaks happily and an animal chirps"], "sample_ids": ["y8WEcpOlT3I", "uWAAAL4CIoc"], "start_seconds": ["40", "0"], "properties": ["wind, speak, buffeting", "a woman, chirps, animal"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be in a zoo", "label": 1}, {"captions": ["a child speaks in closed space", "someone snores nearby"], "sample_ids": ["yW6FWLSLkx4", "spJCm8tD9Zo"], "start_seconds": ["40", "90"], "properties": ["child, space, speak", "someone snores, nearby, someone"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "vehicles pass by on a roadway"], "sample_ids": ["zdYdyF9-m8U", "tgbONvsP47Y"], "start_seconds": ["7", "0"], "properties": ["wind, crash, shoreline", "pass, vehicle, roadway"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of a fire truck entering a garage"], "captions_pred_audio": ["waves crash and wind blows ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a duck quacks continuously"], "sample_ids": ["zj2R0XoFr5k", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, overhead", "quacks, continuously, duck"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["xOZfdgAgJ9o", "x9JovgqUcs"], "start_seconds": ["40", "500"], "properties": ["woman, whimpering, speaking", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "several insects fly while two men talk"], "sample_ids": ["w5W5Kqtc8E", "s-T9OVOiMLo"], "start_seconds": ["100", "330"], "properties": ["wind, blow, vehicle", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about flying insects?", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a person speaks briefly"], "sample_ids": ["zTLVJCo4WEE", "zOZleIRqZm4"], "start_seconds": ["30", "80"], "properties": ["a, crickets, sing", "person, talk, brief"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking with crickets chirping in the background"], "question": "which entity is a person talking?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "a vehicle engine accelerating then running on idle"], "sample_ids": ["s4Uz1Ffgo04", "vYkA3cfXp5Q"], "start_seconds": ["100", "30"], "properties": ["water, rushes, vehicle", "engine, accelerate, idle"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "an engine is idling"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["dogs barking and whimpering", "someone whistles a tune"], "sample_ids": ["tIY7qOV3rEM", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["barking, whimpering, dog", "someone, tune, whistle"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zCrAfDfv6-A", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["person, mouse, click", "applause, audience, yells"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a person whistles a song", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["y2ZBGpgbhHM", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["animal, growl, bird", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "water flows and trickles"], "sample_ids": ["vf44CgrjT0A", "tB7hWb9gTuQ"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "water, flow, trickle"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a loud burp", "water is splashing and gurgling"], "question": "which entity is flowing", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a man speaks as a car is passing by"], "sample_ids": ["vJvryTwuAV8", "sK4u5T8hW78"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "a, car, pass"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man speaking to an audience?", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "a man speaks over intermittent keyboard taps"], "sample_ids": ["xKB8O8LTs6s", "tw76HGONaKg"], "start_seconds": ["70", "570"], "properties": ["music, gunshots, explosion", "audio, man, keyboard"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a machine beeps continuously"], "sample_ids": ["wqUmIEzuNz4", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["frog, bird, vocalize", "beeps, machine, continuously"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", null], "captions_pred_audio": ["a cat meows and rustles", "a beeping sound is being made "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vfYTJq7nU", "wqZ135Ssz0"], "start_seconds": ["130", "60"], "properties": ["ducks, quack, man", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["a toilet flushes and water drains", "a person sneezes followed by another person speaking"], "sample_ids": ["sfAvvZwdLCY", "t8CV69hcvF0"], "start_seconds": ["20", "210"], "properties": ["water drains, flushes, water", "person, sneeze, follow"], "captions_pred_video": ["footage of the toilet in the bathroom", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a toilet is flushed", "a woman sneezes and speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a machine beeps continuously"], "sample_ids": ["ugHJF0hfYkg", "y682ml90jGw"], "start_seconds": ["10", "11"], "properties": ["loud, intense, propeller", "beeps, machine, continuously"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["sG7TyPnFDR0", "wyllXV6PjKo"], "start_seconds": ["180", "30"], "properties": ["beeps, machine, smoke alarm", "a baby, a woman, a man"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a woman speaks and a baby cries"], "question": "which entity has a baby?", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wP8ZKrlx3oA", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["rain, storm, thunder", "female, spraying, scream"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a dog barks and whimpers", "a drill drills through something then people begin laughing"], "sample_ids": ["sShpyu2l4YQ", "tEE3MpBt1sg"], "start_seconds": ["0", "50"], "properties": ["barks, whimpers, dog", "drill, something, laugh"], "captions_pred_video": ["the puppies are playing with a toy", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a dog is barking and growling", "people are laughing breathing and speaking with background noise "], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["distant humming of an engine", "an engine runs loudly"], "sample_ids": ["yVPZ2MNWpms", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["sound, distance, engine", "loud, engine, run"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a car is driving by on the road ", "a lawn mower is running and men are speaking "], "question": "which engine is louder", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tGcFnX0GHI", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["ring, talk, woman", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["an engine starts and increases in power", "a stream of water runs briefly"], "sample_ids": ["zjTG0gaGCUI", "x-PeY8Yb8M4"], "start_seconds": ["80", "300"], "properties": ["power, increase, engine", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wztCSUxOf8", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["a crowd, yells, applauds", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be at a sporting event", "label": 0}, {"captions": ["a man speaks while water drains", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vSeGhaZt-aI", "zFjIWfSD-4"], "start_seconds": ["50", "410"], "properties": ["water, drain, man", "People, motor, brakes"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "vehicles pass by on a roadway"], "sample_ids": ["vJ7JPEFhyLA", "tgbONvsP47Y"], "start_seconds": ["16", "0"], "properties": ["three men, wind, flow", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["ticking continues without interruption", "water flows as men speak and yell"], "sample_ids": ["v-g-j2uTByM", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["ticking, continuous, clock", "water, flow, men"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not continuous", "label": 1}, {"captions": ["a car accelerates and wind blows", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["u0TrcHhkPQ", "wDVMhEdTiVw"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a car", "label": 0}, {"captions": ["the revving of an engine throttle followed by a man speaking", "vehicles pass by on a roadway"], "sample_ids": ["tezvROoo4bs", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["audio, throttle, speaking", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a car is driving on the road "], "question": "which entity is a video", "label": 1}, {"captions": ["a door opens and closes", "paper is crumpling consistently"], "sample_ids": ["vBHyYJ8pL0", "v5cSxLaHADY"], "start_seconds": ["2", "0"], "properties": ["open, close, door", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a person speaks briefly"], "sample_ids": ["xvDdE3zNf8Y", "zOZleIRqZm4"], "start_seconds": ["120", "80"], "properties": ["a, female, speaks", "person, talk, brief"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking with crickets chirping in the background"], "question": "which entity is talking", "label": 1}, {"captions": ["water flows as men speak and yell", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["vJ7JPEFhyLA", "ziUT9IFTkjg"], "start_seconds": ["16", "10"], "properties": ["water, flow, men", "background, birds, rustling"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a toilet flushes and a female speaks"], "sample_ids": ["vcmWSmvti8", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["music, man, fire", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a toilet flushes and a man speaks"], "question": "which entity is about a toilet?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a telephone rings followed by a woman talking"], "sample_ids": ["s6DESzUTGjY", "tGcFnX0GHI"], "start_seconds": ["16", "0"], "properties": ["wind, laugh, woman", "ring, talk, woman"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vfYTJq7nU", "uZesmtKZGSw"], "start_seconds": ["130", "250"], "properties": ["ducks, quack, man", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an animal quacks rapidly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vh30P49Po6s", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["animal, quacks, rapidly", "airplane, boy, fly"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a duck is quacking loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["slZLHwNbbt4", "y2bVZ7rz-5M"], "start_seconds": ["300", "280"], "properties": ["train, horn, sound", "motor noise, horn, siren"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning device", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "people speak as gunfire rings out"], "sample_ids": ["xO-Q2BlIIPU", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["two men, exclamation, speak", "gunfire, ring, speak"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a gun is fired"], "question": "which entity shows a man speaking to another man?", "label": 0}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a man speaks as water trickles down a stream"], "sample_ids": ["x9JovgqUcs", "sapQIQUhFc"], "start_seconds": ["500", "280"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "water, stream, trickles"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is speaking and a stream is flowing in the background "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sEprKHm8Sj8", "yswmmRZFItk"], "start_seconds": ["90", "0"], "properties": ["car, tires, slows", "background, frog, croak"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "a close up of a frog in the water"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vXlk0lIQBFo", "zl9Dqx-j7q4"], "start_seconds": ["470", "6"], "properties": ["wind, speak, vocalize", "engine, laugh, loud"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a man driving a car in the dark"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "winds blows roughly as a vehicle races past"], "sample_ids": ["tiDFTC-5vU", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["male, duck, laugh", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "water running down a sink while a man is talking"], "sample_ids": ["tjmoSi330GM", "vSeGhaZt-aI"], "start_seconds": ["23", "50"], "properties": ["speed, water, boat", "water, sink, talk"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is stationary", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "people speak as gunfire rings out"], "sample_ids": ["x5cuQjOdM3E", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["cat, talk, meow", "gunfire, ring, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a small engine spits as it runs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sZvwOuuPGP0", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["spits, engine, runs", "a woman, something, fried"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a medium engine is running ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["y8WEcpOlT3I", "uWAAAL4CIoc"], "start_seconds": ["40", "0"], "properties": ["harsh, wind, blows", "a woman, chirps, animal"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is more cheerful", "label": 1}, {"captions": ["birds coo incessantly", "water is sprayed across a hard surface"], "sample_ids": ["yZrFNS7GFBQ", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["coo, bird, incessant", "water, spray, surface"], "captions_pred_video": ["of the bird in the cage", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["an owl hoots in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "someone is typing on a computer keyboard"], "sample_ids": ["xvDdE3zNf8Y", "v0x1odnXtP0"], "start_seconds": ["120", "210"], "properties": ["a, female, speaks", "keyboard, type, computer"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman speaks and crumples paper", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "a man speaking with light rustling"], "sample_ids": ["vZAw4apG0Es", "zOZleIRqZm4"], "start_seconds": ["30", "80"], "properties": ["people, clock, converse", "light, rustling, man"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking with crickets chirping in the background"], "question": "which entity is a man speaking with light rustling?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["w5W5Kqtc8E", "w5W5Kqtc8E"], "start_seconds": ["100", "100"], "properties": ["water, splashes, motorboat", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person speaks briefly", "tapping occurs then a baby cries"], "sample_ids": ["zOZleIRqZm4", "wIJK3-5y0kA"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "a, cry, baby"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby cries and a woman speaks"], "question": "which entity is a person talking?", "label": 0}, {"captions": ["loud clanking and banging with brief male speech", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sWZzXuWYY", "xfaoyyzw2WU"], "start_seconds": ["420", "180"], "properties": ["male, speech, banging", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uWPRNLnpy7Y", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "multiple, people, yell"], "captions_pred_video": ["is taken from a car driving down the street", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a duck quacks continuously"], "sample_ids": ["sjlVMgdGSK0", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["car, revving, loudly", "quacks, continuously, duck"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "water is sprayed across a hard surface"], "sample_ids": ["xyx6eNVEYRY", "sQwlkXjQabo"], "start_seconds": ["380", "10"], "properties": ["loud, engine, muffles", "water, spray, surface"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a race car approaches quickly and slows down squealing tires"], "sample_ids": ["yZrFNS7GFBQ", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["pigeon, buzzes, insect", "car, tires, slows"], "captions_pred_video": ["of the bird in the cage", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["an owl hoots in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "dishes cling together then a man begins to speak"], "sample_ids": ["s4Uz1Ffgo04", "sQGXqGcwOTc"], "start_seconds": ["100", "3"], "properties": ["water, rushes, motorcycle", "cling, speak, dishes"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a person snores loudly multiple times at a close distance"], "sample_ids": ["weDbePuc-Xc", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["cartoon character, music, vocalize", "loud, multiple, distance"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a horn rings out as a machine runs by"], "sample_ids": ["wqADXCzngMw", "slZLHwNbbt4"], "start_seconds": ["340", "300"], "properties": ["engine, idle, man", "a, horn, run"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "wind blowing followed by a zoom"], "sample_ids": ["xC8kbrKJmco", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["background, goat, scream", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a goat is bleating ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a man speaks followed by another man speaking outside"], "sample_ids": ["yeFvk9x0wWI", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["chirp, twitter, clatter", "two men, speak, follow"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "wind blows as people chatter quietly"], "sample_ids": ["vlS6YMeWAPo", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["noise, bleat, call", "wind, chatter, people"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage is blurry and out of focus"], "captions_pred_audio": ["a goat bleats and birds chirp", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a car speeds away loudly followed by a car revving loudly and driving away while outside"], "sample_ids": ["uWPRNLnpy7Y", "sjlVMgdGSK0"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "car, revving, loudly"], "captions_pred_video": ["is taken from a car driving down the street", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a car accelerates and revs its engine "], "question": "which vehicle is revving loudly", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a propeller moves loudly nearby"], "sample_ids": ["sapQIQUhFc", "ugHJF0hfYkg"], "start_seconds": ["280", "10"], "properties": ["liquid, flow, distance", "loud, propeller, move"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a helicopter is flying overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["w2bYrCVLT60", "zl9Dqx-j7q4"], "start_seconds": ["120", "6"], "properties": ["ducks, speak, quack", "engine, laugh, loud"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "footage of a man driving a car in the dark"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["uYT5gxnyMWM", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["a, scream, girl", "animal, grunts, snorts"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking followed by a scream?", "label": 0}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vqZuVbG6-HI", "tdWhHV3X25Q"], "start_seconds": ["130", "60"], "properties": ["background, male, female", "applause, audience, yells"], "captions_pred_video": ["footage is blurry because it's raining outside", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["su6FAOcOA8c", "yDoT73BWsdA"], "start_seconds": ["4", "10"], "properties": ["engine, idle, woman", "engine, revs, vehicle"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a race car accelerates and revs its engine "], "question": "which engine is revving", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["wnpJndXuxLc", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["blows, vehicle, train", "gun, shoot, water"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["wind blowing followed by a zoom", "roadway noise occurs and a truck accelerates"], "sample_ids": ["vr8ZXjEBhMQ", "tgbONvsP47Y"], "start_seconds": ["150", "0"], "properties": ["wind, blow, zoom", "noise, truck, accelerate"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage of a fire truck entering a garage"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a car is driving on the road "], "question": "which is not a zoom", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "water is sprayed across a hard surface"], "sample_ids": ["un9VQlzgZM", "sQwlkXjQabo"], "start_seconds": ["5", "10"], "properties": ["females, talk, laugh", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "wind blows as people chatter quietly"], "sample_ids": ["xvDdE3zNf8Y", "xBxDz0CFVn0"], "start_seconds": ["120", "30"], "properties": ["a, female, speaks", "wind, chatter, people"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a stream of water runs briefly"], "sample_ids": ["t25U-v4k4ts", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["a, chirps, bird", "stream, water, run"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "water flows as men speak and yell"], "sample_ids": ["v-wcQf4BDY0", "vJ7JPEFhyLA"], "start_seconds": ["120", "16"], "properties": ["bark, yip, sharply", "water, flow, men"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["t69a8aRKhmc", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "rooster, crow, background, men"], "captions_pred_video": ["footage is blurry and out of focus", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vveS8HT7Uog", "w34HjHr6gAY"], "start_seconds": ["100", "30"], "properties": ["a man, objects, speak", "beeps, hit, woman"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a toilet flushes and a female speaks"], "sample_ids": ["w2JXXIAdUdg", "yaln9y8I7ms"], "start_seconds": ["10", "230"], "properties": ["snoring, distance, person", "female, flushes, toilet"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage is blurry and out of focus"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a toilet flushes and a man speaks"], "question": "which entity is a toilet?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a stream of water runs briefly"], "sample_ids": ["vimzuGQvdcU", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["a, man, yells", "stream, water, run"], "captions_pred_video": ["a group of people are rafting down a river", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["s4Uz1Ffgo04", "zFjIWfSD-4"], "start_seconds": ["100", "410"], "properties": ["water, rushes, vehicle", "People, motor, brakes"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a vehicle zooming past?", "label": 0}, {"captions": ["a wooden clack accompanies nearby chirping birds", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yeFvk9x0wWI", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["clack, bird, chirp", "a woman, a television program, a bird"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking and a dog is whimpering"], "question": "which entity has more birds", "label": 1}, {"captions": ["a clock ticktocks briefly", "wind blows as people chatter quietly"], "sample_ids": ["u7C-AEBQM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks briefly", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yajyRTUQk3U", "yDoT73BWsdA"], "start_seconds": ["400", "10"], "properties": ["a woman, something, fried", "engine, revs, vehicle"], "captions_pred_video": ["- a woman cooking in the kitchen", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an electronic device bleeps once", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tHJ6JSa8Y4", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["bleeps, electronic, device", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a clock is ticking and beeping", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a horn honks followed by a loud continuous buzzing while men speak"], "sample_ids": ["spYNpeN7rPY", "wsHBIgzs9Fs"], "start_seconds": ["1", "50"], "properties": ["a clock, ticktock, man", "horn, continuous, buzzing"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "shows a motorcycle riding down a country road with a motorcycle in the foreground"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a car accelerates and revs its engine while a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a jet engine spools up and takes off", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vBslzh7saPw", "vbZ-0lGPneg"], "start_seconds": ["90", "30"], "properties": ["engine, spools, takes", "a woman, a television program, a bird"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a moving object", "label": 0}, {"captions": ["a person is whistling", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sIXTftIuUgw", "tdWhHV3X25Q"], "start_seconds": ["90", "60"], "properties": ["person, whistling, person", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and a crowd is clapping"], "question": "which person is more likely to be a performer", "label": 1}, {"captions": ["an electronic device bleeps once", "a clock ticktocks"], "sample_ids": ["tHJ6JSa8Y4", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["bleeps, electronic, device", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking and beeping", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["a toilet flushes and water drains", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sfAvvZwdLCY", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["water drains, flushes, water", "rustling, ducks, quack"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["popping and crackling repeats as men yell and laugh", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["rqu8iB22IY", "tdWhHV3X25Q"], "start_seconds": ["5", "60"], "properties": ["sound, repeats, laugh", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["rustling with distant murmuring", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wnNNcxAPwGQ", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["sound, distance, rustling", "men, talk, cars"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks as water trickles down a stream", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sapQIQUhFc", "xKB8O8LTs6s"], "start_seconds": ["280", "70"], "properties": ["water, stream, trickles", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["heavy rain splashes as it falls", "water splashes as an animal walks through"], "sample_ids": ["wP8ZKrlx3oA", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["fall, rain, splash", "animal, water, splashes"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a heavy rain is falling on a surface", "water splashes and gurgles as people speak"], "question": "which entity is more likely to cause water to splash", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "water pouring and bubbling"], "sample_ids": ["w5W5Kqtc8E", "uyRfq-jKPpo"], "start_seconds": ["100", "50"], "properties": ["wind, engine, scream", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "water pouring and bubbling"], "sample_ids": ["sDSppXIlJrs", "uyRfq-jKPpo"], "start_seconds": ["27", "50"], "properties": ["microphone, water, wind", "water, bubbles, pouring"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["the wind is blowing and water is splashing", "water is running from a faucet"], "question": "which entity is more likely to be found in a bathroom", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a clock ticktocks"], "sample_ids": ["zdYdyF9-m8U", "v-g-j2uTByM"], "start_seconds": ["7", "30"], "properties": ["wind, crash, shoreline", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["waves crash and wind blows ", "a clock is ticking loudly"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["a man speaks as crickets sing", "birds chirp and pigeons vocalize while walking around"], "sample_ids": ["ryFDPxgDOGc", "wIvYjuR3nrg"], "start_seconds": ["570", "9"], "properties": ["a, crickets, sing", "birds, pigeons, vocalize"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "footage of a pigeon sitting on a roof with trees in the background"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "birds are chirping and cooing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a toilet flushes and water drains", "rain falls on a surface as men speak and music plays"], "sample_ids": ["sfAvvZwdLCY", "w0xsN8X18Y"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "music, surface, rain"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is a video of a toilet flushing and water draining?", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "people speak as gunfire rings out"], "sample_ids": ["tK4VlLsNxak", "wqTCwqVRDlk"], "start_seconds": ["120", "80"], "properties": ["a, dial, telephone", "gunfire, ring, speak"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a car speeding up in the distance"], "sample_ids": ["xjhAnI2q6hM", "u0TrcHhkPQ"], "start_seconds": ["6", "20"], "properties": ["wind, blow, loudly", "distance, car, speed"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "an engine starts and increases in power"], "sample_ids": ["wP8ZKrlx3oA", "zjTG0gaGCUI"], "start_seconds": ["40", "80"], "properties": ["rain, storm, thunder", "power, increase, engine"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a jet engine roars as wind blows "], "question": "which entity is more powerful", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a telephone rings followed by a woman talking"], "sample_ids": ["uWAAAL4CIoc", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["a woman, chirps, animal", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a motorcycle engine is idling", "a car speeding up in the distance"], "sample_ids": ["vZAqdHZ81yA", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["engine, motorcycle, idling", "distance, car, speed"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a race car accelerates and revs its engine "], "question": "which object is moving faster", "label": 0}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sxYkFKFIZD0", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["screech, man, door", "airplane, boy, fly"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["tDlysoZiA1I", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["animal, grunt, multiple", "animal, grunts, snorts"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal grunts and snorts?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "an insect buzzes around continuously"], "sample_ids": ["yJ0TePmaOo", "v25l1jef3JY"], "start_seconds": ["390", "0"], "properties": ["two hard objects, man, speak", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a baby laugh at a sputter", "a train horn blows as it passes by"], "sample_ids": ["sLUnaPT5gM8", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["laugh, sputter, baby", "horn, blows, train"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["water pouring and bubbling", "wind blowing followed by a zoom"], "sample_ids": ["uyRfq-jKPpo", "vr8ZXjEBhMQ"], "start_seconds": ["50", "150"], "properties": ["water, bubbles, pouring", "wind, blow, zoom"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["water is running from a faucet", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a natural phenomenon", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sQGXqGcwOTc", "xBxDz0CFVn0"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "stream, water, flow"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "some men converse over an engine running"], "sample_ids": ["wAAkbZToh8", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["burp, laugh, speak", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man burps and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ukxt9I7eMMg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["continuous, woman, speaking", "female, spraying, scream"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking towards the end?", "label": 0}, {"captions": ["a bird is chirping and tweeting a bird song", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wPz6QRAkEb4", "tDlysoZiA1I"], "start_seconds": ["60", "0"], "properties": ["chirps, tweets, song", "animal, grunts, chirps"], "captions_pred_video": ["a bird in a cage on top of a pole", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping in the background ", "birds are chirping and a rooster is crowing "], "question": "which entity is a bird", "label": 0}, {"captions": ["a man speaks as horns blow", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["tHyNqRyK34A", "y8WEcpOlT3I"], "start_seconds": ["24", "40"], "properties": ["a, man, speaks", "harsh, wind, blows"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity has a man speaking as horns blow?", "label": 0}, {"captions": ["a clock alarm sounds and gears turn", "a toilet flushes and a female speaks"], "sample_ids": ["w2M4i1mklOA", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["alarm, gears, turn", "female, flushes, toilet"], "captions_pred_video": ["footage of an antique clock", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "water is sprayed across a hard surface"], "sample_ids": ["sSMl2vc3ek", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["loud, multiple, distance", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a person snoring loudly", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["children speak as a female ask them questions", "a woman speaks as she rubs two objects together"], "sample_ids": ["wEBlkGWVWwE", "vzxHnu-SFEw"], "start_seconds": ["260", "80"], "properties": ["female, speak, questions", "two objects, woman, speak"], "captions_pred_video": ["shows a person writing on the whiteboard", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a horn blasts loudly as a train passes"], "sample_ids": ["vs65y4qmyBE", "zsLxS-uLJTw"], "start_seconds": ["340", "20"], "properties": ["wind, blows, strongly", "horn, blast, train"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of the train on the tracks at sunrise or sunset"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a train blows its horn and moves on the tracks "], "question": "which is louder", "label": 0}, {"captions": ["continuous sneezing together with speech", "water flows and trickles"], "sample_ids": ["x4dZyf9Gbj0", "tB7hWb9gTuQ"], "start_seconds": ["130", "30"], "properties": ["continuous, sneeze, speech", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and out of focus", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman sneezes and speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a beep repeats multiple times", "a bird is chirping and tweeting a bird song"], "sample_ids": ["y682ml90jGw", "wPz6QRAkEb4"], "start_seconds": ["11", "60"], "properties": ["beep, repeat, multiple", "chirps, tweets, song"], "captions_pred_video": [null, "a bird in a cage on top of a pole"], "captions_pred_audio": ["a beeping sound is being made ", "birds are chirping in the background "], "question": "which entity is a song", "label": 1}, {"captions": ["a man speaks as horns blow", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tHyNqRyK34A", "vb1fPSDI4c"], "start_seconds": ["24", "30"], "properties": ["a, man, speaks", "multiple, people, yell"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["paper is crumpling consistently", "an engine idles consistently before sputtering some"], "sample_ids": ["v5cSxLaHADY", "rwTERCUno"], "start_seconds": ["0", "90"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "engine, idle, sputter"], "captions_pred_video": ["footage of the person holding a pair of scissors", null], "captions_pred_audio": ["paper is crumpled and crinkled", "an engine is idling and vibrating"], "question": "which entity is consistent", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["y2ZBGpgbhHM", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["animal, growl, bird", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a toilet flushes and water drains"], "sample_ids": ["wnpJndXuxLc", "sfAvvZwdLCY"], "start_seconds": ["50", "20"], "properties": ["beeps, loud, whistle", "water drains, flushes, water"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a person snores loudly multiple times at a close distance"], "sample_ids": ["u2f5NpsoHBg", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["person, laugh, clap", "loud, multiple, distance"], "captions_pred_video": ["is being projected on a screen at the front of the stage", null], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a person snoring loudly"], "question": "which person is speaking", "label": 0}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "winds blows roughly as a vehicle races past"], "sample_ids": ["wy1eKjR7KC0", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["people, talk, distance", "wind, blows, vehicle"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["an emergency siren wails as it passes", "an insect buzzes around continuously"], "sample_ids": ["vGj1XLJvNrw", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["wails, wails, pass", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a police car driving down a city street", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a fly is buzzing around a microphone "], "question": "which entity buzzes around continuously", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vddP56-ogds", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["water, flow, laugh", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "a consistent ticking pattern"], "sample_ids": ["uWAAAL4CIoc", "sCeWURVHfOM"], "start_seconds": ["0", "30"], "properties": ["a, dog, vocalize", "ticking, pattern, clock"], "captions_pred_video": [null, "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "ticking of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp as a train approaches", "a car accelerates and wind blows"], "sample_ids": ["xM4joTqDVp4", "u0TrcHhkPQ"], "start_seconds": ["160", "20"], "properties": ["bird, chirp, train", "accelerates, wind, blows"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a horse runs while two women talk", "wind blows as people chatter quietly"], "sample_ids": ["sdvI1mHAsc", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["two women, horse, run", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uYT5gxnyMWM", "zFjIWfSD-4"], "start_seconds": ["50", "410"], "properties": ["a, scream, girl", "People, motor, brakes"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a girl speaking followed by a scream and more girls talking?", "label": 0}, {"captions": ["an engine runs loudly", "sirens ring and approach with humming of distant traffic"], "sample_ids": ["vqZuVbG6-HI", "xERFUeZONz8"], "start_seconds": ["130", "0"], "properties": ["loud, engine, run", "ring, approach, traffic"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage is blurry due to camera shake or motion blur"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "an emergency vehicle siren blares"], "question": "which entity is a warning", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "someone is typing on a computer keyboard"], "sample_ids": ["y2ZBGpgbhHM", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["birds, tweet, pant", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["birds chirping and a dog panting", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wvKpEYswXO0", "zl9Dqx-j7q4"], "start_seconds": ["150", "6"], "properties": ["water, tap, run", "engine, laugh, loud"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wvKpEYswXO0", "su6FAOcOA8c"], "start_seconds": ["150", "4"], "properties": ["sound, water, running", "engine, idle, woman"], "captions_pred_video": ["of the person preparing food in the kitchen", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking softly?", "label": 0}, {"captions": ["an airplane accelerates briefly", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["zjTG0gaGCUI", "tIY7qOV3rEM"], "start_seconds": ["80", "0"], "properties": ["accelerates, airplane, briefly", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": [null, "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a dog is barking and a cat is meowing"], "question": "which animal is barking", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a toilet flushes and a female speaks"], "sample_ids": ["wtDqrBygTcU", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["man, engine, run", "female, flushes, toilet"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a motor is running", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a person sniffles and then sneezes in the distance", "a clock ticktocks"], "sample_ids": ["uRlbY6aoBU", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["a, distance, sneeze", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is sneezing ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a man speaks, then dials a rotary telephone"], "sample_ids": ["vJvryTwuAV8", "tK4VlLsNxak"], "start_seconds": ["16", "120"], "properties": ["audience, cheer, man", "a, dial, telephone"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking and using a sewing machine"], "question": "which man is speaking?", "label": 0}, {"captions": ["some clanking with distant murmuring", "pigeons vocalize and birds chirp"], "sample_ids": ["uMTTDZ2mb4", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["clanking, murmuring, distant", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an engine starts and increases in power", "paper is crumpling consistently"], "sample_ids": ["zjTG0gaGCUI", "v5cSxLaHADY"], "start_seconds": ["80", "0"], "properties": ["power, increase, engine", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a jet engine roars as wind blows ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a steam engine runs and whistles as it passes by"], "sample_ids": ["yZmhM1HcsyE", "se87d6yxEOA"], "start_seconds": ["4", "10"], "properties": ["engine, roar, water", "run, whistle, pass"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a train is moving and blowing its whistle "], "question": "which entity is a steam engine?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "waves crash against a shoreline and people speak"], "sample_ids": ["sxYkFKFIZD0", "yFB25fqfU8I"], "start_seconds": ["20", "300"], "properties": ["screech, man, door", "wave, crash, shoreline"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xC8kbrKJmco", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["background, goat, scream", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a goat is bleating ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a helicopter engine runs continuously", "an airplane engine runs"], "sample_ids": ["ugHJF0hfYkg", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "engine, airplane, runs"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a duck quacks continuously"], "sample_ids": ["uiItxDsDMFI", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "quacks, continuously, duck"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a saw is being used with background noise ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a toilet flushes and water drains"], "sample_ids": ["y2ZBGpgbhHM", "sfAvvZwdLCY"], "start_seconds": ["30", "20"], "properties": ["animal, growl, bird", "water drains, flushes, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["birds chirping and a dog panting", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "loud clanking and banging with brief male speech"], "sample_ids": ["uRExseg-0XI", "sWZzXuWYY"], "start_seconds": ["210", "420"], "properties": ["woman, man, water", "male, speech, banging"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", null], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a sewing machine runs and a man speaks"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["people converse as a motor runs and air brakes hiss", "a woman speaks happily and an animal chirps"], "sample_ids": ["zFjIWfSD-4", "uWAAAL4CIoc"], "start_seconds": ["410", "0"], "properties": ["People, motor, brakes", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["skd2PphS6oI", "tdWhHV3X25Q"], "start_seconds": ["190", "60"], "properties": ["ring, bird, vocalize", "applause, audience, yells"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "some men converse over an engine running"], "sample_ids": ["sEprKHm8Sj8", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["car, tires, slows", "men, converse, engine"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is stationary", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "an infant crying as a woman laughs"], "sample_ids": ["u--KhUW8l1Y", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["engine, sound, horn", "a, laugh, infant"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["bees buzz and wind blows", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tMJne1a4AFI", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["bees buzz, wind blows, bees", "two men, woman, birds"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a video of a natural event?", "label": 0}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "wind blowing followed by a zoom"], "sample_ids": ["vfYTJq7nU", "vr8ZXjEBhMQ"], "start_seconds": ["130", "150"], "properties": ["ducks, quack, man", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a duck quacks and a woman speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "small dogs yip and bark sharply"], "sample_ids": ["vveS8HT7Uog", "v-wcQf4BDY0"], "start_seconds": ["100", "120"], "properties": ["a man, objects, speak", "bark, yip, sharply"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["wvKpEYswXO0", "vKrYfzleLB8"], "start_seconds": ["150", "110"], "properties": ["water, tap, run", "a, ring, gunshots"], "captions_pred_video": ["of the person preparing food in the kitchen", "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "people applaud and hoot and chat quietly"], "sample_ids": ["w6RTHR6AeAg", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["call, owl, screech", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak as gunfire rings out", "a man speaks as a motor runs in the background"], "sample_ids": ["wqTCwqVRDlk", "xZepNM9qcRA"], "start_seconds": ["80", "30"], "properties": ["gunfire, ring, speak", "background, motor, run"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs barking and whimpering", "people speak as gunfire rings out"], "sample_ids": ["tIY7qOV3rEM", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["barking, whimpering, dog", "gunfire, ring, speak"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a person speaks briefly"], "sample_ids": ["vfYTJq7nU", "zOZleIRqZm4"], "start_seconds": ["130", "80"], "properties": ["ducks, quack, man", "person, talk, brief"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking with crickets chirping in the background"], "question": "which entity is a person talking?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a stream of water runs briefly"], "sample_ids": ["sSMl2vc3ek", "x-PeY8Yb8M4"], "start_seconds": ["20", "300"], "properties": ["loud, multiple, distance", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "small dogs yip and bark sharply"], "sample_ids": ["yDoT73BWsdA", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["engine revs, tires squeal, vehicle", "bark, yip, sharply"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a jet engine spools up and takes off", "an insect buzzes around continuously"], "sample_ids": ["vBslzh7saPw", "v25l1jef3JY"], "start_seconds": ["90", "0"], "properties": ["engine, spools, takes", "buzzes, continuously, insect"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a man speaks while water drains", "people applaud and hoot and chat quietly"], "sample_ids": ["vSeGhaZt-aI", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["water, drain, man", "people, applaud, hoot"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "waves crash against a shoreline and people speak"], "sample_ids": ["wyllXV6PjKo", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["a kid, talk, cry", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a kid speaks followed by music playing", "people applaud and hoot and chat quietly"], "sample_ids": ["tQWGZLItBXk", "wwyfGO2J4"], "start_seconds": ["170", "90"], "properties": ["music, kid, speak", "people, applaud, hoot"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a propeller rotates loudly and intensely"], "sample_ids": ["vlJS7LN2XyM", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["background, clocks, ticking", "loud, intense, propeller"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a ticktock of a clock", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["tDlfY3nmx1A", "vJ7JPEFhyLA"], "start_seconds": ["160", "16"], "properties": ["applause, laugh, man", "three men, wind, flow"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "water pouring and bubbling"], "sample_ids": ["yZrFNS7GFBQ", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["pigeon, buzzes, insect", "water, bubbles, pouring"], "captions_pred_video": ["of the bird in the cage", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["an owl hoots in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds fly and flutter around", "birds chirp quietly and an adult man speaks"], "sample_ids": ["wGKgwOP3h30", "zuua6-5goWw"], "start_seconds": ["30", "30"], "properties": ["fly, flutter, around", "birds, chirp, quiet, man, speaks"], "captions_pred_video": ["of the pigeons in the coop", "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["pigeons coo and flap their wings", "birds are chirping and a man is speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a duck quacks continuously"], "sample_ids": ["zsLxS-uLJTw", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["horn, blast, train", "quacks, continuously, duck"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["vehicles pass by on a roadway", "winds blows roughly as a vehicle races past"], "sample_ids": ["tgbONvsP47Y", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["pass, vehicle, roadway", "wind, blows, vehicle"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car is driving on the road ", "a jet engine roars and wind blows "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["popping and crackling repeats as men yell and laugh", "wind blows as people chatter quietly"], "sample_ids": ["rqu8iB22IY", "xBxDz0CFVn0"], "start_seconds": ["5", "30"], "properties": ["sound, repeats, laugh", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a motorcycle engine is idling", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vZAqdHZ81yA", "vJ7JPEFhyLA"], "start_seconds": ["180", "16"], "properties": ["engine, motorcycle, idling", "three men, wind, flow"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "some men converse over an engine running"], "sample_ids": ["ziUT9IFTkjg", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["background, birds, rustling", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more likely to be in a museum", "label": 1}, {"captions": ["a door opens and birds chirp", "a man speaks as horns blow"], "sample_ids": ["yeFvk9x0wWI", "tHyNqRyK34A"], "start_seconds": ["30", "24"], "properties": ["door, open, birds", "a, man, speaks"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a car is honking with background noise "], "question": "which entity is a person", "label": 1}, {"captions": ["a woman talking as an infant is crying", "several insects fly while two men talk"], "sample_ids": ["tMbMDvT50j8", "s-T9OVOiMLo"], "start_seconds": ["12", "330"], "properties": ["a, talk, infant", "several, fly, men"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a woman talking to an infant?", "label": 0}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays"], "sample_ids": ["yYEVLuqEytU", "sU53zg9Jp7s"], "start_seconds": ["40", "380"], "properties": ["animal, pig, background", "a bird chirps, a door bell ringing, a woman gasps"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a cartoon girl is standing in front of a blue couch"], "captions_pred_audio": ["several sheep bleat and a man speaks", "birds chirp and a doorbell rings with breathing and music in the background "], "question": "which entity has a doorbell?", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a toilet flushes and a female speaks"], "sample_ids": ["zALy31PjDl0", "yaln9y8I7ms"], "start_seconds": ["21", "230"], "properties": ["a man, a vehicle, a horn", "female, flushes, toilet"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["vbpKkWvfOu4", "ugHJF0hfYkg"], "start_seconds": ["560", "10"], "properties": ["a, man, speaks", "loud, intense, propeller"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a helicopter is flying overhead "], "question": "which is louder", "label": 0}, {"captions": ["an small aircraft engine runs and a boy speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xSKJGCItUWE", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["engine, run, boy", "rustling, ducks, quack"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a boy speaking?", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yZp6xizR0yU", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["animal, bleat, cry", "three men, wind, flow"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["water splashes and wind noise is made into a microphone", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sDSppXIlJrs", "wDVMhEdTiVw"], "start_seconds": ["27", "30"], "properties": ["microphone, water, wind", "gun, shoot, water"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xBxDz0CFVn0", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["wind, chatter, people", "engine, idle, woman"], "captions_pred_video": ["footage is blurry and out of focus", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["someone snores nearby", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["spJCm8tD9Zo", "wyllXV6PjKo"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a baby, a woman, a man"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a woman speaks and a baby cries"], "question": "which entity has more people in it", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "water pouring and bubbling"], "sample_ids": ["xERFUeZONz8", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["ring, approach, traffic", "water, bubbles, pouring"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["an emergency vehicle siren blares", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["running water in a faucet with some clinks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zNRChLjqcU", "vJ7JPEFhyLA"], "start_seconds": ["220", "16"], "properties": ["water, faucet, run", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a liquid flowing?", "label": 1}, {"captions": ["a child yells and another yells", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vMDHu7Lxcgw", "vlS6YMeWAPo"], "start_seconds": ["410", "40"], "properties": ["two, yell, child", "sheep, baa, birds"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "water flows and trickles"], "sample_ids": ["smGI3C1NZc", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["water, drain, toilet", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a toilet is flushed", "water is splashing and gurgling"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a motorcycle engine works nearby", "water is sprayed across a hard surface"], "sample_ids": ["tOSWIURC-4", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["engine, work, nearby", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a lawn mower is running ", "spraying followed by silence"], "question": "which is a liquid", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sSMl2vc3ek", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["loud, multiple, distance", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "people cheer as a vehicle engine revs"], "sample_ids": ["uPDn2BFTHk", "xjhAnI2q6hM"], "start_seconds": ["140", "6"], "properties": ["lady, laugh, baby", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xO-Q2BlIIPU", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["two men, exclamation, speak", "two men, woman, birds"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has two men speaking?", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a duck quacks continuously"], "sample_ids": ["ylpYOorfH4o", "vh30P49Po6s"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "quacks, continuously, duck"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "an airplane engine runs"], "sample_ids": ["u--KhUW8l1Y", "yVPZ2MNWpms"], "start_seconds": ["0", "0"], "properties": ["engine, sound, horn", "engine, airplane, runs"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a car is driving by on the road "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a church bell rings several times", "someone snores nearby"], "sample_ids": ["sUVVjE3Ucp8", "spJCm8tD9Zo"], "start_seconds": ["0", "90"], "properties": ["ring, bell, several", "someone snores, nearby, someone"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a church bell is ringing ", "a person is snoring loudly"], "question": "which is louder", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "small dogs yip and bark sharply"], "sample_ids": ["xNMovAf3o50", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["rain, thunder, music", "bark, yip, sharply"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a car speeding up in the distance"], "sample_ids": ["tPJvjq9QePY", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["animal, bleat, moo", "distance, car, speed"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sapQIQUhFc", "yDoT73BWsdA"], "start_seconds": ["280", "10"], "properties": ["water, trickles, flow", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "music plays and animals vocalize as a cartoon character makes sounds"], "sample_ids": ["tOj4tdLRaA", "weDbePuc-Xc"], "start_seconds": ["70", "40"], "properties": ["woman, laugh, baby", "cartoon character, music, vocalize"], "captions_pred_video": [null, "a cartoon frog and a butterfly are sitting on the ground next to each other"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and birds are chirping with a frog croaking in the background "], "question": "which entity has a baby?", "label": 0}, {"captions": ["small dogs yip and bark sharply", "a car accelerates and wind blows"], "sample_ids": ["v-wcQf4BDY0", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["bark, yip, sharply", "accelerates, wind, blows"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", null], "captions_pred_audio": ["a dog barks and growls", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "an airplane engine runs"], "sample_ids": ["vuUVPzd2FXw", "yVPZ2MNWpms"], "start_seconds": ["160", "0"], "properties": ["a, steam, release", "engine, airplane, runs"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a car is driving by on the road "], "question": "which object releases steam", "label": 0}, {"captions": ["a man speaks while video game music plays with some clicking", "a toilet flushes and water drains"], "sample_ids": ["tw76HGONaKg", "sfAvvZwdLCY"], "start_seconds": ["570", "20"], "properties": ["music, click, man", "water drains, flushes, water"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["people speak in a closed space", "vehicle engines race around a track as a man commentates"], "sample_ids": ["sTpirNYo8vQ", "sZPuqDgX2V0"], "start_seconds": ["30", "30"], "properties": ["people, space, speak", "commentator, race, track"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking and a helicopter is flying overhead "], "question": "which is a video", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a duck quacks continuously"], "sample_ids": ["u--KhUW8l1Y", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "quacks, continuously, duck"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a man speaks as a car is passing by"], "sample_ids": ["xKB8O8LTs6s", "sK4u5T8hW78"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "a, car, pass"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a radio?", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "two women and a man talk while a kid cries"], "sample_ids": ["vzxHnu-SFEw", "wyllXV6PjKo"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "a kid, talk, cry"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman speaks and a baby cries"], "question": "which entity has a kid?", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "an airplane engine runs"], "sample_ids": ["xjhAnI2q6hM", "yVPZ2MNWpms"], "start_seconds": ["6", "0"], "properties": ["wind, blow, loudly", "engine, airplane, runs"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a car is driving by on the road "], "question": "which entity is running", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vmrxwuAMb2I", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["a dog, inhales, exhales", "loud, laughter, intermittent"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a dog barks and growls", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a heavy rain falls endlessly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wP8ZKrlx3oA", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["heavy, rain, fall", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["tIY7qOV3rEM", "vzceMbklWc"], "start_seconds": ["0", "180"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "water, faucet, sink"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "water is running and a man is speaking"], "question": "which entity is a video of a sink?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "dog barking and vehicle engine idling followed shortly by vehicle engine revving"], "sample_ids": ["xC8kbrKJmco", "zY3icUyMdh8"], "start_seconds": ["0", "20"], "properties": ["background, goat, scream", "dog, bark, engine"], "captions_pred_video": [null, "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a goat is bleating ", "a car is driving and dogs are barking and squealing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an aircraft engine runs", "some men converse over an engine running"], "sample_ids": ["yLCORCnd35Q", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["engine, aircraft, runs", "men, converse, engine"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", null], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a telephone rings followed by a woman talking"], "sample_ids": ["yajyRTUQk3U", "tGcFnX0GHI"], "start_seconds": ["400", "0"], "properties": ["noise, woman, speak", "ring, talk, woman"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a dial tone sounds followed by a woman speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "water splashes as an animal walks through"], "sample_ids": ["zcDwZ6W7E3E", "w1ir-sZ3Im8"], "start_seconds": ["180", "90"], "properties": ["man, speak, motorcycles", "animal, water, splashes"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "small dogs yip and bark sharply"], "sample_ids": ["tGcFnX0GHI", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["ring, talk, woman", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a car accelerates and wind blows", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["u0TrcHhkPQ", "vlJS7LN2XyM"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "background, clocks, ticking"], "captions_pred_video": [null, "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a ticktock of a clock"], "question": "which entity is accompanied by clocks ticking in the background?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a small engine idles continuously"], "sample_ids": ["sQGXqGcwOTc", "y5WII6cTH7k"], "start_seconds": ["3", "40"], "properties": ["cling, speak, dishes", "engine, idle, continuously"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "an engine is knocking and vibrating "], "question": "which entity is stationary", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "an insect buzzes around continuously"], "sample_ids": ["sTpirNYo8vQ", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["a, tone, fast", "buzzes, continuously, insect"], "captions_pred_video": ["of a man taking a selfie on a bus", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a telephone rings followed by a woman talking"], "sample_ids": ["zOZleIRqZm4", "tGcFnX0GHI"], "start_seconds": ["80", "0"], "properties": ["rustling, leaves, person", "ring, talk, woman"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a recording", "label": 1}, {"captions": ["food is frying then a woman speaks", "an aircraft engine runs as wind blows heavily"], "sample_ids": ["ukxt9I7eMMg", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["food, woman, speak", "engine, run, wind"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a jet engine roars and wind blows "], "question": "which entity is a moving object", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["w2JXXIAdUdg", "wnpJndXuxLc"], "start_seconds": ["10", "50"], "properties": ["snoring, distance, person", "beeps, loud, whistle"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["t97k0cejSQE", "xfaoyyzw2WU"], "start_seconds": ["250", "180"], "properties": ["bird, chirp, insect", "loud, jet engine, roar"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vimzuGQvdcU", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "rooster, crow, background, men"], "captions_pred_video": ["a group of people are rafting down a river", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a man speaks as crickets sing", "a airplane flies overhead as a woman speaks"], "sample_ids": ["ryFDPxgDOGc", "zj2R0XoFr5k"], "start_seconds": ["570", "50"], "properties": ["a, crickets, sing", "airplane, fly, woman"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a man speaking as crickets sing?", "label": 0}, {"captions": ["an engine runs loudly", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vqZuVbG6-HI", "w5W5Kqtc8E"], "start_seconds": ["130", "100"], "properties": ["loud, engine, run", "wind, blow, vehicle"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a woman speaks as she rubs two objects together"], "sample_ids": ["yVumC9TGknc", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["humming, clock, birds", "two objects, woman, speak"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a series of beeps and chirps", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["slZLHwNbbt4", "zl9Dqx-j7q4"], "start_seconds": ["300", "6"], "properties": ["a, horn, run", "engine, laugh, loud"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "an airplane engine runs"], "sample_ids": ["sG7TyPnFDR0", "yVPZ2MNWpms"], "start_seconds": ["180", "0"], "properties": ["beeps, machine, smoke alarm", "engine, airplane, runs"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a car is driving by on the road "], "question": "which entity is a machine?", "label": 0}, {"captions": ["birds vocalize and a man speaks", "paper is crumpling consistently"], "sample_ids": ["v0wPrLBI3hg", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["vocalize, bird, speak", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "winds blows roughly as a vehicle races past"], "sample_ids": ["zO-LSSY92ZM", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["liquid, surface, sound", "wind, blows, vehicle"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["steam is hissing and hissing", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["vehicles pass by on a roadway", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["tgbONvsP47Y", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["pass, vehicle, roadway", "animal, grunts, snorts"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking and a baby is crying"], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["someone snores nearby", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["spJCm8tD9Zo", "zl9Dqx-j7q4"], "start_seconds": ["90", "6"], "properties": ["someone snores, nearby, someone", "engine, laugh, loud"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person is snoring loudly", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "an airplane accelerates briefly"], "sample_ids": ["xERFUeZONz8", "zjTG0gaGCUI"], "start_seconds": ["0", "80"], "properties": ["ring, approach, traffic", "accelerates, airplane, briefly"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", null], "captions_pred_audio": ["an emergency vehicle siren blares", "a jet engine roars as wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a stream runs then someone speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wbHTKEJZyhc", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["stream, run, someone", "People, motor, brakes"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a stream running?", "label": 0}, {"captions": ["a woman sneezes then speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["x4dZyf9Gbj0", "w34HjHr6gAY"], "start_seconds": ["130", "30"], "properties": ["sneezes, speaks, woman", "beeps, hit, woman"], "captions_pred_video": ["footage is blurry and out of focus", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman sneezes and speaks", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a door opens and birds chirp", "a mechanical buzzing getting louder"], "sample_ids": ["yeFvk9x0wWI", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["door, open, birds", "noise, loud, buzzing"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["continuous snoring", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sLkeqCDJIyw", "tiDFTC-5vU"], "start_seconds": ["120", "30"], "properties": ["loud, snoring, noise", "male, duck, laugh"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a man speaks as a car is passing by"], "sample_ids": ["x6ijhqRY38s", "sK4u5T8hW78"], "start_seconds": ["250", "30"], "properties": ["something metal, glass, hit", "a, car, pass"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "water splashes and a door squeaks"], "sample_ids": ["vimzuGQvdcU", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["a, man, yells", "sound, splash, door"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a dog barks and taps with background noise "], "question": "which entity has a door squeaking?", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w9lpbUn0hPc", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["male, wind, rustling", "three men, wind, flow"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more wind", "label": 1}, {"captions": ["a toilet flushes and water drains", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sfAvvZwdLCY", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["water drains, flushes, water", "a woman, laughs, animal"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a man speaks followed by another man speaking outside"], "sample_ids": ["vmrxwuAMb2I", "viuTg1M-dqg"], "start_seconds": ["40", "30"], "properties": ["a dog, inhales, exhales", "two men, speak, follow"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking to another person?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["vZAw4apG0Es", "tDlfY3nmx1A"], "start_seconds": ["30", "160"], "properties": ["background, clock, ticktocks", "applause, laugh, man"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a clock is ticking and people are talking", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity has a clock ticktocking in the background?", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "a car speeding up in the distance"], "sample_ids": ["x4a9YGIw4ok", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["water, gurgles, stops", "distance, car, speed"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and water splashes", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["w5W5Kqtc8E", "y2bVZ7rz-5M"], "start_seconds": ["100", "280"], "properties": ["water, splashes, motorboat", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["a woman speaks while water pours", "a clock rings and ticktocks"], "sample_ids": ["wTideSjRFS0", "yaLIJu2U4Y"], "start_seconds": ["30", "30"], "properties": ["water, pours, woman", "ring, ticktock, clock"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": null, "question": "which entity is silent", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a clock ticktocks"], "sample_ids": ["zgUgkpk78xU", "v-g-j2uTByM"], "start_seconds": ["70", "30"], "properties": ["horn, bells, ring", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["people speak and tapping occurs", "water flows and trickles"], "sample_ids": ["tFCUUGdREgA", "tB7hWb9gTuQ"], "start_seconds": ["70", "30"], "properties": ["people, tap, speak", "water, flow, trickle"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "wind blowing followed by a zoom"], "sample_ids": ["sapQIQUhFc", "vr8ZXjEBhMQ"], "start_seconds": ["280", "150"], "properties": ["water, stream, trickles", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a person is whistling", "a speedboat passes quickly on the water"], "sample_ids": ["sIXTftIuUgw", "tjmoSi330GM"], "start_seconds": ["90", "23"], "properties": ["person, whistling, person", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a person whistling a song", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zF8yoL0rkbI", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["engine, run, someone", "applause, audience, yells"], "captions_pred_video": ["footage of the traffic on the street at night", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a man speaks as a car is passing by"], "sample_ids": ["vKrYfzleLB8", "sK4u5T8hW78"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "a, car, pass"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more calm", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a man speaks over intermittent keyboard taps"], "sample_ids": ["xM4joTqDVp4", "tw76HGONaKg"], "start_seconds": ["160", "570"], "properties": ["background, chirp, birds", "audio, man, keyboard"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "wind blows as people chatter quietly"], "sample_ids": ["w2M4i1mklOA", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "wind, chatter, people"], "captions_pred_video": ["footage of an antique clock", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["vK93VuO0yNc", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["male voice, bus, rumble", "sound, chirp, buzz"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "a bee on a purple thistle flower"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a bee buzzes and a woman speaks"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a helicopter engine runs continuously", "an adult woman and an adult man speak"], "sample_ids": ["ugHJF0hfYkg", "zTLVJCo4WEE"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "two people, adult, speak"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman speaks and crickets chirp"], "question": "which entity is speaking", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "wind blowing followed by a zoom"], "sample_ids": ["xOZfdgAgJ9o", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["woman, whimpering, speaking", "wind, blow, zoom"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["water runs into a sink while men speak", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vzceMbklWc", "zFjIWfSD-4"], "start_seconds": ["180", "410"], "properties": ["water, sink, run", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a woman speaks as she rubs two objects together"], "sample_ids": ["xjvTpk2Zpr8", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["wind, blows, vehicle", "two objects, woman, speak"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["u2f5NpsoHBg", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["person, laugh, clap", "People, motor, brakes"], "captions_pred_video": ["is being projected on a screen at the front of the stage", null], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity shows a person speaking and laughing and clapping?", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "a machine engine runs and a man speaks"], "sample_ids": ["wyllXV6PjKo", "vs65y4qmyBE"], "start_seconds": ["30", "340"], "properties": ["a kid, talk, cry", "engine, run, man"], "captions_pred_video": [null, "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a woman speaks and a baby cries", "a heavy engine is running and men are speaking "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wqADXCzngMw", "zj2R0XoFr5k"], "start_seconds": ["340", "50"], "properties": ["engine, idle, man", "airplane, boy, fly"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a plane flying by?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a car accelerates and wind blows"], "sample_ids": ["sxYkFKFIZD0", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["screech, man, door", "accelerates, wind, blows"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a race car accelerates and revs its engine "], "question": "which car is moving faster", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xKB8O8LTs6s", "y8WEcpOlT3I"], "start_seconds": ["70", "40"], "properties": ["music, gunfire, explosion", "harsh, wind, blows"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "on how to use a sewing machine youtube"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a man speaks with another voice speaking in the background"], "sample_ids": ["uJV8NDaHqqk", "u21-Z5gJCB8"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "background, voice, man"], "captions_pred_video": ["a bee hive in a wooden box", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with background noise and breathing sounds "], "question": "which entity is quieter", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a few ducks quack and scamper and a man speaks"], "sample_ids": ["yRx9txMcBl0", "w2bYrCVLT60"], "start_seconds": ["40", "120"], "properties": ["motors, tires, screech", "ducks, speak, quack"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of the ducks drinking from a pink pool in the grass"], "captions_pred_audio": ["a car is revving its engine and skidding ", "ducks are quacking and a man is speaking"], "question": "which entity is a bird?", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a young woman speaks over spraying and another person yells"], "sample_ids": ["xjvTpk2Zpr8", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["wind, blows, vehicle", "person, spray, yell"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking over spraying?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a train horn blows as it passes by"], "sample_ids": ["yRx9txMcBl0", "zVacuqSb4LI"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "horn, blows, train"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["an insect buzzes around continuously", "birds vocalize and chirp continuously"], "sample_ids": ["v25l1jef3JY", "w1mlz3Pe4fU"], "start_seconds": ["0", "300"], "properties": ["buzzes, continuously, insect", "vocalize, chirp, continuously"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a bird in a cage"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "birds are chirping and singing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a door opens and birds chirp", "a man speaks followed by another man speaking outside"], "sample_ids": ["yeFvk9x0wWI", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "two men, speak, follow"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a woman and man are speaking"], "sample_ids": ["x9JovgqUcs", "vbpKkWvfOu4"], "start_seconds": ["500", "560"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "two people, speaking, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a woman is speaking and a man is speaking"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "a stream of water runs briefly"], "sample_ids": ["x4a9YGIw4ok", "x-PeY8Yb8M4"], "start_seconds": ["120", "300"], "properties": ["water, gurgles, stops", "stream, water, run"], "captions_pred_video": ["footage is blurry and out of focus", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a toilet flushes and water splashes", "a car is driving on a wet road "], "question": "which entity has more water", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a clock ticktocks briefly"], "sample_ids": ["uzQnlJXBbOM", "u7C-AEBQM"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a ticktock of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xyx6eNVEYRY", "xKB8O8LTs6s"], "start_seconds": ["380", "70"], "properties": ["loud, engine, muffles", "music, gunfire, explosion"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["x6ijhqRY38s", "zFjIWfSD-4"], "start_seconds": ["250", "410"], "properties": ["bowl, silverware, man", "People, motor, brakes"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man moving silverware in a bowl?", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "water pouring and bubbling"], "sample_ids": ["uPDn2BFTHk", "uyRfq-jKPpo"], "start_seconds": ["140", "50"], "properties": ["lady, laugh, baby", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a baby laughs and a woman speaks", "water is running from a faucet"], "question": "which entity is more likely to be in a bath", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["weDbePuc-Xc", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["cartoon character, music, vocalize", "wind, blow, vehicle"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["two frogs croak at each other", "small dogs yip and bark sharply"], "sample_ids": ["zg0X6BnhOLQ", "v-wcQf4BDY0"], "start_seconds": ["410", "120"], "properties": ["two frogs, croak, at each other", "bark, yip, sharply"], "captions_pred_video": ["footage of lightning in the sky at night", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a frog is croaking", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a speedboat passes quickly on the water", "a propeller rotates loudly and intensely"], "sample_ids": ["tjmoSi330GM", "ugHJF0hfYkg"], "start_seconds": ["23", "10"], "properties": ["speed, water, boat", "loud, intense, propeller"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a helicopter is flying overhead "], "question": "which is quieter", "label": 0}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "water flows and trickles"], "sample_ids": ["vW4x7S1VfQc", "tB7hWb9gTuQ"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "water, flow, trickle"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["food sizzles in a frying pan", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["yYEVLuqEytU", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["grunt, slurp, background", "animal, grunts, snorts"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a duck quacks loudly and continuously"], "sample_ids": ["sNB8zxXneIM", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "loud, continuous, quacks"], "captions_pred_video": ["a group of geese in a cage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a duck is quacking loudly"], "question": "which duck is quacking loudly", "label": 1}, {"captions": ["food is frying then a woman speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["ukxt9I7eMMg", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["food, woman, speak", "music, gunfire, explosion"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["water bubbles and gurgles.", "a toilet flushes and water drains unevenly"], "sample_ids": ["tB7hWb9gTuQ", "vhJWZheqaE"], "start_seconds": ["30", "0"], "properties": ["bubbles, gurgles, water", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", null], "captions_pred_audio": ["water is splashing and gurgling", "a toilet is flushed"], "question": "which entity is a toilet?", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vK93VuO0yNc", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["male voice, bus, rumble", "wind, blow, vehicle"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", null], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "water flows as men speak and yell"], "sample_ids": ["wSVhSdj0F0", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["beep, clang, footsteps", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and yelling?", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tDlysoZiA1I", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["animal, grunts, chirps", "loud, jet engine, roar"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["xyx6eNVEYRY", "xjvTpk2Zpr8"], "start_seconds": ["380", "70"], "properties": ["loud, engine, muffles", "wind, blows, vehicle"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["water splashes as an animal walks through", "wind blowing followed by a zoom"], "sample_ids": ["w1ir-sZ3Im8", "vr8ZXjEBhMQ"], "start_seconds": ["90", "150"], "properties": ["animal, water, splashes", "wind, blow, zoom"], "captions_pred_video": ["footage of a group of people riding horses through a river", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["water splashes and gurgles as people speak", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xSKJGCItUWE", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["engine, run, boy", "loud, multiple, distance"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "a machine engine runs and a man speaks"], "sample_ids": ["s4tUs779vBA", "vs65y4qmyBE"], "start_seconds": ["160", "340"], "properties": ["a, sound, stop", "engine, run, man"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a heavy engine is running and men are speaking "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a machine beeps continuously"], "sample_ids": ["wnpJndXuxLc", "y682ml90jGw"], "start_seconds": ["50", "11"], "properties": ["beeps, loud, whistle", "beeps, machine, continuously"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a beeping sound is being made "], "question": "which entity is a machine", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "someone snores nearby"], "sample_ids": ["vh30P49Po6s", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["loud, continuous, quacks", "someone snores, nearby, someone"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a duck is quacking loudly", "a person is snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "an insect buzzes around continuously"], "sample_ids": ["uEU-Hg5MTN8", "v25l1jef3JY"], "start_seconds": ["27", "0"], "properties": ["a woman, laughs, animal", "buzzes, continuously, insect"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a fly is buzzing around a microphone "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a car accelerates and wind blows"], "sample_ids": ["uKCSGgof8gI", "u0TrcHhkPQ"], "start_seconds": ["12", "20"], "properties": ["chirps, distance, signal", "accelerates, wind, blows"], "captions_pred_video": ["footage of a street in a small town on a sunny day", null], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["x6ijhqRY38s", "tiDFTC-5vU"], "start_seconds": ["250", "30"], "properties": ["bowl, silverware, man", "male, duck, laugh"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wtDqrBygTcU", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["man, engine, run", "music, gunfire, explosion"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a motor is running", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a person is snoring while sleeping", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vJrjSeP17yE", "tiDFTC-5vU"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "male, duck, laugh"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and ducks are quacking"], "question": "which entity is a person", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uRExseg-0XI", "zj2R0XoFr5k"], "start_seconds": ["210", "50"], "properties": ["woman, man, water", "airplane, boy, fly"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a vehicle engine accelerating then running on idle"], "sample_ids": ["w34HjHr6gAY", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["beeps, hit, woman", "engine, accelerate, idle"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tK4VlLsNxak", "zj2R0XoFr5k"], "start_seconds": ["120", "50"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "airplane, boy, fly"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "goats bleat and metal clings"], "sample_ids": ["tgbONvsP47Y", "tH17JPjDPnc"], "start_seconds": ["0", "260"], "properties": ["pass, vehicle, roadway", "bleat, metal, clings"], "captions_pred_video": ["footage of a fire truck entering a garage", "feed of the goats eating hay in the barn"], "captions_pred_audio": ["a car is driving on the road ", "a cow is mooing and mechanisms are ticking "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "vehicles pass by on a roadway"], "sample_ids": ["yks4cLgIDMc", "tgbONvsP47Y"], "start_seconds": ["170", "0"], "properties": ["background, speaking, child", "pass, vehicle, roadway"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a child is crying", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "birds chirp and objects are moved around"], "sample_ids": ["s4Uz1Ffgo04", "yPUYU6t3rwo"], "start_seconds": ["100", "370"], "properties": ["water, rushes, vehicle", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "insects buzz and a man speaks"], "question": "which entity is more calm", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["zliInBdC98Y", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["a, baby, cries, wails", "engine revs, vehicle, people"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a baby cries and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "some light rustling followed by a loud burp and a girl speaking"], "sample_ids": ["uYT5gxnyMWM", "vdoxuJn9lTc"], "start_seconds": ["50", "40"], "properties": ["female, spraying, scream", "burp, loud, girl"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a child speaks followed by a burp"], "question": "which entity is a burp", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a clock ticktocks"], "sample_ids": ["ylpYOorfH4o", "v-g-j2uTByM"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "ticktocks, clock, ticktocks"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a baby cries and a woman moans", "a telephone rings followed by a woman talking"], "sample_ids": ["smDKStoHBJo", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["a, cry, woman", "ring, talk, woman"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "a man speaks as a car is passing by"], "sample_ids": ["s4tUs779vBA", "sK4u5T8hW78"], "start_seconds": ["160", "30"], "properties": ["a, sound, stop", "a, car, pass"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["some tunes played by whistling", "a duck quacks continuously"], "sample_ids": ["u6BnG6YZqJ4", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["tune, play, whistling", "quacks, continuously, duck"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person whistling a song", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a person snoring several times"], "sample_ids": ["ukg5L09Wpvo", "spJCm8tD9Zo"], "start_seconds": ["150", "90"], "properties": ["clickety-clack, train, whistle", "snore, person, several"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a person is snoring loudly"], "question": "which is louder", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "small dogs growl, bark and yip."], "sample_ids": ["vf44CgrjT0A", "sShpyu2l4YQ"], "start_seconds": ["20", "0"], "properties": ["loud, long, person", "growl, bark, yip"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "the puppies are playing with a toy"], "captions_pred_audio": ["a loud burp", "a dog is barking and growling"], "question": "which entity is more likely to be a dog", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "wind blows as people chatter quietly"], "sample_ids": ["yeFvk9x0wWI", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["clack, bird, chirp", "wind, chatter, people"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage is blurry and out of focus"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "water flows and trickles"], "sample_ids": ["xyx6eNVEYRY", "tB7hWb9gTuQ"], "start_seconds": ["380", "30"], "properties": ["loud, engine, muffles", "water, flow, trickle"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a child speaks in closed space"], "sample_ids": ["y2ZBGpgbhHM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["dog, chirp, breathe", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xjvTpk2Zpr8", "su6FAOcOA8c"], "start_seconds": ["70", "4"], "properties": ["engine, run, wind", "engine, idle, woman"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "pigeons vocalize and birds chirp"], "sample_ids": ["tDVADusiIoc", "uiS58TNyUiw"], "start_seconds": ["60", "430"], "properties": ["wind, radio, waves", "vocalize, bird, chirp"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["y8dSeubCNI", "vbZ-0lGPneg"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tDVADusiIoc", "ukg5L09Wpvo"], "start_seconds": ["60", "150"], "properties": ["water, radio, man", "clickety-clack, train, whistle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a woman speaks as she rubs two objects together"], "sample_ids": ["smDKStoHBJo", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["a, talk, baby, cry", "two objects, woman, speak"], "captions_pred_video": ["a man holding a crying baby in his arms", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman is speaking", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "birds chirp and objects are moved around"], "sample_ids": ["w2JXXIAdUdg", "yPUYU6t3rwo"], "start_seconds": ["10", "370"], "properties": ["snoring, distance, person", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a person snoring and a dog whimpering", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["scraping and female speech with distant music", "vehicles pass by on a roadway"], "sample_ids": ["yHeVV-xeOxQ", "tgbONvsP47Y"], "start_seconds": ["130", "0"], "properties": ["female, speech, music", "pass, vehicle, roadway"], "captions_pred_video": ["of a girl milking a goat's udder", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a car is driving on the road "], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "pigeons vocalize and birds chirp"], "sample_ids": ["yeFvk9x0wWI", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["clack, bird, chirp", "vocalize, bird, chirp"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of the pigeon in the cage"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["wind blows strongly", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w8uLijTqtlU", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["wind, blows, strongly", "three men, wind, flow"], "captions_pred_video": ["footage is blurry and shaky", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a liquid flowing?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a machine beeps continuously"], "sample_ids": ["vimzuGQvdcU", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["a, man, yells", "beeps, machine, continuously"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sfAvvZwdLCY", "xfaoyyzw2WU"], "start_seconds": ["20", "180"], "properties": ["water drains, flushes, water", "loud, jet engine, roar"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a toilet is flushed", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a baby laugh at a sputter", "an engine revs and a turning noise is made"], "sample_ids": ["sLUnaPT5gM8", "tOSWIURC-4"], "start_seconds": ["0", "0"], "properties": ["laugh, sputter, baby", "noise, engine, revs"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a lawn mower is running "], "question": "which noise is made by an engine", "label": 1}, {"captions": ["a woman and man are speaking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vbpKkWvfOu4", "sLUnaPT5gM8"], "start_seconds": ["560", "0"], "properties": ["two people, speaking, woman, man", "loud, laughter, intermittent"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["multiple people speak and children yell while water gurgles", "people speaking indiscriminately in the distance with a person snoring loudly nearby"], "sample_ids": ["vb1fPSDI4c", "w2JXXIAdUdg"], "start_seconds": ["30", "10"], "properties": ["multiple, people, yell", "snoring, distance, person"], "captions_pred_video": [null, "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a person snoring and a dog whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blowing followed by a zoom", "wind blowing followed by a zoom"], "sample_ids": ["vr8ZXjEBhMQ", "vr8ZXjEBhMQ"], "start_seconds": ["150", "150"], "properties": ["wind, blow, zoom", "wind, blow, zoom"], "captions_pred_video": ["is taken from a motorcycle's point of view", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is blowing the wind", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uKCSGgof8gI", "uEU-Hg5MTN8"], "start_seconds": ["12", "27"], "properties": ["chirps, distance, signal", "a woman, laughs, animal"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video of a woman laughing?", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["vlJS7LN2XyM", "wSVhSdj0F0"], "start_seconds": ["30", "10"], "properties": ["background, clocks, ticking", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a car horn honks and keys jangle with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a horn rings out as a machine runs by"], "sample_ids": ["ugHJF0hfYkg", "slZLHwNbbt4"], "start_seconds": ["10", "300"], "properties": ["engine, idle, continuously", "a, horn, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a helicopter is flying overhead ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["dogs barking and whimpering", "a man speaks as a motor runs in the background"], "sample_ids": ["tIY7qOV3rEM", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "background, motor, run"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "a clock ticktocks"], "sample_ids": ["yDoT73BWsdA", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["engine revs, tires squeal, vehicle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yks4cLgIDMc", "xfaoyyzw2WU"], "start_seconds": ["170", "180"], "properties": ["background, speaking, child", "loud, jet engine, roar"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and a child is crying", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["ugHJF0hfYkg", "wSVhSdj0F0"], "start_seconds": ["10", "10"], "properties": ["loud, propeller, move", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a car horn honks and keys jangle with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["u21-Z5gJCB8", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["background, voice, man", "wind, blows, vehicle"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a clock ticktocks continuously", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vlJS7LN2XyM", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "gun, shoot, water"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a ticktock of a clock", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["yLy-WycbVVE", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "beeps, hit, woman"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "cats meow and then a person begins to talk while the cats continue to meow"], "sample_ids": ["xERFUeZONz8", "x5cuQjOdM3E"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "cat, talk, meow"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["an emergency vehicle siren blares", "a cat meows and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vVhthZ45k3Y", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["cat, purr, hiss", "applause, audience, yells"], "captions_pred_video": ["footage is blurry and out of focus", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "people applaud and hoot and chat quietly"], "sample_ids": ["vmrxwuAMb2I", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["a dog, inhales, exhales", "people, applaud, hoot"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", null], "captions_pred_audio": ["a dog barks and growls", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["ugHJF0hfYkg", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["loud, propeller, move", "airplane, boy, fly"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman speaks while a helicopter flies overhead "], "question": "which is not a moving object", "label": 0}, {"captions": ["people converse as a motor runs and air brakes hiss", "a man speaks as a motor runs in the background"], "sample_ids": ["zFjIWfSD-4", "xZepNM9qcRA"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yZrFNS7GFBQ", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["pigeon, buzzes, insect", "water, radio, man"], "captions_pred_video": ["of the bird in the cage", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tgbONvsP47Y", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["noise, truck, accelerate", "music, gunfire, explosion"], "captions_pred_video": ["footage of a fire truck entering a garage", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car is driving on the road ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "a clock ticktocks"], "sample_ids": ["tMJne1a4AFI", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["wind, buzz, rustling", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a swarm of bees on the ground", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a swarm of bees buzzing around", "a clock is ticking loudly"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["a flush is followed by gurgling water, then another flush", "water splashes and a motorboat passes as people yell"], "sample_ids": ["tqR406bGiE", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["flush, water, gurgle", "water, splashes, motorboat"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about water?", "label": 0}, {"captions": ["a train horn blows as it passes by", "an airplane engine runs"], "sample_ids": ["zVacuqSb4LI", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["horn, blows, train", "engine, airplane, runs"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a car is driving by on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["s6DESzUTGjY", "zFjIWfSD-4"], "start_seconds": ["16", "410"], "properties": ["wind, laugh, woman", "People, motor, brakes"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tw76HGONaKg", "sSMl2vc3ek"], "start_seconds": ["570", "20"], "properties": ["A, game, keyboard", "loud, multiple, distance"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a infant makes noise and is excited", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wIJK3-5y0kA", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["noise, excited, infant", "harsh, wind, blows"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is not a person", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a car speeding up in the distance"], "sample_ids": ["wy1eKjR7KC0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["people, talk, distance", "distance, car, speed"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "a race car accelerates and revs its engine "], "question": "which is farther away", "label": 0}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a infant makes noise and is excited"], "sample_ids": ["vW4x7S1VfQc", "wIJK3-5y0kA"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "noise, excited, infant"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["food sizzles in a frying pan", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a clock ticktocks in wind", "a stream of water runs briefly"], "sample_ids": ["yVumC9TGknc", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["ticktocks, clock, wind", "stream, water, run"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a series of beeps and chirps", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xSKJGCItUWE", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "a woman, a television program, a bird"], "captions_pred_video": ["footage of the helicopter flying in the room", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vddP56-ogds", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["liquid, laughs, man", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking while food is frying in the background"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a man talks followed by a woman shouting"], "sample_ids": ["sncRqQ67iJU", "s3cTDAj31g"], "start_seconds": ["460", "80"], "properties": ["loud, repeatedly, man", "man, talk, woman"], "captions_pred_video": ["of an airplane flying in the dark sky at night", null], "captions_pred_audio": ["a person is snoring", "a man is speaking and a baby is crying"], "question": "which entity is a man talking to a woman?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "people applaud and hoot and chat quietly"], "sample_ids": ["v-wcQf4BDY0", "wwyfGO2J4"], "start_seconds": ["120", "90"], "properties": ["bark, yip, sharply", "people, applaud, hoot"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", null], "captions_pred_audio": ["a dog barks and growls", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a car accelerates and wind blows"], "sample_ids": ["vBHyYJ8pL0", "u0TrcHhkPQ"], "start_seconds": ["2", "20"], "properties": ["noise, door, opening", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a race car accelerates and revs its engine "], "question": "which entity is a car?", "label": 1}, {"captions": ["bees buzz and wind blows", "wind blows as people chatter quietly"], "sample_ids": ["tMJne1a4AFI", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["bees buzz, wind blows, bees", "wind, chatter, people"], "captions_pred_video": ["a swarm of bees on the ground", "footage is blurry and out of focus"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a duck quacks several times", "an infant crying frantically"], "sample_ids": ["vh30P49Po6s", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["quacks, duck, several", "cry, infant, frantically"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of the baby crying in the car seat"], "captions_pred_audio": ["a duck is quacking loudly", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["uYT5gxnyMWM", "tw76HGONaKg"], "start_seconds": ["50", "570"], "properties": ["person, spray, yell", "A, game, keyboard"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks and types on a computer keyboard "], "question": "which entity is a video game?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "water running down a sink while a man is talking"], "sample_ids": ["tOSWIURC-4", "vSeGhaZt-aI"], "start_seconds": ["0", "50"], "properties": ["engine, work, nearby", "water, sink, talk"], "captions_pred_video": [null, "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking and pouring liquid with background noise "], "question": "which is a source of water", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vddP56-ogds", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["goats bleat and metal clings", "a boat travels through the waves as the wind blows loudly and a man speaks over a radio"], "sample_ids": ["tH17JPjDPnc", "tDVADusiIoc"], "start_seconds": ["260", "60"], "properties": ["bleat, metal, clings", "wind, radio, waves"], "captions_pred_video": ["feed of the goats eating hay in the barn", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["waves crash against a shoreline and people speak", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["yFB25fqfU8I", "wyllXV6PjKo"], "start_seconds": ["300", "30"], "properties": ["wave, crash, shoreline", "a baby, a woman, a man"], "captions_pred_video": ["footage of a person surfing in the ocean", null], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman speaks and a baby cries"], "question": "which entity is more likely to be a video of a baby crying?", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["zj2R0XoFr5k", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["airplane, fly, overhead", "a woman, chirps, animal"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a dog is barking "], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a duck quacks continuously"], "sample_ids": ["tDVADusiIoc", "vh30P49Po6s"], "start_seconds": ["60", "30"], "properties": ["man, radio, blows", "quacks, continuously, duck"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a duck is quacking loudly"], "question": "which entity is speaking", "label": 0}, {"captions": ["some people speak", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vbZ-0lGPneg", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "music, gunfire, explosion"], "captions_pred_video": ["of a man holding a baby duck in his hands", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a man speaks over intermittent keyboard taps"], "sample_ids": ["uzQnlJXBbOM", "tw76HGONaKg"], "start_seconds": ["50", "570"], "properties": ["ringing, beep, stop", "audio, man, keyboard"], "captions_pred_video": ["footage of a person using a cell phone on a table", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a telephone rings and a man speaks", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a man speaks as a car is passing by"], "sample_ids": ["tQWGZLItBXk", "sK4u5T8hW78"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "a, car, pass"], "captions_pred_video": ["worms revolution screenshots", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xOZfdgAgJ9o", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["woman, whimpering, speaking", "water, radio, man"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["an audience gives applause as a man yells and a group sings", "an airplane engine spools and people speak"], "sample_ids": ["tdWhHV3X25Q", "wTjoRj1se3U"], "start_seconds": ["60", "390"], "properties": ["applause, audience, yells", "airplane, engine, spool"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["continuous snoring", "a clock ticktocks"], "sample_ids": ["sLkeqCDJIyw", "v-g-j2uTByM"], "start_seconds": ["120", "30"], "properties": ["loud, snoring, noise", "ticktocks, clock, ticktocks"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person is snoring loudly", "a clock is ticking loudly"], "question": "which entity makes a ticktocks noise", "label": 1}, {"captions": ["people speak and tapping occurs", "pigeons vocalize and birds chirp"], "sample_ids": ["tFCUUGdREgA", "uiS58TNyUiw"], "start_seconds": ["70", "430"], "properties": ["people, tap, speak", "vocalize, bird, chirp"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a clock ticktocks briefly", "a vehicle engine accelerating then running on idle"], "sample_ids": ["u7C-AEBQM", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks briefly", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a ticktock of a clock", "an engine is idling"], "question": "which is a moving object", "label": 1}, {"captions": ["water runs into a sink while men speak", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vzceMbklWc", "vfYTJq7nU"], "start_seconds": ["180", "130"], "properties": ["water, sink, run", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "a man speaks as a car is passing by"], "sample_ids": ["ugHJF0hfYkg", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "a, car, pass"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is stationary", "label": 1}, {"captions": ["a motorcycle engine is idling", "an airplane engine runs"], "sample_ids": ["vZAqdHZ81yA", "yVPZ2MNWpms"], "start_seconds": ["180", "0"], "properties": ["engine, motorcycle, idling", "engine, airplane, runs"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["an engine is idling loudly", "a car is driving by on the road "], "question": "which entity has a moving engine", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "waves crash against a shoreline and people speak"], "sample_ids": ["tw76HGONaKg", "yFB25fqfU8I"], "start_seconds": ["570", "300"], "properties": ["A, game, keyboard", "wave, crash, shoreline"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is a natural phenomenon", "label": 1}, {"captions": ["a beep repeats multiple times", "a stream of water flows as people talk and wind blows"], "sample_ids": ["y682ml90jGw", "xBxDz0CFVn0"], "start_seconds": ["11", "30"], "properties": ["beep, repeat, multiple", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a duck quacks continuously"], "sample_ids": ["rqfQRErjfk8", "vh30P49Po6s"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "quacks, continuously, duck"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["y8dSeubCNI", "yeFvk9x0wWI"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "clack, bird, chirp"], "captions_pred_video": [null, "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["an engine revving and people talking in the background", "birds chirp in the background as a car drives by "], "question": "which entity is quieter", "label": 1}, {"captions": ["paper folding and crinkling", "some men converse over an engine running"], "sample_ids": ["zPpG3RD8lSs", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["paper, fold, crinkle", "men, converse, engine"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", null], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is a more active scene", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["v0x1odnXtP0", "tDVADusiIoc"], "start_seconds": ["210", "60"], "properties": ["keyboard, type, computer", "water, radio, man"], "captions_pred_video": ["how to make money on youtube in spanish", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["ukg5L09Wpvo", "tDVADusiIoc"], "start_seconds": ["150", "60"], "properties": ["a train, a horn, a bell", "water, radio, man"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a horn?", "label": 0}, {"captions": ["paper is repeatedly crumpled and crinkled", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vms5XGTDVQc", "wDVMhEdTiVw"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "gun, shoot, water"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["paper is crumpled and crinkled", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a gun?", "label": 0}, {"captions": ["water is sprayed across a hard surface", "people applaud and hoot and chat quietly"], "sample_ids": ["sQwlkXjQabo", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["water, spray, surface", "people, applaud, hoot"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["a clock ticktocks briefly", "a crowd yells, reacts and applauds"], "sample_ids": ["u7C-AEBQM", "wztCSUxOf8"], "start_seconds": ["30", "130"], "properties": ["ticktocks, clock, ticktocks briefly", "a crowd, yells, applauds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a crowd is clapping"], "question": "which entity is more animated", "label": 1}, {"captions": ["an airplane engine spools and people speak", "waves crash against a shoreline and people speak"], "sample_ids": ["wTjoRj1se3U", "yFB25fqfU8I"], "start_seconds": ["390", "300"], "properties": ["airplane, engine, spool", "wave, crash, shoreline"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["y8dSeubCNI", "wDVMhEdTiVw"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["an engine revving and people talking in the background", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yRx9txMcBl0", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["motors, tires, screech", "water, radio, man"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water?", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "wind blows as people chatter quietly"], "sample_ids": ["x6ijhqRY38s", "xBxDz0CFVn0"], "start_seconds": ["250", "30"], "properties": ["something metal, glass, hit", "wind, chatter, people"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blowing followed by a zoom", "water pouring and bubbling"], "sample_ids": ["vr8ZXjEBhMQ", "uyRfq-jKPpo"], "start_seconds": ["150", "50"], "properties": ["wind, blow, zoom", "water, bubbles, pouring"], "captions_pred_video": ["is taken from a motorcycle's point of view", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "water is running from a faucet"], "question": "which entity is more likely to be a video of a windy day?", "label": 0}, {"captions": ["an small aircraft engine runs and a boy speaks", "someone is typing on a computer keyboard"], "sample_ids": ["xSKJGCItUWE", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["engine, run, boy", "keyboard, type, computer"], "captions_pred_video": ["footage of the helicopter flying in the room", "how to make money on youtube in spanish"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a drill runs and two people laugh", "wind blows as people chatter quietly"], "sample_ids": ["tEE3MpBt1sg", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "wind, chatter, people"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage is blurry and out of focus"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sEprKHm8Sj8", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["car, tires, slows", "three men, wind, flow"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a car?", "label": 1}, {"captions": ["a church bell rings several times", "some men converse over an engine running"], "sample_ids": ["sUVVjE3Ucp8", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["ring, bell, several", "men, converse, engine"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", null], "captions_pred_audio": ["a church bell is ringing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "pigeons vocalize and birds chirp"], "sample_ids": ["ukg5L09Wpvo", "uiS58TNyUiw"], "start_seconds": ["150", "430"], "properties": ["clickety-clack, train, whistle", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "of the pigeon in the cage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a loud engine muffles a man as he speaks"], "sample_ids": ["t97k0cejSQE", "xyx6eNVEYRY"], "start_seconds": ["250", "380"], "properties": ["bird, chirp, insect", "loud, engine, muffles"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["ukxt9I7eMMg", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "multiple, people, yell"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "some tunes played by whistling"], "sample_ids": ["vz8868znkVQ", "u6BnG6YZqJ4"], "start_seconds": ["60", "0"], "properties": ["audio, click, kid speaking", "tune, play, whistling"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a clock ticktocks"], "sample_ids": ["xKB8O8LTs6s", "v-g-j2uTByM"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "ticktocks, clock, ticktocks"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xOZfdgAgJ9o", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["woman, whimpering, speaking", "stream, water, flow"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a person snoring several times"], "sample_ids": ["zsLxS-uLJTw", "spJCm8tD9Zo"], "start_seconds": ["20", "90"], "properties": ["horn, blast, train", "snore, person, several"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a person is snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a man speaks followed by another man speaking outside"], "sample_ids": ["sxYkFKFIZD0", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["screech, man, door", "two men, speak, follow"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "several insects fly while two men talk"], "sample_ids": ["rqu8iB22IY", "s-T9OVOiMLo"], "start_seconds": ["5", "330"], "properties": ["sound, repeats, laugh", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about insects?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "birds chirp and objects are moved around"], "sample_ids": ["siJFXfGWgDk", "yPUYU6t3rwo"], "start_seconds": ["50", "370"], "properties": ["a, bird, vehicle", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "insects buzz and a man speaks"], "question": "which entity has more birds", "label": 1}, {"captions": ["an insect buzzes around continuously", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["v25l1jef3JY", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["buzzes, continuously, insect", "applause, audience, yells"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking and a crowd is clapping"], "question": "which entity is not a person", "label": 0}, {"captions": ["a person uses a saw to cut some wood", "a propeller rotates loudly and intensely"], "sample_ids": ["sHbXC6na9hg", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["a person, saw, wood", "loud, intense, propeller"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["an engine is idling and vibrating", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a helicopter engine idles continuously", "people speak in the background as a clock ticktocks"], "sample_ids": ["ugHJF0hfYkg", "vZAw4apG0Es"], "start_seconds": ["10", "30"], "properties": ["engine, idle, continuously", "background, clock, ticktocks"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a helicopter is flying overhead ", "a clock is ticking and people are talking"], "question": "which entity is a clock", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a toilet flushes and a female speaks"], "sample_ids": ["xSKJGCItUWE", "yaln9y8I7ms"], "start_seconds": ["10", "230"], "properties": ["engine, work, child", "female, flushes, toilet"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage is blurry and out of focus"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["water flows as men speak and yell", "water pouring and bubbling"], "sample_ids": ["vJ7JPEFhyLA", "uyRfq-jKPpo"], "start_seconds": ["16", "50"], "properties": ["water, flow, men", "water, bubbles, pouring"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a telephone rings followed by a woman talking"], "sample_ids": ["smDKStoHBJo", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["a, talk, baby, cry", "ring, talk, woman"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation between two people?", "label": 0}, {"captions": ["a man speaks as a boat engine runs", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wtDqrBygTcU", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["man, engine, run", "men, talk, cars"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a man speaking as an engine runs?", "label": 0}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w9lpbUn0hPc", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["male, wind, rustling", "loud, multiple, distance"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", null], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a clock ticks quietly and rhythmically"], "sample_ids": ["zofjfKhqLk8", "u7C-AEBQM"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "ticks, rhythmic, quiet"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a person sniffs and sneezes"], "sample_ids": ["wy1eKjR7KC0", "uRlbY6aoBU"], "start_seconds": ["30", "0"], "properties": ["people, talk, distance", "sneezes, person, sniffs"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "a man is sneezing "], "question": "which entity is more likely to be a sneeze", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "wind blowing followed by a zoom"], "sample_ids": ["w-4gHptFNuU", "vr8ZXjEBhMQ"], "start_seconds": ["21", "150"], "properties": ["engine revs, accelerates, bump", "wind, blow, zoom"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a car accelerates and revs its engine ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "people speak in a closed space"], "sample_ids": ["zofjfKhqLk8", "sTpirNYo8vQ"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "people, space, speak"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while a car is revving and accelerating "], "question": "which entity is more quiet", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a pigeon cooing as an insect buzzes by briefly"], "sample_ids": ["wvKpEYswXO0", "yZrFNS7GFBQ"], "start_seconds": ["150", "30"], "properties": ["plastic, tap, speak", "pigeon, buzzes, insect"], "captions_pred_video": ["of the person preparing food in the kitchen", "of the bird in the cage"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "an owl hoots in the background "], "question": "which entity is a bird?", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["smDKStoHBJo", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["a, infant, speaking", "a, scream, girl"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a scream", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a stream of water runs briefly"], "sample_ids": ["wwyfGO2J4", "x-PeY8Yb8M4"], "start_seconds": ["90", "300"], "properties": ["people, applaud, hoot", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["xvDdE3zNf8Y", "w34HjHr6gAY"], "start_seconds": ["120", "30"], "properties": ["a, female, speaks", "beeps, hit, woman"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman speaks and crumples paper", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["someone whistles a tune", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sIXTftIuUgw", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a telephone rings followed by a woman talking"], "sample_ids": ["wvKpEYswXO0", "tGcFnX0GHI"], "start_seconds": ["150", "0"], "properties": ["sound, water, running", "ring, talk, woman"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["se87d6yxEOA", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["run, whistle, pass", "music, gunfire, explosion"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["food is frying while a woman speaks", "water splashes and a door squeaks"], "sample_ids": ["yhQ2Lg-7qDY", "sdXV-ylviw"], "start_seconds": ["130", "190"], "properties": ["food, woman, speak", "sound, splash, door"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a dog barks and taps with background noise "], "question": "which entity is silent", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uYT5gxnyMWM", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["a, scream, girl", "airplane, boy, fly"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a girl speaking followed by a scream?", "label": 0}, {"captions": ["a beep repeats multiple times", "paper is crumpling consistently"], "sample_ids": ["y682ml90jGw", "v5cSxLaHADY"], "start_seconds": ["11", "0"], "properties": ["beep, repeat, multiple", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a beeping sound is being made ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vBHyYJ8pL0", "zFjIWfSD-4"], "start_seconds": ["2", "410"], "properties": ["noise, door, opening", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a door opening and closing?", "label": 0}, {"captions": ["a baby laugh at a sputter", "a child speaks in closed space"], "sample_ids": ["sLUnaPT5gM8", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["laugh, sputter, baby", "child, space, speak"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "an infant crying frantically"], "sample_ids": ["sNB8zxXneIM", "zwOBqeFTgiU"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "cry, infant, frantically"], "captions_pred_video": ["a group of geese in a cage", "of the baby crying in the car seat"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "paper is crumpling consistently"], "sample_ids": ["tDlysoZiA1I", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["animal, grunt, multiple", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a child speaks in closed space"], "sample_ids": ["slZLHwNbbt4", "yW6FWLSLkx4"], "start_seconds": ["300", "40"], "properties": ["train, horn, sound", "child, space, speak"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a man speaks as a car is passing by"], "sample_ids": ["weDbePuc-Xc", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["music, slaps, human", "a, car, pass"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wP8ZKrlx3oA", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["fall, rain, splash", "a woman, something, fried"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "water pouring and bubbling"], "sample_ids": ["uZesmtKZGSw", "uyRfq-jKPpo"], "start_seconds": ["250", "50"], "properties": ["car, track, man", "water, bubbles, pouring"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "vehicles pass by on a roadway"], "sample_ids": ["ul60S8TXDA8", "tgbONvsP47Y"], "start_seconds": ["60", "0"], "properties": ["sound, distance, bell", "pass, vehicle, roadway"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak softly as food sizzles", "vehicles pass by on a roadway"], "sample_ids": ["yhQ2Lg-7qDY", "tgbONvsP47Y"], "start_seconds": ["130", "0"], "properties": ["food, sizzle, speak", "pass, vehicle, roadway"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine beeps continuously", "multiple people speak and children yell while water gurgles"], "sample_ids": ["y682ml90jGw", "vb1fPSDI4c"], "start_seconds": ["11", "30"], "properties": ["beeps, machine, continuously", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a church bell rings several times", "someone is typing on a computer keyboard"], "sample_ids": ["sUVVjE3Ucp8", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["ring, bell, several", "keyboard, type, computer"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "how to make money on youtube in spanish"], "captions_pred_audio": ["a church bell is ringing ", "a person is typing on a keyboard"], "question": "which is not a type of computer", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "a man speaks, then dials a rotary telephone"], "sample_ids": ["zF8yoL0rkbI", "tK4VlLsNxak"], "start_seconds": ["30", "120"], "properties": ["engine, run, someone", "a, dial, telephone"], "captions_pred_video": ["footage of the traffic on the street at night", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking and using a sewing machine"], "question": "which entity is a rotary telephone?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "vehicle engines race around a track as a man commentates"], "sample_ids": ["spJCm8tD9Zo", "sZPuqDgX2V0"], "start_seconds": ["90", "30"], "properties": ["snores, wheezes, sleeps", "commentator, race, track"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a video of a race?", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "three men talk while wind blows and some liquid flows"], "sample_ids": ["t25U-v4k4ts", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["a, chirps, bird", "three men, wind, flow"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a man speaks as a car is passing by"], "sample_ids": ["s4Uz1Ffgo04", "sK4u5T8hW78"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "a, car, pass"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is quieter", "label": 1}, {"captions": ["a car accelerates and wind blows", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["u0TrcHhkPQ", "vbZ-0lGPneg"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "some tunes played by whistling"], "sample_ids": ["xZepNM9qcRA", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["background, motor, run", "tune, play, whistling"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "water flows and trickles"], "sample_ids": ["vBslzh7saPw", "tB7hWb9gTuQ"], "start_seconds": ["90", "30"], "properties": ["engine, roar, louder", "water, flow, trickle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a jet engine roars and accelerates ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["long loud burping by a man", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xmiUIOhtZyQ", "wqZ135Ssz0"], "start_seconds": ["60", "60"], "properties": ["loud, burp, man", "two men, woman, birds"], "captions_pred_video": ["homer simpson drinking a beer", null], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["two frogs croak at each other", "a door slams shut roughly"], "sample_ids": ["zg0X6BnhOLQ", "zkKdxzNC97Y"], "start_seconds": ["410", "27"], "properties": ["two frogs, croak, at each other", "a door, slams, shut"], "captions_pred_video": ["footage of lightning in the sky at night", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a frog is croaking", "a door is opened and closed"], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "small dogs yip and bark sharply"], "sample_ids": ["wIvYjuR3nrg", "v-wcQf4BDY0"], "start_seconds": ["9", "120"], "properties": ["birds, pigeons, vocalize", "bark, yip, sharply"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds are chirping and cooing", "a dog barks and growls"], "question": "which animal is more vocal", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "people speak as gunfire rings out"], "sample_ids": ["vddP56-ogds", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["water, splash, person, laugh", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["wind blows strongly", "some clanking with distant murmuring"], "sample_ids": ["w8uLijTqtlU", "uMTTDZ2mb4"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "clanking, murmuring, distant"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "water is sprayed across a hard surface"], "sample_ids": ["xO-Q2BlIIPU", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["two men, exclamation, speak", "water, spray, surface"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "spraying followed by silence"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "plastic is tapped on while someone speaks"], "sample_ids": ["zO-LSSY92ZM", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["liquid, surface, sound", "plastic, tap, speak"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "of the person preparing food in the kitchen"], "captions_pred_audio": ["steam is hissing and hissing", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "wind blows as people chatter quietly"], "sample_ids": ["s59PfAghdkM", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["bird, chirp, background, horse, neigh", "wind, chatter, people"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a car speeding up in the distance"], "sample_ids": ["x5cuQjOdM3E", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["cat, talk, meow", "distance, car, speed"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "pigeons vocalize and birds chirp"], "sample_ids": ["zcDwZ6W7E3E", "uiS58TNyUiw"], "start_seconds": ["180", "430"], "properties": ["a, man, speak", "vocalize, bird, chirp"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a pigeon cooing as an insect buzzes by briefly"], "sample_ids": ["yaln9y8I7ms", "yZrFNS7GFBQ"], "start_seconds": ["230", "30"], "properties": ["female, flushes, toilet", "pigeon, buzzes, insect"], "captions_pred_video": ["footage is blurry and out of focus", "of the bird in the cage"], "captions_pred_audio": ["a toilet flushes and a man speaks", "an owl hoots in the background "], "question": "which entity is a bird?", "label": 1}, {"captions": ["goats bleat and people speak", "a child speaks in closed space"], "sample_ids": ["z5iUE5h0EPs", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["goats bleat, people speak, language", "child, space, speak"], "captions_pred_video": ["of the goat in the barn", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a goat bleats and a man speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a person is snoring while sleeping", "a car accelerates and wind blows"], "sample_ids": ["vJrjSeP17yE", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["a person is sleeping, snoring, person", "accelerates, wind, blows"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["xM4joTqDVp4", "xjvTpk2Zpr8"], "start_seconds": ["160", "70"], "properties": ["background, chirp, birds", "wind, blows, vehicle"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sapQIQUhFc", "xKB8O8LTs6s"], "start_seconds": ["280", "70"], "properties": ["liquid, flow, distance", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a woman speaks happily and an animal chirps"], "sample_ids": ["tDlysoZiA1I", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["animal, grunts, chirps", "a woman, chirps, animal"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a dog is barking "], "question": "which entity has a woman speaking happily and an animal chirps?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vr8ZXjEBhMQ", "zl9Dqx-j7q4"], "start_seconds": ["150", "6"], "properties": ["wind, blow, zoom", "engine, laugh, loud"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage of a man driving a car in the dark"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a heavy rain falls endlessly", "paper folding and crinkling"], "sample_ids": ["wP8ZKrlx3oA", "zPpG3RD8lSs"], "start_seconds": ["40", "20"], "properties": ["heavy, rain, fall", "paper, fold, crinkle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a heavy rain is falling on a surface", "the wind blows and a mouse clicks "], "question": "which entity is not a natural phenomenon", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a toilet flushes and a female speaks"], "sample_ids": ["x6ijhqRY38s", "yaln9y8I7ms"], "start_seconds": ["250", "230"], "properties": ["something metal, glass, hit", "female, flushes, toilet"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["people speak and tapping occurs", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tFCUUGdREgA", "uEU-Hg5MTN8"], "start_seconds": ["70", "27"], "properties": ["people, tap, speak", "a woman, laughs, animal"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a more snorting animal", "label": 1}, {"captions": ["someone whistles a song", "a clock ticktocks"], "sample_ids": ["sIXTftIuUgw", "v-g-j2uTByM"], "start_seconds": ["90", "30"], "properties": ["someone, song, whistle", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person whistling a song", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sYITalLZjj4", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["stream, flow, wind", "wind, blow, vehicle"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a stream of water flowing nearby?", "label": 0}, {"captions": ["birds chirps while a siren signals in the distance", "paper is crumpling consistently"], "sample_ids": ["uKCSGgof8gI", "v5cSxLaHADY"], "start_seconds": ["12", "0"], "properties": ["chirps, distance, signal", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds fly and flutter around", "several insects fly while two men talk"], "sample_ids": ["wGKgwOP3h30", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["fly, flutter, around", "several, fly, men"], "captions_pred_video": ["of the pigeons in the coop", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["pigeons coo and flap their wings", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of flying?", "label": 0}, {"captions": ["a large bell chimes back and forth loudly", "vehicles pass by on a roadway"], "sample_ids": ["w2M4i1mklOA", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "pass, vehicle, roadway"], "captions_pred_video": ["footage of an antique clock", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a man is filing a hard object"], "sample_ids": ["yI-KvObbDoY", "vveS8HT7Uog"], "start_seconds": ["260", "100"], "properties": ["sound, smack, wind", "a man, hard, object"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a man is filing and speaking with background noise and breathing "], "question": "which entity is about a man filing a hard object?", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "an infant crying frantically"], "sample_ids": ["yswmmRZFItk", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["background, frog, croak", "cry, infant, frantically"], "captions_pred_video": ["a close up of a frog in the water", "of the baby crying in the car seat"], "captions_pred_audio": ["a frog is croaking", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["rwTERCUno", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["engine, idle, sputter", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine is idling and vibrating", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a child babbles as a woman speaks"], "sample_ids": ["sfAvvZwdLCY", "wEBlkGWVWwE"], "start_seconds": ["20", "260"], "properties": ["water drains, flushes, water", "a, babble, woman"], "captions_pred_video": ["footage of the toilet in the bathroom", "shows a person writing on the whiteboard"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a child is speaking with background noise and clapping "], "question": "which entity is a human", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a car accelerates and wind blows"], "sample_ids": ["sfAvvZwdLCY", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["flushes, drains, water", "accelerates, wind, blows"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a duck quacks continuously"], "sample_ids": ["wyllXV6PjKo", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["a kid, talk, cry", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman speaks and a baby cries", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["smDKStoHBJo", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["a, talk, baby, cry", "water, radio, man"], "captions_pred_video": ["a man holding a crying baby in his arms", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a man speaks as a motor runs in the background"], "sample_ids": ["wIJK3-5y0kA", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["a, cry, baby", "background, motor, run"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a child speaks in closed space"], "sample_ids": ["y2ZBGpgbhHM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["animal, growl, bird", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vuUVPzd2FXw", "vfYTJq7nU"], "start_seconds": ["160", "130"], "properties": ["a, steam, release", "rustling, ducks, quack"], "captions_pred_video": ["of the person cooking on the grill with a spatula", null], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "water pouring and bubbling"], "sample_ids": ["yeFvk9x0wWI", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["clack, bird, chirp", "water, bubbles, pouring"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "some men converse over an engine running"], "sample_ids": ["sShpyu2l4YQ", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["growl, bark, yip", "men, converse, engine"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uJV8NDaHqqk", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "stream, water, flow"], "captions_pred_video": ["a bee hive in a wooden box", "footage is blurry and out of focus"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "an adult male speaks and dials a rotary phone"], "sample_ids": ["tOj4tdLRaA", "tK4VlLsNxak"], "start_seconds": ["70", "120"], "properties": ["woman, laugh, baby", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": [null, "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and using a sewing machine"], "question": "which entity is a person", "label": 1}, {"captions": ["water flows as men speak and yell", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vJ7JPEFhyLA", "zj2R0XoFr5k"], "start_seconds": ["16", "50"], "properties": ["water, flow, men", "airplane, boy, fly"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["spJCm8tD9Zo", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["snores, wheezes, sleeps", "airplane, boy, fly"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person is snoring loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a car accelerates and wind blows", "water pouring and bubbling"], "sample_ids": ["u0TrcHhkPQ", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["accelerates, wind, blows", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "someone whistles a tune"], "sample_ids": ["xyL9F5VrjkE", "sIXTftIuUgw"], "start_seconds": ["20", "90"], "properties": ["wind, motor, distance", "someone, tune, whistle"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["a duck quacks loudly and continuously", "some men converse over an engine running"], "sample_ids": ["vh30P49Po6s", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["loud, continuous, quacks", "men, converse, engine"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["uJV8NDaHqqk", "uOpoD0gGXcs"], "start_seconds": ["100", "120"], "properties": ["loud, fly, chirp", "chirps, woman, bird"], "captions_pred_video": ["a bee hive in a wooden box", "a herd of cows grazing in the field"], "captions_pred_audio": ["a swarm of bees buzzing around", "birds are chirping and a man is speaking"], "question": "which entity is a response to a human chirping?", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "frogs croak and vocalize"], "sample_ids": ["w6RTHR6AeAg", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["call, owl, screech", "croak, vocalize, frog"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a frog is croaking"], "question": "which animal is more likely to be a predator", "label": 1}, {"captions": ["continuous sneezing together with speech", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["x4dZyf9Gbj0", "ukg5L09Wpvo"], "start_seconds": ["130", "150"], "properties": ["continuous, sneeze, speech", "clickety-clack, train, whistle"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman sneezes and speaks", "a train blows its whistle and blows its horn "], "question": "which entity is continuous", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "water flows as men speak and yell"], "sample_ids": ["vuUVPzd2FXw", "vJ7JPEFhyLA"], "start_seconds": ["160", "16"], "properties": ["a, steam, release", "water, flow, men"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man talking while metallic objects are rapped and steam is released?", "label": 0}, {"captions": ["a baby cries and a woman speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["tMbMDvT50j8", "xBxDz0CFVn0"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "stream, water, flow"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["scraping and female speech with distant music", "an infant crying as a woman laughs"], "sample_ids": ["yHeVV-xeOxQ", "xhmRY9yhC7c"], "start_seconds": ["130", "20"], "properties": ["female, speech, music", "a, laugh, infant"], "captions_pred_video": ["of a girl milking a goat's udder", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "someone is typing on a computer keyboard"], "sample_ids": ["uEU-Hg5MTN8", "v0x1odnXtP0"], "start_seconds": ["27", "210"], "properties": ["animal, grunts, snorts", "keyboard, type, computer"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vlS6YMeWAPo", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["sheep, baa, birds", "a woman, something, fried"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a goat bleats and birds chirp", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["multiple ducks quack continuously", "goats bleat and people speak"], "sample_ids": ["wfHeoPDLMaM", "z5iUE5h0EPs"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "goats bleat, people speak, language"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of the goat in the barn"], "captions_pred_audio": ["ducks are quacking", "a goat bleats and a man speaks"], "question": "which entity is speaking a language", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["y1saVTXsKwc", "tdWhHV3X25Q"], "start_seconds": ["80", "60"], "properties": ["a, dog, talk", "applause, audience, yells"], "captions_pred_video": ["a dog playing with a pink ball", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman sneezes then speaks", "an infant crying as a woman laughs"], "sample_ids": ["x4dZyf9Gbj0", "xhmRY9yhC7c"], "start_seconds": ["130", "20"], "properties": ["sneezes, speaks, woman", "a, laugh, infant"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman sneezes and speaks", "a baby cries and a woman speaks"], "question": "which woman is laughing", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["t69a8aRKhmc", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["a, b, c", "applause, audience, yells"], "captions_pred_video": ["footage is blurry and out of focus", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a person sniffs and sneezes"], "sample_ids": ["vqZuVbG6-HI", "uRlbY6aoBU"], "start_seconds": ["130", "0"], "properties": ["background, male, female", "sneezes, person, sniffs"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is sneezing "], "question": "which entity is a person", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "an engine runs loudly"], "sample_ids": ["u--KhUW8l1Y", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["horn, siren, life", "loud, engine, run"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "plastic is tapped on while someone speaks"], "sample_ids": ["yYEVLuqEytU", "wvKpEYswXO0"], "start_seconds": ["40", "150"], "properties": ["grunt, slurp, background", "plastic, tap, speak"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of the person preparing food in the kitchen"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["spYNpeN7rPY", "wz7N8YRy74I"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "rooster, crow, background, men"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a clock in the background?", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "birds chirp and objects are moved around"], "sample_ids": ["yajyRTUQk3U", "yPUYU6t3rwo"], "start_seconds": ["400", "370"], "properties": ["a woman, something, fried", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "insects buzz and a man speaks"], "question": "which entity is about birds?", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a woman speaks happily and an animal chirps"], "sample_ids": ["ukg5L09Wpvo", "uWAAAL4CIoc"], "start_seconds": ["150", "0"], "properties": ["a train, a horn, a bell", "a woman, chirps, animal"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vBHyYJ8pL0", "yajyRTUQk3U"], "start_seconds": ["2", "400"], "properties": ["noise, door, opening", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["some men converse over an engine running", "water is sprayed across a hard surface"], "sample_ids": ["sCiy7QS1U", "sQwlkXjQabo"], "start_seconds": ["300", "10"], "properties": ["men, converse, engine", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a child babbles as a woman speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wEBlkGWVWwE", "vfYTJq7nU"], "start_seconds": ["260", "130"], "properties": ["a, babble, woman", "rustling, ducks, quack"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a duck quacks and a woman speaks"], "question": "which entity is about a child?", "label": 0}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "waves crash against a shoreline and people speak"], "sample_ids": ["t69a8aRKhmc", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["a, b, c", "wave, crash, shoreline"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "water is sprayed across a hard surface"], "sample_ids": ["y2ZBGpgbhHM", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["dog, chirp, breathe", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["birds chirping and a dog panting", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tDVADusiIoc", "uEU-Hg5MTN8"], "start_seconds": ["60", "27"], "properties": ["wind, radio, waves", "a woman, laughs, animal"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be in a boat", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zF8yoL0rkbI", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["engine, run, someone", "loud, jet engine, roar"], "captions_pred_video": ["footage of the traffic on the street at night", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a large crowd cheers and applauds"], "sample_ids": ["xl2PIWyXaM", "rqfQRErjfk8"], "start_seconds": ["160", "170"], "properties": ["chirp, man, younger person", "crowd, cheers, applauds"], "captions_pred_video": [null, "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["birds are chirping and people are talking", "a crowd of people clapping and cheering"], "question": "which entity is more active", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zofjfKhqLk8", "tiDFTC-5vU"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "male, duck, laugh"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a child speaks in closed space"], "sample_ids": ["vfYTJq7nU", "yW6FWLSLkx4"], "start_seconds": ["130", "40"], "properties": ["rustling, ducks, quack", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a man speaks followed by another man speaking outside"], "sample_ids": ["xKB8O8LTs6s", "viuTg1M-dqg"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "two men, speak, follow"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a woman speaking on a radio?", "label": 0}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xl2PIWyXaM", "zFjIWfSD-4"], "start_seconds": ["160", "410"], "properties": ["chirp, man, younger person", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "a car accelerates and wind blows"], "sample_ids": ["zcDwZ6W7E3E", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["a, man, speak", "accelerates, wind, blows"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which is not a person speaking", "label": 1}, {"captions": ["a clock ticktocks continuously", "a duck quacks continuously"], "sample_ids": ["vlJS7LN2XyM", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "quacks, continuously, duck"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a ticktock of a clock", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vJrjSeP17yE", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["a person is sleeping, snoring, person", "a woman, something, fried"], "captions_pred_video": ["a black background with a small plane flying in the sky", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 0}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wnpJndXuxLc", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["beeps, loud, whistle", "water, radio, man"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uiItxDsDMFI", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "rooster, crow, background, men"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["s4Uz1Ffgo04", "xjhAnI2q6hM"], "start_seconds": ["100", "6"], "properties": ["roars, background, people speaking", "engine revs, vehicle, people"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a truck is revving its engine and a man is speaking "], "question": "which vehicle is revving", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xvDdE3zNf8Y", "su6FAOcOA8c"], "start_seconds": ["120", "4"], "properties": ["A, crumple, paper", "engine, idle, woman"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman is speaking and a subway train is moving "], "question": "which woman is speaking", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "small dogs yip and bark sharply"], "sample_ids": ["s4tUs779vBA", "v-wcQf4BDY0"], "start_seconds": ["160", "120"], "properties": ["a, sound, stop", "bark, yip, sharply"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["an airplane engine runs", "wind blows as people chatter quietly"], "sample_ids": ["yVPZ2MNWpms", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "wind, chatter, people"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wqUmIEzuNz4", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["frog, bird, vocalize", "a woman, laughs, animal"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a cat meows and rustles", "a woman is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "several insects fly while two men talk"], "sample_ids": ["smDKStoHBJo", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["a, infant, speaking", "several, fly, men"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["wind blows and a stream of water flows nearby", "a car speeding up in the distance"], "sample_ids": ["sYITalLZjj4", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["stream, flow, wind", "distance, car, speed"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "a propeller rotates loudly and intensely"], "sample_ids": ["wqZ135Ssz0", "ugHJF0hfYkg"], "start_seconds": ["60", "10"], "properties": ["two men, woman, birds", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a helicopter is flying overhead "], "question": "which entity is more quiet", "label": 0}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a train engine runs and a horn blows"], "sample_ids": ["zY3icUyMdh8", "zPX9o1uDiI"], "start_seconds": ["20", "40"], "properties": ["dog, bark, engine", "engine, horn, run"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is a train", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w9lpbUn0hPc", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["male, wind, rustling", "stream, water, flow"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "pigeons vocalize and birds chirp"], "sample_ids": ["vr8ZXjEBhMQ", "uiS58TNyUiw"], "start_seconds": ["150", "430"], "properties": ["wind, blow, zoom", "vocalize, bird, chirp"], "captions_pred_video": ["is taken from a motorcycle's point of view", "of the pigeon in the cage"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["an aircraft engine runs", "roadway noise occurs and a truck accelerates"], "sample_ids": ["yLCORCnd35Q", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["engine, aircraft, runs", "noise, truck, accelerate"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a car is driving on the road "], "question": "which is not a source of noise", "label": 0}, {"captions": ["an airplane engine runs", "a man talks as several small engines run"], "sample_ids": ["yVPZ2MNWpms", "u9A6VZQCZpU"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "a, man, talk"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking while a race car is revving and accelerating "], "question": "which entity is a person", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "someone is typing on a computer keyboard"], "sample_ids": ["vzceMbklWc", "v0x1odnXtP0"], "start_seconds": ["180", "210"], "properties": ["water, faucet, sink", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["water is running and a man is speaking", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a man speaks as a car is passing by"], "sample_ids": ["w5W5Kqtc8E", "sK4u5T8hW78"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "water flows as men speak and yell"], "sample_ids": ["zhx6hoYrHeI", "vJ7JPEFhyLA"], "start_seconds": ["160", "16"], "properties": ["engine, sputter, rough", "water, flow, men"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and yelling?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "paper is crumpling consistently"], "sample_ids": ["w2M4i1mklOA", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["alarm, gears, turn", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of an antique clock", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "paper folding and crinkling"], "sample_ids": ["yDoT73BWsdA", "zPpG3RD8lSs"], "start_seconds": ["10", "20"], "properties": ["engine revs, tires squeal, vehicle", "paper, fold, crinkle"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["xBxDz0CFVn0", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["wind, chatter, people", "background, birds, rustling"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds vocalize and a man speaks", "plastic is tapped on while someone speaks"], "sample_ids": ["v0wPrLBI3hg", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["vocalize, bird, speak", "plastic, tap, speak"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "of the person preparing food in the kitchen"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "male speech followed by light wind, rustling, distant speech and brief hissing"], "sample_ids": ["tDlfY3nmx1A", "w9lpbUn0hPc"], "start_seconds": ["160", "30"], "properties": ["applause, laugh, man", "male, wind, rustling"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of a man in a black shirt standing in front of a white truck in a parking lot"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man is speaking with wind noise and breathing sounds in the background "], "question": "which entity is a speech?", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a horn rings out as a machine runs by"], "sample_ids": ["w5W5Kqtc8E", "slZLHwNbbt4"], "start_seconds": ["100", "300"], "properties": ["wind, engine, scream", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "water flows as men speak and yell"], "sample_ids": ["ylpYOorfH4o", "vJ7JPEFhyLA"], "start_seconds": ["410", "16"], "properties": ["motor, run, steady", "water, flow, men"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yajyRTUQk3U", "tDVADusiIoc"], "start_seconds": ["400", "60"], "properties": ["a woman, something, fried", "water, radio, man"], "captions_pred_video": ["- a woman cooking in the kitchen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["a car speeding up in the distance", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["u0TrcHhkPQ", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["distance, car, speed", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is not a car?", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wnpJndXuxLc", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["beeps, loud, whistle", "three men, wind, flow"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "a clock ticktocks"], "sample_ids": ["s4Uz1Ffgo04", "v-g-j2uTByM"], "start_seconds": ["100", "30"], "properties": ["water, rushes, vehicle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "an engine runs loudly"], "sample_ids": ["vlS6YMeWAPo", "vqZuVbG6-HI"], "start_seconds": ["40", "130"], "properties": ["noise, bleat, call", "loud, engine, run"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a goat bleats and birds chirp", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "small dogs yip and bark sharply"], "sample_ids": ["viuTg1M-dqg", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["two men, speak, follow", "bark, yip, sharply"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["continuous sneezing together with speech", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["x4dZyf9Gbj0", "tDVADusiIoc"], "start_seconds": ["130", "60"], "properties": ["continuous, sneeze, speech", "water, radio, man"], "captions_pred_video": ["footage is blurry and out of focus", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sofxkNWaP0s", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "rooster, crow, background, men"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a clock ticktocks"], "sample_ids": ["zofjfKhqLk8", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "wind blows as people chatter quietly"], "sample_ids": ["vzxHnu-SFEw", "xBxDz0CFVn0"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "wind, chatter, people"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["sEprKHm8Sj8", "siJFXfGWgDk"], "start_seconds": ["90", "50"], "properties": ["car, tires, slows", "a, bird, vehicle"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and birds are chirping in the background "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "a toilet flushes and a female speaks"], "sample_ids": ["vbpKkWvfOu4", "yaln9y8I7ms"], "start_seconds": ["560", "230"], "properties": ["a, woman, man", "female, flushes, toilet"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a toilet flushes and a man speaks"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a race car approaches quickly and slows down squealing tires", "someone is typing on a computer keyboard"], "sample_ids": ["sEprKHm8Sj8", "v0x1odnXtP0"], "start_seconds": ["90", "210"], "properties": ["car, tires, slows", "keyboard, type, computer"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "how to make money on youtube in spanish"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which object is stationary", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wvKpEYswXO0", "uEU-Hg5MTN8"], "start_seconds": ["150", "27"], "properties": ["sound, water, running", "a woman, laughs, animal"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking softly?", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a person snores loudly multiple times at a close distance"], "sample_ids": ["zkKdxzNC97Y", "sSMl2vc3ek"], "start_seconds": ["27", "20"], "properties": ["loud, bang, noise", "loud, multiple, distance"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a person snoring loudly"], "question": "which entity is louder", "label": 0}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "people cheer as a vehicle engine revs"], "sample_ids": ["xNMovAf3o50", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["rain, thunder, music", "engine revs, vehicle, people"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["vveS8HT7Uog", "xjvTpk2Zpr8"], "start_seconds": ["100", "70"], "properties": ["a man, objects, speak", "wind, blows, vehicle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a loud engine muffles a man as he speaks"], "sample_ids": ["v7jJS8aAyA", "xyx6eNVEYRY"], "start_seconds": ["10", "380"], "properties": ["wind, blows, loudly", "loud, engine, muffles"], "captions_pred_video": [null, "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a dark barks and whimpers", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["sYj4hpDUZDQ", "sapQIQUhFc"], "start_seconds": ["30", "280"], "properties": ["barks, whimpers, dark", "liquid, flow, distance"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "an insect buzzes around continuously"], "sample_ids": ["w1mlz3Pe4fU", "v25l1jef3JY"], "start_seconds": ["300", "0"], "properties": ["vocalize, chirp, continuously", "buzzes, continuously, insect"], "captions_pred_video": ["of a bird in a cage", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["birds are chirping and singing", "a fly is buzzing around a microphone "], "question": "which entity is a type of insect", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xV7Mg1QucSc", "ukg5L09Wpvo"], "start_seconds": ["14", "150"], "properties": ["alarm, ticktocks, laughs", "clickety-clack, train, whistle"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vqZuVbG6-HI", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["background, male, female", "a woman, laughs, animal"], "captions_pred_video": ["footage is blurry because it's raining outside", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal snorting?", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zO-LSSY92ZM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["liquid, surface, sound", "stream, water, flow"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "footage is blurry and out of focus"], "captions_pred_audio": ["steam is hissing and hissing", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sLUnaPT5gM8", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["loud, laughter, intermittent", "loud, multiple, distance"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an airplane engine spools and people speak", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wTjoRj1se3U", "vb1fPSDI4c"], "start_seconds": ["390", "30"], "properties": ["airplane, engine, spool", "multiple, people, yell"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "winds blows roughly as a vehicle races past"], "sample_ids": ["sG7TyPnFDR0", "xjvTpk2Zpr8"], "start_seconds": ["180", "70"], "properties": ["beeps, machine, smoke alarm", "wind, blows, vehicle"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xfaoyyzw2WU", "yajyRTUQk3U"], "start_seconds": ["180", "400"], "properties": ["loud, jet engine, roar", "a woman, something, fried"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "- a woman cooking in the kitchen"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "sucking and grunting followed by slurping with birds in the background"], "sample_ids": ["wnpJndXuxLc", "yYEVLuqEytU"], "start_seconds": ["50", "40"], "properties": ["blows, vehicle, train", "grunt, slurp, background"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a baby goat is being petted by a person's hand"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "several sheep bleat and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vZAw4apG0Es", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "rooster, crow, background, men"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a mechanical buzzing getting louder"], "sample_ids": ["tDlysoZiA1I", "sEprKHm8Sj8"], "start_seconds": ["0", "90"], "properties": ["animal, grunt, chirp", "noise, loud, buzzing"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["ticking continues without interruption", "a horn rings out as a machine runs by"], "sample_ids": ["v-g-j2uTByM", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["ticking, continuous, clock", "a, horn, run"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a clock is ticking loudly", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is not continuous", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["siJFXfGWgDk", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["a, bird, vehicle", "water, radio, man"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "ducks quack continuously"], "sample_ids": ["vbr9mHKc8WM", "sNB8zxXneIM"], "start_seconds": ["40", "20"], "properties": ["noise, loudness, engine", "quack, duck, continuously"], "captions_pred_video": [null, "a group of geese in a cage"], "captions_pred_audio": ["an engine is idling", "a rooster is crowing and wind is blowing "], "question": "which entity makes noise continuously", "label": 1}, {"captions": ["an electronic device bleeps once", "a man speaks as a car is passing by"], "sample_ids": ["tHJ6JSa8Y4", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["bleeps, electronic, device", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a clock is ticking and beeping", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "some men converse over an engine running"], "sample_ids": ["sWZzXuWYY", "sCiy7QS1U"], "start_seconds": ["420", "300"], "properties": ["male, speech, banging", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a clock ticktocks briefly", "an insect buzzes around continuously"], "sample_ids": ["u7C-AEBQM", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, ticktocks briefly", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a ticktock of a clock", "a fly is buzzing around a microphone "], "question": "which entity buzzes continuously", "label": 1}, {"captions": ["loud, continuous burping", "birds chirp in the background while a horse neighs followed by a girl speaking"], "sample_ids": ["y636gklDioE", "s59PfAghdkM"], "start_seconds": ["20", "0"], "properties": ["loud, continuous, burping", "bird, chirp, background, horse, neigh"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "is an anime scene featuring two people and a horse in the foreground and a fence in the background"], "captions_pred_audio": ["a person burps loudly several times", "birds are chirping a horse is neighing and a woman is speaking "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "some men converse over an engine running"], "sample_ids": ["wz7N8YRy74I", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["rooster, crow, background, people", "men, converse, engine"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a rooster in it?", "label": 0}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "frogs croak and vocalize"], "sample_ids": ["wz7N8YRy74I", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["rooster, crow, background, people", "croak, vocalize, frog"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a close up of a frog in the water"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a frog is croaking"], "question": "which animal is speaking", "label": 1}, {"captions": ["paper is crumpling consistently", "winds blows roughly as a vehicle races past"], "sample_ids": ["v5cSxLaHADY", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "wind, blows, vehicle"], "captions_pred_video": ["footage of the person holding a pair of scissors", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["paper is crumpled and crinkled", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["plastic is tapped on while someone speaks", "some tunes played by whistling"], "sample_ids": ["wvKpEYswXO0", "u6BnG6YZqJ4"], "start_seconds": ["150", "0"], "properties": ["plastic, tap, speak", "tune, play, whistling"], "captions_pred_video": ["of the person preparing food in the kitchen", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["an engine runs and wind blows", "people speak as gunfire rings out"], "sample_ids": ["vs65y4qmyBE", "wqTCwqVRDlk"], "start_seconds": ["340", "80"], "properties": ["engine, run, wind", "gunfire, ring, speak"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "children cheer as a man speaks then an audience screams"], "sample_ids": ["u7C-AEBQM", "vJvryTwuAV8"], "start_seconds": ["30", "16"], "properties": ["ticks, rhythmic, quiet", "audience, cheer, man"], "captions_pred_video": [null, "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "vehicles pass by on a roadway"], "sample_ids": ["y2ZBGpgbhHM", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["dog, chirp, breathe", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds chirping and a dog panting", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaking with light rustling", "a motor idles, accelerates, then slows down."], "sample_ids": ["zOZleIRqZm4", "vYkA3cfXp5Q"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "speed, idle, accelerate"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wP8ZKrlx3oA", "yDoT73BWsdA"], "start_seconds": ["40", "10"], "properties": ["fall, rain, splash", "engine, revs, vehicle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vbZ-0lGPneg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a woman, a television program, a bird", "female, spraying, scream"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking and a baby is crying"], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["a fly buzzes around loudly as birds chirp", "a vehicle engine accelerating then running on idle"], "sample_ids": ["uJV8NDaHqqk", "vYkA3cfXp5Q"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "engine, accelerate, idle"], "captions_pred_video": ["a bee hive in a wooden box", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a swarm of bees buzzing around", "an engine is idling"], "question": "which entity is not a fly?", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a child speaks in closed space"], "sample_ids": ["sEprKHm8Sj8", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["car, tires, slows", "child, space, speak"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "wind blows strongly"], "sample_ids": ["w5W5Kqtc8E", "w8uLijTqtlU"], "start_seconds": ["100", "70"], "properties": ["water, splashes, motorboat", "wind, blows, strongly"], "captions_pred_video": [null, "footage is blurry and shaky"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "the wind is blowing strongly"], "question": "which entity is more likely to blow strongly", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["yVumC9TGknc", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["humming, clock, birds", "man, woman, squawks"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", null], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["an engine sputters followed by a car zooming by", "a vehicle engine accelerating then running on idle"], "sample_ids": ["u5RmF3c3Aw", "vYkA3cfXp5Q"], "start_seconds": ["60", "30"], "properties": ["engine, car, zoom", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "material crumbles into a microphone"], "sample_ids": ["sG7TyPnFDR0", "vofpvUo6NAw"], "start_seconds": ["180", "220"], "properties": ["beeps, machine, smoke alarm", "material, crumbles, microphone"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "person wrapping a toy car in a plastic bag"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "paper is being crumpled and crinkled"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "paper is crumpling consistently"], "sample_ids": ["wTideSjRFS0", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["food, sizzle, woman", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "water is sprayed across a hard surface"], "sample_ids": ["vZAw4apG0Es", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["people, clock, converse", "water, spray, surface"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a clock is ticking and people are talking", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a woman speaks as she rubs two objects together"], "sample_ids": ["v7jJS8aAyA", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["wind, blows, loudly", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is silent", "label": 1}, {"captions": ["a woman and man are speaking", "a horn rings out as a machine runs by"], "sample_ids": ["vbpKkWvfOu4", "slZLHwNbbt4"], "start_seconds": ["560", "300"], "properties": ["two people, speaking, woman, man", "a, horn, run"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["spJCm8tD9Zo", "uEU-Hg5MTN8"], "start_seconds": ["90", "27"], "properties": ["snores, wheezes, sleeps", "a woman, laughs, animal"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["a power tool runs and touches a surface", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zfvPRf3chY", "tdWhHV3X25Q"], "start_seconds": ["290", "60"], "properties": ["power tool, run, touch", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a man is speaking and a crowd is clapping"], "question": "which is not a power tool", "label": 1}, {"captions": ["someone whistles a tune", "a person speaks over rustling leaves"], "sample_ids": ["sIXTftIuUgw", "zOZleIRqZm4"], "start_seconds": ["90", "80"], "properties": ["someone, tune, whistle", "rustling, leaves, person"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with crickets chirping in the background"], "question": "which entity is a person speaking over rustling leaves?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a duck quacks continuously"], "sample_ids": ["wz7N8YRy74I", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "quacks, continuously, duck"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["a woman sneezes then speaks", "water is sprayed across a hard surface"], "sample_ids": ["x4dZyf9Gbj0", "sQwlkXjQabo"], "start_seconds": ["130", "10"], "properties": ["sneezes, speaks, woman", "water, spray, surface"], "captions_pred_video": ["footage is blurry and out of focus", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman sneezes and speaks", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vlS6YMeWAPo", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["noise, bleat, call", "three men, wind, flow"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a goat bleats and birds chirp", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a goat?", "label": 0}, {"captions": ["a vehicle engine revs as the vehicle passes", "a child speaks in closed space"], "sample_ids": ["yDoT73BWsdA", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["engine, revs, vehicle", "child, space, speak"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["someone whistles briefly", "paper is crumpling consistently"], "sample_ids": ["uFoga8sHpiw", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["sound, duration, pitch", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a bird in a cage", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person whistles a song", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a frog croaks as other frogs croak in the background"], "sample_ids": ["zgUgkpk78xU", "yswmmRZFItk"], "start_seconds": ["70", "0"], "properties": ["horn, bells, ring", "background, frog, croak"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a close up of a frog in the water"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a frog is croaking"], "question": "which entity is a warning", "label": 0}, {"captions": ["a man talks while vehicles pass by", "a woman speaks happily and an animal chirps"], "sample_ids": ["sK4u5T8hW78", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["a, man, talk", "a woman, chirps, animal"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a bell dings followed by a loud horn blaring"], "sample_ids": ["zl9Dqx-j7q4", "tZGN5a7ybxo"], "start_seconds": ["6", "60"], "properties": ["motors rev, laugh, loudly", "a bell, a horn, a ding"], "captions_pred_video": ["footage of a man driving a car in the dark", "is taken from a moving vehicle on the train tracks"], "captions_pred_audio": ["a jet engine roars ", "a train is moving and blowing its horn "], "question": "which entity is louder", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sNB8zxXneIM", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["several, quack, cocks", "men, talk, cars"], "captions_pred_video": ["a group of geese in a cage", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream of water runs briefly", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["x-PeY8Yb8M4", "zl9Dqx-j7q4"], "start_seconds": ["300", "6"], "properties": ["stream, water, run", "engine, laugh, loud"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a car is driving on a wet road ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["ukg5L09Wpvo", "yks4cLgIDMc"], "start_seconds": ["150", "170"], "properties": ["clickety-clack, train, whistle", "background, speaking, child"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["v5P-ThUCINM", "uWAAAL4CIoc"], "start_seconds": ["400", "0"], "properties": ["background, chirp, bird", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and birds are chirping", "a woman is speaking and a dog is barking "], "question": "which entity has a chirpy animal?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wwyfGO2J4", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["people, applaud, hoot", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a toilet flushes and water drains"], "sample_ids": ["vSeGhaZt-aI", "sfAvvZwdLCY"], "start_seconds": ["50", "20"], "properties": ["water, sink, talk", "water drains, flushes, water"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a toilet is flushed"], "question": "which entity is draining water", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "an infant crying as a woman laughs"], "sample_ids": ["xBxDz0CFVn0", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["stream, water, flow", "a, laugh, infant"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "wind blowing followed by a zoom"], "sample_ids": ["vs65y4qmyBE", "vr8ZXjEBhMQ"], "start_seconds": ["340", "150"], "properties": ["engine, run, man", "wind, blow, zoom"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a dog barks and whimpers", "pigeons vocalize and birds chirp"], "sample_ids": ["sShpyu2l4YQ", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["barks, whimpers, dog", "vocalize, bird, chirp"], "captions_pred_video": ["the puppies are playing with a toy", "of the pigeon in the cage"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "an infant crying as a woman laughs"], "sample_ids": ["zhx6hoYrHeI", "xhmRY9yhC7c"], "start_seconds": ["160", "20"], "properties": ["engine, sputter, rough", "a, laugh, infant"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a clock ticktocks"], "sample_ids": ["vzceMbklWc", "v-g-j2uTByM"], "start_seconds": ["180", "30"], "properties": ["water, faucet, sink", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["water is running and a man is speaking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sShpyu2l4YQ", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["growl, bark, yip", "loud, multiple, distance"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["people speak softly as food sizzles", "people cheer as a vehicle engine revs"], "sample_ids": ["yhQ2Lg-7qDY", "xjhAnI2q6hM"], "start_seconds": ["130", "6"], "properties": ["food, sizzle, speak", "engine revs, vehicle, people"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "water flows and trickles"], "sample_ids": ["tDVADusiIoc", "tB7hWb9gTuQ"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "water, flow, trickle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["uKCSGgof8gI", "ukg5L09Wpvo"], "start_seconds": ["12", "150"], "properties": ["chirps, distance, signal", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["food is frying while a woman speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yhQ2Lg-7qDY", "zFjIWfSD-4"], "start_seconds": ["130", "410"], "properties": ["food, woman, speak", "People, motor, brakes"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a woman sneezes then speaks", "an infant crying frantically"], "sample_ids": ["x4dZyf9Gbj0", "zwOBqeFTgiU"], "start_seconds": ["130", "30"], "properties": ["sneezes, speaks, woman", "cry, infant, frantically"], "captions_pred_video": ["footage is blurry and out of focus", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman sneezes and speaks", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a man speaks followed by another man speaking outside"], "sample_ids": ["w5W5Kqtc8E", "viuTg1M-dqg"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a woman speaks happily and an animal chirps"], "sample_ids": ["vZAqdHZ81yA", "uWAAAL4CIoc"], "start_seconds": ["180", "0"], "properties": ["engine, motorcycle, idling", "a woman, chirps, animal"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a woman is speaking and a dog is barking "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "continuous snoring"], "sample_ids": ["tOSWIURC-4", "sLkeqCDJIyw"], "start_seconds": ["0", "120"], "properties": ["engine, work, nearby", "loud, snoring, noise"], "captions_pred_video": [null, ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a lawn mower is running ", "a person is snoring loudly"], "question": "which entity makes a loud noise", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "several insects fly while two men talk"], "sample_ids": ["u21-Z5gJCB8", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["background, voice, man", "several, fly, men"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a helicopter engine runs continuously", "an engine runs loudly"], "sample_ids": ["ugHJF0hfYkg", "vqZuVbG6-HI"], "start_seconds": ["10", "130"], "properties": ["engine, running, continuously", "loud, engine, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a helicopter is flying overhead ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a car speeding up in the distance"], "sample_ids": ["xZepNM9qcRA", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, motor, run", "distance, car, speed"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["several ducks quack and cocks crow far away", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sNB8zxXneIM", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["several, quack, cocks", "wind, blow, vehicle"], "captions_pred_video": ["a group of geese in a cage", null], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "winds blows roughly as a vehicle races past"], "sample_ids": ["smGI3C1NZc", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["water, drain, toilet", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a toilet is flushed", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person is whistling", "a helicopter engine runs continuously"], "sample_ids": ["sIXTftIuUgw", "ugHJF0hfYkg"], "start_seconds": ["90", "10"], "properties": ["person, whistling, person", "engine, running, continuously"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person whistling a song", "a helicopter is flying overhead "], "question": "which entity is not whistling", "label": 1}, {"captions": ["people clap and speak in the distance", "a man speaks as a motor runs in the background"], "sample_ids": ["wwyfGO2J4", "xZepNM9qcRA"], "start_seconds": ["90", "30"], "properties": ["clap, distance, speak", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["uKCSGgof8gI", "vddP56-ogds"], "start_seconds": ["12", "30"], "properties": ["chirps, distance, signal", "liquid, laughs, man"], "captions_pred_video": ["footage of a street in a small town on a sunny day", null], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "water is running and gurgling and a man is speaking"], "question": "which entity is more likely to be a video of a woman laughing?", "label": 1}, {"captions": ["water flows as men speak and yell", "some tunes played by whistling"], "sample_ids": ["vJ7JPEFhyLA", "u6BnG6YZqJ4"], "start_seconds": ["16", "0"], "properties": ["water, flow, men", "tune, play, whistling"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a dark barks and whimpers", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sYj4hpDUZDQ", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["barks, whimpers, dark", "airplane, boy, fly"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a dog barks and a cat meows", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a person is burping then speaks and laughs"], "sample_ids": ["wEBlkGWVWwE", "wAAkbZToh8"], "start_seconds": ["260", "0"], "properties": ["a, babble, woman", "burp, laugh, speak"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man burps and a woman speaks"], "question": "which entity is speaking", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a woman speaks as she rubs two objects together"], "sample_ids": ["wSVhSdj0F0", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["beep, clang, footsteps", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["tgbONvsP47Y", "vddP56-ogds"], "start_seconds": ["0", "30"], "properties": ["noise, truck, accelerate", "liquid, laughs, man"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "water is running and gurgling and a man is speaking"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a stream runs then someone speaks", "a child speaks in closed space"], "sample_ids": ["wbHTKEJZyhc", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["stream, run, someone", "child, space, speak"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y2bVZ7rz-5M", "wz7N8YRy74I"], "start_seconds": ["280", "30"], "properties": ["engine, horn, siren", "rooster, crow, background, men"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "water flows as men speak and yell"], "sample_ids": ["ukg5L09Wpvo", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["a train, a horn, a bell", "water, flow, men"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be in motion", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["vbpKkWvfOu4", "wwyfGO2J4"], "start_seconds": ["560", "90"], "properties": ["a, man, speaks", "people, applaud, hoot"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a horn rings out as a machine runs by"], "sample_ids": ["vqZuVbG6-HI", "slZLHwNbbt4"], "start_seconds": ["130", "300"], "properties": ["background, male, female", "a, horn, run"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity has a horn", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a man talks while metallic objects are rapped and steam is released"], "sample_ids": ["vf9xf3vMsGM", "vuUVPzd2FXw"], "start_seconds": ["540", "160"], "properties": ["A man speaks while turning a water faucet on.", "a, steam, release"], "captions_pred_video": ["of the person washing their hands under the faucet", "of the person cooking on the grill with a spatula"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man is speaking and dishes are clanging"], "question": "which entity is about water?", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "a child speaks in closed space"], "sample_ids": ["yRx9txMcBl0", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["accelerates, tires, squeals", "child, space, speak"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a music is played followed by a frog croaking and then music is played again"], "sample_ids": ["vh30P49Po6s", "voJh2gJxXhA"], "start_seconds": ["30", "50"], "properties": ["loud, continuous, quacks", "music, frog, croak"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a frog on a black background with a red diamond in the center"], "captions_pred_audio": ["a duck is quacking loudly", "music is playing and crickets are chirping "], "question": "which entity is quieter", "label": 1}, {"captions": ["a door opens and birds chirp", "a car accelerates and wind blows"], "sample_ids": ["yeFvk9x0wWI", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["door, open, birds", "accelerates, wind, blows"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["u21-Z5gJCB8", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["background, voice, man", "loud, laughter, intermittent"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a small engine idles continuously"], "sample_ids": ["ukxt9I7eMMg", "y5WII6cTH7k"], "start_seconds": ["30", "40"], "properties": ["continuous, woman, speaking", "engine, idle, continuously"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "an engine is knocking and vibrating "], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["water running down a sink while a man is talking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vSeGhaZt-aI", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "stream, water, flow"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is flowing", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a car accelerates and wind blows"], "sample_ids": ["vXlk0lIQBFo", "u0TrcHhkPQ"], "start_seconds": ["470", "20"], "properties": ["wind, speak, vocalize", "accelerates, wind, blows"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person sniffles and sneezes", "a man speaks as a motor runs in the background"], "sample_ids": ["uRlbY6aoBU", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is sneezing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "water runs into a sink while men speak"], "sample_ids": ["x6ijhqRY38s", "vzceMbklWc"], "start_seconds": ["250", "180"], "properties": ["something metal, glass, hit", "water, sink, run"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "water is running and a man is speaking"], "question": "which entity is a video of water running into a sink?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a child speaks in closed space"], "sample_ids": ["voJh2gJxXhA", "yW6FWLSLkx4"], "start_seconds": ["50", "40"], "properties": ["music, frog, croak", "child, space, speak"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a machine beeps continuously", "a car accelerates and wind blows"], "sample_ids": ["y682ml90jGw", "u0TrcHhkPQ"], "start_seconds": ["11", "20"], "properties": ["beeps, machine, continuously", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a train engine runs and a horn blows"], "sample_ids": ["su6FAOcOA8c", "zPX9o1uDiI"], "start_seconds": ["4", "40"], "properties": ["engine, run, woman", "engine, horn, run"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a train moves with its horn blowing and wheels squealing "], "question": "which entity has a horn", "label": 1}, {"captions": ["birds chirp as a train approaches", "an infant crying frantically"], "sample_ids": ["xM4joTqDVp4", "zwOBqeFTgiU"], "start_seconds": ["160", "30"], "properties": ["bird, chirp, train", "cry, infant, frantically"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "of the baby crying in the car seat"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a horn honks and then loudly blares", "waves crash against a shoreline and people speak"], "sample_ids": ["wnpJndXuxLc", "yFB25fqfU8I"], "start_seconds": ["50", "300"], "properties": ["horn, honk, loud", "wave, crash, shoreline"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["running water in a faucet with some clinks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zNRChLjqcU", "vfYTJq7nU"], "start_seconds": ["220", "130"], "properties": ["water, faucet, run", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["people speak in a closed space", "a man speaks as a car is passing by"], "sample_ids": ["sTpirNYo8vQ", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["people, space, speak", "a, car, pass"], "captions_pred_video": ["of a man taking a selfie on a bus", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more likely to be in a closed space", "label": 0}, {"captions": ["dogs barking and whimpering", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tIY7qOV3rEM", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["barking, whimpering, dog", "loud, jet engine, roar"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uKCSGgof8gI", "vbZ-0lGPneg"], "start_seconds": ["12", "30"], "properties": ["chirps, distance, signal", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["v0x1odnXtP0", "yajyRTUQk3U"], "start_seconds": ["210", "400"], "properties": ["keyboard, type, computer", "a woman, something, fried"], "captions_pred_video": ["how to make money on youtube in spanish", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration of cooking?", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "people cheer as a vehicle engine revs"], "sample_ids": ["vcmWSmvti8", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["music, man, fire", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zofjfKhqLk8", "tiDFTC-5vU"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "male, duck, laugh"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "race cars go around a track as a man commentates"], "sample_ids": ["wz7N8YRy74I", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["rooster, crow, background, people", "car, track, man"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["several beeps are followed by a hit and a woman talking", "paper folding and crinkling"], "sample_ids": ["w34HjHr6gAY", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["beeps, hit, woman", "paper, fold, crinkle"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling paper?", "label": 1}, {"captions": ["a person sniffs and sneezes", "waves crash against a shoreline and people speak"], "sample_ids": ["uRlbY6aoBU", "yFB25fqfU8I"], "start_seconds": ["0", "300"], "properties": ["sneezes, person, sniffs", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "small dogs yip and bark sharply"], "sample_ids": ["uZesmtKZGSw", "v-wcQf4BDY0"], "start_seconds": ["250", "120"], "properties": ["men, talk, cars", "bark, yip, sharply"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a infant makes noise and is excited"], "sample_ids": ["sZvwOuuPGP0", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "noise, excited, infant"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a medium engine is running ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a woman sneezes then speaks", "small dogs yip and bark sharply"], "sample_ids": ["x4dZyf9Gbj0", "v-wcQf4BDY0"], "start_seconds": ["130", "120"], "properties": ["sneezes, speaks, woman", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman sneezes and speaks", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman talking as an infant is crying", "a clock ticktocks"], "sample_ids": ["tMbMDvT50j8", "v-g-j2uTByM"], "start_seconds": ["12", "30"], "properties": ["a, talk, infant", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a baby cries and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["ugHJF0hfYkg", "su6FAOcOA8c"], "start_seconds": ["10", "4"], "properties": ["loud, intense, propeller", "engine, idle, woman"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a subway train is moving "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["yajyRTUQk3U", "y2bVZ7rz-5M"], "start_seconds": ["400", "280"], "properties": ["noise, woman, speak", "motor noise, horn, siren"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a truck is honking its horn and a siren is blaring "], "question": "which noise is more ominous", "label": 1}, {"captions": ["an engine runs and a man speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yT5WfYMRr-U", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "multiple, people, yell"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "wind blows as people chatter quietly"], "sample_ids": ["xMXvkIcaG0Y", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["sound, humming, rattling", "wind, chatter, people"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "footage is blurry and out of focus"], "captions_pred_audio": ["an engine is revving and accelerating ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a duck quacks continuously", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vh30P49Po6s", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["quacks, continuously, duck", "stream, water, flow"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage is blurry and out of focus"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wSVhSdj0F0", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["horn honks, keys jingle, slam", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tK4VlLsNxak", "sSMl2vc3ek"], "start_seconds": ["120", "20"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "loud, multiple, distance"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sfAvvZwdLCY", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "rooster, crow, background, men"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["zFjIWfSD-4", "tezvROoo4bs"], "start_seconds": ["410", "40"], "properties": ["People, motor, brakes", "audio, throttle, speaking"], "captions_pred_video": [null, "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a car accelerates and revs while a man speaks "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a frog croaks as other frogs croak in the background"], "sample_ids": ["yYEVLuqEytU", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["animal, pig, background", "background, frog, croak"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a close up of a frog in the water"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a frog is croaking"], "question": "which entity has a frog in the background?", "label": 1}, {"captions": ["continuous snoring", "paper folding and crinkling"], "sample_ids": ["sLkeqCDJIyw", "zPpG3RD8lSs"], "start_seconds": ["120", "20"], "properties": ["loud, snoring, noise", "paper, fold, crinkle"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a person is snoring loudly", "the wind blows and a mouse clicks "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a airplane flies overhead as a woman speaks"], "sample_ids": ["tDlysoZiA1I", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["animal, grunt, chirp", "airplane, fly, woman"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["ylpYOorfH4o", "uEU-Hg5MTN8"], "start_seconds": ["410", "27"], "properties": ["engine, running, wind", "a woman, laughs, animal"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zY3icUyMdh8", "yDoT73BWsdA"], "start_seconds": ["20", "10"], "properties": ["dog, bark, engine", "engine, revs, vehicle"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "dishes cling together then a man begins to speak"], "sample_ids": ["xfaoyyzw2WU", "sQGXqGcwOTc"], "start_seconds": ["180", "3"], "properties": ["loud, jet engine, roar", "cling, speak, dishes"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "mechanisms are operating and water is splashing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "ticking continues without interruption"], "sample_ids": ["tQWGZLItBXk", "v-g-j2uTByM"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "ticking, continuous, clock"], "captions_pred_video": ["worms revolution screenshots", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "wind blowing followed by a zoom"], "sample_ids": ["tQWGZLItBXk", "vr8ZXjEBhMQ"], "start_seconds": ["170", "150"], "properties": ["music, person, ding", "wind, blow, zoom"], "captions_pred_video": ["worms revolution screenshots", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sQGXqGcwOTc", "sLUnaPT5gM8"], "start_seconds": ["3", "0"], "properties": ["audio, kid, giggles", "loud, laughter, intermittent"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a scream", "label": 1}, {"captions": ["someone snores nearby", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["spJCm8tD9Zo", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["someone snores, nearby, someone", "two men, woman, birds"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "water pouring and bubbling"], "sample_ids": ["sWZzXuWYY", "uyRfq-jKPpo"], "start_seconds": ["420", "50"], "properties": ["male, clanks, thumps", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "food is frying while a woman speaks"], "sample_ids": ["zcDwZ6W7E3E", "yhQ2Lg-7qDY"], "start_seconds": ["180", "130"], "properties": ["man, speak, motorcycles", "food, woman, speak"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a faucet is running and a man is speaking"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "roadway noise occurs and a truck accelerates"], "sample_ids": ["su6FAOcOA8c", "tgbONvsP47Y"], "start_seconds": ["4", "0"], "properties": ["engine, run, woman", "noise, truck, accelerate"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "dishes cling together then a man begins to speak"], "sample_ids": ["yNtRmrn0io8", "sQGXqGcwOTc"], "start_seconds": ["210", "3"], "properties": ["storm, distance, strike", "cling, speak, dishes"], "captions_pred_video": ["footage of a house in the middle of the night", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["rain falls and thunder roars", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["people speak in a closed space", "a man speaks followed by another man speaking outside"], "sample_ids": ["sTpirNYo8vQ", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["people, space, speak", "two men, speak, follow"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "someone snores nearby"], "sample_ids": ["vimzuGQvdcU", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["a, man, yells", "someone snores, nearby, someone"], "captions_pred_video": ["a group of people are rafting down a river", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a person is snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "water flows and trickles"], "sample_ids": ["tDlfY3nmx1A", "tB7hWb9gTuQ"], "start_seconds": ["160", "30"], "properties": ["applause, laugh, man", "water, flow, trickle"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ugHJF0hfYkg", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["loud, propeller, move", "female, spraying, scream"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "people speak as gunfire rings out"], "sample_ids": ["uWAAAL4CIoc", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["a woman, chirps, animal", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "water pouring and bubbling"], "sample_ids": ["zF8yoL0rkbI", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["engine, run, someone", "water, bubbles, pouring"], "captions_pred_video": ["footage of the traffic on the street at night", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a baby laughs giddily and a woman laughs then speaks"], "sample_ids": ["zY3icUyMdh8", "wjsXBsc7M40"], "start_seconds": ["20", "10"], "properties": ["dog, bark, engine", "a baby laughs, a woman laughs, a woman speaks"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of the baby playing with a toothbrush"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a baby laughs and a woman speaks"], "question": "which entity is more playful", "label": 1}, {"captions": ["a clock ticktocks briefly", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["u7C-AEBQM", "wnpJndXuxLc"], "start_seconds": ["30", "50"], "properties": ["ticktocks, clock, ticktocks briefly", "blows, vehicle, train"], "captions_pred_video": [null, "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a ticktock of a clock", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is not a clock?", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["w1mlz3Pe4fU", "ukg5L09Wpvo"], "start_seconds": ["300", "150"], "properties": ["vocalize, chirp, continuously", "clickety-clack, train, whistle"], "captions_pred_video": ["of a bird in a cage", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["birds are chirping and singing", "a train blows its whistle and blows its horn "], "question": "which entity is continuous", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a clock ticktocks"], "sample_ids": ["yajyRTUQk3U", "v-g-j2uTByM"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "ticktocks, clock, ticktocks"], "captions_pred_video": ["- a woman cooking in the kitchen", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["un9VQlzgZM", "vVhthZ45k3Y"], "start_seconds": ["5", "30"], "properties": ["wind, speak, laugh", "cat, purr, hiss"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking and a cat is meowing"], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["ukxt9I7eMMg", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["continuous, woman, speaking", "water, radio, man"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sEprKHm8Sj8", "su6FAOcOA8c"], "start_seconds": ["90", "4"], "properties": ["car, tires, slows", "engine, idle, woman"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "water flows and trickles"], "sample_ids": ["w8uLijTqtlU", "tB7hWb9gTuQ"], "start_seconds": ["70", "30"], "properties": ["wind, microphone, noise", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and shaky", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["the wind is blowing strongly", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a toilet flushes and a female speaks"], "sample_ids": ["sa6TLVbooCc", "yaln9y8I7ms"], "start_seconds": ["240", "230"], "properties": ["people, laugh, child", "female, flushes, toilet"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "someone is typing on a computer keyboard"], "sample_ids": ["v5P-ThUCINM", "v0x1odnXtP0"], "start_seconds": ["400", "210"], "properties": ["background, chirp, bird", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["wSVhSdj0F0", "w34HjHr6gAY"], "start_seconds": ["10", "30"], "properties": ["beep, clang, footsteps", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["tiDFTC-5vU", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a beep sounds followed by a child speaking"], "question": "which entity has a duck quacking?", "label": 0}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sZPuqDgX2V0", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["engine, accelerate, intercom", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["men speak and a nozzle sprays liquid", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wRV8yMk886E", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "a woman, a television program, a bird"], "captions_pred_video": ["two cars are parked in a parking lot at night", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "vehicles pass by on a roadway"], "sample_ids": ["vimzuGQvdcU", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["a, man, yells", "pass, vehicle, roadway"], "captions_pred_video": ["a group of people are rafting down a river", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a car is driving on the road "], "question": "which entity is more passive", "label": 1}, {"captions": ["an engine runs and wind blows", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vs65y4qmyBE", "tdWhHV3X25Q"], "start_seconds": ["340", "60"], "properties": ["engine, run, wind", "applause, audience, yells"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tOSWIURC-4", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["noise, engine, revs", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a lawn mower is running ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying while a woman speaks", "small dogs yip and bark sharply"], "sample_ids": ["yhQ2Lg-7qDY", "v-wcQf4BDY0"], "start_seconds": ["130", "120"], "properties": ["food, woman, speak", "bark, yip, sharply"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sAam2NqGhLY", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["snoring, breathing, child", "animal, grunts, snorts"], "captions_pred_video": ["of a little girl sleeping on a couch", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "water pouring and bubbling"], "sample_ids": ["xNMovAf3o50", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["rain, thunder, music", "water, bubbles, pouring"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "water is running from a faucet"], "question": "which entity is more likely to be a natural occurrence", "label": 0}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "someone whistles a tune"], "sample_ids": ["yNtRmrn0io8", "sIXTftIuUgw"], "start_seconds": ["210", "90"], "properties": ["storm, distance, strike", "someone, tune, whistle"], "captions_pred_video": ["footage of a house in the middle of the night", null], "captions_pred_audio": ["rain falls and thunder roars", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["long loud burping by a man", "music plays followed by gunshots and then an explosion"], "sample_ids": ["xmiUIOhtZyQ", "xKB8O8LTs6s"], "start_seconds": ["60", "70"], "properties": ["loud, burp, man", "music, gunshots, explosion"], "captions_pred_video": ["homer simpson drinking a beer", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person burps and music plays in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a door opens and closes"], "sample_ids": ["uC9dtII1KDI", "vBHyYJ8pL0"], "start_seconds": ["150", "2"], "properties": ["wind, gusts, distance", "open, close, door"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", null], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which door is more likely to open and close", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "wind blows as people chatter quietly"], "sample_ids": ["yZp6xizR0yU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "wind, chatter, people"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["ul60S8TXDA8", "ziUT9IFTkjg"], "start_seconds": ["60", "10"], "properties": ["sound, distance, bell", "background, birds, rustling"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", null], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "birds are chirping and a chime is ringing "], "question": "which entity has a bird in the background?", "label": 1}, {"captions": ["birds chirp as a bell rings", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["ziUT9IFTkjg", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["chirp, bell, ring", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "water pouring and bubbling"], "sample_ids": ["vlS6YMeWAPo", "uyRfq-jKPpo"], "start_seconds": ["40", "50"], "properties": ["sheep, baa, birds", "water, bubbles, pouring"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a goat bleats and birds chirp", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["food is frying then a woman speaks", "water rushes and then a vehicle zooms past"], "sample_ids": ["ukxt9I7eMMg", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["food, woman, speak", "water, rushes, vehicle"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more active", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vlJS7LN2XyM", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["background, clocks, ticking", "engine, laugh, loud"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a ticktock of a clock", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a man talks as several small engines run"], "sample_ids": ["wDVMhEdTiVw", "u9A6VZQCZpU"], "start_seconds": ["30", "30"], "properties": ["gun, shoot, water", "a, man, talk"], "captions_pred_video": ["a blurry image of trees and water in the forest", null], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a man is speaking while a race car is revving and accelerating "], "question": "which entity is talking", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a woman speaks happily and an animal chirps"], "sample_ids": ["w6RTHR6AeAg", "uWAAAL4CIoc"], "start_seconds": ["40", "0"], "properties": ["call, owl, screech", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a woman is speaking and a dog is barking "], "question": "which entity is a bird?", "label": 0}, {"captions": ["multiple birds chirp and an animal grunts", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tDlysoZiA1I", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["animal, grunt, multiple", "a, scream, girl"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["dogs barking and whimpering", "vehicles pass by on a roadway"], "sample_ids": ["tIY7qOV3rEM", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["barking, whimpering, dog", "pass, vehicle, roadway"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a car is driving on the road "], "question": "which entity is more passive", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a duck quacks loudly and continuously"], "sample_ids": ["vf44CgrjT0A", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "loud, continuous, quacks"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a loud burp", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["ukg5L09Wpvo", "ukg5L09Wpvo"], "start_seconds": ["150", "150"], "properties": ["clickety-clack, train, whistle", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a train blows its whistle and blows its horn "], "question": "which train is going faster", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a man speaks as a motor runs in the background"], "sample_ids": ["xC8kbrKJmco", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["background, goat, scream", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a goat is bleating ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a dark barks and whimpers", "water flows and trickles"], "sample_ids": ["sYj4hpDUZDQ", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "water, flow, trickle"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a dog barks and a cat meows", "water is splashing and gurgling"], "question": "which entity is more silent", "label": 1}, {"captions": ["birds coo incessantly", "a man speaks as a car is passing by"], "sample_ids": ["yZrFNS7GFBQ", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["coo, bird, incessant", "a, car, pass"], "captions_pred_video": ["of the bird in the cage", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "someone whistles a tune"], "sample_ids": ["tIY7qOV3rEM", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "someone, tune, whistle"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a person whistling a song"], "question": "which entity is a human activity", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a man speaks as a car is passing by"], "sample_ids": ["spYNpeN7rPY", "sK4u5T8hW78"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "a, car, pass"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "people cheer as a vehicle engine revs"], "sample_ids": ["yajyRTUQk3U", "xjhAnI2q6hM"], "start_seconds": ["400", "6"], "properties": ["a woman, something, fried", "engine revs, vehicle, people"], "captions_pred_video": ["- a woman cooking in the kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a person snoring several times", "an infant crying as a woman laughs"], "sample_ids": ["spJCm8tD9Zo", "xhmRY9yhC7c"], "start_seconds": ["90", "20"], "properties": ["snore, person, several", "a, laugh, infant"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a person is snoring loudly", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zALy31PjDl0", "ukg5L09Wpvo"], "start_seconds": ["21", "150"], "properties": ["a man, a vehicle, a horn", "clickety-clack, train, whistle"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a woman speaks as she rubs two objects together"], "sample_ids": ["weDbePuc-Xc", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["cartoon character, music, vocalize", "two objects, woman, speak"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a baby coos and fidgets as a lady speaks and laughs"], "sample_ids": ["yJ0TePmaOo", "uPDn2BFTHk"], "start_seconds": ["390", "140"], "properties": ["two hard objects, man, speak", "lady, laugh, baby"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a baby laughs and a woman speaks"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a small engine idles continuously", "a clock ticktocks"], "sample_ids": ["y5WII6cTH7k", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["engine, idle, continuously", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a clock is ticking loudly"], "question": "which entity is ticking continuously", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w5W5Kqtc8E", "vJ7JPEFhyLA"], "start_seconds": ["100", "16"], "properties": ["wind, engine, scream", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "birds chirp as a man speaks and a younger person speaks"], "sample_ids": ["s4Uz1Ffgo04", "xl2PIWyXaM"], "start_seconds": ["100", "160"], "properties": ["water, rushes, motorcycle", "chirp, man, younger person"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "birds are chirping and people are talking"], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "paper is crumpling consistently"], "sample_ids": ["tK4VlLsNxak", "v5cSxLaHADY"], "start_seconds": ["120", "0"], "properties": ["a, dial, telephone", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["goats bleat and metal clings", "people applaud and hoot and chat quietly"], "sample_ids": ["tH17JPjDPnc", "wwyfGO2J4"], "start_seconds": ["260", "90"], "properties": ["bleat, metal, clings", "people, applaud, hoot"], "captions_pred_video": ["feed of the goats eating hay in the barn", null], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "someone whistles a tune"], "sample_ids": ["yZp6xizR0yU", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["animal, bleat, cry", "someone, tune, whistle"], "captions_pred_video": ["footage of a woman feeding goats in a barn", null], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a beep repeats multiple times", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["y682ml90jGw", "vbZ-0lGPneg"], "start_seconds": ["11", "30"], "properties": ["beep, repeat, multiple", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["zO-LSSY92ZM", "vzceMbklWc"], "start_seconds": ["30", "180"], "properties": ["liquid, surface, sound", "water, faucet, sink"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", null], "captions_pred_audio": ["steam is hissing and hissing", "water is running and a man is speaking"], "question": "which entity is a source of water", "label": 1}, {"captions": ["an engine runs and a man speaks", "an airplane engine runs"], "sample_ids": ["yT5WfYMRr-U", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["engine, run, man", "engine, airplane, runs"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a car is driving by on the road "], "question": "which entity has a man speaking while an engine runs?", "label": 0}, {"captions": ["a horn rings out as a machine runs by", "a machine beeps continuously"], "sample_ids": ["slZLHwNbbt4", "y682ml90jGw"], "start_seconds": ["300", "11"], "properties": ["a, horn, run", "beeps, machine, continuously"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a beeping sound is being made "], "question": "which machine is beeping continuously?", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a clock ticktocks"], "sample_ids": ["xjhAnI2q6hM", "v-g-j2uTByM"], "start_seconds": ["6", "30"], "properties": ["wind, blow, loudly", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["dogs barking and whimpering", "wind blows as people chatter quietly"], "sample_ids": ["tIY7qOV3rEM", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "wind, chatter, people"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vGj1XLJvNrw", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["wails, wails, pass", "a woman, something, fried"], "captions_pred_video": ["footage of a police car driving down a city street", "- a woman cooking in the kitchen"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a person uses a saw to cut some wood"], "sample_ids": ["wTjoRj1se3U", "sHbXC6na9hg"], "start_seconds": ["390", "0"], "properties": ["engine, run, people", "a person, saw, wood"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a jet engine is running and people are talking", "an engine is idling and vibrating"], "question": "which entity is a person", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "several insects fly while two men talk"], "sample_ids": ["vJvryTwuAV8", "s-T9OVOiMLo"], "start_seconds": ["16", "330"], "properties": ["audience, cheer, man", "several, fly, men"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zofjfKhqLk8", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "stream, water, flow"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage is blurry and out of focus"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xyL9F5VrjkE", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["wind, motor, distance", "female, spraying, scream"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tezvROoo4bs", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["audio, throttle, speaking", "men, talk, cars"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["food is frying and sizzles", "people cheer as a vehicle engine revs"], "sample_ids": ["zNRChLjqcU", "xjhAnI2q6hM"], "start_seconds": ["220", "6"], "properties": ["food is frying, sizzles, food", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["water is running from a faucet into a sink", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man is filing a hard object", "a stream runs then someone speaks"], "sample_ids": ["vveS8HT7Uog", "wbHTKEJZyhc"], "start_seconds": ["100", "20"], "properties": ["a man, hard, object", "stream, run, someone"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a waterfall is flowing and people are speaking "], "question": "which entity is a stream", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a clock ticktocks"], "sample_ids": ["vZAw4apG0Es", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking and people are talking", "a clock is ticking loudly"], "question": "which entity has a tick that repeats", "label": 0}, {"captions": ["the revving of an engine throttle followed by a man speaking", "a clock ticktocks"], "sample_ids": ["tezvROoo4bs", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["audio, throttle, speaking", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["x9JovgqUcs", "yajyRTUQk3U"], "start_seconds": ["500", "400"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a person speaking and typing on a computer keyboard?", "label": 0}, {"captions": ["a telephone rings followed by a woman talking", "someone whistles briefly"], "sample_ids": ["tGcFnX0GHI", "uFoga8sHpiw"], "start_seconds": ["0", "90"], "properties": ["ring, talk, woman", "sound, duration, pitch"], "captions_pred_video": [null, "footage of a bird in a cage"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a person whistles a song"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a man speaks followed by another man speaking outside"], "sample_ids": ["ukxt9I7eMMg", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "two men, speak, follow"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "water pouring and bubbling"], "sample_ids": ["xC8kbrKJmco", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["background, goat, scream", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a goat is bleating ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a grown man speaks and water bubbles and runs"], "sample_ids": ["v7jJS8aAyA", "vSeGhaZt-aI"], "start_seconds": ["10", "50"], "properties": ["wind, blows, loudly", "water, bubbles, run"], "captions_pred_video": [null, "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a baby cries and a woman moans", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["smDKStoHBJo", "w34HjHr6gAY"], "start_seconds": ["0", "30"], "properties": ["a, cry, woman", "beeps, hit, woman"], "captions_pred_video": ["a man holding a crying baby in his arms", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "people speak as gunfire rings out"], "sample_ids": ["zofjfKhqLk8", "wqTCwqVRDlk"], "start_seconds": ["10", "80"], "properties": ["background, metal, clank", "gunfire, ring, speak"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a door opens and birds chirp", "a woman speaks happily and an animal chirps"], "sample_ids": ["yeFvk9x0wWI", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["door, open, birds", "a woman, chirps, animal"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "children cheer as a man speaks then an audience screams"], "sample_ids": ["zgUgkpk78xU", "vJvryTwuAV8"], "start_seconds": ["70", "16"], "properties": ["horn, bells, ring", "audience, cheer, man"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is a warning", "label": 0}, {"captions": ["a man speaking with light rustling", "vehicles pass by on a roadway"], "sample_ids": ["zOZleIRqZm4", "tgbONvsP47Y"], "start_seconds": ["80", "0"], "properties": ["light, rustling, man", "pass, vehicle, roadway"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "water runs into a sink while men speak"], "sample_ids": ["sAam2NqGhLY", "vzceMbklWc"], "start_seconds": ["20", "180"], "properties": ["snoring, breathing, child", "water, sink, run"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "water is running and a man is speaking"], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "roadway noise occurs and a truck accelerates"], "sample_ids": ["uiS58TNyUiw", "tgbONvsP47Y"], "start_seconds": ["430", "0"], "properties": ["audio, man, speaking", "noise, truck, accelerate"], "captions_pred_video": ["of the pigeon in the cage", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a car is driving on the road "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man woman speak while crickets sing", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["zTLVJCo4WEE", "vlJS7LN2XyM"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "background, clocks, ticking"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a ticktock of a clock"], "question": "which entity has a clock ticking in the background?", "label": 1}, {"captions": ["a weapon fires multiple times", "wind blows as people chatter quietly"], "sample_ids": ["sMC07Ucy7kg", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["weapon, fire, multiple", "wind, chatter, people"], "captions_pred_video": ["footage is from a car's point of view", "footage is blurry and out of focus"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "people cheer as a vehicle engine revs"], "sample_ids": ["vmrxwuAMb2I", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["a dog, inhales, exhales", "engine revs, vehicle, people"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a dog barks and growls", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["someone snores nearby", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["spJCm8tD9Zo", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["someone snores, nearby, someone", "two men, woman, birds"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "animals bleat and moo as a person speaks"], "sample_ids": ["xKB8O8LTs6s", "tPJvjq9QePY"], "start_seconds": ["70", "40"], "properties": ["music, gunfire, explosion", "animal, bleat, moo"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a dog and a sheep in a barn"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a baby cries and a man speaks"], "question": "which entity is more calm", "label": 1}, {"captions": ["some clanking with distant murmuring", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["uMTTDZ2mb4", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["clanking, murmuring, distant", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more animal like", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "a church bell rings several times"], "sample_ids": ["uPDn2BFTHk", "sUVVjE3Ucp8"], "start_seconds": ["140", "0"], "properties": ["woman, laughs, speaks", "ring, bell, several"], "captions_pred_video": [null, "the video shows a stone wall with a clock on top of it and a bench in front of it"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a church bell is ringing "], "question": "which entity is silent", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "paper is crumpling consistently"], "sample_ids": ["spYNpeN7rPY", "v5cSxLaHADY"], "start_seconds": ["1", "0"], "properties": ["a clock, ticktock, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a piece of wood is being placed down and sawed"], "sample_ids": ["xBxDz0CFVn0", "uiItxDsDMFI"], "start_seconds": ["30", "30"], "properties": ["stream, water, flow", "wood, piece, saw"], "captions_pred_video": ["footage is blurry and out of focus", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["soTOh3zYJfY", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["vehicle, skid, tires", "a woman, something, fried"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["w2JXXIAdUdg", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["snoring, distance, person", "animal, grunts, snorts"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking indiscriminately in the distance with a person snoring loudly nearby?", "label": 0}, {"captions": ["a man rubs two objects together then speaks", "a telephone rings followed by a woman talking"], "sample_ids": ["vveS8HT7Uog", "tGcFnX0GHI"], "start_seconds": ["100", "0"], "properties": ["a man, objects, speak", "ring, talk, woman"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["wRBHTgrbiwg", "tiDFTC-5vU"], "start_seconds": ["50", "30"], "properties": ["birds, chirp, cooing", "male, duck, laugh"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and ducks are quacking"], "question": "which entity is a group of birds?", "label": 0}, {"captions": ["a loud engine muffles a man as he speaks", "people speak as gunfire rings out"], "sample_ids": ["xyx6eNVEYRY", "wqTCwqVRDlk"], "start_seconds": ["380", "80"], "properties": ["loud, engine, muffles", "gunfire, ring, speak"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["continuous snoring", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sLkeqCDJIyw", "ukg5L09Wpvo"], "start_seconds": ["120", "150"], "properties": ["loud, snoring, noise", "clickety-clack, train, whistle"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a person is snoring loudly", "a train blows its whistle and blows its horn "], "question": "which noise is continuous", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a train horn blows as it passes by"], "sample_ids": ["yZmhM1HcsyE", "zVacuqSb4LI"], "start_seconds": ["4", "30"], "properties": ["engine, roar, water", "horn, blows, train"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which train is passing by", "label": 1}, {"captions": ["birds chirp and wind blows", "wind blowing followed by a zoom"], "sample_ids": ["sxIvBMSavMQ", "vr8ZXjEBhMQ"], "start_seconds": ["210", "150"], "properties": ["birds, chirp, wind", "wind, blow, zoom"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a video of a wind blowing?", "label": 1}, {"captions": ["a person screams glaringly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xC8kbrKJmco", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["glaringly, screams, person", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a goat is bleating ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sQGXqGcwOTc", "yajyRTUQk3U"], "start_seconds": ["3", "400"], "properties": ["cling, speak, dishes", "a woman, something, fried"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "- a woman cooking in the kitchen"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wqADXCzngMw", "vJ7JPEFhyLA"], "start_seconds": ["340", "16"], "properties": ["engine, idle, man", "three men, wind, flow"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["a woman and man are speaking", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vbpKkWvfOu4", "vfYTJq7nU"], "start_seconds": ["560", "130"], "properties": ["two people, speaking, woman, man", "rustling, ducks, quack"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a duck quacks and a woman speaks"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["w6RTHR6AeAg", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["call, owl, screech", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a goat bleats and birds chirp"], "question": "which entity is a bird?", "label": 0}, {"captions": ["a helicopter engine runs", "a horn rings out as a machine runs by"], "sample_ids": ["t5ZbXbniOWk", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["engine, helicopter, run", "a, horn, run"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a helicopter is flying overhead ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["vddP56-ogds", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["water, flow, laugh", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["people speak softly as food sizzles", "birds chirp and objects are moved around"], "sample_ids": ["yhQ2Lg-7qDY", "yPUYU6t3rwo"], "start_seconds": ["130", "370"], "properties": ["food, sizzle, speak", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a faucet is running and a man is speaking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "a man speaks as a boat engine runs"], "sample_ids": ["yDoT73BWsdA", "wtDqrBygTcU"], "start_seconds": ["10", "30"], "properties": ["engine, revs, vehicle", "man, engine, run"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "shows a person riding on the back of a boat as it speeds through the water"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a motor is running"], "question": "which entity is about a vehicle engine?", "label": 0}, {"captions": ["a woman speaks and dog vocalizes", "a man speaks as a motor runs in the background"], "sample_ids": ["uWAAAL4CIoc", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["a, dog, vocalize", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["yZp6xizR0yU", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["animal, bleat, cry", "loud, intense, propeller"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a man speaks as a car is passing by"], "sample_ids": ["uEU-Hg5MTN8", "sK4u5T8hW78"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "a, car, pass"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a woman talking as an infant is crying", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tMbMDvT50j8", "vbZ-0lGPneg"], "start_seconds": ["12", "30"], "properties": ["a, talk, infant", "a woman, a television program, a bird"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman is speaking and a dog is whimpering"], "question": "which woman is talking", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "ticking continues without interruption"], "sample_ids": ["w2M4i1mklOA", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "ticking, continuous, clock"], "captions_pred_video": ["footage of an antique clock", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a clock is ticking loudly"], "question": "which clock is ticking continuously", "label": 1}, {"captions": ["a beep occurs briefly", "an engine runs loudly"], "sample_ids": ["xtWeJ56-U-g", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["beep, occur, briefly", "loud, engine, run"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage is blurry because it's raining outside"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "roadway noise occurs and a truck accelerates"], "sample_ids": ["y4tPJXBKDig", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["a, noise, talk", "noise, truck, accelerate"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a car is driving on the road "], "question": "which noise is made by a truck", "label": 1}, {"captions": ["a helicopter engine runs", "a toilet flushes and a female speaks"], "sample_ids": ["t5ZbXbniOWk", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["engine, helicopter, run", "female, flushes, toilet"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage is blurry and out of focus"], "captions_pred_audio": ["a helicopter is flying overhead ", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "pigeons vocalize and birds chirp"], "sample_ids": ["vlS6YMeWAPo", "uiS58TNyUiw"], "start_seconds": ["40", "430"], "properties": ["sheep, baa, birds", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "of the pigeon in the cage"], "captions_pred_audio": ["a goat bleats and birds chirp", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["food is frying then a woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["ukxt9I7eMMg", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["food, woman, speak", "people, applaud, hoot"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "people are clapping and speaking with background noise "], "question": "which entity is a performance", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a clock ticktocks"], "sample_ids": ["tDlysoZiA1I", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, chirp", "ticktocks, clock, ticktocks"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a woman speaks happily and an animal chirps"], "sample_ids": ["sU53zg9Jp7s", "uWAAAL4CIoc"], "start_seconds": ["380", "0"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a woman, chirps, animal"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be a crow?", "label": 0}, {"captions": ["material crumbles into a microphone", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vofpvUo6NAw", "zj2R0XoFr5k"], "start_seconds": ["220", "50"], "properties": ["material, crumbles, microphone", "airplane, boy, fly"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "vehicles pass by on a roadway"], "sample_ids": ["xyL9F5VrjkE", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["wind, blows, vehicle", "pass, vehicle, roadway"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a fire truck entering a garage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sEprKHm8Sj8", "xKB8O8LTs6s"], "start_seconds": ["90", "70"], "properties": ["car, tires, slows", "music, gunfire, explosion"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sOa7g-44Dag", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["audio, scratching, man", "three men, wind, flow"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["several ducks quack and cocks crow far away", "a man speaks as a car is passing by"], "sample_ids": ["sNB8zxXneIM", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "a, car, pass"], "captions_pred_video": ["a group of geese in a cage", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a clock ticktocks continuously", "a car speeding up in the distance"], "sample_ids": ["vlJS7LN2XyM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, ticktocks continuously", "distance, car, speed"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["t97k0cejSQE", "tiDFTC-5vU"], "start_seconds": ["250", "30"], "properties": ["bird, chirp, insect", "male, duck, laugh"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking and ducks are quacking"], "question": "which entity is a group of animals?", "label": 0}, {"captions": ["water bubbles and gurgles.", "an airplane flies overhead as a woman speaks"], "sample_ids": ["tB7hWb9gTuQ", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["bubbles, gurgles, water", "airplane, fly, overhead"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["water is splashing and gurgling", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp then an animal grunts", "someone is typing on a computer keyboard"], "sample_ids": ["tDlysoZiA1I", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["animal, grunt, chirp", "keyboard, type, computer"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "how to make money on youtube in spanish"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a person is typing on a keyboard"], "question": "which is not a type of animal", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sWZzXuWYY", "su6FAOcOA8c"], "start_seconds": ["420", "4"], "properties": ["male, clanks, thumps", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle accelerates and squeals tires"], "sample_ids": ["sfAvvZwdLCY", "yRx9txMcBl0"], "start_seconds": ["20", "40"], "properties": ["water drains, flushes, water", "accelerates, tires, squeals"], "captions_pred_video": ["footage of the toilet in the bathroom", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a toilet is flushed", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "people applaud and hoot and chat quietly"], "sample_ids": ["wy1eKjR7KC0", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["people, talk, distance", "people, applaud, hoot"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a male speaks over some small clicks", "water is sprayed across a hard surface"], "sample_ids": ["uXxVebHsGZ8", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["male, clicks, speak", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a train engine runs and a horn blows", "people applaud and hoot and chat quietly"], "sample_ids": ["zPX9o1uDiI", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["engine, horn, run", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["uiS58TNyUiw", "y8dSeubCNI"], "start_seconds": ["430", "4"], "properties": ["vocalize, bird, chirp", "men, women, car"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "an engine revving and people talking in the background"], "question": "which entity is a human activity", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a clock ticktocks"], "sample_ids": ["weDbePuc-Xc", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["music, slaps, human", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a train horn blows as it passes by"], "sample_ids": ["sfAvvZwdLCY", "zVacuqSb4LI"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "horn, blows, train"], "captions_pred_video": ["footage of the toilet in the bathroom", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a toilet is flushed", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "water splashes as an animal walks through"], "sample_ids": ["vzceMbklWc", "w1ir-sZ3Im8"], "start_seconds": ["180", "90"], "properties": ["water, faucet, sink", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["water is running and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sxYkFKFIZD0", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["screech, man, door", "People, motor, brakes"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "an infant crying as a woman laughs"], "sample_ids": ["xOZfdgAgJ9o", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["woman, whimpering, speaking", "a, laugh, infant"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby cries and a woman speaks"], "question": "which woman is speaking?", "label": 0}, {"captions": ["multiple birds vocalize and wind blows", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uoGVs9yUqY4", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["multiple, vocalize, wind", "loud, multiple, distance"], "captions_pred_video": ["for how to make a wooden shed door youtube", null], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a drill drills through something then people begin laughing"], "sample_ids": ["tQWGZLItBXk", "tEE3MpBt1sg"], "start_seconds": ["170", "50"], "properties": ["music, kid, speak", "drill, something, laugh"], "captions_pred_video": ["worms revolution screenshots", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vBHyYJ8pL0", "ukg5L09Wpvo"], "start_seconds": ["2", "150"], "properties": ["noise, door, opening", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a clock ticktocks in wind", "an airplane engine spools and people speak"], "sample_ids": ["yVumC9TGknc", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["ticktocks, clock, wind", "airplane, engine, spool"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a series of beeps and chirps", "a jet engine is running and people are talking"], "question": "which entity is moving", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "water is sprayed across a hard surface"], "sample_ids": ["wDVMhEdTiVw", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["gun, shoot, water", "water, spray, surface"], "captions_pred_video": ["a blurry image of trees and water in the forest", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "spraying followed by silence"], "question": "which entity is a spray of water?", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["u7C-AEBQM", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["ticks, rhythmic, quiet", "sound, chirp, buzz"], "captions_pred_video": [null, "a bee on a purple thistle flower"], "captions_pred_audio": ["a ticktock of a clock", "a bee buzzes and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a telephone rings and a bird vocalizes", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["skd2PphS6oI", "uYT5gxnyMWM"], "start_seconds": ["190", "50"], "properties": ["ring, bird, vocalize", "female, spraying, scream"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a small engine idles continuously", "a car speeding up in the distance"], "sample_ids": ["y5WII6cTH7k", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["engine, idle, continuously", "distance, car, speed"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", null], "captions_pred_audio": ["an engine is knocking and vibrating ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["an adult male speaks and dials a rotary phone", "a car speeding up in the distance"], "sample_ids": ["tK4VlLsNxak", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "distance, car, speed"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "wind blows as people chatter quietly"], "sample_ids": ["vms5XGTDVQc", "xBxDz0CFVn0"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "wind, chatter, people"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage is blurry and out of focus"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["vJvryTwuAV8", "vqZuVbG6-HI"], "start_seconds": ["16", "130"], "properties": ["audience, cheer, man", "background, male, female"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a lawn mower is running and men are speaking "], "question": "which entity has a man speaking to an audience?", "label": 0}, {"captions": ["someone is snoring while sleeping", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["ujMt0-D-x2k", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["snore, sleep, someone", "engine, laugh, loud"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person is snoring loudly", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sWZzXuWYY", "vYkA3cfXp5Q"], "start_seconds": ["420", "30"], "properties": ["male, clanks, thumps", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "winds blows roughly as a vehicle races past"], "sample_ids": ["yRx9txMcBl0", "xjvTpk2Zpr8"], "start_seconds": ["40", "70"], "properties": ["accelerates, tires, squeals", "wind, blows, vehicle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a jet engine roars and wind blows "], "question": "which vehicle is moving faster", "label": 1}, {"captions": ["a person snoring", "someone snores nearby"], "sample_ids": ["t8tv5YRMJUg", "spJCm8tD9Zo"], "start_seconds": ["0", "90"], "properties": ["a person, snore, loud", "someone snores, nearby, someone"], "captions_pred_video": ["of a man getting his face licked by another man", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a person is snoring loudly"], "question": "which entity is a person?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "a vehicle is skidding and squealing tires"], "sample_ids": ["yRx9txMcBl0", "soTOh3zYJfY"], "start_seconds": ["40", "40"], "properties": ["motors, tires, screech", "vehicle, skid, tires"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wztCSUxOf8", "yajyRTUQk3U"], "start_seconds": ["130", "400"], "properties": ["a crowd, yells, applauds", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration", "label": 1}, {"captions": ["scraping and female speech with distant music", "people speak as gunfire rings out"], "sample_ids": ["yHeVV-xeOxQ", "wqTCwqVRDlk"], "start_seconds": ["130", "80"], "properties": ["female, speech, music", "gunfire, ring, speak"], "captions_pred_video": ["of a girl milking a goat's udder", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vbZ-0lGPneg", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["a woman, a television program, a bird", "engine, revs, vehicle"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "water pouring and bubbling"], "sample_ids": ["yajyRTUQk3U", "uyRfq-jKPpo"], "start_seconds": ["400", "50"], "properties": ["noise, woman, speak", "water, bubbles, pouring"], "captions_pred_video": ["- a woman cooking in the kitchen", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zO-LSSY92ZM", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["liquid, surface, sound", "music, gunfire, explosion"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["steam is hissing and hissing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["people speak softly as food sizzles", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yhQ2Lg-7qDY", "uYT5gxnyMWM"], "start_seconds": ["130", "50"], "properties": ["food, sizzle, speak", "female, spraying, scream"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a clock ticktocks"], "sample_ids": ["zY3icUyMdh8", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wRV8yMk886E", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["liquid, spray, nozzle", "a woman, something, fried"], "captions_pred_video": ["two cars are parked in a parking lot at night", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking", "label": 1}, {"captions": ["birds tweet and squawk", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["w1mlz3Pe4fU", "x9JovgqUcs"], "start_seconds": ["300", "500"], "properties": ["squawk, tweet, scream", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["of a bird in a cage", null], "captions_pred_audio": ["birds are chirping and singing", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tDVADusiIoc", "uYT5gxnyMWM"], "start_seconds": ["60", "50"], "properties": ["wind, radio, waves", "a, scream, girl"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking over a radio?", "label": 0}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "water is sprayed across a hard surface"], "sample_ids": ["y8dSeubCNI", "sQwlkXjQabo"], "start_seconds": ["4", "10"], "properties": ["men, women, car", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["an engine revving and people talking in the background", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a child yells and another yells", "a machine beeps continuously"], "sample_ids": ["vMDHu7Lxcgw", "y682ml90jGw"], "start_seconds": ["410", "11"], "properties": ["two, yell, child", "beeps, machine, continuously"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", null], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a machine beeps continuously", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["y682ml90jGw", "ukg5L09Wpvo"], "start_seconds": ["11", "150"], "properties": ["beeps, machine, continuously", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a beeping sound is being made ", "a train blows its whistle and blows its horn "], "question": "which entity is continuous", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["w6RTHR6AeAg", "x9JovgqUcs"], "start_seconds": ["40", "500"], "properties": ["call, owl, screech", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": [null, null], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["a door opens and closes", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vBHyYJ8pL0", "sLUnaPT5gM8"], "start_seconds": ["2", "0"], "properties": ["open, close, door", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["multiple insects buzz over rustling wind", "water rushes and then a vehicle zooms past"], "sample_ids": ["tMJne1a4AFI", "s4Uz1Ffgo04"], "start_seconds": ["0", "100"], "properties": ["wind, buzz, rustling", "water, rushes, vehicle"], "captions_pred_video": ["a swarm of bees on the ground", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is moving faster", "label": 1}, {"captions": ["water flows and trickles", "a woman speaks and then a man speaks"], "sample_ids": ["tB7hWb9gTuQ", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["water, flow, trickle", "a, man, speaks"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["water is splashing and gurgling", "a woman is speaking and a man is speaking"], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["food is frying and sizzles", "a man speaks while turning a water faucet on"], "sample_ids": ["zNRChLjqcU", "vf9xf3vMsGM"], "start_seconds": ["220", "540"], "properties": ["food is frying, sizzles, food", "A man speaks while turning a water faucet on."], "captions_pred_video": [null, "of the person washing their hands under the faucet"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking while water is running in the background"], "question": "which entity is a man speaking while turning a water faucet on?", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["un9VQlzgZM", "rqu8iB22IY"], "start_seconds": ["5", "5"], "properties": ["females, talk, laugh", "sound, repeats, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a dog barks and a man speaks while music plays "], "question": "which entity is more like a joke", "label": 1}, {"captions": ["people clap and speak in the distance", "a child speaks in closed space"], "sample_ids": ["wwyfGO2J4", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["clap, distance, speak", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "water splashes as an animal walks through"], "sample_ids": ["vddP56-ogds", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["water, splash, person, laugh", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is about splashing water?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "a woman speaks happily and an animal chirps"], "sample_ids": ["x6ijhqRY38s", "uWAAAL4CIoc"], "start_seconds": ["250", "0"], "properties": ["something metal, glass, hit", "a woman, chirps, animal"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zOZleIRqZm4", "tiDFTC-5vU"], "start_seconds": ["80", "30"], "properties": ["rustling, leaves, person", "male, duck, laugh"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking over rustling leaves?", "label": 0}, {"captions": ["birds chirp and an insect buzzes around", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["t97k0cejSQE", "zj2R0XoFr5k"], "start_seconds": ["250", "50"], "properties": ["bird, chirp, insect", "airplane, boy, fly"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wEBlkGWVWwE", "uEU-Hg5MTN8"], "start_seconds": ["260", "27"], "properties": ["a, babble, woman", "a woman, laughs, animal"], "captions_pred_video": ["shows a person writing on the whiteboard", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a horn rings out as a machine runs by"], "sample_ids": ["uRExseg-0XI", "slZLHwNbbt4"], "start_seconds": ["210", "300"], "properties": ["woman, man, water", "a, horn, run"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity has a horn?", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "an insect buzzes around continuously"], "sample_ids": ["xjhAnI2q6hM", "v25l1jef3JY"], "start_seconds": ["6", "0"], "properties": ["wind, blow, loudly", "buzzes, continuously, insect"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a fly is buzzing around a microphone "], "question": "which entity is a natural phenomenon", "label": 0}, {"captions": ["a woman speaks and dog vocalizes", "a duck quacks loudly and continuously"], "sample_ids": ["uWAAAL4CIoc", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["a, dog, vocalize", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["an airplane accelerates briefly", "a duck quacks loudly and continuously"], "sample_ids": ["zjTG0gaGCUI", "vh30P49Po6s"], "start_seconds": ["80", "30"], "properties": ["accelerates, airplane, briefly", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "birds chirp and objects are moved around"], "sample_ids": ["y8WEcpOlT3I", "yPUYU6t3rwo"], "start_seconds": ["40", "370"], "properties": ["wind, speak, buffeting", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a person sniffs and sneezes", "a infant makes noise and is excited"], "sample_ids": ["uRlbY6aoBU", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["sneezes, person, sniffs", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is sneezing ", "a baby cries and a woman speaks"], "question": "which entity is more likely to be a baby", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wjsXBsc7M40", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "three men, wind, flow"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 0}, {"captions": ["an engine idles quietly then gradually becomes louder", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["vbr9mHKc8WM", "siJFXfGWgDk"], "start_seconds": ["40", "50"], "properties": ["noise, loudness, engine", "a, bird, vehicle"], "captions_pred_video": [null, "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["an engine is idling", "a man is speaking and birds are chirping in the background "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["su6FAOcOA8c", "y8WEcpOlT3I"], "start_seconds": ["4", "40"], "properties": ["engine, idle, woman", "harsh, wind, blows"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking to another man?", "label": 1}, {"captions": ["people speak then an engine runs", "some men converse over an engine running"], "sample_ids": ["uMTTDZ2mb4", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["engine, run, people", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows people speaking while an engine runs?", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["tK4VlLsNxak", "y8WEcpOlT3I"], "start_seconds": ["120", "40"], "properties": ["a, dial, telephone", "harsh, wind, blows"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking with wind noise in the background "], "question": "which entity is about a man speaking and dialing a rotary telephone?", "label": 0}, {"captions": ["a person is burping while a girl speaks", "a horn blasts as warning bells ring"], "sample_ids": ["vdoxuJn9lTc", "zgUgkpk78xU"], "start_seconds": ["40", "70"], "properties": ["person, burp, girl", "horn, bells, ring"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a child speaks followed by a burp", "a train blows its horn as it speeds down the tracks "], "question": "which entity is louder", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a car accelerates and wind blows"], "sample_ids": ["ukg5L09Wpvo", "u0TrcHhkPQ"], "start_seconds": ["150", "20"], "properties": ["clickety-clack, train, whistle", "accelerates, wind, blows"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zcDwZ6W7E3E", "uYT5gxnyMWM"], "start_seconds": ["180", "50"], "properties": ["man, speak, motorcycles", "a, scream, girl"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["small dogs yip and bark sharply", "a duck quacks continuously"], "sample_ids": ["v-wcQf4BDY0", "vh30P49Po6s"], "start_seconds": ["120", "30"], "properties": ["bark, yip, sharply", "quacks, continuously, duck"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a dog barks and growls", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["water runs into a sink while men speak", "continuous chugging with birds chirping in the background"], "sample_ids": ["vzceMbklWc", "xM4joTqDVp4"], "start_seconds": ["180", "160"], "properties": ["water, sink, run", "background, chirp, birds"], "captions_pred_video": [null, "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["water is running and a man is speaking", "birds are chirping and a train is moving "], "question": "which entity has birds chirping in the background?", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a man speaks as a car is passing by"], "sample_ids": ["wIvYjuR3nrg", "sK4u5T8hW78"], "start_seconds": ["9", "30"], "properties": ["birds, pigeons, vocalize", "a, car, pass"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and cooing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a moving object", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yI-KvObbDoY", "ukg5L09Wpvo"], "start_seconds": ["260", "150"], "properties": ["sound, smack, wind", "clickety-clack, train, whistle"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vbr9mHKc8WM", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["noise, loudness, engine", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["an engine is idling", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["an electronic device bleeps once", "an infant crying frantically"], "sample_ids": ["tHJ6JSa8Y4", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["bleeps, electronic, device", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a clock is ticking and beeping", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "water flows and trickles"], "sample_ids": ["tdWhHV3X25Q", "tB7hWb9gTuQ"], "start_seconds": ["60", "30"], "properties": ["applause, audience, yells", "water, flow, trickle"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a person snoring", "a duck quacks continuously"], "sample_ids": ["t8tv5YRMJUg", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["a person, snore, loud", "quacks, continuously, duck"], "captions_pred_video": ["of a man getting his face licked by another man", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a duck is quacking loudly"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "an insect buzzes around continuously"], "sample_ids": ["vuUVPzd2FXw", "v25l1jef3JY"], "start_seconds": ["160", "0"], "properties": ["a, steam, release", "buzzes, continuously, insect"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "people cheer as a vehicle engine revs"], "sample_ids": ["sapQIQUhFc", "xjhAnI2q6hM"], "start_seconds": ["280", "6"], "properties": ["water, stream, trickles", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wy1eKjR7KC0", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "multiple, people, yell"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "people speak as gunfire rings out"], "sample_ids": ["yDoT73BWsdA", "wqTCwqVRDlk"], "start_seconds": ["10", "80"], "properties": ["engine, revs, vehicle", "gunfire, ring, speak"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["an engine runs and a man speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yT5WfYMRr-U", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["engine, run, man", "airplane, boy, fly"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a plane flying by?", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a clock ticktocks"], "sample_ids": ["uPDn2BFTHk", "v-g-j2uTByM"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an engine runs and a man speaks", "wind blowing followed by a zoom"], "sample_ids": ["yT5WfYMRr-U", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["engine, run, man", "wind, blow, zoom"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "an airplane engine runs"], "sample_ids": ["tjmoSi330GM", "yVPZ2MNWpms"], "start_seconds": ["23", "0"], "properties": ["speed, water, boat", "engine, airplane, runs"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a car is driving by on the road "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a woman and man are speaking", "a child speaks in closed space"], "sample_ids": ["vbpKkWvfOu4", "yW6FWLSLkx4"], "start_seconds": ["560", "40"], "properties": ["two people, speaking, woman, man", "child, space, speak"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a single person", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "a telephone rings followed by a woman talking"], "sample_ids": ["wAAkbZToh8", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["burp, laugh, speak", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man burps and a woman speaks", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["continuous sneezing together with speech", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["x4dZyf9Gbj0", "vbZ-0lGPneg"], "start_seconds": ["130", "30"], "properties": ["continuous, sneeze, speech", "a woman, a television program, a bird"], "captions_pred_video": ["footage is blurry and out of focus", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["a jet engine spools up and takes off", "an airplane engine spools and people speak"], "sample_ids": ["vBslzh7saPw", "wTjoRj1se3U"], "start_seconds": ["90", "390"], "properties": ["engine, spools, takes", "airplane, engine, spool"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a jet engine is running and people are talking"], "question": "which entity is a video of an airplane engine spooling?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sQwlkXjQabo", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["liquid, surface, spray", "music, gunfire, explosion"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["spraying followed by silence", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["water pours followed by a woman speaking and then a man speaking", "small dogs yip and bark sharply"], "sample_ids": ["uRExseg-0XI", "v-wcQf4BDY0"], "start_seconds": ["210", "120"], "properties": ["audio, woman, man", "bark, yip, sharply"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a stream of water runs briefly"], "sample_ids": ["xZepNM9qcRA", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["background, motor, run", "stream, water, run"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a dark barks and whimpers", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sYj4hpDUZDQ", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["barks, whimpers, dark", "loud, multiple, distance"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["w34HjHr6gAY", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["beeps, hit, woman", "a, chirps, bird"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking and bees are buzzing"], "question": "which entity has a bird chirp?", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "water is sprayed across a hard surface"], "sample_ids": ["xOZfdgAgJ9o", "sQwlkXjQabo"], "start_seconds": ["40", "10"], "properties": ["woman, whimpering, speaking", "water, spray, surface"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "spraying followed by silence"], "question": "which entity is a video of a woman speaking and another woman whimpering?", "label": 0}, {"captions": ["a train horn sounds as a railroad passing bell rings", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zgUgkpk78xU", "tdWhHV3X25Q"], "start_seconds": ["70", "60"], "properties": ["horn, bell, train", "applause, audience, yells"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking and a crowd is clapping"], "question": "which entity is a human activity", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wqZ135Ssz0", "ukg5L09Wpvo"], "start_seconds": ["60", "150"], "properties": ["man, woman, squawks", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["a child speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yW6FWLSLkx4", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["a, child, speaks", "airplane, boy, fly"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a child speaking?", "label": 0}, {"captions": ["someone is burping continuously", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y636gklDioE", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["burps, burps, burps", "a woman, laughs, animal"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person burps loudly several times", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a prank", "label": 1}, {"captions": ["a weapon fires multiple times", "a woman speaks as she rubs two objects together"], "sample_ids": ["sMC07Ucy7kg", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["weapon, fire, multiple", "two objects, woman, speak"], "captions_pred_video": ["footage is from a car's point of view", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["sZvwOuuPGP0", "s4Uz1Ffgo04"], "start_seconds": ["50", "100"], "properties": ["engine, diesel, truck", "roars, background, people speaking"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["someone snores nearby", "a car speeding up in the distance"], "sample_ids": ["spJCm8tD9Zo", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "distance, car, speed"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 1}, {"captions": ["a toilet flushes and water drains", "an infant crying frantically"], "sample_ids": ["sfAvvZwdLCY", "zwOBqeFTgiU"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "cry, infant, frantically"], "captions_pred_video": ["footage of the toilet in the bathroom", "of the baby crying in the car seat"], "captions_pred_audio": ["a toilet is flushed", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a dog barks and whimpers", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["sShpyu2l4YQ", "vlJS7LN2XyM"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "background, clocks, ticking"], "captions_pred_video": ["the puppies are playing with a toy", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a dog is barking and growling", "a ticktock of a clock"], "question": "which entity is more calm", "label": 1}, {"captions": ["frogs croak and vocalize", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yswmmRZFItk", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["croak, vocalize, frog", "water, radio, man"], "captions_pred_video": ["a close up of a frog in the water", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a frog is croaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a frog?", "label": 1}, {"captions": ["children cry and people talk", "a car accelerates and wind blows"], "sample_ids": ["xLwHe825Zs", "u0TrcHhkPQ"], "start_seconds": ["18", "20"], "properties": ["people talk, children cry, people talk", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby cries and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "the rumbling of a bus followed by a soft male voice"], "sample_ids": ["se87d6yxEOA", "vK93VuO0yNc"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "male voice, bus, rumble"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage is blurry due to the movement of the bus as it drives through the city at night"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a car drives by with wind noise in the background "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "people cheer as a vehicle engine revs"], "sample_ids": ["tZGN5a7ybxo", "xjhAnI2q6hM"], "start_seconds": ["60", "6"], "properties": ["ring, train, horn", "engine revs, vehicle, people"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people speak and tapping occurs", "people cheer as a vehicle engine revs"], "sample_ids": ["tFCUUGdREgA", "xjhAnI2q6hM"], "start_seconds": ["70", "6"], "properties": ["people, tap, speak", "engine revs, vehicle, people"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["some men converse over an engine running", "a woman and man are speaking"], "sample_ids": ["sCiy7QS1U", "vbpKkWvfOu4"], "start_seconds": ["300", "560"], "properties": ["men, converse, engine", "two people, speaking, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman is speaking and a man is speaking"], "question": "which entity shows two people speaking?", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yNtRmrn0io8", "uZesmtKZGSw"], "start_seconds": ["210", "250"], "properties": ["storm, distance, strike", "men, talk, cars"], "captions_pred_video": ["footage of a house in the middle of the night", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["rain falls and thunder roars", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more likely to be a violent event", "label": 0}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vlJS7LN2XyM", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["background, clocks, ticking", "water, radio, man"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "people applaud and hoot and chat quietly"], "sample_ids": ["voJh2gJxXhA", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["music, frog, croak", "people, applaud, hoot"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", null], "captions_pred_audio": ["music is playing and crickets are chirping ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an airplane engine spools and people speak", "some men converse over an engine running"], "sample_ids": ["wTjoRj1se3U", "sCiy7QS1U"], "start_seconds": ["390", "300"], "properties": ["airplane, engine, spool", "men, converse, engine"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man conversing over an engine running?", "label": 1}, {"captions": ["birds fly and flutter around", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wGKgwOP3h30", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["fly, flutter, around", "multiple, people, yell"], "captions_pred_video": ["of the pigeons in the coop", null], "captions_pred_audio": ["pigeons coo and flap their wings", "a crowd of people are talking and laughing"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water drains", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sfAvvZwdLCY", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["water drains, flushes, water", "three men, wind, flow"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing", "label": 1}, {"captions": ["a infant makes noise and is excited", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wIJK3-5y0kA", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["noise, excited, infant", "rustling, ducks, quack"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man is filing a hard object", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vveS8HT7Uog", "sSMl2vc3ek"], "start_seconds": ["100", "20"], "properties": ["a man, hard, object", "loud, multiple, distance"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["water rushes by", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["x-PeY8Yb8M4", "zFjIWfSD-4"], "start_seconds": ["300", "410"], "properties": ["water, rushes, by", "People, motor, brakes"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks as crickets sing", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["ryFDPxgDOGc", "uYT5gxnyMWM"], "start_seconds": ["570", "50"], "properties": ["a, crickets, sing", "a, scream, girl"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sd7xVssqlw", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["accelerates, tires, squealing", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a steam engine runs and whistles as it passes by", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["se87d6yxEOA", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["run, whistle, pass", "loud, jet engine, roar"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a drill drills through something then people begin laughing"], "sample_ids": ["zALy31PjDl0", "tEE3MpBt1sg"], "start_seconds": ["21", "50"], "properties": ["a man, a vehicle, a horn", "drill, something, laugh"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "people are laughing breathing and speaking with background noise "], "question": "which entity is about a drill?", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a child speaks in closed space"], "sample_ids": ["vlS6YMeWAPo", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["noise, bleat, call", "child, space, speak"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a goat bleats and birds chirp", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["some tunes played by whistling", "some tunes played by whistling"], "sample_ids": ["u6BnG6YZqJ4", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["tune, play, whistling", "tune, play, whistling"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person whistling a song", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vr8ZXjEBhMQ", "uYT5gxnyMWM"], "start_seconds": ["150", "50"], "properties": ["wind, blow, zoom", "female, spraying, scream"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "frogs croak and vocalize"], "sample_ids": ["y4tPJXBKDig", "yswmmRZFItk"], "start_seconds": ["20", "0"], "properties": ["a, noise, talk", "croak, vocalize, frog"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "water flows and trickles"], "sample_ids": ["zliInBdC98Y", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["a, baby, cries, wails", "water, flow, trickle"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a baby cries and a woman speaks", "water is splashing and gurgling"], "question": "which entity is silent", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a woman speaks as she rubs two objects together"], "sample_ids": ["uWPRNLnpy7Y", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["accelerate, laugh, vehicle", "two objects, woman, speak"], "captions_pred_video": ["is taken from a car driving down the street", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["a man speaking with light rustling", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["zOZleIRqZm4", "s7knHCFW82w"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "blow horn, get close, train"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vZAw4apG0Es", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["background, clock, ticktocks", "rooster, crow, background, men"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a clock in the background?", "label": 0}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "people speak as gunfire rings out"], "sample_ids": ["sjlVMgdGSK0", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["accelerates, vehicle, race car", "gunfire, ring, speak"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a telephone rings followed by a woman talking"], "sample_ids": ["vSeGhaZt-aI", "tGcFnX0GHI"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, run", "ring, talk, woman"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a baby laugh at a sputter", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sLUnaPT5gM8", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["laugh, sputter, baby", "male, duck, laugh"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking and ducks are quacking"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wRBHTgrbiwg", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["bird, owl, speak", "engine, laugh, loud"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a car accelerates and wind blows", "winds blows roughly as a vehicle races past"], "sample_ids": ["u0TrcHhkPQ", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["accelerates, wind, blows", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vZAw4apG0Es", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["people, clock, converse", "People, motor, brakes"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["a jet engine spools up and takes off", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vBslzh7saPw", "ukg5L09Wpvo"], "start_seconds": ["90", "150"], "properties": ["engine, spools, takes", "clickety-clack, train, whistle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaks as a machine runs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vD6lYD1l0BY", "vfYTJq7nU"], "start_seconds": ["330", "130"], "properties": ["a, machine, run", "rustling, ducks, quack"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a duck quacks and a woman speaks"], "question": "which entity is about a machine running?", "label": 0}, {"captions": ["a person is snoring while sleeping", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vJrjSeP17yE", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "multiple, people, yell"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a diesel truck engine runs continuously", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sZvwOuuPGP0", "tdWhHV3X25Q"], "start_seconds": ["50", "60"], "properties": ["engine, diesel, truck", "applause, audience, yells"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking and a crowd is clapping"], "question": "which is not a vehicle", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "an infant crying as a woman laughs"], "sample_ids": ["siJFXfGWgDk", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["man, woman, vehicle", "a, laugh, infant"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a baby cries and a woman speaks"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a girl talking, laughing and sneezing noise", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y4tPJXBKDig", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["a, noise, talk", "wind, blow, vehicle"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", null], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "water is sprayed across a hard surface"], "sample_ids": ["zcDwZ6W7E3E", "sQwlkXjQabo"], "start_seconds": ["180", "10"], "properties": ["man, speak, motorcycles", "water, spray, surface"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "spraying followed by silence"], "question": "which is a liquid", "label": 1}, {"captions": ["a man talks as several small engines run", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["u9A6VZQCZpU", "xyL9F5VrjkE"], "start_seconds": ["30", "20"], "properties": ["a, man, talk", "wind, motor, distance"], "captions_pred_video": [null, "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "the wind is blowing and a car is passing by "], "question": "which entity is about a motor?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["x5cuQjOdM3E", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["cat, meows, young woman", "people, applaud, hoot"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a stream of water runs briefly", "a man speaks as water trickles down a stream"], "sample_ids": ["x-PeY8Yb8M4", "sapQIQUhFc"], "start_seconds": ["300", "280"], "properties": ["stream, water, run", "water, stream, trickles"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking and a stream is flowing in the background "], "question": "which stream is running", "label": 0}, {"captions": ["some people speak", "several insects fly while two men talk"], "sample_ids": ["vbZ-0lGPneg", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "several, fly, men"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a woman and man speak while food is frying", "people cheer as a vehicle engine revs"], "sample_ids": ["zk-xJGQU8-4", "xjhAnI2q6hM"], "start_seconds": ["130", "6"], "properties": ["food, man, woman", "engine revs, vehicle, people"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "people speak as gunfire rings out"], "sample_ids": ["tDVADusiIoc", "wqTCwqVRDlk"], "start_seconds": ["60", "80"], "properties": ["water, radio, man", "gunfire, ring, speak"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war zone", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vJ7JPEFhyLA", "xfaoyyzw2WU"], "start_seconds": ["16", "180"], "properties": ["three men, wind, flow", "loud, jet engine, roar"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a male speaks and another male speaks", "water splashes as an animal walks through"], "sample_ids": ["viuTg1M-dqg", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["two males, speaking, male", "animal, water, splashes"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "some tunes played by whistling"], "sample_ids": ["yI-KvObbDoY", "u6BnG6YZqJ4"], "start_seconds": ["260", "0"], "properties": ["sound, smack, wind", "tune, play, whistling"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["vBslzh7saPw", "tDlysoZiA1I"], "start_seconds": ["90", "0"], "properties": ["engine, roar, louder", "animal, grunts, chirps"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a jet engine roars and accelerates ", "birds are chirping and a rooster is crowing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "water pouring and bubbling"], "sample_ids": ["tDVADusiIoc", "uyRfq-jKPpo"], "start_seconds": ["60", "50"], "properties": ["wind, radio, waves", "water, bubbles, pouring"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zNRChLjqcU", "zj2R0XoFr5k"], "start_seconds": ["220", "50"], "properties": ["water, faucet, run", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a helicopter engine runs continuously", "wind blows as people chatter quietly"], "sample_ids": ["ugHJF0hfYkg", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "wind, chatter, people"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry and out of focus"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a vehicle accelerates and squeals tires"], "sample_ids": ["xM4joTqDVp4", "yRx9txMcBl0"], "start_seconds": ["160", "40"], "properties": ["background, chirp, birds", "accelerates, tires, squeals"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "paper is crumpling consistently"], "sample_ids": ["x9JovgqUcs", "v5cSxLaHADY"], "start_seconds": ["500", "0"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man speaks and types on a keyboard", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tMJne1a4AFI", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["wind, buzz, rustling", "men, talk, cars"], "captions_pred_video": ["a swarm of bees on the ground", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "an adult male speaks and dials a rotary phone"], "sample_ids": ["y2bVZ7rz-5M", "tK4VlLsNxak"], "start_seconds": ["280", "120"], "properties": ["engine, horn, siren", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and using a sewing machine"], "question": "which entity is a vehicle", "label": 0}, {"captions": ["male speech with light ticking", "a child speaks in closed space"], "sample_ids": ["xO-Q2BlIIPU", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["male, speech, ticking", "child, space, speak"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a drill runs and two people laugh", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tEE3MpBt1sg", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["two people, laugh, drill", "a, scream, girl"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has more people", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a loud engine muffles a man as he speaks"], "sample_ids": ["wjsXBsc7M40", "xyx6eNVEYRY"], "start_seconds": ["10", "380"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "loud, engine, muffles"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a baby laughs and a woman speaks", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vddP56-ogds", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["water, splash, person, laugh", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be in a storm", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a vehicle accelerates and squeals tires"], "sample_ids": ["vh30P49Po6s", "yRx9txMcBl0"], "start_seconds": ["30", "40"], "properties": ["loud, continuous, quacks", "accelerates, tires, squeals"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a duck is quacking loudly", "a car is revving its engine and skidding "], "question": "which entity is louder", "label": 0}, {"captions": ["someone whistles a tune", "a train engine runs and a horn blows"], "sample_ids": ["sIXTftIuUgw", "zPX9o1uDiI"], "start_seconds": ["90", "40"], "properties": ["someone, tune, whistle", "engine, horn, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is a train", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["wvKpEYswXO0", "vXlk0lIQBFo"], "start_seconds": ["150", "470"], "properties": ["water, tap, run", "wind, speak, vocalize"], "captions_pred_video": ["of the person preparing food in the kitchen", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is about water?", "label": 0}, {"captions": ["wind blows and women speak as livestock vocalizes", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vXlk0lIQBFo", "uEU-Hg5MTN8"], "start_seconds": ["470", "27"], "properties": ["wind, speak, vocalize", "a woman, laughs, animal"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking and an animal snorting?", "label": 1}, {"captions": ["a man speaking with light rustling", "winds blows roughly as a vehicle races past"], "sample_ids": ["zOZleIRqZm4", "xjvTpk2Zpr8"], "start_seconds": ["80", "70"], "properties": ["light, rustling, man", "wind, blows, vehicle"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a dog barks and whimpers", "a child speaks in closed space"], "sample_ids": ["sShpyu2l4YQ", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["barks, whimpers, dog", "child, space, speak"], "captions_pred_video": ["the puppies are playing with a toy", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["distant humming of an engine", "a infant makes noise and is excited"], "sample_ids": ["yVPZ2MNWpms", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["sound, distance, engine", "noise, excited, infant"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a car is driving by on the road ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a propeller moves loudly nearby", "some clanking with distant murmuring"], "sample_ids": ["ugHJF0hfYkg", "uMTTDZ2mb4"], "start_seconds": ["10", "30"], "properties": ["loud, propeller, move", "clanking, murmuring, distant"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "people are talking and a car is driving by with wind noise in the background "], "question": "which is quieter", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "someone whistles a tune"], "sample_ids": ["siJFXfGWgDk", "sIXTftIuUgw"], "start_seconds": ["50", "90"], "properties": ["man, woman, vehicle", "someone, tune, whistle"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a baby cries and a woman moans", "a woman speaks as she rubs two objects together"], "sample_ids": ["smDKStoHBJo", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["a, cry, woman", "two objects, woman, speak"], "captions_pred_video": ["a man holding a crying baby in his arms", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a woman speaking?", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a man speaks as a motor runs in the background"], "sample_ids": ["w5W5Kqtc8E", "xZepNM9qcRA"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "someone is typing on a computer keyboard"], "sample_ids": ["smDKStoHBJo", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["a, talk, baby, cry", "keyboard, type, computer"], "captions_pred_video": ["a man holding a crying baby in his arms", "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["v0x1odnXtP0", "zj2R0XoFr5k"], "start_seconds": ["210", "50"], "properties": ["keyboard, type, computer", "airplane, boy, fly"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "wind blows as people chatter quietly"], "sample_ids": ["wyllXV6PjKo", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a kid, talk, cry", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wyllXV6PjKo", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a kid, talk, cry", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a baby is crying"], "question": "which entity has a kid?", "label": 0}, {"captions": ["waves crash against a shoreline and people speak", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yFB25fqfU8I", "vbZ-0lGPneg"], "start_seconds": ["300", "30"], "properties": ["wave, crash, shoreline", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a person surfing in the ocean", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman is speaking and a dog is whimpering"], "question": "which entity is a video of a television program?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["slZLHwNbbt4", "tDVADusiIoc"], "start_seconds": ["300", "60"], "properties": ["train, horn, sound", "water, radio, man"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "birds chirp and objects are moved around"], "sample_ids": ["zgUgkpk78xU", "yPUYU6t3rwo"], "start_seconds": ["70", "370"], "properties": ["horn, bells, ring", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a duck quacks continuously"], "sample_ids": ["v7jJS8aAyA", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["wind, blows, loudly", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a toilet flushes and water drains"], "sample_ids": ["tDlfY3nmx1A", "sfAvvZwdLCY"], "start_seconds": ["160", "20"], "properties": ["applause, laugh, man", "water drains, flushes, water"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a toilet is flushed"], "question": "which entity is a draining water?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "wind blows as people chatter quietly"], "sample_ids": ["sQwlkXjQabo", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "wind, chatter, people"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage is blurry and out of focus"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a male speaks and another male speaks", "someone is burping continuously"], "sample_ids": ["viuTg1M-dqg", "y636gklDioE"], "start_seconds": ["30", "20"], "properties": ["two males, speaking, male", "burps, burps, burps"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person burps loudly several times"], "question": "which entity is more likely to be a prank", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "small dogs yip and bark sharply"], "sample_ids": ["xzKKf9bKNUo", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["background, noise, snoring", "bark, yip, sharply"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a person snoring loudly", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["an insect buzzes around continuously", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["v25l1jef3JY", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "a woman, a television program, a bird"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a dog is whimpering"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a door slams shut and an object moves on a hard surface", "water pouring and bubbling"], "sample_ids": ["zkKdxzNC97Y", "uyRfq-jKPpo"], "start_seconds": ["27", "50"], "properties": ["hard, surface, door", "water, bubbles, pouring"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a door is opened and closed", "water is running from a faucet"], "question": "which entity is more likely to be a liquid", "label": 1}, {"captions": ["some clanking with distant murmuring", "water flows as men speak and yell"], "sample_ids": ["uMTTDZ2mb4", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["clanking, murmuring, distant", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["soTOh3zYJfY", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["vehicle, skid, tires", "men, talk, cars"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a infant makes noise and is excited", "some men converse over an engine running"], "sample_ids": ["wIJK3-5y0kA", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["noise, excited, infant", "men, converse, engine"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "some men converse over an engine running"], "sample_ids": ["ukxt9I7eMMg", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["food, pan, cook", "men, converse, engine"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a conversation?", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a car accelerates and wind blows"], "sample_ids": ["xM4joTqDVp4", "u0TrcHhkPQ"], "start_seconds": ["160", "20"], "properties": ["background, chirp, birds", "accelerates, wind, blows"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "an engine runs loudly"], "sample_ids": ["t69a8aRKhmc", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["a, b, c", "loud, engine, run"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["an adult male speaks and dials a rotary phone", "some men converse over an engine running"], "sample_ids": ["tK4VlLsNxak", "sCiy7QS1U"], "start_seconds": ["120", "300"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "men, converse, engine"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation between two men?", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "an airplane engine roars increasingly louder"], "sample_ids": ["vKrYfzleLB8", "vBslzh7saPw"], "start_seconds": ["110", "90"], "properties": ["a, ring, gunshots", "engine, roar, louder"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a jet engine roars and accelerates "], "question": "which is louder", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w1mlz3Pe4fU", "xKB8O8LTs6s"], "start_seconds": ["300", "70"], "properties": ["vocalize, chirp, continuously", "music, gunfire, explosion"], "captions_pred_video": ["of a bird in a cage", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds are chirping and singing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["children speak as a female ask them questions", "several insects fly while two men talk"], "sample_ids": ["wEBlkGWVWwE", "s-T9OVOiMLo"], "start_seconds": ["260", "330"], "properties": ["female, speak, questions", "several, fly, men"], "captions_pred_video": ["shows a person writing on the whiteboard", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "people speak as gunfire rings out"], "sample_ids": ["ujMt0-D-x2k", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["snoring, rhythmical, nearby", "gunfire, ring, speak"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["ukxt9I7eMMg", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["food, pan, cook", "a woman, laughs, animal"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking and laughing?", "label": 1}, {"captions": ["birds fly and flutter around", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wGKgwOP3h30", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["fly, flutter, around", "sheep, baa, birds"], "captions_pred_video": ["of the pigeons in the coop", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["pigeons coo and flap their wings", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "some men converse over an engine running"], "sample_ids": ["ylpYOorfH4o", "sCiy7QS1U"], "start_seconds": ["410", "300"], "properties": ["motor, run, steady", "men, converse, engine"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man speaks while a motorcycle revs and accelerates "], "question": "which is a more active scene", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vzxHnu-SFEw", "zj2R0XoFr5k"], "start_seconds": ["80", "50"], "properties": ["two objects, woman, speak", "airplane, boy, fly"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "vehicles pass by on a roadway"], "sample_ids": ["yYEVLuqEytU", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["grunt, slurp, background", "pass, vehicle, roadway"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a fire truck entering a garage"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "an infant crying as a woman laughs"], "sample_ids": ["ziUT9IFTkjg", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["background, birds, rustling", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person sniffles and sneezes", "a man speaks in the background while a slow tick repeats"], "sample_ids": ["uRlbY6aoBU", "vZAw4apG0Es"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "background, tick, repeat"], "captions_pred_video": [null, "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a man is sneezing ", "a clock is ticking and people are talking"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a man speaks then blows a vehicle horn as wind blows"], "sample_ids": ["wz7N8YRy74I", "zALy31PjDl0"], "start_seconds": ["30", "21"], "properties": ["rooster, crow, background, men", "a man, a vehicle, a horn"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a motorcycle is parked on the side of a brick walkway"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and a car horn is honking"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a man speaks as a car is passing by"], "sample_ids": ["tDlysoZiA1I", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["animal, grunts, chirps", "a, car, pass"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a car speeding up in the distance"], "sample_ids": ["vdoxuJn9lTc", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["burp, loud, girl", "distance, car, speed"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["water flows as men speak and yell", "paper folding and crinkling"], "sample_ids": ["vJ7JPEFhyLA", "zPpG3RD8lSs"], "start_seconds": ["16", "20"], "properties": ["water, flow, men", "paper, fold, crinkle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "the wind blows and a mouse clicks "], "question": "which entity is more still", "label": 1}, {"captions": ["a toilet flushes and water drains", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sfAvvZwdLCY", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["water drains, flushes, water", "rustling, ducks, quack"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["a airplane flies overhead as a woman speaks", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zj2R0XoFr5k", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, woman", "gun, shoot, water"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a child speaks", "a machine beeps continuously"], "sample_ids": ["yW6FWLSLkx4", "y682ml90jGw"], "start_seconds": ["40", "11"], "properties": ["a, child, speaks", "beeps, machine, continuously"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uiS58TNyUiw", "vb1fPSDI4c"], "start_seconds": ["430", "30"], "properties": ["audio, man, speaking", "multiple, people, yell"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wqADXCzngMw", "vbZ-0lGPneg"], "start_seconds": ["340", "30"], "properties": ["engine, idle, man", "a woman, a television program, a bird"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a man talking?", "label": 0}, {"captions": ["race cars go around a track as a man commentates", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["uZesmtKZGSw", "xV7Mg1QucSc"], "start_seconds": ["250", "14"], "properties": ["car, track, man", "alarm, ticktocks, laughs"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "an alarm clock ticks and a woman laughs"], "question": "which entity has a man laugh?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "people speak as gunfire rings out"], "sample_ids": ["uZesmtKZGSw", "wqTCwqVRDlk"], "start_seconds": ["250", "80"], "properties": ["men, talk, cars", "gunfire, ring, speak"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zuua6-5goWw", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["birds, chirp, quiet, man, speaks", "harsh, wind, blows"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "on how to use a sewing machine youtube"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 0}, {"captions": ["people speak and tapping occurs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tFCUUGdREgA", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["people, tap, speak", "female, spraying, scream"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and tapping?", "label": 0}, {"captions": ["a beep occurs briefly", "water pouring and bubbling"], "sample_ids": ["xtWeJ56-U-g", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["beep, occur, briefly", "water, bubbles, pouring"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "water is running from a faucet"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a man is filing a hard object", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vveS8HT7Uog", "vYkA3cfXp5Q"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "engine, accelerate, idle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "an engine is idling"], "question": "which object is more likely to be a vehicle engine?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wRBHTgrbiwg", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["bird, owl, speak", "a woman, laughs, animal"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking briefly?", "label": 0}, {"captions": ["water splashes and a door squeaks", "someone is typing on a computer keyboard"], "sample_ids": ["sdXV-ylviw", "v0x1odnXtP0"], "start_seconds": ["190", "210"], "properties": ["sound, splash, door", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["vs65y4qmyBE", "uiS58TNyUiw"], "start_seconds": ["340", "430"], "properties": ["wind, blows, strongly", "vocalize, bird, chirp"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of the pigeon in the cage"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["tDVADusiIoc", "sLUnaPT5gM8"], "start_seconds": ["60", "0"], "properties": ["wind, radio, waves", "loud, laughter, intermittent"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zNRChLjqcU", "uEU-Hg5MTN8"], "start_seconds": ["220", "27"], "properties": ["water, faucet, run", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "three men talk while wind blows and some liquid flows"], "sample_ids": ["weDbePuc-Xc", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["music, slaps, human", "three men, wind, flow"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more liquid flowing", "label": 1}, {"captions": ["a dog barks and whimpers", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sShpyu2l4YQ", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["barks, whimpers, dog", "airplane, boy, fly"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a dog is barking and growling", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "an insect buzzes around continuously"], "sample_ids": ["uJV8NDaHqqk", "v25l1jef3JY"], "start_seconds": ["100", "0"], "properties": ["loud, fly, chirp", "buzzes, continuously, insect"], "captions_pred_video": ["a bee hive in a wooden box", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a swarm of bees buzzing around", "a fly is buzzing around a microphone "], "question": "which fly buzzes around loudly", "label": 0}, {"captions": ["paper folding and crinkling", "a man is snoring loudly and repeatedly"], "sample_ids": ["zPpG3RD8lSs", "sncRqQ67iJU"], "start_seconds": ["20", "460"], "properties": ["paper, fold, crinkle", "loud, repeatedly, man"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zcDwZ6W7E3E", "y8WEcpOlT3I"], "start_seconds": ["180", "40"], "properties": ["a, man, speak", "harsh, wind, blows"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking with wind noise in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a train horn blows as it passes by", "an engine runs loudly"], "sample_ids": ["zVacuqSb4LI", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["horn, blows, train", "loud, engine, run"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a lawn mower is running and men are speaking "], "question": "which train is louder", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "continuous chugging with birds chirping in the background"], "sample_ids": ["sWZzXuWYY", "xM4joTqDVp4"], "start_seconds": ["420", "160"], "properties": ["male, clanks, thumps", "background, chirp, birds"], "captions_pred_video": [null, "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "birds are chirping and a train is moving "], "question": "which entity has a male speaking?", "label": 0}, {"captions": ["a toilet flushes and water sputters as it drains", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["smGI3C1NZc", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["water, drain, toilet", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a toilet is flushed", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a moving object", "label": 1}, {"captions": ["motors runs briefly and tires screech", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yRx9txMcBl0", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["motors, tires, screech", "People, motor, brakes"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running and air brakes hissing?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a clock ticktocks"], "sample_ids": ["wRBHTgrbiwg", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["bird, owl, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a propeller rotates loudly and intensely"], "sample_ids": ["uYT5gxnyMWM", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["female, spraying, scream", "loud, intense, propeller"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xSKJGCItUWE", "zl9Dqx-j7q4"], "start_seconds": ["10", "6"], "properties": ["engine, work, child", "engine, laugh, loud"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tOj4tdLRaA", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["woman, laugh, baby", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a person speaking and a baby laughing?", "label": 0}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a car speeding up in the distance"], "sample_ids": ["w8uLijTqtlU", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["wind, microphone, noise", "distance, car, speed"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a woman speaks as she rubs two objects together"], "sample_ids": ["yYEVLuqEytU", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["animal, pig, background", "two objects, woman, speak"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a child speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["yW6FWLSLkx4", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["a, child, speaks", "loud, laughter, intermittent"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["multiple ducks quack continuously", "a stream of water runs briefly"], "sample_ids": ["wfHeoPDLMaM", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["multiple, quack, continuously", "stream, water, run"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["ducks are quacking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sd7xVssqlw", "yDoT73BWsdA"], "start_seconds": ["50", "10"], "properties": ["accelerates, tires, squealing", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["a person whistles a meandering tune", "a stream of water runs briefly"], "sample_ids": ["uFoga8sHpiw", "x-PeY8Yb8M4"], "start_seconds": ["90", "300"], "properties": ["person, tune, whistle", "stream, water, run"], "captions_pred_video": ["footage of a bird in a cage", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person whistles a song", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uRlbY6aoBU", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["a, distance, sneeze", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and ducks are quacking"], "question": "which entity is a person?", "label": 0}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a stream of water runs briefly"], "sample_ids": ["wnpJndXuxLc", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["beeps, loud, whistle", "stream, water, run"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "a stream of water runs briefly"], "sample_ids": ["vms5XGTDVQc", "x-PeY8Yb8M4"], "start_seconds": ["220", "300"], "properties": ["paper, crumpled, crinkled", "stream, water, run"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["paper is crumpled and crinkled", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "frogs croak and vocalize"], "sample_ids": ["vmrxwuAMb2I", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["a dog, inhales, exhales", "croak, vocalize, frog"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a close up of a frog in the water"], "captions_pred_audio": ["a dog barks and growls", "a frog is croaking"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a infant makes noise and is excited"], "sample_ids": ["smDKStoHBJo", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["a, infant, speaking", "noise, excited, infant"], "captions_pred_video": ["a man holding a crying baby in his arms", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a baby cries and a woman speaks"], "question": "which infant is making noise", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "water flows as men speak and yell"], "sample_ids": ["y2ZBGpgbhHM", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["birds, tweet, pant", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wqN6IIHw3po", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["rain, surface, fall", "engine, idle, woman"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and water is splashing", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a person sniffs and sneezes", "multiple birds chirp and an animal grunts"], "sample_ids": ["uRlbY6aoBU", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["sneezes, person, sniffs", "animal, grunt, multiple"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is sneezing ", "birds are chirping and a rooster is crowing "], "question": "which entity is a person", "label": 0}, {"captions": ["a person snoring", "people applaud and hoot and chat quietly"], "sample_ids": ["t8tv5YRMJUg", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["a person, snore, loud", "people, applaud, hoot"], "captions_pred_video": ["of a man getting his face licked by another man", null], "captions_pred_audio": ["a person sniffs and breathes heavily", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wqADXCzngMw", "uZesmtKZGSw"], "start_seconds": ["340", "250"], "properties": ["engine, idle, man", "men, talk, cars"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a man talking to an engine?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "wind blowing followed by a zoom"], "sample_ids": ["zF8yoL0rkbI", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["engine, run, someone", "wind, blow, zoom"], "captions_pred_video": ["footage of the traffic on the street at night", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["birds chirp and wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sxIvBMSavMQ", "yajyRTUQk3U"], "start_seconds": ["210", "400"], "properties": ["birds, chirp, wind", "a woman, something, fried"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "bees buzz as wind blows"], "sample_ids": ["zsLxS-uLJTw", "tMJne1a4AFI"], "start_seconds": ["20", "0"], "properties": ["horn, blast, train", "bees, buzz, wind"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "a swarm of bees on the ground"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a swarm of bees buzzing around"], "question": "which entity is buzzing", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "vehicles pass by on a roadway"], "sample_ids": ["zgUgkpk78xU", "tgbONvsP47Y"], "start_seconds": ["70", "0"], "properties": ["horn, bells, ring", "pass, vehicle, roadway"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a baby laugh at a sputter", "wind blows as people chatter quietly"], "sample_ids": ["sLUnaPT5gM8", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["laugh, sputter, baby", "wind, chatter, people"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a airplane flies overhead as a woman speaks"], "sample_ids": ["uWAAAL4CIoc", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["a woman, chirps, animal", "airplane, fly, woman"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is more likely to be flying", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["sapQIQUhFc", "siJFXfGWgDk"], "start_seconds": ["280", "50"], "properties": ["water, stream, trickles", "a, bird, vehicle"], "captions_pred_video": [null, "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking and birds are chirping in the background "], "question": "which entity is about a man speaking as water trickles down a stream?", "label": 0}, {"captions": ["a horn blasts as warning bells ring", "a muffled toilet flushes and the water drains"], "sample_ids": ["zgUgkpk78xU", "sfAvvZwdLCY"], "start_seconds": ["70", "20"], "properties": ["horn, bells, ring", "flushes, drains, water"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a toilet is flushed"], "question": "which entity is silent", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yswmmRZFItk", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["background, frog, croak", "music, gunfire, explosion"], "captions_pred_video": ["a close up of a frog in the water", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a frog is croaking", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["an infant crying frantically", "paper folding and crinkling"], "sample_ids": ["zwOBqeFTgiU", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["cry, infant, frantically", "paper, fold, crinkle"], "captions_pred_video": ["of the baby crying in the car seat", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a baby cries loudly", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a person speaks briefly", "plastic is tapped on while someone speaks"], "sample_ids": ["zOZleIRqZm4", "wvKpEYswXO0"], "start_seconds": ["80", "150"], "properties": ["person, talk, brief", "plastic, tap, speak"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a person talking?", "label": 0}, {"captions": ["a clock ticktocks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["v-g-j2uTByM", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["ticktocks, clock, ticktocks", "wind, blow, vehicle"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", null], "captions_pred_audio": ["a clock is ticking loudly", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a clock?", "label": 1}, {"captions": ["someone whistles a song", "a duck quacks continuously"], "sample_ids": ["sIXTftIuUgw", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["someone, song, whistle", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person whistling a song", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a toilet flushes and a female speaks"], "sample_ids": ["vzceMbklWc", "yaln9y8I7ms"], "start_seconds": ["180", "230"], "properties": ["water, faucet, sink", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["water is running and a man is speaking", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yaln9y8I7ms", "su6FAOcOA8c"], "start_seconds": ["230", "4"], "properties": ["female, flushes, toilet", "engine, idle, woman"], "captions_pred_video": ["footage is blurry and out of focus", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking while a toilet flushes?", "label": 0}, {"captions": ["an airplane accelerates briefly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zjTG0gaGCUI", "yajyRTUQk3U"], "start_seconds": ["80", "400"], "properties": ["accelerates, airplane, briefly", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a woman is speaking while food is frying in the background"], "question": "which object is fried", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a motorcycle engine is idling"], "sample_ids": ["x9JovgqUcs", "vZAqdHZ81yA"], "start_seconds": ["500", "180"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "engine, motorcycle, idling"], "captions_pred_video": [null, "a motorcycle is parked on the side of the road with its rear end facing the viewer"], "captions_pred_audio": ["a man speaks and types on a keyboard", "an engine is idling loudly"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a telephone rings followed by a woman talking"], "sample_ids": ["vJvryTwuAV8", "tGcFnX0GHI"], "start_seconds": ["16", "0"], "properties": ["audience, cheer, man", "ring, talk, woman"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", null], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wIvYjuR3nrg", "zl9Dqx-j7q4"], "start_seconds": ["9", "6"], "properties": ["birds, pigeons, vocalize", "engine, laugh, loud"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and cooing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xfudFO976zE", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["animal, bleats, cry", "two men, woman, birds"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "an infant crying as a woman laughs"], "sample_ids": ["wRV8yMk886E", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["liquid, spray, nozzle", "a, laugh, infant"], "captions_pred_video": ["two cars are parked in a parking lot at night", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["wind blows strongly", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["w8uLijTqtlU", "vXlk0lIQBFo"], "start_seconds": ["70", "470"], "properties": ["wind, blows, strongly", "wind, speak, vocalize"], "captions_pred_video": ["footage is blurry and shaky", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["the wind is blowing strongly", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a young woman speaks over spraying and another person yells"], "sample_ids": ["shmR4OZtzqA", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["man, engine, idle", "person, spray, yell"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man speaks while a motor runs", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a person screams glaringly", "dishes cling together then a man begins to speak"], "sample_ids": ["xC8kbrKJmco", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["glaringly, screams, person", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a goat is bleating ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["su6FAOcOA8c", "uYT5gxnyMWM"], "start_seconds": ["4", "50"], "properties": ["engine, idle, woman", "female, spraying, scream"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["a vehicle engine runs and wind blows before women yell", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["w5W5Kqtc8E", "vfYTJq7nU"], "start_seconds": ["100", "130"], "properties": ["wind, blow, vehicle", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a baby cries and a woman moans", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["smDKStoHBJo", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["a, cry, woman", "airplane, boy, fly"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a telephone rings followed by a woman talking"], "sample_ids": ["sDSppXIlJrs", "tGcFnX0GHI"], "start_seconds": ["27", "0"], "properties": ["microphone, water, wind", "ring, talk, woman"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", null], "captions_pred_audio": ["the wind is blowing and water is splashing", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a recording", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "an aircraft engine runs as people speak"], "sample_ids": ["wqADXCzngMw", "wTjoRj1se3U"], "start_seconds": ["340", "390"], "properties": ["engine, idle, man", "engine, run, people"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a jet engine is running and people are talking"], "question": "which entity has a man talking to it?", "label": 0}, {"captions": ["water pouring and bubbling", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uyRfq-jKPpo", "vfYTJq7nU"], "start_seconds": ["50", "130"], "properties": ["water, bubbles, pouring", "rustling, ducks, quack"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", null], "captions_pred_audio": ["water is running from a faucet", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["zF8yoL0rkbI", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["engine, run, someone", "cling, speak, dishes"], "captions_pred_video": ["footage of the traffic on the street at night", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "children cheer as a man speaks then an audience screams"], "sample_ids": ["w1mlz3Pe4fU", "vJvryTwuAV8"], "start_seconds": ["300", "16"], "properties": ["vocalize, chirp, continuously", "audience, cheer, man"], "captions_pred_video": ["of a bird in a cage", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is a group of people", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "running water in a faucet with some clinks"], "sample_ids": ["vqZuVbG6-HI", "zNRChLjqcU"], "start_seconds": ["130", "220"], "properties": ["background, male, female", "water, faucet, run"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "water is running from a faucet into a sink"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a car is passing by", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sK4u5T8hW78", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, car, pass", "three men, wind, flow"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more moving parts", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vSeGhaZt-aI", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["water, sink, talk", "loud, multiple, distance"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a door opens and closes", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vBHyYJ8pL0", "vYkA3cfXp5Q"], "start_seconds": ["2", "30"], "properties": ["open, close, door", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "an engine is idling"], "question": "which entity is a moving object", "label": 1}, {"captions": ["someone snores nearby", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["spJCm8tD9Zo", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["someone snores, nearby, someone", "airplane, boy, fly"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person is snoring loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "water flows as men speak and yell"], "sample_ids": ["y2bVZ7rz-5M", "vJ7JPEFhyLA"], "start_seconds": ["280", "16"], "properties": ["engine, horn, siren", "water, flow, men"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["su6FAOcOA8c", "yLy-WycbVVE"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "background, people, talk"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a door slams shut and an object moves on a hard surface", "a man speaks in the background while a slow tick repeats"], "sample_ids": ["zkKdxzNC97Y", "vZAw4apG0Es"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "background, tick, repeat"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a door is opened and closed", "a clock is ticking and people are talking"], "question": "which entity is more calm", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a man speaks as a car is passing by"], "sample_ids": ["yPUYU6t3rwo", "sK4u5T8hW78"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "a, car, pass"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["insects buzz and a man speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tDlfY3nmx1A", "ukg5L09Wpvo"], "start_seconds": ["160", "150"], "properties": ["applause, laugh, man", "clickety-clack, train, whistle"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "dishes cling together then a man begins to speak"], "sample_ids": ["uEU-Hg5MTN8", "sQGXqGcwOTc"], "start_seconds": ["27", "3"], "properties": ["animal, grunts, snorts", "cling, speak, dishes"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman speaking and laughing and an animal grunts and snorts?", "label": 0}, {"captions": ["a person sniffs and sneezes", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["uRlbY6aoBU", "y8WEcpOlT3I"], "start_seconds": ["0", "40"], "properties": ["sneezes, person, sniffs", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be a person", "label": 0}, {"captions": ["a vehicle engine accelerating then running on idle", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vYkA3cfXp5Q", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["engine, accelerate, idle", "a woman, laughs, animal"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["u7C-AEBQM", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["ticks, rhythmic, quiet", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a ticktock of a clock", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "water flows as men speak and yell"], "sample_ids": ["vs65y4qmyBE", "vJ7JPEFhyLA"], "start_seconds": ["340", "16"], "properties": ["engine, run, man", "water, flow, men"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["children speak as a female ask them questions", "water is sprayed across a hard surface"], "sample_ids": ["wEBlkGWVWwE", "sQwlkXjQabo"], "start_seconds": ["260", "10"], "properties": ["female, speak, questions", "water, spray, surface"], "captions_pred_video": ["shows a person writing on the whiteboard", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["someone is burping continuously", "a car speeding up in the distance"], "sample_ids": ["y636gklDioE", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["burps, burps, burps", "distance, car, speed"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["several insects fly while two men talk", "some tunes played by whistling"], "sample_ids": ["s-T9OVOiMLo", "u6BnG6YZqJ4"], "start_seconds": ["330", "0"], "properties": ["several, fly, men", "tune, play, whistling"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a car accelerates and wind blows"], "sample_ids": ["tDVADusiIoc", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["man, radio, blows", "accelerates, wind, blows"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vfYTJq7nU", "tiDFTC-5vU"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking as others laugh?", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "paper folding and crinkling"], "sample_ids": ["tK4VlLsNxak", "zPpG3RD8lSs"], "start_seconds": ["120", "20"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "paper, fold, crinkle"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["bees buzz and wind blows", "a machine engine runs and a man speaks"], "sample_ids": ["tMJne1a4AFI", "vs65y4qmyBE"], "start_seconds": ["0", "340"], "properties": ["bees buzz, wind blows, bees", "engine, run, man"], "captions_pred_video": ["a swarm of bees on the ground", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a swarm of bees buzzing around", "a heavy engine is running and men are speaking "], "question": "which entity is a machine?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xjhAnI2q6hM", "wDVMhEdTiVw"], "start_seconds": ["6", "30"], "properties": ["engine revs, vehicle, people", "gun, shoot, water"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun?", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "some tunes played by whistling"], "sample_ids": ["zuua6-5goWw", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["birds, chirp, quiet, man, speaks", "tune, play, whistling"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uEU-Hg5MTN8", "sSMl2vc3ek"], "start_seconds": ["27", "20"], "properties": ["animal, grunts, snorts", "loud, multiple, distance"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "people cheer as a vehicle engine revs"], "sample_ids": ["v7jJS8aAyA", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["wind, blows, loudly", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["tDlysoZiA1I", "vlS6YMeWAPo"], "start_seconds": ["0", "40"], "properties": ["animal, grunt, chirp", "sheep, baa, birds"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["a kid speaks followed by music playing", "water splashes as an animal walks through"], "sample_ids": ["tQWGZLItBXk", "w1ir-sZ3Im8"], "start_seconds": ["170", "90"], "properties": ["music, kid, speak", "animal, water, splashes"], "captions_pred_video": ["worms revolution screenshots", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sQGXqGcwOTc", "wqZ135Ssz0"], "start_seconds": ["3", "60"], "properties": ["audio, kid, giggles", "two men, woman, birds"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "a woman speaks as she rubs two objects together"], "sample_ids": ["tdWhHV3X25Q", "vzxHnu-SFEw"], "start_seconds": ["60", "80"], "properties": ["applause, audience, yells", "two objects, woman, speak"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["water splashes and a door squeaks", "several insects fly while two men talk"], "sample_ids": ["sdXV-ylviw", "s-T9OVOiMLo"], "start_seconds": ["190", "330"], "properties": ["sound, splash, door", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "an infant crying frantically"], "sample_ids": ["x9JovgqUcs", "zwOBqeFTgiU"], "start_seconds": ["500", "30"], "properties": ["a, man, speaks, keyboard", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["ziUT9IFTkjg", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["background, birds, rustling", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a man speaks while water drains", "a child speaks in closed space"], "sample_ids": ["vSeGhaZt-aI", "yW6FWLSLkx4"], "start_seconds": ["50", "40"], "properties": ["water, drain, man", "child, space, speak"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a stream of water runs briefly", "a vehicle engine accelerating then running on idle"], "sample_ids": ["x-PeY8Yb8M4", "vYkA3cfXp5Q"], "start_seconds": ["300", "30"], "properties": ["stream, water, run", "engine, accelerate, idle"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a car is driving on a wet road ", "an engine is idling"], "question": "which entity is a source of water", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["yaln9y8I7ms", "rqu8iB22IY"], "start_seconds": ["230", "5"], "properties": ["female, flushes, toilet", "sound, repeats, laugh"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a dog barks and a man speaks while music plays "], "question": "which entity has a female speaking?", "label": 0}, {"captions": ["a telephone rings and a bird vocalizes", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["skd2PphS6oI", "y2ZBGpgbhHM"], "start_seconds": ["190", "30"], "properties": ["ring, bird, vocalize", "birds, tweet, pant"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", null], "captions_pred_audio": ["a telephone bell rings repeatedly ", "birds chirping and a dog panting"], "question": "which entity has more birds", "label": 1}, {"captions": ["an insect buzzes around continuously", "a propeller rotates loudly and intensely"], "sample_ids": ["v25l1jef3JY", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["buzzes, continuously, insect", "loud, intense, propeller"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a stream of water runs briefly"], "sample_ids": ["w5W5Kqtc8E", "x-PeY8Yb8M4"], "start_seconds": ["100", "300"], "properties": ["wind, engine, scream", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a vehicle engine revs and tires squeal"], "sample_ids": ["zl9Dqx-j7q4", "yDoT73BWsdA"], "start_seconds": ["6", "10"], "properties": ["motors rev, laugh, loudly", "engine revs, tires squeal, vehicle"], "captions_pred_video": ["footage of a man driving a car in the dark", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a jet engine roars ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vJvryTwuAV8", "wz7N8YRy74I"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "rooster, crow, background, men"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "someone is typing on a computer keyboard"], "sample_ids": ["xNMovAf3o50", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["rain, thunder, music", "keyboard, type, computer"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "how to make money on youtube in spanish"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a person is typing on a keyboard"], "question": "which entity is a person", "label": 1}, {"captions": ["a person snoring", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["t8tv5YRMJUg", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["a person, snore, loud", "female, spraying, scream"], "captions_pred_video": ["of a man getting his face licked by another man", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a woman is speaking and a baby is crying"], "question": "which entity is louder", "label": 1}, {"captions": ["an engine runs loudly", "an airplane engine runs"], "sample_ids": ["vqZuVbG6-HI", "yVPZ2MNWpms"], "start_seconds": ["130", "0"], "properties": ["loud, engine, run", "engine, airplane, runs"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a car is driving by on the road "], "question": "which entity is running", "label": 1}, {"captions": ["someone snores nearby", "a man speaks as a car is passing by"], "sample_ids": ["spJCm8tD9Zo", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a, car, pass"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "water flows as men speak and yell"], "sample_ids": ["xNMovAf3o50", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["rain, thunder, music", "water, flow, men"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "people speak as gunfire rings out"], "sample_ids": ["vzceMbklWc", "wqTCwqVRDlk"], "start_seconds": ["180", "80"], "properties": ["water, faucet, sink", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "vehicles pass by on a roadway"], "sample_ids": ["sapQIQUhFc", "tgbONvsP47Y"], "start_seconds": ["280", "0"], "properties": ["water, stream, trickles", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a infant makes noise and is excited", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wIJK3-5y0kA", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["noise, excited, infant", "engine, accelerate, idle"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a baby cries and a woman speaks", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zY3icUyMdh8", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["dog, bark, engine", "People, motor, brakes"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "a telephone rings followed by a woman talking"], "sample_ids": ["x6ijhqRY38s", "tGcFnX0GHI"], "start_seconds": ["250", "0"], "properties": ["something metal, glass, hit", "ring, talk, woman"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a woman speaks with water running", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wTideSjRFS0", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["water, running, woman", "music, gunfire, explosion"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a train horn blows as it passes by"], "sample_ids": ["zofjfKhqLk8", "zVacuqSb4LI"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "horn, blows, train"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "water pouring and bubbling"], "sample_ids": ["vSeGhaZt-aI", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["water, bubbles, run", "water, bubbles, pouring"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "water is running from a faucet"], "question": "which entity has more water", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a toilet flushes and water drains"], "sample_ids": ["t8CV69hcvF0", "sfAvvZwdLCY"], "start_seconds": ["210", "20"], "properties": ["person, sneeze, follow", "water drains, flushes, water"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman sneezes and speaks", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a infant makes noise and is excited", "birds vocalize and chirp continuously"], "sample_ids": ["wIJK3-5y0kA", "w1mlz3Pe4fU"], "start_seconds": ["30", "300"], "properties": ["noise, excited, infant", "vocalize, chirp, continuously"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of a bird in a cage"], "captions_pred_audio": ["a baby cries and a woman speaks", "birds are chirping and singing"], "question": "which entity is more vocal", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a infant makes noise and is excited"], "sample_ids": ["voJh2gJxXhA", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["music, frog, croak", "noise, excited, infant"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["vehicles pass by on a roadway", "people speak as gunfire rings out"], "sample_ids": ["tgbONvsP47Y", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["pass, vehicle, roadway", "gunfire, ring, speak"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car is driving on the road ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["a woman sneezes then speaks", "a man speaks in the background while a slow tick repeats"], "sample_ids": ["x4dZyf9Gbj0", "vZAw4apG0Es"], "start_seconds": ["130", "30"], "properties": ["sneezes, speaks, woman", "background, tick, repeat"], "captions_pred_video": ["footage is blurry and out of focus", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a woman sneezes and speaks", "a clock is ticking and people are talking"], "question": "which entity is a man speaking in the background?", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["w34HjHr6gAY", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "a woman, a television program, a bird"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a car speeding up in the distance"], "sample_ids": ["xC8kbrKJmco", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["background, goat, scream", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "small dogs yip and bark sharply"], "sample_ids": ["wRBHTgrbiwg", "v-wcQf4BDY0"], "start_seconds": ["50", "120"], "properties": ["bird, owl, speak", "bark, yip, sharply"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "pigeons vocalize and birds chirp"], "sample_ids": ["xV7Mg1QucSc", "uiS58TNyUiw"], "start_seconds": ["14", "430"], "properties": ["alarm, ticktocks, laughs", "vocalize, bird, chirp"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "of the pigeon in the cage"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a vehicle engine accelerating then running on idle"], "sample_ids": ["y8dSeubCNI", "vYkA3cfXp5Q"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["an engine revving and people talking in the background", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "some tunes played by whistling"], "sample_ids": ["uEU-Hg5MTN8", "u6BnG6YZqJ4"], "start_seconds": ["27", "0"], "properties": ["animal, grunts, snorts", "tune, play, whistling"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a toilet flushes and water drains", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sfAvvZwdLCY", "y8WEcpOlT3I"], "start_seconds": ["20", "40"], "properties": ["water drains, flushes, water", "harsh, wind, blows"], "captions_pred_video": ["footage of the toilet in the bathroom", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with wind noise in the background "], "question": "which entity is a source of water", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "people cheer as a vehicle engine revs"], "sample_ids": ["vddP56-ogds", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["liquid, laughs, man", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["birds tweet and squawk", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["w1mlz3Pe4fU", "zl9Dqx-j7q4"], "start_seconds": ["300", "6"], "properties": ["squawk, tweet, scream", "engine, laugh, loud"], "captions_pred_video": ["of a bird in a cage", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and singing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["zofjfKhqLk8", "uWAAAL4CIoc"], "start_seconds": ["10", "0"], "properties": ["background, metal, clank", "a woman, chirps, animal"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a baby laugh at a sputter", "water flows and trickles"], "sample_ids": ["sLUnaPT5gM8", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["laugh, sputter, baby", "water, flow, trickle"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["siJFXfGWgDk", "uZesmtKZGSw"], "start_seconds": ["50", "250"], "properties": ["a, bird, vehicle", "men, talk, cars"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sWZzXuWYY", "uEU-Hg5MTN8"], "start_seconds": ["420", "27"], "properties": ["male, clanks, thumps", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["wTideSjRFS0", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["food, sizzle, woman", "two men, woman, birds"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yeFvk9x0wWI", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["clack, bird, chirp", "rooster, crow, background, men"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["people speak as gunfire rings out", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wqTCwqVRDlk", "y8WEcpOlT3I"], "start_seconds": ["80", "40"], "properties": ["gunfire, ring, speak", "harsh, wind, blows"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "music plays and animals vocalize as a cartoon character makes sounds"], "sample_ids": ["xl2PIWyXaM", "weDbePuc-Xc"], "start_seconds": ["160", "40"], "properties": ["chirp, man, younger person", "cartoon character, music, vocalize"], "captions_pred_video": [null, "a cartoon frog and a butterfly are sitting on the ground next to each other"], "captions_pred_audio": ["birds are chirping and people are talking", "a man is speaking and birds are chirping with a frog croaking in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sG7TyPnFDR0", "sLUnaPT5gM8"], "start_seconds": ["180", "0"], "properties": ["beeps, machine, smoke alarm", "loud, laughter, intermittent"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a child babbles as a woman speaks", "a man speaks as a machine runs"], "sample_ids": ["wEBlkGWVWwE", "vD6lYD1l0BY"], "start_seconds": ["260", "330"], "properties": ["a, babble, woman", "a, machine, run"], "captions_pred_video": ["shows a person writing on the whiteboard", "game controller being held in the hands of the person"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking and dishes are being washed "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["zALy31PjDl0", "wnpJndXuxLc"], "start_seconds": ["21", "50"], "properties": ["a man, a vehicle, a horn", "blows, vehicle, train"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity has a train blowing a horn?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a man speaks as a motor runs in the background"], "sample_ids": ["zofjfKhqLk8", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "background, motor, run"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "pigeons vocalize and birds chirp"], "sample_ids": ["wvKpEYswXO0", "uiS58TNyUiw"], "start_seconds": ["150", "430"], "properties": ["sound, water, running", "vocalize, bird, chirp"], "captions_pred_video": ["of the person preparing food in the kitchen", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uZesmtKZGSw", "su6FAOcOA8c"], "start_seconds": ["250", "4"], "properties": ["car, track, man", "engine, idle, woman"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a door slams shut and an object moves on a hard surface", "a child speaks in closed space"], "sample_ids": ["zkKdxzNC97Y", "yW6FWLSLkx4"], "start_seconds": ["27", "40"], "properties": ["hard, surface, door", "child, space, speak"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ugHJF0hfYkg", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["engine, running, continuously", "female, spraying, scream"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a dog barks and whimpers"], "sample_ids": ["xzKKf9bKNUo", "sShpyu2l4YQ"], "start_seconds": ["10", "0"], "properties": ["background, noise, snoring", "barks, whimpers, dog"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "the puppies are playing with a toy"], "captions_pred_audio": ["a person snoring loudly", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["rwtmaKiCcQU", "uWPRNLnpy7Y"], "start_seconds": ["30", "10"], "properties": ["nozzle, depressed, spray can", "accelerate, laugh, vehicle"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "is taken from a car driving down the street"], "captions_pred_audio": ["spraying and people speaking", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["some men converse over an engine running", "paper is crumpling consistently"], "sample_ids": ["sCiy7QS1U", "v5cSxLaHADY"], "start_seconds": ["300", "0"], "properties": ["men, converse, engine", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["shmR4OZtzqA", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["man, engine, idle", "airplane, boy, fly"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man speaks while a motor runs", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a toilet flushes and a female speaks"], "sample_ids": ["yeFvk9x0wWI", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["clack, bird, chirp", "female, flushes, toilet"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage is blurry and out of focus"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a toilet flushes and a man speaks"], "question": "which entity is accompanied by a female speaking?", "label": 1}, {"captions": ["a man talks while vehicles pass by", "an airplane engine runs"], "sample_ids": ["sK4u5T8hW78", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["a, man, talk", "engine, airplane, runs"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "pigeons vocalize and birds chirp"], "sample_ids": ["sxYkFKFIZD0", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["screech, man, door", "vocalize, bird, chirp"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["water splashes as an animal walks through", "an infant crying as a woman laughs"], "sample_ids": ["w1ir-sZ3Im8", "xhmRY9yhC7c"], "start_seconds": ["90", "20"], "properties": ["animal, water, splashes", "a, laugh, infant"], "captions_pred_video": ["footage of a group of people riding horses through a river", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a vehicle engine revs and tires squeal"], "sample_ids": ["xBxDz0CFVn0", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["stream, water, flow", "engine revs, tires squeal, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a child speaks in closed space"], "sample_ids": ["zofjfKhqLk8", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["background, metal, clank", "child, space, speak"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "an electric engine works nearby followed by a child talking"], "sample_ids": ["wz7N8YRy74I", "xSKJGCItUWE"], "start_seconds": ["30", "10"], "properties": ["rooster, crow, background, people", "engine, work, child"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a high pitched engine is running and a child speaks"], "question": "which entity has a child talking?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a man speaks as a car is passing by"], "sample_ids": ["sQwlkXjQabo", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "a, car, pass"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["some men converse over an engine running", "an emergency vehicle engine runs then a horn blows and siren sounds"], "sample_ids": ["sCiy7QS1U", "y2bVZ7rz-5M"], "start_seconds": ["300", "280"], "properties": ["men, converse, engine", "engine, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an infant crying frantically", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zwOBqeFTgiU", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["cry, infant, frantically", "two men, woman, birds"], "captions_pred_video": ["of the baby crying in the car seat", null], "captions_pred_audio": ["a baby cries loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human", "label": 1}, {"captions": ["goats bleat and people speak", "several insects fly while two men talk"], "sample_ids": ["z5iUE5h0EPs", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["goats bleat, people speak, language", "several, fly, men"], "captions_pred_video": ["of the goat in the barn", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a goat bleats and a man speaks", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["vehicles pass by on a roadway", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tgbONvsP47Y", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["pass, vehicle, roadway", "rustling, ducks, quack"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water drains", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sfAvvZwdLCY", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["water drains, flushes, water", "a woman, something, fried"], "captions_pred_video": ["footage of the toilet in the bathroom", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a person talking?", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "wind blowing followed by a zoom"], "sample_ids": ["smDKStoHBJo", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["a, infant, speaking", "wind, blow, zoom"], "captions_pred_video": ["a man holding a crying baby in his arms", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a person is snoring while sleeping", "a stream of water runs briefly"], "sample_ids": ["vJrjSeP17yE", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["a person is sleeping, snoring, person", "stream, water, run"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a person is snoring while sleeping", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vJrjSeP17yE", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["a person is sleeping, snoring, person", "People, motor, brakes"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person?", "label": 0}, {"captions": ["continuous snoring", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["sLkeqCDJIyw", "zY3icUyMdh8"], "start_seconds": ["120", "20"], "properties": ["loud, snoring, noise", "dog, bark, engine"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a person is snoring loudly", "a car is driving and dogs are barking and squealing "], "question": "which entity is louder", "label": 1}, {"captions": ["a person speaks briefly", "an insect buzzes around continuously"], "sample_ids": ["zOZleIRqZm4", "v25l1jef3JY"], "start_seconds": ["80", "0"], "properties": ["person, talk, brief", "buzzes, continuously, insect"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a fly is buzzing around a microphone "], "question": "which entity is not a person?", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sZPuqDgX2V0", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["commentator, race, track", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "an infant crying as a woman laughs"], "sample_ids": ["w5W5Kqtc8E", "xhmRY9yhC7c"], "start_seconds": ["100", "20"], "properties": ["wind, blow, vehicle", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a motorcycle engine is idling", "dog barking and vehicle engine idling followed shortly by vehicle engine revving"], "sample_ids": ["vZAqdHZ81yA", "zY3icUyMdh8"], "start_seconds": ["180", "20"], "properties": ["engine, motorcycle, idling", "dog, bark, engine"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["an engine is idling loudly", "a car is driving and dogs are barking and squealing "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "pigeons vocalize and birds chirp"], "sample_ids": ["zkKdxzNC97Y", "uiS58TNyUiw"], "start_seconds": ["27", "430"], "properties": ["hard, surface, door", "vocalize, bird, chirp"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of the pigeon in the cage"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an airplane engine runs", "pigeons vocalize and birds chirp"], "sample_ids": ["yVPZ2MNWpms", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["engine, airplane, runs", "vocalize, bird, chirp"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of the pigeon in the cage"], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "water flows and trickles"], "sample_ids": ["xKB8O8LTs6s", "tB7hWb9gTuQ"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "water, flow, trickle"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a man speaks as a car is passing by"], "sample_ids": ["vcmWSmvti8", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man speaking as a car passes by?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["vimzuGQvdcU", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["a, man, yells", "background, birds, rustling"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak as gunfire rings out", "wind blowing followed by a zoom"], "sample_ids": ["wqTCwqVRDlk", "vr8ZXjEBhMQ"], "start_seconds": ["80", "150"], "properties": ["gunfire, ring, speak", "wind, blow, zoom"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and a gun is fired", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["a small engine spits as it runs", "two women and a man talk while a kid cries"], "sample_ids": ["sZvwOuuPGP0", "wyllXV6PjKo"], "start_seconds": ["50", "30"], "properties": ["spits, engine, runs", "a kid, talk, cry"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", null], "captions_pred_audio": ["a medium engine is running ", "a woman speaks and a baby cries"], "question": "which entity is a person", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wy1eKjR7KC0", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["people, talk, distance", "animal, grunts, chirps"], "captions_pred_video": ["two police officers riding motorcycles down the street", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking and a siren is going off", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a man speaks and is typing on a keyboard"], "sample_ids": ["ukg5L09Wpvo", "x9JovgqUcs"], "start_seconds": ["150", "500"], "properties": ["a train, a horn, a bell", "a, man, speaks, keyboard"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man speaks and types on a keyboard"], "question": "which entity is stationary", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "pigeons vocalize and birds chirp"], "sample_ids": ["w2JXXIAdUdg", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["snoring, distance, person", "vocalize, bird, chirp"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of the pigeon in the cage"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a man speaks followed by another man speaking outside"], "sample_ids": ["xjvTpk2Zpr8", "viuTg1M-dqg"], "start_seconds": ["70", "30"], "properties": ["wind, blows, vehicle", "two men, speak, follow"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single person speaking?", "label": 0}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "people applaud and hoot and chat quietly"], "sample_ids": ["y2ZBGpgbhHM", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["birds, tweet, pant", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "water flows and trickles"], "sample_ids": ["w6RTHR6AeAg", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["call, owl, screech", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["vddP56-ogds", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["water, flow, laugh", "a, chirps, bird"], "captions_pred_video": [null, "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and bees are buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "pigeons vocalize and birds chirp"], "sample_ids": ["w34HjHr6gAY", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["beeps, squawk, child speaking", "vocalize, bird, chirp"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of the pigeon in the cage"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a man speaks as a motor runs in the background"], "sample_ids": ["vimzuGQvdcU", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "background, motor, run"], "captions_pred_video": ["a group of people are rafting down a river", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["people clap and speak in the distance", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wwyfGO2J4", "xKB8O8LTs6s"], "start_seconds": ["90", "70"], "properties": ["clap, distance, speak", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "people applaud and hoot and chat quietly"], "sample_ids": ["tDlysoZiA1I", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["animal, grunt, multiple", "people, applaud, hoot"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["smDKStoHBJo", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["a, infant, speaking", "a train, a horn, a bell"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["zj2R0XoFr5k", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["airplane, fly, woman", "a woman, chirps, animal"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a dog is barking "], "question": "which entity is a bird?", "label": 1}, {"captions": ["a male speaks over some small clicks", "wind blows as people chatter quietly"], "sample_ids": ["uXxVebHsGZ8", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["male, clicks, speak", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a woman speaks happily and an animal chirps"], "sample_ids": ["wztCSUxOf8", "uWAAAL4CIoc"], "start_seconds": ["130", "0"], "properties": ["a crowd, yells, applauds", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vhJWZheqaE", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["water drains unevenly, toilet flushes, water drains", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a toilet is flushed", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vBslzh7saPw", "sSMl2vc3ek"], "start_seconds": ["90", "20"], "properties": ["engine, spools, takes", "loud, multiple, distance"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a child speaks in closed space"], "sample_ids": ["xZepNM9qcRA", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["background, motor, run", "child, space, speak"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a propeller rotates loudly and intensely"], "sample_ids": ["sYITalLZjj4", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["water, rushes, background, birds", "loud, intense, propeller"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["wind blows and birds chirp", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sjlVMgdGSK0", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["accelerates, vehicle, race car", "a, scream, girl"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "an airplane engine runs"], "sample_ids": ["weDbePuc-Xc", "yVPZ2MNWpms"], "start_seconds": ["40", "0"], "properties": ["cartoon character, music, vocalize", "engine, airplane, runs"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a horn honks and then loudly blares", "an infant crying frantically"], "sample_ids": ["wnpJndXuxLc", "zwOBqeFTgiU"], "start_seconds": ["50", "30"], "properties": ["horn, honk, loud", "cry, infant, frantically"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of the baby crying in the car seat"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a baby cries loudly"], "question": "which entity is louder", "label": 0}, {"captions": ["wind noise makes sound into a microphone", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["w8uLijTqtlU", "yajyRTUQk3U"], "start_seconds": ["70", "400"], "properties": ["wind, microphone, noise", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and shaky", "- a woman cooking in the kitchen"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zl9Dqx-j7q4", "vfYTJq7nU"], "start_seconds": ["6", "130"], "properties": ["motors rev, laugh, loudly", "rustling, ducks, quack"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "water flows as men speak and yell"], "sample_ids": ["slZLHwNbbt4", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["train, horn, sound", "water, flow, men"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a moving object", "label": 0}, {"captions": ["a clock ticks quietly and rhythmically", "some men converse over an engine running"], "sample_ids": ["u7C-AEBQM", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["ticks, rhythmic, quiet", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more active", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["uPDn2BFTHk", "uYT5gxnyMWM"], "start_seconds": ["140", "50"], "properties": ["lady, laugh, baby", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a baby?", "label": 0}, {"captions": ["a person is snoring while sleeping", "small dogs yip and bark sharply"], "sample_ids": ["vJrjSeP17yE", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["a person is sleeping, snoring, person", "bark, yip, sharply"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a person snoring loudly", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "several insects fly while two men talk"], "sample_ids": ["su6FAOcOA8c", "s-T9OVOiMLo"], "start_seconds": ["4", "330"], "properties": ["engine, run, woman", "several, fly, men"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has a woman making an announcement?", "label": 0}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sxYkFKFIZD0", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["screech, man, door", "rooster, crow, background, men"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a stream of water flows quickly", "children speak and play together"], "sample_ids": ["wbHTKEJZyhc", "yVVP8XvWJTo"], "start_seconds": ["20", "260"], "properties": ["stream, water, flow", "children, speak, play"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "children are speaking and breathing with background noise "], "question": "which entity is moving faster", "label": 0}, {"captions": ["an adult woman and an adult man speak", "a car accelerates and wind blows"], "sample_ids": ["zTLVJCo4WEE", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["two people, adult, speak", "accelerates, wind, blows"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a race car accelerates and revs its engine "], "question": "which is not a person", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yRx9txMcBl0", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["accelerates, tires, squeals", "clickety-clack, train, whistle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "some tunes played by whistling"], "sample_ids": ["sHbXC6na9hg", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["a person, saw, wood", "tune, play, whistling"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["an engine is idling and vibrating", "a person whistling a song"], "question": "which entity is not a person?", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xyL9F5VrjkE", "yDoT73BWsdA"], "start_seconds": ["20", "10"], "properties": ["wind, blows, vehicle", "engine, revs, vehicle"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving", "label": 1}, {"captions": ["food is frying then a woman speaks", "a machine beeps continuously"], "sample_ids": ["ukxt9I7eMMg", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["food, woman, speak", "beeps, machine, continuously"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a door opens and closes", "a clock ticktocks"], "sample_ids": ["vBHyYJ8pL0", "v-g-j2uTByM"], "start_seconds": ["2", "30"], "properties": ["open, close, door", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["dogs barking and whimpering", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tIY7qOV3rEM", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "rooster, crow, background, men"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xV7Mg1QucSc", "xKB8O8LTs6s"], "start_seconds": ["14", "70"], "properties": ["alarm, ticktocks, laughs", "music, gunfire, explosion"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a child yells and another yells", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vMDHu7Lxcgw", "wDVMhEdTiVw"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "gun, shoot, water"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["yRx9txMcBl0", "wDVMhEdTiVw"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "gun, shoot, water"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["an engine runs loudly", "a man speaks and is typing on a keyboard"], "sample_ids": ["vqZuVbG6-HI", "x9JovgqUcs"], "start_seconds": ["130", "500"], "properties": ["loud, engine, run", "a, man, speaks, keyboard"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man speaks and types on a keyboard"], "question": "which entity is quieter", "label": 1}, {"captions": ["a person is snoring while sleeping", "people speak and tapping occurs"], "sample_ids": ["vJrjSeP17yE", "tFCUUGdREgA"], "start_seconds": ["40", "70"], "properties": ["a person is sleeping, snoring, person", "people, tap, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a person riding a white horse in an indoor arena"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and walking with wind noise in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["a child babbles as a woman speaks", "a clock ticktocks"], "sample_ids": ["wEBlkGWVWwE", "v-g-j2uTByM"], "start_seconds": ["260", "30"], "properties": ["a, babble, woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows a person writing on the whiteboard", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["zsLxS-uLJTw", "vlJS7LN2XyM"], "start_seconds": ["20", "30"], "properties": ["horn, blast, train", "background, clocks, ticking"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a ticktock of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a woman speaks happily and an animal chirps"], "sample_ids": ["vVhthZ45k3Y", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["cat, purr, hiss", "a woman, chirps, animal"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be a bird", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "water is sprayed across a hard surface"], "sample_ids": ["smGI3C1NZc", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["water, drain, toilet", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a toilet is flushed", "spraying followed by silence"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yDoT73BWsdA", "uZesmtKZGSw"], "start_seconds": ["10", "250"], "properties": ["engine revs, tires squeal, vehicle", "men, talk, cars"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["a man speaks while water drains", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vSeGhaZt-aI", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["water, drain, man", "a, scream, girl"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a person sneezes followed by another person speaking"], "sample_ids": ["tOSWIURC-4", "t8CV69hcvF0"], "start_seconds": ["0", "210"], "properties": ["engine, work, nearby", "person, sneeze, follow"], "captions_pred_video": [null, "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a lawn mower is running ", "a woman sneezes and speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "some men converse over an engine running"], "sample_ids": ["uWAAAL4CIoc", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["a, dog, vocalize", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a door opens and closes"], "sample_ids": ["slZLHwNbbt4", "vBHyYJ8pL0"], "start_seconds": ["300", "2"], "properties": ["clap, distance, horn", "open, close, door"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is more likely to be a door", "label": 1}, {"captions": ["speaking following by laughing and clapping", "an airplane engine runs"], "sample_ids": ["u2f5NpsoHBg", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["person, laugh, clap", "engine, airplane, runs"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a car is driving by on the road "], "question": "which entity is not a person?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "an engine runs loudly"], "sample_ids": ["sQwlkXjQabo", "vqZuVbG6-HI"], "start_seconds": ["10", "130"], "properties": ["liquid, surface, spray", "loud, engine, run"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage is blurry because it's raining outside"], "captions_pred_audio": ["spraying followed by silence", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["people speak in a closed space", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sTpirNYo8vQ", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["people, space, speak", "a woman, something, fried"], "captions_pred_video": ["of a man taking a selfie on a bus", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vh30P49Po6s", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["loud, continuous, quacks", "a woman, something, fried"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "wind blowing followed by a zoom"], "sample_ids": ["sShpyu2l4YQ", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["growl, bark, yip", "wind, blow, zoom"], "captions_pred_video": ["the puppies are playing with a toy", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a dog is barking and growling", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["v-wcQf4BDY0", "xfaoyyzw2WU"], "start_seconds": ["120", "180"], "properties": ["bark, yip, sharply", "loud, jet engine, roar"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a dog barks and growls", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["v0x1odnXtP0", "vlS6YMeWAPo"], "start_seconds": ["210", "40"], "properties": ["keyboard, type, computer", "sheep, baa, birds"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a person is typing on a keyboard", "a goat bleats and birds chirp"], "question": "which entity is not a person?", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a infant makes noise and is excited"], "sample_ids": ["xjvTpk2Zpr8", "wIJK3-5y0kA"], "start_seconds": ["70", "30"], "properties": ["engine, run, wind", "noise, excited, infant"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "paper is crumpling consistently"], "sample_ids": ["skd2PphS6oI", "v5cSxLaHADY"], "start_seconds": ["190", "0"], "properties": ["ring, bird, vocalize", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaking with light rustling", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zOZleIRqZm4", "yDoT73BWsdA"], "start_seconds": ["80", "10"], "properties": ["light, rustling, man", "engine, revs, vehicle"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "an infant crying frantically"], "sample_ids": ["zkKdxzNC97Y", "zwOBqeFTgiU"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "cry, infant, frantically"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of the baby crying in the car seat"], "captions_pred_audio": ["a door is opened and closed", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "ducks quack as a man speaks and makes a duck sound"], "sample_ids": ["vVhthZ45k3Y", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["cat, purr, hiss", "ducks, quack, man"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a duck quacks and a woman speaks"], "question": "which entity is a man speaking to animals?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "pigeons vocalize and birds chirp"], "sample_ids": ["zY3icUyMdh8", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["dog, bark, engine", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of the pigeon in the cage"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "paper folding and crinkling"], "sample_ids": ["wztCSUxOf8", "zPpG3RD8lSs"], "start_seconds": ["130", "20"], "properties": ["a crowd, yells, applauds", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "the wind blows and a mouse clicks "], "question": "which is not a crowd", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a car accelerates and wind blows"], "sample_ids": ["xjvTpk2Zpr8", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["wind, blows, vehicle", "accelerates, wind, blows"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is more likely to be a car", "label": 1}, {"captions": ["a clock ticktocks briefly", "a car speeding up in the distance"], "sample_ids": ["u7C-AEBQM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, ticktocks briefly", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a clock ticktocks"], "sample_ids": ["wPz6QRAkEb4", "v-g-j2uTByM"], "start_seconds": ["60", "30"], "properties": ["chirps, tweets, song", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a bird in a cage on top of a pole", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a man speaks as crickets sing"], "sample_ids": ["w5W5Kqtc8E", "ryFDPxgDOGc"], "start_seconds": ["100", "570"], "properties": ["wind, engine, scream", "a, crickets, sing"], "captions_pred_video": [null, "a group of people dressed in camouflage and hunting gear in the dark"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with crickets chirping in the background"], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a horn rings out as a machine runs by"], "sample_ids": ["wSVhSdj0F0", "slZLHwNbbt4"], "start_seconds": ["10", "300"], "properties": ["horn honks, keys jingle, slam", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["an engine runs loudly", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vqZuVbG6-HI", "wDVMhEdTiVw"], "start_seconds": ["130", "30"], "properties": ["loud, engine, run", "gun, shoot, water"], "captions_pred_video": ["footage is blurry because it's raining outside", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yajyRTUQk3U", "vJ7JPEFhyLA"], "start_seconds": ["400", "16"], "properties": ["a woman, something, fried", "three men, wind, flow"], "captions_pred_video": ["- a woman cooking in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about cooking?", "label": 0}, {"captions": ["a clock ticks quietly and rhythmically", "a man speaks over intermittent keyboard taps"], "sample_ids": ["u7C-AEBQM", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["ticks, rhythmic, quiet", "audio, man, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a ticktock of a clock", "a man speaks and types on a computer keyboard "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a cat meows as a young woman speaks", "people speak as gunfire rings out"], "sample_ids": ["x5cuQjOdM3E", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["cat, meows, young woman", "gunfire, ring, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["plastic is tapped on while someone speaks", "music plays and animals vocalize as a cartoon character makes sounds"], "sample_ids": ["wvKpEYswXO0", "weDbePuc-Xc"], "start_seconds": ["150", "40"], "properties": ["plastic, tap, speak", "cartoon character, music, vocalize"], "captions_pred_video": ["of the person preparing food in the kitchen", "a cartoon frog and a butterfly are sitting on the ground next to each other"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and birds are chirping with a frog croaking in the background "], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["women speak and laugh as wind blows", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["un9VQlzgZM", "zFjIWfSD-4"], "start_seconds": ["5", "410"], "properties": ["wind, speak, laugh", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "some tunes played by whistling"], "sample_ids": ["sOa7g-44Dag", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["background, man, spray", "tune, play, whistling"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["a person snoring several times", "several insects fly while two men talk"], "sample_ids": ["spJCm8tD9Zo", "s-T9OVOiMLo"], "start_seconds": ["90", "330"], "properties": ["snore, person, several", "several, fly, men"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a person?", "label": 0}, {"captions": ["a clock alarm sounds and gears turn", "water splashes as an animal walks through"], "sample_ids": ["w2M4i1mklOA", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["alarm, gears, turn", "animal, water, splashes"], "captions_pred_video": ["footage of an antique clock", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a child speaks in closed space"], "sample_ids": ["su6FAOcOA8c", "yW6FWLSLkx4"], "start_seconds": ["4", "40"], "properties": ["engine, run, woman", "child, space, speak"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["someone is snoring while sleeping", "a helicopter engine runs continuously"], "sample_ids": ["ujMt0-D-x2k", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["snore, sleep, someone", "engine, running, continuously"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person is snoring loudly", "a helicopter is flying overhead "], "question": "which entity is not running continuously?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "small dogs yip and bark sharply"], "sample_ids": ["ugHJF0hfYkg", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["engine, running, continuously", "bark, yip, sharply"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a helicopter is flying overhead ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vbpKkWvfOu4", "vb1fPSDI4c"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "multiple, people, yell"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "people applaud and hoot and chat quietly"], "sample_ids": ["zsLxS-uLJTw", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["horn, blast, train", "people, applaud, hoot"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", null], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["zj2R0XoFr5k", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["airplane, fly, woman", "two objects, woman, speak"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is being rubbed together", "label": 0}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a clock ticktocks"], "sample_ids": ["s7knHCFW82w", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["continuous sneezing together with speech", "cats meow and then a person begins to talk while the cats continue to meow"], "sample_ids": ["x4dZyf9Gbj0", "x5cuQjOdM3E"], "start_seconds": ["130", "30"], "properties": ["continuous, sneeze, speech", "cat, talk, meow"], "captions_pred_video": ["footage is blurry and out of focus", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a woman sneezes and speaks", "a cat meows and a woman speaks"], "question": "which entity is a cat?", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "men speak and a nozzle sprays liquid"], "sample_ids": ["xM4joTqDVp4", "wRV8yMk886E"], "start_seconds": ["160", "0"], "properties": ["background, chirp, birds", "liquid, spray, nozzle"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man speaks followed by a loud burst"], "question": "which entity is more likely to be used in a science class", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zhx6hoYrHeI", "w5W5Kqtc8E"], "start_seconds": ["160", "100"], "properties": ["engine, sputter, rough", "wind, blow, vehicle"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "wind loudly blowing while people speak in the background followed by a horn blowing"], "sample_ids": ["sapQIQUhFc", "xjhAnI2q6hM"], "start_seconds": ["280", "6"], "properties": ["water, stream, trickles", "wind, blow, loudly"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["someone is burping continuously", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y636gklDioE", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["burps, burps, burps", "music, gunfire, explosion"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person burps loudly several times", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["zj2R0XoFr5k", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, overhead", "two men, speak, follow"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a male speaks and another male speaks", "water splashes and wind noise is made into a microphone"], "sample_ids": ["viuTg1M-dqg", "sDSppXIlJrs"], "start_seconds": ["30", "27"], "properties": ["two males, speaking, male", "microphone, water, wind"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a man is paddling a small wooden boat in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "the wind is blowing and water is splashing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a clock ticktocks briefly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["u7C-AEBQM", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks briefly", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a clock?", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "small dogs yip and bark sharply"], "sample_ids": ["vs65y4qmyBE", "v-wcQf4BDY0"], "start_seconds": ["340", "120"], "properties": ["wind, blows, strongly", "bark, yip, sharply"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone snores nearby", "birds chirp and objects are moved around"], "sample_ids": ["spJCm8tD9Zo", "yPUYU6t3rwo"], "start_seconds": ["90", "370"], "properties": ["someone snores, nearby, someone", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a person is snoring loudly", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a machine beeps continuously"], "sample_ids": ["smDKStoHBJo", "y682ml90jGw"], "start_seconds": ["0", "11"], "properties": ["a, talk, baby, cry", "beeps, machine, continuously"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["some clanking with distant murmuring", "birds chirp and objects are moved around"], "sample_ids": ["uMTTDZ2mb4", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["clanking, murmuring, distant", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a man speaks as water trickles down a stream"], "sample_ids": ["y2bVZ7rz-5M", "sapQIQUhFc"], "start_seconds": ["280", "280"], "properties": ["motor noise, horn, siren", "water, stream, trickles"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["v7jJS8aAyA", "tiDFTC-5vU"], "start_seconds": ["10", "30"], "properties": ["wind, blows, loudly", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "someone whistles a tune"], "sample_ids": ["uPDn2BFTHk", "sIXTftIuUgw"], "start_seconds": ["140", "90"], "properties": ["woman, laughs, speaks", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a person whistling a song"], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying while a woman speaks", "water is sprayed across a hard surface"], "sample_ids": ["yhQ2Lg-7qDY", "sQwlkXjQabo"], "start_seconds": ["130", "10"], "properties": ["food, woman, speak", "water, spray, surface"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a faucet is running and a man is speaking", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "small dogs yip and bark sharply"], "sample_ids": ["zF8yoL0rkbI", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["engine, run, someone", "bark, yip, sharply"], "captions_pred_video": ["footage of the traffic on the street at night", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["children cry and people talk", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xLwHe825Zs", "zj2R0XoFr5k"], "start_seconds": ["18", "50"], "properties": ["people talk, children cry, people talk", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a boy speaking?", "label": 1}, {"captions": ["a clock ticktocks", "vehicles pass by on a roadway"], "sample_ids": ["v-g-j2uTByM", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, ticktocks", "pass, vehicle, roadway"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a clock is ticking loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vW4x7S1VfQc", "tdWhHV3X25Q"], "start_seconds": ["150", "60"], "properties": ["clacking, oil, woman", "applause, audience, yells"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["s7knHCFW82w", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "male, duck, laugh"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", null], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "wind blows as people chatter quietly"], "sample_ids": ["y8dSeubCNI", "xBxDz0CFVn0"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["x6ijhqRY38s", "ukg5L09Wpvo"], "start_seconds": ["250", "150"], "properties": ["something metal, glass, hit", "clickety-clack, train, whistle"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "three men talk while wind blows and some liquid flows"], "sample_ids": ["s6DESzUTGjY", "vJ7JPEFhyLA"], "start_seconds": ["16", "16"], "properties": ["wind, laugh, woman", "three men, wind, flow"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a woman laughing", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yZmhM1HcsyE", "xfaoyyzw2WU"], "start_seconds": ["4", "180"], "properties": ["engine, roar, water", "loud, jet engine, roar"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a duck quacks several times", "birds chirp and objects are moved around"], "sample_ids": ["vh30P49Po6s", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["quacks, duck, several", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a duck is quacking loudly", "insects buzz and a man speaks"], "question": "which entity is a bird", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ylpYOorfH4o", "uYT5gxnyMWM"], "start_seconds": ["410", "50"], "properties": ["motor, run, steady", "female, spraying, scream"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["w2bYrCVLT60", "xjvTpk2Zpr8"], "start_seconds": ["120", "70"], "properties": ["ducks, speak, quack", "wind, blows, vehicle"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a jet engine roars and wind blows "], "question": "which entity is more active", "label": 1}, {"captions": ["leaves rustle while man speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zOZleIRqZm4", "vfYTJq7nU"], "start_seconds": ["80", "130"], "properties": ["leaves, rustle, speak", "rustling, ducks, quack"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a duck quacks and a woman speaks"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "paper is crumpling consistently"], "sample_ids": ["yPUYU6t3rwo", "v5cSxLaHADY"], "start_seconds": ["370", "0"], "properties": ["birds chirp, objects are moved around, birds", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["insects buzz and a man speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zTLVJCo4WEE", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["a, crickets, sing", "a woman, laughs, animal"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal snorting?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vimzuGQvdcU", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["a, man, yells", "clickety-clack, train, whistle"], "captions_pred_video": ["a group of people are rafting down a river", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a woman speaks as she rubs two objects together"], "sample_ids": ["v0x1odnXtP0", "vzxHnu-SFEw"], "start_seconds": ["210", "80"], "properties": ["keyboard, type, computer", "two objects, woman, speak"], "captions_pred_video": ["how to make money on youtube in spanish", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is being rubbed together", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["uRExseg-0XI", "sK4u5T8hW78"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "a, car, pass"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking as a car passes by?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "water pouring and bubbling"], "sample_ids": ["zk-xJGQU8-4", "uyRfq-jKPpo"], "start_seconds": ["130", "50"], "properties": ["food, man, woman", "water, bubbles, pouring"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uYT5gxnyMWM", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["person, spray, yell", "loud, multiple, distance"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "wind loudly blowing while people speak in the background followed by a horn blowing"], "sample_ids": ["sSMl2vc3ek", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["a person, laughs, snores", "wind, blow, loudly"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person snoring loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zgUgkpk78xU", "yDoT73BWsdA"], "start_seconds": ["70", "10"], "properties": ["clinking, humming, horn", "engine, revs, vehicle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sZPuqDgX2V0", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["engine, accelerate, intercom", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a stream of water runs briefly"], "sample_ids": ["uEU-Hg5MTN8", "x-PeY8Yb8M4"], "start_seconds": ["27", "300"], "properties": ["animal, grunts, snorts", "stream, water, run"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vJrjSeP17yE", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["a person is sleeping, snoring, person", "clickety-clack, train, whistle"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a person snoring loudly", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vdoxuJn9lTc", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "stream, water, flow"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage is blurry and out of focus"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a train horn blows as it passes by"], "sample_ids": ["zTLVJCo4WEE", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "horn, blows, train"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a few ducks quack and scamper and a man speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["w2bYrCVLT60", "ugHJF0hfYkg"], "start_seconds": ["120", "10"], "properties": ["ducks, speak, quack", "loud, intense, propeller"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "paper folding and crinkling"], "sample_ids": ["smDKStoHBJo", "zPpG3RD8lSs"], "start_seconds": ["0", "20"], "properties": ["a, infant, speaking", "paper, fold, crinkle"], "captions_pred_video": ["a man holding a crying baby in his arms", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a infant makes noise and is excited"], "sample_ids": ["w-4gHptFNuU", "wIJK3-5y0kA"], "start_seconds": ["21", "30"], "properties": ["engine revs, accelerates, bump", "noise, excited, infant"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sSMl2vc3ek", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["a person, laughs, snores", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person snoring loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["bees buzz and wind blows", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tMJne1a4AFI", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["bees buzz, wind blows, bees", "engine, accelerate, idle"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a swarm of bees buzzing around", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a large crowd cheers and applauds", "wind blows as people chatter quietly"], "sample_ids": ["rqfQRErjfk8", "xBxDz0CFVn0"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "wind, chatter, people"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage is blurry and out of focus"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "someone is typing on a computer keyboard"], "sample_ids": ["t97k0cejSQE", "v0x1odnXtP0"], "start_seconds": ["250", "210"], "properties": ["bird, chirp, insect", "keyboard, type, computer"], "captions_pred_video": ["a bee on a purple thistle flower", "how to make money on youtube in spanish"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["water flows as men speak and yell", "an infant crying as a woman laughs"], "sample_ids": ["vJ7JPEFhyLA", "xhmRY9yhC7c"], "start_seconds": ["16", "20"], "properties": ["water, flow, men", "a, laugh, infant"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["frogs croak and vocalize", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["yswmmRZFItk", "vlJS7LN2XyM"], "start_seconds": ["0", "30"], "properties": ["croak, vocalize, frog", "background, clocks, ticking"], "captions_pred_video": ["a close up of a frog in the water", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a frog is croaking", "a ticktock of a clock"], "question": "which entity is silent", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xvDdE3zNf8Y", "y8WEcpOlT3I"], "start_seconds": ["120", "40"], "properties": ["a, female, speaks", "harsh, wind, blows"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water splashes and a motorboat passes as people yell", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w5W5Kqtc8E", "wz7N8YRy74I"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zk-xJGQU8-4", "tiDFTC-5vU"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "male, duck, laugh"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has more people", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "some clanking with distant murmuring"], "sample_ids": ["vZAw4apG0Es", "uMTTDZ2mb4"], "start_seconds": ["30", "30"], "properties": ["people, clock, converse", "clanking, murmuring, distant"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["birds fly and flutter around", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["wGKgwOP3h30", "vzceMbklWc"], "start_seconds": ["30", "180"], "properties": ["fly, flutter, around", "water, faucet, sink"], "captions_pred_video": ["of the pigeons in the coop", null], "captions_pred_audio": ["pigeons coo and flap their wings", "water is running and a man is speaking"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a person screams glaringly", "a frog croaks as other frogs croak in the background"], "sample_ids": ["xC8kbrKJmco", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["glaringly, screams, person", "background, frog, croak"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a goat is bleating ", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "an engine runs loudly"], "sample_ids": ["wRBHTgrbiwg", "vqZuVbG6-HI"], "start_seconds": ["50", "130"], "properties": ["birds, chirp, cooing", "loud, engine, run"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage is blurry because it's raining outside"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a lawn mower is running and men are speaking "], "question": "which is quieter", "label": 1}, {"captions": ["an engine starts and increases in power", "an infant crying as a woman laughs"], "sample_ids": ["zjTG0gaGCUI", "xhmRY9yhC7c"], "start_seconds": ["80", "20"], "properties": ["power, increase, engine", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["an infant crying as a woman laughs", "people speak softly as food sizzles"], "sample_ids": ["xhmRY9yhC7c", "yhQ2Lg-7qDY"], "start_seconds": ["20", "130"], "properties": ["a, laugh, infant", "food, sizzle, speak"], "captions_pred_video": ["of a baby crying in a baby bouncer", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a baby cries and a woman speaks", "a faucet is running and a man is speaking"], "question": "which entity is about a woman laughing?", "label": 0}, {"captions": ["a door opens and birds chirp", "water splashes as an animal walks through"], "sample_ids": ["yeFvk9x0wWI", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["door, open, birds", "animal, water, splashes"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "paper folding and crinkling"], "sample_ids": ["uEU-Hg5MTN8", "zPpG3RD8lSs"], "start_seconds": ["27", "20"], "properties": ["animal, grunts, snorts", "paper, fold, crinkle"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "the wind blows and a mouse clicks "], "question": "which entity is more likely to be a toy", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wqN6IIHw3po", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["rain, surface, fall", "loud, jet engine, roar"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and water is splashing", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vlS6YMeWAPo", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["noise, bleat, call", "multiple, people, yell"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a child speaks in closed space"], "sample_ids": ["wnpJndXuxLc", "yW6FWLSLkx4"], "start_seconds": ["50", "40"], "properties": ["blows, vehicle, train", "child, space, speak"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a horse runs while two women talk"], "sample_ids": ["zkKdxzNC97Y", "sdvI1mHAsc"], "start_seconds": ["27", "20"], "properties": ["hard, surface, door", "two women, horse, run"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "horses clip-clop and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vKrYfzleLB8", "w5W5Kqtc8E"], "start_seconds": ["110", "100"], "properties": ["a, ring, gunshots", "wind, blow, vehicle"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", null], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a horn rings out as a machine runs by"], "sample_ids": ["xjhAnI2q6hM", "slZLHwNbbt4"], "start_seconds": ["6", "300"], "properties": ["wind, blow, loudly", "a, horn, run"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a man speaks as a car is passing by"], "sample_ids": ["vbZ-0lGPneg", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a woman, a television program, a bird", "a, car, pass"], "captions_pred_video": ["of a man holding a baby duck in his hands", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a bird in it?", "label": 0}, {"captions": ["electronic beeps occur in a short series", "a woman speaks and other women and a man talk with her"], "sample_ids": ["y682ml90jGw", "vbpKkWvfOu4"], "start_seconds": ["11", "560"], "properties": ["beeps, series, electronic", "a, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and a man is speaking"], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vYkA3cfXp5Q", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["speed, idle, accelerate", "a woman, laughs, animal"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a child speaks in closed space", "birds chirp and objects are moved around"], "sample_ids": ["yW6FWLSLkx4", "yPUYU6t3rwo"], "start_seconds": ["40", "370"], "properties": ["child, space, speak", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs", "a woman speaks as she rubs two objects together"], "sample_ids": ["yLCORCnd35Q", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["engine, aircraft, runs", "two objects, woman, speak"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is moving", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "a toilet flushes and a female speaks"], "sample_ids": ["xKB8O8LTs6s", "yaln9y8I7ms"], "start_seconds": ["70", "230"], "properties": ["music, gunshots, explosion", "female, flushes, toilet"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage is blurry and out of focus"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a toilet flushes and a man speaks"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "an insect buzzes around continuously"], "sample_ids": ["u--KhUW8l1Y", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["engine, sound, horn", "buzzes, continuously, insect"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a fly is buzzing around a microphone "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zofjfKhqLk8", "wDVMhEdTiVw"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "gun, shoot, water"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a helicopter engine runs continuously", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["ugHJF0hfYkg", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["engine, running, continuously", "People, motor, brakes"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running continuously", "label": 0}, {"captions": ["a door slams shut and an object moves on a hard surface", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zkKdxzNC97Y", "wz7N8YRy74I"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "rooster, crow, background, men"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a child speaks", "a stream of water runs briefly"], "sample_ids": ["yW6FWLSLkx4", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["a, child, speaks", "stream, water, run"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["water running down a sink while a man is talking", "wind blows as people chatter quietly"], "sample_ids": ["vSeGhaZt-aI", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "wind, chatter, people"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wtDqrBygTcU", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["man, engine, run", "applause, audience, yells"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uiItxDsDMFI", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["sound, distance, leaves", "a woman, a television program, a bird"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a saw is being used with background noise ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing far away?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a vehicle engine runs while a siren and horn sound"], "sample_ids": ["xvDdE3zNf8Y", "u--KhUW8l1Y"], "start_seconds": ["120", "0"], "properties": ["a, female, speaks", "engine, sound, horn"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a firefighter spraying water from a fire hydrant at night"], "captions_pred_audio": ["a woman speaks and crumples paper", "a fire truck siren blares and a horn blows "], "question": "which entity is louder", "label": 1}, {"captions": ["water runs into a sink while men speak", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vzceMbklWc", "wDVMhEdTiVw"], "start_seconds": ["180", "30"], "properties": ["water, sink, run", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["water is running and a man is speaking", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is about water running into a sink?", "label": 0}, {"captions": ["a motor idles, accelerates, then slows down.", "several insects fly while two men talk"], "sample_ids": ["vYkA3cfXp5Q", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["speed, idle, accelerate", "several, fly, men"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["an engine is idling", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a living thing", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a train horn blows as it passes by"], "sample_ids": ["xSKJGCItUWE", "zVacuqSb4LI"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "horn, blows, train"], "captions_pred_video": ["footage of the helicopter flying in the room", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a woman speaks happily and an animal chirps"], "sample_ids": ["sZPuqDgX2V0", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["engine, accelerate, intercom", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a stream of water runs briefly"], "sample_ids": ["rqfQRErjfk8", "x-PeY8Yb8M4"], "start_seconds": ["170", "300"], "properties": ["crowd, cheers, applauds", "stream, water, run"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tPJvjq9QePY", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["animal, bleat, moo", "water, radio, man"], "captions_pred_video": ["a dog and a sheep in a barn", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["v7jJS8aAyA", "wz7N8YRy74I"], "start_seconds": ["10", "30"], "properties": ["wind, blows, loudly", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["a cat meows and children speak", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["x5cuQjOdM3E", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["cat, speak, children", "applause, audience, yells"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "a vehicle engine accelerating then running on idle"], "sample_ids": ["y8dSeubCNI", "vYkA3cfXp5Q"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["an engine revving and people talking in the background", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "paper is crumpling consistently"], "sample_ids": ["zgUgkpk78xU", "v5cSxLaHADY"], "start_seconds": ["70", "0"], "properties": ["clinking, humming, horn", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "winds blows roughly as a vehicle races past"], "sample_ids": ["tMJne1a4AFI", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["wind, buzz, rustling", "wind, blows, vehicle"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a swarm of bees buzzing around", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "water splashes and a door squeaks"], "sample_ids": ["vJvryTwuAV8", "sdXV-ylviw"], "start_seconds": ["16", "190"], "properties": ["audience, cheer, man", "sound, splash, door"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", null], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a dog barks and taps with background noise "], "question": "which entity has a door that squeaks?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wy1eKjR7KC0", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["people, talk, distance", "engine, idle, woman"], "captions_pred_video": ["two police officers riding motorcycles down the street", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["an airplane engine spools and people speak", "people applaud and hoot and chat quietly"], "sample_ids": ["wTjoRj1se3U", "wwyfGO2J4"], "start_seconds": ["390", "90"], "properties": ["airplane, engine, spool", "people, applaud, hoot"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["continuous sneezing together with speech", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["x4dZyf9Gbj0", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["continuous, sneeze, speech", "animal, grunts, snorts"], "captions_pred_video": ["footage is blurry and out of focus", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sQwlkXjQabo", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["water, spray, surface", "airplane, boy, fly"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["spraying followed by silence", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["bees buzz as wind blows", "water is sprayed across a hard surface"], "sample_ids": ["tMJne1a4AFI", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["bees, buzz, wind", "water, spray, surface"], "captions_pred_video": ["a swarm of bees on the ground", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a swarm of bees buzzing around", "spraying followed by silence"], "question": "which entity is not a living thing", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wyllXV6PjKo", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["a kid, talk, cry", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman speaks and a baby cries", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sU53zg9Jp7s", "uYT5gxnyMWM"], "start_seconds": ["380", "50"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a, scream, girl"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a doorbell?", "label": 0}, {"captions": ["a jet engine screams, then increases its power", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vBslzh7saPw", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["power, scream, increase", "stream, water, flow"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["wind blows as people chatter quietly", "several insects fly while two men talk"], "sample_ids": ["xBxDz0CFVn0", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["wind, chatter, people", "several, fly, men"], "captions_pred_video": ["footage is blurry and out of focus", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["some people speak", "a car accelerates and wind blows"], "sample_ids": ["vbZ-0lGPneg", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "accelerates, wind, blows"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "pigeons vocalize and birds chirp"], "sample_ids": ["u6jIvCtKarQ", "uiS58TNyUiw"], "start_seconds": ["70", "430"], "properties": ["a, man, speaks", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a person using a blender on a stove top", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uqFtmnhuqA8", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["a, b, c", "engine, laugh, loud"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage of a man driving a car in the dark"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a child speaks in closed space"], "sample_ids": ["ugHJF0hfYkg", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["loud, propeller, move", "child, space, speak"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "people speak as gunfire rings out"], "sample_ids": ["vimzuGQvdcU", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["a, man, yells", "gunfire, ring, speak"], "captions_pred_video": ["a group of people are rafting down a river", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a motor idles, accelerates, then slows down.", "a woman speaks as she rubs two objects together"], "sample_ids": ["vYkA3cfXp5Q", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["speed, idle, accelerate", "two objects, woman, speak"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of speed", "label": 0}, {"captions": ["a motorcycle engine works nearby", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tOSWIURC-4", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["engine, work, nearby", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a lawn mower is running ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a scene from a movie", "label": 1}, {"captions": ["a person is burping while a girl speaks", "someone whistles a tune"], "sample_ids": ["vdoxuJn9lTc", "sIXTftIuUgw"], "start_seconds": ["40", "90"], "properties": ["person, burp, girl", "someone, tune, whistle"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a race car approaches quickly and slows down squealing tires"], "sample_ids": ["xvDdE3zNf8Y", "sEprKHm8Sj8"], "start_seconds": ["120", "90"], "properties": ["A, crumple, paper", "car, tires, slows"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a woman speaks and crumples paper", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uEU-Hg5MTN8", "zFjIWfSD-4"], "start_seconds": ["27", "410"], "properties": ["a woman, laughs, animal", "People, motor, brakes"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["s4Uz1Ffgo04", "w5W5Kqtc8E"], "start_seconds": ["100", "100"], "properties": ["water, rushes, vehicle", "wind, blow, vehicle"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle zooming past water?", "label": 0}, {"captions": ["a stream runs then someone speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wbHTKEJZyhc", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["stream, run, someone", "men, talk, cars"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "wind blows as people chatter quietly"], "sample_ids": ["s4Uz1Ffgo04", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["water, rushes, motorcycle", "wind, chatter, people"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a vehicle engine accelerating then running on idle"], "sample_ids": ["ugHJF0hfYkg", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["engine, idle, continuously", "engine, accelerate, idle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a helicopter is flying overhead ", "an engine is idling"], "question": "which engine is running on idle", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a drill runs and two people laugh"], "sample_ids": ["vhJWZheqaE", "tEE3MpBt1sg"], "start_seconds": ["0", "50"], "properties": ["water drains unevenly, toilet flushes, water drains", "two people, laugh, drill"], "captions_pred_video": [null, "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a toilet is flushed", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["goats bleat and metal clings", "wind blows as people chatter quietly"], "sample_ids": ["tH17JPjDPnc", "xBxDz0CFVn0"], "start_seconds": ["260", "30"], "properties": ["bleat, metal, clings", "wind, chatter, people"], "captions_pred_video": ["feed of the goats eating hay in the barn", "footage is blurry and out of focus"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a goat screams and people speak in the background", "an infant crying as a woman laughs"], "sample_ids": ["xC8kbrKJmco", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["background, goat, scream", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a goat is bleating ", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["some people speak", "wind blows as people chatter quietly"], "sample_ids": ["vbZ-0lGPneg", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "wind, chatter, people"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks while water drains", "some tunes played by whistling"], "sample_ids": ["vSeGhaZt-aI", "u6BnG6YZqJ4"], "start_seconds": ["50", "0"], "properties": ["water, drain, man", "tune, play, whistling"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wqZ135Ssz0", "vb1fPSDI4c"], "start_seconds": ["60", "30"], "properties": ["two men, woman, birds", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["people speak and tapping occurs", "waves crash against a shoreline and people speak"], "sample_ids": ["tFCUUGdREgA", "yFB25fqfU8I"], "start_seconds": ["70", "300"], "properties": ["people, tap, speak", "wave, crash, shoreline"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be in a desert?", "label": 0}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["uOpoD0gGXcs", "tDlysoZiA1I"], "start_seconds": ["120", "0"], "properties": ["chirps, woman, bird", "animal, grunts, chirps"], "captions_pred_video": ["a herd of cows grazing in the field", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping and a man is speaking", "birds are chirping and a rooster is crowing "], "question": "which entity is a response to a woman chirping for the birds?", "label": 0}, {"captions": ["people clap and speak in the distance", "a small voice speaks, music plays followed by a double whoosh, and then a bell dings"], "sample_ids": ["wwyfGO2J4", "tQWGZLItBXk"], "start_seconds": ["90", "170"], "properties": ["clap, distance, speak", "voice, music, whoosh"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has music", "label": 1}, {"captions": ["frogs croak and vocalize", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yswmmRZFItk", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["croak, vocalize, frog", "male, duck, laugh"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a infant makes noise and is excited"], "sample_ids": ["tMbMDvT50j8", "wIJK3-5y0kA"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "noise, excited, infant"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is a baby", "label": 0}, {"captions": ["a airplane flies overhead as a woman speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zj2R0XoFr5k", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["airplane, fly, woman", "a woman, something, fried"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a vehicle engine accelerating then running on idle"], "sample_ids": ["uZesmtKZGSw", "vYkA3cfXp5Q"], "start_seconds": ["250", "30"], "properties": ["men, talk, cars", "engine, accelerate, idle"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "water splashes as an animal walks through"], "sample_ids": ["vK93VuO0yNc", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["male voice, bus, rumble", "animal, water, splashes"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["roadway noise occurs and a truck accelerates", "a toilet flushes and water drains"], "sample_ids": ["tgbONvsP47Y", "sfAvvZwdLCY"], "start_seconds": ["0", "20"], "properties": ["noise, truck, accelerate", "water drains, flushes, water"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a car is driving on the road ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tPJvjq9QePY", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["bleats, person, speak", "loud, jet engine, roar"], "captions_pred_video": ["a dog and a sheep in a barn", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a baby cries and a man speaks", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a man speaks over intermittent keyboard taps"], "sample_ids": ["vSeGhaZt-aI", "tw76HGONaKg"], "start_seconds": ["50", "570"], "properties": ["water, bubbles, run", "audio, man, keyboard"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "an infant crying as a woman laughs"], "sample_ids": ["xZepNM9qcRA", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["background, motor, run", "a, laugh, infant"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "a car speeding up in the distance"], "sample_ids": ["vK93VuO0yNc", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["male voice, bus, rumble", "distance, car, speed"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", null], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["food is frying while a woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["yhQ2Lg-7qDY", "wwyfGO2J4"], "start_seconds": ["130", "90"], "properties": ["food, woman, speak", "people, applaud, hoot"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a man speaks followed by another man speaking outside"], "sample_ids": ["u2f5NpsoHBg", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "two men, speak, follow"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two people speaking?", "label": 1}, {"captions": ["a man speaks uses a drill", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["x5eIC7S0fbg", "vfYTJq7nU"], "start_seconds": ["60", "130"], "properties": ["A man is speaking, uses a drill, and is a tool", "rustling, ducks, quack"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", null], "captions_pred_audio": ["a man is speaking and using a power tool ", "a duck quacks and a woman speaks"], "question": "which entity is a tool", "label": 0}, {"captions": ["a dog whimpers and a woman briefly talks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y1saVTXsKwc", "wz7N8YRy74I"], "start_seconds": ["80", "30"], "properties": ["a, dog, talk", "rooster, crow, background, men"], "captions_pred_video": ["a dog playing with a pink ball", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people talking", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a clock ticktocks"], "sample_ids": ["ziUT9IFTkjg", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["background, birds, rustling", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["several ducks are quacking and squawking", "water pouring and bubbling"], "sample_ids": ["wfHeoPDLMaM", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["quacking, squawking, ducks", "water, bubbles, pouring"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["ducks are quacking", "water is running from a faucet"], "question": "which entity is silent", "label": 1}, {"captions": ["wind blows as people chatter quietly", "an airplane engine spools and people speak"], "sample_ids": ["xBxDz0CFVn0", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["wind, chatter, people", "airplane, engine, spool"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a jet engine is running and people are talking"], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone is snoring while sleeping", "wind blows as people chatter quietly"], "sample_ids": ["ujMt0-D-x2k", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["snore, sleep, someone", "wind, chatter, people"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage is blurry and out of focus"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sjlVMgdGSK0", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["car, revving, loudly", "two men, woman, birds"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a machine runs continuously", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wdXV3Pv0jiY", "vb1fPSDI4c"], "start_seconds": ["11", "30"], "properties": ["machine, running, continuously", "multiple, people, yell"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a crowd of people are talking and laughing"], "question": "which entity is not silent", "label": 1}, {"captions": ["a horse runs while two women talk", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sdvI1mHAsc", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["two women, horse, run", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["su6FAOcOA8c", "su6FAOcOA8c"], "start_seconds": ["4", "4"], "properties": ["engine, run, woman", "engine, idle, woman"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman is speaking and a subway train is moving "], "question": "which entity has a running engine", "label": 0}, {"captions": ["electronic beeps occur in a short series", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y682ml90jGw", "w5W5Kqtc8E"], "start_seconds": ["11", "100"], "properties": ["beeps, series, electronic", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "water pouring and bubbling"], "sample_ids": ["w5W5Kqtc8E", "uyRfq-jKPpo"], "start_seconds": ["100", "50"], "properties": ["wind, blow, vehicle", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sfAvvZwdLCY", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "engine, accelerate, idle"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a toilet is flushed", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "a motor runs steadily as a man speaks, then the motor revs twice"], "sample_ids": ["yDoT73BWsdA", "ylpYOorfH4o"], "start_seconds": ["10", "410"], "properties": ["engine, revs, vehicle", "motor, run, steady"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and an engine is revving"], "question": "which motor is running steadily", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "someone is typing on a computer keyboard"], "sample_ids": ["uRlbY6aoBU", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["a, distance, sneeze", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is sneezing ", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["wind blowing followed by a zoom", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vr8ZXjEBhMQ", "tdWhHV3X25Q"], "start_seconds": ["150", "60"], "properties": ["wind, blow, zoom", "applause, audience, yells"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking and a crowd is clapping"], "question": "which entity is a person", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a man speaks as horns blow"], "sample_ids": ["xyL9F5VrjkE", "tHyNqRyK34A"], "start_seconds": ["20", "24"], "properties": ["engine, run, wind", "a, man, speaks"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a car is honking with background noise "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "paper is crumpling consistently"], "sample_ids": ["u7C-AEBQM", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["ticks, rhythmic, quiet", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a ticktock of a clock", "paper is crumpled and crinkled"], "question": "which entity is crumpling consistently", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["uPDn2BFTHk", "ugHJF0hfYkg"], "start_seconds": ["140", "10"], "properties": ["woman, laughs, speaks", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wtDqrBygTcU", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["man, engine, run", "water, radio, man"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["someone snores nearby", "a woman speaks happily and an animal chirps"], "sample_ids": ["spJCm8tD9Zo", "uWAAAL4CIoc"], "start_seconds": ["90", "0"], "properties": ["someone snores, nearby, someone", "a woman, chirps, animal"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "some men converse over an engine running"], "sample_ids": ["yVumC9TGknc", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["humming, clock, birds", "men, converse, engine"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", null], "captions_pred_audio": ["a series of beeps and chirps", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xSKJGCItUWE", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["engine, run, boy", "water, radio, man"], "captions_pred_video": ["footage of the helicopter flying in the room", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a boy speaking?", "label": 0}, {"captions": ["some men converse over an engine running", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sCiy7QS1U", "uYT5gxnyMWM"], "start_seconds": ["300", "50"], "properties": ["men, converse, engine", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["yZp6xizR0yU", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["animal, bleat, cry", "animal, grunts, snorts"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a woman is speaking and a baby is crying"], "question": "which animal is grunting and snorting", "label": 1}, {"captions": ["an airplane engine spools and people speak", "some tunes played by whistling"], "sample_ids": ["wTjoRj1se3U", "u6BnG6YZqJ4"], "start_seconds": ["390", "0"], "properties": ["airplane, engine, spool", "tune, play, whistling"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a jet engine is running and people are talking", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "vehicles pass by on a roadway"], "sample_ids": ["viuTg1M-dqg", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["two men, speak, follow", "pass, vehicle, roadway"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is driving on the road "], "question": "which entity is more likely to be in a city", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["sWZzXuWYY", "tDlysoZiA1I"], "start_seconds": ["420", "0"], "properties": ["male, speech, banging", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["ugHJF0hfYkg", "su6FAOcOA8c"], "start_seconds": ["10", "4"], "properties": ["loud, propeller, move", "engine, idle, woman"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a subway train is moving "], "question": "which is quieter", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "someone is typing on a computer keyboard"], "sample_ids": ["vimzuGQvdcU", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["a, man, yells", "keyboard, type, computer"], "captions_pred_video": ["a group of people are rafting down a river", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a person is typing on a keyboard"], "question": "which is a more active activity", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wfHeoPDLMaM", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["quacking, squawking, ducks", "airplane, boy, fly"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["ducks are quacking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "dishes cling together then a man begins to speak"], "sample_ids": ["slZLHwNbbt4", "sQGXqGcwOTc"], "start_seconds": ["300", "3"], "properties": ["a, horn, run", "cling, speak, dishes"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "mechanisms are operating and water is splashing "], "question": "what is the man doing in the second image?", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "a infant makes noise and is excited"], "sample_ids": ["yajyRTUQk3U", "wIJK3-5y0kA"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "noise, excited, infant"], "captions_pred_video": ["- a woman cooking in the kitchen", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a woman speaks as she rubs two objects together"], "sample_ids": ["y4tPJXBKDig", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["a, noise, talk", "two objects, woman, speak"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["water flows followed by women screaming", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w5W5Kqtc8E", "wDVMhEdTiVw"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is about water flowing?", "label": 0}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "an infant crying frantically"], "sample_ids": ["uOpoD0gGXcs", "zwOBqeFTgiU"], "start_seconds": ["120", "30"], "properties": ["chirps, woman, bird", "cry, infant, frantically"], "captions_pred_video": ["a herd of cows grazing in the field", "of the baby crying in the car seat"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "someone whistles briefly"], "sample_ids": ["tZGN5a7ybxo", "uFoga8sHpiw"], "start_seconds": ["60", "90"], "properties": ["ring, train, horn", "sound, duration, pitch"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "footage of a bird in a cage"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a person whistles a song"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["dogs barking and whimpering", "a motor idles, accelerates, then slows down."], "sample_ids": ["tIY7qOV3rEM", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "speed, idle, accelerate"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["a man is filing a hard object", "a man speaks followed by another man speaking outside"], "sample_ids": ["vveS8HT7Uog", "viuTg1M-dqg"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "two men, speak, follow"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about speaking", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "small dogs yip and bark sharply"], "sample_ids": ["sWZzXuWYY", "v-wcQf4BDY0"], "start_seconds": ["420", "120"], "properties": ["male, speech, banging", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "male speech with light ticking"], "sample_ids": ["spYNpeN7rPY", "xO-Q2BlIIPU"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "male, speech, ticking"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a clock with a green glowing display showing the time 09 07 2016 12 31 2016"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["a weapon fires multiple times", "a clock ticktocks"], "sample_ids": ["sMC07Ucy7kg", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["weapon, fire, multiple", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is from a car's point of view", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "water flows and trickles"], "sample_ids": ["wqADXCzngMw", "tB7hWb9gTuQ"], "start_seconds": ["340", "30"], "properties": ["engine, idle, man", "water, flow, trickle"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a mechanical buzzing getting louder"], "sample_ids": ["su6FAOcOA8c", "sEprKHm8Sj8"], "start_seconds": ["4", "90"], "properties": ["engine, run, woman", "noise, loud, buzzing"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["people speak then an engine runs", "winds blows roughly as a vehicle races past"], "sample_ids": ["uMTTDZ2mb4", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["engine, run, people", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["a machine beeps continuously", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["y682ml90jGw", "su6FAOcOA8c"], "start_seconds": ["11", "4"], "properties": ["beeps, machine, continuously", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and a subway train is moving "], "question": "which entity is a machine?", "label": 0}, {"captions": ["a person is whistling", "a toilet flushes and a female speaks"], "sample_ids": ["sIXTftIuUgw", "yaln9y8I7ms"], "start_seconds": ["90", "230"], "properties": ["person, whistling, person", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 0}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["s4Uz1Ffgo04", "uWAAAL4CIoc"], "start_seconds": ["100", "0"], "properties": ["roars, background, people speaking", "a woman, chirps, animal"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman is speaking and a dog is barking "], "question": "which entity is quieter", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "winds blows roughly as a vehicle races past"], "sample_ids": ["zl9Dqx-j7q4", "xjvTpk2Zpr8"], "start_seconds": ["6", "70"], "properties": ["motors rev, laugh, loudly", "wind, blows, vehicle"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a jet engine roars ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman and man are speaking", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["vbpKkWvfOu4", "xV7Mg1QucSc"], "start_seconds": ["560", "14"], "properties": ["two people, speaking, woman, man", "alarm, ticktocks, laughs"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "an alarm clock ticks and a woman laughs"], "question": "which entity is about a clock ticktocking and a man laughing?", "label": 1}, {"captions": ["electronic beeps occur in a short series", "an infant crying frantically"], "sample_ids": ["y682ml90jGw", "zwOBqeFTgiU"], "start_seconds": ["11", "30"], "properties": ["beeps, series, electronic", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a beeping sound is being made ", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "an infant crying as a woman laughs"], "sample_ids": ["wz7N8YRy74I", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["rooster, crow, background, men", "a, laugh, infant"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person is whistling", "paper is crumpling consistently"], "sample_ids": ["sIXTftIuUgw", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["person, whistling, person", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person whistling a song", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motorcycle engine is idling", "pigeons vocalize and birds chirp"], "sample_ids": ["vZAqdHZ81yA", "uiS58TNyUiw"], "start_seconds": ["180", "430"], "properties": ["engine, motorcycle, idling", "vocalize, bird, chirp"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of the pigeon in the cage"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a piece of wood is being placed down and sawed", "a door opens and birds chirp"], "sample_ids": ["uiItxDsDMFI", "yeFvk9x0wWI"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "door, open, birds"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a saw is being used with background noise ", "birds chirp in the background as a car drives by "], "question": "which entity is a door?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sQwlkXjQabo", "tiDFTC-5vU"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "male, duck, laugh"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "pigeons vocalize and birds chirp"], "sample_ids": ["tDVADusiIoc", "uiS58TNyUiw"], "start_seconds": ["60", "430"], "properties": ["water, radio, man", "vocalize, bird, chirp"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["food is frying while a woman speaks", "a car speeding up in the distance"], "sample_ids": ["yhQ2Lg-7qDY", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["food, woman, speak", "distance, car, speed"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a church bell rings several times", "a man speaks as a car is passing by"], "sample_ids": ["sUVVjE3Ucp8", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["ring, bell, several", "a, car, pass"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a church bell is ringing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["an audience gives applause", "a dog whimpers as someone inhales/exhales briefly"], "sample_ids": ["x6iCUDmRpKQ", "vmrxwuAMb2I"], "start_seconds": ["38", "40"], "properties": ["applause, audience, give", "a dog, inhales, exhales"], "captions_pred_video": ["a black background with the moon and stars in the sky", "of the dog laying on the bed with his head out of the blanket"], "captions_pred_audio": ["a group of people are clapping and cheering", "a dog barks and growls"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a woman speaks happily and an animal chirps"], "sample_ids": ["wtDqrBygTcU", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["man, engine, run", "a woman, chirps, animal"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", null], "captions_pred_audio": ["a man is speaking and a motor is running", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "wind blows as people chatter quietly"], "sample_ids": ["ylpYOorfH4o", "xBxDz0CFVn0"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "wind, chatter, people"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a helicopter engine runs continuously"], "sample_ids": ["wTjoRj1se3U", "ugHJF0hfYkg"], "start_seconds": ["390", "10"], "properties": ["engine, run, people", "engine, running, continuously"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a jet engine is running and people are talking", "a helicopter is flying overhead "], "question": "which entity has a running engine", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["u6jIvCtKarQ", "vb1fPSDI4c"], "start_seconds": ["70", "30"], "properties": ["a, man, speaks", "multiple, people, yell"], "captions_pred_video": ["footage of a person using a blender on a stove top", null], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["w34HjHr6gAY", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["beeps, hit, woman", "animal, grunts, snorts"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["multiple adults speaking, and a child shouting in the background", "water flows and trickles"], "sample_ids": ["yks4cLgIDMc", "tB7hWb9gTuQ"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "water, flow, trickle"], "captions_pred_video": ["footage of two kids wrestling on the floor", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a child is crying", "water is splashing and gurgling"], "question": "which entity is a moving object", "label": 1}, {"captions": ["someone snores nearby", "paper is crumpling consistently"], "sample_ids": ["spJCm8tD9Zo", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["someone snores, nearby, someone", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person is snoring loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "pigeons vocalize and birds chirp"], "sample_ids": ["wqADXCzngMw", "uiS58TNyUiw"], "start_seconds": ["340", "430"], "properties": ["engine, idle, man", "vocalize, bird, chirp"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "of the pigeon in the cage"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a car accelerates and wind blows"], "sample_ids": ["sQwlkXjQabo", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["water, spray, surface", "accelerates, wind, blows"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["t69a8aRKhmc", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "male, duck, laugh"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["u2f5NpsoHBg", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["person, laugh, clap", "two men, woman, birds"], "captions_pred_video": ["is being projected on a screen at the front of the stage", null], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tiDFTC-5vU", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["male, duck, laugh", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a child speaks in closed space"], "sample_ids": ["v0x1odnXtP0", "yW6FWLSLkx4"], "start_seconds": ["210", "40"], "properties": ["keyboard, type, computer", "child, space, speak"], "captions_pred_video": ["how to make money on youtube in spanish", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a child speaks in closed space"], "sample_ids": ["zgUgkpk78xU", "yW6FWLSLkx4"], "start_seconds": ["70", "40"], "properties": ["horn, bell, train", "child, space, speak"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["x9JovgqUcs", "wqZ135Ssz0"], "start_seconds": ["500", "60"], "properties": ["a, man, speaks, keyboard", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "waves crash against a shoreline and people speak"], "sample_ids": ["u7C-AEBQM", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["ticks, rhythmic, quiet", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more quiet", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "birds chirp and an insect buzzes around"], "sample_ids": ["vddP56-ogds", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["liquid, laughs, man", "bird, chirp, insect"], "captions_pred_video": [null, "a bee on a purple thistle flower"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a bee buzzes and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "an airplane engine runs"], "sample_ids": ["yajyRTUQk3U", "yVPZ2MNWpms"], "start_seconds": ["400", "0"], "properties": ["a woman, something, fried", "engine, airplane, runs"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["w2M4i1mklOA", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "a woman, a television program, a bird"], "captions_pred_video": ["footage of an antique clock", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking and a dog is whimpering"], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "winds blows roughly as a vehicle races past"], "sample_ids": ["ukg5L09Wpvo", "xjvTpk2Zpr8"], "start_seconds": ["150", "70"], "properties": ["a train, a horn, a bell", "wind, blows, vehicle"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yks4cLgIDMc", "zj2R0XoFr5k"], "start_seconds": ["170", "50"], "properties": ["background, speaking, child", "airplane, boy, fly"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and a child is crying", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["siJFXfGWgDk", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["man, woman, vehicle", "a woman, laughs, animal"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a man speaks while playing a video game on a keyboard", "an airplane engine runs"], "sample_ids": ["tw76HGONaKg", "yVPZ2MNWpms"], "start_seconds": ["570", "0"], "properties": ["A, game, keyboard", "engine, airplane, runs"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a car is driving by on the road "], "question": "which is not a video game", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "water pouring and bubbling"], "sample_ids": ["wqADXCzngMw", "uyRfq-jKPpo"], "start_seconds": ["340", "50"], "properties": ["engine, idle, man", "water, bubbles, pouring"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "water flows as men speak and yell"], "sample_ids": ["s6DESzUTGjY", "vJ7JPEFhyLA"], "start_seconds": ["16", "16"], "properties": ["wind, laugh, woman", "water, flow, men"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "an infant crying as a woman laughs"], "sample_ids": ["vddP56-ogds", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["water, splash, person, laugh", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a baby cries and a woman speaks"], "question": "which entity is about a person laughing?", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "a duck quacks continuously"], "sample_ids": ["vddP56-ogds", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "vehicles pass by on a roadway"], "sample_ids": ["slZLHwNbbt4", "tgbONvsP47Y"], "start_seconds": ["300", "0"], "properties": ["clap, distance, horn", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a car is driving on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["some tunes played by whistling", "a person snores loudly multiple times at a close distance"], "sample_ids": ["u6BnG6YZqJ4", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["tune, play, whistling", "loud, multiple, distance"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", null], "captions_pred_audio": ["a person whistling a song", "a person snoring loudly"], "question": "which entity is not a tune", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sOa7g-44Dag", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["audio, scratching, man", "multiple, people, yell"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a man speaks as a car is passing by"], "sample_ids": ["uzQnlJXBbOM", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "a, car, pass"], "captions_pred_video": ["footage of a person using a cell phone on a table", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a telephone rings and a man speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a woman speaks happily and an animal chirps"], "sample_ids": ["uzQnlJXBbOM", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["ringing, beep, stop", "a woman, chirps, animal"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["soTOh3zYJfY", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["vehicle, skid, tires", "two men, woman, birds"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a drill drills through something then people begin laughing", "a man speaks as a car is passing by"], "sample_ids": ["tEE3MpBt1sg", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "a, car, pass"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an insect buzzes around continuously", "a woman speaks as she rubs two objects together"], "sample_ids": ["v25l1jef3JY", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["buzzes, continuously, insect", "two objects, woman, speak"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "an adult male speaks and dials a rotary phone"], "sample_ids": ["wnpJndXuxLc", "tK4VlLsNxak"], "start_seconds": ["50", "120"], "properties": ["blows, vehicle, train", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and using a sewing machine"], "question": "which entity is a person", "label": 1}, {"captions": ["a dark barks and whimpers", "a woman speaks happily and an animal chirps"], "sample_ids": ["sYj4hpDUZDQ", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["barks, whimpers, dark", "a woman, chirps, animal"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wz7N8YRy74I", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, people", "engine, accelerate, idle"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vXlk0lIQBFo", "w5W5Kqtc8E"], "start_seconds": ["470", "100"], "properties": ["wind, speak, vocalize", "wind, blow, vehicle"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "waves crash against a shoreline and people speak"], "sample_ids": ["ugHJF0hfYkg", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["engine, running, continuously", "wave, crash, shoreline"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a man speaks followed by another man speaking outside"], "sample_ids": ["vddP56-ogds", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["water, splash, person, laugh", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking nearby?", "label": 0}, {"captions": ["wind blowing followed by a zoom", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["vr8ZXjEBhMQ", "zO-LSSY92ZM"], "start_seconds": ["150", "30"], "properties": ["wind, blow, zoom", "liquid, surface, sound"], "captions_pred_video": ["is taken from a motorcycle's point of view", "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "steam is hissing and hissing"], "question": "which entity is not a zoom", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xERFUeZONz8", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["ring, approach, traffic", "rustling, ducks, quack"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", null], "captions_pred_audio": ["an emergency vehicle siren blares", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tdWhHV3X25Q", "xKB8O8LTs6s"], "start_seconds": ["60", "70"], "properties": ["applause, audience, yells", "music, gunfire, explosion"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["uZesmtKZGSw", "y2ZBGpgbhHM"], "start_seconds": ["250", "30"], "properties": ["men, talk, cars", "birds, tweet, pant"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "birds chirping and a dog panting"], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs barking and whimpering", "a kid speaks followed by music playing"], "sample_ids": ["tIY7qOV3rEM", "tQWGZLItBXk"], "start_seconds": ["0", "170"], "properties": ["barking, whimpering, dog", "music, kid, speak"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "worms revolution screenshots"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "multiple people speak and children yell while water gurgles"], "sample_ids": ["x9JovgqUcs", "vb1fPSDI4c"], "start_seconds": ["500", "30"], "properties": ["a, man, speaks, keyboard", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["spYNpeN7rPY", "zl9Dqx-j7q4"], "start_seconds": ["1", "6"], "properties": ["a clock, ticktock, man", "engine, laugh, loud"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "ducks quack as a man speaks and makes a duck sound"], "sample_ids": ["uYT5gxnyMWM", "vfYTJq7nU"], "start_seconds": ["50", "130"], "properties": ["female, spraying, scream", "ducks, quack, man"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a duck quacks and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "an electric engine works nearby followed by a child talking"], "sample_ids": ["yeFvk9x0wWI", "xSKJGCItUWE"], "start_seconds": ["30", "10"], "properties": ["chirp, twitter, clatter", "engine, work, child"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of the helicopter flying in the room"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a high pitched engine is running and a child speaks"], "question": "which entity is a machine", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y4tPJXBKDig", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["a, noise, talk", "a woman, laughs, animal"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl talking", "label": 0}, {"captions": ["a sleeping person snores and wheezes", "a man speaks as a car is passing by"], "sample_ids": ["spJCm8tD9Zo", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["snores, wheezes, sleeps", "a, car, pass"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zF8yoL0rkbI", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["engine, run, someone", "female, spraying, scream"], "captions_pred_video": ["footage of the traffic on the street at night", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "waves crash against a shoreline and people speak"], "sample_ids": ["sQGXqGcwOTc", "yFB25fqfU8I"], "start_seconds": ["3", "300"], "properties": ["cling, speak, dishes", "wave, crash, shoreline"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a person surfing in the ocean"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["goats bleat and people speak", "a person snores loudly multiple times at a close distance"], "sample_ids": ["z5iUE5h0EPs", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["goats bleat, people speak, language", "loud, multiple, distance"], "captions_pred_video": ["of the goat in the barn", null], "captions_pred_audio": ["a goat bleats and a man speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a car speeding up in the distance"], "sample_ids": ["sjlVMgdGSK0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["accelerates, vehicle, race car", "distance, car, speed"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which car is speeding up in the distance", "label": 1}, {"captions": ["a machine beeps continuously", "wind blowing followed by a zoom"], "sample_ids": ["y682ml90jGw", "vr8ZXjEBhMQ"], "start_seconds": ["11", "150"], "properties": ["beeps, machine, continuously", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a beeping sound is being made ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["goats bleat and people speak", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["z5iUE5h0EPs", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["goats bleat, people speak, language", "loud, laughter, intermittent"], "captions_pred_video": ["of the goat in the barn", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a goat bleats and a man speaks", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xSKJGCItUWE", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["engine, work, child", "engine, revs, vehicle"], "captions_pred_video": ["footage of the helicopter flying in the room", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people speak and tapping occurs", "a man speaks while a machine runs before a smoke alarm beeps"], "sample_ids": ["tFCUUGdREgA", "sG7TyPnFDR0"], "start_seconds": ["70", "180"], "properties": ["people, tap, speak", "beeps, machine, smoke alarm"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a person is using an espresso machine in a restaurant"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking and a microwave oven is beeping "], "question": "which entity has a smoke alarm beep?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "water flows as men speak and yell"], "sample_ids": ["tOSWIURC-4", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["engine, work, nearby", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wTjoRj1se3U", "sSMl2vc3ek"], "start_seconds": ["390", "20"], "properties": ["engine, run, people", "loud, multiple, distance"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "winds blows roughly as a vehicle races past"], "sample_ids": ["uWAAAL4CIoc", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["a, dog, vocalize", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["uPDn2BFTHk", "sQGXqGcwOTc"], "start_seconds": ["140", "3"], "properties": ["woman, laughs, speaks", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a baby laughs and a woman speaks", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["birds chirp as a bell rings", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["ziUT9IFTkjg", "wqZ135Ssz0"], "start_seconds": ["10", "60"], "properties": ["chirp, bell, ring", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is about birds?", "label": 0}, {"captions": ["a goat screams and people speak in the background", "water flows as men speak and yell"], "sample_ids": ["xC8kbrKJmco", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["background, goat, scream", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "someone whistles a tune"], "sample_ids": ["yks4cLgIDMc", "sIXTftIuUgw"], "start_seconds": ["170", "90"], "properties": ["background, speaking, child", "someone, tune, whistle"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wqN6IIHw3po", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["rain, surface, fall", "applause, audience, yells"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["birds tweet and squawk", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["w1mlz3Pe4fU", "yDoT73BWsdA"], "start_seconds": ["300", "10"], "properties": ["squawk, tweet, scream", "engine, revs, vehicle"], "captions_pred_video": ["of a bird in a cage", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["birds are chirping and singing", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "vehicle tires screech and a man speaks before a car door opens"], "sample_ids": ["wyllXV6PjKo", "sxYkFKFIZD0"], "start_seconds": ["30", "20"], "properties": ["a kid, talk, cry", "screech, man, door"], "captions_pred_video": [null, "2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking while a car is revving and accelerating with a squeal in the background "], "question": "which entity has a door open?", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a infant makes noise and is excited"], "sample_ids": ["sDSppXIlJrs", "wIJK3-5y0kA"], "start_seconds": ["27", "30"], "properties": ["microphone, water, wind", "noise, excited, infant"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a baby cries and a woman speaks"], "question": "which noise is made by a human", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yDoT73BWsdA", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["engine, revs, vehicle", "airplane, boy, fly"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zhx6hoYrHeI", "tiDFTC-5vU"], "start_seconds": ["160", "30"], "properties": ["engine, sputter, rough", "male, duck, laugh"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "paper is crumpling consistently"], "sample_ids": ["vmrxwuAMb2I", "v5cSxLaHADY"], "start_seconds": ["40", "0"], "properties": ["a dog, inhales, exhales", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a dog barks and growls", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a propeller rotates loudly and intensely"], "sample_ids": ["ugHJF0hfYkg", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["loud, intense, propeller", "loud, intense, propeller"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a helicopter is flying overhead ", "a helicopter is flying overhead "], "question": "which propeller rotates loudly and intensely", "label": 1}, {"captions": ["small dogs yip and bark sharply", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["v-wcQf4BDY0", "sYITalLZjj4"], "start_seconds": ["120", "30"], "properties": ["bark, yip, sharply", "water, rushes, background, birds"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "two ducks are swimming in the water near each other"], "captions_pred_audio": ["a dog barks and growls", "wind blows and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["goats bleat and people speak", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["z5iUE5h0EPs", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["goats bleat, people speak, language", "female, spraying, scream"], "captions_pred_video": ["of the goat in the barn", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a goat bleats and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a person is whistling a tune", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["scYRUkrFLiQ", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["a, tune, whistle", "People, motor, brakes"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", null], "captions_pred_audio": ["a person whistling a song", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 0}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a machine engine runs and a man speaks"], "sample_ids": ["xKB8O8LTs6s", "vs65y4qmyBE"], "start_seconds": ["70", "340"], "properties": ["music, radio, gunshots", "engine, run, man"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a heavy engine is running and men are speaking "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a man speaks with another voice speaking in the background"], "sample_ids": ["uiItxDsDMFI", "u21-Z5gJCB8"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "background, voice, man"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a woman sneezes then speaks", "water flows and trickles"], "sample_ids": ["x4dZyf9Gbj0", "tB7hWb9gTuQ"], "start_seconds": ["130", "30"], "properties": ["sneezes, speaks, woman", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and out of focus", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman sneezes and speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yYEVLuqEytU", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["animal, pig, background", "loud, jet engine, roar"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["several sheep bleat and a man speaks", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a person is snoring while sleeping"], "sample_ids": ["v5P-ThUCINM", "vJrjSeP17yE"], "start_seconds": ["400", "40"], "properties": ["background, chirp, bird", "a person is sleeping, snoring, person"], "captions_pred_video": [null, "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["some men converse over an engine running", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sCiy7QS1U", "uYT5gxnyMWM"], "start_seconds": ["300", "50"], "properties": ["men, converse, engine", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["two frogs croak at each other", "some tunes played by whistling"], "sample_ids": ["zg0X6BnhOLQ", "u6BnG6YZqJ4"], "start_seconds": ["410", "0"], "properties": ["two frogs, croak, at each other", "tune, play, whistling"], "captions_pred_video": ["footage of lightning in the sky at night", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a frog is croaking", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a woman talking as an infant is crying", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tMbMDvT50j8", "sSMl2vc3ek"], "start_seconds": ["12", "20"], "properties": ["a, talk, infant", "loud, multiple, distance"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a stream of water runs briefly"], "sample_ids": ["zF8yoL0rkbI", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["engine, run, someone", "stream, water, run"], "captions_pred_video": ["footage of the traffic on the street at night", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a clock ticktocks in wind", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["yVumC9TGknc", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, wind", "loud, laughter, intermittent"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a series of beeps and chirps", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["there are rhythmical snoring nearby", "a frog croaks as other frogs croak in the background"], "sample_ids": ["ujMt0-D-x2k", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["snoring, rhythmical, nearby", "background, frog, croak"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a close up of a frog in the water"], "captions_pred_audio": ["a person is snoring loudly", "a frog is croaking"], "question": "which entity is not a frog?", "label": 0}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "an infant crying as a woman laughs"], "sample_ids": ["x5cuQjOdM3E", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["cat, talk, meow", "a, laugh, infant"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a cat meows and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["an animal quacks rapidly", "a machine beeps continuously"], "sample_ids": ["vh30P49Po6s", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["animal, quacks, rapidly", "beeps, machine, continuously"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "an airplane engine spools and people speak"], "sample_ids": ["sQwlkXjQabo", "wTjoRj1se3U"], "start_seconds": ["10", "390"], "properties": ["liquid, surface, spray", "airplane, engine, spool"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["spraying followed by silence", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vXlk0lIQBFo", "wDVMhEdTiVw"], "start_seconds": ["470", "30"], "properties": ["wind, speak, vocalize", "gun, shoot, water"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sxYkFKFIZD0", "su6FAOcOA8c"], "start_seconds": ["20", "4"], "properties": ["screech, man, door", "engine, idle, woman"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["water rushes by", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x-PeY8Yb8M4", "xKB8O8LTs6s"], "start_seconds": ["300", "70"], "properties": ["water, rushes, by", "music, gunfire, explosion"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car is driving on a wet road ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a small engine spits as it runs", "a woman speaks as she rubs two objects together"], "sample_ids": ["sZvwOuuPGP0", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["spits, engine, runs", "two objects, woman, speak"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a medium engine is running ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["water quietly rushes by while birds chirp in the background", "a stream of water runs briefly"], "sample_ids": ["sYITalLZjj4", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["water, rushes, background, birds", "stream, water, run"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["wind blows and birds chirp", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vs65y4qmyBE", "uZesmtKZGSw"], "start_seconds": ["340", "250"], "properties": ["engine, run, man", "men, talk, cars"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a helicopter engine idles continuously", "paper is crumpling consistently"], "sample_ids": ["ugHJF0hfYkg", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["engine, idle, continuously", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a helicopter is flying overhead ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a machine runs continuously", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wdXV3Pv0jiY", "zl9Dqx-j7q4"], "start_seconds": ["11", "6"], "properties": ["machine, running, continuously", "engine, laugh, loud"], "captions_pred_video": ["footage is blurry and shaky", "footage of a man driving a car in the dark"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a jet engine roars "], "question": "which entity is not a machine?", "label": 1}, {"captions": ["a dog barks and whimpers", "a propeller rotates loudly and intensely"], "sample_ids": ["sShpyu2l4YQ", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["barks, whimpers, dog", "loud, intense, propeller"], "captions_pred_video": ["the puppies are playing with a toy", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a dog is barking and growling", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uKCSGgof8gI", "uYT5gxnyMWM"], "start_seconds": ["12", "50"], "properties": ["chirps, distance, signal", "female, spraying, scream"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a duck quacks continuously"], "sample_ids": ["wjsXBsc7M40", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "quacks, continuously, duck"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person speaks briefly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zOZleIRqZm4", "tDVADusiIoc"], "start_seconds": ["80", "60"], "properties": ["person, talk, brief", "water, radio, man"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a stream of water flows as people talk and wind blows"], "sample_ids": ["tw76HGONaKg", "xBxDz0CFVn0"], "start_seconds": ["570", "30"], "properties": ["A, game, keyboard", "stream, water, flow"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["water flows followed by women screaming", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w5W5Kqtc8E", "zj2R0XoFr5k"], "start_seconds": ["100", "50"], "properties": ["water, flow, women", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["ylpYOorfH4o", "ziUT9IFTkjg"], "start_seconds": ["410", "10"], "properties": ["engine, run, loud", "background, birds, rustling"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "birds are chirping and a chime is ringing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "paper folding and crinkling"], "sample_ids": ["u7C-AEBQM", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["ticks, rhythmic, quiet", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a ticktock of a clock", "the wind blows and a mouse clicks "], "question": "which entity is not quiet", "label": 1}, {"captions": ["a motorcycle engine is idling", "a car speeding up in the distance"], "sample_ids": ["vZAqdHZ81yA", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["engine, motorcycle, idling", "distance, car, speed"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a race car accelerates and revs its engine "], "question": "which object is moving faster", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "waves crash against a shoreline and people speak"], "sample_ids": ["xSKJGCItUWE", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["engine, work, child", "wave, crash, shoreline"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a man speaks as horns blow", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tHyNqRyK34A", "vYkA3cfXp5Q"], "start_seconds": ["24", "30"], "properties": ["a, man, speaks", "engine, accelerate, idle"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "wind blows as people chatter quietly"], "sample_ids": ["tqR406bGiE", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["flush, water, gurgle", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "dishes cling together then a man begins to speak"], "sample_ids": ["sDSppXIlJrs", "sQGXqGcwOTc"], "start_seconds": ["27", "3"], "properties": ["microphone, water, wind", "cling, speak, dishes"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["the wind is blowing and water is splashing", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "people applaud and hoot and chat quietly"], "sample_ids": ["xZepNM9qcRA", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["background, motor, run", "people, applaud, hoot"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["material crumbles into a microphone", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vofpvUo6NAw", "wDVMhEdTiVw"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "gun, shoot, water"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a infant makes noise and is excited"], "sample_ids": ["zliInBdC98Y", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["a, baby, cries, wails", "noise, excited, infant"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries and a woman speaks"], "question": "which is a more active infant", "label": 1}, {"captions": ["someone snores nearby", "multiple people speak and children yell while water gurgles"], "sample_ids": ["spJCm8tD9Zo", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "multiple, people, yell"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "birds chirp and objects are moved around"], "sample_ids": ["vf44CgrjT0A", "yPUYU6t3rwo"], "start_seconds": ["20", "370"], "properties": ["loud, long, person", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a loud burp", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zl9Dqx-j7q4", "vb1fPSDI4c"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "multiple, people, yell"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tgbONvsP47Y", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["noise, truck, accelerate", "wind, blow, vehicle"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a man speaks uses a drill"], "sample_ids": ["wvKpEYswXO0", "x5eIC7S0fbg"], "start_seconds": ["150", "60"], "properties": ["sound, water, running", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["of the person preparing food in the kitchen", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "heavy rain splashes as it falls"], "sample_ids": ["uZesmtKZGSw", "wP8ZKrlx3oA"], "start_seconds": ["250", "40"], "properties": ["car, track, man", "fall, rain, splash"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a heavy rain is falling on a surface"], "question": "which entity is not a person", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a horn rings out as a machine runs by"], "sample_ids": ["sjlVMgdGSK0", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["accelerates, vehicle, race car", "a, horn, run"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "an engine runs loudly"], "sample_ids": ["y8WEcpOlT3I", "vqZuVbG6-HI"], "start_seconds": ["40", "130"], "properties": ["harsh, wind, blows", "loud, engine, run"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["yks4cLgIDMc", "tDlysoZiA1I"], "start_seconds": ["170", "0"], "properties": ["background, speaking, child", "animal, grunts, chirps"], "captions_pred_video": ["footage of two kids wrestling on the floor", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking and a child is crying", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "small dogs yip and bark sharply"], "sample_ids": ["wz7N8YRy74I", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["rooster, crow, background, people", "bark, yip, sharply"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a train horn blows as it passes by", "a baby laugh at a sputter"], "sample_ids": ["zVacuqSb4LI", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["horn, blows, train", "laugh, sputter, baby"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is a person", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a woman speaks as she rubs two objects together"], "sample_ids": ["sNB8zxXneIM", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["several, quack, cocks", "two objects, woman, speak"], "captions_pred_video": ["a group of geese in a cage", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["birds chirp as a train approaches", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xM4joTqDVp4", "zFjIWfSD-4"], "start_seconds": ["160", "410"], "properties": ["bird, chirp, train", "People, motor, brakes"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a train?", "label": 0}, {"captions": ["a duck quacks continuously", "continuous snoring"], "sample_ids": ["vh30P49Po6s", "sLkeqCDJIyw"], "start_seconds": ["30", "120"], "properties": ["quacks, continuously, duck", "loud, snoring, noise"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a duck is quacking loudly", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["birds fly and flutter around", "frogs croak and vocalize"], "sample_ids": ["wGKgwOP3h30", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["fly, flutter, around", "croak, vocalize, frog"], "captions_pred_video": ["of the pigeons in the coop", "a close up of a frog in the water"], "captions_pred_audio": ["pigeons coo and flap their wings", "a frog is croaking"], "question": "which animal is more likely to be a frog", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "an infant crying frantically"], "sample_ids": ["zl9Dqx-j7q4", "zwOBqeFTgiU"], "start_seconds": ["6", "30"], "properties": ["engine, laugh, loud", "cry, infant, frantically"], "captions_pred_video": ["footage of a man driving a car in the dark", "of the baby crying in the car seat"], "captions_pred_audio": ["a jet engine roars ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a toilet flushes and a female speaks"], "sample_ids": ["xBxDz0CFVn0", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["stream, water, flow", "female, flushes, toilet"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a source of water", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["x6ijhqRY38s", "w5W5Kqtc8E"], "start_seconds": ["250", "100"], "properties": ["something metal, glass, hit", "wind, blow, vehicle"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["some clanking with distant murmuring", "some tunes played by whistling"], "sample_ids": ["uMTTDZ2mb4", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["clanking, murmuring, distant", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["a male speaks and another male speaks", "a toilet flushes and a female speaks"], "sample_ids": ["viuTg1M-dqg", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["two males, speaking, male", "female, flushes, toilet"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["people speak softly as food sizzles", "some tunes played by whistling"], "sample_ids": ["yhQ2Lg-7qDY", "u6BnG6YZqJ4"], "start_seconds": ["130", "0"], "properties": ["food, sizzle, speak", "tune, play, whistling"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yVumC9TGknc", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["humming, clock, birds", "a woman, a television program, a bird"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a series of beeps and chirps", "a woman is speaking and a dog is whimpering"], "question": "which entity has a clock?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "a man speaks while rain falls onto a hard surface"], "sample_ids": ["x6ijhqRY38s", "wqN6IIHw3po"], "start_seconds": ["250", "30"], "properties": ["something metal, glass, hit", "rain, surface, fall"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "in your own words what is happening in this screenshot? blood splattered all over the place"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and water is splashing"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a clock ticktocks continuously", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vlJS7LN2XyM", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "multiple, people, yell"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["an adult woman and an adult man speak", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zTLVJCo4WEE", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["two people, adult, speak", "female, spraying, scream"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman and a man speaking?", "label": 0}, {"captions": ["an engine runs and wind blows", "birds chirp and objects are moved around"], "sample_ids": ["vs65y4qmyBE", "yPUYU6t3rwo"], "start_seconds": ["340", "370"], "properties": ["engine, run, wind", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "insects buzz and a man speaks"], "question": "which entity is moving around objects", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sG7TyPnFDR0", "wqZ135Ssz0"], "start_seconds": ["180", "60"], "properties": ["beeps, machine, smoke alarm", "two men, woman, birds"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "a vehicle accelerates squealing tires"], "sample_ids": ["tezvROoo4bs", "sd7xVssqlw"], "start_seconds": ["40", "50"], "properties": ["audio, throttle, speaking", "accelerates, tires, squealing"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", null], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a duck quacks several times", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vh30P49Po6s", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["quacks, duck, several", "gun, shoot, water"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a duck is quacking loudly", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be shot", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "people speak as gunfire rings out"], "sample_ids": ["wqADXCzngMw", "wqTCwqVRDlk"], "start_seconds": ["340", "80"], "properties": ["engine, idle, man", "gunfire, ring, speak"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tOSWIURC-4", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["engine, work, nearby", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a lawn mower is running ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a duck quacks several times"], "sample_ids": ["zcDwZ6W7E3E", "vh30P49Po6s"], "start_seconds": ["180", "30"], "properties": ["man, speak, motorcycles", "quacks, duck, several"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is a single action", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["xyL9F5VrjkE", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["wind, motor, distance", "male, duck, laugh"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a child yells and another yells", "dishes cling together then a man begins to speak"], "sample_ids": ["vMDHu7Lxcgw", "sQGXqGcwOTc"], "start_seconds": ["410", "3"], "properties": ["two, yell, child", "cling, speak, dishes"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a woman speaks as she rubs two objects together"], "sample_ids": ["xzKKf9bKNUo", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["background, noise, snoring", "two objects, woman, speak"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "an engine runs loudly"], "sample_ids": ["w5W5Kqtc8E", "vqZuVbG6-HI"], "start_seconds": ["100", "130"], "properties": ["wind, blow, vehicle", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a lawn mower is running and men are speaking "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a motorcycle engine works nearby", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tOSWIURC-4", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["engine, work, nearby", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a lawn mower is running ", "a race car accelerates and revs its engine "], "question": "which entity has a vehicle passing by?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "metal clacking as food and oil sizzles followed by a woman talking"], "sample_ids": ["zcDwZ6W7E3E", "vW4x7S1VfQc"], "start_seconds": ["180", "150"], "properties": ["a, man, speak", "clacking, oil, woman"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a person cooking fish in a frying pan on a stove top"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "food sizzles in a frying pan"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sEprKHm8Sj8", "ukg5L09Wpvo"], "start_seconds": ["90", "150"], "properties": ["noise, loud, buzzing", "clickety-clack, train, whistle"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a train blows its whistle and blows its horn "], "question": "which noise is continuous", "label": 1}, {"captions": ["some men converse over an engine running", "someone snores nearby"], "sample_ids": ["sCiy7QS1U", "spJCm8tD9Zo"], "start_seconds": ["300", "90"], "properties": ["men, converse, engine", "someone snores, nearby, someone"], "captions_pred_video": [null, "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wsHBIgzs9Fs", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["horn, continuous, buzzing", "music, gunfire, explosion"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "water flows and trickles"], "sample_ids": ["v7jJS8aAyA", "tB7hWb9gTuQ"], "start_seconds": ["10", "30"], "properties": ["wind, blows, loudly", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["tw76HGONaKg", "yeFvk9x0wWI"], "start_seconds": ["570", "30"], "properties": ["A, game, keyboard", "clack, bird, chirp"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "birds chirp in the background as a car drives by "], "question": "which entity is not a video game", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wfHeoPDLMaM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "stream, water, flow"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage is blurry and out of focus"], "captions_pred_audio": ["ducks are quacking", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak and tapping occurs", "some men converse over an engine running"], "sample_ids": ["tFCUUGdREgA", "sCiy7QS1U"], "start_seconds": ["70", "300"], "properties": ["people, tap, speak", "men, converse, engine"], "captions_pred_video": ["a person riding a white horse in an indoor arena", null], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows people speaking and tapping occurs?", "label": 0}, {"captions": ["people speak and tapping occurs", "wind blowing followed by a zoom"], "sample_ids": ["tFCUUGdREgA", "vr8ZXjEBhMQ"], "start_seconds": ["70", "150"], "properties": ["people, tap, speak", "wind, blow, zoom"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to blow", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a man speaks as a motor runs in the background"], "sample_ids": ["zk-xJGQU8-4", "xZepNM9qcRA"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "background, motor, run"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a dark barks and whimpers"], "sample_ids": ["sWZzXuWYY", "sYj4hpDUZDQ"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "barks, whimpers, dark"], "captions_pred_video": [null, "a brown and white dog standing in front of a wall with its mouth open"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a dog barks and a cat meows"], "question": "which entity is quieter", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "water pouring and bubbling"], "sample_ids": ["vXlk0lIQBFo", "uyRfq-jKPpo"], "start_seconds": ["470", "50"], "properties": ["wind, talk, vocalize", "water, bubbles, pouring"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a train horn sounds and railroad crossing ring", "paper is crumpling consistently"], "sample_ids": ["s7knHCFW82w", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["horn, sound, train", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a person screams glaringly"], "sample_ids": ["sNB8zxXneIM", "xC8kbrKJmco"], "start_seconds": ["20", "0"], "properties": ["several, quack, cocks", "glaringly, screams, person"], "captions_pred_video": ["a group of geese in a cage", null], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a goat is bleating "], "question": "which entity is a person?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "several insects fly while two men talk"], "sample_ids": ["yRx9txMcBl0", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["motors, tires, screech", "several, fly, men"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "small dogs yip and bark sharply"], "sample_ids": ["vW4x7S1VfQc", "v-wcQf4BDY0"], "start_seconds": ["150", "120"], "properties": ["clacking, oil, woman", "bark, yip, sharply"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["food sizzles in a frying pan", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["yYEVLuqEytU", "vKrYfzleLB8"], "start_seconds": ["40", "110"], "properties": ["animal, pig, background", "a, ring, gunshots"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity has more gunshots", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "birds chirp and objects are moved around"], "sample_ids": ["y1saVTXsKwc", "yPUYU6t3rwo"], "start_seconds": ["80", "370"], "properties": ["a, dog, talk", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a dog playing with a pink ball", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a dog barks and a man speaks", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "some men converse over an engine running"], "sample_ids": ["vuUVPzd2FXw", "sCiy7QS1U"], "start_seconds": ["160", "300"], "properties": ["a, steam, release", "men, converse, engine"], "captions_pred_video": ["of the person cooking on the grill with a spatula", null], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man talking?", "label": 0}, {"captions": ["a jet engine roars, almost making a man inaudible", "a man speaks as a boat engine runs"], "sample_ids": ["xfaoyyzw2WU", "wtDqrBygTcU"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "man, engine, run"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "shows a person riding on the back of a boat as it speeds through the water"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking and a motor is running"], "question": "which engine is running", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "birds chirp and objects are moved around"], "sample_ids": ["y2bVZ7rz-5M", "yPUYU6t3rwo"], "start_seconds": ["280", "370"], "properties": ["motor noise, horn, siren", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "three men talk while wind blows and some liquid flows"], "sample_ids": ["rqu8iB22IY", "vJ7JPEFhyLA"], "start_seconds": ["5", "16"], "properties": ["sound, repeats, laugh", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man talking?", "label": 1}, {"captions": ["a person is burping while a girl speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vdoxuJn9lTc", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["person, burp, girl", "a woman, a television program, a bird"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a child speaks followed by a burp", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird nearby?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a vehicle engine accelerates and wind blows"], "sample_ids": ["uzQnlJXBbOM", "wudZTNBtVqc"], "start_seconds": ["50", "60"], "properties": ["ringing, beep, stop", "accelerates, engine, wind"], "captions_pred_video": ["footage of a person using a cell phone on a table", "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["a telephone rings and a man speaks", "a car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks as several small engines run", "a woman and man are speaking"], "sample_ids": ["u9A6VZQCZpU", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["a, man, talk", "two people, speaking, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "tapping occurs then a baby cries"], "sample_ids": ["weDbePuc-Xc", "wIJK3-5y0kA"], "start_seconds": ["40", "30"], "properties": ["cartoon character, music, vocalize", "a, cry, baby"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a baby cries and a woman speaks"], "question": "which entity is a baby?", "label": 1}, {"captions": ["a toilet flushes and water drains", "an infant crying as a woman laughs"], "sample_ids": ["sfAvvZwdLCY", "xhmRY9yhC7c"], "start_seconds": ["20", "20"], "properties": ["water drains, flushes, water", "a, laugh, infant"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a toilet is flushed", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["xvDdE3zNf8Y", "x9JovgqUcs"], "start_seconds": ["120", "500"], "properties": ["a, female, speaks", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "repeated tapping is accompanied by water running and a woman speaking softly"], "sample_ids": ["sDSppXIlJrs", "wvKpEYswXO0"], "start_seconds": ["27", "150"], "properties": ["microphone, water, wind", "sound, water, running"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "of the person preparing food in the kitchen"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a woman is speaking and tapping with background noise and water running "], "question": "which entity has water running?", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["xSKJGCItUWE", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["engine, run, boy", "people, applaud, hoot"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a dark barks and whimpers", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sYj4hpDUZDQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "stream, water, flow"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "people cheer as a vehicle engine revs"], "sample_ids": ["wvKpEYswXO0", "xjhAnI2q6hM"], "start_seconds": ["150", "6"], "properties": ["water, tap, run", "engine revs, vehicle, people"], "captions_pred_video": ["of the person preparing food in the kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["birds chirp as a bell rings", "a duck quacks continuously"], "sample_ids": ["ziUT9IFTkjg", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["chirp, bell, ring", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 0}, {"captions": ["food is frying then a woman speaks", "birds chirp as a man speaks and a younger person speaks"], "sample_ids": ["ukxt9I7eMMg", "xl2PIWyXaM"], "start_seconds": ["30", "160"], "properties": ["food, woman, speak", "chirp, man, younger person"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "birds are chirping and people are talking"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["speaking following by laughing and clapping", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["u2f5NpsoHBg", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["person, laugh, clap", "a woman, laughs, animal"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a woman is speaking and a baby is crying"], "question": "which entity has a person speaking and laughing and clapping?", "label": 0}, {"captions": ["pigeons vocalize and birds chirp", "a clock ticktocks"], "sample_ids": ["uiS58TNyUiw", "v-g-j2uTByM"], "start_seconds": ["430", "30"], "properties": ["vocalize, bird, chirp", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of the pigeon in the cage", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["water bubbles and gurgles.", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tB7hWb9gTuQ", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["bubbles, gurgles, water", "female, spraying, scream"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["water is splashing and gurgling", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and spraying?", "label": 1}, {"captions": ["an airplane engine spools and people speak", "water pouring and bubbling"], "sample_ids": ["wTjoRj1se3U", "uyRfq-jKPpo"], "start_seconds": ["390", "50"], "properties": ["airplane, engine, spool", "water, bubbles, pouring"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a jet engine is running and people are talking", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["women speak and laugh as wind blows", "pigeons vocalize and birds chirp"], "sample_ids": ["un9VQlzgZM", "uiS58TNyUiw"], "start_seconds": ["5", "430"], "properties": ["wind, speak, laugh", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["y8dSeubCNI", "yajyRTUQk3U"], "start_seconds": ["4", "400"], "properties": ["men, women, car", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["continuous sneezing together with speech", "a stream of water runs briefly"], "sample_ids": ["x4dZyf9Gbj0", "x-PeY8Yb8M4"], "start_seconds": ["130", "300"], "properties": ["continuous, sneeze, speech", "stream, water, run"], "captions_pred_video": ["footage is blurry and out of focus", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman sneezes and speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yI-KvObbDoY", "yajyRTUQk3U"], "start_seconds": ["260", "400"], "properties": ["sound, smack, wind", "a woman, something, fried"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "- a woman cooking in the kitchen"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uEU-Hg5MTN8", "vb1fPSDI4c"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "multiple, people, yell"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tDVADusiIoc", "uZesmtKZGSw"], "start_seconds": ["60", "250"], "properties": ["wind, radio, waves", "men, talk, cars"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "a duck quacks loudly and continuously"], "sample_ids": ["w2JXXIAdUdg", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["emits, sleeping, person", "loud, continuous, quacks"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a duck quacks continuously"], "sample_ids": ["vcmWSmvti8", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "an airplane engine runs"], "sample_ids": ["un9VQlzgZM", "yVPZ2MNWpms"], "start_seconds": ["5", "0"], "properties": ["females, talk, laugh", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a person speaks over rustling leaves"], "sample_ids": ["rwTERCUno", "zOZleIRqZm4"], "start_seconds": ["90", "80"], "properties": ["engine, idle, sputter", "rustling, leaves, person"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking with crickets chirping in the background"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a horn honks and then loudly blares", "winds blows roughly as a vehicle races past"], "sample_ids": ["wnpJndXuxLc", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["horn, honk, loud", "wind, blows, vehicle"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a dog whimpers and a woman briefly talks", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["y1saVTXsKwc", "vVhthZ45k3Y"], "start_seconds": ["80", "30"], "properties": ["a, dog, talk", "cat, purr, hiss"], "captions_pred_video": ["a dog playing with a pink ball", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking and a cat is meowing"], "question": "which animal is more active", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tEE3MpBt1sg", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["drill, something, laugh", "a woman, something, fried"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "- a woman cooking in the kitchen"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a horn blasts as warning bells ring"], "sample_ids": ["sfAvvZwdLCY", "zgUgkpk78xU"], "start_seconds": ["20", "70"], "properties": ["flushes, drains, water", "horn, bells, ring"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a toilet is flushed", "a train blows its horn as it speeds down the tracks "], "question": "which entity is louder", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "wind blows as people chatter quietly"], "sample_ids": ["sQGXqGcwOTc", "xBxDz0CFVn0"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "wind, chatter, people"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "water flows followed by women screaming"], "sample_ids": ["vK93VuO0yNc", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["male voice, bus, rumble", "water, flow, women"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", null], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is followed by a soft male voice", "label": 0}, {"captions": ["a man woman speak while crickets sing", "a man speaks as a motor runs in the background"], "sample_ids": ["zTLVJCo4WEE", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "background, motor, run"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a duck quacks continuously"], "sample_ids": ["uqFtmnhuqA8", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "quacks, continuously, duck"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "wind blowing followed by a zoom"], "sample_ids": ["siJFXfGWgDk", "vr8ZXjEBhMQ"], "start_seconds": ["50", "150"], "properties": ["a, bird, vehicle", "wind, blow, zoom"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more like a natural phenomenon", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["y2bVZ7rz-5M", "wSVhSdj0F0"], "start_seconds": ["280", "10"], "properties": ["motor noise, horn, siren", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a car horn honks and keys jangle with background noise "], "question": "which entity has a horn honk and keys jingle?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sQGXqGcwOTc", "uYT5gxnyMWM"], "start_seconds": ["3", "50"], "properties": ["cling, speak, dishes", "female, spraying, scream"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "an infant crying as a woman laughs"], "sample_ids": ["xl2PIWyXaM", "xhmRY9yhC7c"], "start_seconds": ["160", "20"], "properties": ["chirp, man, younger person", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds are chirping and people are talking", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["w34HjHr6gAY", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["beeps, squawk, child speaking", "two men, woman, birds"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "water splashes and a door squeaks"], "sample_ids": ["sOa7g-44Dag", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["audio, scratching, man", "sound, splash, door"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a dog barks and taps with background noise "], "question": "which entity has a door squeaking?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "water splashes as an animal walks through"], "sample_ids": ["tOSWIURC-4", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["engine, work, nearby", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a lawn mower is running ", "water splashes and gurgles as people speak"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a clock ticktocks briefly", "water pouring and bubbling"], "sample_ids": ["u7C-AEBQM", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["ticktocks, clock, ticktocks briefly", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a ticktock of a clock", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vYkA3cfXp5Q", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["engine, accelerate, idle", "airplane, boy, fly"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["an engine is idling", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a moving object", "label": 1}, {"captions": ["birds coo incessantly", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yZrFNS7GFBQ", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["coo, bird, incessant", "loud, multiple, distance"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["water flows and trickles", "waves crash against a shoreline and people speak"], "sample_ids": ["tB7hWb9gTuQ", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["water, flow, trickle", "wave, crash, shoreline"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "footage of a person surfing in the ocean"], "captions_pred_audio": ["water is splashing and gurgling", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sZPuqDgX2V0", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, intercom", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster crow?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["zofjfKhqLk8", "s7knHCFW82w"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "blow horn, get close, train"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a train is blowing its horn and its wheels are squealing "], "question": "which is a train", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tK4VlLsNxak", "w5W5Kqtc8E"], "start_seconds": ["120", "100"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "wind, blow, vehicle"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "water rushes and then a vehicle zooms past"], "sample_ids": ["vqZuVbG6-HI", "s4Uz1Ffgo04"], "start_seconds": ["130", "100"], "properties": ["background, male, female", "water, rushes, vehicle"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more active", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wSVhSdj0F0", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["horn honks, keys jingle, electronic beep", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "continuous sneezing together with speech"], "sample_ids": ["vZAw4apG0Es", "x4dZyf9Gbj0"], "start_seconds": ["30", "130"], "properties": ["people, clock, converse", "continuous, sneeze, speech"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman sneezes and speaks"], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["an aircraft engine runs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yLCORCnd35Q", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["engine, aircraft, runs", "music, gunfire, explosion"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a movie scene?", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "an insect buzzes around continuously"], "sample_ids": ["wTjoRj1se3U", "v25l1jef3JY"], "start_seconds": ["390", "0"], "properties": ["engine, run, people", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a jet engine is running and people are talking", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["wvKpEYswXO0", "tiDFTC-5vU"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "male, duck, laugh"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking as others laugh?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "small dogs yip and bark sharply"], "sample_ids": ["zk-xJGQU8-4", "v-wcQf4BDY0"], "start_seconds": ["130", "120"], "properties": ["food, man, woman", "bark, yip, sharply"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sWZzXuWYY", "tiDFTC-5vU"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking and ducks are quacking"], "question": "which entity is more humorous", "label": 1}, {"captions": ["a helicopter engine runs continuously", "small dogs yip and bark sharply"], "sample_ids": ["ugHJF0hfYkg", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["engine, running, continuously", "bark, yip, sharply"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a helicopter is flying overhead ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a dog barks and whimpers", "pigeons vocalize and birds chirp"], "sample_ids": ["sShpyu2l4YQ", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["barks, whimpers, dog", "vocalize, bird, chirp"], "captions_pred_video": ["the puppies are playing with a toy", "of the pigeon in the cage"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["birds coo incessantly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["yZrFNS7GFBQ", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["coo, bird, incessant", "loud, laughter, intermittent"], "captions_pred_video": ["of the bird in the cage", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["an owl hoots in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a speedboat passes quickly on the water", "someone snores nearby"], "sample_ids": ["tjmoSi330GM", "spJCm8tD9Zo"], "start_seconds": ["23", "90"], "properties": ["speed, water, boat", "someone snores, nearby, someone"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a person is snoring loudly"], "question": "which entity is moving", "label": 0}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["s4Uz1Ffgo04", "uZesmtKZGSw"], "start_seconds": ["100", "250"], "properties": ["roars, background, people speaking", "men, talk, cars"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["people speak in the background as a clock ticktocks", "a car accelerates and wind blows"], "sample_ids": ["vZAw4apG0Es", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, clock, ticktocks", "accelerates, wind, blows"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a horse runs while two women talk", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sdvI1mHAsc", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["two women, horse, run", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people", "label": 1}, {"captions": ["a person is snoring while sleeping", "a cat meows as a young woman speaks"], "sample_ids": ["vJrjSeP17yE", "x5cuQjOdM3E"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "cat, meows, young woman"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a person snoring loudly", "a cat meows and a woman speaks"], "question": "which entity is a person", "label": 0}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["wSVhSdj0F0", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["horn honks, keys jingle, electronic beep", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a man woman speak while crickets sing", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zTLVJCo4WEE", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, crickets, sing", "three men, wind, flow"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks as several small engines run", "a horn rings out as a machine runs by"], "sample_ids": ["u9A6VZQCZpU", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["a, man, talk", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a speedboat passes quickly on the water"], "sample_ids": ["ukg5L09Wpvo", "tjmoSi330GM"], "start_seconds": ["150", "23"], "properties": ["clickety-clack, train, whistle", "speed, water, boat"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["a jet engine screams, then increases its power", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vBslzh7saPw", "tiDFTC-5vU"], "start_seconds": ["90", "30"], "properties": ["power, scream, increase", "male, duck, laugh"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "winds blows roughly as a vehicle races past"], "sample_ids": ["sapQIQUhFc", "xjvTpk2Zpr8"], "start_seconds": ["280", "70"], "properties": ["water, trickles, flow", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["y8WEcpOlT3I", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["harsh, wind, blows", "engine revs, vehicle, people"], "captions_pred_video": ["on how to use a sewing machine youtube", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tPJvjq9QePY", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["animal, bleat, moo", "loud, multiple, distance"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["vdoxuJn9lTc", "y2bVZ7rz-5M"], "start_seconds": ["40", "280"], "properties": ["burp, loud, girl", "motor noise, horn, siren"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a child speaks followed by a burp", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["a duck quacks several times", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vh30P49Po6s", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["quacks, duck, several", "female, spraying, scream"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["paper is crumpling consistently", "a woman talking as an infant is crying"], "sample_ids": ["v5cSxLaHADY", "tMbMDvT50j8"], "start_seconds": ["0", "12"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "a, talk, infant"], "captions_pred_video": ["footage of the person holding a pair of scissors", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["paper is crumpled and crinkled", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["small dogs yip and bark sharply", "children speak and play together"], "sample_ids": ["v-wcQf4BDY0", "yVVP8XvWJTo"], "start_seconds": ["120", "260"], "properties": ["bark, yip, sharply", "children, speak, play"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a dog barks and growls", "children are speaking and breathing with background noise "], "question": "which entity is more social", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "an airplane engine runs"], "sample_ids": ["tEE3MpBt1sg", "yVPZ2MNWpms"], "start_seconds": ["50", "0"], "properties": ["drill, something, laugh", "engine, airplane, runs"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vhJWZheqaE", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["water drains unevenly, toilet flushes, water drains", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a toilet is flushed", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["people speak and tapping occurs", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tFCUUGdREgA", "tdWhHV3X25Q"], "start_seconds": ["70", "60"], "properties": ["people, tap, speak", "applause, audience, yells"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zkKdxzNC97Y", "sLUnaPT5gM8"], "start_seconds": ["27", "0"], "properties": ["hard, surface, door", "loud, laughter, intermittent"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a door is opened and closed", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wRBHTgrbiwg", "zFjIWfSD-4"], "start_seconds": ["50", "410"], "properties": ["bird, owl, speak", "People, motor, brakes"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man speaking briefly?", "label": 0}, {"captions": ["a loud snarling engine is followed by a man laughing", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zl9Dqx-j7q4", "wDVMhEdTiVw"], "start_seconds": ["6", "30"], "properties": ["engine, laugh, loud", "gun, shoot, water"], "captions_pred_video": ["footage of a man driving a car in the dark", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a jet engine roars ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is followed by water sloshing", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a young woman speaks over spraying and another person yells"], "sample_ids": ["uoGVs9yUqY4", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["multiple, vocalize, wind", "person, spray, yell"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "an infant crying as a woman laughs"], "sample_ids": ["xjhAnI2q6hM", "xhmRY9yhC7c"], "start_seconds": ["6", "20"], "properties": ["engine revs, vehicle, people", "a, laugh, infant"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water drains", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sfAvvZwdLCY", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["water drains, flushes, water", "music, gunfire, explosion"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a toilet is flushed", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a scene of a toilet flushing and water draining?", "label": 0}, {"captions": ["a kid speaks followed by music playing", "dishes cling together then a man begins to speak"], "sample_ids": ["tQWGZLItBXk", "sQGXqGcwOTc"], "start_seconds": ["170", "3"], "properties": ["music, kid, speak", "cling, speak, dishes"], "captions_pred_video": ["worms revolution screenshots", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "mechanisms are operating and water is splashing "], "question": "which entity is about a kid speaking?", "label": 0}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tZGN5a7ybxo", "xfaoyyzw2WU"], "start_seconds": ["60", "180"], "properties": ["ring, train, horn", "loud, jet engine, roar"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a train is moving and blowing its horn ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yFB25fqfU8I", "yDoT73BWsdA"], "start_seconds": ["300", "10"], "properties": ["wave, crash, shoreline", "engine, revs, vehicle"], "captions_pred_video": ["footage of a person surfing in the ocean", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "pigeons vocalize and birds chirp"], "sample_ids": ["wnpJndXuxLc", "uiS58TNyUiw"], "start_seconds": ["50", "430"], "properties": ["blows, vehicle, train", "vocalize, bird, chirp"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of the pigeon in the cage"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["y1saVTXsKwc", "vfYTJq7nU"], "start_seconds": ["80", "130"], "properties": ["a, dog, talk", "rustling, ducks, quack"], "captions_pred_video": ["a dog playing with a pink ball", null], "captions_pred_audio": ["a dog barks and a man speaks", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a duck quacks loudly and continuously"], "sample_ids": ["wAAkbZToh8", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man burps and a woman speaks", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["wP8ZKrlx3oA", "wnpJndXuxLc"], "start_seconds": ["40", "50"], "properties": ["fall, rain, splash", "beeps, loud, whistle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["tPJvjq9QePY", "yLy-WycbVVE"], "start_seconds": ["40", "30"], "properties": ["animal, bleat, moo", "background, people, talk"], "captions_pred_video": ["a dog and a sheep in a barn", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "wind blows as people chatter quietly"], "sample_ids": ["vJ7JPEFhyLA", "xBxDz0CFVn0"], "start_seconds": ["16", "30"], "properties": ["three men, wind, flow", "wind, chatter, people"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yFB25fqfU8I", "uEU-Hg5MTN8"], "start_seconds": ["300", "27"], "properties": ["wave, crash, shoreline", "a woman, laughs, animal"], "captions_pred_video": ["footage of a person surfing in the ocean", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a stream of water runs briefly"], "sample_ids": ["x5cuQjOdM3E", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["cat, meows, young woman", "stream, water, run"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a cat meows and a woman speaks", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["an engine runs and wind blows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vs65y4qmyBE", "yDoT73BWsdA"], "start_seconds": ["340", "10"], "properties": ["engine, run, wind", "engine, revs, vehicle"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a child speaks in closed space"], "sample_ids": ["zl9Dqx-j7q4", "yW6FWLSLkx4"], "start_seconds": ["6", "40"], "properties": ["motors rev, laugh, loudly", "child, space, speak"], "captions_pred_video": ["footage of a man driving a car in the dark", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a jet engine roars ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wwyfGO2J4", "yajyRTUQk3U"], "start_seconds": ["90", "400"], "properties": ["people, applaud, hoot", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is about food?", "label": 1}, {"captions": ["a man talks while vehicles pass by", "some men converse over an engine running"], "sample_ids": ["sK4u5T8hW78", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["a, man, talk", "men, converse, engine"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man talking while vehicles pass by?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "paper is crumpling consistently"], "sample_ids": ["w5W5Kqtc8E", "v5cSxLaHADY"], "start_seconds": ["100", "0"], "properties": ["wind, engine, scream", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "paper is crumpled and crinkled"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yLy-WycbVVE", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "male, duck, laugh"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a man is speaking and ducks are quacking"], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a woman speaks as she rubs two objects together"], "sample_ids": ["slZLHwNbbt4", "vzxHnu-SFEw"], "start_seconds": ["300", "80"], "properties": ["clap, distance, horn", "two objects, woman, speak"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["xfudFO976zE", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["animal, bleats, cry", "animal, grunts, snorts"], "captions_pred_video": ["footage is blurry and shaky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a woman is speaking and a baby is crying"], "question": "which animal is grunting and snorting", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "someone is typing on a computer keyboard"], "sample_ids": ["xyL9F5VrjkE", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["wind, blows, vehicle", "keyboard, type, computer"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "how to make money on youtube in spanish"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a person is typing on a keyboard"], "question": "which is not a vehicle", "label": 1}, {"captions": ["people speak as gunfire rings out", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wqTCwqVRDlk", "xKB8O8LTs6s"], "start_seconds": ["80", "70"], "properties": ["gunfire, ring, speak", "music, gunfire, explosion"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a gun is fired", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a child speaks", "a toilet flushes and water drains"], "sample_ids": ["yW6FWLSLkx4", "sfAvvZwdLCY"], "start_seconds": ["40", "20"], "properties": ["a, child, speaks", "water drains, flushes, water"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "water flows as men speak and yell"], "sample_ids": ["s4Uz1Ffgo04", "vJ7JPEFhyLA"], "start_seconds": ["100", "16"], "properties": ["roars, background, people speaking", "water, flow, men"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "a propeller moves loudly nearby"], "sample_ids": ["vYkA3cfXp5Q", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["speed, idle, accelerate", "loud, propeller, move"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["an engine is idling", "a helicopter is flying overhead "], "question": "which entity is moving at a constant speed", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wqADXCzngMw", "ukg5L09Wpvo"], "start_seconds": ["340", "150"], "properties": ["engine, idle, man", "clickety-clack, train, whistle"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a train blows its whistle and blows its horn "], "question": "which train is going to be moving?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a man speaks as a car is passing by"], "sample_ids": ["ugHJF0hfYkg", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "a, car, pass"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is stationary", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["v0wPrLBI3hg", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["vocalize, bird, speak", "a train, a horn, a bell"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a train blows its whistle and blows its horn "], "question": "which entity is a warning", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vs65y4qmyBE", "w5W5Kqtc8E"], "start_seconds": ["340", "100"], "properties": ["wind, blows, strongly", "wind, blow, vehicle"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blows?", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "a telephone rings followed by a woman talking"], "sample_ids": ["vZAw4apG0Es", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["people, clock, converse", "ring, talk, woman"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation between two people?", "label": 0}, {"captions": ["paper folding and crinkling", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zPpG3RD8lSs", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["paper, fold, crinkle", "music, gunfire, explosion"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a steam engine runs and whistles as it passes by"], "sample_ids": ["zY3icUyMdh8", "se87d6yxEOA"], "start_seconds": ["20", "10"], "properties": ["dog, bark, engine", "run, whistle, pass"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a train is moving and blowing its whistle "], "question": "which entity is a steam engine?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yJ0TePmaOo", "su6FAOcOA8c"], "start_seconds": ["390", "4"], "properties": ["two hard objects, man, speak", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a woman is speaking and a subway train is moving "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a small engine idles continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["y5WII6cTH7k", "yDoT73BWsdA"], "start_seconds": ["40", "10"], "properties": ["engine, idle, continuously", "engine, revs, vehicle"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a race car accelerates and revs its engine "], "question": "which engine is revving", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a man talks as several small engines run"], "sample_ids": ["uiS58TNyUiw", "u9A6VZQCZpU"], "start_seconds": ["430", "30"], "properties": ["vocalize, bird, chirp", "a, man, talk"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking while a race car is revving and accelerating "], "question": "which entity is talking", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a stream of water runs briefly"], "sample_ids": ["vddP56-ogds", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["water, splash, person, laugh", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "an insect buzzes around continuously"], "sample_ids": ["wwyfGO2J4", "v25l1jef3JY"], "start_seconds": ["90", "0"], "properties": ["people, applaud, hoot", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["people speak in a closed space", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sTpirNYo8vQ", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["people, space, speak", "animal, grunts, snorts"], "captions_pred_video": ["of a man taking a selfie on a bus", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["an airplane engine spools and people speak", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["wTjoRj1se3U", "tezvROoo4bs"], "start_seconds": ["390", "40"], "properties": ["airplane, engine, spool", "audio, throttle, speaking"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car accelerates and revs while a man speaks "], "question": "which entity is about an airplane engine?", "label": 0}, {"captions": ["young female child snoring and breathing deeply", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sAam2NqGhLY", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["snoring, breathing, child", "rustling, ducks, quack"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "a duck quacks and a woman speaks"], "question": "which entity is a video of a child?", "label": 0}, {"captions": ["a man speaks then multiple motorcycles pass by", "a telephone rings followed by a woman talking"], "sample_ids": ["zcDwZ6W7E3E", "tGcFnX0GHI"], "start_seconds": ["180", "0"], "properties": ["a, man, speak", "ring, talk, woman"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a train horn blows as it passes by"], "sample_ids": ["zCrAfDfv6-A", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "horn, blows, train"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a person whistles a song", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["wfHeoPDLMaM", "wyllXV6PjKo"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "a baby, a woman, a man"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a woman speaks and a baby cries"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a machine runs", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vD6lYD1l0BY", "uYT5gxnyMWM"], "start_seconds": ["330", "50"], "properties": ["a, machine, run", "a, scream, girl"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["water pouring and bubbling", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uyRfq-jKPpo", "tdWhHV3X25Q"], "start_seconds": ["50", "60"], "properties": ["water, bubbles, pouring", "applause, audience, yells"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["water is running from a faucet", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a child speaks in closed space"], "sample_ids": ["se87d6yxEOA", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["run, whistle, pass", "child, space, speak"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["s6DESzUTGjY", "w5W5Kqtc8E"], "start_seconds": ["16", "100"], "properties": ["wind, laugh, woman", "wind, blow, vehicle"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blows before women yell?", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xyL9F5VrjkE", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["wind, motor, distance", "multiple, people, yell"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["children speak as a female ask them questions", "people cheer as a vehicle engine revs"], "sample_ids": ["wEBlkGWVWwE", "xjhAnI2q6hM"], "start_seconds": ["260", "6"], "properties": ["female, speak, questions", "engine revs, vehicle, people"], "captions_pred_video": ["shows a person writing on the whiteboard", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "winds blows roughly as a vehicle races past"], "sample_ids": ["sZvwOuuPGP0", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["engine, diesel, truck", "wind, blows, vehicle"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a medium engine is running ", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uYT5gxnyMWM", "w34HjHr6gAY"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "beeps, hit, woman"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "paper is crumpling consistently"], "sample_ids": ["wRV8yMk886E", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["liquid, spray, nozzle", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man speaks followed by a loud burst", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a horn rings out as a machine runs by"], "sample_ids": ["u2f5NpsoHBg", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["person, laugh, clap", "a, horn, run"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["s3cTDAj31g", "vlS6YMeWAPo"], "start_seconds": ["80", "40"], "properties": ["man, talk, woman", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["zuua6-5goWw", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["birds, chirp, quiet, man, speaks", "two objects, woman, speak"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a beep repeats multiple times", "a horn honks twice and keys jingle, followed by a slam and an electronic beep"], "sample_ids": ["y682ml90jGw", "wSVhSdj0F0"], "start_seconds": ["11", "10"], "properties": ["beep, repeat, multiple", "horn honks, keys jingle, slam"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a car horn honks and keys jangle with background noise "], "question": "which entity has a slam?", "label": 1}, {"captions": ["a woman and man are speaking", "someone is typing on a computer keyboard"], "sample_ids": ["vbpKkWvfOu4", "v0x1odnXtP0"], "start_seconds": ["560", "210"], "properties": ["two people, speaking, woman, man", "keyboard, type, computer"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["some men converse over an engine running", "a clock ticktocks briefly"], "sample_ids": ["sCiy7QS1U", "u7C-AEBQM"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a ticktock of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vimzuGQvdcU", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, man, yells", "three men, wind, flow"], "captions_pred_video": ["a group of people are rafting down a river", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a duck quacks continuously"], "sample_ids": ["tjmoSi330GM", "vh30P49Po6s"], "start_seconds": ["23", "30"], "properties": ["speed, water, boat", "quacks, continuously, duck"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xjvTpk2Zpr8", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["wind, blows, vehicle", "three men, wind, flow"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a vehicle racing past?", "label": 0}, {"captions": ["a person speaks briefly", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["zOZleIRqZm4", "wSVhSdj0F0"], "start_seconds": ["80", "10"], "properties": ["person, talk, brief", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a car horn honks and keys jangle with background noise "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "frogs croak and vocalize"], "sample_ids": ["uOpoD0gGXcs", "yswmmRZFItk"], "start_seconds": ["120", "0"], "properties": ["chirps, woman, bird", "croak, vocalize, frog"], "captions_pred_video": ["a herd of cows grazing in the field", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a frog is croaking"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["uC9dtII1KDI", "sLUnaPT5gM8"], "start_seconds": ["150", "0"], "properties": ["wind, gusts, distance", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an engine revs and a turning noise is made", "a person is whistling a tune"], "sample_ids": ["tOSWIURC-4", "scYRUkrFLiQ"], "start_seconds": ["0", "30"], "properties": ["noise, engine, revs", "a, tune, whistle"], "captions_pred_video": [null, "of the man wearing a bow tie and a suit jacket in front of a red door"], "captions_pred_audio": ["a lawn mower is running ", "a person whistling a song"], "question": "which entity is not a noise", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "several insects fly while two men talk"], "sample_ids": ["xfaoyyzw2WU", "s-T9OVOiMLo"], "start_seconds": ["180", "330"], "properties": ["loud, jet engine, roar", "several, fly, men"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking while insects are buzzing in the background "], "question": "which is not a man", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a man speaks as a motor runs in the background"], "sample_ids": ["wtDqrBygTcU", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "background, motor, run"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a boat?", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zkKdxzNC97Y", "wDVMhEdTiVw"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "gun, shoot, water"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a door is opened and closed", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity has a loud bang followed by a softer banging noise?", "label": 0}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["weDbePuc-Xc", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["cartoon character, music, vocalize", "engine, laugh, loud"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "an airplane engine runs"], "sample_ids": ["se87d6yxEOA", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["run, whistle, pass", "engine, airplane, runs"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a car is driving by on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a mechanical buzzing getting louder"], "sample_ids": ["y2ZBGpgbhHM", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["birds, tweet, pant", "noise, loud, buzzing"], "captions_pred_video": [null, "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["birds chirping and a dog panting", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["some people speak", "a goat bleats and someone makes a calling noise"], "sample_ids": ["vbZ-0lGPneg", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "noise, bleat, call"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a goat bleats and birds chirp"], "question": "which entity is a noise", "label": 1}, {"captions": ["a person speaks over rustling leaves", "loud clanking and banging with brief male speech"], "sample_ids": ["zOZleIRqZm4", "sWZzXuWYY"], "start_seconds": ["80", "420"], "properties": ["rustling, leaves, person", "male, speech, banging"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a sewing machine runs and a man speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tQWGZLItBXk", "uYT5gxnyMWM"], "start_seconds": ["170", "50"], "properties": ["music, person, ding", "a, scream, girl"], "captions_pred_video": ["worms revolution screenshots", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a car speeding up in the distance"], "sample_ids": ["wTideSjRFS0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["food, sizzle, woman", "distance, car, speed"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "an animal bleats and cries out and metal bangs"], "sample_ids": ["sYITalLZjj4", "xfudFO976zE"], "start_seconds": ["30", "0"], "properties": ["water, rushes, background, birds", "animal, bleats, cry"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage is blurry and shaky"], "captions_pred_audio": ["wind blows and birds chirp", "a goat bleats and birds chirp in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an airplane engine roars increasingly louder", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vBslzh7saPw", "tDVADusiIoc"], "start_seconds": ["90", "60"], "properties": ["engine, roar, louder", "water, radio, man"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "wind blows as people chatter quietly"], "sample_ids": ["zY3icUyMdh8", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "wind, chatter, people"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a person is whistling", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sIXTftIuUgw", "zFjIWfSD-4"], "start_seconds": ["90", "410"], "properties": ["person, whistling, person", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "a drill drills through something then people begin laughing"], "sample_ids": ["yDoT73BWsdA", "tEE3MpBt1sg"], "start_seconds": ["10", "50"], "properties": ["engine revs, tires squeal, vehicle", "drill, something, laugh"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zgUgkpk78xU", "vfYTJq7nU"], "start_seconds": ["70", "130"], "properties": ["horn, bell, train", "rustling, ducks, quack"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a duck quacks and a woman speaks"], "question": "which entity is about a train?", "label": 0}, {"captions": ["a loud snarling engine is followed by a man laughing", "a person sneezes followed by another person speaking"], "sample_ids": ["zl9Dqx-j7q4", "t8CV69hcvF0"], "start_seconds": ["6", "210"], "properties": ["engine, laugh, loud", "person, sneeze, follow"], "captions_pred_video": ["footage of a man driving a car in the dark", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a jet engine roars ", "a woman sneezes and speaks"], "question": "which entity is followed by a person speaking", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a man speaks as a car is passing by"], "sample_ids": ["yRx9txMcBl0", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "a, car, pass"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["heavy rain splashes as it falls", "water flows as men speak and yell"], "sample_ids": ["wP8ZKrlx3oA", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["fall, rain, splash", "water, flow, men"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["rqfQRErjfk8", "ukg5L09Wpvo"], "start_seconds": ["170", "150"], "properties": ["crowd, cheers, applauds", "clickety-clack, train, whistle"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wyllXV6PjKo", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["a baby, a woman, a man", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a baby is crying"], "question": "which entity has a baby?", "label": 0}, {"captions": ["an airplane flies overhead as a woman speaks", "a toilet flushes and a female speaks"], "sample_ids": ["zj2R0XoFr5k", "yaln9y8I7ms"], "start_seconds": ["50", "230"], "properties": ["airplane, fly, overhead", "female, flushes, toilet"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a toilet flushes and a man speaks"], "question": "which entity is a woman speaking?", "label": 0}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a man speaks as a motor runs in the background"], "sample_ids": ["weDbePuc-Xc", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["music, slaps, human", "background, motor, run"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as a machine runs", "an infant crying frantically"], "sample_ids": ["vD6lYD1l0BY", "zwOBqeFTgiU"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "cry, infant, frantically"], "captions_pred_video": ["game controller being held in the hands of the person", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["multiple ducks quack continuously", "paper is crumpling consistently"], "sample_ids": ["wfHeoPDLMaM", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["multiple, quack, continuously", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["ducks are quacking", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a infant makes noise and is excited"], "sample_ids": ["zl9Dqx-j7q4", "wIJK3-5y0kA"], "start_seconds": ["6", "30"], "properties": ["engine, laugh, loud", "noise, excited, infant"], "captions_pred_video": ["footage of a man driving a car in the dark", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a jet engine roars ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a car accelerates and wind blows", "an engine sputters followed by a car zooming by"], "sample_ids": ["u0TrcHhkPQ", "u5RmF3c3Aw"], "start_seconds": ["20", "60"], "properties": ["accelerates, wind, blows", "engine, car, zoom"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a race car accelerates and skids with wind noise in the background "], "question": "which car is zooming by", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uWAAAL4CIoc", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["a, dog, vocalize", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["rwTERCUno", "xfaoyyzw2WU"], "start_seconds": ["90", "180"], "properties": ["engine, idle, sputter", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an engine is idling and vibrating", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "water rushes and then a vehicle zooms past"], "sample_ids": ["v0x1odnXtP0", "s4Uz1Ffgo04"], "start_seconds": ["210", "100"], "properties": ["keyboard, type, computer", "water, rushes, vehicle"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more likely to be seen in a movie", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a woman speaks and is crumpling paper"], "sample_ids": ["zgUgkpk78xU", "xvDdE3zNf8Y"], "start_seconds": ["70", "120"], "properties": ["clinking, humming, horn", "A, crumple, paper"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman speaks and crumples paper"], "question": "which entity is crumpling paper", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a duck quacks continuously"], "sample_ids": ["tOSWIURC-4", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a lawn mower is running ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a stream of water runs briefly"], "sample_ids": ["xO-Q2BlIIPU", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["two men, exclamation, speak", "stream, water, run"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uEU-Hg5MTN8", "vb1fPSDI4c"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "multiple, people, yell"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vJ7JPEFhyLA", "zl9Dqx-j7q4"], "start_seconds": ["16", "6"], "properties": ["three men, wind, flow", "engine, laugh, loud"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "birds chirp as a man speaks and a younger person speaks"], "sample_ids": ["w2M4i1mklOA", "xl2PIWyXaM"], "start_seconds": ["30", "160"], "properties": ["loud, chime, bell", "chirp, man, younger person"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "birds are chirping and people are talking"], "question": "which entity is quieter", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xERFUeZONz8", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["ring, approach, traffic", "wind, blow, vehicle"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", null], "captions_pred_audio": ["an emergency vehicle siren blares", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "small dogs yip and bark sharply"], "sample_ids": ["wztCSUxOf8", "v-wcQf4BDY0"], "start_seconds": ["130", "120"], "properties": ["a crowd, yells, applauds", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a dog barks and growls"], "question": "which entity is more likely to be a group of people", "label": 0}, {"captions": ["a sleeping person snores and wheezes", "a woman speaks as she rubs two objects together"], "sample_ids": ["spJCm8tD9Zo", "vzxHnu-SFEw"], "start_seconds": ["90", "80"], "properties": ["snores, wheezes, sleeps", "two objects, woman, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["continuous sneezing together with speech", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["x4dZyf9Gbj0", "t25U-v4k4ts"], "start_seconds": ["130", "40"], "properties": ["continuous, sneeze, speech", "a, chirps, bird"], "captions_pred_video": ["footage is blurry and out of focus", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and bees are buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["w6RTHR6AeAg", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["call, owl, screech", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a duck quacks and a woman speaks"], "question": "which entity is a bird?", "label": 0}, {"captions": ["birds chirp, a woman speaks, and insects buzz", "a man speaks as a motor runs in the background"], "sample_ids": ["t97k0cejSQE", "xZepNM9qcRA"], "start_seconds": ["250", "30"], "properties": ["sound, chirp, buzz", "background, motor, run"], "captions_pred_video": ["a bee on a purple thistle flower", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wTideSjRFS0", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["food, sizzle, woman", "loud, multiple, distance"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tIY7qOV3rEM", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "two men, woman, birds"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more animals", "label": 0}, {"captions": ["a horn blasts as warning bells ring", "a child speaks in closed space"], "sample_ids": ["zgUgkpk78xU", "yW6FWLSLkx4"], "start_seconds": ["70", "40"], "properties": ["horn, bells, ring", "child, space, speak"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an engine runs and wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["vs65y4qmyBE", "viuTg1M-dqg"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "two men, speak, follow"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a baby cries and a woman speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tMbMDvT50j8", "vfYTJq7nU"], "start_seconds": ["12", "130"], "properties": ["a, cry, woman", "rustling, ducks, quack"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a baby?", "label": 0}, {"captions": ["a woman and man speak while food is frying", "a vehicle engine revs and tires squeal"], "sample_ids": ["zk-xJGQU8-4", "yDoT73BWsdA"], "start_seconds": ["130", "10"], "properties": ["food, man, woman", "engine revs, tires squeal, vehicle"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a church bell rings several times", "several insects fly while two men talk"], "sample_ids": ["sUVVjE3Ucp8", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["ring, bell, several", "several, fly, men"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a church bell is ringing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a large engine roars and a strong wind blows", "a sputtering motor idles roughly"], "sample_ids": ["snFy48Lv3r8", "rwTERCUno"], "start_seconds": ["30", "90"], "properties": ["engine, roar, wind", "a, idle, motor"], "captions_pred_video": [null, null], "captions_pred_audio": ["the wind is blowing and water is splashing", "an engine is idling and vibrating"], "question": "which entity is quieter", "label": 1}, {"captions": ["a stream of water flows quickly", "a woman speaks as she rubs two objects together"], "sample_ids": ["wbHTKEJZyhc", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["stream, water, flow", "two objects, woman, speak"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a physical action", "label": 1}, {"captions": ["a child speaks", "small dogs yip and bark sharply"], "sample_ids": ["yW6FWLSLkx4", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["a, child, speaks", "bark, yip, sharply"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks followed by another man speaking outside", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["viuTg1M-dqg", "wRBHTgrbiwg"], "start_seconds": ["30", "50"], "properties": ["two men, speak, follow", "bird, owl, speak"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "birds are chirping and insects are buzzing"], "question": "which entity has more animals speaking", "label": 1}, {"captions": ["a person sniffs and sneezes", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uRlbY6aoBU", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["sneezes, person, sniffs", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["uWPRNLnpy7Y", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["accelerate, laugh, vehicle", "animal, grunts, snorts"], "captions_pred_video": ["is taken from a car driving down the street", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vzceMbklWc", "w5W5Kqtc8E"], "start_seconds": ["180", "100"], "properties": ["water, faucet, sink", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an emergency siren wails as it passes", "some men converse over an engine running"], "sample_ids": ["vGj1XLJvNrw", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["wails, wails, pass", "men, converse, engine"], "captions_pred_video": ["footage of a police car driving down a city street", null], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["y8WEcpOlT3I", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["wind, speak, buffeting", "a woman, something, fried"], "captions_pred_video": ["on how to use a sewing machine youtube", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tQWGZLItBXk", "zl9Dqx-j7q4"], "start_seconds": ["170", "6"], "properties": ["music, kid, speak", "engine, laugh, loud"], "captions_pred_video": ["worms revolution screenshots", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a woman speaks as she rubs two objects together"], "sample_ids": ["ylpYOorfH4o", "vzxHnu-SFEw"], "start_seconds": ["410", "80"], "properties": ["motor, run, steady", "two objects, woman, speak"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is being rubbed together?", "label": 1}, {"captions": ["a person speaks over rustling leaves", "water splashes as an animal walks through"], "sample_ids": ["zOZleIRqZm4", "w1ir-sZ3Im8"], "start_seconds": ["80", "90"], "properties": ["rustling, leaves, person", "animal, water, splashes"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zY3icUyMdh8", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "stream, water, flow"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "an infant crying as a woman laughs"], "sample_ids": ["x6ijhqRY38s", "xhmRY9yhC7c"], "start_seconds": ["250", "20"], "properties": ["something metal, glass, hit", "a, laugh, infant"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman sneezes then speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["x4dZyf9Gbj0", "zl9Dqx-j7q4"], "start_seconds": ["130", "6"], "properties": ["sneezes, speaks, woman", "engine, laugh, loud"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman sneezes and speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "an infant crying as a woman laughs"], "sample_ids": ["vVhthZ45k3Y", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["cat, purr, hiss", "a, laugh, infant"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["an audience gives applause", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["x6iCUDmRpKQ", "tiDFTC-5vU"], "start_seconds": ["38", "30"], "properties": ["applause, audience, give", "male, duck, laugh"], "captions_pred_video": ["a black background with the moon and stars in the sky", null], "captions_pred_audio": ["a group of people are clapping and cheering", "a man is speaking and ducks are quacking"], "question": "which is not a person", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "a train horn blows as it passes by"], "sample_ids": ["tOSWIURC-4", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["noise, engine, revs", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a lawn mower is running ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which train is making noise", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a kid speaks followed by music playing"], "sample_ids": ["rwtmaKiCcQU", "tQWGZLItBXk"], "start_seconds": ["30", "170"], "properties": ["nozzle, depressed, spray can", "music, kid, speak"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "worms revolution screenshots"], "captions_pred_audio": ["spraying and people speaking", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a nozzle depressed", "label": 0}, {"captions": ["a car accelerates and wind blows", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["u0TrcHhkPQ", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["accelerates, wind, blows", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xl2PIWyXaM", "wDVMhEdTiVw"], "start_seconds": ["160", "30"], "properties": ["chirp, man, younger person", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["birds are chirping and people are talking", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wTjoRj1se3U", "xfaoyyzw2WU"], "start_seconds": ["390", "180"], "properties": ["engine, run, people", "loud, jet engine, roar"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a jet engine is running and people are talking", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "water flows as men speak and yell"], "sample_ids": ["uZesmtKZGSw", "vJ7JPEFhyLA"], "start_seconds": ["250", "16"], "properties": ["men, talk, cars", "water, flow, men"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["bees buzz and wind blows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tMJne1a4AFI", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["bees buzz, wind blows, bees", "loud, jet engine, roar"], "captions_pred_video": ["a swarm of bees on the ground", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a swarm of bees buzzing around", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "three men talk while wind blows and some liquid flows"], "sample_ids": ["tDVADusiIoc", "vJ7JPEFhyLA"], "start_seconds": ["60", "16"], "properties": ["water, radio, man", "three men, wind, flow"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wRBHTgrbiwg", "vlS6YMeWAPo"], "start_seconds": ["50", "40"], "properties": ["birds, chirp, cooing", "sheep, baa, birds"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a man speaks as a motor runs in the background"], "sample_ids": ["vW4x7S1VfQc", "xZepNM9qcRA"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "background, motor, run"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["food sizzles in a frying pan", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["zgUgkpk78xU", "x9JovgqUcs"], "start_seconds": ["70", "500"], "properties": ["horn, bell, train", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man speaks and types on a keyboard"], "question": "which entity is a person", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vms5XGTDVQc", "w5W5Kqtc8E"], "start_seconds": ["220", "100"], "properties": ["paper, crumpled, crinkled", "wind, blow, vehicle"], "captions_pred_video": ["footage of a woman opening a black bag on a table", null], "captions_pred_audio": ["paper is crumpled and crinkled", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "sirens ring and approach with humming of distant traffic"], "sample_ids": ["w5W5Kqtc8E", "xERFUeZONz8"], "start_seconds": ["100", "0"], "properties": ["wind, engine, scream", "ring, approach, traffic"], "captions_pred_video": [null, "footage is blurry due to camera shake or motion blur"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "an emergency vehicle siren blares"], "question": "which entity is a warning", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "heavy rain splashes as it falls"], "sample_ids": ["u21-Z5gJCB8", "wP8ZKrlx3oA"], "start_seconds": ["30", "40"], "properties": ["background, voice, man", "fall, rain, splash"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a heavy rain is falling on a surface"], "question": "which entity is more likely to cause water to splash", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w2M4i1mklOA", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "rooster, crow, background, men"], "captions_pred_video": ["footage of an antique clock", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a clock?", "label": 0}, {"captions": ["a child babbles as a woman speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wEBlkGWVWwE", "zFjIWfSD-4"], "start_seconds": ["260", "410"], "properties": ["a, babble, woman", "People, motor, brakes"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a duck quacks continuously"], "sample_ids": ["rwtmaKiCcQU", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["nozzle, depressed, spray can", "quacks, continuously, duck"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["spraying and people speaking", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a car accelerates and wind blows"], "sample_ids": ["zk-xJGQU8-4", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["food, man, woman", "accelerates, wind, blows"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["tQWGZLItBXk", "sLUnaPT5gM8"], "start_seconds": ["170", "0"], "properties": ["voice, music, whoosh", "loud, laughter, intermittent"], "captions_pred_video": ["worms revolution screenshots", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water rushes and then a vehicle zooms past", "a woman speaks as she rubs two objects together"], "sample_ids": ["s4Uz1Ffgo04", "vzxHnu-SFEw"], "start_seconds": ["100", "80"], "properties": ["water, rushes, vehicle", "two objects, woman, speak"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a vehicle zooming past?", "label": 0}, {"captions": ["vehicle engines race around a track as a man commentates", "waves crash against a shoreline and people speak"], "sample_ids": ["sZPuqDgX2V0", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["commentator, race, track", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be seen in a movie", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tqR406bGiE", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["flush, water, gurgle", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about water?", "label": 0}, {"captions": ["male speech with light ticking", "water flows as men speak and yell"], "sample_ids": ["xO-Q2BlIIPU", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["male, speech, ticking", "water, flow, men"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a duck quacks continuously"], "sample_ids": ["ukg5L09Wpvo", "vh30P49Po6s"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "quacks, continuously, duck"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a machine beeps continuously"], "sample_ids": ["sWZzXuWYY", "y682ml90jGw"], "start_seconds": ["420", "11"], "properties": ["male, speech, banging", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vfYTJq7nU", "w5W5Kqtc8E"], "start_seconds": ["130", "100"], "properties": ["rustling, ducks, quack", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a duck quacks and a woman speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sfAvvZwdLCY", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "stream, water, flow"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with wind noise in the background "], "question": "which entity is moving water", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vlJS7LN2XyM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["background, clocks, ticking", "loud, multiple, distance"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person is whistling", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sIXTftIuUgw", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["person, whistling, person", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman sneezes then speaks", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["x4dZyf9Gbj0", "y2ZBGpgbhHM"], "start_seconds": ["130", "30"], "properties": ["sneezes, speaks, woman", "birds, tweet, pant"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "birds chirping and a dog panting"], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a dark barks and whimpers"], "sample_ids": ["xKB8O8LTs6s", "sYj4hpDUZDQ"], "start_seconds": ["70", "30"], "properties": ["music, gunfire, explosion", "barks, whimpers, dark"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a brown and white dog standing in front of a wall with its mouth open"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a dog barks and a cat meows"], "question": "which entity is more quiet", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sZPuqDgX2V0", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["commentator, race, track", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a car speeding up in the distance"], "sample_ids": ["spJCm8tD9Zo", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["snores, wheezes, sleeps", "distance, car, speed"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sofxkNWaP0s", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["wind, engine, louder", "engine, idle, woman"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a toilet flushes and water drains", "water splashes as an animal walks through"], "sample_ids": ["sfAvvZwdLCY", "w1ir-sZ3Im8"], "start_seconds": ["20", "90"], "properties": ["water drains, flushes, water", "animal, water, splashes"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a toilet is flushed", "water splashes and gurgles as people speak"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "some tunes played by whistling"], "sample_ids": ["uWPRNLnpy7Y", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["accelerate, laugh, vehicle", "tune, play, whistling"], "captions_pred_video": ["is taken from a car driving down the street", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "wind blows as people chatter quietly"], "sample_ids": ["xSKJGCItUWE", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "wind, chatter, people"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage is blurry and out of focus"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp and wind blows", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["sxIvBMSavMQ", "x6ijhqRY38s"], "start_seconds": ["210", "250"], "properties": ["birds, chirp, wind", "something metal, glass, hit"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and dishes are clanging "], "question": "which entity is about something hitting something?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a man speaks over intermittent keyboard taps"], "sample_ids": ["wSVhSdj0F0", "tw76HGONaKg"], "start_seconds": ["10", "570"], "properties": ["horn honks, keys jingle, slam", "audio, man, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man speaks and types on a computer keyboard "], "question": "which entity is a recording of a person speaking?", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a train horn blows as it passes by"], "sample_ids": ["sZvwOuuPGP0", "zVacuqSb4LI"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "horn, blows, train"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a medium engine is running ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is not a vehicle", "label": 1}, {"captions": ["water running down a sink while a man is talking", "wind blows strongly and a young man speaks"], "sample_ids": ["vSeGhaZt-aI", "vs65y4qmyBE"], "start_seconds": ["50", "340"], "properties": ["water, sink, talk", "wind, blows, strongly"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a heavy engine is running and men are speaking "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "people applaud and hoot and chat quietly"], "sample_ids": ["ylpYOorfH4o", "wwyfGO2J4"], "start_seconds": ["410", "90"], "properties": ["engine, run, loud", "people, applaud, hoot"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sWZzXuWYY", "w5W5Kqtc8E"], "start_seconds": ["420", "100"], "properties": ["male, clanks, thumps", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "water is sprayed across a hard surface"], "sample_ids": ["uEU-Hg5MTN8", "sQwlkXjQabo"], "start_seconds": ["27", "10"], "properties": ["animal, grunts, snorts", "water, spray, surface"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks while water drains", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["vSeGhaZt-aI", "vqZuVbG6-HI"], "start_seconds": ["50", "130"], "properties": ["water, drain, man", "background, male, female"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a lawn mower is running and men are speaking "], "question": "which entity has more background noise", "label": 1}, {"captions": ["someone snores nearby", "a car speeding up in the distance"], "sample_ids": ["spJCm8tD9Zo", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "distance, car, speed"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a beep occurs briefly"], "sample_ids": ["sNB8zxXneIM", "xtWeJ56-U-g"], "start_seconds": ["20", "20"], "properties": ["several, quack, cocks", "beep, occur, briefly"], "captions_pred_video": ["a group of geese in a cage", "how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "mechanisms are ticking and a beep is heard "], "question": "which entity is silent", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "some tunes played by whistling"], "sample_ids": ["xSKJGCItUWE", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["engine, work, child", "tune, play, whistling"], "captions_pred_video": ["footage of the helicopter flying in the room", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["birds coo incessantly", "people applaud and hoot and chat quietly"], "sample_ids": ["yZrFNS7GFBQ", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["coo, bird, incessant", "people, applaud, hoot"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone is burping continuously", "winds blows roughly as a vehicle races past"], "sample_ids": ["y636gklDioE", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["burps, burps, burps", "wind, blows, vehicle"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a person burps loudly several times", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["someone snores nearby", "a woman speaks with water running"], "sample_ids": ["spJCm8tD9Zo", "wTideSjRFS0"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "water, running, woman"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking while water is running in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["s59PfAghdkM", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["bird, chirp, background, horse, neigh", "water, radio, man"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a horse in it?", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["vs65y4qmyBE", "xZepNM9qcRA"], "start_seconds": ["340", "30"], "properties": ["wind, blows, strongly", "background, motor, run"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["food is frying and sizzles", "vehicles pass by on a roadway"], "sample_ids": ["zNRChLjqcU", "tgbONvsP47Y"], "start_seconds": ["220", "0"], "properties": ["food is frying, sizzles, food", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["water is running from a faucet into a sink", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaking with light rustling", "a vehicle engine runs and someone speaks"], "sample_ids": ["zOZleIRqZm4", "zF8yoL0rkbI"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "engine, run, someone"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the traffic on the street at night"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "the wind is blowing hard and water is splashing"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a clang followed by a toilet flushing", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wNZ5thZM7XU", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["sound, flush, toilet", "applause, audience, yells"], "captions_pred_video": ["footage of a toilet in a bathroom stall", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a toilet flushes", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a woman talks while a baby cries and a man whispers"], "sample_ids": ["vdoxuJn9lTc", "smDKStoHBJo"], "start_seconds": ["40", "0"], "properties": ["burp, loud, girl", "a, talk, baby, cry"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a child speaks followed by a burp", "a baby is crying and a woman is speaking"], "question": "which entity has a baby?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "an airplane flies overhead as a woman speaks"], "sample_ids": ["slZLHwNbbt4", "zj2R0XoFr5k"], "start_seconds": ["300", "50"], "properties": ["train, horn, sound", "airplane, fly, overhead"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman speaks while a helicopter flies overhead "], "question": "which object is flying overhead", "label": 0}, {"captions": ["the revving of an engine throttle followed by a man speaking", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["tezvROoo4bs", "rqu8iB22IY"], "start_seconds": ["40", "5"], "properties": ["audio, throttle, speaking", "sound, repeats, laugh"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", null], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a dog barks and a man speaks while music plays "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["several ducks are quacking and squawking", "a child speaks in closed space"], "sample_ids": ["wfHeoPDLMaM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["quacking, squawking, ducks", "child, space, speak"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["ducks are quacking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "pigeons vocalize and birds chirp"], "sample_ids": ["wTjoRj1se3U", "uiS58TNyUiw"], "start_seconds": ["390", "430"], "properties": ["engine, run, people", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "of the pigeon in the cage"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "people speak as gunfire rings out"], "sample_ids": ["rwTERCUno", "wqTCwqVRDlk"], "start_seconds": ["90", "80"], "properties": ["engine, idle, sputter", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["a dog barks and whimpers", "someone whistles a tune"], "sample_ids": ["sShpyu2l4YQ", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["barks, whimpers, dog", "someone, tune, whistle"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks as a machine runs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vD6lYD1l0BY", "zl9Dqx-j7q4"], "start_seconds": ["330", "6"], "properties": ["a, machine, run", "engine, laugh, loud"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "an infant crying as a woman laughs"], "sample_ids": ["x9JovgqUcs", "xhmRY9yhC7c"], "start_seconds": ["500", "20"], "properties": ["a, man, speaks, keyboard", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vbZ-0lGPneg", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["a woman, a television program, a bird", "multiple, people, yell"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "people applaud and hoot and chat quietly"], "sample_ids": ["vZAw4apG0Es", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["people, clock, converse", "people, applaud, hoot"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["an infant crying as a woman laughs", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xhmRY9yhC7c", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["a, laugh, infant", "People, motor, brakes"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["zj2R0XoFr5k", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["airplane, boy, fly", "cling, speak, dishes"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "mechanisms are operating and water is splashing "], "question": "which entity is about a boy speaking?", "label": 0}, {"captions": ["a man sprays as a scraping occurs in the background", "water flows and trickles"], "sample_ids": ["sOa7g-44Dag", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["background, man, spray", "water, flow, trickle"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an aircraft engine runs", "a man speaks as a motor runs in the background"], "sample_ids": ["yLCORCnd35Q", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["engine, aircraft, runs", "background, motor, run"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a motor?", "label": 1}, {"captions": ["a man speaks while water drains", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vSeGhaZt-aI", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["water, drain, man", "music, gunfire, explosion"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wvKpEYswXO0", "xBxDz0CFVn0"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "stream, water, flow"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking with wind noise in the background "], "question": "which entity has water flowing", "label": 1}, {"captions": ["a clock ticktocks briefly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["u7C-AEBQM", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["ticktocks, clock, ticktocks briefly", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a ticktock of a clock", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["u5RmF3c3Aw", "yajyRTUQk3U"], "start_seconds": ["60", "400"], "properties": ["engine, car, zoom", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about a car zooming by?", "label": 0}, {"captions": ["heavy rain splashes as it falls", "a car accelerates and wind blows"], "sample_ids": ["wP8ZKrlx3oA", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["fall, rain, splash", "accelerates, wind, blows"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "someone is typing on a computer keyboard"], "sample_ids": ["vW4x7S1VfQc", "v0x1odnXtP0"], "start_seconds": ["150", "210"], "properties": ["clacking, oil, woman", "keyboard, type, computer"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "how to make money on youtube in spanish"], "captions_pred_audio": ["food sizzles in a frying pan", "a person is typing on a keyboard"], "question": "which is a type of computer", "label": 1}, {"captions": ["people speak in a closed space", "a child babbles as a woman speaks"], "sample_ids": ["sTpirNYo8vQ", "wEBlkGWVWwE"], "start_seconds": ["30", "260"], "properties": ["people, space, speak", "a, babble, woman"], "captions_pred_video": ["of a man taking a selfie on a bus", "shows a person writing on the whiteboard"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and a child is speaking with background noise and clapping "], "question": "which entity is a child babbles as a woman speaks?", "label": 1}, {"captions": ["women speak and laugh as wind blows", "vehicles pass by on a roadway"], "sample_ids": ["un9VQlzgZM", "tgbONvsP47Y"], "start_seconds": ["5", "0"], "properties": ["wind, speak, laugh", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "water rushes and then a vehicle zooms past"], "sample_ids": ["vJvryTwuAV8", "s4Uz1Ffgo04"], "start_seconds": ["16", "100"], "properties": ["audience, cheer, man", "water, rushes, vehicle"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more active", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "some tunes played by whistling"], "sample_ids": ["zofjfKhqLk8", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["background, metal, clings", "tune, play, whistling"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["ukg5L09Wpvo", "xKB8O8LTs6s"], "start_seconds": ["150", "70"], "properties": ["clickety-clack, train, whistle", "music, gunfire, explosion"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a car speeding up in the distance"], "sample_ids": ["sHbXC6na9hg", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["a person, saw, wood", "distance, car, speed"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", null], "captions_pred_audio": ["an engine is idling and vibrating", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a man speaks in the background while a slow tick repeats"], "sample_ids": ["tMbMDvT50j8", "vZAw4apG0Es"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "background, tick, repeat"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a baby cries and a woman speaks", "a clock is ticking and people are talking"], "question": "which entity has a tick repeating in the background?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wTideSjRFS0", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["food, sizzle, woman", "a, scream, girl"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking?", "label": 1}, {"captions": ["a motorcycle engine is idling", "an airplane flies overhead as a woman speaks"], "sample_ids": ["vZAqdHZ81yA", "zj2R0XoFr5k"], "start_seconds": ["180", "50"], "properties": ["engine, motorcycle, idling", "airplane, fly, overhead"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["an engine is idling loudly", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["male speech with light ticking", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["xO-Q2BlIIPU", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["male, speech, ticking", "beeps, hit, woman"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "wind blows as people chatter quietly"], "sample_ids": ["tOSWIURC-4", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["noise, engine, revs", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "frogs croak and vocalize"], "sample_ids": ["uWAAAL4CIoc", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["a, dog, vocalize", "croak, vocalize, frog"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a frog is croaking"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["someone whistles a song", "dishes cling together then a man begins to speak"], "sample_ids": ["sIXTftIuUgw", "sQGXqGcwOTc"], "start_seconds": ["90", "3"], "properties": ["someone, song, whistle", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person whistling a song", "mechanisms are operating and water is splashing "], "question": "which entity is a person", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["w2M4i1mklOA", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "beeps, hit, woman"], "captions_pred_video": ["footage of an antique clock", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a beep sounds followed by a child speaking"], "question": "which entity is quieter", "label": 1}, {"captions": ["a dog barks and whimpers", "engines sputter roughly and tires squeal"], "sample_ids": ["sShpyu2l4YQ", "zhx6hoYrHeI"], "start_seconds": ["0", "160"], "properties": ["barks, whimpers, dog", "engine, sputter, rough"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a man working on a motorcycle's tire"], "captions_pred_audio": ["a dog is barking and growling", "a car accelerates and revs its engine "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman talking as an infant is crying", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["tMbMDvT50j8", "wyllXV6PjKo"], "start_seconds": ["12", "30"], "properties": ["a, talk, infant", "a baby, a woman, a man"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman speaks and a baby cries"], "question": "which entity has a baby?", "label": 1}, {"captions": ["male speech with light ticking", "people applaud and hoot and chat quietly"], "sample_ids": ["xO-Q2BlIIPU", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["male, speech, ticking", "people, applaud, hoot"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a child speaks in closed space"], "sample_ids": ["yLy-WycbVVE", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["background, people, talk", "child, space, speak"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["s7knHCFW82w", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "gun, shoot, water"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "water is sprayed across a hard surface"], "sample_ids": ["vcmWSmvti8", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["music, man, fire", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "people speak as gunfire rings out"], "sample_ids": ["zkKdxzNC97Y", "wqTCwqVRDlk"], "start_seconds": ["27", "80"], "properties": ["hard, surface, door", "gunfire, ring, speak"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a duck quacks loudly and continuously"], "sample_ids": ["w2M4i1mklOA", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "loud, continuous, quacks"], "captions_pred_video": ["footage of an antique clock", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a car speeding up in the distance"], "sample_ids": ["wRV8yMk886E", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["liquid, spray, nozzle", "distance, car, speed"], "captions_pred_video": ["two cars are parked in a parking lot at night", null], "captions_pred_audio": ["a man speaks followed by a loud burst", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tqR406bGiE", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["flush, water, gurgle", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["children cheer as a man speaks then an audience screams", "a duck quacks continuously"], "sample_ids": ["vJvryTwuAV8", "vh30P49Po6s"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "quacks, continuously, duck"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vfYTJq7nU", "xBxDz0CFVn0"], "start_seconds": ["130", "30"], "properties": ["ducks, quack, man", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vqZuVbG6-HI", "vb1fPSDI4c"], "start_seconds": ["130", "30"], "properties": ["background, male, female", "multiple, people, yell"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sofxkNWaP0s", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["wind, engine, louder", "two men, woman, birds"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", null], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a man talks while vehicles pass by", "an infant crying frantically"], "sample_ids": ["sK4u5T8hW78", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "cry, infant, frantically"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a child yells and another yells", "a stream of water runs briefly"], "sample_ids": ["vMDHu7Lxcgw", "x-PeY8Yb8M4"], "start_seconds": ["410", "300"], "properties": ["two, yell, child", "stream, water, run"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sofxkNWaP0s", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["wind, engine, louder", "airplane, boy, fly"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a plane flying?", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a motorcycle engine is idling"], "sample_ids": ["zuua6-5goWw", "vZAqdHZ81yA"], "start_seconds": ["30", "180"], "properties": ["birds, chirp, quiet, man, speaks", "engine, motorcycle, idling"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a motorcycle is parked on the side of the road with its rear end facing the viewer"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "an engine is idling loudly"], "question": "which is quieter", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a propeller rotates loudly and intensely"], "sample_ids": ["sSMl2vc3ek", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["a person, laughs, snores", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person snoring loudly", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a man speaks uses a drill"], "sample_ids": ["siJFXfGWgDk", "x5eIC7S0fbg"], "start_seconds": ["50", "60"], "properties": ["man, woman, vehicle", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a duck quacks continuously"], "sample_ids": ["yeFvk9x0wWI", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["clack, bird, chirp", "quacks, continuously, duck"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 0}, {"captions": ["a duck quacks several times", "a toilet flushes and water drains unevenly"], "sample_ids": ["vh30P49Po6s", "vhJWZheqaE"], "start_seconds": ["30", "0"], "properties": ["quacks, duck, several", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a small engine idles continuously", "after a few seconds of silence, a loud bang occurs followed by a softer banging noise"], "sample_ids": ["y5WII6cTH7k", "zkKdxzNC97Y"], "start_seconds": ["40", "27"], "properties": ["engine, idle, continuously", "loud, bang, noise"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a door is opened and closed"], "question": "which entity is louder", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sncRqQ67iJU", "wz7N8YRy74I"], "start_seconds": ["460", "30"], "properties": ["loud, repeatedly, man", "rooster, crow, background, men"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a person is snoring", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man?", "label": 0}, {"captions": ["speaking following by laughing and clapping", "a door slams shut roughly"], "sample_ids": ["u2f5NpsoHBg", "zkKdxzNC97Y"], "start_seconds": ["30", "27"], "properties": ["person, laugh, clap", "a door, slams, shut"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a door is opened and closed"], "question": "which entity is more likely to be a door", "label": 1}, {"captions": ["people speak then an engine runs", "a horn rings out as a machine runs by"], "sample_ids": ["uMTTDZ2mb4", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["engine, run, people", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a baby laughs giddily and a woman laughs then speaks"], "sample_ids": ["sU53zg9Jp7s", "wjsXBsc7M40"], "start_seconds": ["380", "10"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a baby laughs, a woman laughs, a woman speaks"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "footage of the baby playing with a toothbrush"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a baby laughs and a woman speaks"], "question": "which entity is more playful", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["vveS8HT7Uog", "wwyfGO2J4"], "start_seconds": ["100", "90"], "properties": ["a man, objects, speak", "people, applaud, hoot"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "people are clapping and speaking with background noise "], "question": "which entity is a group of people?", "label": 1}, {"captions": ["male speech with light ticking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xO-Q2BlIIPU", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["male, speech, ticking", "engine, laugh, loud"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a duck quacks loudly and continuously"], "sample_ids": ["yZrFNS7GFBQ", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["pigeon, buzzes, insect", "loud, continuous, quacks"], "captions_pred_video": ["of the bird in the cage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["an owl hoots in the background ", "a duck is quacking loudly"], "question": "which animal is making a noise", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "water flows as men speak and yell"], "sample_ids": ["spYNpeN7rPY", "vJ7JPEFhyLA"], "start_seconds": ["1", "16"], "properties": ["a clock, ticktock, man", "water, flow, men"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zcDwZ6W7E3E", "uYT5gxnyMWM"], "start_seconds": ["180", "50"], "properties": ["a, man, speak", "a, scream, girl"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a small engine idles continuously"], "sample_ids": ["s4Uz1Ffgo04", "y5WII6cTH7k"], "start_seconds": ["100", "40"], "properties": ["roars, background, people speaking", "engine, idle, continuously"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "an engine is knocking and vibrating "], "question": "which entity is quieter", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["rqu8iB22IY", "tDVADusiIoc"], "start_seconds": ["5", "60"], "properties": ["sound, repeats, laugh", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["wztCSUxOf8", "zO-LSSY92ZM"], "start_seconds": ["130", "30"], "properties": ["a crowd, yells, applauds", "liquid, surface, sound"], "captions_pred_video": [null, "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "steam is hissing and hissing"], "question": "which entity is not a crowd?", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "small dogs yip and bark sharply"], "sample_ids": ["tPJvjq9QePY", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["animal, bleat, moo", "bark, yip, sharply"], "captions_pred_video": ["a dog and a sheep in a barn", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a baby cries and a man speaks", "a dog barks and growls"], "question": "which entity is more vocal", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a weapon fires multiple times"], "sample_ids": ["xSKJGCItUWE", "sMC07Ucy7kg"], "start_seconds": ["10", "10"], "properties": ["engine, run, boy", "weapon, fire, multiple"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage is from a car's point of view"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "waves crash against a shoreline and people speak"], "sample_ids": ["zkKdxzNC97Y", "yFB25fqfU8I"], "start_seconds": ["27", "300"], "properties": ["hard, surface, door", "wave, crash, shoreline"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be a natural phenomenon", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["un9VQlzgZM", "zl9Dqx-j7q4"], "start_seconds": ["5", "6"], "properties": ["females, talk, laugh", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man talks as several small engines run", "some men converse over an engine running"], "sample_ids": ["u9A6VZQCZpU", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["a, man, talk", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man talking?", "label": 0}, {"captions": ["an airplane engine runs", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yVPZ2MNWpms", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["engine, airplane, runs", "a woman, laughs, animal"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is driving by on the road ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "someone is typing on a computer keyboard"], "sample_ids": ["uEU-Hg5MTN8", "v0x1odnXtP0"], "start_seconds": ["27", "210"], "properties": ["a woman, laughs, animal", "keyboard, type, computer"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sapQIQUhFc", "xfaoyyzw2WU"], "start_seconds": ["280", "180"], "properties": ["liquid, flow, distance", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "plastic is tapped on while someone speaks"], "sample_ids": ["vW4x7S1VfQc", "wvKpEYswXO0"], "start_seconds": ["150", "150"], "properties": ["clacking, oil, woman", "plastic, tap, speak"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "of the person preparing food in the kitchen"], "captions_pred_audio": ["food sizzles in a frying pan", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks?", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["t8CV69hcvF0", "zl9Dqx-j7q4"], "start_seconds": ["210", "6"], "properties": ["person, sneeze, follow", "engine, laugh, loud"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman sneezes and speaks", "a jet engine roars "], "question": "which entity is followed by a person speaking", "label": 0}, {"captions": ["a male is speaking and a duck quacks as others laugh", "water splashes as an animal walks through"], "sample_ids": ["tiDFTC-5vU", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["male, duck, laugh", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uZesmtKZGSw", "su6FAOcOA8c"], "start_seconds": ["250", "4"], "properties": ["men, talk, cars", "engine, idle, woman"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["electronic beeps occur in a short series", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["y682ml90jGw", "ziUT9IFTkjg"], "start_seconds": ["11", "10"], "properties": ["beeps, series, electronic", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "birds are chirping and a chime is ringing "], "question": "which entity is more natural", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vfYTJq7nU", "zj2R0XoFr5k"], "start_seconds": ["130", "50"], "properties": ["rustling, ducks, quack", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about flying", "label": 1}, {"captions": ["paper is crumpling consistently", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["v5cSxLaHADY", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "rooster, crow, background, men"], "captions_pred_video": ["footage of the person holding a pair of scissors", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a video", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "sirens ring and approach with humming of distant traffic"], "sample_ids": ["xKB8O8LTs6s", "xERFUeZONz8"], "start_seconds": ["70", "0"], "properties": ["music, gunfire, explosion", "ring, approach, traffic"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage is blurry due to camera shake or motion blur"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "an emergency vehicle siren blares"], "question": "which entity is more calm", "label": 1}, {"captions": ["bees buzz as wind blows", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tMJne1a4AFI", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["bees, buzz, wind", "a woman, a television program, a bird"], "captions_pred_video": ["a swarm of bees on the ground", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking and a dog is whimpering"], "question": "which entity is a still image?", "label": 0}, {"captions": ["a man speaks in the background while a slow tick repeats", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vZAw4apG0Es", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "beeps, hit, woman"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a clock is ticking and people are talking", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zj2R0XoFr5k", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["airplane, fly, overhead", "music, gunfire, explosion"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a clock ticktocks"], "sample_ids": ["su6FAOcOA8c", "v-g-j2uTByM"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a person screams glaringly", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xC8kbrKJmco", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["glaringly, screams, person", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a goat is bleating ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["water is sprayed across a hard surface", "paper folding and crinkling"], "sample_ids": ["sQwlkXjQabo", "zPpG3RD8lSs"], "start_seconds": ["10", "20"], "properties": ["water, spray, surface", "paper, fold, crinkle"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["spraying followed by silence", "the wind blows and a mouse clicks "], "question": "which entity is not a liquid", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["s6DESzUTGjY", "vzceMbklWc"], "start_seconds": ["16", "180"], "properties": ["wind, laugh, woman", "water, faucet, sink"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "water is running and a man is speaking"], "question": "which entity is a video of a woman laughing?", "label": 0}, {"captions": ["a man speaks while water drains", "small dogs yip and bark sharply"], "sample_ids": ["vSeGhaZt-aI", "v-wcQf4BDY0"], "start_seconds": ["50", "120"], "properties": ["water, drain, man", "bark, yip, sharply"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["voJh2gJxXhA", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["music, frog, croak", "a woman, something, fried"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "- a woman cooking in the kitchen"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman talking?", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sdXV-ylviw", "zl9Dqx-j7q4"], "start_seconds": ["190", "6"], "properties": ["door, toilet, squeaks", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xSKJGCItUWE", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["engine, run, boy", "a woman, something, fried"], "captions_pred_video": ["footage of the helicopter flying in the room", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an infant crying frantically", "waves crash against a shoreline and people speak"], "sample_ids": ["zwOBqeFTgiU", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["cry, infant, frantically", "wave, crash, shoreline"], "captions_pred_video": ["of the baby crying in the car seat", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "some tunes played by whistling"], "sample_ids": ["wqZ135Ssz0", "u6BnG6YZqJ4"], "start_seconds": ["60", "0"], "properties": ["two men, woman, birds", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["birds fly and flutter around", "a clock alarm sounds and gears turn"], "sample_ids": ["wGKgwOP3h30", "w2M4i1mklOA"], "start_seconds": ["30", "30"], "properties": ["fly, flutter, around", "alarm, gears, turn"], "captions_pred_video": ["of the pigeons in the coop", "footage of an antique clock"], "captions_pred_audio": ["pigeons coo and flap their wings", "a clock is ticking and a bell is ringing "], "question": "which entity is a clock?", "label": 1}, {"captions": ["birds chirp then an animal grunts", "several insects fly while two men talk"], "sample_ids": ["tDlysoZiA1I", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["animal, grunt, chirp", "several, fly, men"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about animals?", "label": 0}, {"captions": ["a airplane flies overhead as a woman speaks", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zj2R0XoFr5k", "y8WEcpOlT3I"], "start_seconds": ["50", "40"], "properties": ["airplane, fly, woman", "harsh, wind, blows"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["multiple ducks quack continuously", "people speak as gunfire rings out"], "sample_ids": ["wfHeoPDLMaM", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["multiple, quack, continuously", "gunfire, ring, speak"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["ducks are quacking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["birds vocalize and a man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["v0wPrLBI3hg", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["vocalize, bird, speak", "people, applaud, hoot"], "captions_pred_video": ["footage of the pigeons feeding on the ground", null], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "people speak as gunfire rings out"], "sample_ids": ["vSeGhaZt-aI", "wqTCwqVRDlk"], "start_seconds": ["50", "80"], "properties": ["water, bubbles, speak", "gunfire, ring, speak"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wRBHTgrbiwg", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["bird, owl, speak", "water, radio, man"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "water pouring and bubbling"], "sample_ids": ["t97k0cejSQE", "uyRfq-jKPpo"], "start_seconds": ["250", "50"], "properties": ["bird, chirp, insect", "water, bubbles, pouring"], "captions_pred_video": ["a bee on a purple thistle flower", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a horn rings out as a machine runs by"], "sample_ids": ["sZPuqDgX2V0", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["commentator, race, track", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vqZuVbG6-HI", "uZesmtKZGSw"], "start_seconds": ["130", "250"], "properties": ["background, male, female", "men, talk, cars"], "captions_pred_video": ["footage is blurry because it's raining outside", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "water flows and trickles"], "sample_ids": ["sdXV-ylviw", "tB7hWb9gTuQ"], "start_seconds": ["190", "30"], "properties": ["door, toilet, squeaks", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a dog barks and taps with background noise ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as horns blow", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tHyNqRyK34A", "tiDFTC-5vU"], "start_seconds": ["24", "30"], "properties": ["a, man, speaks", "male, duck, laugh"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck in it?", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["w8uLijTqtlU", "yks4cLgIDMc"], "start_seconds": ["70", "170"], "properties": ["wind, microphone, noise", "background, speaking, child"], "captions_pred_video": ["footage is blurry and shaky", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and a child is crying"], "question": "which entity is a recording", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "people applaud and hoot and chat quietly"], "sample_ids": ["sTpirNYo8vQ", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["a, tone, fast", "people, applaud, hoot"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a car speeding up in the distance"], "sample_ids": ["vqZuVbG6-HI", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["background, male, female", "distance, car, speed"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a machine beeps continuously"], "sample_ids": ["vb1fPSDI4c", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["multiple, people, yell", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a crowd of people are talking and laughing", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "vehicle engines race around a track as a man commentates"], "sample_ids": ["w2JXXIAdUdg", "sZPuqDgX2V0"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "commentator, race, track"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a video of a race?", "label": 1}, {"captions": ["a weapon fires multiple times", "an airplane engine runs"], "sample_ids": ["sMC07Ucy7kg", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["weapon, fire, multiple", "engine, airplane, runs"], "captions_pred_video": ["footage is from a car's point of view", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a car is driving by on the road "], "question": "which entity is not a weapon", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "water flows as men speak and yell"], "sample_ids": ["wqADXCzngMw", "vJ7JPEFhyLA"], "start_seconds": ["340", "16"], "properties": ["audio, humming, revving", "water, flow, men"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "water splashes as an animal walks through"], "sample_ids": ["vSeGhaZt-aI", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["water, bubbles, speak", "animal, water, splashes"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tQWGZLItBXk", "uZesmtKZGSw"], "start_seconds": ["170", "250"], "properties": ["voice, music, whoosh", "men, talk, cars"], "captions_pred_video": ["worms revolution screenshots", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["scraping and female speech with distant music", "a man speaks as a car is passing by"], "sample_ids": ["yHeVV-xeOxQ", "sK4u5T8hW78"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "a, car, pass"], "captions_pred_video": ["of a girl milking a goat's udder", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a power tool runs and touches a surface", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zfvPRf3chY", "uEU-Hg5MTN8"], "start_seconds": ["290", "27"], "properties": ["power tool, run, touch", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["water running down a sink while a man is talking", "paper folding and crinkling"], "sample_ids": ["vSeGhaZt-aI", "zPpG3RD8lSs"], "start_seconds": ["50", "20"], "properties": ["water, sink, talk", "paper, fold, crinkle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a cat meows and children speak", "a stream of water runs briefly"], "sample_ids": ["x5cuQjOdM3E", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["cat, speak, children", "stream, water, run"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a cat meows and a woman speaks", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sShpyu2l4YQ", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["growl, bark, yip", "a, scream, girl"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a machine beeps continuously"], "sample_ids": ["w34HjHr6gAY", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["beeps, squawk, child speaking", "beeps, machine, continuously"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a beeping sound is being made "], "question": "which entity is a machine?", "label": 1}, {"captions": ["several insects fly while two men talk", "someone is typing on a computer keyboard"], "sample_ids": ["s-T9OVOiMLo", "v0x1odnXtP0"], "start_seconds": ["330", "210"], "properties": ["several, fly, men", "keyboard, type, computer"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a toilet flushes and water drains"], "sample_ids": ["v0x1odnXtP0", "sfAvvZwdLCY"], "start_seconds": ["210", "20"], "properties": ["keyboard, type, computer", "water drains, flushes, water"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a person is typing on a keyboard", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sSMl2vc3ek", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["a person, laughs, snores", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person?", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "some tunes played by whistling"], "sample_ids": ["yZp6xizR0yU", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["animal, bleat, cry", "tune, play, whistling"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["xzKKf9bKNUo", "xjvTpk2Zpr8"], "start_seconds": ["10", "70"], "properties": ["background, noise, snoring", "wind, blows, vehicle"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a person snoring loudly", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["t97k0cejSQE", "xKB8O8LTs6s"], "start_seconds": ["250", "70"], "properties": ["bird, chirp, insect", "music, gunfire, explosion"], "captions_pred_video": ["a bee on a purple thistle flower", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["an insect buzzes around continuously", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["v25l1jef3JY", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["buzzes, continuously, insect", "animal, grunts, snorts"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 0}, {"captions": ["multiple insects buzz over rustling wind", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["tMJne1a4AFI", "xV7Mg1QucSc"], "start_seconds": ["0", "14"], "properties": ["wind, buzz, rustling", "alarm, ticktocks, laughs"], "captions_pred_video": ["a swarm of bees on the ground", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a swarm of bees buzzing around", "an alarm clock ticks and a woman laughs"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["uRExseg-0XI", "ziUT9IFTkjg"], "start_seconds": ["210", "10"], "properties": ["woman, man, water", "background, birds, rustling"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", null], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "birds are chirping and a chime is ringing "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "a person uses a saw to cut some wood"], "sample_ids": ["xM4joTqDVp4", "sHbXC6na9hg"], "start_seconds": ["160", "0"], "properties": ["background, chirp, birds", "a person, saw, wood"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["birds are chirping and a train is moving ", "an engine is idling and vibrating"], "question": "which entity is a person", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sQwlkXjQabo", "su6FAOcOA8c"], "start_seconds": ["10", "4"], "properties": ["water, spray, surface", "engine, idle, woman"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["spraying followed by silence", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a dark barks and whimpers", "a toilet door squeaks as it is opened"], "sample_ids": ["sYj4hpDUZDQ", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["barks, whimpers, dark", "door, toilet, squeaks"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "people applaud and hoot and chat quietly"], "sample_ids": ["xM4joTqDVp4", "wwyfGO2J4"], "start_seconds": ["160", "90"], "properties": ["background, chirp, birds", "people, applaud, hoot"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "a stream of water runs briefly"], "sample_ids": ["zVacuqSb4LI", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["blares, fades, train", "stream, water, run"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vZAqdHZ81yA", "xfaoyyzw2WU"], "start_seconds": ["180", "180"], "properties": ["engine, motorcycle, idling", "loud, jet engine, roar"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an engine is idling loudly", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["a baby laugh at a sputter", "an insect buzzes around continuously"], "sample_ids": ["sLUnaPT5gM8", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["laugh, sputter, baby", "buzzes, continuously, insect"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "dog barking and vehicle engine idling followed shortly by vehicle engine revving"], "sample_ids": ["w2JXXIAdUdg", "zY3icUyMdh8"], "start_seconds": ["10", "20"], "properties": ["snoring, distance, person", "dog, bark, engine"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a car is driving and dogs are barking and squealing "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a infant makes noise and is excited", "a machine beeps continuously"], "sample_ids": ["wIJK3-5y0kA", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["noise, excited, infant", "beeps, machine, continuously"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp as a bell rings", "speaking following by laughing and clapping"], "sample_ids": ["ziUT9IFTkjg", "u2f5NpsoHBg"], "start_seconds": ["10", "30"], "properties": ["chirp, bell, ring", "person, laugh, clap"], "captions_pred_video": [null, "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman is speaking and a crowd is clapping"], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a child speaks in closed space"], "sample_ids": ["w2M4i1mklOA", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["alarm, gears, turn", "child, space, speak"], "captions_pred_video": ["footage of an antique clock", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["spYNpeN7rPY", "wRBHTgrbiwg"], "start_seconds": ["1", "50"], "properties": ["a clock, ticktock, man", "bird, owl, speak"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "birds are chirping and insects are buzzing"], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["ukg5L09Wpvo", "zFjIWfSD-4"], "start_seconds": ["150", "410"], "properties": ["a train, a horn, a bell", "People, motor, brakes"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor?", "label": 1}, {"captions": ["people speak softly as food sizzles", "a pigeon cooing as an insect buzzes by briefly"], "sample_ids": ["yhQ2Lg-7qDY", "yZrFNS7GFBQ"], "start_seconds": ["130", "30"], "properties": ["food, sizzle, speak", "pigeon, buzzes, insect"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "of the bird in the cage"], "captions_pred_audio": ["a faucet is running and a man is speaking", "an owl hoots in the background "], "question": "which entity is a bird?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "people applaud and hoot and chat quietly"], "sample_ids": ["sxYkFKFIZD0", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["screech, man, door", "people, applaud, hoot"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an insect buzzes around continuously", "water runs into a sink while men speak"], "sample_ids": ["v25l1jef3JY", "vzceMbklWc"], "start_seconds": ["0", "180"], "properties": ["buzzes, continuously, insect", "water, sink, run"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "water is running and a man is speaking"], "question": "which entity is not a living thing", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "people cheer as a vehicle engine revs"], "sample_ids": ["tw76HGONaKg", "xjhAnI2q6hM"], "start_seconds": ["570", "6"], "properties": ["music, click, man", "engine revs, vehicle, people"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "someone is typing on a computer keyboard"], "sample_ids": ["s7knHCFW82w", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["blow horn, get close, train", "keyboard, type, computer"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "how to make money on youtube in spanish"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a person is typing on a keyboard"], "question": "which is not a type of computer", "label": 0}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uEU-Hg5MTN8", "vfYTJq7nU"], "start_seconds": ["27", "130"], "properties": ["animal, grunts, snorts", "rustling, ducks, quack"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["a speedboat passes quickly on the water", "an infant crying as a woman laughs"], "sample_ids": ["tjmoSi330GM", "xhmRY9yhC7c"], "start_seconds": ["23", "20"], "properties": ["speed, water, boat", "a, laugh, infant"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a baby cries and a woman speaks"], "question": "which is not a person", "label": 0}, {"captions": ["white noise and snoring with some rustling in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xzKKf9bKNUo", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["background, noise, snoring", "clickety-clack, train, whistle"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a person snoring loudly", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sa6TLVbooCc", "yswmmRZFItk"], "start_seconds": ["240", "0"], "properties": ["people, laugh, child", "background, frog, croak"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["a man speaks as horns blow", "people applaud and hoot and chat quietly"], "sample_ids": ["tHyNqRyK34A", "wwyfGO2J4"], "start_seconds": ["24", "90"], "properties": ["a, man, speaks", "people, applaud, hoot"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a duck quacks continuously"], "sample_ids": ["wTideSjRFS0", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["food, sizzle, woman", "quacks, continuously, duck"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "an airplane engine runs"], "sample_ids": ["vzceMbklWc", "yVPZ2MNWpms"], "start_seconds": ["180", "0"], "properties": ["water, faucet, sink", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["water is running and a man is speaking", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["goats bleat and people speak", "a duck quacks continuously"], "sample_ids": ["z5iUE5h0EPs", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["goats bleat, people speak, language", "quacks, continuously, duck"], "captions_pred_video": ["of the goat in the barn", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a goat bleats and a man speaks", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["an infant crying as a woman laughs", "rain falls on a surface as men speak and thunder roars"], "sample_ids": ["xhmRY9yhC7c", "w0xsN8X18Y"], "start_seconds": ["20", "30"], "properties": ["a, laugh, infant", "rain, thunder, surface"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is a natural event", "label": 1}, {"captions": ["water bubbles and gurgles.", "a man speaks as a car is passing by"], "sample_ids": ["tB7hWb9gTuQ", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["bubbles, gurgles, water", "a, car, pass"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["water is splashing and gurgling", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a moving object", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a woman speaks as she rubs two objects together"], "sample_ids": ["vfYTJq7nU", "vzxHnu-SFEw"], "start_seconds": ["130", "80"], "properties": ["rustling, ducks, quack", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["a door slams shut roughly", "several insects fly while two men talk"], "sample_ids": ["zkKdxzNC97Y", "s-T9OVOiMLo"], "start_seconds": ["27", "330"], "properties": ["a door, slams, shut", "several, fly, men"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a zoo", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "someone snores nearby"], "sample_ids": ["vBslzh7saPw", "spJCm8tD9Zo"], "start_seconds": ["90", "90"], "properties": ["power, scream, increase", "someone snores, nearby, someone"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a person is snoring loudly"], "question": "which is quieter", "label": 0}, {"captions": ["birds coo incessantly", "a duck quacks continuously"], "sample_ids": ["yZrFNS7GFBQ", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["coo, bird, incessant", "quacks, continuously, duck"], "captions_pred_video": ["of the bird in the cage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["an owl hoots in the background ", "a duck is quacking loudly"], "question": "which bird is more likely to be a male", "label": 1}, {"captions": ["wind blowing followed by a zoom", "water splashes as an animal walks through"], "sample_ids": ["vr8ZXjEBhMQ", "w1ir-sZ3Im8"], "start_seconds": ["150", "90"], "properties": ["wind, blow, zoom", "animal, water, splashes"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a clock ticks quietly and rhythmically"], "sample_ids": ["wPz6QRAkEb4", "u7C-AEBQM"], "start_seconds": ["60", "30"], "properties": ["chirps, tweets, song", "ticks, rhythmic, quiet"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "small dogs yip and bark sharply"], "sample_ids": ["sLUnaPT5gM8", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["loud, laughter, intermittent", "bark, yip, sharply"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "an infant crying as a woman laughs"], "sample_ids": ["wqUmIEzuNz4", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["frog, bird, vocalize", "a, laugh, infant"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a cat meows and rustles", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["speaking following by laughing and clapping", "women speak as water runs briefly, children call out, and a man speaks"], "sample_ids": ["u2f5NpsoHBg", "uRExseg-0XI"], "start_seconds": ["30", "210"], "properties": ["person, laugh, clap", "woman, man, water"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking while water is running and birds are chirping "], "question": "which entity has more people", "label": 1}, {"captions": ["a clock ticktocks briefly", "an airplane engine spools and people speak"], "sample_ids": ["u7C-AEBQM", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["ticktocks, clock, ticktocks briefly", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a ticktock of a clock", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["someone whistles briefly", "some men converse over an engine running"], "sample_ids": ["uFoga8sHpiw", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["sound, duration, pitch", "men, converse, engine"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is longer", "label": 1}, {"captions": ["a person is snoring while sleeping", "an airplane engine spools and people speak"], "sample_ids": ["vJrjSeP17yE", "wTjoRj1se3U"], "start_seconds": ["40", "390"], "properties": ["a person is sleeping, snoring, person", "airplane, engine, spool"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a person snoring loudly", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a rumble grows louder", "a man speaks as a car is passing by"], "sample_ids": ["y4MY9mp8-TA", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["loudness, increase, rumble", "a, car, pass"], "captions_pred_video": ["a helicopter flying in the sky", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a helicopter flies overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a rumble", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a infant makes noise and is excited"], "sample_ids": ["xKB8O8LTs6s", "wIJK3-5y0kA"], "start_seconds": ["70", "30"], "properties": ["music, gunshots, explosion", "noise, excited, infant"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle engine works nearby", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tOSWIURC-4", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a lawn mower is running ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing far away?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["sQwlkXjQabo", "zO-LSSY92ZM"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "liquid, surface, sound"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["spraying followed by silence", "steam is hissing and hissing"], "question": "which entity is sprayed across a hard surface", "label": 0}, {"captions": ["an small aircraft engine runs and a boy speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xSKJGCItUWE", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "multiple, people, yell"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["loud, continuous burping", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["y636gklDioE", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["loud, continuous, burping", "background, male, female"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person burps loudly several times", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a child speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yW6FWLSLkx4", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["a, child, speaks", "stream, water, flow"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a horn rings out as a machine runs by"], "sample_ids": ["zk-xJGQU8-4", "slZLHwNbbt4"], "start_seconds": ["130", "300"], "properties": ["food, man, woman", "a, horn, run"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["w2M4i1mklOA", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["alarm, gears, turn", "a woman, laughs, animal"], "captions_pred_video": ["footage of an antique clock", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking and a baby is crying"], "question": "which entity is a clock?", "label": 0}, {"captions": ["a woman sneezes then speaks", "wind blowing followed by a zoom"], "sample_ids": ["x4dZyf9Gbj0", "vr8ZXjEBhMQ"], "start_seconds": ["130", "150"], "properties": ["sneezes, speaks, woman", "wind, blow, zoom"], "captions_pred_video": ["footage is blurry and out of focus", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman sneezes and speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wDVMhEdTiVw", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["gun, shoot, water", "engine, revs, vehicle"], "captions_pred_video": ["a blurry image of trees and water in the forest", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man speaks as a vehicle engine idles", "a train horn blows as it passes by"], "sample_ids": ["shmR4OZtzqA", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "horn, blows, train"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man speaks while a motor runs", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zgUgkpk78xU", "vb1fPSDI4c"], "start_seconds": ["70", "30"], "properties": ["clinking, humming, horn", "multiple, people, yell"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sa6TLVbooCc", "zFjIWfSD-4"], "start_seconds": ["240", "410"], "properties": ["people, laugh, child", "People, motor, brakes"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", null], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a child speaking?", "label": 0}, {"captions": ["a woman and man are speaking", "a machine beeps continuously"], "sample_ids": ["vbpKkWvfOu4", "y682ml90jGw"], "start_seconds": ["560", "11"], "properties": ["two people, speaking, woman, man", "beeps, machine, continuously"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["an audience gives applause", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["x6iCUDmRpKQ", "tdWhHV3X25Q"], "start_seconds": ["38", "60"], "properties": ["applause, audience, give", "applause, audience, yells"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a group of people are clapping and cheering", "a man is speaking and a crowd is clapping"], "question": "which audience is giving applause", "label": 1}, {"captions": ["continuous snoring", "plastic is tapped on while someone speaks"], "sample_ids": ["sLkeqCDJIyw", "wvKpEYswXO0"], "start_seconds": ["120", "150"], "properties": ["loud, snoring, noise", "plastic, tap, speak"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "women speak as water runs briefly, children call out, and a man speaks"], "sample_ids": ["uEU-Hg5MTN8", "uRExseg-0XI"], "start_seconds": ["27", "210"], "properties": ["animal, grunts, snorts", "woman, man, water"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while water is running and birds are chirping "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "paper is crumpling consistently"], "sample_ids": ["ujMt0-D-x2k", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["snoring, rhythmical, nearby", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person is snoring loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "some men converse over an engine running"], "sample_ids": ["sjlVMgdGSK0", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["car, revving, loudly", "men, converse, engine"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is not a car", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sOa7g-44Dag", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["audio, scratching, man", "rustling, ducks, quack"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a duck quacks and a woman speaks"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a airplane flies overhead as a woman speaks", "someone is typing on a computer keyboard"], "sample_ids": ["zj2R0XoFr5k", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["airplane, fly, woman", "keyboard, type, computer"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a person is typing on a keyboard"], "question": "which is not a person", "label": 0}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["u--KhUW8l1Y", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["engine, sound, horn", "rooster, crow, background, men"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "small dogs yip and bark sharply"], "sample_ids": ["xBxDz0CFVn0", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["wind, chatter, people", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "birds chirp and objects are moved around"], "sample_ids": ["uqFtmnhuqA8", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["a, b, c", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "insects buzz and a man speaks"], "question": "which entity is more like a bird chirping?", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "small dogs yip and bark sharply"], "sample_ids": ["y2ZBGpgbhHM", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["dog, chirp, breathe", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds chirping and a dog panting", "a dog barks and growls"], "question": "which dog is more active", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["yaln9y8I7ms", "vKrYfzleLB8"], "start_seconds": ["230", "110"], "properties": ["female, flushes, toilet", "a, ring, gunshots"], "captions_pred_video": ["footage is blurry and out of focus", "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a woman speaks happily and an animal chirps"], "sample_ids": ["uKCSGgof8gI", "uWAAAL4CIoc"], "start_seconds": ["12", "0"], "properties": ["chirps, distance, signal", "a woman, chirps, animal"], "captions_pred_video": ["footage of a street in a small town on a sunny day", null], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "water flows as men speak and yell"], "sample_ids": ["y8WEcpOlT3I", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["harsh, wind, blows", "water, flow, men"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a propeller rotates loudly and intensely"], "sample_ids": ["uiS58TNyUiw", "ugHJF0hfYkg"], "start_seconds": ["430", "10"], "properties": ["audio, man, speaking", "loud, intense, propeller"], "captions_pred_video": ["of the pigeon in the cage", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["multiple ducks quack continuously", "a clock ticktocks"], "sample_ids": ["wfHeoPDLMaM", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "ticktocks, clock, ticktocks"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["ducks are quacking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "someone is typing on a computer keyboard"], "sample_ids": ["slZLHwNbbt4", "v0x1odnXtP0"], "start_seconds": ["300", "210"], "properties": ["clap, distance, horn", "keyboard, type, computer"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "how to make money on youtube in spanish"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["someone snores nearby", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["spJCm8tD9Zo", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["someone snores, nearby, someone", "female, spraying, scream"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["several ducks are quacking and squawking", "water splashes and a door squeaks"], "sample_ids": ["wfHeoPDLMaM", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["quacking, squawking, ducks", "sound, splash, door"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a dog barks and taps with background noise "], "question": "which entity is silent", "label": 1}, {"captions": ["scraping and female speech with distant music", "ticking continues without interruption"], "sample_ids": ["yHeVV-xeOxQ", "v-g-j2uTByM"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "ticking, continuous, clock"], "captions_pred_video": ["of a girl milking a goat's udder", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["an electronic device bleeps once", "a child speaks in closed space"], "sample_ids": ["tHJ6JSa8Y4", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["bleeps, electronic, device", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a clock is ticking and beeping", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "water pouring and bubbling"], "sample_ids": ["siJFXfGWgDk", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["a, bird, vehicle", "water, bubbles, pouring"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "a man speaks as a motor runs in the background"], "sample_ids": ["w9lpbUn0hPc", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["male, wind, rustling", "background, motor, run"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["an engine runs and wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vs65y4qmyBE", "su6FAOcOA8c"], "start_seconds": ["340", "4"], "properties": ["engine, run, wind", "engine, idle, woman"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a woman speaks as she rubs two objects together"], "sample_ids": ["wRBHTgrbiwg", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["bird, owl, speak", "two objects, woman, speak"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a woman speaking?", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "water splashes as an animal walks through"], "sample_ids": ["v5P-ThUCINM", "w1ir-sZ3Im8"], "start_seconds": ["400", "90"], "properties": ["background, chirp, bird", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and birds are chirping", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a person speaks over rustling leaves", "some people speak"], "sample_ids": ["zOZleIRqZm4", "vbZ-0lGPneg"], "start_seconds": ["80", "30"], "properties": ["rustling, leaves, person", "some people speak English, some people speak Spanish, some people speak French"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a dog is whimpering"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["water runs into a sink while men speak", "people speak as gunfire rings out"], "sample_ids": ["vzceMbklWc", "wqTCwqVRDlk"], "start_seconds": ["180", "80"], "properties": ["water, sink, run", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "a loud engine muffles a man as he speaks"], "sample_ids": ["vlS6YMeWAPo", "xyx6eNVEYRY"], "start_seconds": ["40", "380"], "properties": ["sheep, baa, birds", "loud, engine, muffles"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a goat bleats and birds chirp", "an aircraft engine is running and a man is speaking "], "question": "which entity is muffled", "label": 1}, {"captions": ["a jet engine spools up and takes off", "children speak and play together"], "sample_ids": ["vBslzh7saPw", "yVVP8XvWJTo"], "start_seconds": ["90", "260"], "properties": ["engine, spools, takes", "children, speak, play"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a jet engine roars and accelerates ", "children are speaking and breathing with background noise "], "question": "which entity is more likely to be in motion", "label": 0}, {"captions": ["birds chirp and objects are moved around", "wind blowing followed by a zoom"], "sample_ids": ["yPUYU6t3rwo", "vr8ZXjEBhMQ"], "start_seconds": ["370", "150"], "properties": ["birds chirp, objects are moved around, birds", "wind, blow, zoom"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["insects buzz and a man speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a natural phenomenon", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["wEBlkGWVWwE", "xZepNM9qcRA"], "start_seconds": ["260", "30"], "properties": ["a, babble, woman", "background, motor, run"], "captions_pred_video": ["shows a person writing on the whiteboard", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["vs65y4qmyBE", "xjhAnI2q6hM"], "start_seconds": ["340", "6"], "properties": ["engine, run, man", "engine revs, vehicle, people"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a truck is revving its engine and a man is speaking "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a male speaks and another male speaks", "a door opens and closes"], "sample_ids": ["viuTg1M-dqg", "vBHyYJ8pL0"], "start_seconds": ["30", "2"], "properties": ["two males, speaking, male", "open, close, door"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is a door?", "label": 1}, {"captions": ["a man talks while vehicles pass by", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sK4u5T8hW78", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "rooster, crow, background, men"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people in it", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "an engine runs loudly"], "sample_ids": ["wqZ135Ssz0", "vqZuVbG6-HI"], "start_seconds": ["60", "130"], "properties": ["man, woman, squawks", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a church bell rings several times", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sUVVjE3Ucp8", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["ring, bell, several", "three men, wind, flow"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a church bell is ringing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a bell ringing?", "label": 0}, {"captions": ["a woman speaks and other women and a man talk with her", "a propeller rotates loudly and intensely"], "sample_ids": ["vbpKkWvfOu4", "ugHJF0hfYkg"], "start_seconds": ["560", "10"], "properties": ["a, woman, man", "loud, intense, propeller"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a vehicle engine accelerating then running on idle"], "sample_ids": ["weDbePuc-Xc", "vYkA3cfXp5Q"], "start_seconds": ["40", "30"], "properties": ["music, slaps, human", "engine, accelerate, idle"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["t25U-v4k4ts", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["a, chirps, bird", "wind, blow, vehicle"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "several insects fly while two men talk"], "sample_ids": ["sapQIQUhFc", "s-T9OVOiMLo"], "start_seconds": ["280", "330"], "properties": ["liquid, flow, distance", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a clock ticktocks"], "sample_ids": ["zofjfKhqLk8", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["vehicles pass by on a roadway", "water pouring and bubbling"], "sample_ids": ["tgbONvsP47Y", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["pass, vehicle, roadway", "water, bubbles, pouring"], "captions_pred_video": ["footage of a fire truck entering a garage", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car is driving on the road ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "paper is crumpling consistently"], "sample_ids": ["ziUT9IFTkjg", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["background, birds, rustling", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "some men converse over an engine running"], "sample_ids": ["wSVhSdj0F0", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["beep, clang, footsteps", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sjlVMgdGSK0", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["car, revving, loudly", "clickety-clack, train, whistle"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a train blows its whistle and blows its horn "], "question": "which is quieter", "label": 0}, {"captions": ["a man rubs two objects together then speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vveS8HT7Uog", "wz7N8YRy74I"], "start_seconds": ["100", "30"], "properties": ["a man, objects, speak", "rooster, crow, background, men"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "someone whistles a tune"], "sample_ids": ["se87d6yxEOA", "sIXTftIuUgw"], "start_seconds": ["10", "90"], "properties": ["run, whistle, pass", "someone, tune, whistle"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", null], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a baby cries and a woman moans", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["smDKStoHBJo", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["a, cry, woman", "music, gunfire, explosion"], "captions_pred_video": ["a man holding a crying baby in his arms", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["spJCm8tD9Zo", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["snores, wheezes, sleeps", "female, spraying, scream"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["winds blows roughly as a vehicle races past", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["xjvTpk2Zpr8", "tiDFTC-5vU"], "start_seconds": ["70", "30"], "properties": ["wind, blows, vehicle", "male, duck, laugh"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vZAqdHZ81yA", "uEU-Hg5MTN8"], "start_seconds": ["180", "27"], "properties": ["engine, motorcycle, idling", "animal, grunts, snorts"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is idling loudly", "a woman is speaking and a baby is crying"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vzxHnu-SFEw", "uZesmtKZGSw"], "start_seconds": ["80", "250"], "properties": ["two objects, woman, speak", "men, talk, cars"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yRx9txMcBl0", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["accelerates, tires, squeals", "female, spraying, scream"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["water rushes by", "water flows and trickles"], "sample_ids": ["x-PeY8Yb8M4", "tB7hWb9gTuQ"], "start_seconds": ["300", "30"], "properties": ["water, rushes, by", "water, flow, trickle"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car is driving on a wet road ", "water is splashing and gurgling"], "question": "which entity is more calm", "label": 1}, {"captions": ["water flows and trickles", "people speak as gunfire rings out"], "sample_ids": ["tB7hWb9gTuQ", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["water, flow, trickle", "gunfire, ring, speak"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["water is splashing and gurgling", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["xl2PIWyXaM", "xZepNM9qcRA"], "start_seconds": ["160", "30"], "properties": ["chirp, man, younger person", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping and people are talking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "winds blows roughly as a vehicle races past"], "sample_ids": ["w8uLijTqtlU", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["wind, microphone, noise", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry and shaky", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["the wind is blowing strongly", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "an airplane engine runs"], "sample_ids": ["vveS8HT7Uog", "yVPZ2MNWpms"], "start_seconds": ["100", "0"], "properties": ["a man, objects, speak", "engine, airplane, runs"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a car is driving by on the road "], "question": "which object is moving", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a horn rings out as a machine runs by"], "sample_ids": ["zFjIWfSD-4", "slZLHwNbbt4"], "start_seconds": ["410", "300"], "properties": ["People, motor, brakes", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["birds chirp and wind blows", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sxIvBMSavMQ", "xKB8O8LTs6s"], "start_seconds": ["210", "70"], "properties": ["birds, chirp, wind", "music, gunfire, explosion"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "music plays, a person speaks, followed by whooshes and a ding"], "sample_ids": ["w5W5Kqtc8E", "tQWGZLItBXk"], "start_seconds": ["100", "170"], "properties": ["wind, engine, scream", "music, person, ding"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity is a musical composition?", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["w0xsN8X18Y", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["music, surface, rain", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be a natural occurrence", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "an insect buzzes around continuously"], "sample_ids": ["x5cuQjOdM3E", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["cat, meows, young woman", "buzzes, continuously, insect"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a cat meows and a woman speaks", "a fly is buzzing around a microphone "], "question": "which entity is more active", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vlS6YMeWAPo", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["noise, bleat, call", "loud, multiple, distance"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wqZ135Ssz0", "sSMl2vc3ek"], "start_seconds": ["60", "20"], "properties": ["man, woman, squawks", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks continuously", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vlJS7LN2XyM", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["ticktocks, clock, ticktocks continuously", "wind, blow, vehicle"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a clock?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uWAAAL4CIoc", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["a woman, chirps, animal", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a duck quacks and a woman speaks"], "question": "which entity has more animals", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["xl2PIWyXaM", "rqu8iB22IY"], "start_seconds": ["160", "5"], "properties": ["chirp, man, younger person", "sound, repeats, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "a dog barks and a man speaks while music plays "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["vs65y4qmyBE", "uWAAAL4CIoc"], "start_seconds": ["340", "0"], "properties": ["engine, run, man", "a woman, chirps, animal"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a dog is barking "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "dishes cling together then a man begins to speak"], "sample_ids": ["xSKJGCItUWE", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["engine, work, child", "cling, speak, dishes"], "captions_pred_video": ["footage of the helicopter flying in the room", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["children cry and people talk", "an airplane flies overhead as a woman speaks"], "sample_ids": ["xLwHe825Zs", "zj2R0XoFr5k"], "start_seconds": ["18", "50"], "properties": ["people talk, children cry, people talk", "airplane, fly, overhead"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a plane flying overhead?", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "people speak as gunfire rings out"], "sample_ids": ["y8dSeubCNI", "wqTCwqVRDlk"], "start_seconds": ["4", "80"], "properties": ["engine revving, people speaking, motorcycle", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["ukg5L09Wpvo", "vfYTJq7nU"], "start_seconds": ["150", "130"], "properties": ["clickety-clack, train, whistle", "rustling, ducks, quack"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sjlVMgdGSK0", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["car, revving, loudly", "a woman, something, fried"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tw76HGONaKg", "vfYTJq7nU"], "start_seconds": ["570", "130"], "properties": ["A, game, keyboard", "rustling, ducks, quack"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a duck quacks and a woman speaks"], "question": "which entity is about a game?", "label": 0}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a woman speaks as frying food sizzles"], "sample_ids": ["sEprKHm8Sj8", "wTideSjRFS0"], "start_seconds": ["90", "30"], "properties": ["car, tires, slows", "food, sizzle, woman"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking while water is running in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "wind blows as people chatter quietly"], "sample_ids": ["uiS58TNyUiw", "xBxDz0CFVn0"], "start_seconds": ["430", "30"], "properties": ["vocalize, bird, chirp", "wind, chatter, people"], "captions_pred_video": ["of the pigeon in the cage", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["bees buzz as wind blows", "a female speaks softly as paper crinkles"], "sample_ids": ["tMJne1a4AFI", "xvDdE3zNf8Y"], "start_seconds": ["0", "120"], "properties": ["bees, buzz, wind", "a, female, speaks"], "captions_pred_video": ["a swarm of bees on the ground", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman speaks and crumples paper"], "question": "which entity is speaking softly", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uzQnlJXBbOM", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["ringing, beep, stop", "a woman, laughs, animal"], "captions_pred_video": ["footage of a person using a cell phone on a table", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a telephone rings and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["an infant crying as a woman laughs", "a woman speaks and other women and a man talk with her"], "sample_ids": ["xhmRY9yhC7c", "vbpKkWvfOu4"], "start_seconds": ["20", "560"], "properties": ["a, laugh, infant", "a, woman, man"], "captions_pred_video": ["of a baby crying in a baby bouncer", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as crickets sing", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["ryFDPxgDOGc", "wDVMhEdTiVw"], "start_seconds": ["570", "30"], "properties": ["a, crickets, sing", "gun, shoot, water"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a child yells and another yells", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vMDHu7Lxcgw", "wqZ135Ssz0"], "start_seconds": ["410", "60"], "properties": ["two, yell, child", "two men, woman, birds"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", null], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["two frogs croak at each other", "a man speaks as a car is passing by"], "sample_ids": ["zg0X6BnhOLQ", "sK4u5T8hW78"], "start_seconds": ["410", "30"], "properties": ["two frogs, croak, at each other", "a, car, pass"], "captions_pred_video": ["footage of lightning in the sky at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a frog is croaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a woman speaks happily and an animal chirps"], "sample_ids": ["wyllXV6PjKo", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["a kid, talk, cry", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a dog is barking "], "question": "which entity has a kid?", "label": 0}, {"captions": ["a man speaks then multiple motorcycles pass by", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zcDwZ6W7E3E", "uZesmtKZGSw"], "start_seconds": ["180", "250"], "properties": ["a, man, speak", "men, talk, cars"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more vehicles", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "dishes cling together then a man begins to speak"], "sample_ids": ["vZAw4apG0Es", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["people, clock, converse", "cling, speak, dishes"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a clock is ticking and people are talking", "mechanisms are operating and water is splashing "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "three men talk while wind blows and some liquid flows"], "sample_ids": ["y8WEcpOlT3I", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["wind, speak, buffeting", "three men, wind, flow"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a person whistles a meandering tune", "water splashes as an animal walks through"], "sample_ids": ["uFoga8sHpiw", "w1ir-sZ3Im8"], "start_seconds": ["90", "90"], "properties": ["person, tune, whistle", "animal, water, splashes"], "captions_pred_video": ["footage of a bird in a cage", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a person whistles a song", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "water is sprayed across a hard surface"], "sample_ids": ["w2JXXIAdUdg", "sQwlkXjQabo"], "start_seconds": ["10", "10"], "properties": ["snoring, distance, person", "water, spray, surface"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a person snoring and a dog whimpering", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uYT5gxnyMWM", "w34HjHr6gAY"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "beeps, hit, woman"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a beep sounds followed by a child speaking"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "water flows as men speak and yell"], "sample_ids": ["tw76HGONaKg", "vJ7JPEFhyLA"], "start_seconds": ["570", "16"], "properties": ["A, game, keyboard", "water, flow, men"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking while playing a video game on a keyboard?", "label": 0}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a man speaks as a motor runs in the background"], "sample_ids": ["wvKpEYswXO0", "xZepNM9qcRA"], "start_seconds": ["150", "30"], "properties": ["water, tap, run", "background, motor, run"], "captions_pred_video": ["of the person preparing food in the kitchen", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "roadway noise occurs and a truck accelerates"], "sample_ids": ["sSMl2vc3ek", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["loud, multiple, distance", "noise, truck, accelerate"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on the road "], "question": "which noise is louder", "label": 1}, {"captions": ["some tunes played by whistling", "bees buzz as wind blows"], "sample_ids": ["u6BnG6YZqJ4", "tMJne1a4AFI"], "start_seconds": ["0", "0"], "properties": ["tune, play, whistling", "bees, buzz, wind"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "a swarm of bees on the ground"], "captions_pred_audio": ["a person whistling a song", "a swarm of bees buzzing around"], "question": "which entity is not a musical instrument", "label": 1}, {"captions": ["food is frying and sizzles", "some men converse over an engine running"], "sample_ids": ["zNRChLjqcU", "sCiy7QS1U"], "start_seconds": ["220", "300"], "properties": ["food is frying, sizzles, food", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "water rushes by"], "sample_ids": ["s7knHCFW82w", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["blow horn, get close, train", "water, rushes, by"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a car is driving on a wet road "], "question": "which is a moving object", "label": 0}, {"captions": ["some tunes played by whistling", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["u6BnG6YZqJ4", "t25U-v4k4ts"], "start_seconds": ["0", "40"], "properties": ["tune, play, whistling", "a, chirps, bird"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and bees are buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["yajyRTUQk3U", "wDVMhEdTiVw"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "gun, shoot, water"], "captions_pred_video": ["- a woman cooking in the kitchen", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vbr9mHKc8WM", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["noise, loudness, engine", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a baby is crying"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man laughs and speaks as cats purr and hiss", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vVhthZ45k3Y", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["cat, purr, hiss", "three men, wind, flow"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a toilet door squeaks as it is opened"], "sample_ids": ["ukxt9I7eMMg", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["food, pan, cook", "door, toilet, squeaks"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["ziUT9IFTkjg", "tDlysoZiA1I"], "start_seconds": ["10", "0"], "properties": ["background, birds, rustling", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "birds are chirping and a rooster is crowing "], "question": "which entity has more birds", "label": 1}, {"captions": ["a person speaks over rustling leaves", "an insect buzzes around continuously"], "sample_ids": ["zOZleIRqZm4", "v25l1jef3JY"], "start_seconds": ["80", "0"], "properties": ["rustling, leaves, person", "buzzes, continuously, insect"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tIY7qOV3rEM", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "engine, idle, woman"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a subway train is moving "], "question": "which entity is a human activity", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "people applaud and hoot and chat quietly"], "sample_ids": ["w9lpbUn0hPc", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["male, wind, rustling", "people, applaud, hoot"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", null], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be in a theater", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a crowd yells, reacts and applauds"], "sample_ids": ["s4Uz1Ffgo04", "wztCSUxOf8"], "start_seconds": ["100", "130"], "properties": ["water, rushes, motorcycle", "a crowd, yells, applauds"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking and a crowd is clapping"], "question": "which entity is more likely to be a video of a person riding a motorcycle?", "label": 0}, {"captions": ["water is sprayed across a hard surface", "water splashes and a door squeaks"], "sample_ids": ["sQwlkXjQabo", "sdXV-ylviw"], "start_seconds": ["10", "190"], "properties": ["water, spray, surface", "sound, splash, door"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a dog barks and taps with background noise "], "question": "which entity is sprayed across a hard surface", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "waves crash against a shoreline and people speak"], "sample_ids": ["sQwlkXjQabo", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["liquid, surface, spray", "wave, crash, shoreline"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of a person surfing in the ocean"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be seen in a movie", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a telephone rings followed by a woman talking"], "sample_ids": ["vddP56-ogds", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["water, flow, laugh", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["leaves rustle while man speaks", "wind blowing followed by a zoom"], "sample_ids": ["zOZleIRqZm4", "vr8ZXjEBhMQ"], "start_seconds": ["80", "150"], "properties": ["leaves, rustle, speak", "wind, blow, zoom"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a jet engine roars, almost making a man inaudible", "an electric engine works nearby followed by a child talking"], "sample_ids": ["xfaoyyzw2WU", "xSKJGCItUWE"], "start_seconds": ["180", "10"], "properties": ["loud, jet engine, roar", "engine, work, child"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "footage of the helicopter flying in the room"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a high pitched engine is running and a child speaks"], "question": "which engine is quieter", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "water drips and bubbles as a man speaks"], "sample_ids": ["y8WEcpOlT3I", "vSeGhaZt-aI"], "start_seconds": ["40", "50"], "properties": ["wind, speak, buffeting", "water, bubbles, speak"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is more calm", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["ugHJF0hfYkg", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["engine, running, continuously", "engine, revs, vehicle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which entity has a running engine", "label": 0}, {"captions": ["water pouring and bubbling", "paper folding and crinkling"], "sample_ids": ["uyRfq-jKPpo", "zPpG3RD8lSs"], "start_seconds": ["50", "20"], "properties": ["water, bubbles, pouring", "paper, fold, crinkle"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["water is running from a faucet", "the wind blows and a mouse clicks "], "question": "which entity is not a liquid", "label": 1}, {"captions": ["a man speaks as horns blow", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tHyNqRyK34A", "w5W5Kqtc8E"], "start_seconds": ["24", "100"], "properties": ["a, man, speaks", "wind, blow, vehicle"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "several insects fly while two men talk"], "sample_ids": ["zuua6-5goWw", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["sound, pop, bird", "several, fly, men"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["an engine runs and wind blows", "people speak then an engine runs"], "sample_ids": ["vs65y4qmyBE", "uMTTDZ2mb4"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "engine, run, people"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a woman speaks as she rubs two objects together"], "sample_ids": ["zgUgkpk78xU", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["horn, bells, ring", "two objects, woman, speak"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a warning device?", "label": 0}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a machine clanks and thumps and a male speaks"], "sample_ids": ["sU53zg9Jp7s", "sWZzXuWYY"], "start_seconds": ["380", "420"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "male, clanks, thumps"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a sewing machine runs and a man speaks"], "question": "which entity has a male speaking?", "label": 1}, {"captions": ["children cry and people talk", "a horn honks and then loudly blares"], "sample_ids": ["xLwHe825Zs", "wnpJndXuxLc"], "start_seconds": ["18", "50"], "properties": ["people talk, children cry, people talk", "horn, honk, loud"], "captions_pred_video": [null, "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a baby cries and a woman speaks", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xl2PIWyXaM", "yajyRTUQk3U"], "start_seconds": ["160", "400"], "properties": ["chirp, man, younger person", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and people are talking", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["water bubbles and gurgles.", "waves crash against a shoreline and people speak"], "sample_ids": ["tB7hWb9gTuQ", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["bubbles, gurgles, water", "wave, crash, shoreline"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "footage of a person surfing in the ocean"], "captions_pred_audio": ["water is splashing and gurgling", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["a horn blasts as warning bells ring", "small dogs yip and bark sharply"], "sample_ids": ["zgUgkpk78xU", "v-wcQf4BDY0"], "start_seconds": ["70", "120"], "properties": ["horn, bells, ring", "bark, yip, sharply"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a car accelerates and wind blows"], "sample_ids": ["tw76HGONaKg", "u0TrcHhkPQ"], "start_seconds": ["570", "20"], "properties": ["music, click, man", "accelerates, wind, blows"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["people clap and speak in the distance", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wwyfGO2J4", "tDlysoZiA1I"], "start_seconds": ["90", "0"], "properties": ["clap, distance, speak", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "birds are chirping and a rooster is crowing "], "question": "which entity is more animal like", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a duck quacks continuously"], "sample_ids": ["s59PfAghdkM", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["bird, chirp, background, horse, neigh", "quacks, continuously, duck"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 0}, {"captions": ["a toilet flushes and water sputters as it drains", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["smGI3C1NZc", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["water, drain, toilet", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person whistles a meandering tune", "a person speaks over rustling leaves"], "sample_ids": ["uFoga8sHpiw", "zOZleIRqZm4"], "start_seconds": ["90", "80"], "properties": ["person, tune, whistle", "rustling, leaves, person"], "captions_pred_video": ["footage of a bird in a cage", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a person whistles a song", "a man is speaking with crickets chirping in the background"], "question": "which person is speaking over rustling leaves", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "water pouring and bubbling"], "sample_ids": ["uqFtmnhuqA8", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["a, b, c", "water, bubbles, pouring"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "material crumbles into a microphone"], "sample_ids": ["zY3icUyMdh8", "vofpvUo6NAw"], "start_seconds": ["20", "220"], "properties": ["dog, bark, engine", "material, crumbles, microphone"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "person wrapping a toy car in a plastic bag"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "paper is being crumpled and crinkled"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "water is sprayed across a hard surface"], "sample_ids": ["ujMt0-D-x2k", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["snoring, rhythmical, nearby", "water, spray, surface"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a person is snoring loudly", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an audience gives applause", "a man speaks as a motor runs in the background"], "sample_ids": ["x6iCUDmRpKQ", "xZepNM9qcRA"], "start_seconds": ["38", "30"], "properties": ["applause, audience, give", "background, motor, run"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a group of people are clapping and cheering", "a man speaks while a motorcycle revs and accelerates "], "question": "which is a man speaking", "label": 1}, {"captions": ["an engine runs loudly", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vqZuVbG6-HI", "vfYTJq7nU"], "start_seconds": ["130", "130"], "properties": ["loud, engine, run", "rustling, ducks, quack"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a duck quacks and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "water flows as men speak and yell"], "sample_ids": ["xfaoyyzw2WU", "vJ7JPEFhyLA"], "start_seconds": ["180", "16"], "properties": ["loud, jet engine, roar", "water, flow, men"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which is louder", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["ugHJF0hfYkg", "zl9Dqx-j7q4"], "start_seconds": ["10", "6"], "properties": ["loud, propeller, move", "engine, laugh, loud"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a helicopter is flying overhead ", "a jet engine roars "], "question": "which is louder", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uzQnlJXBbOM", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "rooster, crow, background, men"], "captions_pred_video": ["footage of a person using a cell phone on a table", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a telephone rings and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a vehicle engine accelerates and wind blows"], "sample_ids": ["xNMovAf3o50", "wudZTNBtVqc"], "start_seconds": ["0", "60"], "properties": ["rain, thunder, music", "accelerates, engine, wind"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a car accelerates and revs its engine "], "question": "which entity is not a weather phenomenon", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a man speaks then blows a vehicle horn as wind blows"], "sample_ids": ["s4Uz1Ffgo04", "zALy31PjDl0"], "start_seconds": ["100", "21"], "properties": ["water, rushes, motorcycle", "a man, a vehicle, a horn"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a motorcycle is parked on the side of a brick walkway"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking and a car horn is honking"], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["wind blows and people talk while livestock vocalizes", "a frog croaks as other frogs croak in the background"], "sample_ids": ["vXlk0lIQBFo", "yswmmRZFItk"], "start_seconds": ["470", "0"], "properties": ["wind, talk, vocalize", "background, frog, croak"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a close up of a frog in the water"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a frog is croaking"], "question": "which entity is a single animal", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "birds chirp and objects are moved around"], "sample_ids": ["ul60S8TXDA8", "yPUYU6t3rwo"], "start_seconds": ["60", "370"], "properties": ["sound, distance, bell", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "an infant crying as a woman laughs"], "sample_ids": ["yZrFNS7GFBQ", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["pigeon, buzzes, insect", "a, laugh, infant"], "captions_pred_video": ["of the bird in the cage", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["an owl hoots in the background ", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["a clock ticktocks briefly", "a boat travels through the waves as the wind blows loudly and a man speaks over a radio"], "sample_ids": ["u7C-AEBQM", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["ticktocks, clock, ticktocks briefly", "wind, radio, waves"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "a stream of water runs briefly"], "sample_ids": ["w8uLijTqtlU", "x-PeY8Yb8M4"], "start_seconds": ["70", "300"], "properties": ["wind, microphone, noise", "stream, water, run"], "captions_pred_video": ["footage is blurry and shaky", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["the wind is blowing strongly", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a music is played followed by a frog croaking and then music is played again"], "sample_ids": ["tw76HGONaKg", "voJh2gJxXhA"], "start_seconds": ["570", "50"], "properties": ["A, game, keyboard", "music, frog, croak"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a frog on a black background with a red diamond in the center"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "music is playing and crickets are chirping "], "question": "which entity is not a video game", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wqZ135Ssz0", "vbZ-0lGPneg"], "start_seconds": ["60", "30"], "properties": ["man, woman, squawks", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wz7N8YRy74I", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["rooster, crow, background, people", "harsh, wind, blows"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tDlysoZiA1I", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["animal, grunt, multiple", "engine, idle, woman"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "someone is typing on a computer keyboard"], "sample_ids": ["uWAAAL4CIoc", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["a woman, chirps, animal", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a fly buzzes around loudly as birds chirp"], "sample_ids": ["ylpYOorfH4o", "uJV8NDaHqqk"], "start_seconds": ["410", "100"], "properties": ["motor, run, steady", "loud, fly, chirp"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a bee hive in a wooden box"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a swarm of bees buzzing around"], "question": "which entity is louder", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a man speaks followed by another man speaking outside"], "sample_ids": ["zsLxS-uLJTw", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["horn, blast, train", "two men, speak, follow"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single speaker?", "label": 0}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "water flows and trickles"], "sample_ids": ["yYEVLuqEytU", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "water, flow, trickle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["several sheep bleat and a man speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "an adult male speaks and dials a rotary phone"], "sample_ids": ["uPDn2BFTHk", "tK4VlLsNxak"], "start_seconds": ["140", "120"], "properties": ["woman, laughs, speaks", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": [null, "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and using a sewing machine"], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying then a woman speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["ukxt9I7eMMg", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["food, woman, speak", "engine, laugh, loud"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a man speaks followed by another man speaking outside"], "sample_ids": ["se87d6yxEOA", "viuTg1M-dqg"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "two men, speak, follow"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["someone whistles a tune", "people speak in the background as a clock ticktocks"], "sample_ids": ["sIXTftIuUgw", "vZAw4apG0Es"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "background, clock, ticktocks"], "captions_pred_video": [null, "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a person whistling a song", "a clock is ticking and people are talking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a male speaks over some small clicks", "pigeons vocalize and birds chirp"], "sample_ids": ["uXxVebHsGZ8", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["male, clicks, speak", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "people applaud and hoot and chat quietly"], "sample_ids": ["wqUmIEzuNz4", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["frog, bird, vocalize", "people, applaud, hoot"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", null], "captions_pred_audio": ["a cat meows and rustles", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "a child speaks in closed space"], "sample_ids": ["tK4VlLsNxak", "yW6FWLSLkx4"], "start_seconds": ["120", "40"], "properties": ["a, dial, telephone", "child, space, speak"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "a soft wind underscores a woman laughing"], "sample_ids": ["x9JovgqUcs", "s6DESzUTGjY"], "start_seconds": ["500", "16"], "properties": ["a, man, speaks, keyboard", "wind, laugh, woman"], "captions_pred_video": [null, "how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a motorboat is moving with wind noise in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a toilet flushes and a female speaks"], "sample_ids": ["xC8kbrKJmco", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["background, goat, scream", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a goat is bleating ", "a toilet flushes and a man speaks"], "question": "which entity is silent", "label": 1}, {"captions": ["speaking following by laughing and clapping", "multiple birds chirp and an animal grunts"], "sample_ids": ["u2f5NpsoHBg", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["person, laugh, clap", "animal, grunt, multiple"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "birds are chirping and a rooster is crowing "], "question": "which entity is a person", "label": 0}, {"captions": ["a man speaks as music plays before artillery is fired", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vcmWSmvti8", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["music, man, fire", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking and an animal grunting and snorting?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "people speak as gunfire rings out"], "sample_ids": ["vfYTJq7nU", "wqTCwqVRDlk"], "start_seconds": ["130", "80"], "properties": ["rustling, ducks, quack", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a propeller rotates loudly and intensely"], "sample_ids": ["vhJWZheqaE", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["water drains unevenly, toilet flushes, water drains", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a toilet is flushed", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a telephone rings followed by a woman talking"], "sample_ids": ["wIvYjuR3nrg", "tGcFnX0GHI"], "start_seconds": ["9", "0"], "properties": ["birds, pigeons, vocalize", "ring, talk, woman"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", null], "captions_pred_audio": ["birds are chirping and cooing", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "vehicles pass by on a roadway"], "sample_ids": ["tQWGZLItBXk", "tgbONvsP47Y"], "start_seconds": ["170", "0"], "properties": ["voice, music, whoosh", "pass, vehicle, roadway"], "captions_pred_video": ["worms revolution screenshots", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "waves crash against a shoreline and people speak"], "sample_ids": ["zcDwZ6W7E3E", "yFB25fqfU8I"], "start_seconds": ["180", "300"], "properties": ["man, speak, motorcycles", "wave, crash, shoreline"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is a natural phenomenon", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a man speaks as a car is passing by"], "sample_ids": ["ylpYOorfH4o", "sK4u5T8hW78"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "a, car, pass"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking with background noise and breathing sounds "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone snores nearby", "a man speaks while a machine runs before a smoke alarm beeps"], "sample_ids": ["spJCm8tD9Zo", "sG7TyPnFDR0"], "start_seconds": ["90", "180"], "properties": ["someone snores, nearby, someone", "beeps, machine, smoke alarm"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a person is using an espresso machine in a restaurant"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a microwave oven is beeping "], "question": "which entity is about a machine?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "an insect buzzes around continuously"], "sample_ids": ["x9JovgqUcs", "v25l1jef3JY"], "start_seconds": ["500", "0"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["an insect buzzes around continuously", "a child speaks in closed space"], "sample_ids": ["v25l1jef3JY", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["buzzes, continuously, insect", "child, space, speak"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not a child?", "label": 0}, {"captions": ["food is frying while a woman speaks", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["yhQ2Lg-7qDY", "uWPRNLnpy7Y"], "start_seconds": ["130", "10"], "properties": ["food, woman, speak", "accelerate, laugh, vehicle"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "is taken from a car driving down the street"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "cats meow and then a person begins to talk while the cats continue to meow"], "sample_ids": ["vBHyYJ8pL0", "x5cuQjOdM3E"], "start_seconds": ["2", "30"], "properties": ["noise, door, opening", "cat, talk, meow"], "captions_pred_video": [null, "a black background with an airplane flying in the sky"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a cat meows and a woman speaks"], "question": "which entity is accompanied by a person talking", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sAam2NqGhLY", "yDoT73BWsdA"], "start_seconds": ["20", "10"], "properties": ["snoring, breathing, child", "engine, revs, vehicle"], "captions_pred_video": ["of a little girl sleeping on a couch", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a person is snoring", "a race car accelerates and revs its engine "], "question": "which entity is not a person", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wRV8yMk886E", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "engine, accelerate, idle"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man speaks followed by a loud burst", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks as a machine runs", "people cheer as a vehicle engine revs"], "sample_ids": ["vD6lYD1l0BY", "xjhAnI2q6hM"], "start_seconds": ["330", "6"], "properties": ["a, machine, run", "engine revs, vehicle, people"], "captions_pred_video": ["game controller being held in the hands of the person", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a stream of water runs briefly"], "sample_ids": ["ukxt9I7eMMg", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["food, pan, cook", "stream, water, run"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "water is sprayed across a hard surface"], "sample_ids": ["vBslzh7saPw", "sQwlkXjQabo"], "start_seconds": ["90", "10"], "properties": ["engine, roar, louder", "water, spray, surface"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a jet engine roars and accelerates ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["ticking continues without interruption", "a man speaks and is typing on a keyboard"], "sample_ids": ["v-g-j2uTByM", "x9JovgqUcs"], "start_seconds": ["30", "500"], "properties": ["ticking, continuous, clock", "a, man, speaks, keyboard"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", null], "captions_pred_audio": ["a clock is ticking loudly", "a man speaks and types on a keyboard"], "question": "which entity is not continuous", "label": 1}, {"captions": ["water splashes as an animal walks through", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["w1ir-sZ3Im8", "vfYTJq7nU"], "start_seconds": ["90", "130"], "properties": ["animal, water, splashes", "rustling, ducks, quack"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["a man makes an exclamation, then another man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xO-Q2BlIIPU", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["two men, exclamation, speak", "men, talk, cars"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a weapon fires multiple times"], "sample_ids": ["x9JovgqUcs", "sMC07Ucy7kg"], "start_seconds": ["500", "10"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "weapon, fire, multiple"], "captions_pred_video": [null, "footage is from a car's point of view"], "captions_pred_audio": ["a man speaks and types on a keyboard", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["dogs barking and whimpering", "a propeller rotates loudly and intensely"], "sample_ids": ["tIY7qOV3rEM", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["barking, whimpering, dog", "loud, intense, propeller"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a small engine idles continuously"], "sample_ids": ["xBxDz0CFVn0", "y5WII6cTH7k"], "start_seconds": ["30", "40"], "properties": ["stream, water, flow", "engine, idle, continuously"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "an engine is knocking and vibrating "], "question": "which entity is not a stream of water?", "label": 1}, {"captions": ["an airplane engine runs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yVPZ2MNWpms", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["engine, airplane, runs", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car is driving by on the road ", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "an airplane engine spools and people speak"], "sample_ids": ["vSeGhaZt-aI", "wTjoRj1se3U"], "start_seconds": ["50", "390"], "properties": ["water, bubbles, run", "airplane, engine, spool"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a jet engine is running and people are talking"], "question": "which entity is a video of a man speaking and water bubbles and runs?", "label": 0}, {"captions": ["paper is crumpling consistently", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["v5cSxLaHADY", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "a woman, laughs, animal"], "captions_pred_video": ["footage of the person holding a pair of scissors", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a clock ticktocks in wind", "a saw finishes running as metal clings in the background"], "sample_ids": ["yVumC9TGknc", "zofjfKhqLk8"], "start_seconds": ["30", "10"], "properties": ["ticktocks, clock, wind", "background, metal, clings"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a series of beeps and chirps", "a large engine is running and a bell is ringing"], "question": "which entity is a clock", "label": 0}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a woman speaks happily and an animal chirps"], "sample_ids": ["sLUnaPT5gM8", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["loud, laughter, intermittent", "a woman, chirps, animal"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "winds blows roughly as a vehicle races past"], "sample_ids": ["vVhthZ45k3Y", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["cat, purr, hiss", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a jet engine roars and wind blows "], "question": "which entity is more likely to be a windy day", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "water flows and trickles"], "sample_ids": ["wy1eKjR7KC0", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "water, flow, trickle"], "captions_pred_video": ["two police officers riding motorcycles down the street", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a siren is going off", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane accelerates briefly", "water splashes as an animal walks through"], "sample_ids": ["zjTG0gaGCUI", "w1ir-sZ3Im8"], "start_seconds": ["80", "90"], "properties": ["accelerates, airplane, briefly", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a jet engine roars as wind blows ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a car", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man talks while a clock does ticktock"], "sample_ids": ["sfAvvZwdLCY", "spYNpeN7rPY"], "start_seconds": ["20", "1"], "properties": ["water drains, flushes, water", "a clock, ticktock, man"], "captions_pred_video": ["footage of the toilet in the bathroom", "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and breathing with background noise "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "people cheer as a vehicle engine revs"], "sample_ids": ["w-4gHptFNuU", "xjhAnI2q6hM"], "start_seconds": ["21", "6"], "properties": ["engine revs, accelerates, bump", "engine revs, vehicle, people"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zkKdxzNC97Y", "y8WEcpOlT3I"], "start_seconds": ["27", "40"], "properties": ["loud, bang, noise", "harsh, wind, blows"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking with wind noise in the background "], "question": "which entity is softer", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wqADXCzngMw", "sSMl2vc3ek"], "start_seconds": ["340", "20"], "properties": ["engine, idle, man", "loud, multiple, distance"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", null], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a man speaks as a car is passing by"], "sample_ids": ["yajyRTUQk3U", "sK4u5T8hW78"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "a, car, pass"], "captions_pred_video": ["- a woman cooking in the kitchen", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "an animal quacks rapidly"], "sample_ids": ["vf9xf3vMsGM", "vh30P49Po6s"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "animal, quacks, rapidly"], "captions_pred_video": ["of the person washing their hands under the faucet", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a duck is quacking loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xKB8O8LTs6s", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["music, radio, gunshots", "female, spraying, scream"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking on a radio?", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vs65y4qmyBE", "uZesmtKZGSw"], "start_seconds": ["340", "250"], "properties": ["wind, blows, strongly", "men, talk, cars"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more likely to be in a city", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sK4u5T8hW78", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["a, car, pass", "water, radio, man"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a clock ticktocks"], "sample_ids": ["sfAvvZwdLCY", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a toilet is flushed", "a clock is ticking loudly"], "question": "which entity is a timepiece", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "water splashes and a motorboat passes as people yell"], "sample_ids": ["vSeGhaZt-aI", "w5W5Kqtc8E"], "start_seconds": ["50", "100"], "properties": ["water, bubbles, run", "water, splashes, motorboat"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["t25U-v4k4ts", "y8WEcpOlT3I"], "start_seconds": ["40", "40"], "properties": ["bees buzz, birds chirp, man speaks", "harsh, wind, blows"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be in a calm environment", "label": 0}, {"captions": ["a clock ticktocks", "a vehicle accelerates and squeals tires"], "sample_ids": ["v-g-j2uTByM", "yRx9txMcBl0"], "start_seconds": ["30", "40"], "properties": ["ticktocks, clock, ticktocks", "accelerates, tires, squeals"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a clock is ticking loudly", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an engine runs and a man speaks", "a train horn sounds as a railroad passing bell rings"], "sample_ids": ["yT5WfYMRr-U", "zgUgkpk78xU"], "start_seconds": ["30", "70"], "properties": ["engine, run, man", "horn, bell, train"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a train blows its horn as it speeds down the tracks "], "question": "which train is going to pass the other train?", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["zj2R0XoFr5k", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["airplane, fly, woman", "loud, intense, propeller"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "people speak as gunfire rings out"], "sample_ids": ["wyllXV6PjKo", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["a kid, talk, cry", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "birds chirp and objects are moved around"], "sample_ids": ["zl9Dqx-j7q4", "yPUYU6t3rwo"], "start_seconds": ["6", "370"], "properties": ["engine, laugh, loud", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a jet engine roars ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "paper folding and crinkling"], "sample_ids": ["t97k0cejSQE", "zPpG3RD8lSs"], "start_seconds": ["250", "20"], "properties": ["bird, chirp, insect", "paper, fold, crinkle"], "captions_pred_video": ["a bee on a purple thistle flower", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "the wind blows and a mouse clicks "], "question": "which entity is not a living thing", "label": 1}, {"captions": ["a baby cries and a woman speaks", "water flows and trickles"], "sample_ids": ["tMbMDvT50j8", "tB7hWb9gTuQ"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "water, flow, trickle"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a baby cries and a woman speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y1saVTXsKwc", "w5W5Kqtc8E"], "start_seconds": ["80", "100"], "properties": ["a, dog, talk", "wind, blow, vehicle"], "captions_pred_video": ["a dog playing with a pink ball", null], "captions_pred_audio": ["a dog barks and a man speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vbZ-0lGPneg", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["a woman, a television program, a bird", "applause, audience, yells"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "water pouring and bubbling"], "sample_ids": ["xZepNM9qcRA", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["background, motor, run", "water, bubbles, pouring"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "water is running from a faucet"], "question": "which entity is more active", "label": 1}, {"captions": ["a person snoring several times", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["spJCm8tD9Zo", "tdWhHV3X25Q"], "start_seconds": ["90", "60"], "properties": ["snore, person, several", "applause, audience, yells"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman and man are speaking", "small dogs yip and bark sharply"], "sample_ids": ["vbpKkWvfOu4", "v-wcQf4BDY0"], "start_seconds": ["560", "120"], "properties": ["two people, speaking, woman, man", "bark, yip, sharply"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream of water runs briefly", "some tunes played by whistling"], "sample_ids": ["x-PeY8Yb8M4", "u6BnG6YZqJ4"], "start_seconds": ["300", "0"], "properties": ["stream, water, run", "tune, play, whistling"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a car is driving on a wet road ", "a person whistling a song"], "question": "which entity is not a stream of water?", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "water rushes and then a vehicle zooms past"], "sample_ids": ["s4Uz1Ffgo04", "s4Uz1Ffgo04"], "start_seconds": ["100", "100"], "properties": ["water, rushes, motorcycle", "water, rushes, vehicle"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity shows a vehicle zooming past?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "some men converse over an engine running"], "sample_ids": ["vzxHnu-SFEw", "sCiy7QS1U"], "start_seconds": ["80", "300"], "properties": ["two objects, woman, speak", "men, converse, engine"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which object is being rubbed together", "label": 0}, {"captions": ["a man speaks while water drains", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vSeGhaZt-aI", "uZesmtKZGSw"], "start_seconds": ["50", "250"], "properties": ["water, drain, man", "men, talk, cars"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a clock ticktocks continuously", "a motorcycle engine works nearby"], "sample_ids": ["vlJS7LN2XyM", "tOSWIURC-4"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, ticktocks continuously", "engine, work, nearby"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a lawn mower is running "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man talks as several small engines run", "ticking continues without interruption"], "sample_ids": ["u9A6VZQCZpU", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "ticking, continuous, clock"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vXlk0lIQBFo", "uYT5gxnyMWM"], "start_seconds": ["470", "50"], "properties": ["wind, speak, vocalize", "a, scream, girl"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking followed by a scream?", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "pigeons vocalize and birds chirp"], "sample_ids": ["sapQIQUhFc", "uiS58TNyUiw"], "start_seconds": ["280", "430"], "properties": ["liquid, flow, distance", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["waves crash and wind blows", "rain falls loudly as the build up of thunder and lightning occurs in the distance"], "sample_ids": ["vwqaIHKxLvM", "wulOEFdECWs"], "start_seconds": ["20", "10"], "properties": ["wind, crash, wave", "rain, thunder, lightning"], "captions_pred_video": ["of a surfer riding a big wave in the ocean", "a view of the city at night from a window in the rain"], "captions_pred_audio": ["waves crash and wind blows ", "a heavy rain is falling on a surface"], "question": "which entity is more likely to cause damage", "label": 1}, {"captions": ["a power tool runs and touches a surface", "water splashes as an animal walks through"], "sample_ids": ["zfvPRf3chY", "w1ir-sZ3Im8"], "start_seconds": ["290", "90"], "properties": ["power tool, run, touch", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "water splashes and gurgles as people speak"], "question": "which entity is not a power tool?", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "small dogs yip and bark sharply"], "sample_ids": ["sEprKHm8Sj8", "v-wcQf4BDY0"], "start_seconds": ["90", "120"], "properties": ["noise, loud, buzzing", "bark, yip, sharply"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "people applaud and hoot and chat quietly"], "sample_ids": ["y2bVZ7rz-5M", "wwyfGO2J4"], "start_seconds": ["280", "90"], "properties": ["engine, horn, siren", "people, applaud, hoot"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "people are clapping and speaking with background noise "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tDlfY3nmx1A", "zj2R0XoFr5k"], "start_seconds": ["160", "50"], "properties": ["applause, laugh, man", "airplane, boy, fly"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "wind blows as people chatter quietly"], "sample_ids": ["w6RTHR6AeAg", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["call, owl, screech", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sfAvvZwdLCY", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "stream, water, flow"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with wind noise in the background "], "question": "which entity is moving water", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a person snores loudly multiple times at a close distance"], "sample_ids": ["un9VQlzgZM", "sSMl2vc3ek"], "start_seconds": ["5", "20"], "properties": ["wind, speak, laugh", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["ukg5L09Wpvo", "y2bVZ7rz-5M"], "start_seconds": ["150", "280"], "properties": ["a train, a horn, a bell", "motor noise, horn, siren"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn and a bell?", "label": 0}, {"captions": ["a child and woman laughs and the woman speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uPDn2BFTHk", "wz7N8YRy74I"], "start_seconds": ["140", "30"], "properties": ["woman, laughs, speaks", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wRBHTgrbiwg", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["bird, owl, speak", "three men, wind, flow"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking briefly?", "label": 0}, {"captions": ["birds coo incessantly", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yZrFNS7GFBQ", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["coo, bird, incessant", "clickety-clack, train, whistle"], "captions_pred_video": ["of the bird in the cage", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an owl hoots in the background ", "a train blows its whistle and blows its horn "], "question": "which is continuous", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "water splashes as an animal walks through"], "sample_ids": ["vzxHnu-SFEw", "w1ir-sZ3Im8"], "start_seconds": ["80", "90"], "properties": ["two objects, woman, speak", "animal, water, splashes"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "paper is repeatedly crumpled and crinkled"], "sample_ids": ["tK4VlLsNxak", "vms5XGTDVQc"], "start_seconds": ["120", "220"], "properties": ["a, dial, telephone", "paper, crumpled, crinkled"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a woman opening a black bag on a table"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "paper is crumpled and crinkled"], "question": "which is not a rotary telephone", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "water splashes as an animal walks through"], "sample_ids": ["sTpirNYo8vQ", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["a, tone, fast", "animal, water, splashes"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["frogs croak and vocalize", "some men converse over an engine running"], "sample_ids": ["yswmmRZFItk", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["croak, vocalize, frog", "men, converse, engine"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zOZleIRqZm4", "tDVADusiIoc"], "start_seconds": ["80", "60"], "properties": ["rustling, leaves, person", "water, radio, man"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "wind blows and people scream while an engine revs"], "sample_ids": ["u2f5NpsoHBg", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["person, laugh, clap", "wind, engine, scream"], "captions_pred_video": ["is being projected on a screen at the front of the stage", null], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["sjlVMgdGSK0", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["car, revving, loudly", "sound, chirp, buzz"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a bee on a purple thistle flower"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a bee buzzes and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "vehicles pass by on a roadway"], "sample_ids": ["sShpyu2l4YQ", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["growl, bark, yip", "pass, vehicle, roadway"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a dog is barking and growling", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["u5RmF3c3Aw", "zFjIWfSD-4"], "start_seconds": ["60", "410"], "properties": ["engine, car, zoom", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a car zooming by?", "label": 0}, {"captions": ["a clang followed by a toilet flushing", "pigeons vocalize and birds chirp"], "sample_ids": ["wNZ5thZM7XU", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["sound, flush, toilet", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a toilet in a bathroom stall", "of the pigeon in the cage"], "captions_pred_audio": ["a toilet flushes", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a clock ticktocks"], "sample_ids": ["vfYTJq7nU", "v-g-j2uTByM"], "start_seconds": ["130", "30"], "properties": ["ducks, quack, man", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a dog barks and whimpers", "wind blows and people scream while an engine revs"], "sample_ids": ["sShpyu2l4YQ", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["barks, whimpers, dog", "wind, engine, scream"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more quiet", "label": 0}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vW4x7S1VfQc", "tiDFTC-5vU"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "male, duck, laugh"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", null], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "some tunes played by whistling"], "sample_ids": ["vXlk0lIQBFo", "u6BnG6YZqJ4"], "start_seconds": ["470", "0"], "properties": ["wind, speak, vocalize", "tune, play, whistling"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tOSWIURC-4", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["engine, work, nearby", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a lawn mower is running ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "some men converse over an engine running"], "sample_ids": ["u--KhUW8l1Y", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["engine, sound, horn", "men, converse, engine"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", null], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a running engine", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a young woman speaks over spraying and another person yells"], "sample_ids": ["wy1eKjR7KC0", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["people, talk, distance", "person, spray, yell"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a stream of water runs briefly"], "sample_ids": ["tiDFTC-5vU", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["male, duck, laugh", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["weDbePuc-Xc", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["music, slaps, human", "airplane, boy, fly"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a woman sneezes then speaks", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["x4dZyf9Gbj0", "y8WEcpOlT3I"], "start_seconds": ["130", "40"], "properties": ["sneezes, speaks, woman", "harsh, wind, blows"], "captions_pred_video": ["footage is blurry and out of focus", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking with wind noise in the background "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "plastic is tapped on while someone speaks"], "sample_ids": ["y8dSeubCNI", "wvKpEYswXO0"], "start_seconds": ["4", "150"], "properties": ["men, women, car", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is quieter", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a baby laughs giddily and a woman laughs then speaks"], "sample_ids": ["y8dSeubCNI", "wjsXBsc7M40"], "start_seconds": ["4", "10"], "properties": ["men, women, car", "a baby laughs, a woman laughs, a woman speaks"], "captions_pred_video": [null, "footage of the baby playing with a toothbrush"], "captions_pred_audio": ["an engine revving and people talking in the background", "a baby laughs and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "people cheer as a vehicle engine revs"], "sample_ids": ["wDVMhEdTiVw", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["gun, shoot, water", "engine revs, vehicle, people"], "captions_pred_video": ["a blurry image of trees and water in the forest", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a man speaks as crickets sing"], "sample_ids": ["tQWGZLItBXk", "ryFDPxgDOGc"], "start_seconds": ["170", "570"], "properties": ["music, kid, speak", "a, crickets, sing"], "captions_pred_video": ["worms revolution screenshots", "a group of people dressed in camouflage and hunting gear in the dark"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking with crickets chirping in the background"], "question": "which entity has a man speaking as crickets sing?", "label": 1}, {"captions": ["a car accelerates and wind blows", "a motor runs steadily as a man speaks, then the motor revs twice"], "sample_ids": ["u0TrcHhkPQ", "ylpYOorfH4o"], "start_seconds": ["20", "410"], "properties": ["accelerates, wind, blows", "motor, run, steady"], "captions_pred_video": [null, "for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and an engine is revving"], "question": "which is a moving object", "label": 0}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tZGN5a7ybxo", "su6FAOcOA8c"], "start_seconds": ["60", "4"], "properties": ["ring, train, horn", "engine, idle, woman"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wDVMhEdTiVw", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["gun, shoot, water", "engine, idle, woman"], "captions_pred_video": ["a blurry image of trees and water in the forest", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["yYJksgsxx5U", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["audio, woman, silverware", "A, game, keyboard"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man speaks and types on a computer keyboard "], "question": "which entity is a video?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a flush is followed by gurgling water, then another flush"], "sample_ids": ["vfYTJq7nU", "tqR406bGiE"], "start_seconds": ["130", "40"], "properties": ["rustling, ducks, quack", "flush, water, gurgle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a duck quacks and a woman speaks", "a toilet is flushed"], "question": "which entity is more likely to be a video of a toilet flushing?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "someone is typing on a computer keyboard"], "sample_ids": ["zofjfKhqLk8", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["noise, stop, motor", "keyboard, type, computer"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "how to make money on youtube in spanish"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "water splashes and a door squeaks"], "sample_ids": ["sxYkFKFIZD0", "sdXV-ylviw"], "start_seconds": ["20", "190"], "properties": ["screech, man, door", "sound, splash, door"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["a person is whistling a tune", "a infant makes noise and is excited"], "sample_ids": ["scYRUkrFLiQ", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["a, tune, whistle", "noise, excited, infant"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a person whistling a song", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "winds blows roughly as a vehicle races past"], "sample_ids": ["w0xsN8X18Y", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["music, surface, rain", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be a storm", "label": 1}, {"captions": ["an insect buzzes around continuously", "someone is typing on a computer keyboard"], "sample_ids": ["v25l1jef3JY", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["buzzes, continuously, insect", "keyboard, type, computer"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "how to make money on youtube in spanish"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a person is typing on a keyboard"], "question": "which entity is not a person", "label": 0}, {"captions": ["a woman speaks happily and an animal chirps", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uWAAAL4CIoc", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["a woman, chirps, animal", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a machine runs continuously", "water pouring and bubbling"], "sample_ids": ["wdXV3Pv0jiY", "uyRfq-jKPpo"], "start_seconds": ["11", "50"], "properties": ["machine, running, continuously", "water, bubbles, pouring"], "captions_pred_video": ["footage is blurry and shaky", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "water is running from a faucet"], "question": "which entity is not running continuously", "label": 1}, {"captions": ["scraping and female speech with distant music", "a infant makes noise and is excited"], "sample_ids": ["yHeVV-xeOxQ", "wIJK3-5y0kA"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "noise, excited, infant"], "captions_pred_video": ["of a girl milking a goat's udder", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a crowd yells, reacts and applauds"], "sample_ids": ["zY3icUyMdh8", "wztCSUxOf8"], "start_seconds": ["20", "130"], "properties": ["dog, bark, engine", "a crowd, yells, applauds"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking and a crowd is clapping"], "question": "which entity is more likely to be at a sporting event", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wRV8yMk886E", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["liquid, spray, nozzle", "loud, jet engine, roar"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man speaks followed by a loud burst", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "birds chirp quietly and an adult man speaks"], "sample_ids": ["y8dSeubCNI", "zuua6-5goWw"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "birds, chirp, quiet, man, speaks"], "captions_pred_video": [null, "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["an engine revving and people talking in the background", "birds are chirping and a man is speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["tDVADusiIoc", "ziUT9IFTkjg"], "start_seconds": ["60", "10"], "properties": ["water, radio, man", "background, birds, rustling"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xl2PIWyXaM", "vJ7JPEFhyLA"], "start_seconds": ["160", "16"], "properties": ["chirp, man, younger person", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and people are talking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a man talks as several small engines run", "music plays, a person speaks, followed by whooshes and a ding"], "sample_ids": ["u9A6VZQCZpU", "tQWGZLItBXk"], "start_seconds": ["30", "170"], "properties": ["a, man, talk", "music, person, ding"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a person speaking?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a man speaks as a car is passing by"], "sample_ids": ["sa6TLVbooCc", "sK4u5T8hW78"], "start_seconds": ["240", "30"], "properties": ["people, laugh, child", "a, car, pass"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tQWGZLItBXk", "wDVMhEdTiVw"], "start_seconds": ["170", "30"], "properties": ["music, person, ding", "gun, shoot, water"], "captions_pred_video": ["worms revolution screenshots", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a game", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "white noise and snoring with some rustling in the background"], "sample_ids": ["x5cuQjOdM3E", "xzKKf9bKNUo"], "start_seconds": ["30", "10"], "properties": ["cat, talk, meow", "background, noise, snoring"], "captions_pred_video": ["a black background with an airplane flying in the sky", "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["a cat meows and a woman speaks", "a person snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a man speaks as a car is passing by"], "sample_ids": ["sK4u5T8hW78", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "a, car, pass"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a photograph", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a car accelerates and wind blows"], "sample_ids": ["vs65y4qmyBE", "u0TrcHhkPQ"], "start_seconds": ["340", "20"], "properties": ["wind, blows, strongly", "accelerates, wind, blows"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "an adult male speaks and dials a rotary phone"], "sample_ids": ["tDVADusiIoc", "tK4VlLsNxak"], "start_seconds": ["60", "120"], "properties": ["man, radio, blows", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and using a sewing machine"], "question": "which entity is a man?", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["uYT5gxnyMWM", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["person, spray, yell", "water, radio, man"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a person speaking over spraying?", "label": 0}, {"captions": ["females talk and laugh over gusting wind", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["un9VQlzgZM", "x6ijhqRY38s"], "start_seconds": ["5", "250"], "properties": ["females, talk, laugh", "something metal, glass, hit"], "captions_pred_video": [null, "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking and dishes are clanging "], "question": "which entity is about a man talking?", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "small dogs yip and bark sharply"], "sample_ids": ["tezvROoo4bs", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["audio, throttle, speaking", "bark, yip, sharply"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xyL9F5VrjkE", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["engine, run, wind", "wind, blow, vehicle"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a motorboat is moving and people are shouting and cheering "], "question": "which vehicle is running an engine?", "label": 0}, {"captions": ["multiple ducks quack continuously", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wfHeoPDLMaM", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["multiple, quack, continuously", "airplane, boy, fly"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["ducks are quacking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["wind blows strongly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w8uLijTqtlU", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["wind, blows, strongly", "airplane, boy, fly"], "captions_pred_video": ["footage is blurry and shaky", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["the wind is blowing strongly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "birds chirp and objects are moved around"], "sample_ids": ["vZAw4apG0Es", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["people, clock, converse", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a clock is ticking and people are talking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "water flows as men speak and yell"], "sample_ids": ["zsLxS-uLJTw", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["horn, blast, train", "water, flow, men"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a train passing?", "label": 0}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wyllXV6PjKo", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["a baby, a woman, a man", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a helicopter engine idles continuously", "wind blows as people chatter quietly"], "sample_ids": ["ugHJF0hfYkg", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["engine, idle, continuously", "wind, chatter, people"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry and out of focus"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vzxHnu-SFEw", "sSMl2vc3ek"], "start_seconds": ["80", "20"], "properties": ["two objects, woman, speak", "loud, multiple, distance"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a man speaks as a motor runs in the background"], "sample_ids": ["y2ZBGpgbhHM", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["dog, chirp, breathe", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds chirping and a dog panting", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "two men speak as a buffeting wind blows"], "sample_ids": ["vSeGhaZt-aI", "y8WEcpOlT3I"], "start_seconds": ["50", "40"], "properties": ["water, bubbles, speak", "wind, speak, buffeting"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be in a calm environment", "label": 0}, {"captions": ["people clap and speak in the distance", "a person is snoring while sleeping"], "sample_ids": ["wwyfGO2J4", "vJrjSeP17yE"], "start_seconds": ["90", "40"], "properties": ["clap, distance, speak", "a person is sleeping, snoring, person"], "captions_pred_video": [null, "a black background with a small plane flying in the sky"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a person snoring loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wudZTNBtVqc", "uYT5gxnyMWM"], "start_seconds": ["60", "50"], "properties": ["accelerates, engine, wind", "female, spraying, scream"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks and then loudly blares", "a infant makes noise and is excited"], "sample_ids": ["wnpJndXuxLc", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["horn, honk, loud", "noise, excited, infant"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["w34HjHr6gAY", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "multiple, people, yell"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wvKpEYswXO0", "y2bVZ7rz-5M"], "start_seconds": ["150", "280"], "properties": ["sound, water, running", "motor noise, horn, siren"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a car accelerates and wind blows"], "sample_ids": ["wqZ135Ssz0", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["man, woman, squawks", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "water splashes as an animal walks through"], "sample_ids": ["sHbXC6na9hg", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["a person, saw, wood", "animal, water, splashes"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["an engine is idling and vibrating", "water splashes and gurgles as people speak"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a man speaks as a car is passing by"], "sample_ids": ["sjlVMgdGSK0", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["car, revving, loudly", "a, car, pass"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which car is revving loudly", "label": 0}, {"captions": ["various birds chirp and squeal, and an animal grunts", "wind blowing followed by a zoom"], "sample_ids": ["tDlysoZiA1I", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["animal, grunts, chirps", "wind, blow, zoom"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is silent", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a man speaks as a car is passing by"], "sample_ids": ["sEprKHm8Sj8", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["car, tires, slows", "a, car, pass"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which car is going faster", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uOpoD0gGXcs", "zj2R0XoFr5k"], "start_seconds": ["120", "50"], "properties": ["chirps, woman, bird", "airplane, boy, fly"], "captions_pred_video": ["a herd of cows grazing in the field", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "wind blowing followed by a zoom"], "sample_ids": ["ylpYOorfH4o", "vr8ZXjEBhMQ"], "start_seconds": ["410", "150"], "properties": ["engine, running, wind", "wind, blow, zoom"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and an engine is revving", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a stream runs then someone speaks"], "sample_ids": ["x5cuQjOdM3E", "wbHTKEJZyhc"], "start_seconds": ["30", "20"], "properties": ["cat, meows, young woman", "stream, run, someone"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a cat meows and a woman speaks", "a waterfall is flowing and people are speaking "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["s4Uz1Ffgo04", "su6FAOcOA8c"], "start_seconds": ["100", "4"], "properties": ["roars, background, people speaking", "engine, idle, woman"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman is speaking and a subway train is moving "], "question": "which entity is quieter", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a man speaks as a car is passing by"], "sample_ids": ["yYEVLuqEytU", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "a, car, pass"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a clock ticktocks"], "sample_ids": ["un9VQlzgZM", "v-g-j2uTByM"], "start_seconds": ["5", "30"], "properties": ["wind, speak, laugh", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wP8ZKrlx3oA", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["rain, storm, thunder", "rustling, ducks, quack"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a duck quacks and a woman speaks"], "question": "which entity is more likely to be in a lake", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["uiItxDsDMFI", "tDlfY3nmx1A"], "start_seconds": ["30", "160"], "properties": ["wood, piece, saw", "applause, laugh, man"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a saw is being used with background noise ", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity is a man speaking to a crowd?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "an airplane engine runs"], "sample_ids": ["x9JovgqUcs", "yVPZ2MNWpms"], "start_seconds": ["500", "0"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a machine beeps continuously"], "sample_ids": ["yRx9txMcBl0", "y682ml90jGw"], "start_seconds": ["40", "11"], "properties": ["accelerates, tires, squeals", "beeps, machine, continuously"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains", "two women and a man talk while a kid cries"], "sample_ids": ["sfAvvZwdLCY", "wyllXV6PjKo"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "a kid, talk, cry"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a woman speaks and a baby cries"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "winds blows roughly as a vehicle races past"], "sample_ids": ["tDVADusiIoc", "xjvTpk2Zpr8"], "start_seconds": ["60", "70"], "properties": ["man, radio, blows", "wind, blows, vehicle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars and wind blows "], "question": "which entity shows a vehicle racing past?", "label": 1}, {"captions": ["some people speak", "vehicles pass by on a roadway"], "sample_ids": ["vbZ-0lGPneg", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "pass, vehicle, roadway"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["multiple ducks quack continuously", "pigeons vocalize and birds chirp"], "sample_ids": ["wfHeoPDLMaM", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["multiple, quack, continuously", "vocalize, bird, chirp"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of the pigeon in the cage"], "captions_pred_audio": ["ducks are quacking", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sWZzXuWYY", "wz7N8YRy74I"], "start_seconds": ["420", "30"], "properties": ["male, clanks, thumps", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["xKB8O8LTs6s", "ziUT9IFTkjg"], "start_seconds": ["70", "10"], "properties": ["music, gunfire, explosion", "background, birds, rustling"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "birds are chirping and a chime is ringing "], "question": "which entity is more peaceful", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["zcDwZ6W7E3E", "wwyfGO2J4"], "start_seconds": ["180", "90"], "properties": ["man, speak, motorcycles", "people, applaud, hoot"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "birds chirp and objects are moved around"], "sample_ids": ["x6ijhqRY38s", "yPUYU6t3rwo"], "start_seconds": ["250", "370"], "properties": ["bowl, silverware, man", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "insects buzz and a man speaks"], "question": "which entity is about moving objects around", "label": 1}, {"captions": ["a large crowd cheers and applauds", "an infant crying frantically"], "sample_ids": ["rqfQRErjfk8", "zwOBqeFTgiU"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "cry, infant, frantically"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "of the baby crying in the car seat"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a cat meows and children speak", "a child speaks in closed space"], "sample_ids": ["x5cuQjOdM3E", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["cat, speak, children", "child, space, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "people applaud and hoot and chat quietly"], "sample_ids": ["yRx9txMcBl0", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["accelerates, tires, squeals", "people, applaud, hoot"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "people are clapping and speaking with background noise "], "question": "which entity is a performance", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["ugHJF0hfYkg", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["engine, running, continuously", "a woman, something, fried"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["a woman sneezes then speaks", "a frog croaks as other frogs croak in the background"], "sample_ids": ["x4dZyf9Gbj0", "yswmmRZFItk"], "start_seconds": ["130", "0"], "properties": ["sneezes, speaks, woman", "background, frog, croak"], "captions_pred_video": ["footage is blurry and out of focus", "a close up of a frog in the water"], "captions_pred_audio": ["a woman sneezes and speaks", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "some tunes played by whistling"], "sample_ids": ["sYITalLZjj4", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["water, rushes, background, birds", "tune, play, whistling"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["wind blows and birds chirp", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["uiItxDsDMFI", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["wood, piece, saw", "engine, revs, vehicle"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a saw is being used with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tQWGZLItBXk", "vbZ-0lGPneg"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "a woman, a television program, a bird"], "captions_pred_video": ["worms revolution screenshots", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a woman sneezes then speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["x4dZyf9Gbj0", "vzxHnu-SFEw"], "start_seconds": ["130", "80"], "properties": ["sneezes, speaks, woman", "two objects, woman, speak"], "captions_pred_video": ["footage is blurry and out of focus", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman speaks as she rubs two objects together?", "label": 1}, {"captions": ["a helicopter engine runs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["t5ZbXbniOWk", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["engine, helicopter, run", "engine, idle, woman"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a subway train is moving "], "question": "which entity has a running engine", "label": 0}, {"captions": ["a person sniffles and sneezes", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uRlbY6aoBU", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["sneezes, sniffles, person", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vZAqdHZ81yA", "wDVMhEdTiVw"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "gun, shoot, water"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["an engine is idling loudly", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a cat meows and children speak", "an insect buzzes around continuously"], "sample_ids": ["x5cuQjOdM3E", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["cat, speak, children", "buzzes, continuously, insect"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a cat meows and a woman speaks", "a fly is buzzing around a microphone "], "question": "which entity is more active", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "people cheer as a vehicle engine revs"], "sample_ids": ["yYJksgsxx5U", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["audio, woman, silverware", "engine revs, vehicle, people"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w0xsN8X18Y", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["rain, thunder, surface", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a gun?", "label": 0}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a woman speaks and dog vocalizes"], "sample_ids": ["zj2R0XoFr5k", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["airplane, boy, fly", "a, dog, vocalize"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a dog is barking "], "question": "which entity is a dog?", "label": 1}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "wind blows as people chatter quietly"], "sample_ids": ["vr8ZXjEBhMQ", "xBxDz0CFVn0"], "start_seconds": ["150", "30"], "properties": ["sound, distance, engine", "wind, chatter, people"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage is blurry and out of focus"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a man speaks as a car is passing by"], "sample_ids": ["zY3icUyMdh8", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "a, car, pass"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more passive", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a child speaks in closed space"], "sample_ids": ["xSKJGCItUWE", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["engine, run, boy", "child, space, speak"], "captions_pred_video": ["footage of the helicopter flying in the room", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vlJS7LN2XyM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["background, clocks, ticking", "stream, water, flow"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage is blurry and out of focus"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a helicopter engine idles continuously"], "sample_ids": ["vs65y4qmyBE", "ugHJF0hfYkg"], "start_seconds": ["340", "10"], "properties": ["engine, run, man", "engine, idle, continuously"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a helicopter is flying overhead "], "question": "which entity has a running engine", "label": 0}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a man speaks as a vehicle engine idles"], "sample_ids": ["yLy-WycbVVE", "shmR4OZtzqA"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "man, engine, idle"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a man speaks while a motor runs"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a stream of water runs briefly"], "sample_ids": ["vdoxuJn9lTc", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["person, burp, girl", "stream, water, run"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a child speaks followed by a burp", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a beep occurs briefly", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["xtWeJ56-U-g", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["beep, occur, briefly", "a, scream, girl"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["birds chirp then an animal grunts", "people speak as gunfire rings out"], "sample_ids": ["tDlysoZiA1I", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["animal, grunt, chirp", "gunfire, ring, speak"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["zcDwZ6W7E3E", "uWAAAL4CIoc"], "start_seconds": ["180", "0"], "properties": ["man, speak, motorcycles", "a woman, chirps, animal"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking and a dog is barking "], "question": "which entity has a more active animal", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a train horn blows as it passes by"], "sample_ids": ["sAam2NqGhLY", "zVacuqSb4LI"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "horn, blows, train"], "captions_pred_video": ["of a little girl sleeping on a couch", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a person is snoring", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is not a person", "label": 1}, {"captions": ["food is frying then a woman speaks", "a stream of water runs briefly"], "sample_ids": ["ukxt9I7eMMg", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["food, woman, speak", "stream, water, run"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sQwlkXjQabo", "sLUnaPT5gM8"], "start_seconds": ["10", "0"], "properties": ["water, spray, surface", "loud, laughter, intermittent"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["spraying followed by silence", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "paper is crumpling consistently"], "sample_ids": ["wDVMhEdTiVw", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["gun, shoot, water", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a blurry image of trees and water in the forest", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a propeller moves loudly nearby", "motors runs briefly and tires screech"], "sample_ids": ["ugHJF0hfYkg", "yRx9txMcBl0"], "start_seconds": ["10", "40"], "properties": ["loud, propeller, move", "motors, tires, screech"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is revving its engine and skidding "], "question": "which is louder", "label": 1}, {"captions": ["birds chirp, a woman speaks, and insects buzz", "paper is crumpling consistently"], "sample_ids": ["t97k0cejSQE", "v5cSxLaHADY"], "start_seconds": ["250", "0"], "properties": ["sound, chirp, buzz", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "wind blows as people chatter quietly"], "sample_ids": ["tDVADusiIoc", "xBxDz0CFVn0"], "start_seconds": ["60", "30"], "properties": ["wind, radio, waves", "wind, chatter, people"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["an engine runs and wind blows", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vs65y4qmyBE", "vfYTJq7nU"], "start_seconds": ["340", "130"], "properties": ["engine, run, wind", "rustling, ducks, quack"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["someone whistles a song", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["sIXTftIuUgw", "vKrYfzleLB8"], "start_seconds": ["90", "110"], "properties": ["someone, song, whistle", "a, ring, gunshots"], "captions_pred_video": [null, "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more quiet", "label": 0}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "a toilet flushes and water drains"], "sample_ids": ["uiItxDsDMFI", "sfAvvZwdLCY"], "start_seconds": ["30", "20"], "properties": ["sound, distance, leaves", "water drains, flushes, water"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a saw is being used with background noise ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["goats bleat and metal clings", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tH17JPjDPnc", "uZesmtKZGSw"], "start_seconds": ["260", "250"], "properties": ["bleat, metal, clings", "men, talk, cars"], "captions_pred_video": ["feed of the goats eating hay in the barn", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water flows and trickles", "a woman talking as an infant is crying"], "sample_ids": ["tB7hWb9gTuQ", "tMbMDvT50j8"], "start_seconds": ["30", "12"], "properties": ["water, flow, trickle", "a, talk, infant"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["water is splashing and gurgling", "a baby cries and a woman speaks"], "question": "which entity is a human activity", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sapQIQUhFc", "uEU-Hg5MTN8"], "start_seconds": ["280", "27"], "properties": ["water, stream, trickles", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a person snores loudly multiple times at a close distance"], "sample_ids": ["smGI3C1NZc", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["water, drain, toilet", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a child speaks in closed space"], "sample_ids": ["weDbePuc-Xc", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["cartoon character, music, vocalize", "child, space, speak"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a duck quacks loudly and continuously"], "sample_ids": ["vdoxuJn9lTc", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "loud, continuous, quacks"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a child speaks followed by a burp", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "an airplane engine roars increasingly louder"], "sample_ids": ["wjsXBsc7M40", "vBslzh7saPw"], "start_seconds": ["10", "90"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "engine, roar, louder"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a jet engine roars and accelerates "], "question": "which entity is louder", "label": 1}, {"captions": ["a child speaks in closed space", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yW6FWLSLkx4", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["child, space, speak", "three men, wind, flow"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be in a closed space", "label": 0}, {"captions": ["a man rubs two objects together then speaks", "birds chirp and objects are moved around"], "sample_ids": ["vveS8HT7Uog", "yPUYU6t3rwo"], "start_seconds": ["100", "370"], "properties": ["a man, objects, speak", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "insects buzz and a man speaks"], "question": "which entity is about birds?", "label": 1}, {"captions": ["paper folding and crinkling", "a infant makes noise and is excited"], "sample_ids": ["zPpG3RD8lSs", "wIJK3-5y0kA"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "noise, excited, infant"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a machine runs continuously", "a steam engine runs and whistles as it passes by"], "sample_ids": ["wdXV3Pv0jiY", "se87d6yxEOA"], "start_seconds": ["11", "10"], "properties": ["machine, running, continuously", "run, whistle, pass"], "captions_pred_video": ["footage is blurry and shaky", "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a train is moving and blowing its whistle "], "question": "which machine is running continuously", "label": 0}, {"captions": ["an animal growls followed by birds chirping", "small dogs yip and bark sharply"], "sample_ids": ["y2ZBGpgbhHM", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["animal, growl, bird", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds chirping and a dog panting", "a dog barks and growls"], "question": "which animal is more likely to be a dog", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sQGXqGcwOTc", "zl9Dqx-j7q4"], "start_seconds": ["3", "6"], "properties": ["audio, kid, giggles", "engine, laugh, loud"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a man driving a car in the dark"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a duck quacks continuously"], "sample_ids": ["w1mlz3Pe4fU", "vh30P49Po6s"], "start_seconds": ["300", "30"], "properties": ["vocalize, chirp, continuously", "quacks, continuously, duck"], "captions_pred_video": ["of a bird in a cage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and singing", "a duck is quacking loudly"], "question": "which entity is a duck?", "label": 1}, {"captions": ["an engine runs and a man speaks", "a horn rings out as a machine runs by"], "sample_ids": ["yT5WfYMRr-U", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["engine, run, man", "a, horn, run"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a person snoring", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["t8tv5YRMJUg", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["a person, snore, loud", "animal, grunts, snorts"], "captions_pred_video": ["of a man getting his face licked by another man", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "water is sprayed across a hard surface"], "sample_ids": ["wudZTNBtVqc", "sQwlkXjQabo"], "start_seconds": ["60", "10"], "properties": ["accelerates, engine, wind", "water, spray, surface"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a car accelerates and revs its engine ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "water splashes as an animal walks through"], "sample_ids": ["zofjfKhqLk8", "w1ir-sZ3Im8"], "start_seconds": ["10", "90"], "properties": ["noise, stop, motor", "animal, water, splashes"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a man talks while vehicles pass by", "a clock ticktocks"], "sample_ids": ["sK4u5T8hW78", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "ticktocks, clock, ticktocks"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a woman talking as an infant is crying", "an airplane engine spools and people speak"], "sample_ids": ["tMbMDvT50j8", "wTjoRj1se3U"], "start_seconds": ["12", "390"], "properties": ["a, talk, infant", "airplane, engine, spool"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a baby cries and a woman speaks", "a jet engine is running and people are talking"], "question": "which entity is a video of a person talking to an infant?", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["x4a9YGIw4ok", "zj2R0XoFr5k"], "start_seconds": ["120", "50"], "properties": ["water, gurgles, stops", "airplane, boy, fly"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a toilet flushes and water splashes", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a propeller rotates loudly and intensely"], "sample_ids": ["y2ZBGpgbhHM", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["animal, growl, bird", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["birds chirping and a dog panting", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "vehicles pass by on a roadway"], "sample_ids": ["vcmWSmvti8", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["music, man, fire", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["an airplane accelerates briefly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zjTG0gaGCUI", "xKB8O8LTs6s"], "start_seconds": ["80", "70"], "properties": ["accelerates, airplane, briefly", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a jet engine roars as wind blows ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a movie?", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zVacuqSb4LI", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["blares, fades, train", "rooster, crow, background, men"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xKB8O8LTs6s", "zl9Dqx-j7q4"], "start_seconds": ["70", "6"], "properties": ["music, gunshots, explosion", "engine, laugh, loud"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a man driving a car in the dark"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a vehicle engine runs and someone speaks"], "sample_ids": ["zOZleIRqZm4", "zF8yoL0rkbI"], "start_seconds": ["80", "30"], "properties": ["rustling, leaves, person", "engine, run, someone"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the traffic on the street at night"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "the wind is blowing hard and water is splashing"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zj2R0XoFr5k", "tdWhHV3X25Q"], "start_seconds": ["50", "60"], "properties": ["airplane, boy, fly", "applause, audience, yells"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "water is sprayed across a hard surface"], "sample_ids": ["uYT5gxnyMWM", "sQwlkXjQabo"], "start_seconds": ["50", "10"], "properties": ["person, spray, yell", "water, spray, surface"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "spraying followed by silence"], "question": "which entity is a video of a person speaking over spraying and another person yelling?", "label": 0}, {"captions": ["an engine revs and a turning noise is made", "someone is burping continuously"], "sample_ids": ["tOSWIURC-4", "y636gklDioE"], "start_seconds": ["0", "20"], "properties": ["noise, engine, revs", "burps, burps, burps"], "captions_pred_video": [null, "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a lawn mower is running ", "a person burps loudly several times"], "question": "which noise is made by a human", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a clock ticks quietly and rhythmically"], "sample_ids": ["tK4VlLsNxak", "u7C-AEBQM"], "start_seconds": ["120", "30"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "ticks, rhythmic, quiet"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["tEE3MpBt1sg", "sjlVMgdGSK0"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "accelerates, vehicle, race car"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["vMf1dLD6Sng", "y2bVZ7rz-5M"], "start_seconds": ["6", "280"], "properties": ["frog, bird, vocalize", "motor noise, horn, siren"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a frog croaks loudly", "a truck is honking its horn and a siren is blaring "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tw76HGONaKg", "ukg5L09Wpvo"], "start_seconds": ["570", "150"], "properties": ["music, click, man", "clickety-clack, train, whistle"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yDoT73BWsdA", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["engine, revs, vehicle", "People, motor, brakes"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running and air brakes hissing?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a clock ticktocks"], "sample_ids": ["vJrjSeP17yE", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a black background with a small plane flying in the sky", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person snoring loudly", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "waves crash against a shoreline and people speak"], "sample_ids": ["zsLxS-uLJTw", "yFB25fqfU8I"], "start_seconds": ["20", "300"], "properties": ["horn, blast, train", "wave, crash, shoreline"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a duck quacks several times", "someone whistles a tune"], "sample_ids": ["vh30P49Po6s", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["quacks, duck, several", "someone, tune, whistle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a helicopter engine runs", "a duck quacks continuously"], "sample_ids": ["t5ZbXbniOWk", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["engine, helicopter, run", "quacks, continuously, duck"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a helicopter is flying overhead ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "water rushes and then a vehicle zooms past"], "sample_ids": ["sK4u5T8hW78", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["a, car, pass", "water, rushes, vehicle"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is about a vehicle zooming past?", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "an infant crying as a woman laughs"], "sample_ids": ["wDVMhEdTiVw", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["gun, shoot, water", "a, laugh, infant"], "captions_pred_video": ["a blurry image of trees and water in the forest", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "people speak as gunfire rings out"], "sample_ids": ["vcmWSmvti8", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["music, man, fire", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking and a gun is fired"], "question": "which entity is about a man speaking as music plays before artillery is fired?", "label": 0}, {"captions": ["an adult woman and an adult man speak", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zTLVJCo4WEE", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["two people, adult, speak", "rustling, ducks, quack"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a duck quacks and a woman speaks"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a man speaks followed by another man speaking outside"], "sample_ids": ["wfHeoPDLMaM", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "two men, speak, follow"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["ducks are quacking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a group of animals?", "label": 0}, {"captions": ["a door opens and closes", "people applaud and hoot and chat quietly"], "sample_ids": ["vBHyYJ8pL0", "wwyfGO2J4"], "start_seconds": ["2", "90"], "properties": ["open, close, door", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a child speaks in closed space"], "sample_ids": ["u--KhUW8l1Y", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["horn, siren, life", "child, space, speak"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "water flows as men speak and yell"], "sample_ids": ["vddP56-ogds", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["water, flow, laugh", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["three men talk while wind blows and some liquid flows", "someone whistles a tune"], "sample_ids": ["vJ7JPEFhyLA", "sIXTftIuUgw"], "start_seconds": ["16", "90"], "properties": ["three men, wind, flow", "someone, tune, whistle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a motorcycle engine is idling", "paper is crumpling consistently"], "sample_ids": ["vZAqdHZ81yA", "v5cSxLaHADY"], "start_seconds": ["180", "0"], "properties": ["engine, motorcycle, idling", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["an engine is idling loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a woman talking as an infant is crying", "three men talk while wind blows and some liquid flows"], "sample_ids": ["tMbMDvT50j8", "vJ7JPEFhyLA"], "start_seconds": ["12", "16"], "properties": ["a, talk, infant", "three men, wind, flow"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman talking to an infant?", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yRx9txMcBl0", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["accelerates, tires, squeals", "men, talk, cars"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a person whistles and clicks a mouse", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zCrAfDfv6-A", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["person, mouse, click", "engine, idle, woman"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "pigeons vocalize and birds chirp"], "sample_ids": ["uiItxDsDMFI", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["wood, piece, saw", "vocalize, bird, chirp"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of the pigeon in the cage"], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a telephone rings and a bird vocalizes", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["skd2PphS6oI", "yajyRTUQk3U"], "start_seconds": ["190", "400"], "properties": ["ring, bird, vocalize", "a woman, something, fried"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["some men converse over an engine running", "vehicles pass by on a roadway"], "sample_ids": ["sCiy7QS1U", "tgbONvsP47Y"], "start_seconds": ["300", "0"], "properties": ["men, converse, engine", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a car accelerates and wind blows", "a person snores loudly multiple times at a close distance"], "sample_ids": ["u0TrcHhkPQ", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["accelerates, wind, blows", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["s6DESzUTGjY", "y8WEcpOlT3I"], "start_seconds": ["16", "40"], "properties": ["wind, laugh, woman", "harsh, wind, blows"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is softer", "label": 0}, {"captions": ["dishes cling together then a man begins to speak", "pigeons vocalize and birds chirp"], "sample_ids": ["sQGXqGcwOTc", "uiS58TNyUiw"], "start_seconds": ["3", "430"], "properties": ["cling, speak, dishes", "vocalize, bird, chirp"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "of the pigeon in the cage"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a weapon fires multiple times"], "sample_ids": ["t25U-v4k4ts", "sMC07Ucy7kg"], "start_seconds": ["40", "10"], "properties": ["a, chirps, bird", "weapon, fire, multiple"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage is from a car's point of view"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "water pouring and bubbling"], "sample_ids": ["wnpJndXuxLc", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["beeps, loud, whistle", "water, bubbles, pouring"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a train horn blows as it passes by"], "sample_ids": ["u5RmF3c3Aw", "zVacuqSb4LI"], "start_seconds": ["60", "30"], "properties": ["engine, car, zoom", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["tQWGZLItBXk", "w34HjHr6gAY"], "start_seconds": ["170", "30"], "properties": ["music, person, ding", "beeps, hit, woman"], "captions_pred_video": ["worms revolution screenshots", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a beep sounds followed by a child speaking"], "question": "which entity has a person speaking?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "a power tool runs and touches a surface"], "sample_ids": ["ugHJF0hfYkg", "zfvPRf3chY"], "start_seconds": ["10", "290"], "properties": ["engine, running, continuously", "power tool, run, touch"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while a power tool is being used "], "question": "which entity is not running continuously", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xvDdE3zNf8Y", "uEU-Hg5MTN8"], "start_seconds": ["120", "27"], "properties": ["a, female, speaks", "a woman, laughs, animal"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking softly?", "label": 0}, {"captions": ["multiple people speak and children yell while water gurgles", "water flows and trickles"], "sample_ids": ["vb1fPSDI4c", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a crowd of people are talking and laughing", "water is splashing and gurgling"], "question": "which entity is a video of water flowing and trickling?", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "birds chirp and objects are moved around"], "sample_ids": ["w2bYrCVLT60", "yPUYU6t3rwo"], "start_seconds": ["120", "370"], "properties": ["ducks, speak, quack", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a horse runs while two women talk"], "sample_ids": ["vuUVPzd2FXw", "sdvI1mHAsc"], "start_seconds": ["160", "20"], "properties": ["a, steam, release", "two women, horse, run"], "captions_pred_video": ["of the person cooking on the grill with a spatula", null], "captions_pred_audio": ["a man is speaking and dishes are clanging", "horses clip-clop and a woman speaks"], "question": "which entity is a horse?", "label": 1}, {"captions": ["a car accelerates and wind blows", "a toilet door squeaks as it is opened"], "sample_ids": ["u0TrcHhkPQ", "sdXV-ylviw"], "start_seconds": ["20", "190"], "properties": ["accelerates, wind, blows", "door, toilet, squeaks"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["women speak and laugh as wind blows", "small dogs yip and bark sharply"], "sample_ids": ["un9VQlzgZM", "v-wcQf4BDY0"], "start_seconds": ["5", "120"], "properties": ["wind, speak, laugh", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a person is snoring while sleeping", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vJrjSeP17yE", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["a person is sleeping, snoring, person", "rustling, ducks, quack"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a duck quacks and a woman speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a telephone rings followed by a woman talking"], "sample_ids": ["tK4VlLsNxak", "tGcFnX0GHI"], "start_seconds": ["120", "0"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "ring, talk, woman"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a ringing phone", "label": 1}, {"captions": ["scraping and female speech with distant music", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["yHeVV-xeOxQ", "yeFvk9x0wWI"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "clack, bird, chirp"], "captions_pred_video": ["of a girl milking a goat's udder", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "birds chirp in the background as a car drives by "], "question": "which entity is accompanied by birds", "label": 1}, {"captions": ["a man speaks as a machine runs", "an infant crying as a woman laughs"], "sample_ids": ["vD6lYD1l0BY", "xhmRY9yhC7c"], "start_seconds": ["330", "20"], "properties": ["a, machine, run", "a, laugh, infant"], "captions_pred_video": ["game controller being held in the hands of the person", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["s3cTDAj31g", "ziUT9IFTkjg"], "start_seconds": ["80", "10"], "properties": ["man, talk, woman", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak and tapping occurs", "a telephone rings followed by a woman talking"], "sample_ids": ["tFCUUGdREgA", "tGcFnX0GHI"], "start_seconds": ["70", "0"], "properties": ["people, tap, speak", "ring, talk, woman"], "captions_pred_video": ["a person riding a white horse in an indoor arena", null], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a man talks as several small engines run", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["u9A6VZQCZpU", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a telephone rings followed by a woman talking"], "sample_ids": ["vZAw4apG0Es", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["background, clock, ticktocks", "ring, talk, woman"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a clock ticking in the background", "label": 0}, {"captions": ["water flows as a woman laughs and a man speaks", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vddP56-ogds", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["water, flow, laugh", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a stream of water runs briefly"], "sample_ids": ["sShpyu2l4YQ", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["growl, bark, yip", "stream, water, run"], "captions_pred_video": ["the puppies are playing with a toy", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a dog is barking and growling", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["un9VQlzgZM", "su6FAOcOA8c"], "start_seconds": ["5", "4"], "properties": ["females, talk, laugh", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is about a bus engine?", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a stream of water runs briefly"], "sample_ids": ["vhJWZheqaE", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["water drains unevenly, toilet flushes, water drains", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a toilet is flushed", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a woman speaks happily and an animal chirps"], "sample_ids": ["xvDdE3zNf8Y", "uWAAAL4CIoc"], "start_seconds": ["120", "0"], "properties": ["a, female, speaks", "a woman, chirps, animal"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["electronic beeps occur in a short series", "vehicle engines race around a track as a man commentates"], "sample_ids": ["y682ml90jGw", "sZPuqDgX2V0"], "start_seconds": ["11", "30"], "properties": ["beeps, series, electronic", "commentator, race, track"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a video of a race", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "someone is typing on a computer keyboard"], "sample_ids": ["vlS6YMeWAPo", "v0x1odnXtP0"], "start_seconds": ["40", "210"], "properties": ["noise, bleat, call", "keyboard, type, computer"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "how to make money on youtube in spanish"], "captions_pred_audio": ["a goat bleats and birds chirp", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "an infant crying frantically"], "sample_ids": ["sHbXC6na9hg", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "cry, infant, frantically"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "of the baby crying in the car seat"], "captions_pred_audio": ["an engine is idling and vibrating", "a baby cries loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["winds blows roughly as a vehicle races past", "wind blows as people chatter quietly"], "sample_ids": ["xjvTpk2Zpr8", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["wind, blows, vehicle", "wind, chatter, people"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage is blurry and out of focus"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a helicopter engine idles continuously", "some men converse over an engine running"], "sample_ids": ["ugHJF0hfYkg", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["engine, idle, continuously", "men, converse, engine"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a horn rings out as a machine runs by"], "sample_ids": ["vBslzh7saPw", "slZLHwNbbt4"], "start_seconds": ["90", "300"], "properties": ["engine, spools, takes", "a, horn, run"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["shmR4OZtzqA", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["man, engine, idle", "wind, blow, vehicle"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", null], "captions_pred_audio": ["a man speaks while a motor runs", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["people speak softly as food sizzles", "people speak as gunfire rings out"], "sample_ids": ["yhQ2Lg-7qDY", "wqTCwqVRDlk"], "start_seconds": ["130", "80"], "properties": ["food, sizzle, speak", "gunfire, ring, speak"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "an airplane engine runs"], "sample_ids": ["uPDn2BFTHk", "yVPZ2MNWpms"], "start_seconds": ["140", "0"], "properties": ["woman, laughs, speaks", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tQWGZLItBXk", "uYT5gxnyMWM"], "start_seconds": ["170", "50"], "properties": ["music, kid, speak", "female, spraying, scream"], "captions_pred_video": ["worms revolution screenshots", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and then playing music?", "label": 0}, {"captions": ["material crumbles into a microphone", "an infant crying as a woman laughs"], "sample_ids": ["vofpvUo6NAw", "xhmRY9yhC7c"], "start_seconds": ["220", "20"], "properties": ["material, crumbles, microphone", "a, laugh, infant"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["y2bVZ7rz-5M", "uWPRNLnpy7Y"], "start_seconds": ["280", "10"], "properties": ["engine, horn, siren", "accelerate, laugh, vehicle"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "is taken from a car driving down the street"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a car accelerates and revs its engine "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "an engine runs loudly"], "sample_ids": ["xyx6eNVEYRY", "vqZuVbG6-HI"], "start_seconds": ["380", "130"], "properties": ["loud, engine, muffles", "loud, engine, run"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage is blurry because it's raining outside"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["some men converse over an engine running", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sCiy7QS1U", "vb1fPSDI4c"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "several insects fly while two men talk"], "sample_ids": ["tqR406bGiE", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["flush, water, gurgle", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a toilet?", "label": 0}, {"captions": ["a man talks while vehicles pass by", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["sK4u5T8hW78", "uOpoD0gGXcs"], "start_seconds": ["30", "120"], "properties": ["a, man, talk", "chirps, woman, bird"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a herd of cows grazing in the field"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "birds are chirping and a man is speaking"], "question": "which entity is a response to a woman?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a man speaks as a car is passing by"], "sample_ids": ["smDKStoHBJo", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["a, talk, baby, cry", "a, car, pass"], "captions_pred_video": ["a man holding a crying baby in his arms", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a baby?", "label": 0}, {"captions": ["a man speaks while water drains", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vSeGhaZt-aI", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["water, drain, man", "engine, idle, woman"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "dishes cling together then a man begins to speak"], "sample_ids": ["vJvryTwuAV8", "sQGXqGcwOTc"], "start_seconds": ["16", "3"], "properties": ["audience, cheer, man", "cling, speak, dishes"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking to an audience?", "label": 0}, {"captions": ["a speedboat passes quickly on the water", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tjmoSi330GM", "uZesmtKZGSw"], "start_seconds": ["23", "250"], "properties": ["speed, water, boat", "men, talk, cars"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is moving faster", "label": 1}, {"captions": ["children speak and play together", "people applaud and hoot and chat quietly"], "sample_ids": ["yVVP8XvWJTo", "wwyfGO2J4"], "start_seconds": ["260", "90"], "properties": ["children, speak, play", "people, applaud, hoot"], "captions_pred_video": ["footage of a playground at a school or daycare center", null], "captions_pred_audio": ["children are speaking and breathing with background noise ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a clock ticktocks"], "sample_ids": ["w2JXXIAdUdg", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a man speaks as a motor runs in the background"], "sample_ids": ["wz7N8YRy74I", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, people", "background, motor, run"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "an infant crying as a woman laughs"], "sample_ids": ["vb1fPSDI4c", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["multiple, people, yell", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water drains", "wind blowing followed by a zoom"], "sample_ids": ["sfAvvZwdLCY", "vr8ZXjEBhMQ"], "start_seconds": ["20", "150"], "properties": ["water drains, flushes, water", "wind, blow, zoom"], "captions_pred_video": ["footage of the toilet in the bathroom", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a toilet is flushed", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "vehicles pass by on a roadway"], "sample_ids": ["zkKdxzNC97Y", "tgbONvsP47Y"], "start_seconds": ["27", "0"], "properties": ["hard, surface, door", "pass, vehicle, roadway"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a door is opened and closed", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "pigeons vocalize and birds chirp"], "sample_ids": ["wwyfGO2J4", "uiS58TNyUiw"], "start_seconds": ["90", "430"], "properties": ["people, applaud, hoot", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a telephone rings followed by a woman talking"], "sample_ids": ["zofjfKhqLk8", "tGcFnX0GHI"], "start_seconds": ["10", "0"], "properties": ["background, metal, clings", "ring, talk, woman"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "water splashes as an animal walks through"], "sample_ids": ["tjmoSi330GM", "w1ir-sZ3Im8"], "start_seconds": ["23", "90"], "properties": ["speed, water, boat", "animal, water, splashes"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "water splashes and gurgles as people speak"], "question": "which entity is moving at a slower speed", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "someone whistles a tune"], "sample_ids": ["sU53zg9Jp7s", "sIXTftIuUgw"], "start_seconds": ["380", "90"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "someone, tune, whistle"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a horse runs while two women talk", "a horn rings out as a machine runs by"], "sample_ids": ["sdvI1mHAsc", "slZLHwNbbt4"], "start_seconds": ["20", "300"], "properties": ["two women, horse, run", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "winds blows roughly as a vehicle races past"], "sample_ids": ["w-4gHptFNuU", "xjvTpk2Zpr8"], "start_seconds": ["21", "70"], "properties": ["engine revs, accelerates, bump", "wind, blows, vehicle"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["some people speak", "a drill runs and two people laugh"], "sample_ids": ["vbZ-0lGPneg", "tEE3MpBt1sg"], "start_seconds": ["30", "50"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "two people, laugh, drill"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "people are laughing breathing and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "paper is crumpling consistently"], "sample_ids": ["rwtmaKiCcQU", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["nozzle, depressed, spray can", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["spraying and people speaking", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a baby laughs giddily and a woman laughs then speaks"], "sample_ids": ["vmrxwuAMb2I", "wjsXBsc7M40"], "start_seconds": ["40", "10"], "properties": ["a dog, inhales, exhales", "a baby laughs, a woman laughs, a woman speaks"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "footage of the baby playing with a toothbrush"], "captions_pred_audio": ["a dog barks and growls", "a baby laughs and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "water flows and trickles"], "sample_ids": ["sZvwOuuPGP0", "tB7hWb9gTuQ"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "water, flow, trickle"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a medium engine is running ", "water is splashing and gurgling"], "question": "which entity is not a continuous flow", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zkKdxzNC97Y", "ukg5L09Wpvo"], "start_seconds": ["27", "150"], "properties": ["hard, surface, door", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a door is opened and closed", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a man speaks as a motor runs in the background"], "sample_ids": ["zY3icUyMdh8", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "background, motor, run"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a baby cries and a woman moans", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["smDKStoHBJo", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["a, cry, woman", "applause, audience, yells"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["vbpKkWvfOu4", "xjvTpk2Zpr8"], "start_seconds": ["560", "70"], "properties": ["a, man, speaks", "wind, blows, vehicle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a jet engine roars and wind blows "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["s59PfAghdkM", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["bird, chirp, background, horse, neigh", "animal, grunts, chirps"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "birds are chirping and a rooster is crowing "], "question": "which entity has a horse neighing?", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["ylpYOorfH4o", "wDVMhEdTiVw"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "gun, shoot, water"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["an engine starts and increases in power", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["zjTG0gaGCUI", "tezvROoo4bs"], "start_seconds": ["80", "40"], "properties": ["power, increase, engine", "audio, throttle, speaking"], "captions_pred_video": [null, "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a car accelerates and revs while a man speaks "], "question": "which entity is about an engine?", "label": 0}, {"captions": ["water rushes and then a vehicle zooms past", "a person uses a saw to cut some wood"], "sample_ids": ["s4Uz1Ffgo04", "sHbXC6na9hg"], "start_seconds": ["100", "0"], "properties": ["water, rushes, vehicle", "a person, saw, wood"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "an engine is idling and vibrating"], "question": "which entity is a person", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "small dogs yip and bark sharply"], "sample_ids": ["sQGXqGcwOTc", "v-wcQf4BDY0"], "start_seconds": ["3", "120"], "properties": ["audio, kid, giggles", "bark, yip, sharply"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "vehicles pass by on a roadway"], "sample_ids": ["vzxHnu-SFEw", "tgbONvsP47Y"], "start_seconds": ["80", "0"], "properties": ["two objects, woman, speak", "pass, vehicle, roadway"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a car is driving on the road "], "question": "which object is moving", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "waves crash against a shoreline and people speak"], "sample_ids": ["zofjfKhqLk8", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["background, metal, clings", "wave, crash, shoreline"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "vehicles pass by on a roadway"], "sample_ids": ["x6ijhqRY38s", "tgbONvsP47Y"], "start_seconds": ["250", "0"], "properties": ["something metal, glass, hit", "pass, vehicle, roadway"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "water pouring and bubbling"], "sample_ids": ["w2JXXIAdUdg", "uyRfq-jKPpo"], "start_seconds": ["10", "50"], "properties": ["emits, sleeping, person", "water, bubbles, pouring"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a person snoring and a dog whimpering", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "winds blows roughly as a vehicle races past"], "sample_ids": ["zgUgkpk78xU", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["clinking, humming, horn", "wind, blows, vehicle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "children cheer as a man speaks then an audience screams"], "sample_ids": ["shmR4OZtzqA", "vJvryTwuAV8"], "start_seconds": ["30", "16"], "properties": ["man, engine, idle", "audience, cheer, man"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a man speaks while a motor runs", "a man is speaking and a crowd is shouting and whooping "], "question": "which man is speaking to an audience?", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "winds blows roughly as a vehicle races past"], "sample_ids": ["ylpYOorfH4o", "xjvTpk2Zpr8"], "start_seconds": ["410", "70"], "properties": ["motor, run, steady", "wind, blows, vehicle"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["roadway noise occurs and a truck accelerates", "water is sprayed across a hard surface"], "sample_ids": ["tgbONvsP47Y", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["noise, truck, accelerate", "water, spray, surface"], "captions_pred_video": ["footage of a fire truck entering a garage", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a car is driving on the road ", "spraying followed by silence"], "question": "which is a liquid", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wqZ135Ssz0", "zFjIWfSD-4"], "start_seconds": ["60", "410"], "properties": ["two men, woman, birds", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as a machine runs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vD6lYD1l0BY", "xKB8O8LTs6s"], "start_seconds": ["330", "70"], "properties": ["a, machine, run", "music, gunfire, explosion"], "captions_pred_video": ["game controller being held in the hands of the person", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["birds tweet and squawk", "a consistent ticking pattern"], "sample_ids": ["w1mlz3Pe4fU", "sCeWURVHfOM"], "start_seconds": ["300", "30"], "properties": ["squawk, tweet, scream", "ticking, pattern, clock"], "captions_pred_video": ["of a bird in a cage", "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["birds are chirping and singing", "ticking of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person is snoring while sleeping", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vJrjSeP17yE", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "multiple, people, yell"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a toilet flushes and water drains", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sfAvvZwdLCY", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["water drains, flushes, water", "a woman, laughs, animal"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["children speak and play together", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yVVP8XvWJTo", "uEU-Hg5MTN8"], "start_seconds": ["260", "27"], "properties": ["children, speak, play", "a woman, laughs, animal"], "captions_pred_video": ["footage of a playground at a school or daycare center", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video of a woman speaking and laughing?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vzxHnu-SFEw", "uEU-Hg5MTN8"], "start_seconds": ["80", "27"], "properties": ["two objects, woman, speak", "animal, grunts, snorts"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "water flows and trickles"], "sample_ids": ["s3cTDAj31g", "tB7hWb9gTuQ"], "start_seconds": ["80", "30"], "properties": ["man, talk, woman", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a baby is crying", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "people cheer as a vehicle engine revs"], "sample_ids": ["uJV8NDaHqqk", "xjhAnI2q6hM"], "start_seconds": ["100", "6"], "properties": ["loud, fly, chirp", "engine revs, vehicle, people"], "captions_pred_video": ["a bee hive in a wooden box", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a swarm of bees buzzing around", "a truck is revving its engine and a man is speaking "], "question": "which entity is not a person?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["w5W5Kqtc8E", "vlS6YMeWAPo"], "start_seconds": ["100", "40"], "properties": ["wind, engine, scream", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "a woman speaks and other women and a man talk with her"], "sample_ids": ["y8dSeubCNI", "vbpKkWvfOu4"], "start_seconds": ["4", "560"], "properties": ["engine revving, people speaking, motorcycle", "a, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "wind blows as people chatter quietly"], "sample_ids": ["uC9dtII1KDI", "xBxDz0CFVn0"], "start_seconds": ["150", "30"], "properties": ["wind, gusts, distance", "wind, chatter, people"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xjvTpk2Zpr8", "zl9Dqx-j7q4"], "start_seconds": ["70", "6"], "properties": ["wind, blows, vehicle", "engine, laugh, loud"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a car speeding up in the distance"], "sample_ids": ["uPDn2BFTHk", "u0TrcHhkPQ"], "start_seconds": ["140", "20"], "properties": ["lady, laugh, baby", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["yaln9y8I7ms", "ugHJF0hfYkg"], "start_seconds": ["230", "10"], "properties": ["female, flushes, toilet", "loud, intense, propeller"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a stream of water flows as people talk and wind blows"], "sample_ids": ["tDlysoZiA1I", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, chirp", "stream, water, flow"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ylpYOorfH4o", "w5W5Kqtc8E"], "start_seconds": ["410", "100"], "properties": ["motor, run, steady", "wind, blow, vehicle"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a stream of water runs briefly"], "sample_ids": ["ugHJF0hfYkg", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["engine, running, continuously", "stream, water, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving on a wet road "], "question": "which entity is running continuously", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "someone is typing on a computer keyboard"], "sample_ids": ["yDoT73BWsdA", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["engine revs, tires squeal, vehicle", "keyboard, type, computer"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "how to make money on youtube in spanish"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which entity is stationary", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "someone is typing on a computer keyboard"], "sample_ids": ["yswmmRZFItk", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["background, frog, croak", "keyboard, type, computer"], "captions_pred_video": ["a close up of a frog in the water", "how to make money on youtube in spanish"], "captions_pred_audio": ["a frog is croaking", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "water pouring and bubbling"], "sample_ids": ["wvKpEYswXO0", "uyRfq-jKPpo"], "start_seconds": ["150", "50"], "properties": ["plastic, tap, speak", "water, bubbles, pouring"], "captions_pred_video": ["of the person preparing food in the kitchen", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "water is running from a faucet"], "question": "which entity is bubbling", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a man speaks as a motor runs in the background"], "sample_ids": ["wAAkbZToh8", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man burps and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["an infant crying frantically", "wind blows as people chatter quietly"], "sample_ids": ["zwOBqeFTgiU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["cry, infant, frantically", "wind, chatter, people"], "captions_pred_video": ["of the baby crying in the car seat", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a heavy rain falls endlessly", "winds blows roughly as a vehicle races past"], "sample_ids": ["wP8ZKrlx3oA", "xjvTpk2Zpr8"], "start_seconds": ["40", "70"], "properties": ["heavy, rain, fall", "wind, blows, vehicle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["people speak then an engine runs", "pigeons vocalize and birds chirp"], "sample_ids": ["uMTTDZ2mb4", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["engine, run, people", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yI-KvObbDoY", "w5W5Kqtc8E"], "start_seconds": ["260", "100"], "properties": ["sound, smack, wind", "wind, blow, vehicle"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", null], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["male speech with light ticking", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["xO-Q2BlIIPU", "sapQIQUhFc"], "start_seconds": ["30", "280"], "properties": ["male, speech, ticking", "liquid, flow, distance"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xvDdE3zNf8Y", "tDVADusiIoc"], "start_seconds": ["120", "60"], "properties": ["A, crumple, paper", "water, radio, man"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "people applaud and hoot and chat quietly"], "sample_ids": ["tQWGZLItBXk", "wwyfGO2J4"], "start_seconds": ["170", "90"], "properties": ["voice, music, whoosh", "people, applaud, hoot"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man is filing a hard object", "a stream of water flows quickly"], "sample_ids": ["vveS8HT7Uog", "wbHTKEJZyhc"], "start_seconds": ["100", "20"], "properties": ["a man, hard, object", "stream, water, flow"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a waterfall is flowing and people are speaking "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["yajyRTUQk3U", "tdWhHV3X25Q"], "start_seconds": ["400", "60"], "properties": ["noise, woman, speak", "applause, audience, yells"], "captions_pred_video": ["- a woman cooking in the kitchen", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vXlk0lIQBFo", "zl9Dqx-j7q4"], "start_seconds": ["470", "6"], "properties": ["wind, talk, vocalize", "engine, laugh, loud"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a man driving a car in the dark"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xyL9F5VrjkE", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["wind, motor, distance", "a woman, laughs, animal"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vbZ-0lGPneg", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["a woman, a television program, a bird", "wind, blow, vehicle"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vh30P49Po6s", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["loud, continuous, quacks", "sheep, baa, birds"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a duck is quacking loudly", "a goat bleats and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["a stream of water flows quickly", "wind blowing followed by a zoom"], "sample_ids": ["wbHTKEJZyhc", "vr8ZXjEBhMQ"], "start_seconds": ["20", "150"], "properties": ["stream, water, flow", "wind, blow, zoom"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is moving at a slower speed", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a stream of water runs briefly"], "sample_ids": ["wSVhSdj0F0", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["horn honks, keys jingle, slam", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a drill runs and two people laugh", "three men talk while wind blows and some liquid flows"], "sample_ids": ["tEE3MpBt1sg", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["two people, laugh, drill", "three men, wind, flow"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a drill running and two people laughing?", "label": 0}, {"captions": ["wind blows as people chatter quietly", "vehicles pass by on a roadway"], "sample_ids": ["xBxDz0CFVn0", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["wind, chatter, people", "pass, vehicle, roadway"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "an airplane engine runs"], "sample_ids": ["xjhAnI2q6hM", "yVPZ2MNWpms"], "start_seconds": ["6", "0"], "properties": ["engine revs, vehicle, people", "engine, airplane, runs"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a car is driving by on the road "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a man speaks as a vehicle engine idles", "people speak in the background as a clock ticktocks"], "sample_ids": ["shmR4OZtzqA", "vZAw4apG0Es"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "background, clock, ticktocks"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a man speaks while a motor runs", "a clock is ticking and people are talking"], "question": "which entity has a clock ticking in the background?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tQWGZLItBXk", "xfaoyyzw2WU"], "start_seconds": ["170", "180"], "properties": ["voice, music, whoosh", "loud, jet engine, roar"], "captions_pred_video": ["worms revolution screenshots", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a woman speaks happily and an animal chirps"], "sample_ids": ["smDKStoHBJo", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["a, talk, baby, cry", "a woman, chirps, animal"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a dog is barking "], "question": "which entity has a baby?", "label": 0}, {"captions": ["a person is whistling", "water flows as men speak and yell"], "sample_ids": ["sIXTftIuUgw", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["person, whistling, person", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person whistling a song", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking and yelling?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vD6lYD1l0BY", "tDVADusiIoc"], "start_seconds": ["330", "60"], "properties": ["a, machine, run", "water, radio, man"], "captions_pred_video": ["game controller being held in the hands of the person", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a female speaks softly as paper crinkles"], "sample_ids": ["weDbePuc-Xc", "xvDdE3zNf8Y"], "start_seconds": ["40", "120"], "properties": ["cartoon character, music, vocalize", "a, female, speaks"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman speaks and crumples paper"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wTideSjRFS0", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["food, sizzle, woman", "music, gunfire, explosion"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "people applaud and hoot and chat quietly"], "sample_ids": ["spJCm8tD9Zo", "wwyfGO2J4"], "start_seconds": ["90", "90"], "properties": ["snores, wheezes, sleeps", "people, applaud, hoot"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp as a train approaches", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xM4joTqDVp4", "zj2R0XoFr5k"], "start_seconds": ["160", "50"], "properties": ["bird, chirp, train", "airplane, boy, fly"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "some tunes played by whistling"], "sample_ids": ["vf9xf3vMsGM", "u6BnG6YZqJ4"], "start_seconds": ["540", "0"], "properties": ["A man speaks while turning a water faucet on.", "tune, play, whistling"], "captions_pred_video": ["of the person washing their hands under the faucet", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a small engine idles continuously", "a train horn blows as it passes by"], "sample_ids": ["y5WII6cTH7k", "zVacuqSb4LI"], "start_seconds": ["40", "30"], "properties": ["engine, idle, continuously", "horn, blows, train"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "someone snores nearby"], "sample_ids": ["vmrxwuAMb2I", "spJCm8tD9Zo"], "start_seconds": ["40", "90"], "properties": ["a dog, inhales, exhales", "someone snores, nearby, someone"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a dog barks and growls", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["water flows followed by women screaming", "race cars go around a track as a man commentates"], "sample_ids": ["w5W5Kqtc8E", "uZesmtKZGSw"], "start_seconds": ["100", "250"], "properties": ["water, flow, women", "car, track, man"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a video of a race?", "label": 1}, {"captions": ["a toilet flushes and water drains", "paper is crumpling consistently"], "sample_ids": ["sfAvvZwdLCY", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["water drains, flushes, water", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a toilet is flushed", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yeFvk9x0wWI", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["clack, bird, chirp", "engine, laugh, loud"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a child speaks in closed space"], "sample_ids": ["yZmhM1HcsyE", "yW6FWLSLkx4"], "start_seconds": ["4", "40"], "properties": ["engine, roar, water", "child, space, speak"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["some men converse over an engine running", "a clock ticktocks"], "sample_ids": ["sCiy7QS1U", "v-g-j2uTByM"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vcmWSmvti8", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a video of a gun shooting?", "label": 1}, {"captions": ["someone snores nearby", "a duck quacks loudly and continuously"], "sample_ids": ["spJCm8tD9Zo", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "loud, continuous, quacks"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person is snoring loudly", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uWPRNLnpy7Y", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["accelerate, laugh, vehicle", "wind, blow, vehicle"], "captions_pred_video": ["is taken from a car driving down the street", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a motorboat is moving and people are shouting and cheering "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "speaking following by laughing and clapping"], "sample_ids": ["ukg5L09Wpvo", "u2f5NpsoHBg"], "start_seconds": ["150", "30"], "properties": ["clickety-clack, train, whistle", "person, laugh, clap"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman is speaking and a crowd is clapping"], "question": "which entity is clapping", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xBxDz0CFVn0", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["wind, chatter, people", "stream, water, flow"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be in a stream", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "paper folding and crinkling"], "sample_ids": ["yRx9txMcBl0", "zPpG3RD8lSs"], "start_seconds": ["40", "20"], "properties": ["accelerates, tires, squeals", "paper, fold, crinkle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a car is revving its engine and skidding ", "the wind blows and a mouse clicks "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a car accelerates and wind blows"], "sample_ids": ["vD6lYD1l0BY", "u0TrcHhkPQ"], "start_seconds": ["330", "20"], "properties": ["a, machine, run", "accelerates, wind, blows"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vbpKkWvfOu4", "tiDFTC-5vU"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "male, duck, laugh"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking and ducks are quacking"], "question": "which entity has a duck speaking?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "an infant crying as a woman laughs"], "sample_ids": ["xvDdE3zNf8Y", "xhmRY9yhC7c"], "start_seconds": ["120", "20"], "properties": ["a, female, speaks", "a, laugh, infant"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman speaks and crumples paper", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a infant makes noise and is excited", "a frog croaks as other frogs croak in the background"], "sample_ids": ["wIJK3-5y0kA", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["noise, excited, infant", "background, frog, croak"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a close up of a frog in the water"], "captions_pred_audio": ["a baby cries and a woman speaks", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a dog barks and whimpers", "a woman speaks and other women and a man talk with her"], "sample_ids": ["sShpyu2l4YQ", "vbpKkWvfOu4"], "start_seconds": ["0", "560"], "properties": ["barks, whimpers, dog", "a, woman, man"], "captions_pred_video": ["the puppies are playing with a toy", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a man is speaking"], "question": "which entity is more social", "label": 1}, {"captions": ["a toilet flushes and water drains", "a clock ticktocks briefly"], "sample_ids": ["sfAvvZwdLCY", "u7C-AEBQM"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a ticktock of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "small dogs yip and bark sharply"], "sample_ids": ["s4Uz1Ffgo04", "v-wcQf4BDY0"], "start_seconds": ["100", "120"], "properties": ["water, rushes, vehicle", "bark, yip, sharply"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["weDbePuc-Xc", "t97k0cejSQE"], "start_seconds": ["40", "250"], "properties": ["music, slaps, human", "sound, chirp, buzz"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a bee on a purple thistle flower"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a bee buzzes and a woman speaks"], "question": "which entity has a human sniveling?", "label": 0}, {"captions": ["material crumbles into a microphone", "a child speaks in closed space"], "sample_ids": ["vofpvUo6NAw", "yW6FWLSLkx4"], "start_seconds": ["220", "40"], "properties": ["material, crumbles, microphone", "child, space, speak"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a car speeding up in the distance", "pigeons vocalize and birds chirp"], "sample_ids": ["u0TrcHhkPQ", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["distance, car, speed", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a car?", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["tPJvjq9QePY", "x9JovgqUcs"], "start_seconds": ["40", "500"], "properties": ["animal, bleat, moo", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tOj4tdLRaA", "wqZ135Ssz0"], "start_seconds": ["70", "60"], "properties": ["woman, laugh, baby", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "some men converse over an engine running"], "sample_ids": ["vKrYfzleLB8", "sCiy7QS1U"], "start_seconds": ["110", "300"], "properties": ["a, ring, gunshots", "men, converse, engine"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", null], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more calm", "label": 1}, {"captions": ["a baby laugh at a sputter", "some men converse over an engine running"], "sample_ids": ["sLUnaPT5gM8", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["laugh, sputter, baby", "men, converse, engine"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a group of people", "label": 1}, {"captions": ["a person sniffles and sneezes", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uRlbY6aoBU", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["sneezes, sniffles, person", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xZepNM9qcRA", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "multiple, people, yell"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a clock ticktocks"], "sample_ids": ["tw76HGONaKg", "v-g-j2uTByM"], "start_seconds": ["570", "30"], "properties": ["music, click, man", "ticktocks, clock, ticktocks"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "birds chirp and objects are moved around"], "sample_ids": ["rwtmaKiCcQU", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["nozzle, depressed, spray can", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["spraying and people speaking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["v5P-ThUCINM", "tDVADusiIoc"], "start_seconds": ["400", "60"], "properties": ["background, chirp, bird", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wnpJndXuxLc", "uZesmtKZGSw"], "start_seconds": ["50", "250"], "properties": ["blows, vehicle, train", "men, talk, cars"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a train?", "label": 0}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "food is frying while a woman speaks"], "sample_ids": ["vlS6YMeWAPo", "yhQ2Lg-7qDY"], "start_seconds": ["40", "130"], "properties": ["sheep, baa, birds", "food, woman, speak"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a goat bleats and birds chirp", "a faucet is running and a man is speaking"], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vD6lYD1l0BY", "vYkA3cfXp5Q"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "engine, accelerate, idle"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "waves crash against a shoreline and people speak"], "sample_ids": ["wTideSjRFS0", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["food, sizzle, woman", "wave, crash, shoreline"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a infant makes noise and is excited"], "sample_ids": ["wTjoRj1se3U", "wIJK3-5y0kA"], "start_seconds": ["390", "30"], "properties": ["engine, run, people", "noise, excited, infant"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a jet engine is running and people are talking", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "people speak as gunfire rings out"], "sample_ids": ["sLUnaPT5gM8", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["loud, laughter, intermittent", "gunfire, ring, speak"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a man speaks as a car is passing by"], "sample_ids": ["wIJK3-5y0kA", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, cry, baby", "a, car, pass"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a man speaking with light rustling"], "sample_ids": ["sapQIQUhFc", "zOZleIRqZm4"], "start_seconds": ["280", "80"], "properties": ["water, trickles, flow", "light, rustling, man"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking with crickets chirping in the background"], "question": "which entity is a man speaking while water trickles and flows?", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "dishes cling together then a man begins to speak"], "sample_ids": ["xKB8O8LTs6s", "sQGXqGcwOTc"], "start_seconds": ["70", "3"], "properties": ["music, gunshots, explosion", "cling, speak, dishes"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a person is whistling", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sIXTftIuUgw", "y8WEcpOlT3I"], "start_seconds": ["90", "40"], "properties": ["person, whistling, person", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "a infant makes noise and is excited"], "sample_ids": ["yRx9txMcBl0", "wIJK3-5y0kA"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "noise, excited, infant"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "continuous sizzling with a woman speaking towards the end"], "sample_ids": ["w-4gHptFNuU", "ukxt9I7eMMg"], "start_seconds": ["21", "30"], "properties": ["engine revs, accelerates, bump", "continuous, woman, speaking"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking while food is frying in the background "], "question": "which entity is a video of a motorcycle?", "label": 0}, {"captions": ["a woman speaks as frying food sizzles", "several insects fly while two men talk"], "sample_ids": ["wTideSjRFS0", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["food, sizzle, woman", "several, fly, men"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["v0wPrLBI3hg", "y8dSeubCNI"], "start_seconds": ["30", "4"], "properties": ["vocalize, bird, speak", "men, women, car"], "captions_pred_video": ["footage of the pigeons feeding on the ground", null], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "an engine revving and people talking in the background"], "question": "which entity is more quiet", "label": 0}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["s4Uz1Ffgo04", "y8WEcpOlT3I"], "start_seconds": ["100", "40"], "properties": ["water, rushes, motorcycle", "harsh, wind, blows"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a motorcycle zooming by in the distance?", "label": 0}, {"captions": ["there are rhythmical snoring nearby", "speaking following by laughing and clapping"], "sample_ids": ["ujMt0-D-x2k", "u2f5NpsoHBg"], "start_seconds": ["0", "30"], "properties": ["snoring, rhythmical, nearby", "person, laugh, clap"], "captions_pred_video": ["of the dog playing with a toy on the floor", "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a crowd is clapping"], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a man speaks as a car is passing by"], "sample_ids": ["zY3icUyMdh8", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "a, car, pass"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vZAw4apG0Es", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["background, tick, repeat", "loud, multiple, distance"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["su6FAOcOA8c", "wDVMhEdTiVw"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "gun, shoot, water"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vzxHnu-SFEw", "vb1fPSDI4c"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "multiple, people, yell"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["tDVADusiIoc", "rwtmaKiCcQU"], "start_seconds": ["60", "30"], "properties": ["wind, radio, waves", "nozzle, depressed, spray can"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "spraying and people speaking"], "question": "which entity is a spray can?", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a man speaks while turning a water faucet on"], "sample_ids": ["w6RTHR6AeAg", "vf9xf3vMsGM"], "start_seconds": ["40", "540"], "properties": ["call, owl, screech", "A man speaks while turning a water faucet on."], "captions_pred_video": [null, "of the person washing their hands under the faucet"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a man is speaking while water is running in the background"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a duck quacks continuously"], "sample_ids": ["x6ijhqRY38s", "vh30P49Po6s"], "start_seconds": ["250", "30"], "properties": ["bowl, silverware, man", "quacks, continuously, duck"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "children speak and play together"], "sample_ids": ["vdoxuJn9lTc", "yVVP8XvWJTo"], "start_seconds": ["40", "260"], "properties": ["burp, loud, girl", "children, speak, play"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a child speaks followed by a burp", "children are speaking and breathing with background noise "], "question": "which entity is more social", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a woman speaks as she rubs two objects together"], "sample_ids": ["w0xsN8X18Y", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["rain, thunder, surface", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w2JXXIAdUdg", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "stream, water, flow"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage is blurry and out of focus"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vh30P49Po6s", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["loud, continuous, quacks", "engine, revs, vehicle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a duck is quacking loudly", "a race car accelerates and revs its engine "], "question": "which entity is quieter", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["xjhAnI2q6hM", "uEU-Hg5MTN8"], "start_seconds": ["6", "27"], "properties": ["engine revs, vehicle, people", "animal, grunts, snorts"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "people cheer as a vehicle engine revs"], "sample_ids": ["spYNpeN7rPY", "xjhAnI2q6hM"], "start_seconds": ["1", "6"], "properties": ["a clock, ticktock, man", "engine revs, vehicle, people"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vD6lYD1l0BY", "wz7N8YRy74I"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "rooster, crow, background, men"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a woman speaks happily and an animal chirps"], "sample_ids": ["xERFUeZONz8", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["ring, approach, traffic", "a woman, chirps, animal"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", null], "captions_pred_audio": ["an emergency vehicle siren blares", "a woman is speaking and a dog is barking "], "question": "which entity is more calming", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["u7C-AEBQM", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["ticks, rhythmic, quiet", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a ticktock of a clock", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a person speaks briefly", "birds chirp and objects are moved around"], "sample_ids": ["zOZleIRqZm4", "yPUYU6t3rwo"], "start_seconds": ["80", "370"], "properties": ["person, talk, brief", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xjvTpk2Zpr8", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["engine, run, wind", "airplane, boy, fly"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a propeller rotates loudly and intensely"], "sample_ids": ["sZPuqDgX2V0", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["commentator, race, track", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a child yells and another yells", "a man speaks followed by another man speaking outside"], "sample_ids": ["vMDHu7Lxcgw", "viuTg1M-dqg"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "two men, speak, follow"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two people speaking?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["x6ijhqRY38s", "sapQIQUhFc"], "start_seconds": ["250", "280"], "properties": ["bowl, silverware, man", "liquid, flow, distance"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and a stream is flowing in the background "], "question": "which entity shows a man speaking?", "label": 0}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a car accelerates and wind blows"], "sample_ids": ["w-4gHptFNuU", "u0TrcHhkPQ"], "start_seconds": ["21", "20"], "properties": ["engine revs, accelerates, bump", "accelerates, wind, blows"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a clock ticktocks continuously", "a woman speaks with water running"], "sample_ids": ["vlJS7LN2XyM", "wTideSjRFS0"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "water, running, woman"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking while water is running in the background"], "question": "which entity is a clock", "label": 0}, {"captions": ["there are rhythmical snoring nearby", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["ujMt0-D-x2k", "wSVhSdj0F0"], "start_seconds": ["0", "10"], "properties": ["snoring, rhythmical, nearby", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["of the dog playing with a toy on the floor", null], "captions_pred_audio": ["a person is snoring loudly", "a car horn honks and keys jangle with background noise "], "question": "which entity is not rhythmical", "label": 1}, {"captions": ["a man talks as several small engines run", "winds blows roughly as a vehicle races past"], "sample_ids": ["u9A6VZQCZpU", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["a, man, talk", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wSVhSdj0F0", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["horn honks, keys jingle, slam", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaks while water drains", "someone snores nearby"], "sample_ids": ["vSeGhaZt-aI", "spJCm8tD9Zo"], "start_seconds": ["50", "90"], "properties": ["water, drain, man", "someone snores, nearby, someone"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["material crumbles into a microphone", "a clock ticktocks"], "sample_ids": ["vofpvUo6NAw", "v-g-j2uTByM"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "ticktocks, clock, ticktocks"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vzxHnu-SFEw", "wqZ135Ssz0"], "start_seconds": ["80", "60"], "properties": ["two objects, woman, speak", "two men, woman, birds"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a woman talks while a baby cries and a man whispers"], "sample_ids": ["yZrFNS7GFBQ", "smDKStoHBJo"], "start_seconds": ["30", "0"], "properties": ["pigeon, buzzes, insect", "a, talk, baby, cry"], "captions_pred_video": ["of the bird in the cage", "a man holding a crying baby in his arms"], "captions_pred_audio": ["an owl hoots in the background ", "a baby is crying and a woman is speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a propeller rotates loudly and intensely"], "sample_ids": ["un9VQlzgZM", "ugHJF0hfYkg"], "start_seconds": ["5", "10"], "properties": ["wind, speak, laugh", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "pigeons vocalize and birds chirp"], "sample_ids": ["sHbXC6na9hg", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["a person, saw, wood", "vocalize, bird, chirp"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "of the pigeon in the cage"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a person is snoring while sleeping", "dishes cling together then a man begins to speak"], "sample_ids": ["vJrjSeP17yE", "sQGXqGcwOTc"], "start_seconds": ["40", "3"], "properties": ["a person is sleeping, snoring, person", "cling, speak, dishes"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person snoring loudly", "mechanisms are operating and water is splashing "], "question": "which entity is about a person speaking?", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "an infant crying as a woman laughs"], "sample_ids": ["uiItxDsDMFI", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["wood, piece, saw", "a, laugh, infant"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a saw is being used with background noise ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "dishes cling together then a man begins to speak"], "sample_ids": ["sofxkNWaP0s", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["wind, engine, louder", "cling, speak, dishes"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a stream of water runs briefly", "a stream of water runs briefly"], "sample_ids": ["x-PeY8Yb8M4", "x-PeY8Yb8M4"], "start_seconds": ["300", "300"], "properties": ["stream, water, run", "stream, water, run"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car is driving on a wet road ", "a car is driving on a wet road "], "question": "which stream of water runs briefly", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "small dogs yip and bark sharply"], "sample_ids": ["siJFXfGWgDk", "v-wcQf4BDY0"], "start_seconds": ["50", "120"], "properties": ["man, woman, vehicle", "bark, yip, sharply"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "an engine runs loudly"], "sample_ids": ["uZesmtKZGSw", "vqZuVbG6-HI"], "start_seconds": ["250", "130"], "properties": ["men, talk, cars", "loud, engine, run"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a infant makes noise and is excited"], "sample_ids": ["uYT5gxnyMWM", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "noise, excited, infant"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "an infant crying frantically"], "sample_ids": ["tDVADusiIoc", "zwOBqeFTgiU"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "cry, infant, frantically"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tDVADusiIoc", "wqZ135Ssz0"], "start_seconds": ["60", "60"], "properties": ["wind, radio, waves", "two men, woman, birds"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "people speak as gunfire rings out"], "sample_ids": ["vSeGhaZt-aI", "wqTCwqVRDlk"], "start_seconds": ["50", "80"], "properties": ["water, bubbles, run", "gunfire, ring, speak"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a jet engine spools up and takes off", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vBslzh7saPw", "wz7N8YRy74I"], "start_seconds": ["90", "30"], "properties": ["engine, spools, takes", "rooster, crow, background, men"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "wind blows as people chatter quietly"], "sample_ids": ["sofxkNWaP0s", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "wind, chatter, people"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vzxHnu-SFEw", "vYkA3cfXp5Q"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "engine, accelerate, idle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "an engine is idling"], "question": "which is a vehicle", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["vlS6YMeWAPo", "vddP56-ogds"], "start_seconds": ["40", "30"], "properties": ["noise, bleat, call", "liquid, laughs, man"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "water is running and gurgling and a man is speaking"], "question": "which entity has a man talking?", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "water flows as men speak and yell"], "sample_ids": ["ziUT9IFTkjg", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["background, birds, rustling", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["material crumbles into a microphone", "an engine runs loudly"], "sample_ids": ["vofpvUo6NAw", "vqZuVbG6-HI"], "start_seconds": ["220", "130"], "properties": ["material, crumbles, microphone", "loud, engine, run"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage is blurry because it's raining outside"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a propeller rotates loudly and intensely"], "sample_ids": ["sQGXqGcwOTc", "ugHJF0hfYkg"], "start_seconds": ["3", "10"], "properties": ["audio, kid, giggles", "loud, intense, propeller"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a baby cries and a woman speaks", "an insect buzzes around continuously"], "sample_ids": ["tMbMDvT50j8", "v25l1jef3JY"], "start_seconds": ["12", "0"], "properties": ["a, cry, woman", "buzzes, continuously, insect"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a baby cries and a woman speaks", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["a dog barks and whimpers", "a propeller rotates loudly and intensely"], "sample_ids": ["sShpyu2l4YQ", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["barks, whimpers, dog", "loud, intense, propeller"], "captions_pred_video": ["the puppies are playing with a toy", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a dog is barking and growling", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["bees buzz as wind blows", "waves crash against a shoreline and people speak"], "sample_ids": ["tMJne1a4AFI", "yFB25fqfU8I"], "start_seconds": ["0", "300"], "properties": ["bees, buzz, wind", "wave, crash, shoreline"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "water running down a sink while a man is talking"], "sample_ids": ["tDlysoZiA1I", "vSeGhaZt-aI"], "start_seconds": ["0", "50"], "properties": ["animal, grunt, multiple", "water, sink, talk"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of a man talking?", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wDVMhEdTiVw", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["gun, shoot, water", "a woman, something, fried"], "captions_pred_video": ["a blurry image of trees and water in the forest", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "race cars go around a track as a man commentates"], "sample_ids": ["zofjfKhqLk8", "uZesmtKZGSw"], "start_seconds": ["10", "250"], "properties": ["background, metal, clank", "car, track, man"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a car is revving with laughter in the background "], "question": "which is a video of a man commentating", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "water pouring and bubbling"], "sample_ids": ["y8dSeubCNI", "uyRfq-jKPpo"], "start_seconds": ["4", "50"], "properties": ["men, women, car", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["an engine revving and people talking in the background", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a man speaks as a car is passing by"], "sample_ids": ["slZLHwNbbt4", "sK4u5T8hW78"], "start_seconds": ["300", "30"], "properties": ["a, horn, run", "a, car, pass"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["tDVADusiIoc", "wyllXV6PjKo"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "a baby, a woman, a man"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman speaks and a baby cries"], "question": "which entity is a group of people", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["ugHJF0hfYkg", "su6FAOcOA8c"], "start_seconds": ["10", "4"], "properties": ["engine, running, continuously", "engine, idle, woman"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a subway train is moving "], "question": "which entity has an engine that is running continuously?", "label": 0}, {"captions": ["a stream of water flows quickly", "a helicopter engine idles continuously"], "sample_ids": ["wbHTKEJZyhc", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["stream, water, flow", "engine, idle, continuously"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a helicopter is flying overhead "], "question": "which entity is not moving", "label": 1}, {"captions": ["a clock ticktocks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["v-g-j2uTByM", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["ticktocks, clock, ticktocks", "water, radio, man"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a clock?", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a woman speaks over sizzling noise"], "sample_ids": ["vdoxuJn9lTc", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["person, burp, girl", "noise, woman, speak"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a child speaks followed by a burp", "a woman is speaking while food is frying in the background"], "question": "which entity is speaking over noise", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["xSKJGCItUWE", "wz7N8YRy74I"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "rooster, crow, background, men"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster crow?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sQGXqGcwOTc", "uZesmtKZGSw"], "start_seconds": ["3", "250"], "properties": ["cling, speak, dishes", "men, talk, cars"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["popping and crackling repeats as men yell and laugh", "a female speaks softly as paper crinkles"], "sample_ids": ["rqu8iB22IY", "xvDdE3zNf8Y"], "start_seconds": ["5", "120"], "properties": ["sound, repeats, laugh", "a, female, speaks"], "captions_pred_video": [null, "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a woman speaks and crumples paper"], "question": "which entity has a female speaking softly?", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vuUVPzd2FXw", "w34HjHr6gAY"], "start_seconds": ["160", "30"], "properties": ["a, steam, release", "beeps, hit, woman"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zofjfKhqLk8", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "stream, water, flow"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage is blurry and out of focus"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak then an engine runs", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["uMTTDZ2mb4", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["engine, run, people", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "roadway noise occurs and a truck accelerates"], "sample_ids": ["yDoT73BWsdA", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["engine, revs, vehicle", "noise, truck, accelerate"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sG7TyPnFDR0", "xKB8O8LTs6s"], "start_seconds": ["180", "70"], "properties": ["beeps, machine, smoke alarm", "music, gunfire, explosion"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["siJFXfGWgDk", "zFjIWfSD-4"], "start_seconds": ["50", "410"], "properties": ["man, woman, vehicle", "People, motor, brakes"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more people", "label": 1}, {"captions": ["people clap and speak in the distance", "people cheer as a vehicle engine revs"], "sample_ids": ["wwyfGO2J4", "xjhAnI2q6hM"], "start_seconds": ["90", "6"], "properties": ["clap, distance, speak", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["someone snores nearby", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["spJCm8tD9Zo", "yajyRTUQk3U"], "start_seconds": ["90", "400"], "properties": ["someone snores, nearby, someone", "a woman, something, fried"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a train horn blows as it passes by"], "sample_ids": ["siJFXfGWgDk", "zVacuqSb4LI"], "start_seconds": ["50", "30"], "properties": ["man, woman, vehicle", "horn, blows, train"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaking with light rustling", "a car accelerates and wind blows"], "sample_ids": ["zOZleIRqZm4", "u0TrcHhkPQ"], "start_seconds": ["80", "20"], "properties": ["light, rustling, man", "accelerates, wind, blows"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks as several small engines run", "three men talk while wind blows and some liquid flows"], "sample_ids": ["u9A6VZQCZpU", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, man, talk", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["continuous sneezing together with speech", "three men talk while wind blows and some liquid flows"], "sample_ids": ["x4dZyf9Gbj0", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["continuous, sneeze, speech", "three men, wind, flow"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be a video of a person sneezing?", "label": 0}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vfYTJq7nU", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["ducks, quack, man", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "continuous snoring"], "sample_ids": ["tw76HGONaKg", "sLkeqCDJIyw"], "start_seconds": ["570", "120"], "properties": ["A, game, keyboard", "loud, snoring, noise"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a train engine runs and a horn blows", "wind blowing followed by a zoom"], "sample_ids": ["zPX9o1uDiI", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["engine, horn, run", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "water flows as men speak and yell"], "sample_ids": ["sjlVMgdGSK0", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["accelerates, vehicle, race car", "water, flow, men"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a moving object", "label": 0}, {"captions": ["food fries in a pan as someone talks and cooks", "a duck quacks continuously"], "sample_ids": ["ukxt9I7eMMg", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "quacks, continuously, duck"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "water splashes as an animal walks through"], "sample_ids": ["vddP56-ogds", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["liquid, laughs, man", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vdoxuJn9lTc", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["burp, loud, girl", "men, talk, cars"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds chirp as a bell rings", "waves crash against a shoreline and people speak"], "sample_ids": ["ziUT9IFTkjg", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["chirp, bell, ring", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["tapping occurs then a baby cries", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wIJK3-5y0kA", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["a, cry, baby", "music, gunfire, explosion"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby cries and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a person snoring several times", "a frog croaks as other frogs croak in the background"], "sample_ids": ["spJCm8tD9Zo", "yswmmRZFItk"], "start_seconds": ["90", "0"], "properties": ["snore, person, several", "background, frog, croak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a close up of a frog in the water"], "captions_pred_audio": ["a person is snoring loudly", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["food is frying and sizzles", "someone is typing on a computer keyboard"], "sample_ids": ["zNRChLjqcU", "v0x1odnXtP0"], "start_seconds": ["220", "210"], "properties": ["food is frying, sizzles, food", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["water is running from a faucet into a sink", "a person is typing on a keyboard"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a beep occurs briefly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xtWeJ56-U-g", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["beep, occur, briefly", "airplane, boy, fly"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a train horn sounds and railroad crossing ring", "people speak in a closed space"], "sample_ids": ["s7knHCFW82w", "sTpirNYo8vQ"], "start_seconds": ["30", "30"], "properties": ["horn, sound, train", "people, space, speak"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking while a car is revving and accelerating "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a man speaks as a motor runs in the background"], "sample_ids": ["sfAvvZwdLCY", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "background, motor, run"], "captions_pred_video": ["footage of the toilet in the bathroom", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a stream of water runs briefly", "a car speeding up in the distance"], "sample_ids": ["x-PeY8Yb8M4", "u0TrcHhkPQ"], "start_seconds": ["300", "20"], "properties": ["stream, water, run", "distance, car, speed"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w6RTHR6AeAg", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["call, owl, screech", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w0xsN8X18Y", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["rain, thunder, surface", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["w2JXXIAdUdg", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["emits, sleeping, person", "water, radio, man"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["children cry and people talk", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xLwHe825Zs", "w5W5Kqtc8E"], "start_seconds": ["18", "100"], "properties": ["people talk, children cry, people talk", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby cries and a woman speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yaln9y8I7ms", "xBxDz0CFVn0"], "start_seconds": ["230", "30"], "properties": ["female, flushes, toilet", "stream, water, flow"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a man speaks as a car is passing by"], "sample_ids": ["uZesmtKZGSw", "sK4u5T8hW78"], "start_seconds": ["250", "30"], "properties": ["car, track, man", "a, car, pass"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking to a car passing by?", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "water flows and trickles"], "sample_ids": ["tgbONvsP47Y", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["noise, truck, accelerate", "water, flow, trickle"], "captions_pred_video": ["footage of a fire truck entering a garage", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car is driving on the road ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a car accelerates and wind blows"], "sample_ids": ["vYkA3cfXp5Q", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["engine, accelerate, idle", "accelerates, wind, blows"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", null], "captions_pred_audio": ["an engine is idling", "a race car accelerates and revs its engine "], "question": "which entity is a car?", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "an airplane engine spools and people speak"], "sample_ids": ["smGI3C1NZc", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["water, drain, toilet", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a toilet is flushed", "a jet engine is running and people are talking"], "question": "which entity is a machine", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zPX9o1uDiI", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["engine, horn, run", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["wz7N8YRy74I", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["rooster, crow, background, men", "two men, woman, birds"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["speaking following by laughing and clapping", "vehicles pass by on a roadway"], "sample_ids": ["u2f5NpsoHBg", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["person, laugh, clap", "pass, vehicle, roadway"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "small dogs yip and bark sharply"], "sample_ids": ["zCrAfDfv6-A", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["person, mouse, click", "bark, yip, sharply"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a person whistles a song", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["material crumbles into a microphone", "vehicles pass by on a roadway"], "sample_ids": ["vofpvUo6NAw", "tgbONvsP47Y"], "start_seconds": ["220", "0"], "properties": ["material, crumbles, microphone", "pass, vehicle, roadway"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of a fire truck entering a garage"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zgUgkpk78xU", "zFjIWfSD-4"], "start_seconds": ["70", "410"], "properties": ["clinking, humming, horn", "People, motor, brakes"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a train?", "label": 0}, {"captions": ["white noise and birds chirping", "several insects fly while two men talk"], "sample_ids": ["wRBHTgrbiwg", "s-T9OVOiMLo"], "start_seconds": ["50", "330"], "properties": ["noise, white, chirping", "several, fly, men"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "paper is crumpling consistently"], "sample_ids": ["xzKKf9bKNUo", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["background, noise, snoring", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person snoring loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a man speaks as a motor runs in the background"], "sample_ids": ["xyL9F5VrjkE", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["wind, motor, distance", "background, motor, run"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["u5RmF3c3Aw", "tDVADusiIoc"], "start_seconds": ["60", "60"], "properties": ["engine, car, zoom", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a man speaking with light rustling", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zOZleIRqZm4", "uYT5gxnyMWM"], "start_seconds": ["80", "50"], "properties": ["light, rustling, man", "female, spraying, scream"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity is a woman?", "label": 1}, {"captions": ["bees buzz and wind blows", "water pouring and bubbling"], "sample_ids": ["tMJne1a4AFI", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["bees buzz, wind blows, bees", "water, bubbles, pouring"], "captions_pred_video": ["a swarm of bees on the ground", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a swarm of bees buzzing around", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["w5W5Kqtc8E", "vfYTJq7nU"], "start_seconds": ["100", "130"], "properties": ["wind, engine, scream", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an audience gives applause", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["x6iCUDmRpKQ", "yajyRTUQk3U"], "start_seconds": ["38", "400"], "properties": ["applause, audience, give", "a woman, something, fried"], "captions_pred_video": ["a black background with the moon and stars in the sky", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a group of people are clapping and cheering", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a woman talking as an infant is crying"], "sample_ids": ["vfYTJq7nU", "tMbMDvT50j8"], "start_seconds": ["130", "12"], "properties": ["rustling, ducks, quack", "a, talk, infant"], "captions_pred_video": [null, "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is a person talking to an infant?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a man speaks followed by another man speaking outside"], "sample_ids": ["siJFXfGWgDk", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["a, bird, vehicle", "two men, speak, follow"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a clock ticktocks"], "sample_ids": ["wz7N8YRy74I", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a car speeding up in the distance"], "sample_ids": ["y8WEcpOlT3I", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["wind, speak, buffeting", "distance, car, speed"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a airplane flies overhead as a woman speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zj2R0XoFr5k", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["airplane, fly, woman", "female, spraying, scream"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["a saw finishes running as metal clings in the background", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zofjfKhqLk8", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "multiple, people, yell"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vbpKkWvfOu4", "vJ7JPEFhyLA"], "start_seconds": ["560", "16"], "properties": ["a, man, speaks", "three men, wind, flow"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "paper is crumpling consistently"], "sample_ids": ["yNtRmrn0io8", "v5cSxLaHADY"], "start_seconds": ["210", "0"], "properties": ["storm, distance, strike", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a house in the middle of the night", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["rain falls and thunder roars", "paper is crumpled and crinkled"], "question": "which entity is not a storm?", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "paper folding and crinkling"], "sample_ids": ["shmR4OZtzqA", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["man, engine, idle", "paper, fold, crinkle"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man speaks while a motor runs", "the wind blows and a mouse clicks "], "question": "which is not a vehicle", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w0xsN8X18Y", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["music, surface, rain", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more liquid flowing", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "a frog croaks as other frogs croak in the background"], "sample_ids": ["s4tUs779vBA", "yswmmRZFItk"], "start_seconds": ["160", "0"], "properties": ["a, sound, stop", "background, frog, croak"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "a close up of a frog in the water"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a frog is croaking"], "question": "which entity has more frogs croaking in the background", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "someone is typing on a computer keyboard"], "sample_ids": ["sd7xVssqlw", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["accelerates, tires, squealing", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which entity is stationary", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "a woman speaks as she rubs two objects together"], "sample_ids": ["sTpirNYo8vQ", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["a, tone, fast", "two objects, woman, speak"], "captions_pred_video": ["of a man taking a selfie on a bus", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman speaks as she rubs two objects together?", "label": 1}, {"captions": ["a infant makes noise and is excited", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wIJK3-5y0kA", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["noise, excited, infant", "loud, laughter, intermittent"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaking with light rustling", "a person snores loudly multiple times at a close distance"], "sample_ids": ["zOZleIRqZm4", "sSMl2vc3ek"], "start_seconds": ["80", "20"], "properties": ["light, rustling, man", "loud, multiple, distance"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xfudFO976zE", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["animal, bleats, cry", "female, spraying, scream"], "captions_pred_video": ["footage is blurry and shaky", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["u6jIvCtKarQ", "sSMl2vc3ek"], "start_seconds": ["70", "20"], "properties": ["a, man, speaks", "loud, multiple, distance"], "captions_pred_video": ["footage of a person using a blender on a stove top", null], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "paper is crumpling consistently"], "sample_ids": ["uiItxDsDMFI", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["wood, piece, saw", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a saw is being used with background noise ", "paper is crumpled and crinkled"], "question": "which object is being crumpled", "label": 0}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a man speaks over intermittent keyboard taps"], "sample_ids": ["yLy-WycbVVE", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["background, people, talk", "audio, man, keyboard"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a man speaks and types on a computer keyboard "], "question": "which entity has a more calming background", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "wind blows as people chatter quietly"], "sample_ids": ["zY3icUyMdh8", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "wind, chatter, people"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a propeller rotates loudly and intensely"], "sample_ids": ["wsHBIgzs9Fs", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["horn, continuous, buzzing", "loud, intense, propeller"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xyx6eNVEYRY", "tDVADusiIoc"], "start_seconds": ["380", "60"], "properties": ["loud, engine, muffles", "water, radio, man"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vD6lYD1l0BY", "wDVMhEdTiVw"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "gun, shoot, water"], "captions_pred_video": ["game controller being held in the hands of the person", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["an insect buzzes around continuously", "someone snores nearby"], "sample_ids": ["v25l1jef3JY", "spJCm8tD9Zo"], "start_seconds": ["0", "90"], "properties": ["buzzes, continuously, insect", "someone snores, nearby, someone"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a horn rings out as a machine runs by"], "sample_ids": ["vW4x7S1VfQc", "slZLHwNbbt4"], "start_seconds": ["150", "300"], "properties": ["clacking, oil, woman", "a, horn, run"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["food sizzles in a frying pan", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a man speaks as a machine runs", "people applaud and hoot and chat quietly"], "sample_ids": ["vD6lYD1l0BY", "wwyfGO2J4"], "start_seconds": ["330", "90"], "properties": ["a, machine, run", "people, applaud, hoot"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a person sniffles and sneezes", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["uRlbY6aoBU", "y8WEcpOlT3I"], "start_seconds": ["0", "40"], "properties": ["sneezes, sniffles, person", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be a person", "label": 0}, {"captions": ["a bird is chirping and tweeting a bird song", "a toilet flushes and a female speaks"], "sample_ids": ["wPz6QRAkEb4", "yaln9y8I7ms"], "start_seconds": ["60", "230"], "properties": ["chirps, tweets, song", "female, flushes, toilet"], "captions_pred_video": ["a bird in a cage on top of a pole", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping in the background ", "a toilet flushes and a man speaks"], "question": "which entity is not a bird?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a woman speaks and other women and a man talk with her"], "sample_ids": ["w2M4i1mklOA", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["alarm, gears, turn", "a, woman, man"], "captions_pred_video": ["footage of an antique clock", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["smDKStoHBJo", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["a, talk, baby, cry", "People, motor, brakes"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a man speaks as a car is passing by"], "sample_ids": ["sQwlkXjQabo", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "a, car, pass"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a heavy rain falls endlessly"], "sample_ids": ["zALy31PjDl0", "wP8ZKrlx3oA"], "start_seconds": ["21", "40"], "properties": ["a man, a vehicle, a horn", "heavy, rain, fall"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a heavy rain is falling on a surface"], "question": "which entity is a weather event", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wqUmIEzuNz4", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["frog, bird, vocalize", "men, talk, cars"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a cat meows and rustles", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle engine revs as the vehicle passes", "a woman speaks as she rubs two objects together"], "sample_ids": ["yDoT73BWsdA", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["engine, revs, vehicle", "two objects, woman, speak"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "three men talk while wind blows and some liquid flows"], "sample_ids": ["slZLHwNbbt4", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["train, horn, sound", "three men, wind, flow"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a train?", "label": 1}, {"captions": ["electronic beeps occur in a short series", "paper folding and crinkling"], "sample_ids": ["y682ml90jGw", "zPpG3RD8lSs"], "start_seconds": ["11", "20"], "properties": ["beeps, series, electronic", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a beeping sound is being made ", "the wind blows and a mouse clicks "], "question": "which entity is not a series of beeps", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yYEVLuqEytU", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["grunt, slurp, background", "a, scream, girl"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a male speaks and another male speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["viuTg1M-dqg", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "rooster, crow, background, men"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "birds chirp and objects are moved around"], "sample_ids": ["sG7TyPnFDR0", "yPUYU6t3rwo"], "start_seconds": ["180", "370"], "properties": ["beeps, machine, smoke alarm", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "people speak as gunfire rings out"], "sample_ids": ["wjsXBsc7M40", "wqTCwqVRDlk"], "start_seconds": ["10", "80"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "gunfire, ring, speak"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a woman speaks with water running", "some men converse over an engine running"], "sample_ids": ["wTideSjRFS0", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["water, running, woman", "men, converse, engine"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman speaking with water running?", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yZmhM1HcsyE", "uZesmtKZGSw"], "start_seconds": ["4", "250"], "properties": ["engine, roar, water", "men, talk, cars"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more likely to be in a race", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a man speaks with another voice speaking in the background"], "sample_ids": ["vZAw4apG0Es", "u21-Z5gJCB8"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "background, voice, man"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking in the background?", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "people applaud and hoot and chat quietly"], "sample_ids": ["y2ZBGpgbhHM", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["dog, chirp, breathe", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a car is passing by", "white noise and snoring with some rustling in the background"], "sample_ids": ["sK4u5T8hW78", "xzKKf9bKNUo"], "start_seconds": ["30", "10"], "properties": ["a, car, pass", "background, noise, snoring"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person snoring loudly"], "question": "which entity has a car passing by", "label": 0}, {"captions": ["a propeller rotates loudly and intensely", "people cheer as a vehicle engine revs"], "sample_ids": ["ugHJF0hfYkg", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["loud, intense, propeller", "engine revs, vehicle, people"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a helicopter is flying overhead ", "a truck is revving its engine and a man is speaking "], "question": "which is louder", "label": 0}, {"captions": ["ticking continues without interruption", "some tunes played by whistling"], "sample_ids": ["v-g-j2uTByM", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["ticking, continuous, clock", "tune, play, whistling"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a clock is ticking loudly", "a person whistling a song"], "question": "which entity is not continuous", "label": 1}, {"captions": ["a helicopter engine runs", "an insect buzzes around continuously"], "sample_ids": ["t5ZbXbniOWk", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["engine, helicopter, run", "buzzes, continuously, insect"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a helicopter is flying overhead ", "a fly is buzzing around a microphone "], "question": "which entity is not a helicopter?", "label": 1}, {"captions": ["a woman and man are speaking", "someone whistles a tune"], "sample_ids": ["vbpKkWvfOu4", "sIXTftIuUgw"], "start_seconds": ["560", "90"], "properties": ["two people, speaking, woman, man", "someone, tune, whistle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a person whistling a song"], "question": "which entity is a single person", "label": 1}, {"captions": ["goats bleat and metal clings", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tH17JPjDPnc", "sSMl2vc3ek"], "start_seconds": ["260", "20"], "properties": ["bleat, metal, clings", "loud, multiple, distance"], "captions_pred_video": ["feed of the goats eating hay in the barn", null], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a woman speaks as she rubs two objects together"], "sample_ids": ["siJFXfGWgDk", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["a, bird, vehicle", "two objects, woman, speak"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["an adult woman and an adult man speak", "wind blows as people chatter quietly"], "sample_ids": ["zTLVJCo4WEE", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "wind, chatter, people"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "birds tweet and squawk"], "sample_ids": ["yI-KvObbDoY", "w1mlz3Pe4fU"], "start_seconds": ["260", "300"], "properties": ["sound, smack, wind", "squawk, tweet, scream"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "of a bird in a cage"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "birds are chirping and singing"], "question": "which entity is a bird", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a car accelerates and wind blows"], "sample_ids": ["vzceMbklWc", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["water, faucet, sink", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "wind blowing followed by a zoom"], "sample_ids": ["y8dSeubCNI", "vr8ZXjEBhMQ"], "start_seconds": ["4", "150"], "properties": ["engine revving, people speaking, motorcycle", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["an engine revving and people talking in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a woman and man are speaking", "a car accelerates and wind blows"], "sample_ids": ["vbpKkWvfOu4", "u0TrcHhkPQ"], "start_seconds": ["560", "20"], "properties": ["two people, speaking, woman, man", "accelerates, wind, blows"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a race car accelerates and revs its engine "], "question": "which is not a person", "label": 1}, {"captions": ["a cat meows and children speak", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["x5cuQjOdM3E", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["cat, speak, children", "roars, background, people speaking"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["paper is crumpling consistently", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["v5cSxLaHADY", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "men, talk, cars"], "captions_pred_video": ["footage of the person holding a pair of scissors", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sYITalLZjj4", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["water, rushes, background, birds", "airplane, boy, fly"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["wind blows and birds chirp", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["sNB8zxXneIM", "yeFvk9x0wWI"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "clack, bird, chirp"], "captions_pred_video": ["a group of geese in a cage", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "birds chirp in the background as a car drives by "], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person whistles a meandering tune", "a airplane flies overhead as a woman speaks"], "sample_ids": ["uFoga8sHpiw", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["person, tune, whistle", "airplane, fly, woman"], "captions_pred_video": ["footage of a bird in a cage", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person whistles a song", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["vqZuVbG6-HI", "xjvTpk2Zpr8"], "start_seconds": ["130", "70"], "properties": ["background, male, female", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["an airplane engine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yVPZ2MNWpms", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["engine, airplane, runs", "female, spraying, scream"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is driving by on the road ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a male speaks and another male speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["viuTg1M-dqg", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "two men, speak, follow"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 0}, {"captions": ["waves crash against a shoreline and wind blows", "a car speeding up in the distance"], "sample_ids": ["zdYdyF9-m8U", "u0TrcHhkPQ"], "start_seconds": ["7", "20"], "properties": ["wind, crash, shoreline", "distance, car, speed"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", null], "captions_pred_audio": ["waves crash and wind blows ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["multiple ducks quack continuously", "water flows and trickles"], "sample_ids": ["wfHeoPDLMaM", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "water, flow, trickle"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["ducks are quacking", "water is splashing and gurgling"], "question": "which entity is a source of water", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "some tunes played by whistling"], "sample_ids": ["w9lpbUn0hPc", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["male, wind, rustling", "tune, play, whistling"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a propeller rotates loudly and intensely"], "sample_ids": ["w-4gHptFNuU", "ugHJF0hfYkg"], "start_seconds": ["21", "10"], "properties": ["engine revs, accelerates, bump", "loud, intense, propeller"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a horn rings out as a machine runs by"], "sample_ids": ["vh30P49Po6s", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["loud, continuous, quacks", "a, horn, run"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a duck is quacking loudly", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is not continuous", "label": 1}, {"captions": ["a person snoring", "a frog croaks as other frogs croak in the background"], "sample_ids": ["t8tv5YRMJUg", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["a person, snore, loud", "background, frog, croak"], "captions_pred_video": ["of a man getting his face licked by another man", "a close up of a frog in the water"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a frog is croaking"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "a toilet flushes and a female speaks"], "sample_ids": ["tqR406bGiE", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["flush, water, gurgle", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet is flushed", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zkKdxzNC97Y", "xfaoyyzw2WU"], "start_seconds": ["27", "180"], "properties": ["hard, surface, door", "loud, jet engine, roar"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a door is opened and closed", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "vehicles pass by on a roadway"], "sample_ids": ["vms5XGTDVQc", "tgbONvsP47Y"], "start_seconds": ["220", "0"], "properties": ["paper, crumpled, crinkled", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage of a fire truck entering a garage"], "captions_pred_audio": ["paper is crumpled and crinkled", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a drill runs and two people laugh", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tEE3MpBt1sg", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["two people, laugh, drill", "loud, multiple, distance"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman talking as an infant is crying", "a stream runs then someone speaks"], "sample_ids": ["tMbMDvT50j8", "wbHTKEJZyhc"], "start_seconds": ["12", "20"], "properties": ["a, talk, infant", "stream, run, someone"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a baby cries and a woman speaks", "a waterfall is flowing and people are speaking "], "question": "which entity is a stream?", "label": 1}, {"captions": ["water flows followed by women screaming", "a toilet flushes and a female speaks"], "sample_ids": ["w5W5Kqtc8E", "yaln9y8I7ms"], "start_seconds": ["100", "230"], "properties": ["water, flow, women", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a man speaks as a vehicle engine idles"], "sample_ids": ["vb1fPSDI4c", "shmR4OZtzqA"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "man, engine, idle"], "captions_pred_video": [null, "shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a man speaks while a motor runs"], "question": "which entity has a vehicle engine idle?", "label": 1}, {"captions": ["white noise and birds chirping", "water splashes as an animal walks through"], "sample_ids": ["wRBHTgrbiwg", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["noise, white, chirping", "animal, water, splashes"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a clock ticktocks"], "sample_ids": ["ugHJF0hfYkg", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["engine, idle, continuously", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a helicopter is flying overhead ", "a clock is ticking loudly"], "question": "which entity is ticking continuously", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sShpyu2l4YQ", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["growl, bark, yip", "background, frog, croak"], "captions_pred_video": ["the puppies are playing with a toy", "a close up of a frog in the water"], "captions_pred_audio": ["a dog is barking and growling", "a frog is croaking"], "question": "which entity is a solitary animal", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "wind blowing followed by a zoom"], "sample_ids": ["zsLxS-uLJTw", "vr8ZXjEBhMQ"], "start_seconds": ["20", "150"], "properties": ["horn, blast, train", "wind, blow, zoom"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["u5RmF3c3Aw", "w5W5Kqtc8E"], "start_seconds": ["60", "100"], "properties": ["engine, car, zoom", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a car zooming by?", "label": 0}, {"captions": ["children speak and play together", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yVVP8XvWJTo", "wz7N8YRy74I"], "start_seconds": ["260", "30"], "properties": ["children, speak, play", "rooster, crow, background, men"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity shows a rooster crow?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "water splashes as an animal walks through"], "sample_ids": ["xV7Mg1QucSc", "w1ir-sZ3Im8"], "start_seconds": ["14", "90"], "properties": ["alarm, ticktocks, laughs", "animal, water, splashes"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["w34HjHr6gAY", "xV7Mg1QucSc"], "start_seconds": ["30", "14"], "properties": ["beeps, hit, woman", "alarm, ticktocks, laughs"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "an alarm clock ticks and a woman laughs"], "question": "which entity has a man laugh?", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "waves crash against a shoreline and people speak"], "sample_ids": ["wRBHTgrbiwg", "yFB25fqfU8I"], "start_seconds": ["50", "300"], "properties": ["birds, chirp, cooing", "wave, crash, shoreline"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a person surfing in the ocean"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["white noise and birds chirping", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wRBHTgrbiwg", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["noise, white, chirping", "airplane, boy, fly"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a clock ticktocks in wind"], "sample_ids": ["uiS58TNyUiw", "yVumC9TGknc"], "start_seconds": ["430", "30"], "properties": ["audio, man, speaking", "ticktocks, clock, wind"], "captions_pred_video": ["of the pigeon in the cage", "game title screen of the game shadow of the colossus on sony playstation 2"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a series of beeps and chirps"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as a machine runs", "water runs into a sink while men speak"], "sample_ids": ["vD6lYD1l0BY", "vzceMbklWc"], "start_seconds": ["330", "180"], "properties": ["a, machine, run", "water, sink, run"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "water is running and a man is speaking"], "question": "which entity is a man speaking as a machine runs?", "label": 0}, {"captions": ["a clock alarm sounds and gears turn", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w2M4i1mklOA", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["alarm, gears, turn", "airplane, boy, fly"], "captions_pred_video": ["footage of an antique clock", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["ukxt9I7eMMg", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["food, pan, cook", "rustling, ducks, quack"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["ylpYOorfH4o", "yeFvk9x0wWI"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "clack, bird, chirp"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a man is speaking and an engine is revving", "birds chirp in the background as a car drives by "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a door opens and closes"], "sample_ids": ["yajyRTUQk3U", "vBHyYJ8pL0"], "start_seconds": ["400", "2"], "properties": ["noise, woman, speak", "open, close, door"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is more silent", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "someone is typing on a computer keyboard"], "sample_ids": ["vuUVPzd2FXw", "v0x1odnXtP0"], "start_seconds": ["160", "210"], "properties": ["a, steam, release", "keyboard, type, computer"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a woman sneezes then speaks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["x4dZyf9Gbj0", "xfaoyyzw2WU"], "start_seconds": ["130", "180"], "properties": ["sneezes, speaks, woman", "loud, jet engine, roar"], "captions_pred_video": ["footage is blurry and out of focus", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman sneezes and speaks", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a duck quacks continuously"], "sample_ids": ["tDVADusiIoc", "vh30P49Po6s"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "quacks, continuously, duck"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a duck is quacking loudly"], "question": "which entity is speaking", "label": 0}, {"captions": ["multiple birds vocalize and wind blows", "an infant crying as a woman laughs"], "sample_ids": ["uoGVs9yUqY4", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["multiple, vocalize, wind", "a, laugh, infant"], "captions_pred_video": ["for how to make a wooden shed door youtube", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["yks4cLgIDMc", "wRBHTgrbiwg"], "start_seconds": ["170", "50"], "properties": ["background, speaking, child", "bird, owl, speak"], "captions_pred_video": ["footage of two kids wrestling on the floor", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a man is speaking and a child is crying", "birds are chirping and insects are buzzing"], "question": "which entity has a bird speaking?", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "a woman speaks as she rubs two objects together"], "sample_ids": ["wqADXCzngMw", "vzxHnu-SFEw"], "start_seconds": ["340", "80"], "properties": ["audio, humming, revving", "two objects, woman, speak"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xjhAnI2q6hM", "ukg5L09Wpvo"], "start_seconds": ["6", "150"], "properties": ["engine revs, vehicle, people", "clickety-clack, train, whistle"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "birds chirp and objects are moved around"], "sample_ids": ["sapQIQUhFc", "yPUYU6t3rwo"], "start_seconds": ["280", "370"], "properties": ["liquid, flow, distance", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking with light rustling", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zOZleIRqZm4", "tdWhHV3X25Q"], "start_seconds": ["80", "60"], "properties": ["light, rustling, man", "applause, audience, yells"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking with light rustling", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["zOZleIRqZm4", "y2bVZ7rz-5M"], "start_seconds": ["80", "280"], "properties": ["light, rustling, man", "motor noise, horn, siren"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a truck is honking its horn and a siren is blaring "], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "a vehicle engine accelerates and wind blows"], "sample_ids": ["vs65y4qmyBE", "wudZTNBtVqc"], "start_seconds": ["340", "60"], "properties": ["wind, blows, strongly", "accelerates, engine, wind"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a car accelerates and revs its engine "], "question": "which entity is about a vehicle engine accelerating and wind blowing?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a piece of wood is being placed down and sawed"], "sample_ids": ["tiDFTC-5vU", "uiItxDsDMFI"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "wood, piece, saw"], "captions_pred_video": [null, "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vZAw4apG0Es", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["people, clock, converse", "engine, laugh, loud"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a clock is ticking and people are talking", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "people cheer as a vehicle engine revs"], "sample_ids": ["w34HjHr6gAY", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["beeps, hit, woman", "engine revs, vehicle, people"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x6ijhqRY38s", "xKB8O8LTs6s"], "start_seconds": ["250", "70"], "properties": ["something metal, glass, hit", "music, gunfire, explosion"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "someone snores nearby"], "sample_ids": ["se87d6yxEOA", "spJCm8tD9Zo"], "start_seconds": ["10", "90"], "properties": ["run, whistle, pass", "someone snores, nearby, someone"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a person is snoring loudly"], "question": "which is quieter", "label": 0}, {"captions": ["a person is burping while a girl speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vdoxuJn9lTc", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["person, burp, girl", "applause, audience, yells"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wyllXV6PjKo", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a baby, a woman, a man", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yZrFNS7GFBQ", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["pigeon, buzzes, insect", "three men, wind, flow"], "captions_pred_video": ["of the bird in the cage", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a pigeon?", "label": 0}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "people speak as gunfire rings out"], "sample_ids": ["wvKpEYswXO0", "wqTCwqVRDlk"], "start_seconds": ["150", "80"], "properties": ["water, tap, run", "gunfire, ring, speak"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "people speak in the background as a clock ticktocks"], "sample_ids": ["sU53zg9Jp7s", "vZAw4apG0Es"], "start_seconds": ["380", "30"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "background, clock, ticktocks"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a clock is ticking and people are talking"], "question": "which entity has a clock ticktocking?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "men speak and a nozzle sprays liquid"], "sample_ids": ["yaln9y8I7ms", "wRV8yMk886E"], "start_seconds": ["230", "0"], "properties": ["female, flushes, toilet", "liquid, spray, nozzle"], "captions_pred_video": ["footage is blurry and out of focus", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man speaks followed by a loud burst"], "question": "which entity is a machine", "label": 1}, {"captions": ["wind blows strongly", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["w8uLijTqtlU", "tiDFTC-5vU"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "male, duck, laugh"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and ducks are quacking"], "question": "which entity is more likely to be a natural phenomenon", "label": 0}, {"captions": ["children cheer as a man speaks then an audience screams", "people applaud and hoot and chat quietly"], "sample_ids": ["vJvryTwuAV8", "wwyfGO2J4"], "start_seconds": ["16", "90"], "properties": ["audience, cheer, man", "people, applaud, hoot"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", null], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "people are clapping and speaking with background noise "], "question": "which entity shows a quieter audience", "label": 1}, {"captions": ["an engine runs loudly", "a toilet flushes and a female speaks"], "sample_ids": ["vqZuVbG6-HI", "yaln9y8I7ms"], "start_seconds": ["130", "230"], "properties": ["loud, engine, run", "female, flushes, toilet"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage is blurry and out of focus"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a toilet flushes and a man speaks"], "question": "which entity is silent", "label": 1}, {"captions": ["a person is snoring while sleeping", "dogs barking and whimpering"], "sample_ids": ["vJrjSeP17yE", "tIY7qOV3rEM"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "barking, whimpering, dog"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a person snoring loudly", "a dog is barking and a cat is meowing"], "question": "which entity is a dog", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "several insects fly while two men talk"], "sample_ids": ["wTjoRj1se3U", "s-T9OVOiMLo"], "start_seconds": ["390", "330"], "properties": ["engine, run, people", "several, fly, men"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a nature setting", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "water is sprayed across a hard surface"], "sample_ids": ["xKB8O8LTs6s", "sQwlkXjQabo"], "start_seconds": ["70", "10"], "properties": ["music, gunshots, explosion", "water, spray, surface"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a infant makes noise and is excited", "bees buzz and wind blows"], "sample_ids": ["wIJK3-5y0kA", "tMJne1a4AFI"], "start_seconds": ["30", "0"], "properties": ["noise, excited, infant", "bees buzz, wind blows, bees"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a swarm of bees on the ground"], "captions_pred_audio": ["a baby cries and a woman speaks", "a swarm of bees buzzing around"], "question": "which entity is buzzing", "label": 1}, {"captions": ["a man speaking with light rustling", "ticking continues without interruption"], "sample_ids": ["zOZleIRqZm4", "v-g-j2uTByM"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "ticking, continuous, clock"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a clock is ticking loudly"], "question": "which entity is continuous", "label": 1}, {"captions": ["children speak and play together", "vehicles pass by on a roadway"], "sample_ids": ["yVVP8XvWJTo", "tgbONvsP47Y"], "start_seconds": ["260", "0"], "properties": ["children, speak, play", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of a fire truck entering a garage"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a car accelerates and wind blows"], "sample_ids": ["uJV8NDaHqqk", "u0TrcHhkPQ"], "start_seconds": ["100", "20"], "properties": ["loud, fly, chirp", "accelerates, wind, blows"], "captions_pred_video": ["a bee hive in a wooden box", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "waves crash against a shoreline and people speak"], "sample_ids": ["rwTERCUno", "yFB25fqfU8I"], "start_seconds": ["90", "300"], "properties": ["engine, idle, sputter", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a jet engine spools up and takes off", "some men converse over an engine running"], "sample_ids": ["vBslzh7saPw", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["engine, spools, takes", "men, converse, engine"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "people cheer as a vehicle engine revs"], "sample_ids": ["vJ7JPEFhyLA", "xjhAnI2q6hM"], "start_seconds": ["16", "6"], "properties": ["three men, wind, flow", "engine revs, vehicle, people"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an infant crying frantically", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zwOBqeFTgiU", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["cry, infant, frantically", "water, radio, man"], "captions_pred_video": ["of the baby crying in the car seat", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a train horn sounds as it passes by", "people cheer as a vehicle engine revs"], "sample_ids": ["ukg5L09Wpvo", "xjhAnI2q6hM"], "start_seconds": ["150", "6"], "properties": ["sound, train, horn", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["w8uLijTqtlU", "w5W5Kqtc8E"], "start_seconds": ["70", "100"], "properties": ["wind, microphone, noise", "wind, blow, vehicle"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a recording of wind noise?", "label": 0}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["w-4gHptFNuU", "sLUnaPT5gM8"], "start_seconds": ["21", "0"], "properties": ["engine revs, accelerates, bump", "loud, laughter, intermittent"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["engines sputter roughly and tires squeal", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zhx6hoYrHeI", "sLUnaPT5gM8"], "start_seconds": ["160", "0"], "properties": ["engine, sputter, rough", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a scream", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vlJS7LN2XyM", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["background, clocks, ticking", "applause, audience, yells"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "someone whistles a song"], "sample_ids": ["tiDFTC-5vU", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["male, duck, laugh", "someone, song, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a person whistling a song"], "question": "which entity is a person", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a woman speaks as she rubs two objects together"], "sample_ids": ["sZPuqDgX2V0", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["commentator, race, track", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "multiple people speak and children yell while water gurgles"], "sample_ids": ["slZLHwNbbt4", "vb1fPSDI4c"], "start_seconds": ["300", "30"], "properties": ["clap, distance, horn", "multiple, people, yell"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks and is typing on a keyboard", "a vehicle engine accelerating then running on idle"], "sample_ids": ["x9JovgqUcs", "vYkA3cfXp5Q"], "start_seconds": ["500", "30"], "properties": ["a, man, speaks, keyboard", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man speaks and types on a keyboard", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people speak softly as food sizzles", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yhQ2Lg-7qDY", "zFjIWfSD-4"], "start_seconds": ["130", "410"], "properties": ["food, sizzle, speak", "People, motor, brakes"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a motor?", "label": 1}, {"captions": ["a small engine spits as it runs", "multiple motorcycles pass by as a man speaks"], "sample_ids": ["sZvwOuuPGP0", "zcDwZ6W7E3E"], "start_seconds": ["50", "180"], "properties": ["spits, engine, runs", "man, speak, motorcycles"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is a video of multiple motorcycles passing by as a man speaks?", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["u--KhUW8l1Y", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["horn, siren, life", "engine, idle, woman"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "an infant crying as a woman laughs"], "sample_ids": ["zofjfKhqLk8", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["background, metal, clings", "a, laugh, infant"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "small dogs yip and bark sharply"], "sample_ids": ["xfudFO976zE", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["animal, bleats, cry", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry and shaky", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a dog barks and growls"], "question": "which animal is more aggressive", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["v0x1odnXtP0", "yks4cLgIDMc"], "start_seconds": ["210", "170"], "properties": ["keyboard, type, computer", "background, speaking, child"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "birds chirp and objects are moved around"], "sample_ids": ["vbZ-0lGPneg", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["a woman, a television program, a bird", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "insects buzz and a man speaks"], "question": "which entity has more birds", "label": 1}, {"captions": ["leaves rustle while man speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zOZleIRqZm4", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["leaves, rustle, speak", "three men, wind, flow"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "an infant crying frantically"], "sample_ids": ["vf44CgrjT0A", "zwOBqeFTgiU"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "cry, infant, frantically"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "of the baby crying in the car seat"], "captions_pred_audio": ["a loud burp", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a child speaks in closed space"], "sample_ids": ["sSMl2vc3ek", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["a person, laughs, snores", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 0}, {"captions": ["several beeps are followed by a hit and a woman talking", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["w34HjHr6gAY", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["beeps, hit, woman", "engine, revs, vehicle"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "an engine runs loudly"], "sample_ids": ["sLUnaPT5gM8", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["loud, laughter, intermittent", "loud, engine, run"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as crickets sing", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["ryFDPxgDOGc", "uqFtmnhuqA8"], "start_seconds": ["570", "30"], "properties": ["a, crickets, sing", "a, b, c"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a toilet flushes and a female speaks"], "sample_ids": ["smDKStoHBJo", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["a, infant, speaking", "female, flushes, toilet"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a toilet flushes and a man speaks"], "question": "which entity is about a toilet?", "label": 1}, {"captions": ["a man speaks as a machine runs", "an small aircraft engine runs and a boy speaks"], "sample_ids": ["vD6lYD1l0BY", "xSKJGCItUWE"], "start_seconds": ["330", "10"], "properties": ["a, machine, run", "engine, run, boy"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a high pitched engine is running and a child speaks"], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["people speak in a closed space", "water is sprayed across a hard surface"], "sample_ids": ["sTpirNYo8vQ", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["people, space, speak", "water, spray, surface"], "captions_pred_video": ["of a man taking a selfie on a bus", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "two men speak as a buffeting wind blows"], "sample_ids": ["wwyfGO2J4", "y8WEcpOlT3I"], "start_seconds": ["90", "40"], "properties": ["people, applaud, hoot", "wind, speak, buffeting"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a toilet flushes and a female speaks"], "sample_ids": ["sjlVMgdGSK0", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["accelerates, vehicle, race car", "female, flushes, toilet"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage is blurry and out of focus"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a door slams shut roughly", "people applaud and hoot and chat quietly"], "sample_ids": ["zkKdxzNC97Y", "wwyfGO2J4"], "start_seconds": ["27", "90"], "properties": ["a door, slams, shut", "people, applaud, hoot"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["zFjIWfSD-4", "yks4cLgIDMc"], "start_seconds": ["410", "170"], "properties": ["People, motor, brakes", "background, speaking, child"], "captions_pred_video": [null, "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a man speaks uses a drill"], "sample_ids": ["zcDwZ6W7E3E", "x5eIC7S0fbg"], "start_seconds": ["180", "60"], "properties": ["man, speak, motorcycles", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking and using a power tool "], "question": "which man is speaking", "label": 1}, {"captions": ["a jet engine spools up and takes off", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vBslzh7saPw", "tdWhHV3X25Q"], "start_seconds": ["90", "60"], "properties": ["engine, spools, takes", "applause, audience, yells"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u--KhUW8l1Y", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["horn, siren, life", "airplane, boy, fly"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a frog croaks as other frogs croak in the background"], "sample_ids": ["spJCm8tD9Zo", "yswmmRZFItk"], "start_seconds": ["90", "0"], "properties": ["snores, wheezes, sleeps", "background, frog, croak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a close up of a frog in the water"], "captions_pred_audio": ["a person is snoring loudly", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yZrFNS7GFBQ", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["pigeon, buzzes, insect", "men, talk, cars"], "captions_pred_video": ["of the bird in the cage", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a woman speaks happily and an animal chirps"], "sample_ids": ["wfHeoPDLMaM", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["quacking, squawking, ducks", "a woman, chirps, animal"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a woman is speaking and a dog is barking "], "question": "which entity is a bird?", "label": 0}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wvKpEYswXO0", "vfYTJq7nU"], "start_seconds": ["150", "130"], "properties": ["water, tap, run", "rustling, ducks, quack"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["a person sniffles and sneezes", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uRlbY6aoBU", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is sneezing ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not followed by water sloshing nearby?", "label": 0}, {"captions": ["a toilet flushes and water drains", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sfAvvZwdLCY", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["water drains, flushes, water", "applause, audience, yells"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y1saVTXsKwc", "xKB8O8LTs6s"], "start_seconds": ["80", "70"], "properties": ["a, dog, talk", "music, gunfire, explosion"], "captions_pred_video": ["a dog playing with a pink ball", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog barks and a man speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["zl9Dqx-j7q4", "vlS6YMeWAPo"], "start_seconds": ["6", "40"], "properties": ["engine, laugh, loud", "sheep, baa, birds"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a jet engine roars ", "a goat bleats and birds chirp"], "question": "which entity is followed by a man laughing", "label": 0}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a man speaks followed by another man speaking outside"], "sample_ids": ["yZrFNS7GFBQ", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["pigeon, buzzes, insect", "two men, speak, follow"], "captions_pred_video": ["of the bird in the cage", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single person speaking?", "label": 0}, {"captions": ["a motorcycle engine is idling", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vZAqdHZ81yA", "vYkA3cfXp5Q"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "engine, accelerate, idle"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["an engine is idling loudly", "an engine is idling"], "question": "which entity has an engine that is idling", "label": 0}, {"captions": ["bees buzz and wind blows", "frogs croak and vocalize"], "sample_ids": ["tMJne1a4AFI", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["bees buzz, wind blows, bees", "croak, vocalize, frog"], "captions_pred_video": ["a swarm of bees on the ground", "a close up of a frog in the water"], "captions_pred_audio": ["a swarm of bees buzzing around", "a frog is croaking"], "question": "which animal is more likely to be a frog", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "birds twitter and chirp and clatter"], "sample_ids": ["vJvryTwuAV8", "yeFvk9x0wWI"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "chirp, twitter, clatter"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "birds chirp in the background as a car drives by "], "question": "which entity is more quiet", "label": 1}, {"captions": ["some people speak", "a car speeding up in the distance"], "sample_ids": ["vbZ-0lGPneg", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "distance, car, speed"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a man speaks as a motor runs in the background"], "sample_ids": ["uWPRNLnpy7Y", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "background, motor, run"], "captions_pred_video": ["is taken from a car driving down the street", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a person speaks over rustling leaves", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zOZleIRqZm4", "w5W5Kqtc8E"], "start_seconds": ["80", "100"], "properties": ["rustling, leaves, person", "wind, blow, vehicle"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "an airplane flies overhead as a woman speaks"], "sample_ids": ["yPUYU6t3rwo", "zj2R0XoFr5k"], "start_seconds": ["370", "50"], "properties": ["birds chirp, objects are moved around, birds", "airplane, fly, overhead"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["insects buzz and a man speaks", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving around", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "waves crash against a shoreline and people speak"], "sample_ids": ["sa6TLVbooCc", "yFB25fqfU8I"], "start_seconds": ["240", "300"], "properties": ["people, laugh, child", "wave, crash, shoreline"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "birds chirp and objects are moved around"], "sample_ids": ["vzxHnu-SFEw", "yPUYU6t3rwo"], "start_seconds": ["80", "370"], "properties": ["two objects, woman, speak", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["water flows and trickles", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tB7hWb9gTuQ", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["water, flow, trickle", "loud, multiple, distance"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", null], "captions_pred_audio": ["water is splashing and gurgling", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "several insects fly while two men talk"], "sample_ids": ["vmrxwuAMb2I", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["a dog, inhales, exhales", "several, fly, men"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a still image?", "label": 0}, {"captions": ["someone whistles a tune", "a stream of water runs briefly"], "sample_ids": ["sIXTftIuUgw", "x-PeY8Yb8M4"], "start_seconds": ["90", "300"], "properties": ["someone, tune, whistle", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person whistling a song", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["someone is burping continuously", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["y636gklDioE", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "male, duck, laugh"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking and ducks are quacking"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["smDKStoHBJo", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["a, talk, baby, cry", "rooster, crow, background, men"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "wind blowing followed by a zoom"], "sample_ids": ["slZLHwNbbt4", "vr8ZXjEBhMQ"], "start_seconds": ["300", "150"], "properties": ["a, horn, run", "wind, blow, zoom"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom of", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sa6TLVbooCc", "y8WEcpOlT3I"], "start_seconds": ["240", "40"], "properties": ["people, laugh, child", "harsh, wind, blows"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "water pouring and bubbling"], "sample_ids": ["wRBHTgrbiwg", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["bird, owl, speak", "water, bubbles, pouring"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uWPRNLnpy7Y", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["accelerate, laugh, vehicle", "female, spraying, scream"], "captions_pred_video": ["is taken from a car driving down the street", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uRlbY6aoBU", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["a, distance, sneeze", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 0}, {"captions": ["someone snores nearby", "people speak as gunfire rings out"], "sample_ids": ["spJCm8tD9Zo", "wqTCwqVRDlk"], "start_seconds": ["90", "80"], "properties": ["someone snores, nearby, someone", "gunfire, ring, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["motors runs briefly and tires screech", "water runs into a sink while men speak"], "sample_ids": ["yRx9txMcBl0", "vzceMbklWc"], "start_seconds": ["40", "180"], "properties": ["motors, tires, screech", "water, sink, run"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "water is running and a man is speaking"], "question": "which entity is a video of a sink?", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y682ml90jGw", "sSMl2vc3ek"], "start_seconds": ["11", "20"], "properties": ["beeps, series, electronic", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wAAkbZToh8", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["burp, laugh, speak", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man burps and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a person speaking and laughing?", "label": 0}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["y2bVZ7rz-5M", "zl9Dqx-j7q4"], "start_seconds": ["280", "6"], "properties": ["engine, horn, siren", "engine, laugh, loud"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a jet engine roars "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["motors rev and run loudly as a person laughs", "water is sprayed across a hard surface"], "sample_ids": ["zl9Dqx-j7q4", "sQwlkXjQabo"], "start_seconds": ["6", "10"], "properties": ["motors rev, laugh, loudly", "water, spray, surface"], "captions_pred_video": ["footage of a man driving a car in the dark", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a jet engine roars ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "an insect buzzes around continuously"], "sample_ids": ["zj2R0XoFr5k", "v25l1jef3JY"], "start_seconds": ["50", "0"], "properties": ["airplane, fly, overhead", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a fly is buzzing around a microphone "], "question": "which entity is flying", "label": 0}, {"captions": ["a baby cries and a woman speaks", "some men converse over an engine running"], "sample_ids": ["tMbMDvT50j8", "sCiy7QS1U"], "start_seconds": ["12", "300"], "properties": ["a, cry, woman", "men, converse, engine"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a baby?", "label": 0}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["wy1eKjR7KC0", "w6RTHR6AeAg"], "start_seconds": ["30", "40"], "properties": ["people, talk, distance", "call, owl, screech"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "an owl hoots and mechanisms operate "], "question": "which entity is a bird?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["uJV8NDaHqqk", "uZesmtKZGSw"], "start_seconds": ["100", "250"], "properties": ["loud, fly, chirp", "men, talk, cars"], "captions_pred_video": ["a bee hive in a wooden box", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet flushes and water drains", "an infant crying as a woman laughs"], "sample_ids": ["sfAvvZwdLCY", "xhmRY9yhC7c"], "start_seconds": ["20", "20"], "properties": ["water drains, flushes, water", "a, laugh, infant"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a toilet is flushed", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a heavy rain falls endlessly", "someone whistles a tune"], "sample_ids": ["wP8ZKrlx3oA", "sIXTftIuUgw"], "start_seconds": ["40", "90"], "properties": ["heavy, rain, fall", "someone, tune, whistle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["a person sneezes followed by another person speaking", "pigeons vocalize and birds chirp"], "sample_ids": ["t8CV69hcvF0", "uiS58TNyUiw"], "start_seconds": ["210", "430"], "properties": ["person, sneeze, follow", "vocalize, bird, chirp"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "of the pigeon in the cage"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "multiple people speak and children yell while water gurgles"], "sample_ids": ["t25U-v4k4ts", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["bees buzz, birds chirp, man speaks", "multiple, people, yell"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man is filing a hard object", "some men converse over an engine running"], "sample_ids": ["vveS8HT7Uog", "sCiy7QS1U"], "start_seconds": ["100", "300"], "properties": ["a man, hard, object", "men, converse, engine"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which object is harder to file", "label": 0}, {"captions": ["water splashes and wind noise is made into a microphone", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sDSppXIlJrs", "w5W5Kqtc8E"], "start_seconds": ["27", "100"], "properties": ["microphone, water, wind", "wind, blow, vehicle"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", null], "captions_pred_audio": ["the wind is blowing and water is splashing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a man speaks as horns blow", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["tHyNqRyK34A", "s7knHCFW82w"], "start_seconds": ["24", "30"], "properties": ["a, man, speaks", "blow horn, get close, train"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is about a train blowing its horn?", "label": 1}, {"captions": ["a car accelerates and wind blows", "people applaud and hoot and chat quietly"], "sample_ids": ["u0TrcHhkPQ", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["accelerates, wind, blows", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be at a concert", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a infant makes noise and is excited"], "sample_ids": ["zY3icUyMdh8", "wIJK3-5y0kA"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "noise, excited, infant"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "water splashes as an animal walks through"], "sample_ids": ["xzKKf9bKNUo", "w1ir-sZ3Im8"], "start_seconds": ["10", "90"], "properties": ["background, noise, snoring", "animal, water, splashes"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a person snoring loudly", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zOZleIRqZm4", "xBxDz0CFVn0"], "start_seconds": ["80", "30"], "properties": ["rustling, leaves, person", "stream, water, flow"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zofjfKhqLk8", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and a dog is whimpering"], "question": "which entity is a television program?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["v0x1odnXtP0", "tDVADusiIoc"], "start_seconds": ["210", "60"], "properties": ["keyboard, type, computer", "water, radio, man"], "captions_pred_video": ["how to make money on youtube in spanish", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person?", "label": 0}, {"captions": ["some men converse over an engine running", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sCiy7QS1U", "sSMl2vc3ek"], "start_seconds": ["300", "20"], "properties": ["men, converse, engine", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a person snoring loudly"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zdYdyF9-m8U", "xKB8O8LTs6s"], "start_seconds": ["7", "70"], "properties": ["wind, crash, shoreline", "music, gunfire, explosion"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["waves crash and wind blows ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["people speak as gunfire rings out", "a stream of water runs briefly"], "sample_ids": ["wqTCwqVRDlk", "x-PeY8Yb8M4"], "start_seconds": ["80", "300"], "properties": ["gunfire, ring, speak", "stream, water, run"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "paper is crumpling consistently"], "sample_ids": ["yYJksgsxx5U", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["audio, woman, silverware", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "people speak as gunfire rings out"], "sample_ids": ["uPDn2BFTHk", "wqTCwqVRDlk"], "start_seconds": ["140", "80"], "properties": ["lady, laugh, baby", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["yDoT73BWsdA", "siJFXfGWgDk"], "start_seconds": ["10", "50"], "properties": ["engine revs, tires squeal, vehicle", "man, woman, vehicle"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and birds are chirping in the background "], "question": "which entity is a video of a vehicle?", "label": 0}, {"captions": ["water pouring and bubbling", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uyRfq-jKPpo", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["water, bubbles, pouring", "a woman, a television program, a bird"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["water is running from a faucet", "a woman is speaking and a dog is whimpering"], "question": "which entity is a video of a television program?", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "water pouring and bubbling"], "sample_ids": ["w9lpbUn0hPc", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["male, wind, rustling", "water, bubbles, pouring"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "some men converse over an engine running"], "sample_ids": ["uYT5gxnyMWM", "sCiy7QS1U"], "start_seconds": ["50", "300"], "properties": ["a, scream, girl", "men, converse, engine"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a girl speaking followed by a scream and more girls talking?", "label": 0}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zgUgkpk78xU", "tDVADusiIoc"], "start_seconds": ["70", "60"], "properties": ["horn, bell, train", "water, radio, man"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wIJK3-5y0kA", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["a, cry, baby", "airplane, boy, fly"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["se87d6yxEOA", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["run, whistle, pass", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a train blows its whistle and blows its horn "], "question": "which train whistle is continuous", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zVacuqSb4LI", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["blares, fades, train", "airplane, boy, fly"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sapQIQUhFc", "vb1fPSDI4c"], "start_seconds": ["280", "30"], "properties": ["water, stream, trickles", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a toilet flushes and a female speaks"], "sample_ids": ["vddP56-ogds", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["liquid, laughs, man", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uiS58TNyUiw", "sSMl2vc3ek"], "start_seconds": ["430", "20"], "properties": ["audio, man, speaking", "loud, multiple, distance"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["y2bVZ7rz-5M", "w34HjHr6gAY"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "beeps, hit, woman"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "an infant crying frantically"], "sample_ids": ["uYT5gxnyMWM", "zwOBqeFTgiU"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "cry, infant, frantically"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["someone snores nearby", "three men talk while wind blows and some liquid flows"], "sample_ids": ["spJCm8tD9Zo", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["someone snores, nearby, someone", "three men, wind, flow"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["u--KhUW8l1Y", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "a woman, a television program, a bird"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a still image?", "label": 0}, {"captions": ["a door opens and birds chirp", "pigeons vocalize and birds chirp"], "sample_ids": ["yeFvk9x0wWI", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["door, open, birds", "vocalize, bird, chirp"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of the pigeon in the cage"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an airplane accelerates briefly", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["zjTG0gaGCUI", "vddP56-ogds"], "start_seconds": ["80", "30"], "properties": ["accelerates, airplane, briefly", "liquid, laughs, man"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "water is running and gurgling and a man is speaking"], "question": "which entity is a video of a man talking?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["xZepNM9qcRA", "rqu8iB22IY"], "start_seconds": ["30", "5"], "properties": ["background, motor, run", "sound, repeats, laugh"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a dog barks and a man speaks while music plays "], "question": "which entity has a motor running in the background?", "label": 0}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a toilet flushes and a female speaks"], "sample_ids": ["xKB8O8LTs6s", "yaln9y8I7ms"], "start_seconds": ["70", "230"], "properties": ["music, gunfire, explosion", "female, flushes, toilet"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage is blurry and out of focus"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a toilet flushes and a man speaks"], "question": "which entity is more likely to be in a movie", "label": 0}, {"captions": ["a girl speaks followed by a scream and more girls talking", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uYT5gxnyMWM", "w34HjHr6gAY"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "beeps, hit, woman"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xhmRY9yhC7c", "wqZ135Ssz0"], "start_seconds": ["20", "60"], "properties": ["a, laugh, infant", "two men, woman, birds"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a vehicle engine runs as a siren and horn sound", "water pouring and bubbling"], "sample_ids": ["u--KhUW8l1Y", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["sound, vehicle, horn", "water, bubbles, pouring"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wqUmIEzuNz4", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["frog, bird, vocalize", "animal, grunts, chirps"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a cat meows and rustles", "birds are chirping and a rooster is crowing "], "question": "which entity is a frog", "label": 0}, {"captions": ["a cat meows and children speak", "people speak as gunfire rings out"], "sample_ids": ["x5cuQjOdM3E", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["cat, speak, children", "gunfire, ring, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a toilet door squeaks as it is opened", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sdXV-ylviw", "zj2R0XoFr5k"], "start_seconds": ["190", "50"], "properties": ["door, toilet, squeaks", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a moving object", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "birds chirp and objects are moved around"], "sample_ids": ["wqZ135Ssz0", "yPUYU6t3rwo"], "start_seconds": ["60", "370"], "properties": ["man, woman, squawks", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["s59PfAghdkM", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["bird, chirp, background, horse, neigh", "loud, laughter, intermittent"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds vocalize and a man speaks", "wind blowing followed by a zoom"], "sample_ids": ["v0wPrLBI3hg", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["vocalize, bird, speak", "wind, blow, zoom"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a train horn sounds as it passes by", "winds blows roughly as a vehicle races past"], "sample_ids": ["ukg5L09Wpvo", "xjvTpk2Zpr8"], "start_seconds": ["150", "70"], "properties": ["sound, train, horn", "wind, blows, vehicle"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a drill drills through something then people begin laughing", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tEE3MpBt1sg", "vYkA3cfXp5Q"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "engine, accelerate, idle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "an engine is idling"], "question": "which is a vehicle", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a child speaks in closed space"], "sample_ids": ["sNB8zxXneIM", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["several, quack, cocks", "child, space, speak"], "captions_pred_video": ["a group of geese in a cage", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "pigeons vocalize and birds chirp"], "sample_ids": ["tIY7qOV3rEM", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "vocalize, bird, chirp"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of the pigeon in the cage"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking and a bee is buzzing"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tQWGZLItBXk", "tiDFTC-5vU"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "male, duck, laugh"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "wind blowing followed by a zoom"], "sample_ids": ["xjvTpk2Zpr8", "vr8ZXjEBhMQ"], "start_seconds": ["70", "150"], "properties": ["wind, blows, vehicle", "wind, blow, zoom"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a jet engine roars and wind blows ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tgbONvsP47Y", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["noise, truck, accelerate", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tiDFTC-5vU", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a woman is speaking and a dog is whimpering"], "question": "which entity has a duck quacking?", "label": 0}, {"captions": ["an aircraft engine runs as wind blows heavily", "an engine runs loudly"], "sample_ids": ["xjvTpk2Zpr8", "vqZuVbG6-HI"], "start_seconds": ["70", "130"], "properties": ["engine, run, wind", "loud, engine, run"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a lawn mower is running and men are speaking "], "question": "which entity is running", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a car speeding up in the distance"], "sample_ids": ["xMXvkIcaG0Y", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["sound, humming, rattling", "distance, car, speed"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", null], "captions_pred_audio": ["an engine is revving and accelerating ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "an infant crying as a woman laughs"], "sample_ids": ["sZPuqDgX2V0", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["commentator, race, track", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vbr9mHKc8WM", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["an engine is idling", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is quieter", "label": 0}, {"captions": ["an engine runs and a man speaks", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["yT5WfYMRr-U", "vddP56-ogds"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "liquid, laughs, man"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "water is running and gurgling and a man is speaking"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["speaking following by laughing and clapping", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u2f5NpsoHBg", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["person, laugh, clap", "airplane, boy, fly"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a car speeds away loudly followed by a car revving loudly and driving away while outside"], "sample_ids": ["x5cuQjOdM3E", "sjlVMgdGSK0"], "start_seconds": ["30", "30"], "properties": ["cat, talk, meow", "car, revving, loudly"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a cat meows and a woman speaks", "a car accelerates and revs its engine "], "question": "which entity is louder", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a speedboat passes quickly on the water"], "sample_ids": ["zkKdxzNC97Y", "tjmoSi330GM"], "start_seconds": ["27", "23"], "properties": ["hard, surface, door", "speed, water, boat"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a door is opened and closed", "a motorboat speeds through water with wind noise "], "question": "which object is moving on a hard surface", "label": 0}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a duck quacks continuously"], "sample_ids": ["zALy31PjDl0", "vh30P49Po6s"], "start_seconds": ["21", "30"], "properties": ["a man, a vehicle, a horn", "quacks, continuously, duck"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a man speaks as bees buzz and birds chirp"], "sample_ids": ["smDKStoHBJo", "t25U-v4k4ts"], "start_seconds": ["0", "40"], "properties": ["a, talk, baby, cry", "bees buzz, birds chirp, man speaks"], "captions_pred_video": ["a man holding a crying baby in his arms", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and bees are buzzing"], "question": "which entity has a baby?", "label": 0}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "some tunes played by whistling"], "sample_ids": ["xjhAnI2q6hM", "u6BnG6YZqJ4"], "start_seconds": ["6", "0"], "properties": ["wind, blow, loudly", "tune, play, whistling"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["scraping and female speech with distant music", "a cat meows and children speak"], "sample_ids": ["yHeVV-xeOxQ", "x5cuQjOdM3E"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "cat, speak, children"], "captions_pred_video": ["of a girl milking a goat's udder", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a cat meows and a woman speaks"], "question": "which entity is more likely to be a cat", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "wind blows as people chatter quietly"], "sample_ids": ["yZmhM1HcsyE", "xBxDz0CFVn0"], "start_seconds": ["4", "30"], "properties": ["engine, roar, water", "wind, chatter, people"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage is blurry and out of focus"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an airplane accelerates briefly", "pigeons vocalize and birds chirp"], "sample_ids": ["zjTG0gaGCUI", "uiS58TNyUiw"], "start_seconds": ["80", "430"], "properties": ["accelerates, airplane, briefly", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a infant makes noise and is excited"], "sample_ids": ["slZLHwNbbt4", "wIJK3-5y0kA"], "start_seconds": ["300", "30"], "properties": ["a, horn, run", "noise, excited, infant"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vbpKkWvfOu4", "zl9Dqx-j7q4"], "start_seconds": ["560", "6"], "properties": ["a, man, speaks", "engine, laugh, loud"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a dark barks and whimpers"], "sample_ids": ["un9VQlzgZM", "sYj4hpDUZDQ"], "start_seconds": ["5", "30"], "properties": ["females, talk, laugh", "barks, whimpers, dark"], "captions_pred_video": [null, "a brown and white dog standing in front of a wall with its mouth open"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a dog barks and a cat meows"], "question": "which entity is a dog", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a car speeding up in the distance"], "sample_ids": ["sNB8zxXneIM", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["several, quack, cocks", "distance, car, speed"], "captions_pred_video": ["a group of geese in a cage", null], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["an airplane engine spools and people speak", "a woman speaks as she rubs two objects together"], "sample_ids": ["wTjoRj1se3U", "vzxHnu-SFEw"], "start_seconds": ["390", "80"], "properties": ["airplane, engine, spool", "two objects, woman, speak"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a jet engine is running and people are talking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["a man talks while a clock does ticktock", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["spYNpeN7rPY", "tdWhHV3X25Q"], "start_seconds": ["1", "60"], "properties": ["a clock, ticktock, man", "applause, audience, yells"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "white noise and snoring with some rustling in the background"], "sample_ids": ["wztCSUxOf8", "xzKKf9bKNUo"], "start_seconds": ["130", "10"], "properties": ["a crowd, yells, applauds", "background, noise, snoring"], "captions_pred_video": [null, "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a person snoring loudly"], "question": "which entity is more quiet", "label": 1}, {"captions": ["some tunes played by whistling", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u6BnG6YZqJ4", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["tune, play, whistling", "airplane, boy, fly"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person whistling a song", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "some men converse over an engine running"], "sample_ids": ["uPDn2BFTHk", "sCiy7QS1U"], "start_seconds": ["140", "300"], "properties": ["lady, laugh, baby", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a baby?", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wAAkbZToh8", "y8WEcpOlT3I"], "start_seconds": ["0", "40"], "properties": ["burp, laugh, speak", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man burps and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is about a person speaking and laughing?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["uRExseg-0XI", "ugHJF0hfYkg"], "start_seconds": ["210", "10"], "properties": ["woman, man, water", "loud, intense, propeller"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a helicopter is flying overhead "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xSKJGCItUWE", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["engine, work, child", "wind, blow, vehicle"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["xhmRY9yhC7c", "rqu8iB22IY"], "start_seconds": ["20", "5"], "properties": ["a, laugh, infant", "sound, repeats, laugh"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a dog barks and a man speaks while music plays "], "question": "which entity has a woman laugh?", "label": 0}, {"captions": ["a large crowd cheers and applauds", "a man speaks as a machine runs"], "sample_ids": ["rqfQRErjfk8", "vD6lYD1l0BY"], "start_seconds": ["170", "330"], "properties": ["crowd, cheers, applauds", "a, machine, run"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "game controller being held in the hands of the person"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a man is speaking and dishes are being washed "], "question": "which entity is a machine", "label": 1}, {"captions": ["water splashes and a door squeaks", "a man speaks over intermittent keyboard taps"], "sample_ids": ["sdXV-ylviw", "tw76HGONaKg"], "start_seconds": ["190", "570"], "properties": ["sound, splash, door", "audio, man, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man speaks and types on a computer keyboard "], "question": "which entity has a door?", "label": 0}, {"captions": ["a guy sneezes followed by another guy speaking and whistling and then a pigeon coos", "birds chirp and animals vocalize"], "sample_ids": ["vhIcOufIwo4", "sxIvBMSavMQ"], "start_seconds": ["30", "210"], "properties": ["sneeze, speaking, pigeon", "vocalize, chirp, animal"], "captions_pred_video": ["footage of a pigeon in a cage", "beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a"], "captions_pred_audio": ["a man is speaking and pigeons are cooing", "birds are chirping and insects are buzzing"], "question": "which entity is about animals vocalizing?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "an airplane engine spools and people speak"], "sample_ids": ["s3cTDAj31g", "wTjoRj1se3U"], "start_seconds": ["80", "390"], "properties": ["man, talk, woman", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a jet engine is running and people are talking"], "question": "which entity is a video of a man talking and a woman shouting?", "label": 0}, {"captions": ["a male speaks over some small clicks", "a bird is chirping and tweeting a bird song"], "sample_ids": ["uXxVebHsGZ8", "wPz6QRAkEb4"], "start_seconds": ["30", "60"], "properties": ["male, clicks, speak", "chirps, tweets, song"], "captions_pred_video": [null, "a bird in a cage on top of a pole"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "birds are chirping in the background "], "question": "which entity is a bird", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "dishes cling together then a man begins to speak"], "sample_ids": ["y8WEcpOlT3I", "sQGXqGcwOTc"], "start_seconds": ["40", "3"], "properties": ["wind, speak, buffeting", "cling, speak, dishes"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about speaking?", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uEU-Hg5MTN8", "sSMl2vc3ek"], "start_seconds": ["27", "20"], "properties": ["a woman, laughs, animal", "loud, multiple, distance"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a kid speaks followed by music playing", "an insect buzzes around continuously"], "sample_ids": ["tQWGZLItBXk", "v25l1jef3JY"], "start_seconds": ["170", "0"], "properties": ["music, kid, speak", "buzzes, continuously, insect"], "captions_pred_video": ["worms revolution screenshots", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a man speaks as a car is passing by"], "sample_ids": ["sZPuqDgX2V0", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["commentator, race, track", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a race", "label": 1}, {"captions": ["someone is snoring while sleeping", "a person snores loudly multiple times at a close distance"], "sample_ids": ["ujMt0-D-x2k", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["snore, sleep, someone", "loud, multiple, distance"], "captions_pred_video": ["of the dog playing with a toy on the floor", null], "captions_pred_audio": ["a person is snoring loudly", "a person snoring loudly"], "question": "which entity is snoring while sleeping", "label": 0}, {"captions": ["an airplane engine roars increasingly louder", "a clock ticktocks"], "sample_ids": ["vBslzh7saPw", "v-g-j2uTByM"], "start_seconds": ["90", "30"], "properties": ["engine, roar, louder", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "some tunes played by whistling"], "sample_ids": ["vs65y4qmyBE", "u6BnG6YZqJ4"], "start_seconds": ["340", "0"], "properties": ["engine, run, man", "tune, play, whistling"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "a car speeding up in the distance"], "sample_ids": ["vz8868znkVQ", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["audio, click, kid speaking", "distance, car, speed"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", null], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a man speaks as a motor runs in the background"], "sample_ids": ["tDlysoZiA1I", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["animal, grunts, chirps", "background, motor, run"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "vehicles pass by on a roadway"], "sample_ids": ["wvKpEYswXO0", "tgbONvsP47Y"], "start_seconds": ["150", "0"], "properties": ["water, tap, run", "pass, vehicle, roadway"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sSMl2vc3ek", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["a person, laughs, snores", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["xfudFO976zE", "zY3icUyMdh8"], "start_seconds": ["0", "20"], "properties": ["animal, bleats, cry", "dog, bark, engine"], "captions_pred_video": ["footage is blurry and shaky", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a car is driving and dogs are barking and squealing "], "question": "which entity is more active", "label": 1}, {"captions": ["a dog barks and whimpers", "a car speeding up in the distance"], "sample_ids": ["sShpyu2l4YQ", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["barks, whimpers, dog", "distance, car, speed"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a piece of wood is being placed down and sawed"], "sample_ids": ["tQWGZLItBXk", "uiItxDsDMFI"], "start_seconds": ["170", "30"], "properties": ["music, person, ding", "wood, piece, saw"], "captions_pred_video": ["worms revolution screenshots", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a saw is being used with background noise "], "question": "which entity is about a person speaking?", "label": 0}, {"captions": ["a small engine spits as it runs", "small dogs yip and bark sharply"], "sample_ids": ["sZvwOuuPGP0", "v-wcQf4BDY0"], "start_seconds": ["50", "120"], "properties": ["spits, engine, runs", "bark, yip, sharply"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a medium engine is running ", "a dog barks and growls"], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["a person is snoring while sleeping", "people speak as gunfire rings out"], "sample_ids": ["vJrjSeP17yE", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["a person is sleeping, snoring, person", "gunfire, ring, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a motorcycle idles loudly as wind blows", "water splashes as an animal walks through"], "sample_ids": ["v7jJS8aAyA", "w1ir-sZ3Im8"], "start_seconds": ["10", "90"], "properties": ["wind, blows, loudly", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "water flows and trickles"], "sample_ids": ["vqZuVbG6-HI", "tB7hWb9gTuQ"], "start_seconds": ["130", "30"], "properties": ["background, male, female", "water, flow, trickle"], "captions_pred_video": ["footage is blurry because it's raining outside", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "water is splashing and gurgling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a train horn blows as it passes by"], "sample_ids": ["sSMl2vc3ek", "zVacuqSb4LI"], "start_seconds": ["20", "30"], "properties": ["a person, laughs, snores", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a person snoring loudly", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "motors rev and run loudly as a person laughs"], "sample_ids": ["vqZuVbG6-HI", "zl9Dqx-j7q4"], "start_seconds": ["130", "6"], "properties": ["background, male, female", "motors rev, laugh, loudly"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "wind blowing followed by a zoom"], "sample_ids": ["zl9Dqx-j7q4", "vr8ZXjEBhMQ"], "start_seconds": ["6", "150"], "properties": ["engine, laugh, loud", "wind, blow, zoom"], "captions_pred_video": ["footage of a man driving a car in the dark", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a jet engine roars ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a woman speaks as she rubs two objects together"], "sample_ids": ["vGj1XLJvNrw", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["wails, wails, pass", "two objects, woman, speak"], "captions_pred_video": ["footage of a police car driving down a city street", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is silent", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "small dogs yip and bark sharply"], "sample_ids": ["tDlysoZiA1I", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["animal, grunts, chirps", "bark, yip, sharply"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a car accelerates and wind blows"], "sample_ids": ["tPJvjq9QePY", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["animal, bleat, moo", "accelerates, wind, blows"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks with water running", "several insects fly while two men talk"], "sample_ids": ["wTideSjRFS0", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["water, running, woman", "several, fly, men"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "birds chirp and objects are moved around"], "sample_ids": ["sapQIQUhFc", "yPUYU6t3rwo"], "start_seconds": ["280", "370"], "properties": ["water, trickles, flow", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a machine runs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vD6lYD1l0BY", "su6FAOcOA8c"], "start_seconds": ["330", "4"], "properties": ["a, machine, run", "engine, idle, woman"], "captions_pred_video": ["game controller being held in the hands of the person", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a clock ticktocks"], "sample_ids": ["uKCSGgof8gI", "v-g-j2uTByM"], "start_seconds": ["12", "30"], "properties": ["chirps, distance, signal", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vuUVPzd2FXw", "tdWhHV3X25Q"], "start_seconds": ["160", "60"], "properties": ["a, steam, release", "applause, audience, yells"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zofjfKhqLk8", "su6FAOcOA8c"], "start_seconds": ["10", "4"], "properties": ["background, metal, clings", "engine, idle, woman"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "water splashes as an animal walks through"], "sample_ids": ["voJh2gJxXhA", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["music, frog, croak", "animal, water, splashes"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["music is playing and crickets are chirping ", "water splashes and gurgles as people speak"], "question": "which entity is about a frog?", "label": 0}, {"captions": ["a drill runs and two people laugh", "a man speaks as a motor runs in the background"], "sample_ids": ["tEE3MpBt1sg", "xZepNM9qcRA"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "background, motor, run"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["people clap and speak in the distance", "a speedboat passes quickly on the water"], "sample_ids": ["wwyfGO2J4", "tjmoSi330GM"], "start_seconds": ["90", "23"], "properties": ["clap, distance, speak", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["siJFXfGWgDk", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["a, bird, vehicle", "a woman, something, fried"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["multiple birds vocalize and wind blows", "vehicles pass by on a roadway"], "sample_ids": ["uoGVs9yUqY4", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["multiple, vocalize, wind", "pass, vehicle, roadway"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tQWGZLItBXk", "tDVADusiIoc"], "start_seconds": ["170", "60"], "properties": ["music, person, ding", "water, radio, man"], "captions_pred_video": ["worms revolution screenshots", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["vBslzh7saPw", "uWPRNLnpy7Y"], "start_seconds": ["90", "10"], "properties": ["power, scream, increase", "accelerate, laugh, vehicle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "is taken from a car driving down the street"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xjvTpk2Zpr8", "uZesmtKZGSw"], "start_seconds": ["70", "250"], "properties": ["wind, blows, vehicle", "men, talk, cars"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a man speaks as a machine runs"], "sample_ids": ["wfHeoPDLMaM", "vD6lYD1l0BY"], "start_seconds": ["30", "330"], "properties": ["quacking, squawking, ducks", "a, machine, run"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "game controller being held in the hands of the person"], "captions_pred_audio": ["ducks are quacking", "a man is speaking and dishes are being washed "], "question": "which entity is not a person?", "label": 0}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a vehicle engine accelerating then running on idle"], "sample_ids": ["rwtmaKiCcQU", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["nozzle, depressed, spray can", "engine, accelerate, idle"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["spraying and people speaking", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["birds fly and flutter around", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wGKgwOP3h30", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["fly, flutter, around", "engine, accelerate, idle"], "captions_pred_video": ["of the pigeons in the coop", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["pigeons coo and flap their wings", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["electronic beeps occur in a short series", "water running down a sink while a man is talking"], "sample_ids": ["y682ml90jGw", "vSeGhaZt-aI"], "start_seconds": ["11", "50"], "properties": ["beeps, series, electronic", "water, sink, talk"], "captions_pred_video": [null, "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a man speaks followed by another man speaking outside"], "sample_ids": ["wwyfGO2J4", "viuTg1M-dqg"], "start_seconds": ["90", "30"], "properties": ["people, applaud, hoot", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a baby cries and a woman moans", "an insect buzzes around continuously"], "sample_ids": ["smDKStoHBJo", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["a, cry, woman", "buzzes, continuously, insect"], "captions_pred_video": ["a man holding a crying baby in his arms", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["skd2PphS6oI", "tDlysoZiA1I"], "start_seconds": ["190", "0"], "properties": ["ring, bird, vocalize", "animal, grunts, chirps"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "birds are chirping and a rooster is crowing "], "question": "which entity has a bird vocalize?", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "someone is typing on a computer keyboard"], "sample_ids": ["ylpYOorfH4o", "v0x1odnXtP0"], "start_seconds": ["410", "210"], "properties": ["engine, run, loud", "keyboard, type, computer"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vfYTJq7nU", "yajyRTUQk3U"], "start_seconds": ["130", "400"], "properties": ["ducks, quack, man", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a toilet door squeaks as it is opened"], "sample_ids": ["sShpyu2l4YQ", "sdXV-ylviw"], "start_seconds": ["0", "190"], "properties": ["growl, bark, yip", "door, toilet, squeaks"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sU53zg9Jp7s", "uZesmtKZGSw"], "start_seconds": ["380", "250"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "men, talk, cars"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["several ducks quack and cocks crow far away", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sNB8zxXneIM", "tDVADusiIoc"], "start_seconds": ["20", "60"], "properties": ["several, quack, cocks", "water, radio, man"], "captions_pred_video": ["a group of geese in a cage", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "tapping occurs then a baby cries"], "sample_ids": ["x5cuQjOdM3E", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["cat, meows, young woman", "a, cry, baby"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a cat meows and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["several insects fly while two men talk", "some men converse over an engine running"], "sample_ids": ["s-T9OVOiMLo", "sCiy7QS1U"], "start_seconds": ["330", "300"], "properties": ["several, fly, men", "men, converse, engine"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", null], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has more people", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wqZ135Ssz0", "sLUnaPT5gM8"], "start_seconds": ["60", "0"], "properties": ["two men, woman, birds", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wyllXV6PjKo", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["a kid, talk, cry", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a baby is crying"], "question": "which entity has a kid?", "label": 0}, {"captions": ["a clock ticktocks briefly", "a person is burping then speaks and laughs"], "sample_ids": ["u7C-AEBQM", "wAAkbZToh8"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, ticktocks briefly", "burp, laugh, speak"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a man burps and a woman speaks"], "question": "which entity is speaking?", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "several insects fly while two men talk"], "sample_ids": ["yajyRTUQk3U", "s-T9OVOiMLo"], "start_seconds": ["400", "330"], "properties": ["a woman, something, fried", "several, fly, men"], "captions_pred_video": ["- a woman cooking in the kitchen", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["an engine starts and increases in power", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zjTG0gaGCUI", "zFjIWfSD-4"], "start_seconds": ["80", "410"], "properties": ["power, increase, engine", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a motor?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xvDdE3zNf8Y", "wDVMhEdTiVw"], "start_seconds": ["120", "30"], "properties": ["a, female, speaks", "gun, shoot, water"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman speaks and crumples paper", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more violent", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "vehicles pass by on a roadway"], "sample_ids": ["wqZ135Ssz0", "tgbONvsP47Y"], "start_seconds": ["60", "0"], "properties": ["two men, woman, birds", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["a helicopter engine runs continuously", "vehicles pass by on a roadway"], "sample_ids": ["ugHJF0hfYkg", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["continuous sneezing together with speech", "wind blowing followed by a zoom"], "sample_ids": ["x4dZyf9Gbj0", "vr8ZXjEBhMQ"], "start_seconds": ["130", "150"], "properties": ["continuous, sneeze, speech", "wind, blow, zoom"], "captions_pred_video": ["footage is blurry and out of focus", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman sneezes and speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a door opens and closes", "several insects fly while two men talk"], "sample_ids": ["vBHyYJ8pL0", "s-T9OVOiMLo"], "start_seconds": ["2", "330"], "properties": ["open, close, door", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a museum", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vMf1dLD6Sng", "sLUnaPT5gM8"], "start_seconds": ["6", "0"], "properties": ["frog, bird, vocalize", "loud, laughter, intermittent"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a frog croaks loudly", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a female speaks softly as paper crinkles", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["xvDdE3zNf8Y", "tiDFTC-5vU"], "start_seconds": ["120", "30"], "properties": ["a, female, speaks", "male, duck, laugh"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and ducks are quacking"], "question": "which entity is more likely to be a person speaking?", "label": 0}, {"captions": ["frogs croak and vocalize", "wind blowing followed by a zoom"], "sample_ids": ["yswmmRZFItk", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["croak, vocalize, frog", "wind, blow, zoom"], "captions_pred_video": ["a close up of a frog in the water", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a frog is croaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "waves crash against a shoreline and people speak"], "sample_ids": ["w2JXXIAdUdg", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["snoring, distance, person", "wave, crash, shoreline"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "water is sprayed across a hard surface"], "sample_ids": ["sncRqQ67iJU", "sQwlkXjQabo"], "start_seconds": ["460", "10"], "properties": ["loud, repeatedly, man", "water, spray, surface"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a person is snoring", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vSeGhaZt-aI", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["water, sink, talk", "engine, laugh, loud"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "vehicles pass by on a roadway"], "sample_ids": ["ujMt0-D-x2k", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["snoring, rhythmical, nearby", "pass, vehicle, roadway"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person is snoring loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "paper is crumpling consistently"], "sample_ids": ["vBslzh7saPw", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["power, scream, increase", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a jet engine roars and accelerates ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a person is burping while a girl speaks"], "sample_ids": ["wz7N8YRy74I", "vdoxuJn9lTc"], "start_seconds": ["30", "40"], "properties": ["rooster, crow, background, people", "person, burp, girl"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a child speaks followed by a burp"], "question": "which entity is a person speaking to a rooster?", "label": 0}, {"captions": ["a flush is followed by gurgling water, then another flush", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tqR406bGiE", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["flush, water, gurgle", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a video of a toilet flushing?", "label": 0}, {"captions": ["birds tweet and squawk", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["w1mlz3Pe4fU", "xfaoyyzw2WU"], "start_seconds": ["300", "180"], "properties": ["squawk, tweet, scream", "loud, jet engine, roar"], "captions_pred_video": ["of a bird in a cage", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["birds are chirping and singing", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a man speaks as a car is passing by"], "sample_ids": ["uYT5gxnyMWM", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "a, car, pass"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "a woman speaks as she rubs two objects together"], "sample_ids": ["vBslzh7saPw", "vzxHnu-SFEw"], "start_seconds": ["90", "80"], "properties": ["engine, roar, louder", "two objects, woman, speak"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is silent", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a car speeding up in the distance"], "sample_ids": ["smDKStoHBJo", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["a, infant, speaking", "distance, car, speed"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uWPRNLnpy7Y", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["accelerate, laugh, vehicle", "airplane, boy, fly"], "captions_pred_video": ["is taken from a car driving down the street", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["vcmWSmvti8", "zY3icUyMdh8"], "start_seconds": ["30", "20"], "properties": ["music, man, fire", "dog, bark, engine"], "captions_pred_video": [null, "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a car is driving and dogs are barking and squealing "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w5W5Kqtc8E", "sSMl2vc3ek"], "start_seconds": ["100", "20"], "properties": ["wind, blow, vehicle", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["electronic beeps occur in a short series", "waves crash against a shoreline and people speak"], "sample_ids": ["y682ml90jGw", "yFB25fqfU8I"], "start_seconds": ["11", "300"], "properties": ["beeps, series, electronic", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["birds chirp and wind blows", "waves crash against a shoreline and people speak"], "sample_ids": ["sxIvBMSavMQ", "yFB25fqfU8I"], "start_seconds": ["210", "300"], "properties": ["birds, chirp, wind", "wave, crash, shoreline"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage of a person surfing in the ocean"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["slZLHwNbbt4", "vlS6YMeWAPo"], "start_seconds": ["300", "40"], "properties": ["clap, distance, horn", "sheep, baa, birds"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["uEU-Hg5MTN8", "vlJS7LN2XyM"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "background, clocks, ticking"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a ticktock of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a man speaks as a car is passing by"], "sample_ids": ["v5P-ThUCINM", "sK4u5T8hW78"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "an infant crying as a woman laughs"], "sample_ids": ["wjsXBsc7M40", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "a, laugh, infant"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is a video of a baby laughing?", "label": 0}, {"captions": ["a toilet flushes and water sputters as it drains", "a woman speaks as she rubs two objects together"], "sample_ids": ["smGI3C1NZc", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["water, drain, toilet", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a man speaks as a motor runs in the background"], "sample_ids": ["sapQIQUhFc", "xZepNM9qcRA"], "start_seconds": ["280", "30"], "properties": ["liquid, flow, distance", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a child yells and another yells", "an engine runs loudly"], "sample_ids": ["vMDHu7Lxcgw", "vqZuVbG6-HI"], "start_seconds": ["410", "130"], "properties": ["two, yell, child", "loud, engine, run"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sTpirNYo8vQ", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a, tone, fast", "a, scream, girl"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks as a motor runs in the background"], "sample_ids": ["sfAvvZwdLCY", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "background, motor, run"], "captions_pred_video": ["footage of the toilet in the bathroom", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["tapping occurs then a baby cries", "people speak as gunfire rings out"], "sample_ids": ["wIJK3-5y0kA", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["a, cry, baby", "gunfire, ring, speak"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a man talks while vehicles pass by", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sK4u5T8hW78", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["a, man, talk", "People, motor, brakes"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more people", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a frog vocalizes while birds chirp"], "sample_ids": ["wTideSjRFS0", "vMf1dLD6Sng"], "start_seconds": ["30", "6"], "properties": ["food, sizzle, woman", "frog, bird, vocalize"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a frog in a pond with pink flowers in the background"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a frog croaks loudly"], "question": "which entity is a frog?", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a propeller rotates loudly and intensely"], "sample_ids": ["xzKKf9bKNUo", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["background, noise, snoring", "loud, intense, propeller"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person snoring loudly", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wnpJndXuxLc", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["blows, vehicle, train", "water, radio, man"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a train?", "label": 0}, {"captions": ["some clanking with distant murmuring", "a man speaks with another voice speaking in the background"], "sample_ids": ["uMTTDZ2mb4", "u21-Z5gJCB8"], "start_seconds": ["30", "30"], "properties": ["clanking, murmuring, distant", "background, voice, man"], "captions_pred_video": [null, "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking with another voice speaking in the background?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["x5cuQjOdM3E", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["cat, meows, young woman", "rooster, crow, background, men"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more domesticated", "label": 0}, {"captions": ["a motor runs and stops, and animals squawk and croak", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["s4tUs779vBA", "w34HjHr6gAY"], "start_seconds": ["160", "30"], "properties": ["a, sound, stop", "beeps, hit, woman"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a baby cries and a woman moans"], "sample_ids": ["spJCm8tD9Zo", "smDKStoHBJo"], "start_seconds": ["90", "0"], "properties": ["snores, wheezes, sleeps", "a, cry, woman"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a person is snoring loudly", "a baby is crying and a woman is speaking"], "question": "which entity is a person", "label": 0}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a child speaks in closed space"], "sample_ids": ["ziUT9IFTkjg", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["background, birds, rustling", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "people cheer as a vehicle engine revs"], "sample_ids": ["sfAvvZwdLCY", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["flushes, drains, water", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the toilet in the bathroom", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a toilet is flushed", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a clang followed by a toilet flushing", "paper is crumpling consistently"], "sample_ids": ["wNZ5thZM7XU", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["sound, flush, toilet", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a toilet in a bathroom stall", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a toilet flushes", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "roadway noise occurs and a truck accelerates"], "sample_ids": ["vqZuVbG6-HI", "tgbONvsP47Y"], "start_seconds": ["130", "0"], "properties": ["background, male, female", "noise, truck, accelerate"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a car is driving on the road "], "question": "which entity is more quiet", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a man speaks as a motor runs in the background"], "sample_ids": ["sWZzXuWYY", "xZepNM9qcRA"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a telephone rings followed by a woman talking"], "sample_ids": ["wyllXV6PjKo", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["a kid, talk, cry", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a motorcycle engine works nearby", "an insect buzzes around continuously"], "sample_ids": ["tOSWIURC-4", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["engine, work, nearby", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a lawn mower is running ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["an airplane engine runs", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yVPZ2MNWpms", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "male, duck, laugh"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a clock ticktocks"], "sample_ids": ["y2bVZ7rz-5M", "v-g-j2uTByM"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "paper is crumpling consistently"], "sample_ids": ["sd7xVssqlw", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["accelerates, tires, squealing", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a child yells and another yells", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vMDHu7Lxcgw", "tdWhHV3X25Q"], "start_seconds": ["410", "60"], "properties": ["two, yell, child", "applause, audience, yells"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tgbONvsP47Y", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["pass, vehicle, roadway", "engine, idle, woman"], "captions_pred_video": ["footage of a fire truck entering a garage", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "water running down a sink while a man is talking"], "sample_ids": ["sZPuqDgX2V0", "vSeGhaZt-aI"], "start_seconds": ["30", "50"], "properties": ["commentator, race, track", "water, sink, talk"], "captions_pred_video": [null, "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of a race?", "label": 0}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a person is snoring while sleeping"], "sample_ids": ["uzQnlJXBbOM", "vJrjSeP17yE"], "start_seconds": ["50", "40"], "properties": ["ringing, beep, stop", "a person is sleeping, snoring, person"], "captions_pred_video": ["footage of a person using a cell phone on a table", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a telephone rings and a man speaks", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "females talk and laugh over gusting wind"], "sample_ids": ["tEE3MpBt1sg", "un9VQlzgZM"], "start_seconds": ["50", "5"], "properties": ["drill, something, laugh", "females, talk, laugh"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is about a drill?", "label": 0}, {"captions": ["water flows followed by women screaming", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["w5W5Kqtc8E", "vbZ-0lGPneg"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more calm", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "people speak as gunfire rings out"], "sample_ids": ["tDVADusiIoc", "wqTCwqVRDlk"], "start_seconds": ["60", "80"], "properties": ["wind, radio, waves", "gunfire, ring, speak"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "wind blows as people chatter quietly"], "sample_ids": ["vXlk0lIQBFo", "xBxDz0CFVn0"], "start_seconds": ["470", "30"], "properties": ["wind, speak, vocalize", "wind, chatter, people"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage is blurry and out of focus"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a stream of water runs briefly"], "sample_ids": ["yLy-WycbVVE", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["background, people, talk", "stream, water, run"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["yeFvk9x0wWI", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["clack, bird, chirp", "gun, shoot, water"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "water splashes as an animal walks through"], "sample_ids": ["zliInBdC98Y", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["a, baby, cries, wails", "animal, water, splashes"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby cries and a woman speaks", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["an audience gives applause", "a man speaks as crickets sing"], "sample_ids": ["x6iCUDmRpKQ", "ryFDPxgDOGc"], "start_seconds": ["38", "570"], "properties": ["applause, audience, give", "a, crickets, sing"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a group of people dressed in camouflage and hunting gear in the dark"], "captions_pred_audio": ["a group of people are clapping and cheering", "a man is speaking with crickets chirping in the background"], "question": "which is not a type of music", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["uWAAAL4CIoc", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["a woman, chirps, animal", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "birds are chirping and a rooster is crowing "], "question": "which entity has a woman speaking happily and an animal chirps?", "label": 0}, {"captions": ["people speak as gunfire rings out", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wqTCwqVRDlk", "xBxDz0CFVn0"], "start_seconds": ["80", "30"], "properties": ["gunfire, ring, speak", "stream, water, flow"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a person speaks briefly", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["zOZleIRqZm4", "w34HjHr6gAY"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "beeps, hit, woman"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a beep sounds followed by a child speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "people cheer as a vehicle engine revs"], "sample_ids": ["sQwlkXjQabo", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["liquid, surface, spray", "engine revs, vehicle, people"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["spraying followed by silence", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["someone is burping continuously", "a man speaks as a car is passing by"], "sample_ids": ["y636gklDioE", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "a, car, pass"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["continuous sneezing together with speech", "paper is crumpling consistently"], "sample_ids": ["x4dZyf9Gbj0", "v5cSxLaHADY"], "start_seconds": ["130", "0"], "properties": ["continuous, sneeze, speech", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and out of focus", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman sneezes and speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling consistently", "label": 1}, {"captions": ["food is frying then a woman speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["ukxt9I7eMMg", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "multiple, people, yell"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a clock ticktocks"], "sample_ids": ["uZesmtKZGSw", "v-g-j2uTByM"], "start_seconds": ["250", "30"], "properties": ["men, talk, cars", "ticktocks, clock, ticktocks"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "an airplane engine roars increasingly louder"], "sample_ids": ["wSVhSdj0F0", "vBslzh7saPw"], "start_seconds": ["10", "90"], "properties": ["beep, clang, footsteps", "engine, roar, louder"], "captions_pred_video": [null, "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a jet engine roars and accelerates "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "someone whistles a tune"], "sample_ids": ["w5W5Kqtc8E", "sIXTftIuUgw"], "start_seconds": ["100", "90"], "properties": ["wind, blow, vehicle", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a man speaks as a car is passing by"], "sample_ids": ["yRx9txMcBl0", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "a, car, pass"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a clock ticktocks continuously", "paper is crumpling consistently"], "sample_ids": ["vlJS7LN2XyM", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, ticktocks continuously", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a ticktock of a clock", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["tgbONvsP47Y", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["noise, truck, accelerate", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a car is driving on the road ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks while turning a water faucet on", "some men converse over an engine running"], "sample_ids": ["vf9xf3vMsGM", "sCiy7QS1U"], "start_seconds": ["540", "300"], "properties": ["A man speaks while turning a water faucet on.", "men, converse, engine"], "captions_pred_video": ["of the person washing their hands under the faucet", null], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "wind blows and people scream while an engine revs"], "sample_ids": ["s4Uz1Ffgo04", "w5W5Kqtc8E"], "start_seconds": ["100", "100"], "properties": ["water, rushes, motorcycle", "wind, engine, scream"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "waves crash against a shoreline and people speak"], "sample_ids": ["w5W5Kqtc8E", "yFB25fqfU8I"], "start_seconds": ["100", "300"], "properties": ["wind, engine, scream", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a telephone rings followed by a woman talking"], "sample_ids": ["xOZfdgAgJ9o", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["woman, whimpering, speaking", "ring, talk, woman"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a dial tone sounds followed by a woman speaking"], "question": "which woman is speaking", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wTideSjRFS0", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["food, sizzle, woman", "applause, audience, yells"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman sneezes then speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["x4dZyf9Gbj0", "sSMl2vc3ek"], "start_seconds": ["130", "20"], "properties": ["sneezes, speaks, woman", "loud, multiple, distance"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["someone snores nearby", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["spJCm8tD9Zo", "vbZ-0lGPneg"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a woman, a television program, a bird"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "people speak in the background as a clock ticktocks"], "sample_ids": ["slZLHwNbbt4", "vZAw4apG0Es"], "start_seconds": ["300", "30"], "properties": ["train, horn, sound", "background, clock, ticktocks"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a clock is ticking and people are talking"], "question": "which entity is a clock", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "people speak as gunfire rings out"], "sample_ids": ["uqFtmnhuqA8", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["a, b, c", "gunfire, ring, speak"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sK4u5T8hW78", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["a, car, pass", "airplane, boy, fly"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman speaks while a helicopter flies overhead "], "question": "which object is flying by", "label": 0}, {"captions": ["paper is repeatedly crumpled and crinkled", "water flows and trickles"], "sample_ids": ["vms5XGTDVQc", "tB7hWb9gTuQ"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "water, flow, trickle"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["paper is crumpled and crinkled", "water is splashing and gurgling"], "question": "which entity is flowing", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "winds blows roughly as a vehicle races past"], "sample_ids": ["tK4VlLsNxak", "xjvTpk2Zpr8"], "start_seconds": ["120", "70"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "wind, blows, vehicle"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "birds tweet and squawk"], "sample_ids": ["sLUnaPT5gM8", "w1mlz3Pe4fU"], "start_seconds": ["0", "300"], "properties": ["loud, laughter, intermittent", "squawk, tweet, scream"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of a bird in a cage"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "birds are chirping and singing"], "question": "which entity is a bird", "label": 1}, {"captions": ["food is frying then a woman speaks", "several insects fly while two men talk"], "sample_ids": ["ukxt9I7eMMg", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["food, woman, speak", "several, fly, men"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["low humming with a clock ticking and birds chirping", "a infant makes noise and is excited"], "sample_ids": ["yVumC9TGknc", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["humming, clock, birds", "noise, excited, infant"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a series of beeps and chirps", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vYkA3cfXp5Q", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["speed, idle, accelerate", "three men, wind, flow"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["an engine is idling", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more like a movie", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["t25U-v4k4ts", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["bees buzz, birds chirp, man speaks", "engine, laugh, loud"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a stream of water runs briefly"], "sample_ids": ["sxYkFKFIZD0", "x-PeY8Yb8M4"], "start_seconds": ["20", "300"], "properties": ["screech, man, door", "stream, water, run"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "people applaud and hoot and chat quietly"], "sample_ids": ["xfudFO976zE", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["animal, bleats, cry", "people, applaud, hoot"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "two men speak as a buffeting wind blows"], "sample_ids": ["vf9xf3vMsGM", "y8WEcpOlT3I"], "start_seconds": ["540", "40"], "properties": ["A man speaks while turning a water faucet on.", "wind, speak, buffeting"], "captions_pred_video": ["of the person washing their hands under the faucet", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man is speaking with wind noise in the background "], "question": "which entity is indoors", "label": 0}, {"captions": ["a male speaks and another male speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["viuTg1M-dqg", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "background, motor, run"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yJ0TePmaOo", "zl9Dqx-j7q4"], "start_seconds": ["390", "6"], "properties": ["two hard objects, man, speak", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wyllXV6PjKo", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["a baby, a woman, a man", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a baby?", "label": 0}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vuUVPzd2FXw", "yDoT73BWsdA"], "start_seconds": ["160", "10"], "properties": ["a, steam, release", "engine, revs, vehicle"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an infant crying as a woman laughs", "wind blows as people chatter quietly"], "sample_ids": ["xhmRY9yhC7c", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["a, laugh, infant", "wind, chatter, people"], "captions_pred_video": ["of a baby crying in a baby bouncer", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a cat meows and children speak", "an engine revs and a turning noise is made"], "sample_ids": ["x5cuQjOdM3E", "tOSWIURC-4"], "start_seconds": ["30", "0"], "properties": ["cat, speak, children", "noise, engine, revs"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a lawn mower is running "], "question": "which entity is making a noise", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a child speaks in closed space"], "sample_ids": ["sfAvvZwdLCY", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["flushes, drains, water", "child, space, speak"], "captions_pred_video": ["footage of the toilet in the bathroom", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a man speaks as a motor runs in the background"], "sample_ids": ["sDSppXIlJrs", "xZepNM9qcRA"], "start_seconds": ["27", "30"], "properties": ["microphone, water, wind", "background, motor, run"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a woman speaks as she rubs two objects together"], "sample_ids": ["slZLHwNbbt4", "vzxHnu-SFEw"], "start_seconds": ["300", "80"], "properties": ["a, horn, run", "two objects, woman, speak"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a baby cries and a woman moans", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["smDKStoHBJo", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["a, cry, woman", "a, scream, girl"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "people cheer as a vehicle engine revs"], "sample_ids": ["yRx9txMcBl0", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["motors, tires, screech", "engine revs, vehicle, people"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a person snoring several times", "a clock ticktocks"], "sample_ids": ["spJCm8tD9Zo", "v-g-j2uTByM"], "start_seconds": ["90", "30"], "properties": ["snore, person, several", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person is snoring loudly", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["rwtmaKiCcQU", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["nozzle, depressed, spray can", "water, radio, man"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["spraying and people speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water?", "label": 1}, {"captions": ["water splashes as an animal walks through", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["w1ir-sZ3Im8", "tDlysoZiA1I"], "start_seconds": ["90", "0"], "properties": ["animal, water, splashes", "animal, grunts, chirps"], "captions_pred_video": ["footage of a group of people riding horses through a river", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["water splashes and gurgles as people speak", "birds are chirping and a rooster is crowing "], "question": "which animal is making noise", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a car accelerates and wind blows"], "sample_ids": ["vddP56-ogds", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["water, flow, laugh", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a machine beeps continuously"], "sample_ids": ["sofxkNWaP0s", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["wind, engine, louder", "beeps, machine, continuously"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", null], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a power tool runs and touches a surface"], "sample_ids": ["vh30P49Po6s", "zfvPRf3chY"], "start_seconds": ["30", "290"], "properties": ["loud, continuous, quacks", "power tool, run, touch"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking while a power tool is being used "], "question": "which is not a continuous action", "label": 1}, {"captions": ["a baby cries and a woman moans", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["smDKStoHBJo", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["a, cry, woman", "engine, idle, woman"], "captions_pred_video": ["a man holding a crying baby in his arms", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "water pouring and bubbling"], "sample_ids": ["vb1fPSDI4c", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["multiple, people, yell", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a crowd of people are talking and laughing", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "people cheer as a vehicle engine revs"], "sample_ids": ["wTideSjRFS0", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["food, sizzle, woman", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wTideSjRFS0", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["food, sizzle, woman", "three men, wind, flow"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking as frying food sizzles?", "label": 0}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zgUgkpk78xU", "wz7N8YRy74I"], "start_seconds": ["70", "30"], "properties": ["clinking, humming, horn", "rooster, crow, background, men"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "water pouring and bubbling"], "sample_ids": ["ylpYOorfH4o", "uyRfq-jKPpo"], "start_seconds": ["410", "50"], "properties": ["engine, running, wind", "water, bubbles, pouring"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and an engine is revving", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wtDqrBygTcU", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["man, engine, run", "harsh, wind, blows"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man is speaking with wind noise in the background "], "question": "which entity is about a boat?", "label": 0}, {"captions": ["a kid speaks followed by music playing", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tQWGZLItBXk", "vfYTJq7nU"], "start_seconds": ["170", "130"], "properties": ["music, kid, speak", "rustling, ducks, quack"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "water pouring and bubbling"], "sample_ids": ["u21-Z5gJCB8", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["background, voice, man", "water, bubbles, pouring"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water is running from a faucet"], "question": "which entity is more active", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a car accelerates and wind blows"], "sample_ids": ["wqADXCzngMw", "u0TrcHhkPQ"], "start_seconds": ["340", "20"], "properties": ["engine, idle, man", "accelerates, wind, blows"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", null], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["birds fly and flutter around", "paper is crumpling consistently"], "sample_ids": ["wGKgwOP3h30", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["fly, flutter, around", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the pigeons in the coop", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["pigeons coo and flap their wings", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks uses a drill", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["x5eIC7S0fbg", "uZesmtKZGSw"], "start_seconds": ["60", "250"], "properties": ["A man is speaking, uses a drill, and is a tool", "men, talk, cars"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a tool", "label": 0}, {"captions": ["a woman speaks in a fast tone with a male", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sTpirNYo8vQ", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["a, tone, fast", "rustling, ducks, quack"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a duck quacks and a woman speaks"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a infant makes noise and is excited"], "sample_ids": ["rqfQRErjfk8", "wIJK3-5y0kA"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "noise, excited, infant"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an audience gives applause", "multiple people speak and children yell while water gurgles"], "sample_ids": ["x6iCUDmRpKQ", "vb1fPSDI4c"], "start_seconds": ["38", "30"], "properties": ["applause, audience, give", "multiple, people, yell"], "captions_pred_video": ["a black background with the moon and stars in the sky", null], "captions_pred_audio": ["a group of people are clapping and cheering", "a crowd of people are talking and laughing"], "question": "which entity is more active", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["zY3icUyMdh8", "vVhthZ45k3Y"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "cat, purr, hiss"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking and a cat is meowing"], "question": "which entity is more playful", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uPDn2BFTHk", "zl9Dqx-j7q4"], "start_seconds": ["140", "6"], "properties": ["woman, laughs, speaks", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["loud, continuous burping", "multiple people speak and children yell while water gurgles"], "sample_ids": ["y636gklDioE", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["loud, continuous, burping", "multiple, people, yell"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a car accelerates and wind blows", "a man speaks as a car is passing by"], "sample_ids": ["u0TrcHhkPQ", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which car is moving faster", "label": 0}, {"captions": ["a woman sneezes then speaks", "birds chirp and objects are moved around"], "sample_ids": ["x4dZyf9Gbj0", "yPUYU6t3rwo"], "start_seconds": ["130", "370"], "properties": ["sneezes, speaks, woman", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage is blurry and out of focus", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman sneezes and speaks", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a toilet flushes and water drains"], "sample_ids": ["tEE3MpBt1sg", "sfAvvZwdLCY"], "start_seconds": ["50", "20"], "properties": ["drill, something, laugh", "water drains, flushes, water"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of the toilet in the bathroom"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "an airplane engine runs"], "sample_ids": ["vbr9mHKc8WM", "yVPZ2MNWpms"], "start_seconds": ["40", "0"], "properties": ["noise, loudness, engine", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["an engine is idling", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a dog barks and whimpers"], "sample_ids": ["zj2R0XoFr5k", "sShpyu2l4YQ"], "start_seconds": ["50", "0"], "properties": ["airplane, boy, fly", "barks, whimpers, dog"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "the puppies are playing with a toy"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a dog is barking and growling"], "question": "which entity is a dog?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y2bVZ7rz-5M", "w5W5Kqtc8E"], "start_seconds": ["280", "100"], "properties": ["motor noise, horn, siren", "wind, blow, vehicle"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["food is frying then a woman speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["ukxt9I7eMMg", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["an airplane accelerates briefly", "dishes cling together then a man begins to speak"], "sample_ids": ["zjTG0gaGCUI", "sQGXqGcwOTc"], "start_seconds": ["80", "3"], "properties": ["accelerates, airplane, briefly", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a jet engine roars as wind blows ", "mechanisms are operating and water is splashing "], "question": "which entity is a moving object", "label": 0}, {"captions": ["a toilet flushes and water drains", "a man speaks while turning a water faucet on"], "sample_ids": ["sfAvvZwdLCY", "vf9xf3vMsGM"], "start_seconds": ["20", "540"], "properties": ["water drains, flushes, water", "A man speaks while turning a water faucet on."], "captions_pred_video": ["footage of the toilet in the bathroom", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while water is running in the background"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "water pouring and bubbling"], "sample_ids": ["y1saVTXsKwc", "uyRfq-jKPpo"], "start_seconds": ["80", "50"], "properties": ["a, dog, talk", "water, bubbles, pouring"], "captions_pred_video": ["a dog playing with a pink ball", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a dog barks and a man speaks", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "vehicles pass by on a roadway"], "sample_ids": ["tdWhHV3X25Q", "tgbONvsP47Y"], "start_seconds": ["60", "0"], "properties": ["applause, audience, yells", "pass, vehicle, roadway"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person sniffles and sneezes", "sucking and grunting followed by slurping with birds in the background"], "sample_ids": ["uRlbY6aoBU", "yYEVLuqEytU"], "start_seconds": ["0", "40"], "properties": ["sneezes, sniffles, person", "grunt, slurp, background"], "captions_pred_video": [null, "a baby goat is being petted by a person's hand"], "captions_pred_audio": ["a man is sneezing ", "several sheep bleat and a man speaks"], "question": "which entity is a person", "label": 0}, {"captions": ["a beep repeats multiple times", "a car speeding up in the distance"], "sample_ids": ["y682ml90jGw", "u0TrcHhkPQ"], "start_seconds": ["11", "20"], "properties": ["beep, repeat, multiple", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vBHyYJ8pL0", "w5W5Kqtc8E"], "start_seconds": ["2", "100"], "properties": ["noise, door, opening", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a woman and man speak while food is frying"], "sample_ids": ["w8uLijTqtlU", "zk-xJGQU8-4"], "start_seconds": ["70", "130"], "properties": ["wind, microphone, noise", "food, man, woman"], "captions_pred_video": ["footage is blurry and shaky", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a video of a man and woman speaking?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["y2bVZ7rz-5M", "vbZ-0lGPneg"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a horn?", "label": 0}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tDVADusiIoc", "zj2R0XoFr5k"], "start_seconds": ["60", "50"], "properties": ["water, radio, man", "airplane, boy, fly"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about flying?", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "water flows as a woman laughs and a man speaks"], "sample_ids": ["xvDdE3zNf8Y", "vddP56-ogds"], "start_seconds": ["120", "30"], "properties": ["A, crumple, paper", "water, flow, laugh"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "water is running and gurgling and a man is speaking"], "question": "which entity is a video of a woman speaking and crumpling paper?", "label": 0}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "a car speeding up in the distance"], "sample_ids": ["yNtRmrn0io8", "u0TrcHhkPQ"], "start_seconds": ["210", "20"], "properties": ["storm, distance, strike", "distance, car, speed"], "captions_pred_video": ["footage of a house in the middle of the night", null], "captions_pred_audio": ["rain falls and thunder roars", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["children speak and play together", "a clock ticktocks"], "sample_ids": ["yVVP8XvWJTo", "v-g-j2uTByM"], "start_seconds": ["260", "30"], "properties": ["children, speak, play", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a playground at a school or daycare center", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "birds chirp quietly and an adult man speaks"], "sample_ids": ["yRx9txMcBl0", "zuua6-5goWw"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "birds, chirp, quiet, man, speaks"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["a car is revving its engine and skidding ", "birds are chirping and a man is speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "engines sputter roughly and tires squeal"], "sample_ids": ["se87d6yxEOA", "zhx6hoYrHeI"], "start_seconds": ["10", "160"], "properties": ["run, whistle, pass", "engine, sputter, rough"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of a man working on a motorcycle's tire"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a car accelerates and revs its engine "], "question": "which engine is rougher", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a man speaks while a machine runs before a smoke alarm beeps"], "sample_ids": ["wudZTNBtVqc", "sG7TyPnFDR0"], "start_seconds": ["60", "180"], "properties": ["accelerates, engine, wind", "beeps, machine, smoke alarm"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "a person is using an espresso machine in a restaurant"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a microwave oven is beeping "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a helicopter engine runs", "people cheer as a vehicle engine revs"], "sample_ids": ["t5ZbXbniOWk", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["engine, helicopter, run", "engine revs, vehicle, people"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a helicopter is flying overhead ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["birds coo incessantly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yZrFNS7GFBQ", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["coo, bird, incessant", "rooster, crow, background, men"], "captions_pred_video": ["of the bird in the cage", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vveS8HT7Uog", "tDVADusiIoc"], "start_seconds": ["100", "60"], "properties": ["a man, objects, speak", "water, radio, man"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which man is speaking over a radio?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wTideSjRFS0", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["food, sizzle, woman", "wind, blow, vehicle"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a stream of water runs briefly"], "sample_ids": ["wTjoRj1se3U", "x-PeY8Yb8M4"], "start_seconds": ["390", "300"], "properties": ["airplane, engine, spool", "stream, water, run"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a toilet flushes and a female speaks"], "sample_ids": ["u5RmF3c3Aw", "yaln9y8I7ms"], "start_seconds": ["60", "230"], "properties": ["engine, car, zoom", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yVumC9TGknc", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["humming, clock, birds", "a woman, something, fried"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a series of beeps and chirps", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vddP56-ogds", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["liquid, laughs, man", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a man talking?", "label": 0}, {"captions": ["females talk and laugh over gusting wind", "a person sniffles and then sneezes in the distance"], "sample_ids": ["un9VQlzgZM", "uRlbY6aoBU"], "start_seconds": ["5", "0"], "properties": ["females, talk, laugh", "a, distance, sneeze"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is sneezing "], "question": "which entity is about a person?", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "a propeller rotates loudly and intensely"], "sample_ids": ["tqR406bGiE", "ugHJF0hfYkg"], "start_seconds": ["40", "10"], "properties": ["flush, water, gurgle", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a toilet is flushed", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks over intermittent keyboard taps", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["tw76HGONaKg", "sapQIQUhFc"], "start_seconds": ["570", "280"], "properties": ["audio, man, keyboard", "liquid, flow, distance"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wztCSUxOf8", "wz7N8YRy74I"], "start_seconds": ["130", "30"], "properties": ["a crowd, yells, applauds", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a woman speaks as she rubs two objects together"], "sample_ids": ["sncRqQ67iJU", "vzxHnu-SFEw"], "start_seconds": ["460", "80"], "properties": ["loud, repeatedly, man", "two objects, woman, speak"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "someone snores nearby"], "sample_ids": ["wy1eKjR7KC0", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["people, talk, distance", "someone snores, nearby, someone"], "captions_pred_video": ["two police officers riding motorcycles down the street", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a person is snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["someone is burping continuously", "a child speaks in closed space"], "sample_ids": ["y636gklDioE", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["burps, burps, burps", "child, space, speak"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person burps loudly several times", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not speaking?", "label": 0}, {"captions": ["sirens ring and approach with humming of distant traffic", "water is sprayed across a hard surface"], "sample_ids": ["xERFUeZONz8", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["ring, approach, traffic", "water, spray, surface"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["an emergency vehicle siren blares", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["some clanking with distant murmuring", "people applaud and hoot and chat quietly"], "sample_ids": ["uMTTDZ2mb4", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["clanking, murmuring, distant", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "birds chirp and objects are moved around"], "sample_ids": ["wqADXCzngMw", "yPUYU6t3rwo"], "start_seconds": ["340", "370"], "properties": ["engine, idle, man", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wjsXBsc7M40", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "People, motor, brakes"], "captions_pred_video": ["footage of the baby playing with a toothbrush", null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tDlfY3nmx1A", "vfYTJq7nU"], "start_seconds": ["160", "130"], "properties": ["applause, laugh, man", "rustling, ducks, quack"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", null], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a child speaks"], "sample_ids": ["zkKdxzNC97Y", "yW6FWLSLkx4"], "start_seconds": ["27", "40"], "properties": ["loud, bang, noise", "a, child, speaks"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is silent", "label": 0}, {"captions": ["a propeller moves loudly nearby", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["ugHJF0hfYkg", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["loud, propeller, move", "a, scream, girl"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is quieter", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zY3icUyMdh8", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["dog, bark, engine", "a woman, laughs, animal"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["paper folding and crinkling", "water flows as men speak and yell"], "sample_ids": ["zPpG3RD8lSs", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["paper, fold, crinkle", "water, flow, men"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "some tunes played by whistling"], "sample_ids": ["x6ijhqRY38s", "u6BnG6YZqJ4"], "start_seconds": ["250", "0"], "properties": ["something metal, glass, hit", "tune, play, whistling"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an engine runs and a man speaks", "paper is crumpling consistently"], "sample_ids": ["yT5WfYMRr-U", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["engine, run, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "people cheer as a vehicle engine revs"], "sample_ids": ["vJvryTwuAV8", "xjhAnI2q6hM"], "start_seconds": ["16", "6"], "properties": ["audience, cheer, man", "engine revs, vehicle, people"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "some tunes played by whistling"], "sample_ids": ["sNB8zxXneIM", "u6BnG6YZqJ4"], "start_seconds": ["20", "0"], "properties": ["several, quack, cocks", "tune, play, whistling"], "captions_pred_video": ["a group of geese in a cage", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "pigeons vocalize and birds chirp"], "sample_ids": ["vYkA3cfXp5Q", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["speed, idle, accelerate", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of the pigeon in the cage"], "captions_pred_audio": ["an engine is idling", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a girl talking, laughing and sneezing noise", "a person speaks over rustling leaves"], "sample_ids": ["y4tPJXBKDig", "zOZleIRqZm4"], "start_seconds": ["20", "80"], "properties": ["a, noise, talk", "rustling, leaves, person"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a man is speaking with crickets chirping in the background"], "question": "which entity is a person speaking over rustling leaves?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vZAw4apG0Es", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["background, clock, ticktocks", "airplane, boy, fly"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a church bell rings several times", "a car accelerates and wind blows"], "sample_ids": ["sUVVjE3Ucp8", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["ring, bell, several", "accelerates, wind, blows"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", null], "captions_pred_audio": ["a church bell is ringing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks as a car is passing by"], "sample_ids": ["sfAvvZwdLCY", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "a, car, pass"], "captions_pred_video": ["footage of the toilet in the bathroom", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "water flows and trickles"], "sample_ids": ["uoGVs9yUqY4", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["multiple, vocalize, wind", "water, flow, trickle"], "captions_pred_video": ["for how to make a wooden shed door youtube", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a male speaks over some small clicks", "a person is snoring while sleeping"], "sample_ids": ["uXxVebHsGZ8", "vJrjSeP17yE"], "start_seconds": ["30", "40"], "properties": ["male, clicks, speak", "a person is sleeping, snoring, person"], "captions_pred_video": [null, "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["male speech with light ticking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["xO-Q2BlIIPU", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["male, speech, ticking", "rooster, crow, background, men"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "an electric engine works nearby followed by a child talking"], "sample_ids": ["s59PfAghdkM", "xSKJGCItUWE"], "start_seconds": ["0", "10"], "properties": ["bird, chirp, background, horse, neigh", "engine, work, child"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage of the helicopter flying in the room"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a high pitched engine is running and a child speaks"], "question": "which entity has a child talking?", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a vehicle is skidding and squealing tires"], "sample_ids": ["ylpYOorfH4o", "soTOh3zYJfY"], "start_seconds": ["410", "40"], "properties": ["motor, run, steady", "vehicle, skid, tires"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["insects humming with a dog barking and small goat bleating", "a woman speaks happily and an animal chirps"], "sample_ids": ["tIY7qOV3rEM", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "a woman, chirps, animal"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a dog is barking "], "question": "which animal is speaking", "label": 0}, {"captions": ["a man speaks as a motor runs in the background", "wind blows as people chatter quietly"], "sample_ids": ["xZepNM9qcRA", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "wind, chatter, people"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["vcmWSmvti8", "siJFXfGWgDk"], "start_seconds": ["30", "50"], "properties": ["music, man, fire", "man, woman, vehicle"], "captions_pred_video": [null, "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a man speaking as music plays before artillery is fired?", "label": 0}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["su6FAOcOA8c", "ukg5L09Wpvo"], "start_seconds": ["4", "150"], "properties": ["engine, idle, woman", "clickety-clack, train, whistle"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a dog barks and whimpers", "people speak as gunfire rings out"], "sample_ids": ["sShpyu2l4YQ", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["barks, whimpers, dog", "gunfire, ring, speak"], "captions_pred_video": ["the puppies are playing with a toy", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["someone whistles a song", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sIXTftIuUgw", "wDVMhEdTiVw"], "start_seconds": ["90", "30"], "properties": ["someone, song, whistle", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person whistling a song", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["wind blows and people talk while livestock vocalizes", "an engine runs loudly"], "sample_ids": ["vXlk0lIQBFo", "vqZuVbG6-HI"], "start_seconds": ["470", "130"], "properties": ["wind, talk, vocalize", "loud, engine, run"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage is blurry because it's raining outside"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks uses a drill", "a woman speaks as she rubs two objects together"], "sample_ids": ["x5eIC7S0fbg", "vzxHnu-SFEw"], "start_seconds": ["60", "80"], "properties": ["A man is speaking, uses a drill, and is a tool", "two objects, woman, speak"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a tool", "label": 0}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["ylpYOorfH4o", "wqZ135Ssz0"], "start_seconds": ["410", "60"], "properties": ["motor, run, steady", "two men, woman, birds"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a man speaks as a car is passing by"], "sample_ids": ["ugHJF0hfYkg", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["loud, propeller, move", "a, car, pass"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a moving object", "label": 1}, {"captions": ["small dogs yip and bark sharply", "some men converse over an engine running"], "sample_ids": ["v-wcQf4BDY0", "sCiy7QS1U"], "start_seconds": ["120", "300"], "properties": ["bark, yip, sharply", "men, converse, engine"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", null], "captions_pred_audio": ["a dog barks and growls", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "winds blows roughly as a vehicle races past"], "sample_ids": ["weDbePuc-Xc", "xjvTpk2Zpr8"], "start_seconds": ["40", "70"], "properties": ["music, slaps, human", "wind, blows, vehicle"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a small engine spits as it runs", "a airplane flies overhead as a woman speaks"], "sample_ids": ["sZvwOuuPGP0", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["spits, engine, runs", "airplane, fly, woman"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a medium engine is running ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a man speaks over intermittent keyboard taps"], "sample_ids": ["sDSppXIlJrs", "tw76HGONaKg"], "start_seconds": ["27", "570"], "properties": ["microphone, water, wind", "audio, man, keyboard"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a man speaks and types on a computer keyboard "], "question": "which entity is a recording of a man speaking?", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "wind blowing followed by a zoom"], "sample_ids": ["tDlfY3nmx1A", "vr8ZXjEBhMQ"], "start_seconds": ["160", "150"], "properties": ["applause, laugh, man", "wind, blow, zoom"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a man speaks as a car is passing by"], "sample_ids": ["vhJWZheqaE", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["water drains unevenly, toilet flushes, water drains", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uEU-Hg5MTN8", "xBxDz0CFVn0"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "stream, water, flow"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a child speaks in closed space"], "sample_ids": ["sQwlkXjQabo", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["liquid, surface, spray", "child, space, speak"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["spraying followed by silence", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a machine beeps continuously", "a machine beeps continuously"], "sample_ids": ["y682ml90jGw", "y682ml90jGw"], "start_seconds": ["11", "11"], "properties": ["beeps, machine, continuously", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a beeping sound is being made "], "question": "which machine beeps continuously", "label": 1}, {"captions": ["birds chirp then an animal grunts", "paper is crumpling consistently"], "sample_ids": ["tDlysoZiA1I", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["animal, grunt, chirp", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tOj4tdLRaA", "xKB8O8LTs6s"], "start_seconds": ["70", "70"], "properties": ["woman, laugh, baby", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby laughs and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["plastic is tapped on while someone speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wvKpEYswXO0", "vfYTJq7nU"], "start_seconds": ["150", "130"], "properties": ["plastic, tap, speak", "rustling, ducks, quack"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a duck quacks and a woman speaks"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["a person screams glaringly", "vehicles pass by on a roadway"], "sample_ids": ["xC8kbrKJmco", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["glaringly, screams, person", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a goat is bleating ", "a car is driving on the road "], "question": "which entity is more passive", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tOSWIURC-4", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["engine, work, nearby", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a lawn mower is running ", "a race car accelerates and revs its engine "], "question": "which entity has a vehicle passing by?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a man speaks while a rooster crows and other people speak in the background"], "sample_ids": ["s3cTDAj31g", "wz7N8YRy74I"], "start_seconds": ["80", "30"], "properties": ["man, talk, woman", "rooster, crow, background, people"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["water flows and trickles", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tB7hWb9gTuQ", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["water, flow, trickle", "a woman, something, fried"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "- a woman cooking in the kitchen"], "captions_pred_audio": ["water is splashing and gurgling", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "dishes cling together then a man begins to speak"], "sample_ids": ["u2f5NpsoHBg", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["person, laugh, clap", "cling, speak, dishes"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "mechanisms are operating and water is splashing "], "question": "which entity shows a person speaking and laughing and clapping?", "label": 0}, {"captions": ["a woman talking as an infant is crying", "wind blows as people chatter quietly"], "sample_ids": ["tMbMDvT50j8", "xBxDz0CFVn0"], "start_seconds": ["12", "30"], "properties": ["a, talk, infant", "wind, chatter, people"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zuua6-5goWw", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["birds, chirp, quiet, man, speaks", "a woman, laughs, animal"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a person sniffs and sneezes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uRlbY6aoBU", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["sneezes, person, sniffs", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is sneezing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a child speaks in closed space"], "sample_ids": ["xjhAnI2q6hM", "yW6FWLSLkx4"], "start_seconds": ["6", "40"], "properties": ["wind, blow, loudly", "child, space, speak"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a car speeding up in the distance"], "sample_ids": ["xBxDz0CFVn0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["wind, chatter, people", "distance, car, speed"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "people speak as gunfire rings out"], "sample_ids": ["wwyfGO2J4", "wqTCwqVRDlk"], "start_seconds": ["90", "80"], "properties": ["people, applaud, hoot", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["several insects fly while two men talk", "waves crash against a shoreline and people speak"], "sample_ids": ["s-T9OVOiMLo", "yFB25fqfU8I"], "start_seconds": ["330", "300"], "properties": ["several, fly, men", "wave, crash, shoreline"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a toilet flushes and a female speaks"], "sample_ids": ["se87d6yxEOA", "yaln9y8I7ms"], "start_seconds": ["10", "230"], "properties": ["run, whistle, pass", "female, flushes, toilet"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a toilet flushes and a man speaks"], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ukxt9I7eMMg", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["continuous, woman, speaking", "wind, blow, vehicle"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a woman speaking towards the end?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "someone whistles a tune"], "sample_ids": ["ugHJF0hfYkg", "sIXTftIuUgw"], "start_seconds": ["10", "90"], "properties": ["engine, running, continuously", "someone, tune, whistle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a person whistling a song"], "question": "which is not a continuous action", "label": 0}, {"captions": ["a person sneezes followed by another person speaking", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["t8CV69hcvF0", "wyllXV6PjKo"], "start_seconds": ["210", "30"], "properties": ["person, sneeze, follow", "a baby, a woman, a man"], "captions_pred_video": ["of an airplane flying in the dark sky at night", null], "captions_pred_audio": ["a woman sneezes and speaks", "a woman speaks and a baby cries"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "water pouring and bubbling"], "sample_ids": ["uOpoD0gGXcs", "uyRfq-jKPpo"], "start_seconds": ["120", "50"], "properties": ["chirps, woman, bird", "water, bubbles, pouring"], "captions_pred_video": ["a herd of cows grazing in the field", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds are chirping and a man is speaking", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a man speaks uses a drill"], "sample_ids": ["w-4gHptFNuU", "x5eIC7S0fbg"], "start_seconds": ["21", "60"], "properties": ["engine revs, accelerates, bump", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xfaoyyzw2WU", "xKB8O8LTs6s"], "start_seconds": ["180", "70"], "properties": ["loud, jet engine, roar", "music, gunfire, explosion"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wRBHTgrbiwg", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["bird, owl, speak", "a woman, a television program, a bird"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "wind blowing followed by a zoom"], "sample_ids": ["uiItxDsDMFI", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["sound, distance, leaves", "wind, blow, zoom"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a saw is being used with background noise ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom?", "label": 1}, {"captions": ["an engine starts and increases in power", "waves crash against a shoreline and people speak"], "sample_ids": ["zjTG0gaGCUI", "yFB25fqfU8I"], "start_seconds": ["80", "300"], "properties": ["power, increase, engine", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["tK4VlLsNxak", "rqu8iB22IY"], "start_seconds": ["120", "5"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "sound, repeats, laugh"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a dog barks and a man speaks while music plays "], "question": "which entity is more like a scream", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "a stream of water runs briefly"], "sample_ids": ["wqADXCzngMw", "x-PeY8Yb8M4"], "start_seconds": ["340", "300"], "properties": ["audio, humming, revving", "stream, water, run"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a clock ticktocks continuously", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vlJS7LN2XyM", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["ticktocks, clock, ticktocks continuously", "loud, jet engine, roar"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a ticktock of a clock", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "a person snores loudly multiple times at a close distance"], "sample_ids": ["skd2PphS6oI", "sSMl2vc3ek"], "start_seconds": ["190", "20"], "properties": ["ring, bird, vocalize", "loud, multiple, distance"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", null], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["xyx6eNVEYRY", "xjhAnI2q6hM"], "start_seconds": ["380", "6"], "properties": ["loud, engine, muffles", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "wind blows as people chatter quietly"], "sample_ids": ["smDKStoHBJo", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["a, infant, speaking", "wind, chatter, people"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a machine beeps continuously"], "sample_ids": ["yaln9y8I7ms", "y682ml90jGw"], "start_seconds": ["230", "11"], "properties": ["female, flushes, toilet", "beeps, machine, continuously"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "birds chirp and objects are moved around"], "sample_ids": ["vJ7JPEFhyLA", "yPUYU6t3rwo"], "start_seconds": ["16", "370"], "properties": ["three men, wind, flow", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "an airplane engine runs"], "sample_ids": ["vddP56-ogds", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["water, splash, person, laugh", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wyllXV6PjKo", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["a baby, a woman, a man", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a baby?", "label": 0}, {"captions": ["here comes the train and it starts to blow the horn and get close", "people speak as gunfire rings out"], "sample_ids": ["s7knHCFW82w", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["blow horn, get close, train", "gunfire, ring, speak"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a door opens and closes"], "sample_ids": ["yswmmRZFItk", "vBHyYJ8pL0"], "start_seconds": ["0", "2"], "properties": ["background, frog, croak", "open, close, door"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is a door?", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a infant makes noise and is excited"], "sample_ids": ["s7knHCFW82w", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "noise, excited, infant"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a baby cries and a woman speaks"], "question": "which is louder", "label": 0}, {"captions": ["a man speaks while rain falls onto a hard surface", "water flows and trickles"], "sample_ids": ["wqN6IIHw3po", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "water, flow, trickle"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and water is splashing", "water is splashing and gurgling"], "question": "which entity is flowing", "label": 1}, {"captions": ["a dog barks and whimpers", "water splashes as an animal walks through"], "sample_ids": ["sShpyu2l4YQ", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["barks, whimpers, dog", "animal, water, splashes"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a dog is barking and growling", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "a helicopter engine runs continuously"], "sample_ids": ["vZAw4apG0Es", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["people, clock, converse", "engine, running, continuously"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a clock is ticking and people are talking", "a helicopter is flying overhead "], "question": "which entity is running continuously", "label": 1}, {"captions": ["an animal quacks rapidly", "a man speaks as a car is passing by"], "sample_ids": ["vh30P49Po6s", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["animal, quacks, rapidly", "a, car, pass"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a child speaks in closed space"], "sample_ids": ["tDVADusiIoc", "yW6FWLSLkx4"], "start_seconds": ["60", "40"], "properties": ["man, radio, blows", "child, space, speak"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a duck quacks continuously"], "sample_ids": ["tQWGZLItBXk", "vh30P49Po6s"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "quacks, continuously, duck"], "captions_pred_video": ["worms revolution screenshots", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a duck is quacking loudly"], "question": "which entity is a duck?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "water splashes as an animal walks through"], "sample_ids": ["s3cTDAj31g", "w1ir-sZ3Im8"], "start_seconds": ["80", "90"], "properties": ["man, talk, woman", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and a baby is crying", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yeFvk9x0wWI", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["clack, bird, chirp", "three men, wind, flow"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a liquid flowing?", "label": 1}, {"captions": ["a clock ticktocks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["v-g-j2uTByM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, ticktocks", "loud, multiple, distance"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", null], "captions_pred_audio": ["a clock is ticking loudly", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["water bubbles and gurgles.", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tB7hWb9gTuQ", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["bubbles, gurgles, water", "gun, shoot, water"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["water is splashing and gurgling", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a man speaks as a car is passing by"], "sample_ids": ["u--KhUW8l1Y", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "a, car, pass"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a person is burping while a girl speaks", "people speak as gunfire rings out"], "sample_ids": ["vdoxuJn9lTc", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["person, burp, girl", "gunfire, ring, speak"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tgbONvsP47Y", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["noise, truck, accelerate", "airplane, boy, fly"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car is driving on the road ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a woman speaks happily and an animal chirps"], "sample_ids": ["wPz6QRAkEb4", "uWAAAL4CIoc"], "start_seconds": ["60", "0"], "properties": ["chirps, tweets, song", "a woman, chirps, animal"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a child speaks in closed space"], "sample_ids": ["wvKpEYswXO0", "yW6FWLSLkx4"], "start_seconds": ["150", "40"], "properties": ["water, tap, run", "child, space, speak"], "captions_pred_video": ["of the person preparing food in the kitchen", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a man speaks as a motor runs in the background"], "sample_ids": ["s7knHCFW82w", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "background, motor, run"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a man speaking to a background?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wz7N8YRy74I", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["rooster, crow, background, people", "a, scream, girl"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "someone is typing on a computer keyboard"], "sample_ids": ["wSVhSdj0F0", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["horn honks, keys jingle, slam", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a person is typing on a keyboard"], "question": "which entity is typing on a computer keyboard", "label": 1}, {"captions": ["a person speaks briefly", "continuous sneezing together with speech"], "sample_ids": ["zOZleIRqZm4", "x4dZyf9Gbj0"], "start_seconds": ["80", "130"], "properties": ["person, talk, brief", "continuous, sneeze, speech"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman sneezes and speaks"], "question": "which entity is more like a person talking", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yDoT73BWsdA", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["engine revs, tires squeal, vehicle", "loud, jet engine, roar"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a man speaks as a motor runs in the background"], "sample_ids": ["yYEVLuqEytU", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["grunt, slurp, background", "background, motor, run"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a frog vocalizes as birds chirp"], "sample_ids": ["yajyRTUQk3U", "wqUmIEzuNz4"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "frog, bird, vocalize"], "captions_pred_video": ["- a woman cooking in the kitchen", "a frog sitting in the grass on a sunny day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a cat meows and rustles"], "question": "which entity is a frog", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a helicopter engine idles continuously"], "sample_ids": ["ugHJF0hfYkg", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["loud, intense, propeller", "engine, idle, continuously"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a helicopter is flying overhead ", "a helicopter is flying overhead "], "question": "which entity is quieter", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yZrFNS7GFBQ", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["pigeon, buzzes, insect", "clickety-clack, train, whistle"], "captions_pred_video": ["of the bird in the cage", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an owl hoots in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "waves crash against a shoreline and wind blows"], "sample_ids": ["uJV8NDaHqqk", "zdYdyF9-m8U"], "start_seconds": ["100", "7"], "properties": ["loud, fly, chirp", "wind, crash, shoreline"], "captions_pred_video": ["a bee hive in a wooden box", "a person kayaking in the ocean near a cliff"], "captions_pred_audio": ["a swarm of bees buzzing around", "waves crash and wind blows "], "question": "which entity is more quiet", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vJ7JPEFhyLA", "w5W5Kqtc8E"], "start_seconds": ["16", "100"], "properties": ["three men, wind, flow", "wind, blow, vehicle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has more wind blowing", "label": 1}, {"captions": ["speaking following by laughing and clapping", "paper folding and crinkling"], "sample_ids": ["u2f5NpsoHBg", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["person, laugh, clap", "paper, fold, crinkle"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "the wind blows and a mouse clicks "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["su6FAOcOA8c", "rqu8iB22IY"], "start_seconds": ["4", "5"], "properties": ["engine, run, woman", "sound, repeats, laugh"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a dog barks and a man speaks while music plays "], "question": "which entity has a woman making an announcement?", "label": 0}, {"captions": ["a woman speaks with water running", "a toilet flushes and a female speaks"], "sample_ids": ["wTideSjRFS0", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["water, running, woman", "female, flushes, toilet"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a toilet flushes and a man speaks"], "question": "which entity has a woman speaking while water is running?", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "paper is crumpling consistently"], "sample_ids": ["zkKdxzNC97Y", "v5cSxLaHADY"], "start_seconds": ["27", "0"], "properties": ["loud, bang, noise", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a door is opened and closed", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["some clanking with distant murmuring", "wind blows as people chatter quietly"], "sample_ids": ["uMTTDZ2mb4", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["clanking, murmuring, distant", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["long loud burping by a man", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xmiUIOhtZyQ", "uZesmtKZGSw"], "start_seconds": ["60", "250"], "properties": ["loud, burp, man", "men, talk, cars"], "captions_pred_video": ["homer simpson drinking a beer", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vuUVPzd2FXw", "su6FAOcOA8c"], "start_seconds": ["160", "4"], "properties": ["a, steam, release", "engine, idle, woman"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a woman is speaking and a subway train is moving "], "question": "which entity is a man?", "label": 0}, {"captions": ["multiple motorcycles pass by as a man speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zcDwZ6W7E3E", "tiDFTC-5vU"], "start_seconds": ["180", "30"], "properties": ["man, speak, motorcycles", "male, duck, laugh"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "paper is crumpling consistently"], "sample_ids": ["wwyfGO2J4", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["people, applaud, hoot", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w34HjHr6gAY", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["beeps, hit, woman", "stream, water, flow"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage is blurry and out of focus"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "people speak as gunfire rings out"], "sample_ids": ["vK93VuO0yNc", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["male voice, bus, rumble", "gunfire, ring, speak"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uKCSGgof8gI", "xKB8O8LTs6s"], "start_seconds": ["12", "70"], "properties": ["chirps, distance, signal", "music, gunfire, explosion"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "an insect buzzes around continuously"], "sample_ids": ["sjlVMgdGSK0", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["accelerates, vehicle, race car", "buzzes, continuously, insect"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a fly is buzzing around a microphone "], "question": "which entity buzzes around continuously", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["u--KhUW8l1Y", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["horn, siren, life", "wind, blow, vehicle"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", null], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["wyllXV6PjKo", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a baby, a woman, a man", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a baby?", "label": 0}, {"captions": ["people speak and tapping occurs", "repeated tapping is accompanied by water running and a woman speaking softly"], "sample_ids": ["tFCUUGdREgA", "wvKpEYswXO0"], "start_seconds": ["70", "150"], "properties": ["people, tap, speak", "sound, water, running"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity has a woman speaking softly?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "an airplane engine runs"], "sample_ids": ["zl9Dqx-j7q4", "yVPZ2MNWpms"], "start_seconds": ["6", "0"], "properties": ["engine, laugh, loud", "engine, airplane, runs"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a jet engine roars ", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vbr9mHKc8WM", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["noise, loudness, engine", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["an engine is idling", "a goat bleats and birds chirp"], "question": "which entity is quieter", "label": 0}, {"captions": ["a man speaks as music plays before artillery is fired", "a woman speaks happily and an animal chirps"], "sample_ids": ["vcmWSmvti8", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["music, man, fire", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a woman is speaking and a dog is barking "], "question": "which entity is more peaceful", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vSeGhaZt-aI", "w5W5Kqtc8E"], "start_seconds": ["50", "100"], "properties": ["water, sink, talk", "wind, blow, vehicle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about water running down a sink?", "label": 0}, {"captions": ["leaves rustle while man speaks", "plastic is tapped on while someone speaks"], "sample_ids": ["zOZleIRqZm4", "wvKpEYswXO0"], "start_seconds": ["80", "150"], "properties": ["leaves, rustle, speak", "plastic, tap, speak"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vs65y4qmyBE", "wqZ135Ssz0"], "start_seconds": ["340", "60"], "properties": ["engine, run, man", "two men, woman, birds"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "an airplane engine spools and people speak"], "sample_ids": ["uEU-Hg5MTN8", "wTjoRj1se3U"], "start_seconds": ["27", "390"], "properties": ["a woman, laughs, animal", "airplane, engine, spool"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking and an animal snorting?", "label": 0}, {"captions": ["water splashes and wind noise is made into a microphone", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["sDSppXIlJrs", "vqZuVbG6-HI"], "start_seconds": ["27", "130"], "properties": ["microphone, water, wind", "background, male, female"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "footage is blurry because it's raining outside"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a lawn mower is running and men are speaking "], "question": "which entity has more background noise", "label": 1}, {"captions": ["roadway noise occurs and a truck accelerates", "a car accelerates and wind blows"], "sample_ids": ["tgbONvsP47Y", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["noise, truck, accelerate", "accelerates, wind, blows"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["someone snores nearby", "multiple people speak and children yell while water gurgles"], "sample_ids": ["spJCm8tD9Zo", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "multiple, people, yell"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a sleeping person emits a gravely snore", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w2JXXIAdUdg", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["emits, sleeping, person", "three men, wind, flow"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a person emitting a gravely snore?", "label": 0}, {"captions": ["motors rev and run loudly as a person laughs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zl9Dqx-j7q4", "vJ7JPEFhyLA"], "start_seconds": ["6", "16"], "properties": ["motors rev, laugh, loudly", "three men, wind, flow"], "captions_pred_video": ["footage of a man driving a car in the dark", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "someone whistles a tune"], "sample_ids": ["u21-Z5gJCB8", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["background, voice, man", "someone, tune, whistle"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a stream runs then someone speaks", "people speak as gunfire rings out"], "sample_ids": ["wbHTKEJZyhc", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["stream, run, someone", "gunfire, ring, speak"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["slZLHwNbbt4", "w5W5Kqtc8E"], "start_seconds": ["300", "100"], "properties": ["clap, distance, horn", "wind, blow, vehicle"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vBslzh7saPw", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["engine, roar, louder", "wind, blow, vehicle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "water splashes and wind noise is made into a microphone"], "sample_ids": ["y4tPJXBKDig", "sDSppXIlJrs"], "start_seconds": ["20", "27"], "properties": ["a, noise, talk", "microphone, water, wind"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a man is paddling a small wooden boat in the water"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "the wind is blowing and water is splashing"], "question": "which noise is made by water and wind", "label": 1}, {"captions": ["a man is filing a hard object", "a car accelerates and wind blows"], "sample_ids": ["vveS8HT7Uog", "u0TrcHhkPQ"], "start_seconds": ["100", "20"], "properties": ["a man, hard, object", "accelerates, wind, blows"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a race car accelerates and revs its engine "], "question": "which object is moving", "label": 1}, {"captions": ["a stream of water runs briefly", "a man speaks as a car is passing by"], "sample_ids": ["x-PeY8Yb8M4", "sK4u5T8hW78"], "start_seconds": ["300", "30"], "properties": ["stream, water, run", "a, car, pass"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a woman speaks as she rubs two objects together"], "sample_ids": ["viuTg1M-dqg", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["two men, speak, follow", "two objects, woman, speak"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a woman speaking?", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a child speaks in closed space"], "sample_ids": ["tDVADusiIoc", "yW6FWLSLkx4"], "start_seconds": ["60", "40"], "properties": ["wind, radio, waves", "child, space, speak"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a man speaks as a machine runs", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vD6lYD1l0BY", "uEU-Hg5MTN8"], "start_seconds": ["330", "27"], "properties": ["a, machine, run", "a woman, laughs, animal"], "captions_pred_video": ["game controller being held in the hands of the person", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["a person sniffles and sneezes", "people speak and tapping occurs"], "sample_ids": ["uRlbY6aoBU", "tFCUUGdREgA"], "start_seconds": ["0", "70"], "properties": ["sneezes, sniffles, person", "people, tap, speak"], "captions_pred_video": [null, "a person riding a white horse in an indoor arena"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and walking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "an infant crying frantically"], "sample_ids": ["vmrxwuAMb2I", "zwOBqeFTgiU"], "start_seconds": ["40", "30"], "properties": ["a dog, inhales, exhales", "cry, infant, frantically"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "of the baby crying in the car seat"], "captions_pred_audio": ["a dog barks and growls", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a horn rings out as a machine runs by"], "sample_ids": ["xKB8O8LTs6s", "slZLHwNbbt4"], "start_seconds": ["70", "300"], "properties": ["music, radio, gunshots", "a, horn, run"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity has a horn", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "paper is crumpling consistently"], "sample_ids": ["sEprKHm8Sj8", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["noise, loud, buzzing", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds chirp, a woman speaks, and insects buzz", "a woman speaks happily and an animal chirps"], "sample_ids": ["t97k0cejSQE", "uWAAAL4CIoc"], "start_seconds": ["250", "0"], "properties": ["sound, chirp, buzz", "a woman, chirps, animal"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a woman is speaking and a dog is barking "], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uRlbY6aoBU", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["a, distance, sneeze", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is sneezing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man talks as several small engines run", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["u9A6VZQCZpU", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["a, man, talk", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["loud, continuous burping", "people applaud and hoot and chat quietly"], "sample_ids": ["y636gklDioE", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["loud, continuous, burping", "people, applaud, hoot"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a toilet flushes and a female speaks"], "sample_ids": ["y2bVZ7rz-5M", "yaln9y8I7ms"], "start_seconds": ["280", "230"], "properties": ["engine, horn, siren", "female, flushes, toilet"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage is blurry and out of focus"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["s6DESzUTGjY", "wz7N8YRy74I"], "start_seconds": ["16", "30"], "properties": ["wind, laugh, woman", "rooster, crow, background, men"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["ukxt9I7eMMg", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["continuous, woman, speaking", "men, talk, cars"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a woman speaking towards the end?", "label": 0}, {"captions": ["a man speaks with another voice speaking in the background", "a horn rings out as a machine runs by"], "sample_ids": ["u21-Z5gJCB8", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["background, voice, man", "a, horn, run"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "paper is crumpling consistently"], "sample_ids": ["y8WEcpOlT3I", "v5cSxLaHADY"], "start_seconds": ["40", "0"], "properties": ["harsh, wind, blows", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vmrxwuAMb2I", "xKB8O8LTs6s"], "start_seconds": ["40", "70"], "properties": ["a dog, inhales, exhales", "music, gunfire, explosion"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog barks and growls", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tEE3MpBt1sg", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "rooster, crow, background, men"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["xZepNM9qcRA", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["background, motor, run", "sheep, baa, birds"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vlJS7LN2XyM", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["background, clocks, ticking", "beeps, hit, woman"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a ticktock of a clock", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["paper is crumpling consistently", "an infant crying as a woman laughs"], "sample_ids": ["v5cSxLaHADY", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "a, laugh, infant"], "captions_pred_video": ["footage of the person holding a pair of scissors", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["paper is crumpled and crinkled", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a person is whistling"], "sample_ids": ["wIJK3-5y0kA", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["a, cry, baby", "person, whistling, person"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a person whistling a song"], "question": "which entity is a person?", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["zuua6-5goWw", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["sound, pop, bird", "two men, speak, follow"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["y2ZBGpgbhHM", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["birds, tweet, pant", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a machine runs continuously", "waves crash against a shoreline and people speak"], "sample_ids": ["wdXV3Pv0jiY", "yFB25fqfU8I"], "start_seconds": ["11", "300"], "properties": ["machine, running, continuously", "wave, crash, shoreline"], "captions_pred_video": ["footage is blurry and shaky", "footage of a person surfing in the ocean"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is not a machine?", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "dishes cling together then a man begins to speak"], "sample_ids": ["yZrFNS7GFBQ", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["pigeon, buzzes, insect", "cling, speak, dishes"], "captions_pred_video": ["of the bird in the cage", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["an owl hoots in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a man speaks followed by another man speaking outside"], "sample_ids": ["xvDdE3zNf8Y", "viuTg1M-dqg"], "start_seconds": ["120", "30"], "properties": ["a, female, speaks", "two men, speak, follow"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person speaks briefly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zOZleIRqZm4", "uYT5gxnyMWM"], "start_seconds": ["80", "50"], "properties": ["person, talk, brief", "female, spraying, scream"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity is a person talking?", "label": 0}, {"captions": ["a person snoring", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["t8tv5YRMJUg", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["a person, snore, loud", "engine, laugh, loud"], "captions_pred_video": ["of a man getting his face licked by another man", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ziUT9IFTkjg", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["background, birds, rustling", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "three men talk while wind blows and some liquid flows"], "sample_ids": ["smDKStoHBJo", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["a, talk, baby, cry", "three men, wind, flow"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["an engine runs and wind blows", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vs65y4qmyBE", "vYkA3cfXp5Q"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "engine, accelerate, idle"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "an engine is idling"], "question": "which entity is a vehicle engine?", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yYEVLuqEytU", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["grunt, slurp, background", "clickety-clack, train, whistle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a clock ticktocks"], "sample_ids": ["vVhthZ45k3Y", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["cat, purr, hiss", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is blurry and out of focus", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["bees buzz and wind blows", "a horn rings out as a machine runs by"], "sample_ids": ["tMJne1a4AFI", "slZLHwNbbt4"], "start_seconds": ["0", "300"], "properties": ["bees buzz, wind blows, bees", "a, horn, run"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a swarm of bees buzzing around", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "birds chirp and wind blows"], "sample_ids": ["s4Uz1Ffgo04", "sxIvBMSavMQ"], "start_seconds": ["100", "210"], "properties": ["roars, background, people speaking", "birds, chirp, wind"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "birds are chirping and insects are buzzing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vmrxwuAMb2I", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["a dog, inhales, exhales", "a woman, something, fried"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a dog barks and growls", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a man talks as several small engines run", "vehicles pass by on a roadway"], "sample_ids": ["u9A6VZQCZpU", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["a, man, talk", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a car is driving on the road "], "question": "which entity is about vehicles?", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "an airplane accelerates briefly"], "sample_ids": ["xjvTpk2Zpr8", "zjTG0gaGCUI"], "start_seconds": ["70", "80"], "properties": ["wind, blows, vehicle", "accelerates, airplane, briefly"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a jet engine roars as wind blows "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a man speaks as a car is passing by"], "sample_ids": ["vimzuGQvdcU", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "a, car, pass"], "captions_pred_video": ["a group of people are rafting down a river", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more calm", "label": 1}, {"captions": ["loud, continuous burping", "a person speaks briefly"], "sample_ids": ["y636gklDioE", "zOZleIRqZm4"], "start_seconds": ["20", "80"], "properties": ["loud, continuous, burping", "person, talk, brief"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking with crickets chirping in the background"], "question": "which entity is talking", "label": 1}, {"captions": ["ticking continues without interruption", "a train horn blows as it passes by"], "sample_ids": ["v-g-j2uTByM", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "horn, blows, train"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a clock is ticking loudly", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is not continuous", "label": 1}, {"captions": ["a person is whistling", "a man speaks as a motor runs in the background"], "sample_ids": ["sIXTftIuUgw", "xZepNM9qcRA"], "start_seconds": ["90", "30"], "properties": ["person, whistling, person", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person whistling a song", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vr8ZXjEBhMQ", "su6FAOcOA8c"], "start_seconds": ["150", "4"], "properties": ["sound, distance, engine", "engine, idle, woman"], "captions_pred_video": ["is taken from a motorcycle's point of view", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["weDbePuc-Xc", "yDoT73BWsdA"], "start_seconds": ["40", "10"], "properties": ["cartoon character, music, vocalize", "engine, revs, vehicle"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["people clap and speak in the distance", "motors rev and run loudly as a person laughs"], "sample_ids": ["wwyfGO2J4", "zl9Dqx-j7q4"], "start_seconds": ["90", "6"], "properties": ["clap, distance, speak", "motors rev, laugh, loudly"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "water flows as men speak and yell"], "sample_ids": ["w2JXXIAdUdg", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["emits, sleeping, person", "water, flow, men"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sQwlkXjQabo", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["water, spray, surface", "engine, revs, vehicle"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["spraying followed by silence", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["water bubbles and gurgles.", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tB7hWb9gTuQ", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["bubbles, gurgles, water", "music, gunfire, explosion"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["water is splashing and gurgling", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a man speaks followed by another man speaking outside"], "sample_ids": ["ylpYOorfH4o", "viuTg1M-dqg"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "two men, speak, follow"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a woman speaks as she rubs two objects together"], "sample_ids": ["wz7N8YRy74I", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["rooster, crow, background, people", "two objects, woman, speak"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sfAvvZwdLCY", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["water drains, flushes, water", "wind, blow, vehicle"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a train engine runs and a horn blows", "wind blows as people chatter quietly"], "sample_ids": ["zPX9o1uDiI", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["engine, horn, run", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vdoxuJn9lTc", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "rooster, crow, background, men"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "birds chirp and objects are moved around"], "sample_ids": ["zofjfKhqLk8", "yPUYU6t3rwo"], "start_seconds": ["10", "370"], "properties": ["noise, stop, motor", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["u21-Z5gJCB8", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["background, voice, man", "engine revs, vehicle, people"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "multiple motorcycles pass by as a man speaks"], "sample_ids": ["w6RTHR6AeAg", "zcDwZ6W7E3E"], "start_seconds": ["40", "180"], "properties": ["call, owl, screech", "man, speak, motorcycles"], "captions_pred_video": [null, "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yZrFNS7GFBQ", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["pigeon, buzzes, insect", "two men, woman, birds"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["siJFXfGWgDk", "uqFtmnhuqA8"], "start_seconds": ["50", "30"], "properties": ["man, woman, vehicle", "a, b, c"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "vehicles pass by on a roadway"], "sample_ids": ["sLUnaPT5gM8", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["loud, laughter, intermittent", "pass, vehicle, roadway"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vBslzh7saPw", "yDoT73BWsdA"], "start_seconds": ["90", "10"], "properties": ["engine, spools, takes", "engine, revs, vehicle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a race car accelerates and revs its engine "], "question": "which engine is revving", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["yPUYU6t3rwo", "tw76HGONaKg"], "start_seconds": ["370", "570"], "properties": ["birds chirp, objects are moved around, birds", "A, game, keyboard"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["insects buzz and a man speaks", "a man speaks and types on a computer keyboard "], "question": "which entity is a video of a man playing a video game?", "label": 1}, {"captions": ["goats bleat and metal clings", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tH17JPjDPnc", "xKB8O8LTs6s"], "start_seconds": ["260", "70"], "properties": ["bleat, metal, clings", "music, gunfire, explosion"], "captions_pred_video": ["feed of the goats eating hay in the barn", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["zVacuqSb4LI", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["blares, fades, train", "A, game, keyboard"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a man speaks and types on a computer keyboard "], "question": "which entity is a video of a person playing a video game?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["tQWGZLItBXk", "tDlysoZiA1I"], "start_seconds": ["170", "0"], "properties": ["voice, music, whoosh", "animal, grunts, chirps"], "captions_pred_video": ["worms revolution screenshots", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "birds are chirping and a rooster is crowing "], "question": "which entity is more animal-like", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "an infant crying as a woman laughs"], "sample_ids": ["sU53zg9Jp7s", "xhmRY9yhC7c"], "start_seconds": ["380", "20"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a, laugh, infant"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "multiple people speak and children yell while water gurgles"], "sample_ids": ["shmR4OZtzqA", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "multiple, people, yell"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", null], "captions_pred_audio": ["a man speaks while a motor runs", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "a stream of water runs briefly"], "sample_ids": ["uiItxDsDMFI", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["sound, distance, leaves", "stream, water, run"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a saw is being used with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a woman speaks as she rubs two objects together"], "sample_ids": ["u6jIvCtKarQ", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["a, man, speaks", "two objects, woman, speak"], "captions_pred_video": ["footage of a person using a blender on a stove top", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a man speaking over glass clinking?", "label": 0}, {"captions": ["water pouring and bubbling", "paper is crumpling consistently"], "sample_ids": ["uyRfq-jKPpo", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, pouring", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["water is running from a faucet", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a car speeding up in the distance"], "sample_ids": ["un9VQlzgZM", "u0TrcHhkPQ"], "start_seconds": ["5", "20"], "properties": ["wind, speak, laugh", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["an airplane accelerates briefly", "paper is crumpling consistently"], "sample_ids": ["zjTG0gaGCUI", "v5cSxLaHADY"], "start_seconds": ["80", "0"], "properties": ["accelerates, airplane, briefly", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a jet engine roars as wind blows ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a woman talking as an infant is crying", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tMbMDvT50j8", "zl9Dqx-j7q4"], "start_seconds": ["12", "6"], "properties": ["a, talk, infant", "engine, laugh, loud"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a baby cries and a woman speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["an airplane engine runs", "people cheer as a vehicle engine revs"], "sample_ids": ["yVPZ2MNWpms", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["engine, airplane, runs", "engine revs, vehicle, people"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a car is driving by on the road ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zcDwZ6W7E3E", "tdWhHV3X25Q"], "start_seconds": ["180", "60"], "properties": ["a, man, speak", "applause, audience, yells"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a car accelerates and wind blows"], "sample_ids": ["vZAw4apG0Es", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, tick, repeat", "accelerates, wind, blows"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tw76HGONaKg", "yajyRTUQk3U"], "start_seconds": ["570", "400"], "properties": ["music, click, man", "a woman, something, fried"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a beep repeats multiple times", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["y682ml90jGw", "zl9Dqx-j7q4"], "start_seconds": ["11", "6"], "properties": ["beep, repeat, multiple", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a beeping sound is being made ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "paper is crumpling consistently"], "sample_ids": ["uPDn2BFTHk", "v5cSxLaHADY"], "start_seconds": ["140", "0"], "properties": ["woman, laughs, speaks", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a baby laughs and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "an infant crying as a woman laughs"], "sample_ids": ["uOpoD0gGXcs", "xhmRY9yhC7c"], "start_seconds": ["120", "20"], "properties": ["chirps, woman, bird", "a, laugh, infant"], "captions_pred_video": ["a herd of cows grazing in the field", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "vehicles pass by on a roadway"], "sample_ids": ["vXlk0lIQBFo", "tgbONvsP47Y"], "start_seconds": ["470", "0"], "properties": ["wind, speak, vocalize", "pass, vehicle, roadway"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a fire truck entering a garage"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "wind blows as people chatter quietly"], "sample_ids": ["uEU-Hg5MTN8", "xBxDz0CFVn0"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "wind, chatter, people"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vXlk0lIQBFo", "uYT5gxnyMWM"], "start_seconds": ["470", "50"], "properties": ["wind, talk, vocalize", "a, scream, girl"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "people cheer as a vehicle engine revs"], "sample_ids": ["wqADXCzngMw", "xjhAnI2q6hM"], "start_seconds": ["340", "6"], "properties": ["engine, idle, man", "engine revs, vehicle, people"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle engine?", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a propeller rotates loudly and intensely"], "sample_ids": ["xBxDz0CFVn0", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["stream, water, flow", "loud, intense, propeller"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a helicopter is flying overhead "], "question": "which entity is quieter", "label": 0}, {"captions": ["a baby cries and a woman speaks", "a duck quacks continuously"], "sample_ids": ["tMbMDvT50j8", "vh30P49Po6s"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "quacks, continuously, duck"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a baby cries and a woman speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yI-KvObbDoY", "vJ7JPEFhyLA"], "start_seconds": ["260", "16"], "properties": ["sound, smack, wind", "three men, wind, flow"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a liquid flowing?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w5W5Kqtc8E", "wDVMhEdTiVw"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is about water?", "label": 0}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a car speeding up in the distance"], "sample_ids": ["wRBHTgrbiwg", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["bird, owl, speak", "distance, car, speed"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "an engine idles quietly then gradually becomes louder"], "sample_ids": ["wSVhSdj0F0", "vbr9mHKc8WM"], "start_seconds": ["10", "40"], "properties": ["horn honks, keys jingle, slam", "noise, loudness, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "an engine is idling"], "question": "which entity is quieter", "label": 1}, {"captions": ["birds coo incessantly", "a clock ticktocks"], "sample_ids": ["yZrFNS7GFBQ", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["coo, bird, incessant", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of the bird in the cage", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an owl hoots in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks uses a drill", "an infant crying as a woman laughs"], "sample_ids": ["x5eIC7S0fbg", "xhmRY9yhC7c"], "start_seconds": ["60", "20"], "properties": ["A man is speaking, uses a drill, and is a tool", "a, laugh, infant"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["v0x1odnXtP0", "zj2R0XoFr5k"], "start_seconds": ["210", "50"], "properties": ["keyboard, type, computer", "airplane, boy, fly"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "paper is crumpling consistently"], "sample_ids": ["uRExseg-0XI", "v5cSxLaHADY"], "start_seconds": ["210", "0"], "properties": ["woman, man, water", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xBxDz0CFVn0", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["stream, water, flow", "wind, blow, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["goats bleat and metal clings", "a man speaks as a car is passing by"], "sample_ids": ["tH17JPjDPnc", "sK4u5T8hW78"], "start_seconds": ["260", "30"], "properties": ["bleat, metal, clings", "a, car, pass"], "captions_pred_video": ["feed of the goats eating hay in the barn", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a woman speaks happily and an animal chirps"], "sample_ids": ["y2ZBGpgbhHM", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["birds, tweet, pant", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be in a forest", "label": 0}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zuua6-5goWw", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["sound, pop, bird", "engine, laugh, loud"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["se87d6yxEOA", "uZesmtKZGSw"], "start_seconds": ["10", "250"], "properties": ["run, whistle, pass", "men, talk, cars"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is moving faster", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a child speaks in closed space"], "sample_ids": ["vqZuVbG6-HI", "yW6FWLSLkx4"], "start_seconds": ["130", "40"], "properties": ["background, male, female", "child, space, speak"], "captions_pred_video": ["footage is blurry because it's raining outside", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "small dogs yip and bark sharply"], "sample_ids": ["sapQIQUhFc", "v-wcQf4BDY0"], "start_seconds": ["280", "120"], "properties": ["liquid, flow, distance", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["wvKpEYswXO0", "xjhAnI2q6hM"], "start_seconds": ["150", "6"], "properties": ["plastic, tap, speak", "engine revs, vehicle, people"], "captions_pred_video": ["of the person preparing food in the kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a truck is revving its engine and a man is speaking "], "question": "what is being tapped on?", "label": 0}, {"captions": ["a man speaks then multiple motorcycles pass by", "a woman speaks as she rubs two objects together"], "sample_ids": ["zcDwZ6W7E3E", "vzxHnu-SFEw"], "start_seconds": ["180", "80"], "properties": ["a, man, speak", "two objects, woman, speak"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["multiple birds chirp and an animal grunts", "a woman and man speak while food is frying"], "sample_ids": ["tDlysoZiA1I", "zk-xJGQU8-4"], "start_seconds": ["0", "130"], "properties": ["animal, grunt, multiple", "food, man, woman"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a toilet flushes and a female speaks"], "sample_ids": ["un9VQlzgZM", "yaln9y8I7ms"], "start_seconds": ["5", "230"], "properties": ["wind, speak, laugh", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["someone whistles a tune", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sIXTftIuUgw", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a dog whimpers and a woman briefly talks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y1saVTXsKwc", "uZesmtKZGSw"], "start_seconds": ["80", "250"], "properties": ["a, dog, talk", "men, talk, cars"], "captions_pred_video": ["a dog playing with a pink ball", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a dog and a woman talking?", "label": 0}, {"captions": ["a motorcycle idles loudly as wind blows", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["v7jJS8aAyA", "tDlysoZiA1I"], "start_seconds": ["10", "0"], "properties": ["wind, blows, loudly", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "birds are chirping and a rooster is crowing "], "question": "which entity is quieter", "label": 1}, {"captions": ["paper is crumpling consistently", "a man speaks as a motor runs in the background"], "sample_ids": ["v5cSxLaHADY", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "background, motor, run"], "captions_pred_video": ["footage of the person holding a pair of scissors", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a car accelerates and wind blows"], "sample_ids": ["y2ZBGpgbhHM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["dog, chirp, breathe", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a clock ticktocks"], "sample_ids": ["x5cuQjOdM3E", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["cat, talk, meow", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a black background with an airplane flying in the sky", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a cat meows and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["paper is crumpling consistently", "a woman and man are speaking"], "sample_ids": ["v5cSxLaHADY", "vbpKkWvfOu4"], "start_seconds": ["0", "560"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "two people, speaking, woman, man"], "captions_pred_video": ["footage of the person holding a pair of scissors", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman is speaking and a man is speaking"], "question": "which entity is a video of two people speaking?", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vms5XGTDVQc", "vJ7JPEFhyLA"], "start_seconds": ["220", "16"], "properties": ["paper, crumpled, crinkled", "three men, wind, flow"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a video of a man talking while wind blows and some liquid flows?", "label": 0}, {"captions": ["small dogs yip and bark sharply", "a car speeding up in the distance"], "sample_ids": ["v-wcQf4BDY0", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["bark, yip, sharply", "distance, car, speed"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", null], "captions_pred_audio": ["a dog barks and growls", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a person speaks over rustling leaves", "some tunes played by whistling"], "sample_ids": ["zOZleIRqZm4", "u6BnG6YZqJ4"], "start_seconds": ["80", "0"], "properties": ["rustling, leaves, person", "tune, play, whistling"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["tDVADusiIoc", "tw76HGONaKg"], "start_seconds": ["60", "570"], "properties": ["man, radio, blows", "A, game, keyboard"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man speaks and types on a computer keyboard "], "question": "which man is speaking", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "people applaud and hoot and chat quietly"], "sample_ids": ["su6FAOcOA8c", "wwyfGO2J4"], "start_seconds": ["4", "90"], "properties": ["engine, idle, woman", "people, applaud, hoot"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a person speaks over rustling leaves", "wind blowing followed by a zoom"], "sample_ids": ["zOZleIRqZm4", "vr8ZXjEBhMQ"], "start_seconds": ["80", "150"], "properties": ["rustling, leaves, person", "wind, blow, zoom"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a dark barks and whimpers", "pigeons vocalize and birds chirp"], "sample_ids": ["sYj4hpDUZDQ", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["barks, whimpers, dark", "vocalize, bird, chirp"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "of the pigeon in the cage"], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w2M4i1mklOA", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["alarm, gears, turn", "loud, multiple, distance"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "an adult male speaks and dials a rotary phone"], "sample_ids": ["wPz6QRAkEb4", "tK4VlLsNxak"], "start_seconds": ["60", "120"], "properties": ["chirps, tweets, song", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": ["a bird in a cage on top of a pole", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["birds are chirping in the background ", "a man is speaking and using a sewing machine"], "question": "which entity is speaking", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "a child speaks in closed space"], "sample_ids": ["w9lpbUn0hPc", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["male, wind, rustling", "child, space, speak"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sapQIQUhFc", "uEU-Hg5MTN8"], "start_seconds": ["280", "27"], "properties": ["water, stream, trickles", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a telephone rings followed by a woman talking"], "sample_ids": ["xjhAnI2q6hM", "tGcFnX0GHI"], "start_seconds": ["6", "0"], "properties": ["engine revs, vehicle, people", "ring, talk, woman"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a man speaks as a car is passing by"], "sample_ids": ["y2bVZ7rz-5M", "sK4u5T8hW78"], "start_seconds": ["280", "30"], "properties": ["engine, horn, siren", "a, car, pass"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sEprKHm8Sj8", "yajyRTUQk3U"], "start_seconds": ["90", "400"], "properties": ["car, tires, slows", "a woman, something, fried"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sHbXC6na9hg", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "engine, accelerate, idle"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["an engine is idling and vibrating", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["continuous snoring", "a car accelerates and wind blows"], "sample_ids": ["sLkeqCDJIyw", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["loud, snoring, noise", "accelerates, wind, blows"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is not a noise", "label": 1}, {"captions": ["bees buzz and wind blows", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tMJne1a4AFI", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["bees buzz, wind blows, bees", "a woman, a television program, a bird"], "captions_pred_video": ["a swarm of bees on the ground", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking and a dog is whimpering"], "question": "which entity is a video of a television program?", "label": 1}, {"captions": ["several ducks are quacking and squawking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wfHeoPDLMaM", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "multiple, people, yell"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "water splashes and a door squeaks"], "sample_ids": ["x4a9YGIw4ok", "sdXV-ylviw"], "start_seconds": ["120", "190"], "properties": ["water, gurgles, stops", "sound, splash, door"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and water splashes", "a dog barks and taps with background noise "], "question": "which entity has a door squeak?", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "some tunes played by whistling"], "sample_ids": ["spYNpeN7rPY", "u6BnG6YZqJ4"], "start_seconds": ["1", "0"], "properties": ["a clock, ticktock, man", "tune, play, whistling"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a horn rings out as a machine runs by"], "sample_ids": ["x6ijhqRY38s", "slZLHwNbbt4"], "start_seconds": ["250", "300"], "properties": ["something metal, glass, hit", "a, horn, run"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["bees buzz as wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["tMJne1a4AFI", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["bees, buzz, wind", "two men, speak, follow"], "captions_pred_video": ["a swarm of bees on the ground", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single speaker?", "label": 0}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "pigeons vocalize and birds chirp"], "sample_ids": ["uEU-Hg5MTN8", "uiS58TNyUiw"], "start_seconds": ["27", "430"], "properties": ["animal, grunts, snorts", "vocalize, bird, chirp"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["food is frying while a woman speaks", "someone snores nearby"], "sample_ids": ["yhQ2Lg-7qDY", "spJCm8tD9Zo"], "start_seconds": ["130", "90"], "properties": ["food, woman, speak", "someone snores, nearby, someone"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a person is snoring loudly"], "question": "what is a person doing in the first picture?", "label": 0}, {"captions": ["ticking continues without interruption", "a stream of water flows as people talk and wind blows"], "sample_ids": ["v-g-j2uTByM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "stream, water, flow"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a person is whistling a tune"], "sample_ids": ["xERFUeZONz8", "scYRUkrFLiQ"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "a, tune, whistle"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "of the man wearing a bow tie and a suit jacket in front of a red door"], "captions_pred_audio": ["an emergency vehicle siren blares", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "an infant crying as a woman laughs"], "sample_ids": ["rqu8iB22IY", "xhmRY9yhC7c"], "start_seconds": ["5", "20"], "properties": ["sound, repeats, laugh", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["yPUYU6t3rwo", "yeFvk9x0wWI"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "clack, bird, chirp"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["insects buzz and a man speaks", "birds chirp in the background as a car drives by "], "question": "which entity is about birds?", "label": 0}, {"captions": ["multiple birds vocalize and wind blows", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uoGVs9yUqY4", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["multiple, vocalize, wind", "applause, audience, yells"], "captions_pred_video": ["for how to make a wooden shed door youtube", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a machine runs continuously", "vehicles pass by on a roadway"], "sample_ids": ["wdXV3Pv0jiY", "tgbONvsP47Y"], "start_seconds": ["11", "0"], "properties": ["machine, running, continuously", "pass, vehicle, roadway"], "captions_pred_video": ["footage is blurry and shaky", "footage of a fire truck entering a garage"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yeFvk9x0wWI", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["clack, bird, chirp", "airplane, boy, fly"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "people applaud and hoot and chat quietly"], "sample_ids": ["uqFtmnhuqA8", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["a, b, c", "people, applaud, hoot"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", null], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "wind noise takes place into a microphone while rustling occurs"], "sample_ids": ["yeFvk9x0wWI", "w8uLijTqtlU"], "start_seconds": ["30", "70"], "properties": ["chirp, twitter, clatter", "wind, microphone, noise"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage is blurry and shaky"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "the wind is blowing strongly"], "question": "which noise is not made by birds", "label": 1}, {"captions": ["a child yells and another yells", "a infant makes noise and is excited"], "sample_ids": ["vMDHu7Lxcgw", "wIJK3-5y0kA"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "noise, excited, infant"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a baby cries and a woman speaks"], "question": "which entity is more excited", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["y8WEcpOlT3I", "viuTg1M-dqg"], "start_seconds": ["40", "30"], "properties": ["wind, speak, buffeting", "two men, speak, follow"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 0}, {"captions": ["white noise and birds chirping", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wRBHTgrbiwg", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["noise, white, chirping", "engine, laugh, loud"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a stream of water runs briefly", "wind blows as people chatter quietly"], "sample_ids": ["x-PeY8Yb8M4", "xBxDz0CFVn0"], "start_seconds": ["300", "30"], "properties": ["stream, water, run", "wind, chatter, people"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zuua6-5goWw", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "stream, water, flow"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as crickets sing", "a man speaks, then dials a rotary telephone"], "sample_ids": ["ryFDPxgDOGc", "tK4VlLsNxak"], "start_seconds": ["570", "120"], "properties": ["a, crickets, sing", "a, dial, telephone"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and using a sewing machine"], "question": "which entity is a man speaking to a rotary telephone?", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a stream of water runs briefly"], "sample_ids": ["yeFvk9x0wWI", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["clack, bird, chirp", "stream, water, run"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water running down a sink while a man is talking", "paper is crumpling consistently"], "sample_ids": ["vSeGhaZt-aI", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["water, sink, talk", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wztCSUxOf8", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["a crowd, yells, applauds", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["sa6TLVbooCc", "vlS6YMeWAPo"], "start_seconds": ["240", "40"], "properties": ["people, laugh, child", "sheep, baa, birds"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yajyRTUQk3U", "yajyRTUQk3U"], "start_seconds": ["400", "400"], "properties": ["noise, woman, speak", "a woman, something, fried"], "captions_pred_video": ["- a woman cooking in the kitchen", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking while food is frying in the background"], "question": "which woman is speaking over sizzling noise", "label": 0}, {"captions": ["water runs into a sink while men speak", "a man is filing a hard object"], "sample_ids": ["vzceMbklWc", "vveS8HT7Uog"], "start_seconds": ["180", "100"], "properties": ["water, sink, run", "a man, hard, object"], "captions_pred_video": [null, "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["water is running and a man is speaking", "a man is filing and speaking with background noise and breathing "], "question": "which object is harder to file", "label": 0}, {"captions": ["a propeller moves loudly nearby", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["ugHJF0hfYkg", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["loud, propeller, move", "rustling, ducks, quack"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a duck quacks and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sfAvvZwdLCY", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["water drains, flushes, water", "female, spraying, scream"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "loud, continuous burping"], "sample_ids": ["x5cuQjOdM3E", "y636gklDioE"], "start_seconds": ["30", "20"], "properties": ["cat, meows, young woman", "loud, continuous, burping"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a cat meows and a woman speaks", "a person burps loudly several times"], "question": "which is louder", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "an engine runs loudly"], "sample_ids": ["sOa7g-44Dag", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["audio, scratching, man", "loud, engine, run"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "some tunes played by whistling"], "sample_ids": ["soTOh3zYJfY", "u6BnG6YZqJ4"], "start_seconds": ["40", "0"], "properties": ["vehicle, skid, tires", "tune, play, whistling"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "pigeons vocalize and birds chirp"], "sample_ids": ["vms5XGTDVQc", "uiS58TNyUiw"], "start_seconds": ["220", "430"], "properties": ["paper, crumpled, crinkled", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "of the pigeon in the cage"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "some tunes played by whistling"], "sample_ids": ["xl2PIWyXaM", "u6BnG6YZqJ4"], "start_seconds": ["160", "0"], "properties": ["chirp, man, younger person", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["birds are chirping and people are talking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a machine beeps continuously", "people cheer as a vehicle engine revs"], "sample_ids": ["y682ml90jGw", "xjhAnI2q6hM"], "start_seconds": ["11", "6"], "properties": ["beeps, machine, continuously", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a beeping sound is being made ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "some tunes played by whistling"], "sample_ids": ["sxYkFKFIZD0", "u6BnG6YZqJ4"], "start_seconds": ["20", "0"], "properties": ["screech, man, door", "tune, play, whistling"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a telephone rings followed by a woman talking"], "sample_ids": ["su6FAOcOA8c", "tGcFnX0GHI"], "start_seconds": ["4", "0"], "properties": ["engine, idle, woman", "ring, talk, woman"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a recording", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["vZAw4apG0Es", "wSVhSdj0F0"], "start_seconds": ["30", "10"], "properties": ["background, tick, repeat", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a car horn honks and keys jangle with background noise "], "question": "which entity has a horn honk?", "label": 1}, {"captions": ["an audience gives applause", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x6iCUDmRpKQ", "xKB8O8LTs6s"], "start_seconds": ["38", "70"], "properties": ["applause, audience, give", "music, gunfire, explosion"], "captions_pred_video": ["a black background with the moon and stars in the sky", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a group of people are clapping and cheering", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["x5cuQjOdM3E", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["cat, meows, young woman", "loud, multiple, distance"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["water flows followed by women screaming", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["w5W5Kqtc8E", "zl9Dqx-j7q4"], "start_seconds": ["100", "6"], "properties": ["water, flow, women", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a jet engine roars "], "question": "which entity is followed by laughter", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vf9xf3vMsGM", "vb1fPSDI4c"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "multiple, people, yell"], "captions_pred_video": ["of the person washing their hands under the faucet", null], "captions_pred_audio": ["a man is speaking while water is running in the background", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a vehicle engine accelerates and wind blows"], "sample_ids": ["xl2PIWyXaM", "wudZTNBtVqc"], "start_seconds": ["160", "60"], "properties": ["chirp, man, younger person", "accelerates, engine, wind"], "captions_pred_video": [null, "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["birds are chirping and people are talking", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "water flows as men speak and yell"], "sample_ids": ["wTideSjRFS0", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["food, sizzle, woman", "water, flow, men"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "roadway noise occurs and a truck accelerates"], "sample_ids": ["wnpJndXuxLc", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["blows, vehicle, train", "noise, truck, accelerate"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a baby cries and a woman moans", "a stream of water runs briefly"], "sample_ids": ["smDKStoHBJo", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["a, cry, woman", "stream, water, run"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "some men converse over an engine running"], "sample_ids": ["uWAAAL4CIoc", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["a woman, chirps, animal", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman speaking and an animal chirps?", "label": 0}, {"captions": ["three men talk while wind blows and some liquid flows", "winds blows roughly as a vehicle races past"], "sample_ids": ["vJ7JPEFhyLA", "xjvTpk2Zpr8"], "start_seconds": ["16", "70"], "properties": ["three men, wind, flow", "wind, blows, vehicle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars and wind blows "], "question": "which entity shows a vehicle racing past?", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "an engine runs loudly"], "sample_ids": ["y2bVZ7rz-5M", "vqZuVbG6-HI"], "start_seconds": ["280", "130"], "properties": ["engine, horn, siren", "loud, engine, run"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a lawn mower is running and men are speaking "], "question": "which entity has a louder engine", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "water is sprayed across a hard surface"], "sample_ids": ["sEprKHm8Sj8", "sQwlkXjQabo"], "start_seconds": ["90", "10"], "properties": ["car, tires, slows", "water, spray, surface"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "spraying followed by silence"], "question": "which is a liquid", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "water is sprayed across a hard surface"], "sample_ids": ["tK4VlLsNxak", "sQwlkXjQabo"], "start_seconds": ["120", "10"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "water, spray, surface"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "wind blows as people chatter quietly"], "sample_ids": ["u5RmF3c3Aw", "xBxDz0CFVn0"], "start_seconds": ["60", "30"], "properties": ["engine, car, zoom", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "small dogs yip and bark sharply"], "sample_ids": ["wqZ135Ssz0", "v-wcQf4BDY0"], "start_seconds": ["60", "120"], "properties": ["two men, woman, birds", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a person is whistling", "waves crash against a shoreline and people speak"], "sample_ids": ["sIXTftIuUgw", "yFB25fqfU8I"], "start_seconds": ["90", "300"], "properties": ["person, whistling, person", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["uEU-Hg5MTN8", "tDVADusiIoc"], "start_seconds": ["27", "60"], "properties": ["a woman, laughs, animal", "water, radio, man"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a man speaking with light rustling", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zOZleIRqZm4", "uEU-Hg5MTN8"], "start_seconds": ["80", "27"], "properties": ["light, rustling, man", "a woman, laughs, animal"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "an infant crying frantically"], "sample_ids": ["xfaoyyzw2WU", "zwOBqeFTgiU"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "cry, infant, frantically"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "of the baby crying in the car seat"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a baby cries loudly"], "question": "which is louder", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "birds chirp and objects are moved around"], "sample_ids": ["zkKdxzNC97Y", "yPUYU6t3rwo"], "start_seconds": ["27", "370"], "properties": ["loud, bang, noise", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a door is opened and closed", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person speaks briefly", "people applaud and hoot and chat quietly"], "sample_ids": ["zOZleIRqZm4", "wwyfGO2J4"], "start_seconds": ["80", "90"], "properties": ["person, talk, brief", "people, applaud, hoot"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a propeller rotates loudly and intensely"], "sample_ids": ["uiItxDsDMFI", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["wood, piece, saw", "loud, intense, propeller"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a saw is being used with background noise ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a helicopter engine runs", "a car speeding up in the distance"], "sample_ids": ["t5ZbXbniOWk", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["engine, helicopter, run", "distance, car, speed"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tdWhHV3X25Q", "yajyRTUQk3U"], "start_seconds": ["60", "400"], "properties": ["applause, audience, yells", "a woman, something, fried"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sWZzXuWYY", "vfYTJq7nU"], "start_seconds": ["420", "130"], "properties": ["male, clanks, thumps", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a machine?", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vbpKkWvfOu4", "tDVADusiIoc"], "start_seconds": ["560", "60"], "properties": ["a, man, speaks", "water, radio, man"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yRx9txMcBl0", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["accelerates, tires, squeals", "a woman, laughs, animal"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a drill runs and two people laugh"], "sample_ids": ["zdYdyF9-m8U", "tEE3MpBt1sg"], "start_seconds": ["7", "50"], "properties": ["wind, crash, shoreline", "two people, laugh, drill"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["waves crash and wind blows ", "people are laughing breathing and speaking with background noise "], "question": "which entity is stationary", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a race car approaches quickly and slows down squealing tires"], "sample_ids": ["zk-xJGQU8-4", "sEprKHm8Sj8"], "start_seconds": ["130", "90"], "properties": ["food, man, woman", "car, tires, slows"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "an airplane engine spools and people speak"], "sample_ids": ["vbZ-0lGPneg", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["a woman, a television program, a bird", "airplane, engine, spool"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a jet engine is running and people are talking"], "question": "which entity has a bird in it?", "label": 0}, {"captions": ["heavy rain splashes as it falls", "a man speaks followed by another man speaking outside"], "sample_ids": ["wP8ZKrlx3oA", "viuTg1M-dqg"], "start_seconds": ["40", "30"], "properties": ["fall, rain, splash", "two men, speak, follow"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vYkA3cfXp5Q", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["speed, idle, accelerate", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["an engine is idling", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a person", "label": 1}, {"captions": ["a person is burping while a girl speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["vdoxuJn9lTc", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["person, burp, girl", "people, applaud, hoot"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be at a party", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "small dogs yip and bark sharply"], "sample_ids": ["sapQIQUhFc", "v-wcQf4BDY0"], "start_seconds": ["280", "120"], "properties": ["water, trickles, flow", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a dark barks and whimpers"], "sample_ids": ["zF8yoL0rkbI", "sYj4hpDUZDQ"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "barks, whimpers, dark"], "captions_pred_video": ["footage of the traffic on the street at night", "a brown and white dog standing in front of a wall with its mouth open"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a dog barks and a cat meows"], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a child speaks in closed space"], "sample_ids": ["uC9dtII1KDI", "yW6FWLSLkx4"], "start_seconds": ["150", "40"], "properties": ["wind, gusts, distance", "child, space, speak"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a woman and man are speaking", "water flows as men speak and yell"], "sample_ids": ["vbpKkWvfOu4", "vJ7JPEFhyLA"], "start_seconds": ["560", "16"], "properties": ["two people, speaking, woman, man", "water, flow, men"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a man and a woman speaking?", "label": 0}, {"captions": ["a man speaks and is typing on a keyboard", "paper folding and crinkling"], "sample_ids": ["x9JovgqUcs", "zPpG3RD8lSs"], "start_seconds": ["500", "20"], "properties": ["a, man, speaks, keyboard", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man speaks and types on a keyboard", "the wind blows and a mouse clicks "], "question": "which is not a person", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "someone is typing on a computer keyboard"], "sample_ids": ["rqu8iB22IY", "v0x1odnXtP0"], "start_seconds": ["5", "210"], "properties": ["sound, repeats, laugh", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a man woman speak while crickets sing", "people speak as gunfire rings out"], "sample_ids": ["zTLVJCo4WEE", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["a, crickets, sing", "gunfire, ring, speak"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a train horn blows as it passes by", "an airplane engine runs"], "sample_ids": ["zVacuqSb4LI", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["horn, blows, train", "engine, airplane, runs"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a car is driving by on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a stream of water runs briefly", "a man speaks as horns blow"], "sample_ids": ["x-PeY8Yb8M4", "tHyNqRyK34A"], "start_seconds": ["300", "24"], "properties": ["stream, water, run", "a, man, speaks"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking and a car is honking with background noise "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a car speeding up in the distance"], "sample_ids": ["wTjoRj1se3U", "u0TrcHhkPQ"], "start_seconds": ["390", "20"], "properties": ["airplane, engine, spool", "distance, car, speed"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a race car accelerates and revs its engine "], "question": "which object is moving faster", "label": 0}, {"captions": ["male speech with light ticking", "a woman speaks as she rubs two objects together"], "sample_ids": ["xO-Q2BlIIPU", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["male, speech, ticking", "two objects, woman, speak"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a woman speaking?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zcDwZ6W7E3E", "vb1fPSDI4c"], "start_seconds": ["180", "30"], "properties": ["man, speak, motorcycles", "multiple, people, yell"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["w2bYrCVLT60", "yajyRTUQk3U"], "start_seconds": ["120", "400"], "properties": ["ducks, speak, quack", "a woman, something, fried"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "- a woman cooking in the kitchen"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "an airplane engine spools and people speak"], "sample_ids": ["sG7TyPnFDR0", "wTjoRj1se3U"], "start_seconds": ["180", "390"], "properties": ["beeps, machine, smoke alarm", "airplane, engine, spool"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a jet engine is running and people are talking"], "question": "which entity is a machine?", "label": 0}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "water splashes as an animal walks through"], "sample_ids": ["wP8ZKrlx3oA", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["rain, storm, thunder", "animal, water, splashes"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a heavy rain is falling on a surface", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be in a storm", "label": 0}, {"captions": ["an engine runs and wind blows", "a machine beeps continuously"], "sample_ids": ["vs65y4qmyBE", "y682ml90jGw"], "start_seconds": ["340", "11"], "properties": ["engine, run, wind", "beeps, machine, continuously"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xKB8O8LTs6s", "uZesmtKZGSw"], "start_seconds": ["70", "250"], "properties": ["music, radio, gunshots", "men, talk, cars"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "someone whistles a tune"], "sample_ids": ["uEU-Hg5MTN8", "sIXTftIuUgw"], "start_seconds": ["27", "90"], "properties": ["a woman, laughs, animal", "someone, tune, whistle"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["people speak softly as food sizzles", "metal clacking as food and oil sizzles followed by a woman talking"], "sample_ids": ["yhQ2Lg-7qDY", "vW4x7S1VfQc"], "start_seconds": ["130", "150"], "properties": ["food, sizzle, speak", "clacking, oil, woman"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a person cooking fish in a frying pan on a stove top"], "captions_pred_audio": ["a faucet is running and a man is speaking", "food sizzles in a frying pan"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zofjfKhqLk8", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["noise, stop, motor", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a man talks while a clock does ticktock"], "sample_ids": ["sK4u5T8hW78", "spYNpeN7rPY"], "start_seconds": ["30", "1"], "properties": ["a, car, pass", "a clock, ticktock, man"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and breathing with background noise "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a person snoring", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["t8tv5YRMJUg", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["a person, snore, loud", "People, motor, brakes"], "captions_pred_video": ["of a man getting his face licked by another man", null], "captions_pred_audio": ["a person sniffs and breathes heavily", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xvDdE3zNf8Y", "tdWhHV3X25Q"], "start_seconds": ["120", "60"], "properties": ["a, female, speaks", "applause, audience, yells"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "people applaud and hoot and chat quietly"], "sample_ids": ["xyL9F5VrjkE", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["wind, blows, vehicle", "people, applaud, hoot"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be in a theater", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vbpKkWvfOu4", "uZesmtKZGSw"], "start_seconds": ["560", "250"], "properties": ["a, man, speaks", "men, talk, cars"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a person is snoring while sleeping"], "sample_ids": ["yLy-WycbVVE", "vJrjSeP17yE"], "start_seconds": ["30", "40"], "properties": ["background, people, talk", "a person is sleeping, snoring, person"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tQWGZLItBXk", "uEU-Hg5MTN8"], "start_seconds": ["170", "27"], "properties": ["music, person, ding", "a woman, laughs, animal"], "captions_pred_video": ["worms revolution screenshots", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a baby is crying"], "question": "which entity has a person speaking?", "label": 0}, {"captions": ["a woman speaks as frying food sizzles", "a man speaks followed by another man speaking outside"], "sample_ids": ["wTideSjRFS0", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["food, sizzle, woman", "two men, speak, follow"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "material crumbles into a microphone"], "sample_ids": ["t69a8aRKhmc", "vofpvUo6NAw"], "start_seconds": ["30", "220"], "properties": ["a, b, c", "material, crumbles, microphone"], "captions_pred_video": ["footage is blurry and out of focus", "person wrapping a toy car in a plastic bag"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "paper is being crumpled and crinkled"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "dishes cling together then a man begins to speak"], "sample_ids": ["w8uLijTqtlU", "sQGXqGcwOTc"], "start_seconds": ["70", "3"], "properties": ["wind, microphone, noise", "cling, speak, dishes"], "captions_pred_video": ["footage is blurry and shaky", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["the wind is blowing strongly", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vXlk0lIQBFo", "xKB8O8LTs6s"], "start_seconds": ["470", "70"], "properties": ["wind, speak, vocalize", "music, gunfire, explosion"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "dishes cling together then a man begins to speak"], "sample_ids": ["ylpYOorfH4o", "sQGXqGcwOTc"], "start_seconds": ["410", "3"], "properties": ["engine, running, wind", "cling, speak, dishes"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and an engine is revving", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["plastic is tapped on while someone speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wvKpEYswXO0", "zl9Dqx-j7q4"], "start_seconds": ["150", "6"], "properties": ["plastic, tap, speak", "engine, laugh, loud"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a door slams shut roughly"], "sample_ids": ["w5W5Kqtc8E", "zkKdxzNC97Y"], "start_seconds": ["100", "27"], "properties": ["wind, engine, scream", "a door, slams, shut"], "captions_pred_video": [null, "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a door is opened and closed"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "birds chirp and objects are moved around"], "sample_ids": ["wztCSUxOf8", "yPUYU6t3rwo"], "start_seconds": ["130", "370"], "properties": ["a crowd, yells, applauds", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 0}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "someone is typing on a computer keyboard"], "sample_ids": ["sG7TyPnFDR0", "v0x1odnXtP0"], "start_seconds": ["180", "210"], "properties": ["beeps, machine, smoke alarm", "keyboard, type, computer"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a person is typing on a keyboard"], "question": "which entity is typing on a computer keyboard?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "people applaud and hoot and chat quietly"], "sample_ids": ["sAam2NqGhLY", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["snoring, breathing, child", "people, applaud, hoot"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "some men converse over an engine running"], "sample_ids": ["u5RmF3c3Aw", "sCiy7QS1U"], "start_seconds": ["60", "300"], "properties": ["engine, car, zoom", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a car zooming by?", "label": 0}, {"captions": ["a man yells and speaks as water splashes", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vimzuGQvdcU", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["a, man, yells", "wind, blow, vehicle"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a man yelling?", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["xM4joTqDVp4", "uYT5gxnyMWM"], "start_seconds": ["160", "50"], "properties": ["background, chirp, birds", "a, scream, girl"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream in the background", "label": 1}, {"captions": ["water pouring and bubbling", "an infant crying as a woman laughs"], "sample_ids": ["uyRfq-jKPpo", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["water, bubbles, pouring", "a, laugh, infant"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["water is running from a faucet", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sWZzXuWYY", "wz7N8YRy74I"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a car speeding up in the distance"], "sample_ids": ["wSVhSdj0F0", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["beep, clang, footsteps", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a clock ticktocks"], "sample_ids": ["voJh2gJxXhA", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["music, frog, croak", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["people speak then an engine runs", "a jet engine spools up and takes off"], "sample_ids": ["uMTTDZ2mb4", "vBslzh7saPw"], "start_seconds": ["30", "90"], "properties": ["engine, run, people", "engine, spools, takes"], "captions_pred_video": [null, "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a jet engine roars and accelerates "], "question": "which entity is a video of an engine running?", "label": 0}, {"captions": ["a fly buzzes around loudly as birds chirp", "birds vocalize and chirp continuously"], "sample_ids": ["uJV8NDaHqqk", "w1mlz3Pe4fU"], "start_seconds": ["100", "300"], "properties": ["loud, fly, chirp", "vocalize, chirp, continuously"], "captions_pred_video": ["a bee hive in a wooden box", "of a bird in a cage"], "captions_pred_audio": ["a swarm of bees buzzing around", "birds are chirping and singing"], "question": "which entity is quieter", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "frogs croak and vocalize"], "sample_ids": ["weDbePuc-Xc", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["cartoon character, music, vocalize", "croak, vocalize, frog"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a close up of a frog in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["xl2PIWyXaM", "wwyfGO2J4"], "start_seconds": ["160", "90"], "properties": ["chirp, man, younger person", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["an insect buzzes around continuously", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["v25l1jef3JY", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["buzzes, continuously, insect", "airplane, boy, fly"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a man speaks followed by another man speaking outside"], "sample_ids": ["vf9xf3vMsGM", "viuTg1M-dqg"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "two men, speak, follow"], "captions_pred_video": ["of the person washing their hands under the faucet", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["food is frying while a woman speaks", "a car accelerates and wind blows"], "sample_ids": ["yhQ2Lg-7qDY", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["food, woman, speak", "accelerates, wind, blows"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uRExseg-0XI", "w34HjHr6gAY"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "beeps, hit, woman"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a clock ticktocks"], "sample_ids": ["y2bVZ7rz-5M", "v-g-j2uTByM"], "start_seconds": ["280", "30"], "properties": ["engine, horn, siren", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a man talks followed by a woman shouting"], "sample_ids": ["sEprKHm8Sj8", "s3cTDAj31g"], "start_seconds": ["90", "80"], "properties": ["car, tires, slows", "man, talk, woman"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a man speaks while water trickles and flows"], "sample_ids": ["x6ijhqRY38s", "sapQIQUhFc"], "start_seconds": ["250", "280"], "properties": ["bowl, silverware, man", "water, trickles, flow"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is about water flowing?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zk-xJGQU8-4", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["food, man, woman", "a woman, laughs, animal"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "people applaud and hoot and chat quietly"], "sample_ids": ["y2bVZ7rz-5M", "wwyfGO2J4"], "start_seconds": ["280", "90"], "properties": ["motor noise, horn, siren", "people, applaud, hoot"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a machine runs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vD6lYD1l0BY", "yajyRTUQk3U"], "start_seconds": ["330", "400"], "properties": ["a, machine, run", "a woman, something, fried"], "captions_pred_video": ["game controller being held in the hands of the person", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["some clanking with distant murmuring", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uMTTDZ2mb4", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["clanking, murmuring, distant", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a duck quacks continuously", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vh30P49Po6s", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["quacks, continuously, duck", "applause, audience, yells"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["people speak softly as food sizzles", "water flows as men speak and yell"], "sample_ids": ["yhQ2Lg-7qDY", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["food, sizzle, speak", "water, flow, men"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["food is frying then a woman speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["ukxt9I7eMMg", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["food, woman, speak", "applause, audience, yells"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a propeller rotates loudly and intensely"], "sample_ids": ["vXlk0lIQBFo", "ugHJF0hfYkg"], "start_seconds": ["470", "10"], "properties": ["wind, talk, vocalize", "loud, intense, propeller"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["xO-Q2BlIIPU", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["two men, exclamation, speak", "a, scream, girl"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "an airplane engine spools and people speak"], "sample_ids": ["s4Uz1Ffgo04", "wTjoRj1se3U"], "start_seconds": ["100", "390"], "properties": ["roars, background, people speaking", "airplane, engine, spool"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a jet engine is running and people are talking"], "question": "which entity is quieter", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["xjvTpk2Zpr8", "siJFXfGWgDk"], "start_seconds": ["70", "50"], "properties": ["engine, run, wind", "man, woman, vehicle"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking and birds are chirping in the background "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "paper folding and crinkling"], "sample_ids": ["xZepNM9qcRA", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["background, motor, run", "paper, fold, crinkle"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "the wind blows and a mouse clicks "], "question": "which entity is more likely to be used in a classroom", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "someone is typing on a computer keyboard"], "sample_ids": ["x5cuQjOdM3E", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["cat, talk, meow", "keyboard, type, computer"], "captions_pred_video": ["a black background with an airplane flying in the sky", "how to make money on youtube in spanish"], "captions_pred_audio": ["a cat meows and a woman speaks", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wsHBIgzs9Fs", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["horn, continuous, buzzing", "female, spraying, scream"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a woman is speaking and a baby is crying"], "question": "which entity is more abrasive", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "an engine runs loudly"], "sample_ids": ["w2JXXIAdUdg", "vqZuVbG6-HI"], "start_seconds": ["10", "130"], "properties": ["emits, sleeping, person", "loud, engine, run"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["siJFXfGWgDk", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["man, woman, vehicle", "people, applaud, hoot"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "an airplane engine runs"], "sample_ids": ["wRV8yMk886E", "yVPZ2MNWpms"], "start_seconds": ["0", "0"], "properties": ["liquid, spray, nozzle", "engine, airplane, runs"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["a male speaks and another male speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["viuTg1M-dqg", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["two males, speaking, male", "people, applaud, hoot"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "music plays followed by gunshots and then an explosion"], "sample_ids": ["vf44CgrjT0A", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["loud, long, person", "music, gunshots, explosion"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a loud burp", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is louder", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sAam2NqGhLY", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["snoring, breathing, child", "airplane, boy, fly"], "captions_pred_video": ["of a little girl sleeping on a couch", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person is snoring", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a man speaks followed by another man speaking outside"], "sample_ids": ["xjvTpk2Zpr8", "viuTg1M-dqg"], "start_seconds": ["70", "30"], "properties": ["engine, run, wind", "two men, speak, follow"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single person speaking?", "label": 0}, {"captions": ["some people speak", "a man speaks as a motor runs in the background"], "sample_ids": ["vbZ-0lGPneg", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "background, motor, run"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vbZ-0lGPneg", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["a woman, a television program, a bird", "gun, shoot, water"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["w6RTHR6AeAg", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["call, owl, screech", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["u5RmF3c3Aw", "xfaoyyzw2WU"], "start_seconds": ["60", "180"], "properties": ["engine, car, zoom", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows strongly", "a man speaks followed by another man speaking outside"], "sample_ids": ["w8uLijTqtlU", "viuTg1M-dqg"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "two men, speak, follow"], "captions_pred_video": ["footage is blurry and shaky", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sDSppXIlJrs", "sLUnaPT5gM8"], "start_seconds": ["27", "0"], "properties": ["microphone, water, wind", "loud, laughter, intermittent"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a scream", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "an adult man speaks over glass clinking"], "sample_ids": ["uYT5gxnyMWM", "u6jIvCtKarQ"], "start_seconds": ["50", "70"], "properties": ["a, scream, girl", "a, man, speaks"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a person using a blender on a stove top"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and dishes are being moved with background noise "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "an airplane engine runs"], "sample_ids": ["x9JovgqUcs", "yVPZ2MNWpms"], "start_seconds": ["500", "0"], "properties": ["a, man, speaks, keyboard", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a car is driving by on the road "], "question": "which is a moving object", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xyL9F5VrjkE", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["wind, blows, vehicle", "men, talk, cars"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wyllXV6PjKo", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["a kid, talk, cry", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a grown man speaks and water bubbles and runs"], "sample_ids": ["smDKStoHBJo", "vSeGhaZt-aI"], "start_seconds": ["0", "50"], "properties": ["a, talk, baby, cry", "water, bubbles, run"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and pouring liquid with background noise "], "question": "which entity has a baby?", "label": 0}, {"captions": ["a frog vocalizes while birds chirp", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vMf1dLD6Sng", "y8WEcpOlT3I"], "start_seconds": ["6", "40"], "properties": ["frog, bird, vocalize", "harsh, wind, blows"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a frog croaks loudly", "a man is speaking with wind noise in the background "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a duck quacks continuously"], "sample_ids": ["t97k0cejSQE", "vh30P49Po6s"], "start_seconds": ["250", "30"], "properties": ["bird, chirp, insect", "quacks, continuously, duck"], "captions_pred_video": ["a bee on a purple thistle flower", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 0}, {"captions": ["a baby laugh at a sputter", "a man speaks as a car is passing by"], "sample_ids": ["sLUnaPT5gM8", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["laugh, sputter, baby", "a, car, pass"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks while vehicles pass by", "a telephone rings followed by a woman talking"], "sample_ids": ["sK4u5T8hW78", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["a, man, talk", "ring, talk, woman"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["tOj4tdLRaA", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["woman, laugh, baby", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "an airplane engine spools and people speak"], "sample_ids": ["vzceMbklWc", "wTjoRj1se3U"], "start_seconds": ["180", "390"], "properties": ["water, faucet, sink", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["water is running and a man is speaking", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a frog croaks as other frogs croak in the background"], "sample_ids": ["tw76HGONaKg", "yswmmRZFItk"], "start_seconds": ["570", "0"], "properties": ["A, game, keyboard", "background, frog, croak"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a close up of a frog in the water"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a stream runs then someone speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wbHTKEJZyhc", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["stream, run, someone", "loud, multiple, distance"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaking with light rustling", "people cheer as a vehicle engine revs"], "sample_ids": ["zOZleIRqZm4", "xjhAnI2q6hM"], "start_seconds": ["80", "6"], "properties": ["light, rustling, man", "engine revs, vehicle, people"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["people clap and speak in the distance", "multiple motorcycles pass by as a man speaks"], "sample_ids": ["wwyfGO2J4", "zcDwZ6W7E3E"], "start_seconds": ["90", "180"], "properties": ["clap, distance, speak", "man, speak, motorcycles"], "captions_pred_video": [null, "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["someone whistles a tune", "people speak softly as food sizzles"], "sample_ids": ["sIXTftIuUgw", "yhQ2Lg-7qDY"], "start_seconds": ["90", "130"], "properties": ["someone, tune, whistle", "food, sizzle, speak"], "captions_pred_video": [null, "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a person whistling a song", "a faucet is running and a man is speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "waves crash against a shoreline and people speak"], "sample_ids": ["uPDn2BFTHk", "yFB25fqfU8I"], "start_seconds": ["140", "300"], "properties": ["woman, laughs, speaks", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "an insect buzzes around continuously"], "sample_ids": ["yZmhM1HcsyE", "v25l1jef3JY"], "start_seconds": ["4", "0"], "properties": ["engine, roar, water", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "dishes cling together then a man begins to speak"], "sample_ids": ["zkKdxzNC97Y", "sQGXqGcwOTc"], "start_seconds": ["27", "3"], "properties": ["hard, surface, door", "cling, speak, dishes"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a door is opened and closed", "mechanisms are operating and water is splashing "], "question": "which entity is about a door slamming shut?", "label": 0}, {"captions": ["loud intermittent buzzing with intermittent laughter", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sLUnaPT5gM8", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["loud, laughter, intermittent", "three men, wind, flow"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vBHyYJ8pL0", "wDVMhEdTiVw"], "start_seconds": ["2", "30"], "properties": ["noise, door, opening", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["tw76HGONaKg", "ziUT9IFTkjg"], "start_seconds": ["570", "10"], "properties": ["A, game, keyboard", "background, birds, rustling"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "birds are chirping and a chime is ringing "], "question": "which entity is a video?", "label": 0}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a car accelerates and wind blows"], "sample_ids": ["xNMovAf3o50", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["rain, thunder, music", "accelerates, wind, blows"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", null], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a small engine spits as it runs", "people applaud and hoot and chat quietly"], "sample_ids": ["sZvwOuuPGP0", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["spits, engine, runs", "people, applaud, hoot"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", null], "captions_pred_audio": ["a medium engine is running ", "people are clapping and speaking with background noise "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a person is whistling a tune", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["scYRUkrFLiQ", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["a, tune, whistle", "harsh, wind, blows"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "some tunes played by whistling"], "sample_ids": ["zcDwZ6W7E3E", "u6BnG6YZqJ4"], "start_seconds": ["180", "0"], "properties": ["a, man, speak", "tune, play, whistling"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a person whistles a meandering tune", "a man sprays as a scraping occurs in the background"], "sample_ids": ["uFoga8sHpiw", "sOa7g-44Dag"], "start_seconds": ["90", "30"], "properties": ["person, tune, whistle", "background, man, spray"], "captions_pred_video": ["footage of a bird in a cage", "footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic"], "captions_pred_audio": ["a person whistles a song", "a man is speaking and rubbing his hands together "], "question": "which entity is more active", "label": 1}, {"captions": ["a helicopter engine runs", "pigeons vocalize and birds chirp"], "sample_ids": ["t5ZbXbniOWk", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["engine, helicopter, run", "vocalize, bird, chirp"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "of the pigeon in the cage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a man is filing a hard object", "a man speaks as a motor runs in the background"], "sample_ids": ["vveS8HT7Uog", "xZepNM9qcRA"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "background, motor, run"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which object is harder to file", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "a frog croaks as other frogs croak in the background"], "sample_ids": ["xM4joTqDVp4", "yswmmRZFItk"], "start_seconds": ["160", "0"], "properties": ["background, chirp, birds", "background, frog, croak"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tDVADusiIoc", "vb1fPSDI4c"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "multiple, people, yell"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an emergency siren wails as it passes", "people talk quietly in the distance, followed by a police car siren wailing"], "sample_ids": ["vGj1XLJvNrw", "wy1eKjR7KC0"], "start_seconds": ["0", "30"], "properties": ["wails, wails, pass", "people, talk, distance"], "captions_pred_video": ["footage of a police car driving down a city street", "two police officers riding motorcycles down the street"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a man is speaking and a siren is going off"], "question": "which entity is wails as it passes?", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wyllXV6PjKo", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a kid, talk, cry", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a baby is crying"], "question": "which entity has a female spraying and a female screaming?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w2M4i1mklOA", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["alarm, gears, turn", "three men, wind, flow"], "captions_pred_video": ["footage of an antique clock", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a clock?", "label": 0}, {"captions": ["people speak as gunfire rings out", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wqTCwqVRDlk", "w5W5Kqtc8E"], "start_seconds": ["80", "100"], "properties": ["gunfire, ring, speak", "wind, blow, vehicle"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", null], "captions_pred_audio": ["a man is speaking and a gun is fired", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "multiple people speak and children yell while water gurgles"], "sample_ids": ["v5P-ThUCINM", "vb1fPSDI4c"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and birds are chirping", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "water is sprayed across a hard surface"], "sample_ids": ["sa6TLVbooCc", "sQwlkXjQabo"], "start_seconds": ["240", "10"], "properties": ["people, laugh, child", "water, spray, surface"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a beep repeats multiple times", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y682ml90jGw", "sSMl2vc3ek"], "start_seconds": ["11", "20"], "properties": ["beep, repeat, multiple", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["food is frying and sizzles", "a toilet flushes and water drains"], "sample_ids": ["zNRChLjqcU", "sfAvvZwdLCY"], "start_seconds": ["220", "20"], "properties": ["food is frying, sizzles, food", "water drains, flushes, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["water is running from a faucet into a sink", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a man talks while vehicles pass by", "water flows as men speak and yell"], "sample_ids": ["sK4u5T8hW78", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, man, talk", "water, flow, men"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a man talking while vehicles pass by?", "label": 0}, {"captions": ["multiple ducks quack continuously", "an infant crying frantically"], "sample_ids": ["wfHeoPDLMaM", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "cry, infant, frantically"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of the baby crying in the car seat"], "captions_pred_audio": ["ducks are quacking", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vf9xf3vMsGM", "su6FAOcOA8c"], "start_seconds": ["540", "4"], "properties": ["A man speaks while turning a water faucet on.", "engine, idle, woman"], "captions_pred_video": ["of the person washing their hands under the faucet", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a woman is speaking and a subway train is moving "], "question": "which entity is a man speaking while turning a water faucet on?", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "a machine beeps continuously"], "sample_ids": ["s3cTDAj31g", "y682ml90jGw"], "start_seconds": ["80", "11"], "properties": ["man, talk, woman", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["water flows as men speak and yell", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vJ7JPEFhyLA", "vfYTJq7nU"], "start_seconds": ["16", "130"], "properties": ["water, flow, men", "rustling, ducks, quack"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["wind blows as people chatter quietly", "people applaud and hoot and chat quietly"], "sample_ids": ["xBxDz0CFVn0", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["wind, chatter, people", "people, applaud, hoot"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a person is whistling", "plastic is tapped on while someone speaks"], "sample_ids": ["sIXTftIuUgw", "wvKpEYswXO0"], "start_seconds": ["90", "150"], "properties": ["person, whistling, person", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a sleeping person emits a gravely snore"], "sample_ids": ["ylpYOorfH4o", "w2JXXIAdUdg"], "start_seconds": ["410", "10"], "properties": ["motor, run, steady", "emits, sleeping, person"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a person snoring and a dog whimpering"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a person screams glaringly", "a man speaks as a car is passing by"], "sample_ids": ["xC8kbrKJmco", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["glaringly, screams, person", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more passive", "label": 1}, {"captions": ["water flows as men speak and yell", "a man speaks as a car is passing by"], "sample_ids": ["vJ7JPEFhyLA", "sK4u5T8hW78"], "start_seconds": ["16", "30"], "properties": ["water, flow, men", "a, car, pass"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more calm", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "birds chirp and objects are moved around"], "sample_ids": ["w9lpbUn0hPc", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["male, wind, rustling", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a clock ticktocks"], "sample_ids": ["xBxDz0CFVn0", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["stream, water, flow", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is blurry and out of focus", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a cat meows as a young woman speaks"], "sample_ids": ["zj2R0XoFr5k", "x5cuQjOdM3E"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, overhead", "cat, meows, young woman"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a cat meows and a woman speaks"], "question": "which entity is a pet", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tEE3MpBt1sg", "zFjIWfSD-4"], "start_seconds": ["50", "410"], "properties": ["drill, something, laugh", "People, motor, brakes"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a drill?", "label": 0}, {"captions": ["children cheer as a man speaks then an audience screams", "paper folding and crinkling"], "sample_ids": ["vJvryTwuAV8", "zPpG3RD8lSs"], "start_seconds": ["16", "20"], "properties": ["audience, cheer, man", "paper, fold, crinkle"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling paper?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["ylpYOorfH4o", "xKB8O8LTs6s"], "start_seconds": ["410", "70"], "properties": ["engine, running, wind", "music, gunfire, explosion"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and an engine is revving", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "pigeons vocalize and birds chirp"], "sample_ids": ["vz8868znkVQ", "uiS58TNyUiw"], "start_seconds": ["60", "430"], "properties": ["audio, click, kid speaking", "vocalize, bird, chirp"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "of the pigeon in the cage"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uoGVs9yUqY4", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["multiple, vocalize, wind", "a woman, laughs, animal"], "captions_pred_video": ["for how to make a wooden shed door youtube", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vJ7JPEFhyLA", "xKB8O8LTs6s"], "start_seconds": ["16", "70"], "properties": ["three men, wind, flow", "music, gunfire, explosion"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["a child speaks in closed space", "a infant makes noise and is excited"], "sample_ids": ["yW6FWLSLkx4", "wIJK3-5y0kA"], "start_seconds": ["40", "30"], "properties": ["child, space, speak", "noise, excited, infant"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a baby cries and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w0xsN8X18Y", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["music, surface, rain", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause water to slosh", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a man speaks as a motor runs in the background"], "sample_ids": ["vYkA3cfXp5Q", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, idle", "background, motor, run"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an engine is idling", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a vehicle engine?", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["sa6TLVbooCc", "xjhAnI2q6hM"], "start_seconds": ["240", "6"], "properties": ["people, laugh, child", "engine revs, vehicle, people"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an airplane engine spools and people speak", "people speak as gunfire rings out"], "sample_ids": ["wTjoRj1se3U", "wqTCwqVRDlk"], "start_seconds": ["390", "80"], "properties": ["airplane, engine, spool", "gunfire, ring, speak"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a stream of water runs briefly"], "sample_ids": ["zPX9o1uDiI", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["engine, horn, run", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 0}, {"captions": ["a stream runs then someone speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wbHTKEJZyhc", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["stream, run, someone", "applause, audience, yells"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a clock ticktocks"], "sample_ids": ["xvDdE3zNf8Y", "v-g-j2uTByM"], "start_seconds": ["120", "30"], "properties": ["A, crumple, paper", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman speaks and crumples paper", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as crickets sing", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["ryFDPxgDOGc", "tdWhHV3X25Q"], "start_seconds": ["570", "60"], "properties": ["a, crickets, sing", "applause, audience, yells"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["someone snores nearby", "paper folding and crinkling"], "sample_ids": ["spJCm8tD9Zo", "zPpG3RD8lSs"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "paper, fold, crinkle"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a person is snoring loudly", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "wind blowing followed by a zoom"], "sample_ids": ["yVumC9TGknc", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["humming, clock, birds", "wind, blow, zoom"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a series of beeps and chirps", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "an infant crying as a woman laughs"], "sample_ids": ["tw76HGONaKg", "xhmRY9yhC7c"], "start_seconds": ["570", "20"], "properties": ["music, click, man", "a, laugh, infant"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water drains", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sfAvvZwdLCY", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["water drains, flushes, water", "female, spraying, scream"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["smGI3C1NZc", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["water, drain, toilet", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and laughing?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a man speaks as a car is passing by"], "sample_ids": ["su6FAOcOA8c", "sK4u5T8hW78"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "a, car, pass"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a woman making an announcement?", "label": 0}, {"captions": ["an engine sputters followed by a car zooming by", "females talk and laugh over gusting wind"], "sample_ids": ["u5RmF3c3Aw", "un9VQlzgZM"], "start_seconds": ["60", "5"], "properties": ["engine, car, zoom", "females, talk, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vr8ZXjEBhMQ", "vlS6YMeWAPo"], "start_seconds": ["150", "40"], "properties": ["wind, blow, zoom", "sheep, baa, birds"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a goat bleats and birds chirp"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a person is whistling a tune", "water splashes as an animal walks through"], "sample_ids": ["scYRUkrFLiQ", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["a, tune, whistle", "animal, water, splashes"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a person whistling a song", "water splashes and gurgles as people speak"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wAAkbZToh8", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man burps and a woman speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a train horn blows as it passes by", "a vehicle accelerates and squeals tires"], "sample_ids": ["zVacuqSb4LI", "yRx9txMcBl0"], "start_seconds": ["30", "40"], "properties": ["horn, blows, train", "accelerates, tires, squeals"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wsHBIgzs9Fs", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["horn, continuous, buzzing", "rooster, crow, background, men"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird?", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "some tunes played by whistling"], "sample_ids": ["uKCSGgof8gI", "u6BnG6YZqJ4"], "start_seconds": ["12", "0"], "properties": ["chirps, distance, signal", "tune, play, whistling"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "water pouring and bubbling"], "sample_ids": ["yI-KvObbDoY", "uyRfq-jKPpo"], "start_seconds": ["260", "50"], "properties": ["sound, smack, wind", "water, bubbles, pouring"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as horns blow", "winds blows roughly as a vehicle races past"], "sample_ids": ["tHyNqRyK34A", "xjvTpk2Zpr8"], "start_seconds": ["24", "70"], "properties": ["a, man, speaks", "wind, blows, vehicle"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yYEVLuqEytU", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["animal, pig, background", "engine, laugh, loud"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a man driving a car in the dark"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a jet engine roars "], "question": "which entity is followed by a man laughing?", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["tPJvjq9QePY", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["animal, bleat, moo", "background, motor, run"], "captions_pred_video": ["a dog and a sheep in a barn", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a baby cries and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a man speaks as a car is passing by"], "sample_ids": ["vdoxuJn9lTc", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "a, car, pass"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a guy speaks with birds chirping in the background"], "sample_ids": ["uWAAAL4CIoc", "v5P-ThUCINM"], "start_seconds": ["0", "400"], "properties": ["a woman, chirps, animal", "background, chirp, bird"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking and birds are chirping"], "question": "which entity has a bird chirping in the background?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "waves crash against a shoreline and people speak"], "sample_ids": ["v0x1odnXtP0", "yFB25fqfU8I"], "start_seconds": ["210", "300"], "properties": ["keyboard, type, computer", "wave, crash, shoreline"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is a natural phenomenon", "label": 1}, {"captions": ["a male speaks and another male speaks", "a man speaks as a machine runs"], "sample_ids": ["viuTg1M-dqg", "vD6lYD1l0BY"], "start_seconds": ["30", "330"], "properties": ["two males, speaking, male", "a, machine, run"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "game controller being held in the hands of the person"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and dishes are being washed "], "question": "which entity has a machine running", "label": 1}, {"captions": ["a consistent ticking pattern", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sCeWURVHfOM", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["ticking, pattern, clock", "music, gunfire, explosion"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["ticking of a clock", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "some men converse over an engine running"], "sample_ids": ["w2M4i1mklOA", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["alarm, gears, turn", "men, converse, engine"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a clock?", "label": 0}, {"captions": ["a telephone rings followed by a woman talking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tGcFnX0GHI", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["ring, talk, woman", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster crow?", "label": 1}, {"captions": ["people speak as gunfire rings out", "an infant crying frantically"], "sample_ids": ["wqTCwqVRDlk", "zwOBqeFTgiU"], "start_seconds": ["80", "30"], "properties": ["gunfire, ring, speak", "cry, infant, frantically"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a car speeding up in the distance"], "sample_ids": ["uWAAAL4CIoc", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["a woman, chirps, animal", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a woman speaks as she rubs two objects together"], "sample_ids": ["vddP56-ogds", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["liquid, laughs, man", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["an animal quacks rapidly", "a loud engine muffles a man as he speaks"], "sample_ids": ["vh30P49Po6s", "xyx6eNVEYRY"], "start_seconds": ["30", "380"], "properties": ["animal, quacks, rapidly", "loud, engine, muffles"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a duck is quacking loudly", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a vehicle engine runs and someone speaks"], "sample_ids": ["w5W5Kqtc8E", "zF8yoL0rkbI"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "engine, run, someone"], "captions_pred_video": [null, "footage of the traffic on the street at night"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "the wind is blowing hard and water is splashing"], "question": "which entity has a vehicle engine running and someone speaking?", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "an infant crying as a woman laughs"], "sample_ids": ["wyllXV6PjKo", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["a baby, a woman, a man", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman speaks and a baby cries", "a baby cries and a woman speaks"], "question": "which entity is a video of a baby crying?", "label": 0}, {"captions": ["a toilet flushes and water drains", "wind blowing followed by a zoom"], "sample_ids": ["sfAvvZwdLCY", "vr8ZXjEBhMQ"], "start_seconds": ["20", "150"], "properties": ["water drains, flushes, water", "wind, blow, zoom"], "captions_pred_video": ["footage of the toilet in the bathroom", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a toilet is flushed", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["birds chirp and wind blows", "vehicles pass by on a roadway"], "sample_ids": ["sxIvBMSavMQ", "tgbONvsP47Y"], "start_seconds": ["210", "0"], "properties": ["birds, chirp, wind", "pass, vehicle, roadway"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person sniffs and sneezes", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uRlbY6aoBU", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["sneezes, person, sniffs", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a crowd of people are talking and laughing"], "question": "which entity is more active", "label": 1}, {"captions": ["water splashes and a door squeaks", "a telephone rings followed by a woman talking"], "sample_ids": ["sdXV-ylviw", "tGcFnX0GHI"], "start_seconds": ["190", "0"], "properties": ["sound, splash, door", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a frog croaks as other frogs croak in the background"], "sample_ids": ["ugHJF0hfYkg", "yswmmRZFItk"], "start_seconds": ["10", "0"], "properties": ["loud, intense, propeller", "background, frog, croak"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a close up of a frog in the water"], "captions_pred_audio": ["a helicopter is flying overhead ", "a frog is croaking"], "question": "which is quieter", "label": 1}, {"captions": ["water running down a sink while a man is talking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vSeGhaZt-aI", "wqZ135Ssz0"], "start_seconds": ["50", "60"], "properties": ["water, sink, talk", "two men, woman, birds"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a stream of water runs briefly"], "sample_ids": ["xl2PIWyXaM", "x-PeY8Yb8M4"], "start_seconds": ["160", "300"], "properties": ["chirp, man, younger person", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["birds are chirping and people are talking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a machine runs continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wdXV3Pv0jiY", "yDoT73BWsdA"], "start_seconds": ["11", "10"], "properties": ["machine, running, continuously", "engine, revs, vehicle"], "captions_pred_video": ["footage is blurry and shaky", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a race car accelerates and revs its engine "], "question": "which machine is running continuously", "label": 0}, {"captions": ["a man speaks as a machine runs", "people speak as gunfire rings out"], "sample_ids": ["vD6lYD1l0BY", "wqTCwqVRDlk"], "start_seconds": ["330", "80"], "properties": ["a, machine, run", "gunfire, ring, speak"], "captions_pred_video": ["game controller being held in the hands of the person", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vddP56-ogds", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["liquid, laughs, man", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a weapon fires multiple times", "people applaud and hoot and chat quietly"], "sample_ids": ["sMC07Ucy7kg", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["weapon, fire, multiple", "people, applaud, hoot"], "captions_pred_video": ["footage is from a car's point of view", null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 0}, {"captions": ["a cat meows and children speak", "people cheer as a vehicle engine revs"], "sample_ids": ["x5cuQjOdM3E", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["cat, speak, children", "engine revs, vehicle, people"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a cat meows and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "waves crash against a shoreline and people speak"], "sample_ids": ["w2M4i1mklOA", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["loud, chime, bell", "wave, crash, shoreline"], "captions_pred_video": ["footage of an antique clock", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone is burping continuously", "a duck quacks loudly and continuously"], "sample_ids": ["y636gklDioE", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "loud, continuous, quacks"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person burps loudly several times", "a duck is quacking loudly"], "question": "which entity is making a noise", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["s6DESzUTGjY", "uYT5gxnyMWM"], "start_seconds": ["16", "50"], "properties": ["wind, laugh, woman", "a, scream, girl"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "two men speak as a buffeting wind blows"], "sample_ids": ["s6DESzUTGjY", "y8WEcpOlT3I"], "start_seconds": ["16", "40"], "properties": ["wind, laugh, woman", "wind, speak, buffeting"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 0}, {"captions": ["some people speak", "a woman speaks happily and an animal chirps"], "sample_ids": ["vbZ-0lGPneg", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "a woman, chirps, animal"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking and a dog is barking "], "question": "which entity has a more chirpy animal", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "people applaud and hoot and chat quietly"], "sample_ids": ["tjmoSi330GM", "wwyfGO2J4"], "start_seconds": ["23", "90"], "properties": ["speed, water, boat", "people, applaud, hoot"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "people are clapping and speaking with background noise "], "question": "which entity is moving at a slower speed", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "paper folding and crinkling"], "sample_ids": ["wTideSjRFS0", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["food, sizzle, woman", "paper, fold, crinkle"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["an insect buzzes around continuously", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["v25l1jef3JY", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["buzzes, continuously, insect", "wind, blow, vehicle"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["water splashes and wind noise is made into a microphone", "a woman speaks followed by another woman whimpering and speaking"], "sample_ids": ["sDSppXIlJrs", "xOZfdgAgJ9o"], "start_seconds": ["27", "40"], "properties": ["microphone, water, wind", "woman, whimpering, speaking"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "footage of a woman talking to a man in a doctor's office"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity is a recording of a woman speaking?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "an engine runs loudly"], "sample_ids": ["v0x1odnXtP0", "vqZuVbG6-HI"], "start_seconds": ["210", "130"], "properties": ["keyboard, type, computer", "loud, engine, run"], "captions_pred_video": ["how to make money on youtube in spanish", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person is typing on a keyboard", "a lawn mower is running and men are speaking "], "question": "which is quieter", "label": 0}, {"captions": ["goats bleat and people speak", "a car accelerates and wind blows"], "sample_ids": ["z5iUE5h0EPs", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["goats bleat, people speak, language", "accelerates, wind, blows"], "captions_pred_video": ["of the goat in the barn", null], "captions_pred_audio": ["a goat bleats and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as horns blow", "water flows as men speak and yell"], "sample_ids": ["tHyNqRyK34A", "vJ7JPEFhyLA"], "start_seconds": ["24", "16"], "properties": ["a, man, speaks", "water, flow, men"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "a person sniffs and sneezes"], "sample_ids": ["x9JovgqUcs", "uRlbY6aoBU"], "start_seconds": ["500", "0"], "properties": ["a, man, speaks, keyboard", "sneezes, person, sniffs"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is sneezing "], "question": "which person is sick", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "someone whistles a tune"], "sample_ids": ["x9JovgqUcs", "sIXTftIuUgw"], "start_seconds": ["500", "90"], "properties": ["a, man, speaks, keyboard", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vfYTJq7nU", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["rustling, ducks, quack", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a duck?", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y8WEcpOlT3I", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["wind, speak, buffeting", "men, talk, cars"], "captions_pred_video": ["on how to use a sewing machine youtube", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person is whistling", "a telephone rings followed by a woman talking"], "sample_ids": ["sIXTftIuUgw", "tGcFnX0GHI"], "start_seconds": ["90", "0"], "properties": ["person, whistling, person", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a person talking?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wwyfGO2J4", "xfaoyyzw2WU"], "start_seconds": ["90", "180"], "properties": ["people, applaud, hoot", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a stream of water runs briefly"], "sample_ids": ["tK4VlLsNxak", "x-PeY8Yb8M4"], "start_seconds": ["120", "300"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "stream, water, run"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["wP8ZKrlx3oA", "vVhthZ45k3Y"], "start_seconds": ["40", "30"], "properties": ["heavy, rain, fall", "cat, purr, hiss"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking and a cat is meowing"], "question": "which entity is more likely to be a natural phenomenon", "label": 0}, {"captions": ["an engine starts and increases in power", "a car accelerates and wind blows"], "sample_ids": ["zjTG0gaGCUI", "u0TrcHhkPQ"], "start_seconds": ["80", "20"], "properties": ["power, increase, engine", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a small engine idles continuously", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["y5WII6cTH7k", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["engine, idle, continuously", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a woman is speaking and a dog is whimpering"], "question": "which entity is not a television program?", "label": 0}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "some men converse over an engine running"], "sample_ids": ["xyL9F5VrjkE", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["wind, motor, distance", "men, converse, engine"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is a more active scene", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sU53zg9Jp7s", "uYT5gxnyMWM"], "start_seconds": ["380", "50"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "female, spraying, scream"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["food is frying while a woman speaks", "water pouring and bubbling"], "sample_ids": ["yhQ2Lg-7qDY", "uyRfq-jKPpo"], "start_seconds": ["130", "50"], "properties": ["food, woman, speak", "water, bubbles, pouring"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a faucet is running and a man is speaking", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a man speaks as a car is passing by"], "sample_ids": ["sWZzXuWYY", "sK4u5T8hW78"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a heavy rain falls endlessly"], "sample_ids": ["sofxkNWaP0s", "wP8ZKrlx3oA"], "start_seconds": ["30", "40"], "properties": ["wind, engine, louder", "heavy, rain, fall"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["water flows and trickles", "a child speaks in closed space"], "sample_ids": ["tB7hWb9gTuQ", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["water, flow, trickle", "child, space, speak"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["water is splashing and gurgling", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not a liquid", "label": 1}, {"captions": ["a church bell rings several times", "a speedboat passes quickly on the water"], "sample_ids": ["sUVVjE3Ucp8", "tjmoSi330GM"], "start_seconds": ["0", "23"], "properties": ["ring, bell, several", "speed, water, boat"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a church bell is ringing ", "a motorboat speeds through water with wind noise "], "question": "which entity is moving faster", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["uiS58TNyUiw", "siJFXfGWgDk"], "start_seconds": ["430", "50"], "properties": ["vocalize, bird, chirp", "a, bird, vehicle"], "captions_pred_video": ["of the pigeon in the cage", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking and birds are chirping in the background "], "question": "which entity is about birds?", "label": 0}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "people speak as gunfire rings out"], "sample_ids": ["yZrFNS7GFBQ", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["pigeon, buzzes, insect", "gunfire, ring, speak"], "captions_pred_video": ["of the bird in the cage", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["an animal quacks rapidly", "winds blows roughly as a vehicle races past"], "sample_ids": ["vh30P49Po6s", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["animal, quacks, rapidly", "wind, blows, vehicle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a duck is quacking loudly", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["an airplane engine runs", "an insect buzzes around continuously"], "sample_ids": ["yVPZ2MNWpms", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["engine, airplane, runs", "buzzes, continuously, insect"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a car is driving by on the road ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tDVADusiIoc", "zj2R0XoFr5k"], "start_seconds": ["60", "50"], "properties": ["wind, radio, waves", "airplane, boy, fly"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["people speak softly as food sizzles", "a car speeding up in the distance"], "sample_ids": ["yhQ2Lg-7qDY", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["food, sizzle, speak", "distance, car, speed"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "loud clanking and banging with brief male speech"], "sample_ids": ["wSVhSdj0F0", "sWZzXuWYY"], "start_seconds": ["10", "420"], "properties": ["horn honks, keys jingle, slam", "male, speech, banging"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a sewing machine runs and a man speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a woman speaks as she rubs two objects together"], "sample_ids": ["xKB8O8LTs6s", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["music, gunfire, explosion", "two objects, woman, speak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "paper folding and crinkling"], "sample_ids": ["uWPRNLnpy7Y", "zPpG3RD8lSs"], "start_seconds": ["10", "20"], "properties": ["accelerate, laugh, vehicle", "paper, fold, crinkle"], "captions_pred_video": ["is taken from a car driving down the street", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which entity is a paper folding and crinkling?", "label": 1}, {"captions": ["a consistent ticking pattern", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sCeWURVHfOM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticking, pattern, clock", "stream, water, flow"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "footage is blurry and out of focus"], "captions_pred_audio": ["ticking of a clock", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "a man speaks followed by another man speaking outside"], "sample_ids": ["s4Uz1Ffgo04", "viuTg1M-dqg"], "start_seconds": ["100", "30"], "properties": ["water, rushes, vehicle", "two men, speak, follow"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a child babbles as a woman speaks", "water splashes as an animal walks through"], "sample_ids": ["wEBlkGWVWwE", "w1ir-sZ3Im8"], "start_seconds": ["260", "90"], "properties": ["a, babble, woman", "animal, water, splashes"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a man speaks as a car is passing by"], "sample_ids": ["vzxHnu-SFEw", "sK4u5T8hW78"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "a, car, pass"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which object is moving", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["vf44CgrjT0A", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["loud, long, person", "people, applaud, hoot"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", null], "captions_pred_audio": ["a loud burp", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a man speaks as a car is passing by"], "sample_ids": ["rwtmaKiCcQU", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["nozzle, depressed, spray can", "a, car, pass"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["spraying and people speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an electronic device bleeps once", "paper is crumpling consistently"], "sample_ids": ["tHJ6JSa8Y4", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["bleeps, electronic, device", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a clock is ticking and beeping", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "several insects fly while two men talk"], "sample_ids": ["vbpKkWvfOu4", "s-T9OVOiMLo"], "start_seconds": ["560", "330"], "properties": ["a, woman, man", "several, fly, men"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more people", "label": 0}, {"captions": ["an emergency siren wails as it passes", "a man speaks as a car is passing by"], "sample_ids": ["vGj1XLJvNrw", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["wails, wails, pass", "a, car, pass"], "captions_pred_video": ["footage of a police car driving down a city street", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a duck quacks continuously"], "sample_ids": ["wP8ZKrlx3oA", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["rain, storm, thunder", "quacks, continuously, duck"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["t25U-v4k4ts", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["bees buzz, birds chirp, man speaks", "a woman, a television program, a bird"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["someone snores nearby", "motors rev and run loudly as a person laughs"], "sample_ids": ["spJCm8tD9Zo", "zl9Dqx-j7q4"], "start_seconds": ["90", "6"], "properties": ["someone snores, nearby, someone", "motors rev, laugh, loudly"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person is snoring loudly", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xfaoyyzw2WU", "y8WEcpOlT3I"], "start_seconds": ["180", "40"], "properties": ["loud, jet engine, roar", "harsh, wind, blows"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "on how to use a sewing machine youtube"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking with wind noise in the background "], "question": "which entity is louder", "label": 0}, {"captions": ["a person snores hilariously while someone laughs", "a speedboat passes quickly on the water"], "sample_ids": ["sSMl2vc3ek", "tjmoSi330GM"], "start_seconds": ["20", "23"], "properties": ["a person, laughs, snores", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a person snoring loudly", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["siJFXfGWgDk", "vXlk0lIQBFo"], "start_seconds": ["50", "470"], "properties": ["man, woman, vehicle", "wind, speak, vocalize"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["material crumbles into a microphone", "people talk quietly in the distance, followed by a police car siren wailing"], "sample_ids": ["vofpvUo6NAw", "wy1eKjR7KC0"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "people, talk, distance"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "two police officers riding motorcycles down the street"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a man is speaking and a siren is going off"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "birds chirp and objects are moved around"], "sample_ids": ["x5cuQjOdM3E", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["cat, meows, young woman", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a cat meows and a woman speaks", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "several insects fly while two men talk"], "sample_ids": ["sQGXqGcwOTc", "s-T9OVOiMLo"], "start_seconds": ["3", "330"], "properties": ["audio, kid, giggles", "several, fly, men"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video?", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a stream of water runs briefly"], "sample_ids": ["uKCSGgof8gI", "x-PeY8Yb8M4"], "start_seconds": ["12", "300"], "properties": ["chirps, distance, signal", "stream, water, run"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yI-KvObbDoY", "sSMl2vc3ek"], "start_seconds": ["260", "20"], "properties": ["sound, smack, wind", "loud, multiple, distance"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", null], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "continuous sizzling with a woman speaking towards the end"], "sample_ids": ["zdYdyF9-m8U", "ukxt9I7eMMg"], "start_seconds": ["7", "30"], "properties": ["wind, crash, shoreline", "continuous, woman, speaking"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["waves crash and wind blows ", "a woman is speaking while food is frying in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a child speaks", "a toilet flushes and water drains"], "sample_ids": ["yW6FWLSLkx4", "sfAvvZwdLCY"], "start_seconds": ["40", "20"], "properties": ["a, child, speaks", "water drains, flushes, water"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vlS6YMeWAPo", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["sheep, baa, birds", "female, spraying, scream"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a goat bleats and birds chirp", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a man speaks as horns blow"], "sample_ids": ["sK4u5T8hW78", "tHyNqRyK34A"], "start_seconds": ["30", "24"], "properties": ["a, car, pass", "a, man, speaks"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a car is honking with background noise "], "question": "which entity is about a man speaking as a car passes by?", "label": 0}, {"captions": ["a car accelerates and wind blows", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["u0TrcHhkPQ", "tw76HGONaKg"], "start_seconds": ["20", "570"], "properties": ["accelerates, wind, blows", "A, game, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man speaks and types on a computer keyboard "], "question": "which entity is playing a game", "label": 1}, {"captions": ["a baby cries and a woman speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tMbMDvT50j8", "vb1fPSDI4c"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "multiple, people, yell"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "people speak as gunfire rings out"], "sample_ids": ["xNMovAf3o50", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["rain, thunder, music", "gunfire, ring, speak"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a train horn blows as it passes by"], "sample_ids": ["sLUnaPT5gM8", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "horn, blows, train"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is not a train?", "label": 0}, {"captions": ["motors rev and run loudly as a person laughs", "a horn rings out as a machine runs by"], "sample_ids": ["zl9Dqx-j7q4", "slZLHwNbbt4"], "start_seconds": ["6", "300"], "properties": ["motors rev, laugh, loudly", "a, horn, run"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a jet engine roars ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "plastic is tapped on while someone speaks"], "sample_ids": ["vf44CgrjT0A", "wvKpEYswXO0"], "start_seconds": ["20", "150"], "properties": ["loud, long, person", "plastic, tap, speak"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a loud burp", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "an infant crying as a woman laughs"], "sample_ids": ["w2JXXIAdUdg", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["snoring, distance, person", "a, laugh, infant"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["v5P-ThUCINM", "zj2R0XoFr5k"], "start_seconds": ["400", "50"], "properties": ["background, chirp, bird", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["waves of water rumble", "a car speeding up in the distance"], "sample_ids": ["vwqaIHKxLvM", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["sound, wave, water", "distance, car, speed"], "captions_pred_video": ["of a surfer riding a big wave in the ocean", null], "captions_pred_audio": ["waves crash and wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "a man speaks as a motor runs in the background"], "sample_ids": ["uiItxDsDMFI", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["sound, distance, leaves", "background, motor, run"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a saw is being used with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sZPuqDgX2V0", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["engine, accelerate, intercom", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity shows a man talking to the camera?", "label": 0}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "water pouring and bubbling"], "sample_ids": ["vqZuVbG6-HI", "uyRfq-jKPpo"], "start_seconds": ["130", "50"], "properties": ["background, male, female", "water, bubbles, pouring"], "captions_pred_video": ["footage is blurry because it's raining outside", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a cat meows and children speak", "some tunes played by whistling"], "sample_ids": ["x5cuQjOdM3E", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["cat, speak, children", "tune, play, whistling"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a cat meows and a woman speaks", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "someone is typing on a computer keyboard"], "sample_ids": ["tDVADusiIoc", "v0x1odnXtP0"], "start_seconds": ["60", "210"], "properties": ["wind, radio, waves", "keyboard, type, computer"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person is typing on a keyboard"], "question": "which is not a type of device", "label": 0}, {"captions": ["distant men speak as a spray can nozzle is depressed", "an airplane engine runs"], "sample_ids": ["rwtmaKiCcQU", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["nozzle, depressed, spray can", "engine, airplane, runs"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["spraying and people speaking", "a car is driving by on the road "], "question": "which is a moving object", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "an engine works in idle nearby followed by a man talking"], "sample_ids": ["vhJWZheqaE", "wqADXCzngMw"], "start_seconds": ["0", "340"], "properties": ["water drains unevenly, toilet flushes, water drains", "engine, idle, man"], "captions_pred_video": [null, "of a man working on a vintage volkswagen beetle"], "captions_pred_audio": ["a toilet is flushed", "a lawn mower is running and a man is speaking "], "question": "which entity is a machine?", "label": 0}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vddP56-ogds", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["water, splash, person, laugh", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water?", "label": 0}, {"captions": ["long loud burping by a man", "wind blows as people chatter quietly"], "sample_ids": ["xmiUIOhtZyQ", "xBxDz0CFVn0"], "start_seconds": ["60", "30"], "properties": ["loud, burp, man", "wind, chatter, people"], "captions_pred_video": ["homer simpson drinking a beer", "footage is blurry and out of focus"], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a man speaks followed by another man speaking outside"], "sample_ids": ["wsHBIgzs9Fs", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["horn, continuous, buzzing", "two men, speak, follow"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking followed by another man speaking?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["ylpYOorfH4o", "wz7N8YRy74I"], "start_seconds": ["410", "30"], "properties": ["engine, running, wind", "rooster, crow, background, men"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["an engine runs and a man speaks", "a train horn blows as it passes by"], "sample_ids": ["yT5WfYMRr-U", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "horn, blows, train"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which train is blowing its horn", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yDoT73BWsdA", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["engine, revs, vehicle", "loud, multiple, distance"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["wSVhSdj0F0", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["beep, clang, footsteps", "a train, a horn, a bell"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sYITalLZjj4", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["water, rushes, background, birds", "three men, wind, flow"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 0}, {"captions": ["a diesel truck engine runs continuously", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sZvwOuuPGP0", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["engine, diesel, truck", "engine, idle, woman"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a medium engine is running ", "a woman is speaking and a subway train is moving "], "question": "which entity has a running engine", "label": 0}, {"captions": ["water flows as a woman laughs and a man speaks", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["vddP56-ogds", "sapQIQUhFc"], "start_seconds": ["30", "280"], "properties": ["water, flow, laugh", "liquid, flow, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and a stream is flowing in the background "], "question": "which entity shows a man speaking?", "label": 0}, {"captions": ["a cat meows and children speak", "water is sprayed across a hard surface"], "sample_ids": ["x5cuQjOdM3E", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["cat, speak, children", "water, spray, surface"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a cat meows and a woman speaks", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "dishes cling together then a man begins to speak"], "sample_ids": ["xyL9F5VrjkE", "sQGXqGcwOTc"], "start_seconds": ["20", "3"], "properties": ["wind, blows, vehicle", "cling, speak, dishes"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "mechanisms are operating and water is splashing "], "question": "which entity is about a vehicle engine running?", "label": 0}, {"captions": ["an insect buzzes around continuously", "wind blowing followed by a zoom"], "sample_ids": ["v25l1jef3JY", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["buzzes, continuously, insect", "wind, blow, zoom"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["a airplane flies overhead as a woman speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zj2R0XoFr5k", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["airplane, fly, woman", "a woman, laughs, animal"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a drill runs and two people laugh", "a stream of water runs briefly"], "sample_ids": ["tEE3MpBt1sg", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["two people, laugh, drill", "stream, water, run"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "water splashes as an animal walks through"], "sample_ids": ["xjvTpk2Zpr8", "w1ir-sZ3Im8"], "start_seconds": ["70", "90"], "properties": ["wind, blows, vehicle", "animal, water, splashes"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a jet engine roars and wind blows ", "water splashes and gurgles as people speak"], "question": "which entity is more calm", "label": 1}, {"captions": ["birds fly and flutter around", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wGKgwOP3h30", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["fly, flutter, around", "loud, laughter, intermittent"], "captions_pred_video": ["of the pigeons in the coop", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["pigeons coo and flap their wings", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zofjfKhqLk8", "wz7N8YRy74I"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "rooster, crow, background, men"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a horn rings out as a machine runs by"], "sample_ids": ["sYITalLZjj4", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["water, rushes, background, birds", "a, horn, run"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["wind blows and birds chirp", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is more active", "label": 1}, {"captions": ["water rushes by", "a man talks as several small engines run"], "sample_ids": ["x-PeY8Yb8M4", "u9A6VZQCZpU"], "start_seconds": ["300", "30"], "properties": ["water, rushes, by", "a, man, talk"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking while a race car is revving and accelerating "], "question": "which entity is a video of a man talking?", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vBslzh7saPw", "tiDFTC-5vU"], "start_seconds": ["90", "30"], "properties": ["engine, spools, takes", "male, duck, laugh"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a toilet flushes and a female speaks"], "sample_ids": ["zj2R0XoFr5k", "yaln9y8I7ms"], "start_seconds": ["50", "230"], "properties": ["airplane, boy, fly", "female, flushes, toilet"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "water flows followed by women screaming"], "sample_ids": ["zcDwZ6W7E3E", "w5W5Kqtc8E"], "start_seconds": ["180", "100"], "properties": ["man, speak, motorcycles", "water, flow, women"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["zF8yoL0rkbI", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["engine, run, someone", "a, chirps, bird"], "captions_pred_video": ["footage of the traffic on the street at night", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking and bees are buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["continuous sneezing together with speech", "a person is whistling"], "sample_ids": ["x4dZyf9Gbj0", "sIXTftIuUgw"], "start_seconds": ["130", "90"], "properties": ["continuous, sneeze, speech", "person, whistling, person"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "a person whistling a song"], "question": "which entity is a person", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a helicopter engine runs"], "sample_ids": ["ukg5L09Wpvo", "t5ZbXbniOWk"], "start_seconds": ["150", "30"], "properties": ["clickety-clack, train, whistle", "engine, helicopter, run"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a helicopter is flying overhead "], "question": "which entity is a machine", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "people cheer as a vehicle engine revs"], "sample_ids": ["tEE3MpBt1sg", "xjhAnI2q6hM"], "start_seconds": ["50", "6"], "properties": ["drill, something, laugh", "engine revs, vehicle, people"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a truck is revving its engine and a man is speaking "], "question": "which is a vehicle", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["xSKJGCItUWE", "xyL9F5VrjkE"], "start_seconds": ["10", "20"], "properties": ["engine, run, boy", "wind, motor, distance"], "captions_pred_video": ["footage of the helicopter flying in the room", "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "the wind is blowing and a car is passing by "], "question": "which entity is a motor?", "label": 1}, {"captions": ["a woman and man are speaking", "frogs croak and vocalize"], "sample_ids": ["vbpKkWvfOu4", "yswmmRZFItk"], "start_seconds": ["560", "0"], "properties": ["two people, speaking, woman, man", "croak, vocalize, frog"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a frog is croaking"], "question": "which entity is not a person", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a man speaks as a motor runs in the background"], "sample_ids": ["wqADXCzngMw", "xZepNM9qcRA"], "start_seconds": ["340", "30"], "properties": ["engine, idle, man", "background, motor, run"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks while water drains", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vSeGhaZt-aI", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["water, drain, man", "animal, grunts, snorts"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "wind blows as people chatter quietly"], "sample_ids": ["wTideSjRFS0", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["food, sizzle, woman", "wind, chatter, people"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "water is sprayed across a hard surface"], "sample_ids": ["u--KhUW8l1Y", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["engine, sound, horn", "water, spray, surface"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a fly buzzes around loudly as birds chirp"], "sample_ids": ["tQWGZLItBXk", "uJV8NDaHqqk"], "start_seconds": ["170", "100"], "properties": ["music, kid, speak", "loud, fly, chirp"], "captions_pred_video": ["worms revolution screenshots", "a bee hive in a wooden box"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a swarm of bees buzzing around"], "question": "which entity is louder", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a person snores loudly multiple times at a close distance"], "sample_ids": ["zFjIWfSD-4", "sSMl2vc3ek"], "start_seconds": ["410", "20"], "properties": ["People, motor, brakes", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["water splashes as an animal walks through", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w1ir-sZ3Im8", "xKB8O8LTs6s"], "start_seconds": ["90", "70"], "properties": ["animal, water, splashes", "music, gunfire, explosion"], "captions_pred_video": ["footage of a group of people riding horses through a river", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["water splashes and gurgles as people speak", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wAAkbZToh8", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["burp, laugh, speak", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man burps and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a duck quacks loudly and continuously"], "sample_ids": ["yVumC9TGknc", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["humming, clock, birds", "loud, continuous, quacks"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a series of beeps and chirps", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a stream runs then someone speaks", "some men converse over an engine running"], "sample_ids": ["wbHTKEJZyhc", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["stream, run, someone", "men, converse, engine"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a stream running?", "label": 0}, {"captions": ["a person screams glaringly", "wind blowing followed by a zoom"], "sample_ids": ["xC8kbrKJmco", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["glaringly, screams, person", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a goat is bleating ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["xBxDz0CFVn0", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["stream, water, flow", "two men, speak, follow"], "captions_pred_video": ["footage is blurry and out of focus", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a infant makes noise and is excited"], "sample_ids": ["sSMl2vc3ek", "wIJK3-5y0kA"], "start_seconds": ["20", "30"], "properties": ["loud, multiple, distance", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a person snoring loudly", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "children speak and play together"], "sample_ids": ["x5cuQjOdM3E", "yVVP8XvWJTo"], "start_seconds": ["30", "260"], "properties": ["cat, meows, young woman", "children, speak, play"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a cat meows and a woman speaks", "children are speaking and breathing with background noise "], "question": "which entity is more social", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "dishes cling together then a man begins to speak"], "sample_ids": ["yajyRTUQk3U", "sQGXqGcwOTc"], "start_seconds": ["400", "3"], "properties": ["a woman, something, fried", "cling, speak, dishes"], "captions_pred_video": ["- a woman cooking in the kitchen", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "some tunes played by whistling"], "sample_ids": ["yRx9txMcBl0", "u6BnG6YZqJ4"], "start_seconds": ["40", "0"], "properties": ["motors, tires, screech", "tune, play, whistling"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "a door opens and closes"], "sample_ids": ["w2bYrCVLT60", "vBHyYJ8pL0"], "start_seconds": ["120", "2"], "properties": ["ducks, speak, quack", "open, close, door"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is a door?", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["ugHJF0hfYkg", "t97k0cejSQE"], "start_seconds": ["10", "250"], "properties": ["loud, intense, propeller", "sound, chirp, buzz"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a bee on a purple thistle flower"], "captions_pred_audio": ["a helicopter is flying overhead ", "a bee buzzes and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tdWhHV3X25Q", "vYkA3cfXp5Q"], "start_seconds": ["60", "30"], "properties": ["applause, audience, yells", "engine, accelerate, idle"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a clock ticktocks briefly", "birds chirp and objects are moved around"], "sample_ids": ["u7C-AEBQM", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["ticktocks, clock, ticktocks briefly", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a ticktock of a clock", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "wind blowing followed by a zoom"], "sample_ids": ["s4Uz1Ffgo04", "vr8ZXjEBhMQ"], "start_seconds": ["100", "150"], "properties": ["water, rushes, vehicle", "wind, blow, zoom"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a video of a vehicle zooming past?", "label": 0}, {"captions": ["an aircraft engine runs as people speak", "water flows as men speak and yell"], "sample_ids": ["wTjoRj1se3U", "vJ7JPEFhyLA"], "start_seconds": ["390", "16"], "properties": ["engine, run, people", "water, flow, men"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and yelling?", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uPDn2BFTHk", "su6FAOcOA8c"], "start_seconds": ["140", "4"], "properties": ["lady, laugh, baby", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a goat bleats as a person speaks", "small dogs yip and bark sharply"], "sample_ids": ["tPJvjq9QePY", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["bleats, person, speak", "bark, yip, sharply"], "captions_pred_video": ["a dog and a sheep in a barn", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a baby cries and a man speaks", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "winds blows roughly as a vehicle races past"], "sample_ids": ["zl9Dqx-j7q4", "xjvTpk2Zpr8"], "start_seconds": ["6", "70"], "properties": ["engine, laugh, loud", "wind, blows, vehicle"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a jet engine roars ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks as a car is passing by", "men speak and a nozzle sprays liquid"], "sample_ids": ["sK4u5T8hW78", "wRV8yMk886E"], "start_seconds": ["30", "0"], "properties": ["a, car, pass", "liquid, spray, nozzle"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man speaks followed by a loud burst"], "question": "which entity is about liquid spraying?", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["zO-LSSY92ZM", "zO-LSSY92ZM"], "start_seconds": ["30", "30"], "properties": ["liquid, surface, sound", "liquid, surface, sound"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["steam is hissing and hissing", "steam is hissing and hissing"], "question": "which entity is a liquid?", "label": 0}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a man speaks as a motor runs in the background"], "sample_ids": ["w8uLijTqtlU", "xZepNM9qcRA"], "start_seconds": ["70", "30"], "properties": ["wind, microphone, noise", "background, motor, run"], "captions_pred_video": ["footage is blurry and shaky", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["the wind is blowing strongly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vhJWZheqaE", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["water drains unevenly, toilet flushes, water drains", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["water pouring and bubbling", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uyRfq-jKPpo", "w5W5Kqtc8E"], "start_seconds": ["50", "100"], "properties": ["water, bubbles, pouring", "wind, blow, vehicle"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", null], "captions_pred_audio": ["water is running from a faucet", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a telephone rings and a bird vocalizes", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["skd2PphS6oI", "t97k0cejSQE"], "start_seconds": ["190", "250"], "properties": ["ring, bird, vocalize", "sound, chirp, buzz"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "a bee on a purple thistle flower"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a bee buzzes and a woman speaks"], "question": "which entity has a bird vocalize?", "label": 0}, {"captions": ["white noise and snoring with some rustling in the background", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xzKKf9bKNUo", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["background, noise, snoring", "three men, wind, flow"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "people speak and tapping occurs"], "sample_ids": ["x5cuQjOdM3E", "tFCUUGdREgA"], "start_seconds": ["30", "70"], "properties": ["cat, talk, meow", "people, tap, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a person riding a white horse in an indoor arena"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and walking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a car accelerates and wind blows", "a man speaks as a car is passing by"], "sample_ids": ["u0TrcHhkPQ", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which car is moving faster", "label": 0}, {"captions": ["an adult man speaks over glass clinking", "wind blows as people chatter quietly"], "sample_ids": ["u6jIvCtKarQ", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["a, man, speaks", "wind, chatter, people"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "wind blows as people chatter quietly"], "sample_ids": ["w5W5Kqtc8E", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zY3icUyMdh8", "ukg5L09Wpvo"], "start_seconds": ["20", "150"], "properties": ["dog, bark, engine", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["y1saVTXsKwc", "uYT5gxnyMWM"], "start_seconds": ["80", "50"], "properties": ["a, dog, talk", "female, spraying, scream"], "captions_pred_video": ["a dog playing with a pink ball", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog barks and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "waves crash against a shoreline and people speak"], "sample_ids": ["sEprKHm8Sj8", "yFB25fqfU8I"], "start_seconds": ["90", "300"], "properties": ["noise, loud, buzzing", "wave, crash, shoreline"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "people speak softly as food sizzles"], "sample_ids": ["y8dSeubCNI", "yhQ2Lg-7qDY"], "start_seconds": ["4", "130"], "properties": ["engine revving, people speaking, motorcycle", "food, sizzle, speak"], "captions_pred_video": [null, "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["an engine revving and people talking in the background", "a faucet is running and a man is speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["ticking continues without interruption", "a frog croaks as other frogs croak in the background"], "sample_ids": ["v-g-j2uTByM", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["ticking, continuous, clock", "background, frog, croak"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a close up of a frog in the water"], "captions_pred_audio": ["a clock is ticking loudly", "a frog is croaking"], "question": "which entity is not continuous", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xOZfdgAgJ9o", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["woman, whimpering, speaking", "a woman, something, fried"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking while food is frying in the background"], "question": "which woman is speaking", "label": 1}, {"captions": ["a toilet flushes and water drains", "pigeons vocalize and birds chirp"], "sample_ids": ["sfAvvZwdLCY", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["water drains, flushes, water", "vocalize, bird, chirp"], "captions_pred_video": ["footage of the toilet in the bathroom", "of the pigeon in the cage"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "people applaud and hoot and chat quietly"], "sample_ids": ["vMf1dLD6Sng", "wwyfGO2J4"], "start_seconds": ["6", "90"], "properties": ["frog, bird, vocalize", "people, applaud, hoot"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", null], "captions_pred_audio": ["a frog croaks loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a infant makes noise and is excited"], "sample_ids": ["wPz6QRAkEb4", "wIJK3-5y0kA"], "start_seconds": ["60", "30"], "properties": ["chirps, tweets, song", "noise, excited, infant"], "captions_pred_video": ["a bird in a cage on top of a pole", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["birds are chirping in the background ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "an engine works in idle nearby followed by a man talking"], "sample_ids": ["weDbePuc-Xc", "wqADXCzngMw"], "start_seconds": ["40", "340"], "properties": ["cartoon character, music, vocalize", "engine, idle, man"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of a man working on a vintage volkswagen beetle"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a lawn mower is running and a man is speaking "], "question": "which entity is a video of a man talking?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["zcDwZ6W7E3E", "uEU-Hg5MTN8"], "start_seconds": ["180", "27"], "properties": ["man, speak, motorcycles", "animal, grunts, snorts"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a duck quacks continuously", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vh30P49Po6s", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["quacks, continuously, duck", "music, gunfire, explosion"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a duck is quacking loudly", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a scene from a movie", "label": 1}, {"captions": ["continuous snoring", "a car speeding up in the distance"], "sample_ids": ["sLkeqCDJIyw", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["loud, snoring, noise", "distance, car, speed"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["people clap and speak in the distance", "vehicle tires screech and a man speaks before a car door opens"], "sample_ids": ["wwyfGO2J4", "sxYkFKFIZD0"], "start_seconds": ["90", "20"], "properties": ["clap, distance, speak", "screech, man, door"], "captions_pred_video": [null, "2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking while a car is revving and accelerating with a squeal in the background "], "question": "which entity is about a car door opening?", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a frog croaks as other frogs croak in the background"], "sample_ids": ["xKB8O8LTs6s", "yswmmRZFItk"], "start_seconds": ["70", "0"], "properties": ["music, gunfire, explosion", "background, frog, croak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a close up of a frog in the water"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a frog is croaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "someone is typing on a computer keyboard"], "sample_ids": ["uYT5gxnyMWM", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["a, scream, girl", "keyboard, type, computer"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["someone snores nearby", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["spJCm8tD9Zo", "wz7N8YRy74I"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "rooster, crow, background, men"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["an insect buzzes around continuously", "a duck quacks continuously"], "sample_ids": ["v25l1jef3JY", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "quacks, continuously, duck"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["electronic beeps occur in a short series", "someone whistles a tune"], "sample_ids": ["y682ml90jGw", "sIXTftIuUgw"], "start_seconds": ["11", "90"], "properties": ["beeps, series, electronic", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a car accelerates and wind blows"], "sample_ids": ["zgUgkpk78xU", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["horn, bell, train", "accelerates, wind, blows"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as horns blow", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tHyNqRyK34A", "tDVADusiIoc"], "start_seconds": ["24", "60"], "properties": ["a, man, speaks", "water, radio, man"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sOa7g-44Dag", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["background, man, spray", "stream, water, flow"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a man speaks followed by another man speaking outside"], "sample_ids": ["sG7TyPnFDR0", "viuTg1M-dqg"], "start_seconds": ["180", "30"], "properties": ["beeps, machine, smoke alarm", "two men, speak, follow"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking while a machine runs?", "label": 0}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uEU-Hg5MTN8", "tiDFTC-5vU"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "male, duck, laugh"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["loud, continuous burping", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y636gklDioE", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["loud, continuous, burping", "loud, multiple, distance"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "wind blows as people chatter quietly"], "sample_ids": ["yaln9y8I7ms", "xBxDz0CFVn0"], "start_seconds": ["230", "30"], "properties": ["female, flushes, toilet", "wind, chatter, people"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["w9lpbUn0hPc", "vzceMbklWc"], "start_seconds": ["30", "180"], "properties": ["male, wind, rustling", "water, faucet, sink"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", null], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "water is running and a man is speaking"], "question": "which entity is a video of water running?", "label": 1}, {"captions": ["people clap and speak in the distance", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wwyfGO2J4", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["clap, distance, speak", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zhx6hoYrHeI", "wqZ135Ssz0"], "start_seconds": ["160", "60"], "properties": ["engine, sputter, rough", "two men, woman, birds"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["a clock ticktocks in wind", "small dogs yip and bark sharply"], "sample_ids": ["yVumC9TGknc", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["ticktocks, clock, wind", "bark, yip, sharply"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a series of beeps and chirps", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a motorcycle idles loudly as wind blows"], "sample_ids": ["sOa7g-44Dag", "v7jJS8aAyA"], "start_seconds": ["30", "10"], "properties": ["background, man, spray", "wind, blows, loudly"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a motorcycle engine is idling and vibrating"], "question": "which entity is louder", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a car speeding up in the distance"], "sample_ids": ["tDlysoZiA1I", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["animal, grunt, multiple", "distance, car, speed"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a stream of water runs briefly"], "sample_ids": ["wRBHTgrbiwg", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["bird, owl, speak", "stream, water, run"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["y8dSeubCNI", "sYITalLZjj4"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "water, rushes, background, birds"], "captions_pred_video": [null, "two ducks are swimming in the water near each other"], "captions_pred_audio": ["an engine revving and people talking in the background", "wind blows and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["a person is snoring while sleeping", "people cheer as a vehicle engine revs"], "sample_ids": ["vJrjSeP17yE", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["a person is sleeping, snoring, person", "engine revs, vehicle, people"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person snoring loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a woman speaks with water running", "a horn blasts as warning bells ring"], "sample_ids": ["wTideSjRFS0", "zgUgkpk78xU"], "start_seconds": ["30", "70"], "properties": ["water, running, woman", "horn, bells, ring"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a warning", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "water pouring and bubbling"], "sample_ids": ["soTOh3zYJfY", "uyRfq-jKPpo"], "start_seconds": ["40", "50"], "properties": ["vehicle, skid, tires", "water, bubbles, pouring"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a man speaking with light rustling"], "sample_ids": ["y1saVTXsKwc", "zOZleIRqZm4"], "start_seconds": ["80", "80"], "properties": ["a, dog, talk", "light, rustling, man"], "captions_pred_video": ["a dog playing with a pink ball", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking with crickets chirping in the background"], "question": "which entity is a man speaking with light rustling?", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tDVADusiIoc", "uYT5gxnyMWM"], "start_seconds": ["60", "50"], "properties": ["man, radio, blows", "female, spraying, scream"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a man speaks as a car is passing by"], "sample_ids": ["uWPRNLnpy7Y", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "a, car, pass"], "captions_pred_video": ["is taken from a car driving down the street", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["a man talks while vehicles pass by", "winds blows roughly as a vehicle races past"], "sample_ids": ["sK4u5T8hW78", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["a, man, talk", "wind, blows, vehicle"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uYT5gxnyMWM", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["person, spray, yell", "a woman, something, fried"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "pigeons vocalize and birds chirp"], "sample_ids": ["rqfQRErjfk8", "uiS58TNyUiw"], "start_seconds": ["170", "430"], "properties": ["crowd, cheers, applauds", "vocalize, bird, chirp"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "of the pigeon in the cage"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a man is speaking and a bee is buzzing"], "question": "which entity is not a crowd?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "vehicles pass by on a roadway"], "sample_ids": ["xC8kbrKJmco", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["background, goat, scream", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a goat is bleating ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "paper is crumpling consistently"], "sample_ids": ["yVumC9TGknc", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["humming, clock, birds", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a series of beeps and chirps", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a man speaks as a car is passing by"], "sample_ids": ["wRBHTgrbiwg", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["bird, owl, speak", "a, car, pass"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking briefly?", "label": 0}, {"captions": ["distant humming of an engine", "small dogs yip and bark sharply"], "sample_ids": ["yVPZ2MNWpms", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["sound, distance, engine", "bark, yip, sharply"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a car is driving by on the road ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle engine runs while a siren and horn sound", "an audience gives applause"], "sample_ids": ["u--KhUW8l1Y", "x6iCUDmRpKQ"], "start_seconds": ["0", "38"], "properties": ["engine, sound, horn", "applause, audience, give"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a black background with the moon and stars in the sky"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a group of people are clapping and cheering"], "question": "which entity is a response to a stimulus", "label": 1}, {"captions": ["water flows and trickles", "a stream of water runs briefly"], "sample_ids": ["tB7hWb9gTuQ", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["water, flow, trickle", "stream, water, run"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["water is splashing and gurgling", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["wind blows strongly", "a horn rings out as a machine runs by"], "sample_ids": ["w8uLijTqtlU", "slZLHwNbbt4"], "start_seconds": ["70", "300"], "properties": ["wind, blows, strongly", "a, horn, run"], "captions_pred_video": ["footage is blurry and shaky", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["the wind is blowing strongly", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is moving", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "a car accelerates and wind blows"], "sample_ids": ["uPDn2BFTHk", "u0TrcHhkPQ"], "start_seconds": ["140", "20"], "properties": ["woman, laughs, speaks", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["women speak and laugh as wind blows", "music plays, a person speaks, followed by whooshes and a ding"], "sample_ids": ["un9VQlzgZM", "tQWGZLItBXk"], "start_seconds": ["5", "170"], "properties": ["wind, speak, laugh", "music, person, ding"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a person speaking?", "label": 1}, {"captions": ["food is frying then a woman speaks", "a horn rings out as a machine runs by"], "sample_ids": ["ukxt9I7eMMg", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["food, woman, speak", "a, horn, run"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tjmoSi330GM", "ukg5L09Wpvo"], "start_seconds": ["23", "150"], "properties": ["speed, water, boat", "clickety-clack, train, whistle"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a train blows its whistle and blows its horn "], "question": "which entity is moving at a slower speed", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "wind blows as people chatter quietly"], "sample_ids": ["zgUgkpk78xU", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["horn, bells, ring", "wind, chatter, people"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage is blurry and out of focus"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a toilet flushes and a female speaks"], "sample_ids": ["w2M4i1mklOA", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["loud, chime, bell", "female, flushes, toilet"], "captions_pred_video": ["footage of an antique clock", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a toilet flushes and a man speaks"], "question": "which entity is silent", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "a stream of water runs briefly"], "sample_ids": ["vSeGhaZt-aI", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["water, bubbles, speak", "stream, water, run"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vddP56-ogds", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["water, splash, person, laugh", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking nearby?", "label": 0}, {"captions": ["an engine works in idle nearby followed by a man talking", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wqADXCzngMw", "su6FAOcOA8c"], "start_seconds": ["340", "4"], "properties": ["engine, idle, man", "engine, idle, woman"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity has a man talking to an engine?", "label": 0}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "people applaud and hoot and chat quietly"], "sample_ids": ["sQGXqGcwOTc", "wwyfGO2J4"], "start_seconds": ["3", "90"], "properties": ["audio, kid, giggles", "people, applaud, hoot"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone is snoring while sleeping", "a child speaks in closed space"], "sample_ids": ["ujMt0-D-x2k", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["snore, sleep, someone", "child, space, speak"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["u2f5NpsoHBg", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "rooster, crow, background, men"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity shows a person speaking?", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["ylpYOorfH4o", "siJFXfGWgDk"], "start_seconds": ["410", "50"], "properties": ["engine, run, loud", "man, woman, vehicle"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and birds are chirping in the background "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["slZLHwNbbt4", "uZesmtKZGSw"], "start_seconds": ["300", "250"], "properties": ["train, horn, sound", "men, talk, cars"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks over intermittent keyboard taps", "a woman speaks as she rubs two objects together"], "sample_ids": ["tw76HGONaKg", "vzxHnu-SFEw"], "start_seconds": ["570", "80"], "properties": ["audio, man, keyboard", "two objects, woman, speak"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a man speaks as a boat engine runs"], "sample_ids": ["zhx6hoYrHeI", "wtDqrBygTcU"], "start_seconds": ["160", "30"], "properties": ["engine, sputter, rough", "man, engine, run"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "shows a person riding on the back of a boat as it speeds through the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a motor is running"], "question": "which entity is a boat?", "label": 1}, {"captions": ["a woman and man are speaking", "some men converse over an engine running"], "sample_ids": ["vbpKkWvfOu4", "sCiy7QS1U"], "start_seconds": ["560", "300"], "properties": ["two people, speaking, woman, man", "men, converse, engine"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows two people speaking", "label": 0}, {"captions": ["a child speaks in closed space", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yW6FWLSLkx4", "tiDFTC-5vU"], "start_seconds": ["40", "30"], "properties": ["child, space, speak", "male, duck, laugh"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a stream of water runs briefly", "a man speaks as a car is passing by"], "sample_ids": ["x-PeY8Yb8M4", "sK4u5T8hW78"], "start_seconds": ["300", "30"], "properties": ["stream, water, run", "a, car, pass"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while water drains", "paper folding and crinkling"], "sample_ids": ["vSeGhaZt-aI", "zPpG3RD8lSs"], "start_seconds": ["50", "20"], "properties": ["water, drain, man", "paper, fold, crinkle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "people speak softly as food sizzles"], "sample_ids": ["yswmmRZFItk", "yhQ2Lg-7qDY"], "start_seconds": ["0", "130"], "properties": ["background, frog, croak", "food, sizzle, speak"], "captions_pred_video": ["a close up of a frog in the water", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a frog is croaking", "a faucet is running and a man is speaking"], "question": "which entity is silent", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a child speaks in closed space"], "sample_ids": ["xC8kbrKJmco", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["background, goat, scream", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a goat is bleating ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "heavy rain splashes as it falls"], "sample_ids": ["wqADXCzngMw", "wP8ZKrlx3oA"], "start_seconds": ["340", "40"], "properties": ["engine, idle, man", "fall, rain, splash"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a heavy rain is falling on a surface"], "question": "which entity is a liquid", "label": 1}, {"captions": ["some clanking with distant murmuring", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uMTTDZ2mb4", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["clanking, murmuring, distant", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a woman speaks as she rubs two objects together"], "sample_ids": ["vVhthZ45k3Y", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["cat, purr, hiss", "two objects, woman, speak"], "captions_pred_video": ["footage is blurry and out of focus", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "someone snores nearby"], "sample_ids": ["wztCSUxOf8", "spJCm8tD9Zo"], "start_seconds": ["130", "90"], "properties": ["a crowd, yells, applauds", "someone snores, nearby, someone"], "captions_pred_video": [null, "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a baby cries and a woman speaks"], "sample_ids": ["tDVADusiIoc", "tMbMDvT50j8"], "start_seconds": ["60", "12"], "properties": ["water, radio, man", "a, cry, woman"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby cries and a woman speaks"], "question": "which entity is a human speaking?", "label": 0}, {"captions": ["a beep occurs briefly", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["xtWeJ56-U-g", "ukg5L09Wpvo"], "start_seconds": ["20", "150"], "properties": ["beep, occur, briefly", "a train, a horn, a bell"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a train blows its whistle and blows its horn "], "question": "which entity is a warning", "label": 1}, {"captions": ["water runs into a sink while men speak", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vzceMbklWc", "tiDFTC-5vU"], "start_seconds": ["180", "30"], "properties": ["water, sink, run", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "pigeons vocalize and birds chirp"], "sample_ids": ["uiS58TNyUiw", "uiS58TNyUiw"], "start_seconds": ["430", "430"], "properties": ["vocalize, bird, chirp", "vocalize, bird, chirp"], "captions_pred_video": ["of the pigeon in the cage", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["vZAw4apG0Es", "vKrYfzleLB8"], "start_seconds": ["30", "110"], "properties": ["people, clock, converse", "a, ring, gunshots"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["tDVADusiIoc", "y8WEcpOlT3I"], "start_seconds": ["60", "40"], "properties": ["water, radio, man", "harsh, wind, blows"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity has a man speaking over a radio as wind blows and water splashes?", "label": 0}, {"captions": ["an small aircraft engine runs and a boy speaks", "some tunes played by whistling"], "sample_ids": ["xSKJGCItUWE", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["engine, run, boy", "tune, play, whistling"], "captions_pred_video": ["footage of the helicopter flying in the room", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["scraping and female speech with distant music", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["yHeVV-xeOxQ", "ziUT9IFTkjg"], "start_seconds": ["130", "10"], "properties": ["female, speech, music", "background, birds, rustling"], "captions_pred_video": ["of a girl milking a goat's udder", null], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "some men converse over an engine running"], "sample_ids": ["uWPRNLnpy7Y", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["accelerate, laugh, vehicle", "men, converse, engine"], "captions_pred_video": ["is taken from a car driving down the street", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a dog barks and whimpers", "a clock ticktocks"], "sample_ids": ["sShpyu2l4YQ", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "ticktocks, clock, ticktocks"], "captions_pred_video": ["the puppies are playing with a toy", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a dog is barking and growling", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as horns blow", "children cheer as a man speaks then an audience screams"], "sample_ids": ["tHyNqRyK34A", "vJvryTwuAV8"], "start_seconds": ["24", "16"], "properties": ["a, man, speaks", "audience, cheer, man"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking and a crowd is shouting and whooping "], "question": "which man is speaking", "label": 1}, {"captions": ["an adult woman and an adult man speak", "an airplane accelerates briefly"], "sample_ids": ["zTLVJCo4WEE", "zjTG0gaGCUI"], "start_seconds": ["30", "80"], "properties": ["two people, adult, speak", "accelerates, airplane, briefly"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a jet engine roars as wind blows "], "question": "which is not a person", "label": 1}, {"captions": ["an audience gives applause", "wind blows as people chatter quietly"], "sample_ids": ["x6iCUDmRpKQ", "xBxDz0CFVn0"], "start_seconds": ["38", "30"], "properties": ["applause, audience, give", "wind, chatter, people"], "captions_pred_video": ["a black background with the moon and stars in the sky", "footage is blurry and out of focus"], "captions_pred_audio": ["a group of people are clapping and cheering", "a man is speaking with wind noise in the background "], "question": "which is quieter", "label": 0}, {"captions": ["females talk and laugh over gusting wind", "a motor idles, accelerates, then slows down."], "sample_ids": ["un9VQlzgZM", "vYkA3cfXp5Q"], "start_seconds": ["5", "30"], "properties": ["females, talk, laugh", "speed, idle, accelerate"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "an engine is idling"], "question": "which entity is not a person", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a telephone rings followed by a woman talking"], "sample_ids": ["sQGXqGcwOTc", "tGcFnX0GHI"], "start_seconds": ["3", "0"], "properties": ["audio, kid, giggles", "ring, talk, woman"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["children speak and play together", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yVVP8XvWJTo", "xBxDz0CFVn0"], "start_seconds": ["260", "30"], "properties": ["children, speak, play", "stream, water, flow"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage is blurry and out of focus"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "vehicles pass by on a roadway"], "sample_ids": ["vhJWZheqaE", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["water drains unevenly, toilet flushes, water drains", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a toilet is flushed", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["w8uLijTqtlU", "sapQIQUhFc"], "start_seconds": ["70", "280"], "properties": ["wind, microphone, noise", "liquid, flow, distance"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "an infant crying frantically"], "sample_ids": ["u21-Z5gJCB8", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "cry, infant, frantically"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a helicopter engine idles continuously", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["ugHJF0hfYkg", "sLUnaPT5gM8"], "start_seconds": ["10", "0"], "properties": ["engine, idle, continuously", "loud, laughter, intermittent"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a helicopter is flying overhead ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a male speaks and another male speaks", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["viuTg1M-dqg", "s7knHCFW82w"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "blow horn, get close, train"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a train is blowing its horn and its wheels are squealing "], "question": "which is a train", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "several insects fly while two men talk"], "sample_ids": ["zcDwZ6W7E3E", "s-T9OVOiMLo"], "start_seconds": ["180", "330"], "properties": ["a, man, speak", "several, fly, men"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tIY7qOV3rEM", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "applause, audience, yells"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["y8dSeubCNI", "tdWhHV3X25Q"], "start_seconds": ["4", "60"], "properties": ["men, women, car", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "birds coo incessantly"], "sample_ids": ["s4Uz1Ffgo04", "yZrFNS7GFBQ"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "coo, bird, incessant"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "of the bird in the cage"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "an owl hoots in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "someone whistles a tune"], "sample_ids": ["s59PfAghdkM", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["bird, chirp, background, horse, neigh", "someone, tune, whistle"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", null], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["material crumbles into a microphone", "a man speaks over intermittent keyboard taps"], "sample_ids": ["vofpvUo6NAw", "tw76HGONaKg"], "start_seconds": ["220", "570"], "properties": ["material, crumbles, microphone", "audio, man, keyboard"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a man speaks and types on a computer keyboard "], "question": "which entity is a video", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "water flows and trickles"], "sample_ids": ["wvKpEYswXO0", "tB7hWb9gTuQ"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "water, flow, trickle"], "captions_pred_video": ["of the person preparing food in the kitchen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "water is splashing and gurgling"], "question": "which entity has water flowing and trickling?", "label": 1}, {"captions": ["a door slams shut roughly", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zkKdxzNC97Y", "vfYTJq7nU"], "start_seconds": ["27", "130"], "properties": ["a door, slams, shut", "rustling, ducks, quack"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a duck quacks and a woman speaks"], "question": "which entity is more likely to be a door", "label": 0}, {"captions": ["a man speaks over intermittent keyboard taps", "pigeons vocalize and birds chirp"], "sample_ids": ["tw76HGONaKg", "uiS58TNyUiw"], "start_seconds": ["570", "430"], "properties": ["audio, man, keyboard", "vocalize, bird, chirp"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "of the pigeon in the cage"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["wind blows as people chatter quietly", "an insect buzzes around continuously"], "sample_ids": ["xBxDz0CFVn0", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["wind, chatter, people", "buzzes, continuously, insect"], "captions_pred_video": ["footage is blurry and out of focus", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a fly is buzzing around a microphone "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream of water flows as people talk and wind blows", "winds blows roughly as a vehicle races past"], "sample_ids": ["xBxDz0CFVn0", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["stream, water, flow", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a stream", "label": 0}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "a duck quacks continuously"], "sample_ids": ["w9lpbUn0hPc", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["male, wind, rustling", "quacks, continuously, duck"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a propeller rotates loudly and intensely"], "sample_ids": ["tQWGZLItBXk", "ugHJF0hfYkg"], "start_seconds": ["170", "10"], "properties": ["music, person, ding", "loud, intense, propeller"], "captions_pred_video": ["worms revolution screenshots", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a helicopter engine runs", "a man speaks as a motor runs in the background"], "sample_ids": ["t5ZbXbniOWk", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["engine, helicopter, run", "background, motor, run"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "roadway noise occurs and a truck accelerates"], "sample_ids": ["yajyRTUQk3U", "tgbONvsP47Y"], "start_seconds": ["400", "0"], "properties": ["noise, woman, speak", "noise, truck, accelerate"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a car is driving on the road "], "question": "which noise is caused by a truck", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["s4tUs779vBA", "tw76HGONaKg"], "start_seconds": ["160", "570"], "properties": ["a, sound, stop", "A, game, keyboard"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a man speaks and types on a computer keyboard "], "question": "which entity has a keyboard?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "wind blowing followed by a zoom"], "sample_ids": ["vzxHnu-SFEw", "vr8ZXjEBhMQ"], "start_seconds": ["80", "150"], "properties": ["two objects, woman, speak", "wind, blow, zoom"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a propeller rotates loudly and intensely"], "sample_ids": ["wnpJndXuxLc", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["beeps, loud, whistle", "loud, intense, propeller"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["an engine runs and a man speaks", "a weapon fires multiple times"], "sample_ids": ["yT5WfYMRr-U", "sMC07Ucy7kg"], "start_seconds": ["30", "10"], "properties": ["engine, run, man", "weapon, fire, multiple"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage is from a car's point of view"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["leaves rustle while man speaks", "a vehicle accelerates and squeals tires"], "sample_ids": ["zOZleIRqZm4", "yRx9txMcBl0"], "start_seconds": ["80", "40"], "properties": ["leaves, rustle, speak", "accelerates, tires, squeals"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a car speeding up in the distance"], "sample_ids": ["wtDqrBygTcU", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["man, engine, run", "distance, car, speed"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", null], "captions_pred_audio": ["a man is speaking and a motor is running", "a race car accelerates and revs its engine "], "question": "which object is moving faster", "label": 0}, {"captions": ["a man speaks as a machine runs", "some men converse over an engine running"], "sample_ids": ["vD6lYD1l0BY", "sCiy7QS1U"], "start_seconds": ["330", "300"], "properties": ["a, machine, run", "men, converse, engine"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["birds chirp quietly and an adult man speaks", "a machine clanks and thumps and a male speaks"], "sample_ids": ["zuua6-5goWw", "sWZzXuWYY"], "start_seconds": ["30", "420"], "properties": ["birds, chirp, quiet, man, speaks", "male, clanks, thumps"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a sewing machine runs and a man speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "people applaud and hoot and chat quietly"], "sample_ids": ["xKB8O8LTs6s", "wwyfGO2J4"], "start_seconds": ["70", "90"], "properties": ["music, gunshots, explosion", "people, applaud, hoot"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "people are clapping and speaking with background noise "], "question": "which entity is more peaceful", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "water flows and trickles"], "sample_ids": ["ugHJF0hfYkg", "tB7hWb9gTuQ"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "water, flow, trickle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a helicopter is flying overhead ", "water is splashing and gurgling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["male speech with light ticking", "an airplane engine spools and people speak"], "sample_ids": ["xO-Q2BlIIPU", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["male, speech, ticking", "airplane, engine, spool"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine is running and people are talking"], "question": "which entity is a video", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a man speaks over intermittent keyboard taps"], "sample_ids": ["sWZzXuWYY", "tw76HGONaKg"], "start_seconds": ["420", "570"], "properties": ["male, clanks, thumps", "audio, man, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uzQnlJXBbOM", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["ringing, beep, stop", "loud, multiple, distance"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["someone is snoring while sleeping", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["ujMt0-D-x2k", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["snore, sleep, someone", "loud, laughter, intermittent"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person is snoring loudly", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tQWGZLItBXk", "uYT5gxnyMWM"], "start_seconds": ["170", "50"], "properties": ["music, person, ding", "female, spraying, scream"], "captions_pred_video": ["worms revolution screenshots", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a baby is crying"], "question": "which entity has a person speaking?", "label": 0}, {"captions": ["a machine engine runs and a man speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vs65y4qmyBE", "su6FAOcOA8c"], "start_seconds": ["340", "4"], "properties": ["engine, run, man", "engine, idle, woman"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity has a man speaking while an engine runs?", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x4a9YGIw4ok", "xKB8O8LTs6s"], "start_seconds": ["120", "70"], "properties": ["water, gurgles, stops", "music, gunfire, explosion"], "captions_pred_video": ["footage is blurry and out of focus", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a toilet flushes and water splashes", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "water is sprayed across a hard surface"], "sample_ids": ["xM4joTqDVp4", "sQwlkXjQabo"], "start_seconds": ["160", "10"], "properties": ["background, chirp, birds", "water, spray, surface"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["birds are chirping and a train is moving ", "spraying followed by silence"], "question": "which entity is a video of a train chugging?", "label": 0}, {"captions": ["a man speaking with light rustling", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zOZleIRqZm4", "wz7N8YRy74I"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "rooster, crow, background, men"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["x5cuQjOdM3E", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["cat, meows, young woman", "A, game, keyboard"], "captions_pred_video": ["a black background with an airplane flying in the sky", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man speaks and types on a computer keyboard "], "question": "which entity is playing a video game", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "wind blows strongly and a young man speaks"], "sample_ids": ["xBxDz0CFVn0", "vs65y4qmyBE"], "start_seconds": ["30", "340"], "properties": ["stream, water, flow", "wind, blows, strongly"], "captions_pred_video": ["footage is blurry and out of focus", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a heavy engine is running and men are speaking "], "question": "which entity is a stream of water flowing as people talk and wind blows?", "label": 0}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "people speak as gunfire rings out"], "sample_ids": ["xyL9F5VrjkE", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["wind, motor, distance", "gunfire, ring, speak"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a large crowd cheers and applauds"], "sample_ids": ["y1saVTXsKwc", "rqfQRErjfk8"], "start_seconds": ["80", "170"], "properties": ["a, dog, talk", "crowd, cheers, applauds"], "captions_pred_video": ["a dog playing with a pink ball", "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["a dog barks and a man speaks", "a crowd of people clapping and cheering"], "question": "which entity is more active", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vZAw4apG0Es", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["people, clock, converse", "loud, laughter, intermittent"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a clock is ticking and people are talking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["rustling with distant murmuring", "a car speeding up in the distance"], "sample_ids": ["wnNNcxAPwGQ", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["sound, distance, rustling", "distance, car, speed"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", null], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an engine runs loudly", "a clock ticktocks"], "sample_ids": ["vqZuVbG6-HI", "v-g-j2uTByM"], "start_seconds": ["130", "30"], "properties": ["loud, engine, run", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is blurry because it's raining outside", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a clock is ticking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wTjoRj1se3U", "ukg5L09Wpvo"], "start_seconds": ["390", "150"], "properties": ["engine, run, people", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a jet engine is running and people are talking", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a car speeding up in the distance", "a clock ticktocks"], "sample_ids": ["u0TrcHhkPQ", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["distance, car, speed", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["paper is crumpling consistently", "a toilet flushes and a female speaks"], "sample_ids": ["v5cSxLaHADY", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "female, flushes, toilet"], "captions_pred_video": ["footage of the person holding a pair of scissors", "footage is blurry and out of focus"], "captions_pred_audio": ["paper is crumpled and crinkled", "a toilet flushes and a man speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a man speaks followed by another man speaking outside"], "sample_ids": ["tEE3MpBt1sg", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "two men, speak, follow"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tQWGZLItBXk", "uZesmtKZGSw"], "start_seconds": ["170", "250"], "properties": ["music, person, ding", "men, talk, cars"], "captions_pred_video": ["worms revolution screenshots", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "winds blows roughly as a vehicle races past"], "sample_ids": ["sDSppXIlJrs", "xjvTpk2Zpr8"], "start_seconds": ["27", "70"], "properties": ["microphone, water, wind", "wind, blows, vehicle"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "people speak in the background as a clock ticktocks"], "sample_ids": ["vr8ZXjEBhMQ", "vZAw4apG0Es"], "start_seconds": ["150", "30"], "properties": ["sound, distance, engine", "background, clock, ticktocks"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a clock is ticking and people are talking"], "question": "which entity has a clock ticking in the background?", "label": 1}, {"captions": ["frogs croak and vocalize", "women speak and laugh as wind blows"], "sample_ids": ["yswmmRZFItk", "un9VQlzgZM"], "start_seconds": ["0", "5"], "properties": ["croak, vocalize, frog", "wind, speak, laugh"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is a human", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vBslzh7saPw", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["power, scream, increase", "three men, wind, flow"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "an airplane engine spools and people speak"], "sample_ids": ["wTideSjRFS0", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["food, sizzle, woman", "airplane, engine, spool"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a toilet flushes and water drains", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sfAvvZwdLCY", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "multiple, people, yell"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a crowd of people are talking and laughing"], "question": "which entity has more water", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w5W5Kqtc8E", "wDVMhEdTiVw"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "water splashes as an animal walks through"], "sample_ids": ["vbpKkWvfOu4", "w1ir-sZ3Im8"], "start_seconds": ["560", "90"], "properties": ["a, man, speaks", "animal, water, splashes"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["speaking following by laughing and clapping", "small dogs yip and bark sharply"], "sample_ids": ["u2f5NpsoHBg", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["person, laugh, clap", "bark, yip, sharply"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a weapon fires multiple times", "a machine beeps continuously"], "sample_ids": ["sMC07Ucy7kg", "y682ml90jGw"], "start_seconds": ["10", "11"], "properties": ["weapon, fire, multiple", "beeps, machine, continuously"], "captions_pred_video": ["footage is from a car's point of view", null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a beeping sound is being made "], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["vBHyYJ8pL0", "xyL9F5VrjkE"], "start_seconds": ["2", "20"], "properties": ["noise, door, opening", "wind, motor, distance"], "captions_pred_video": [null, "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "the wind is blowing and a car is passing by "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["a propeller rotates loudly and intensely", "a man speaks as a motor runs in the background"], "sample_ids": ["ugHJF0hfYkg", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "background, motor, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is quieter", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["weDbePuc-Xc", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["music, slaps, human", "two men, woman, birds"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "water pouring and bubbling"], "sample_ids": ["x9JovgqUcs", "uyRfq-jKPpo"], "start_seconds": ["500", "50"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man speaks and types on a keyboard", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a person snoring", "water splashes as an animal walks through"], "sample_ids": ["t8tv5YRMJUg", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["a person, snore, loud", "animal, water, splashes"], "captions_pred_video": ["of a man getting his face licked by another man", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a person sniffs and breathes heavily", "water splashes and gurgles as people speak"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wqN6IIHw3po", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "rooster, crow, background, men"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "water is sprayed across a hard surface"], "sample_ids": ["uYT5gxnyMWM", "sQwlkXjQabo"], "start_seconds": ["50", "10"], "properties": ["female, spraying, scream", "water, spray, surface"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "spraying followed by silence"], "question": "which entity is sprayed across a hard surface", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tK4VlLsNxak", "wqZ135Ssz0"], "start_seconds": ["120", "60"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "two men, woman, birds"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a duck quacks continuously"], "sample_ids": ["wvKpEYswXO0", "vh30P49Po6s"], "start_seconds": ["150", "30"], "properties": ["water, tap, run", "quacks, continuously, duck"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "people speak as gunfire rings out"], "sample_ids": ["zFjIWfSD-4", "wqTCwqVRDlk"], "start_seconds": ["410", "80"], "properties": ["People, motor, brakes", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["food is frying and sizzles", "a car accelerates and wind blows"], "sample_ids": ["zNRChLjqcU", "u0TrcHhkPQ"], "start_seconds": ["220", "20"], "properties": ["food is frying, sizzles, food", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sNB8zxXneIM", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "multiple, people, yell"], "captions_pred_video": ["a group of geese in a cage", null], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a drill runs and two people laugh", "water flows and trickles"], "sample_ids": ["tEE3MpBt1sg", "tB7hWb9gTuQ"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "water, flow, trickle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tDlysoZiA1I", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, chirp", "gun, shoot, water"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks as a motor runs in the background"], "sample_ids": ["sfAvvZwdLCY", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "background, motor, run"], "captions_pred_video": ["footage of the toilet in the bathroom", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["someone snores nearby", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["spJCm8tD9Zo", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["someone snores, nearby, someone", "two men, woman, birds"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a man woman speak while crickets sing", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["zTLVJCo4WEE", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "beeps, hit, woman"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a child speaks in closed space"], "sample_ids": ["wP8ZKrlx3oA", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["fall, rain, splash", "child, space, speak"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not a splash", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wz7N8YRy74I", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "a woman, a television program, a bird"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a rooster?", "label": 0}, {"captions": ["a clock ticktocks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["v-g-j2uTByM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks", "stream, water, flow"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["frogs croak and vocalize", "a man speaks as a car is passing by"], "sample_ids": ["yswmmRZFItk", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["croak, vocalize, frog", "a, car, pass"], "captions_pred_video": ["a close up of a frog in the water", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a frog is croaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["a train horn blows as it passes by", "a man speaks as a car is passing by"], "sample_ids": ["zVacuqSb4LI", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["horn, blows, train", "a, car, pass"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a man is speaking with background noise and breathing sounds "], "question": "which is a moving object", "label": 0}, {"captions": ["a vehicle engine accelerates and wind blows", "an infant crying frantically"], "sample_ids": ["wudZTNBtVqc", "zwOBqeFTgiU"], "start_seconds": ["60", "30"], "properties": ["accelerates, engine, wind", "cry, infant, frantically"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "of the baby crying in the car seat"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["goats bleat and people speak", "a frog croaks as other frogs croak in the background"], "sample_ids": ["z5iUE5h0EPs", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["goats bleat, people speak, language", "background, frog, croak"], "captions_pred_video": ["of the goat in the barn", "a close up of a frog in the water"], "captions_pred_audio": ["a goat bleats and a man speaks", "a frog is croaking"], "question": "which entity is a single animal", "label": 1}, {"captions": ["a helicopter engine runs continuously", "small dogs growl, bark and yip."], "sample_ids": ["ugHJF0hfYkg", "sShpyu2l4YQ"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "growl, bark, yip"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "the puppies are playing with a toy"], "captions_pred_audio": ["a helicopter is flying overhead ", "a dog is barking and growling"], "question": "which entity is more likely to be running continuously", "label": 0}, {"captions": ["a weapon fires multiple times", "a toilet flushes and a female speaks"], "sample_ids": ["sMC07Ucy7kg", "yaln9y8I7ms"], "start_seconds": ["10", "230"], "properties": ["weapon, fire, multiple", "female, flushes, toilet"], "captions_pred_video": ["footage is from a car's point of view", "footage is blurry and out of focus"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a toilet flushes and a man speaks"], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "an infant crying as a woman laughs"], "sample_ids": ["vzxHnu-SFEw", "xhmRY9yhC7c"], "start_seconds": ["80", "20"], "properties": ["two objects, woman, speak", "a, laugh, infant"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a baby cries and a woman speaks"], "question": "which woman is a mother", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vZAw4apG0Es", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["background, clock, ticktocks", "loud, multiple, distance"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a man speaks over a running engine and blowing wind"], "sample_ids": ["wtDqrBygTcU", "ylpYOorfH4o"], "start_seconds": ["30", "410"], "properties": ["man, engine, run", "engine, running, wind"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man is speaking and an engine is revving"], "question": "which entity is a boat?", "label": 0}, {"captions": ["an adult woman and an adult man speak", "a man speaks as a motor runs in the background"], "sample_ids": ["zTLVJCo4WEE", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "background, motor, run"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "birds chirp as a man speaks and a younger person speaks"], "sample_ids": ["smDKStoHBJo", "xl2PIWyXaM"], "start_seconds": ["0", "160"], "properties": ["a, talk, baby, cry", "chirp, man, younger person"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "birds are chirping and people are talking"], "question": "which entity has a baby?", "label": 0}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vddP56-ogds", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["water, splash, person, laugh", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a person speaking?", "label": 0}, {"captions": ["food is frying while a woman speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["yhQ2Lg-7qDY", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["food, woman, speak", "animal, grunts, snorts"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a man speaks as bees buzz and birds chirp", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["t25U-v4k4ts", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["bees buzz, birds chirp, man speaks", "a woman, laughs, animal"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal snorting?", "label": 1}, {"captions": ["a small engine spits as it runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sZvwOuuPGP0", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["spits, engine, runs", "female, spraying, scream"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a medium engine is running ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a car speeding up in the distance"], "sample_ids": ["y682ml90jGw", "u0TrcHhkPQ"], "start_seconds": ["11", "20"], "properties": ["beeps, series, electronic", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a stream of water runs briefly"], "sample_ids": ["vmrxwuAMb2I", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["a dog, inhales, exhales", "stream, water, run"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a dog barks and growls", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tMbMDvT50j8", "zl9Dqx-j7q4"], "start_seconds": ["12", "6"], "properties": ["a, cry, woman", "engine, laugh, loud"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a baby cries and a woman speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "water splashes as an animal walks through"], "sample_ids": ["s4Uz1Ffgo04", "w1ir-sZ3Im8"], "start_seconds": ["100", "90"], "properties": ["roars, background, people speaking", "animal, water, splashes"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak in a closed space", "a stream of water runs briefly"], "sample_ids": ["sTpirNYo8vQ", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["people, space, speak", "stream, water, run"], "captions_pred_video": ["of a man taking a selfie on a bus", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a telephone rings followed by a woman talking"], "sample_ids": ["tGcFnX0GHI", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["ring, talk, woman", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a video of a woman talking?", "label": 0}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "wind blows as people chatter quietly"], "sample_ids": ["xyL9F5VrjkE", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["wind, motor, distance", "wind, chatter, people"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a stream of water runs briefly"], "sample_ids": ["uqFtmnhuqA8", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["a, b, c", "stream, water, run"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "water splashing and a person laughs in the distance then a man speaks nearby"], "sample_ids": ["vKrYfzleLB8", "vddP56-ogds"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "water, splash, person, laugh"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", null], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "water is running and gurgling and a man is speaking"], "question": "which entity is more calm", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a clock ticktocks"], "sample_ids": ["vdoxuJn9lTc", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a child speaks followed by a burp", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "water splashes as an animal walks through"], "sample_ids": ["smDKStoHBJo", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["a, infant, speaking", "animal, water, splashes"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "water splashes and gurgles as people speak"], "question": "which entity is a video of an animal walking through water?", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a horn rings out as a machine runs by"], "sample_ids": ["tZGN5a7ybxo", "slZLHwNbbt4"], "start_seconds": ["60", "300"], "properties": ["ring, train, horn", "a, horn, run"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a door opens and birds chirp"], "sample_ids": ["vfYTJq7nU", "yeFvk9x0wWI"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "door, open, birds"], "captions_pred_video": [null, "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a duck quacks and a woman speaks", "birds chirp in the background as a car drives by "], "question": "which entity is more quiet", "label": 1}, {"captions": ["children speak and play together", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yVVP8XvWJTo", "su6FAOcOA8c"], "start_seconds": ["260", "4"], "properties": ["children, speak, play", "engine, idle, woman"], "captions_pred_video": ["footage of a playground at a school or daycare center", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wvKpEYswXO0", "uEU-Hg5MTN8"], "start_seconds": ["150", "27"], "properties": ["water, tap, run", "a woman, laughs, animal"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking and a baby is crying"], "question": "which entity is about water?", "label": 0}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a toilet flushes and a female speaks"], "sample_ids": ["ukxt9I7eMMg", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["continuous, woman, speaking", "female, flushes, toilet"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a toilet flushes and a man speaks"], "question": "which entity has a woman speaking towards the end?", "label": 0}, {"captions": ["a beep occurs briefly", "a woman speaks as she rubs two objects together"], "sample_ids": ["xtWeJ56-U-g", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["beep, occur, briefly", "two objects, woman, speak"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "small dogs yip and bark sharply"], "sample_ids": ["se87d6yxEOA", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["run, whistle, pass", "bark, yip, sharply"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["xl2PIWyXaM", "uEU-Hg5MTN8"], "start_seconds": ["160", "27"], "properties": ["chirp, man, younger person", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds are chirping and people are talking", "a woman is speaking and a baby is crying"], "question": "which entity has a more snorts", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tIY7qOV3rEM", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "female, spraying, scream"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a toilet flushes and water drains"], "sample_ids": ["v0x1odnXtP0", "sfAvvZwdLCY"], "start_seconds": ["210", "20"], "properties": ["keyboard, type, computer", "water drains, flushes, water"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a person is typing on a keyboard", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a dark barks and whimpers", "wind blows as people chatter quietly"], "sample_ids": ["sYj4hpDUZDQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "wind, chatter, people"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vf9xf3vMsGM", "sLUnaPT5gM8"], "start_seconds": ["540", "0"], "properties": ["A man speaks while turning a water faucet on.", "loud, laughter, intermittent"], "captions_pred_video": ["of the person washing their hands under the faucet", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds chirp as a train approaches", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xM4joTqDVp4", "vfYTJq7nU"], "start_seconds": ["160", "130"], "properties": ["bird, chirp, train", "rustling, ducks, quack"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "a duck quacks and a woman speaks"], "question": "which entity is about birds?", "label": 0}, {"captions": ["water flows as men speak and yell", "a stream of water runs briefly"], "sample_ids": ["vJ7JPEFhyLA", "x-PeY8Yb8M4"], "start_seconds": ["16", "300"], "properties": ["water, flow, men", "stream, water, run"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["uEU-Hg5MTN8", "sLUnaPT5gM8"], "start_seconds": ["27", "0"], "properties": ["animal, grunts, snorts", "loud, laughter, intermittent"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["x4a9YGIw4ok", "vfYTJq7nU"], "start_seconds": ["120", "130"], "properties": ["water, gurgles, stops", "rustling, ducks, quack"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and water splashes", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["a vehicle engine revs as the vehicle passes", "speaking following by laughing and clapping"], "sample_ids": ["yDoT73BWsdA", "u2f5NpsoHBg"], "start_seconds": ["10", "30"], "properties": ["engine, revs, vehicle", "person, laugh, clap"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a crowd is clapping"], "question": "which entity is a person", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["sSMl2vc3ek", "sjlVMgdGSK0"], "start_seconds": ["20", "30"], "properties": ["a person, laughs, snores", "accelerates, vehicle, race car"], "captions_pred_video": [null, "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a person snoring loudly", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person is burping while a girl speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vdoxuJn9lTc", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["person, burp, girl", "rustling, ducks, quack"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a woman speaks as she rubs two objects together"], "sample_ids": ["zFjIWfSD-4", "vzxHnu-SFEw"], "start_seconds": ["410", "80"], "properties": ["People, motor, brakes", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a woman speaking?", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "water splashes as an animal walks through"], "sample_ids": ["zALy31PjDl0", "w1ir-sZ3Im8"], "start_seconds": ["21", "90"], "properties": ["a man, a vehicle, a horn", "animal, water, splashes"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["bees buzz as wind blows", "a small engine idles continuously"], "sample_ids": ["tMJne1a4AFI", "y5WII6cTH7k"], "start_seconds": ["0", "40"], "properties": ["bees, buzz, wind", "engine, idle, continuously"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a swarm of bees buzzing around", "an engine is knocking and vibrating "], "question": "which entity is not a living thing", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "paper folding and crinkling"], "sample_ids": ["sjlVMgdGSK0", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["accelerates, vehicle, race car", "paper, fold, crinkle"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which is not a vehicle", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["uZesmtKZGSw", "vlS6YMeWAPo"], "start_seconds": ["250", "40"], "properties": ["men, talk, cars", "sheep, baa, birds"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["vlJS7LN2XyM", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["background, clocks, ticking", "wind, blows, vehicle"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a ticktock of a clock", "a jet engine roars and wind blows "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a infant makes noise and is excited"], "sample_ids": ["t97k0cejSQE", "wIJK3-5y0kA"], "start_seconds": ["250", "30"], "properties": ["bird, chirp, insect", "noise, excited, infant"], "captions_pred_video": ["a bee on a purple thistle flower", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a toilet flushes and water drains", "a man speaks in the background while a slow tick repeats"], "sample_ids": ["sfAvvZwdLCY", "vZAw4apG0Es"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "background, tick, repeat"], "captions_pred_video": ["footage of the toilet in the bathroom", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a toilet is flushed", "a clock is ticking and people are talking"], "question": "which entity is a video of a toilet flushing?", "label": 0}, {"captions": ["pigeons vocalize and birds chirp", "a stream of water runs briefly"], "sample_ids": ["uiS58TNyUiw", "x-PeY8Yb8M4"], "start_seconds": ["430", "300"], "properties": ["vocalize, bird, chirp", "stream, water, run"], "captions_pred_video": ["of the pigeon in the cage", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "an insect buzzes around continuously"], "sample_ids": ["ugHJF0hfYkg", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["loud, intense, propeller", "buzzes, continuously, insect"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a helicopter is flying overhead ", "a fly is buzzing around a microphone "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a toilet flushes and a female speaks"], "sample_ids": ["soTOh3zYJfY", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["vehicle, skid, tires", "female, flushes, toilet"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "footage is blurry and out of focus"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a person is snoring while sleeping", "dishes cling together then a man begins to speak"], "sample_ids": ["vJrjSeP17yE", "sQGXqGcwOTc"], "start_seconds": ["40", "3"], "properties": ["a person is sleeping, snoring, person", "cling, speak, dishes"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person snoring loudly", "mechanisms are operating and water is splashing "], "question": "which entity is about a person speaking?", "label": 1}, {"captions": ["paper is crumpling consistently", "a saw finishes running as metal clings in the background"], "sample_ids": ["v5cSxLaHADY", "zofjfKhqLk8"], "start_seconds": ["0", "10"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "background, metal, clings"], "captions_pred_video": ["footage of the person holding a pair of scissors", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["paper is crumpled and crinkled", "a large engine is running and a bell is ringing"], "question": "which entity is a video of a saw running?", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "paper folding and crinkling"], "sample_ids": ["y8WEcpOlT3I", "zPpG3RD8lSs"], "start_seconds": ["40", "20"], "properties": ["wind, speak, buffeting", "paper, fold, crinkle"], "captions_pred_video": ["on how to use a sewing machine youtube", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["food is frying and sizzles", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zNRChLjqcU", "tdWhHV3X25Q"], "start_seconds": ["220", "60"], "properties": ["food is frying, sizzles, food", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vbr9mHKc8WM", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["noise, loudness, engine", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a baby is crying"], "question": "which entity is quieter", "label": 0}, {"captions": ["race cars go around a track as a man commentates", "winds blows roughly as a vehicle races past"], "sample_ids": ["uZesmtKZGSw", "xjvTpk2Zpr8"], "start_seconds": ["250", "70"], "properties": ["car, track, man", "wind, blows, vehicle"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "some tunes played by whistling"], "sample_ids": ["w5W5Kqtc8E", "u6BnG6YZqJ4"], "start_seconds": ["100", "0"], "properties": ["wind, engine, scream", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a motorcycle engine works nearby", "winds blows roughly as a vehicle races past"], "sample_ids": ["tOSWIURC-4", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["engine, work, nearby", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a lawn mower is running ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man speaks while water drains", "an insect buzzes around continuously"], "sample_ids": ["vSeGhaZt-aI", "v25l1jef3JY"], "start_seconds": ["50", "0"], "properties": ["water, drain, man", "buzzes, continuously, insect"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tZGN5a7ybxo", "tiDFTC-5vU"], "start_seconds": ["60", "30"], "properties": ["ring, train, horn", "male, duck, laugh"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", null], "captions_pred_audio": ["a train is moving and blowing its horn ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a clock ticktocks continuously", "a man sprays as a scraping occurs in the background"], "sample_ids": ["vlJS7LN2XyM", "sOa7g-44Dag"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "background, man, spray"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and rubbing his hands together "], "question": "which entity is a man?", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a man makes an exclamation, then another man speaks"], "sample_ids": ["w2M4i1mklOA", "xO-Q2BlIIPU"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "two men, exclamation, speak"], "captions_pred_video": ["footage of an antique clock", "a clock with a green glowing display showing the time 09 07 2016 12 31 2016"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking with background noise and breathing sounds "], "question": "which is quieter", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "water splashes and a door squeaks"], "sample_ids": ["vBHyYJ8pL0", "sdXV-ylviw"], "start_seconds": ["2", "190"], "properties": ["noise, door, opening", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["a person is burping while a girl speaks", "vehicle tires screech and a man speaks before a car door opens"], "sample_ids": ["vdoxuJn9lTc", "sxYkFKFIZD0"], "start_seconds": ["40", "20"], "properties": ["person, burp, girl", "screech, man, door"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking while a car is revving and accelerating with a squeal in the background "], "question": "which entity is about a car door opening?", "label": 1}, {"captions": ["ticking continues without interruption", "a male speaks and another male speaks"], "sample_ids": ["v-g-j2uTByM", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "two males, speaking, male"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is not continuous", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "water flows as men speak and yell"], "sample_ids": ["xKB8O8LTs6s", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["music, gunfire, explosion", "water, flow, men"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "paper is crumpling consistently"], "sample_ids": ["vbZ-0lGPneg", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["a woman, a television program, a bird", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "an insect buzzes around continuously"], "sample_ids": ["v7jJS8aAyA", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["wind, blows, loudly", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a fly is buzzing around a microphone "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a child speaks in closed space"], "sample_ids": ["yajyRTUQk3U", "yW6FWLSLkx4"], "start_seconds": ["400", "40"], "properties": ["noise, woman, speak", "child, space, speak"], "captions_pred_video": ["- a woman cooking in the kitchen", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking over a noise", "label": 0}, {"captions": ["wind blows strongly", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w8uLijTqtlU", "wDVMhEdTiVw"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "gun, shoot, water"], "captions_pred_video": ["footage is blurry and shaky", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["the wind is blowing strongly", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a gun?", "label": 0}, {"captions": ["a person speaks over rustling leaves", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zOZleIRqZm4", "wDVMhEdTiVw"], "start_seconds": ["80", "30"], "properties": ["rustling, leaves, person", "gun, shoot, water"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a person sniffles and sneezes", "water flows and trickles"], "sample_ids": ["uRlbY6aoBU", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is sneezing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a toilet flushes and water drains", "a clock ticktocks"], "sample_ids": ["sfAvvZwdLCY", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a toilet is flushed", "a clock is ticking loudly"], "question": "which entity is a timepiece", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a child speaks in closed space"], "sample_ids": ["zALy31PjDl0", "yW6FWLSLkx4"], "start_seconds": ["21", "40"], "properties": ["a man, a vehicle, a horn", "child, space, speak"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["w2M4i1mklOA", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["alarm, gears, turn", "water, radio, man"], "captions_pred_video": ["footage of an antique clock", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a clock?", "label": 0}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["vlJS7LN2XyM", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["background, clocks, ticking", "engine revs, vehicle, people"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a ticktock of a clock", "a truck is revving its engine and a man is speaking "], "question": "which entity is more active", "label": 1}, {"captions": ["ticking continues without interruption", "a duck quacks loudly and continuously"], "sample_ids": ["v-g-j2uTByM", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "loud, continuous, quacks"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a clock is ticking loudly", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tDVADusiIoc", "wDVMhEdTiVw"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "gun, shoot, water"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is about shooting water?", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a clock ticktocks"], "sample_ids": ["wtDqrBygTcU", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a motor is running", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "paper is crumpling consistently"], "sample_ids": ["voJh2gJxXhA", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["music, frog, croak", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["music is playing and crickets are chirping ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "plastic is tapped on while someone speaks"], "sample_ids": ["x4a9YGIw4ok", "wvKpEYswXO0"], "start_seconds": ["120", "150"], "properties": ["water, gurgles, stops", "plastic, tap, speak"], "captions_pred_video": ["footage is blurry and out of focus", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a toilet flushes and water splashes", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks?", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sEprKHm8Sj8", "xfaoyyzw2WU"], "start_seconds": ["90", "180"], "properties": ["noise, loud, buzzing", "loud, jet engine, roar"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "an aircraft engine roars and a man speaks "], "question": "which noise is louder", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "an airplane engine runs"], "sample_ids": ["sOa7g-44Dag", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["background, man, spray", "engine, airplane, runs"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man speaks while water drains", "wind blows as people chatter quietly"], "sample_ids": ["vSeGhaZt-aI", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["water, drain, man", "wind, chatter, people"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "some tunes played by whistling"], "sample_ids": ["vW4x7S1VfQc", "u6BnG6YZqJ4"], "start_seconds": ["150", "0"], "properties": ["clacking, oil, woman", "tune, play, whistling"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["food sizzles in a frying pan", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xjhAnI2q6hM", "yajyRTUQk3U"], "start_seconds": ["6", "400"], "properties": ["engine revs, vehicle, people", "a woman, something, fried"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["y2bVZ7rz-5M", "vlS6YMeWAPo"], "start_seconds": ["280", "40"], "properties": ["motor noise, horn, siren", "sheep, baa, birds"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a goat bleats and birds chirp"], "question": "which entity is followed by a horn honking and a siren wailing", "label": 0}, {"captions": ["a person is snoring while sleeping", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vJrjSeP17yE", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["a person is sleeping, snoring, person", "animal, grunts, snorts"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["an airplane engine runs", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yVPZ2MNWpms", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["engine, airplane, runs", "People, motor, brakes"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "paper is crumpling consistently"], "sample_ids": ["vdoxuJn9lTc", "v5cSxLaHADY"], "start_seconds": ["40", "0"], "properties": ["burp, loud, girl", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a child speaks followed by a burp", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["children speak and play together", "someone snores nearby"], "sample_ids": ["yVVP8XvWJTo", "spJCm8tD9Zo"], "start_seconds": ["260", "90"], "properties": ["children, speak, play", "someone snores, nearby, someone"], "captions_pred_video": ["footage of a playground at a school or daycare center", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a car accelerates and wind blows"], "sample_ids": ["yLy-WycbVVE", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, people, talk", "accelerates, wind, blows"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "two women and a man talk while a kid cries"], "sample_ids": ["yFB25fqfU8I", "wyllXV6PjKo"], "start_seconds": ["300", "30"], "properties": ["wave, crash, shoreline", "a kid, talk, cry"], "captions_pred_video": ["footage of a person surfing in the ocean", null], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman speaks and a baby cries"], "question": "which entity is more calm", "label": 1}, {"captions": ["a person screams glaringly", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["xC8kbrKJmco", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["glaringly, screams, person", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "a man is speaking and ducks are quacking"], "question": "which entity is a person?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a vehicle accelerates and squeals tires"], "sample_ids": ["uRExseg-0XI", "yRx9txMcBl0"], "start_seconds": ["210", "40"], "properties": ["woman, man, water", "accelerates, tires, squeals"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an adult woman and an adult man speak", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zTLVJCo4WEE", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["two people, adult, speak", "music, gunfire, explosion"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman speaks and crickets chirp", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["people speak and tapping occurs", "water running down a sink while a man is talking"], "sample_ids": ["tFCUUGdREgA", "vSeGhaZt-aI"], "start_seconds": ["70", "50"], "properties": ["people, tap, speak", "water, sink, talk"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of water running down a sink while a man is talking?", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xKB8O8LTs6s", "wDVMhEdTiVw"], "start_seconds": ["70", "30"], "properties": ["music, gunshots, explosion", "gun, shoot, water"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity has a gunshot followed by an explosion?", "label": 0}, {"captions": ["multiple people speak and children yell while water gurgles", "a infant makes noise and is excited"], "sample_ids": ["vb1fPSDI4c", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks over intermittent keyboard taps", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tw76HGONaKg", "vb1fPSDI4c"], "start_seconds": ["570", "30"], "properties": ["audio, man, keyboard", "multiple, people, yell"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "people cheer as a vehicle engine revs"], "sample_ids": ["rwTERCUno", "xjhAnI2q6hM"], "start_seconds": ["90", "6"], "properties": ["engine, idle, sputter", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["an engine is idling and vibrating", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "water flows as men speak and yell"], "sample_ids": ["s4Uz1Ffgo04", "vJ7JPEFhyLA"], "start_seconds": ["100", "16"], "properties": ["water, rushes, motorcycle", "water, flow, men"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "water splashes as an animal walks through"], "sample_ids": ["tMJne1a4AFI", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["wind, buzz, rustling", "animal, water, splashes"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a swarm of bees buzzing around", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "water flows as men speak and yell"], "sample_ids": ["w34HjHr6gAY", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["beeps, hit, woman", "water, flow, men"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water flowing", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["u--KhUW8l1Y", "w6RTHR6AeAg"], "start_seconds": ["0", "40"], "properties": ["engine, sound, horn", "call, owl, screech"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", null], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "an owl hoots and mechanisms operate "], "question": "which entity is a bird?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["uRExseg-0XI", "xfaoyyzw2WU"], "start_seconds": ["210", "180"], "properties": ["woman, man, water", "loud, jet engine, roar"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vVhthZ45k3Y", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["cat, purr, hiss", "harsh, wind, blows"], "captions_pred_video": ["footage is blurry and out of focus", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be a natural phenomenon", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wudZTNBtVqc", "tDVADusiIoc"], "start_seconds": ["60", "60"], "properties": ["accelerates, engine, wind", "water, radio, man"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "wind blowing and birds chirping with the distant cooing of a large bird"], "sample_ids": ["w5W5Kqtc8E", "wRBHTgrbiwg"], "start_seconds": ["100", "50"], "properties": ["water, splashes, motorboat", "birds, chirp, cooing"], "captions_pred_video": [null, "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "birds are chirping and insects are buzzing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["wvKpEYswXO0", "viuTg1M-dqg"], "start_seconds": ["150", "30"], "properties": ["plastic, tap, speak", "two men, speak, follow"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["someone snores nearby", "a woman speaks as she rubs two objects together"], "sample_ids": ["spJCm8tD9Zo", "vzxHnu-SFEw"], "start_seconds": ["90", "80"], "properties": ["someone snores, nearby, someone", "two objects, woman, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["soTOh3zYJfY", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["vehicle, skid, tires", "a woman, a television program, a bird"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["food fries in a pan as someone talks and cooks", "a man speaks as a car is passing by"], "sample_ids": ["ukxt9I7eMMg", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "a, car, pass"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "someone whistles a tune"], "sample_ids": ["w34HjHr6gAY", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["beeps, hit, woman", "someone, tune, whistle"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "an engine runs loudly"], "sample_ids": ["vbpKkWvfOu4", "vqZuVbG6-HI"], "start_seconds": ["560", "130"], "properties": ["a, man, speaks", "loud, engine, run"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "someone is typing on a computer keyboard"], "sample_ids": ["su6FAOcOA8c", "v0x1odnXtP0"], "start_seconds": ["4", "210"], "properties": ["engine, idle, woman", "keyboard, type, computer"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a person is typing on a keyboard"], "question": "which is not a person", "label": 0}, {"captions": ["a speedboat passes quickly on the water", "dishes cling together then a man begins to speak"], "sample_ids": ["tjmoSi330GM", "sQGXqGcwOTc"], "start_seconds": ["23", "3"], "properties": ["speed, water, boat", "cling, speak, dishes"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "mechanisms are operating and water is splashing "], "question": "which entity is a still image?", "label": 0}, {"captions": ["a clock ticktocks continuously", "a woman speaks as she rubs two objects together"], "sample_ids": ["vlJS7LN2XyM", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["ticktocks, clock, ticktocks continuously", "two objects, woman, speak"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a clock", "label": 0}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "some light rustling followed by a loud burp and a girl speaking"], "sample_ids": ["s59PfAghdkM", "vdoxuJn9lTc"], "start_seconds": ["0", "40"], "properties": ["bird, chirp, background, horse, neigh", "burp, loud, girl"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a child speaks followed by a burp"], "question": "which entity has a horse in it?", "label": 0}, {"captions": ["birds chirp and pigeons vocalize while walking around", "running water in a faucet with some clinks"], "sample_ids": ["wIvYjuR3nrg", "zNRChLjqcU"], "start_seconds": ["9", "220"], "properties": ["birds, pigeons, vocalize", "water, faucet, run"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", null], "captions_pred_audio": ["birds are chirping and cooing", "water is running from a faucet into a sink"], "question": "which entity is silent", "label": 1}, {"captions": ["a person screams glaringly", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["xC8kbrKJmco", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["glaringly, screams, person", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a goat is bleating ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["wP8ZKrlx3oA", "uWPRNLnpy7Y"], "start_seconds": ["40", "10"], "properties": ["rain, storm, thunder", "accelerate, laugh, vehicle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "is taken from a car driving down the street"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a car accelerates and revs its engine "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "water rushes by"], "sample_ids": ["s4Uz1Ffgo04", "x-PeY8Yb8M4"], "start_seconds": ["100", "300"], "properties": ["water, rushes, vehicle", "water, rushes, by"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a car is driving on a wet road "], "question": "which entity is a video of water rushing by?", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["wqADXCzngMw", "uEU-Hg5MTN8"], "start_seconds": ["340", "27"], "properties": ["engine, idle, man", "animal, grunts, snorts"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "an airplane engine runs"], "sample_ids": ["yaln9y8I7ms", "yVPZ2MNWpms"], "start_seconds": ["230", "0"], "properties": ["female, flushes, toilet", "engine, airplane, runs"], "captions_pred_video": ["footage is blurry and out of focus", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["leaves rustle while man speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zOZleIRqZm4", "vb1fPSDI4c"], "start_seconds": ["80", "30"], "properties": ["leaves, rustle, speak", "multiple, people, yell"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a crowd of people are talking and laughing"], "question": "which entity is more active", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a clock ticktocks in wind"], "sample_ids": ["yLy-WycbVVE", "yVumC9TGknc"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "ticktocks, clock, wind"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "game title screen of the game shadow of the colossus on sony playstation 2"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a series of beeps and chirps"], "question": "which entity is silent", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "an airplane engine runs"], "sample_ids": ["zofjfKhqLk8", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["noise, stop, motor", "engine, airplane, runs"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zNRChLjqcU", "yajyRTUQk3U"], "start_seconds": ["220", "400"], "properties": ["water, faucet, run", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tjmoSi330GM", "vfYTJq7nU"], "start_seconds": ["23", "130"], "properties": ["speed, water, boat", "rustling, ducks, quack"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a duck quacks and a woman speaks"], "question": "which entity is moving at a slower speed", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a telephone rings followed by a woman talking"], "sample_ids": ["wRV8yMk886E", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["liquid, spray, nozzle", "ring, talk, woman"], "captions_pred_video": ["two cars are parked in a parking lot at night", null], "captions_pred_audio": ["a man speaks followed by a loud burst", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["some men converse over an engine running", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sCiy7QS1U", "uZesmtKZGSw"], "start_seconds": ["300", "250"], "properties": ["men, converse, engine", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity shows men talking about cars?", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vlJS7LN2XyM", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["background, clocks, ticking", "a, scream, girl"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a door slams shut roughly", "a woman speaks as she rubs two objects together"], "sample_ids": ["zkKdxzNC97Y", "vzxHnu-SFEw"], "start_seconds": ["27", "80"], "properties": ["a door, slams, shut", "two objects, woman, speak"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tDlysoZiA1I", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["animal, grunt, multiple", "music, gunfire, explosion"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uYT5gxnyMWM", "tiDFTC-5vU"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "male, duck, laugh"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a man speaks while water drains", "paper is crumpling consistently"], "sample_ids": ["vSeGhaZt-aI", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["water, drain, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man talks as several small engines run", "a clock ticktocks"], "sample_ids": ["u9A6VZQCZpU", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "people applaud and hoot and chat quietly"], "sample_ids": ["w0xsN8X18Y", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["rain, thunder, surface", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["white noise and birds chirping", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wRBHTgrbiwg", "tDlysoZiA1I"], "start_seconds": ["50", "0"], "properties": ["noise, white, chirping", "animal, grunts, chirps"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "birds are chirping and a rooster is crowing "], "question": "which entity is more like a song", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sK4u5T8hW78", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["a, car, pass", "harsh, wind, blows"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be in a car", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "a toilet flushes and a female speaks"], "sample_ids": ["y8WEcpOlT3I", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["wind, speak, buffeting", "female, flushes, toilet"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a man speaks while a machine runs before a smoke alarm beeps"], "sample_ids": ["tDVADusiIoc", "sG7TyPnFDR0"], "start_seconds": ["60", "180"], "properties": ["man, radio, blows", "beeps, machine, smoke alarm"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a person is using an espresso machine in a restaurant"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a microwave oven is beeping "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["someone is typing on a computer keyboard", "water flows and trickles"], "sample_ids": ["v0x1odnXtP0", "tB7hWb9gTuQ"], "start_seconds": ["210", "30"], "properties": ["keyboard, type, computer", "water, flow, trickle"], "captions_pred_video": ["how to make money on youtube in spanish", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a person is typing on a keyboard", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "wind blows as people chatter quietly"], "sample_ids": ["ukxt9I7eMMg", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "wind, chatter, people"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vZAw4apG0Es", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["people, clock, converse", "wind, blow, vehicle"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "waves crash against a shoreline and people speak"], "sample_ids": ["y8WEcpOlT3I", "yFB25fqfU8I"], "start_seconds": ["40", "300"], "properties": ["harsh, wind, blows", "wave, crash, shoreline"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks with water running", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wTideSjRFS0", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["water, running, woman", "engine, accelerate, idle"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wvKpEYswXO0", "sSMl2vc3ek"], "start_seconds": ["150", "20"], "properties": ["water, tap, run", "loud, multiple, distance"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["w5W5Kqtc8E", "yDoT73BWsdA"], "start_seconds": ["100", "10"], "properties": ["wind, blow, vehicle", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "someone whistles a tune"], "sample_ids": ["yJ0TePmaOo", "sIXTftIuUgw"], "start_seconds": ["390", "90"], "properties": ["two hard objects, man, speak", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["uzQnlJXBbOM", "tDlfY3nmx1A"], "start_seconds": ["50", "160"], "properties": ["ringing, beep, stop", "applause, laugh, man"], "captions_pred_video": ["footage of a person using a cell phone on a table", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a telephone rings and a man speaks", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity is a performance", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "several insects fly while two men talk"], "sample_ids": ["vb1fPSDI4c", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["multiple, people, yell", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more people", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["xKB8O8LTs6s", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["music, gunshots, explosion", "a, scream, girl"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "plastic is tapped on while someone speaks"], "sample_ids": ["sAam2NqGhLY", "wvKpEYswXO0"], "start_seconds": ["20", "150"], "properties": ["snoring, breathing, child", "plastic, tap, speak"], "captions_pred_video": ["of a little girl sleeping on a couch", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person is snoring", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is not a person", "label": 1}, {"captions": ["women speak and laugh as wind blows", "multiple people speak and children yell while water gurgles"], "sample_ids": ["un9VQlzgZM", "vb1fPSDI4c"], "start_seconds": ["5", "30"], "properties": ["wind, speak, laugh", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["xZepNM9qcRA", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["background, motor, run", "loud, laughter, intermittent"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a motorcycle engine is idling", "a infant makes noise and is excited"], "sample_ids": ["vZAqdHZ81yA", "wIJK3-5y0kA"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "noise, excited, infant"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["an engine is idling loudly", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["xSKJGCItUWE", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["engine, run, boy", "a, scream, girl"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yJ0TePmaOo", "vfYTJq7nU"], "start_seconds": ["390", "130"], "properties": ["two hard objects, man, speak", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a duck quacks and a woman speaks"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a jet engine roars, almost making a man inaudible", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["xfaoyyzw2WU", "vlS6YMeWAPo"], "start_seconds": ["180", "40"], "properties": ["loud, jet engine, roar", "sheep, baa, birds"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a goat bleats and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["rustling with distant murmuring", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wnNNcxAPwGQ", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["sound, distance, rustling", "a woman, something, fried"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "water flows and trickles"], "sample_ids": ["wvKpEYswXO0", "tB7hWb9gTuQ"], "start_seconds": ["150", "30"], "properties": ["plastic, tap, speak", "water, flow, trickle"], "captions_pred_video": ["of the person preparing food in the kitchen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "water is splashing and gurgling"], "question": "which entity is flowing", "label": 1}, {"captions": ["goats bleat and metal clings", "a man speaks as a car is passing by"], "sample_ids": ["tH17JPjDPnc", "sK4u5T8hW78"], "start_seconds": ["260", "30"], "properties": ["bleat, metal, clings", "a, car, pass"], "captions_pred_video": ["feed of the goats eating hay in the barn", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "people cheer as a vehicle engine revs"], "sample_ids": ["xjvTpk2Zpr8", "xjhAnI2q6hM"], "start_seconds": ["70", "6"], "properties": ["engine, run, wind", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a truck is revving its engine and a man is speaking "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "an infant crying frantically"], "sample_ids": ["y2ZBGpgbhHM", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["dog, chirp, breathe", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["birds chirping and a dog panting", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a toilet flushes and water drains", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sfAvvZwdLCY", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["water drains, flushes, water", "loud, multiple, distance"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["zuua6-5goWw", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["birds, chirp, quiet, man, speaks", "sheep, baa, birds"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a goat bleats and birds chirp"], "question": "which entity is more active", "label": 1}, {"captions": ["a helicopter engine runs", "a man speaks followed by another man speaking outside"], "sample_ids": ["t5ZbXbniOWk", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["engine, helicopter, run", "two men, speak, follow"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tw76HGONaKg", "wz7N8YRy74I"], "start_seconds": ["570", "30"], "properties": ["A, game, keyboard", "rooster, crow, background, men"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["vehicle engines race around a track as a man commentates", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sZPuqDgX2V0", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["commentator, race, track", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["an infant crying frantically", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zwOBqeFTgiU", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["cry, infant, frantically", "a woman, something, fried"], "captions_pred_video": ["of the baby crying in the car seat", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a baby cries loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "people applaud and hoot and chat quietly"], "sample_ids": ["yZrFNS7GFBQ", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["pigeon, buzzes, insect", "people, applaud, hoot"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["material crumbles into a microphone", "paper is crumpling consistently"], "sample_ids": ["vofpvUo6NAw", "v5cSxLaHADY"], "start_seconds": ["220", "0"], "properties": ["material, crumbles, microphone", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["paper is being crumpled and crinkled", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a grown man speaks and water bubbles and runs"], "sample_ids": ["yaln9y8I7ms", "vSeGhaZt-aI"], "start_seconds": ["230", "50"], "properties": ["female, flushes, toilet", "water, bubbles, run"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking and pouring liquid with background noise "], "question": "which entity has a female speaking?", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "a diesel truck engine runs continuously"], "sample_ids": ["wyllXV6PjKo", "sZvwOuuPGP0"], "start_seconds": ["30", "50"], "properties": ["a kid, talk, cry", "engine, diesel, truck"], "captions_pred_video": [null, "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a woman speaks and a baby cries", "a medium engine is running "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["xERFUeZONz8", "s7knHCFW82w"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "blow horn, get close, train"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["an emergency vehicle siren blares", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a door opens and birds chirp", "water splashes and a door squeaks"], "sample_ids": ["yeFvk9x0wWI", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["door, open, birds", "sound, splash, door"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["a clock ticktocks continuously", "water splashes as an animal walks through"], "sample_ids": ["vlJS7LN2XyM", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["ticktocks, clock, ticktocks continuously", "animal, water, splashes"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a ticktock of a clock", "water splashes and gurgles as people speak"], "question": "which entity is a moving object", "label": 1}, {"captions": ["some clanking with distant murmuring", "small dogs yip and bark sharply"], "sample_ids": ["uMTTDZ2mb4", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["clanking, murmuring, distant", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a stream of water runs briefly"], "sample_ids": ["u7C-AEBQM", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["ticks, rhythmic, quiet", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a ticktock of a clock", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "plastic is tapped on while someone speaks"], "sample_ids": ["xZepNM9qcRA", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["background, motor, run", "plastic, tap, speak"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity has a motor running in the background", "label": 0}, {"captions": ["a man speaks uses a drill", "a male speaks and another male speaks"], "sample_ids": ["x5eIC7S0fbg", "viuTg1M-dqg"], "start_seconds": ["60", "30"], "properties": ["A man is speaking, uses a drill, and is a tool", "two males, speaking, male"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more males speaking", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xBxDz0CFVn0", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["stream, water, flow", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and out of focus", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "some tunes played by whistling"], "sample_ids": ["zY3icUyMdh8", "u6BnG6YZqJ4"], "start_seconds": ["20", "0"], "properties": ["dog, bark, engine", "tune, play, whistling"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "some men converse over an engine running"], "sample_ids": ["tDVADusiIoc", "sCiy7QS1U"], "start_seconds": ["60", "300"], "properties": ["wind, radio, waves", "men, converse, engine"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation?", "label": 1}, {"captions": ["a door opens and birds chirp", "a door opens and closes"], "sample_ids": ["yeFvk9x0wWI", "vBHyYJ8pL0"], "start_seconds": ["30", "2"], "properties": ["door, open, birds", "open, close, door"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which door opens and closes", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "water pouring and bubbling"], "sample_ids": ["uYT5gxnyMWM", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["female, spraying, scream", "water, bubbles, pouring"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wqADXCzngMw", "vfYTJq7nU"], "start_seconds": ["340", "130"], "properties": ["engine, idle, man", "rustling, ducks, quack"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", null], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a duck quacks and a woman speaks"], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["an electronic device bleeps once", "some men converse over an engine running"], "sample_ids": ["tHJ6JSa8Y4", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["bleeps, electronic, device", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a clock is ticking and beeping", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "people applaud and hoot and chat quietly"], "sample_ids": ["uZesmtKZGSw", "wwyfGO2J4"], "start_seconds": ["250", "90"], "properties": ["car, track, man", "people, applaud, hoot"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be at a concert", "label": 1}, {"captions": ["a goat screams and people speak in the background", "some clanking with distant murmuring"], "sample_ids": ["xC8kbrKJmco", "uMTTDZ2mb4"], "start_seconds": ["0", "30"], "properties": ["background, goat, scream", "clanking, murmuring, distant"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a motorcycle engine is idling", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vZAqdHZ81yA", "vYkA3cfXp5Q"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "engine, accelerate, idle"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["an engine is idling loudly", "an engine is idling"], "question": "which entity has an engine that is idling", "label": 0}, {"captions": ["a man speaks as crickets sing", "paper is crumpling consistently"], "sample_ids": ["ryFDPxgDOGc", "v5cSxLaHADY"], "start_seconds": ["570", "0"], "properties": ["a, crickets, sing", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "vehicles pass by on a roadway"], "sample_ids": ["y2ZBGpgbhHM", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["animal, growl, bird", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds chirping and a dog panting", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["weDbePuc-Xc", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["cartoon character, music, vocalize", "sheep, baa, birds"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a goat bleats and birds chirp"], "question": "which entity is more likely to be a video of a sheep baaing?", "label": 1}, {"captions": ["heavy rain splashes as it falls", "an infant crying as a woman laughs"], "sample_ids": ["wP8ZKrlx3oA", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["fall, rain, splash", "a, laugh, infant"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "water splashes as an animal walks through"], "sample_ids": ["x6ijhqRY38s", "w1ir-sZ3Im8"], "start_seconds": ["250", "90"], "properties": ["something metal, glass, hit", "animal, water, splashes"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to cause water to splash", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a fly buzzes around loudly as birds chirp"], "sample_ids": ["tK4VlLsNxak", "uJV8NDaHqqk"], "start_seconds": ["120", "100"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "loud, fly, chirp"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a bee hive in a wooden box"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a swarm of bees buzzing around"], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet flushes and water drains", "people cheer as a vehicle engine revs"], "sample_ids": ["sfAvvZwdLCY", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["water drains, flushes, water", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the toilet in the bathroom", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a toilet is flushed", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "some men converse over an engine running"], "sample_ids": ["w2JXXIAdUdg", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["snoring, distance, person", "men, converse, engine"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a person snoring?", "label": 0}, {"captions": ["a person whistles and clicks a mouse", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["zCrAfDfv6-A", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "beeps, hit, woman"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a person whistles a song", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a person whistles a meandering tune", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uFoga8sHpiw", "tiDFTC-5vU"], "start_seconds": ["90", "30"], "properties": ["person, tune, whistle", "male, duck, laugh"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a man is speaking and ducks are quacking"], "question": "which entity is a person", "label": 0}, {"captions": ["a train horn sounds as it passes by", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["ukg5L09Wpvo", "zj2R0XoFr5k"], "start_seconds": ["150", "50"], "properties": ["sound, train, horn", "airplane, boy, fly"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a toilet flushes and water drains"], "sample_ids": ["rqfQRErjfk8", "sfAvvZwdLCY"], "start_seconds": ["170", "20"], "properties": ["crowd, cheers, applauds", "water drains, flushes, water"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["vmrxwuAMb2I", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["a dog, inhales, exhales", "a train, a horn, a bell"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a dog barks and growls", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a toilet flushes and a female speaks"], "sample_ids": ["yks4cLgIDMc", "yaln9y8I7ms"], "start_seconds": ["170", "230"], "properties": ["background, speaking, child", "female, flushes, toilet"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a child is crying", "a toilet flushes and a man speaks"], "question": "which entity has a child shouting in the background", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y8WEcpOlT3I", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["wind, speak, buffeting", "rooster, crow, background, men"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "an airplane accelerates briefly"], "sample_ids": ["zkKdxzNC97Y", "zjTG0gaGCUI"], "start_seconds": ["27", "80"], "properties": ["hard, surface, door", "accelerates, airplane, briefly"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a jet engine roars as wind blows "], "question": "which object is moving", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["su6FAOcOA8c", "zFjIWfSD-4"], "start_seconds": ["4", "410"], "properties": ["engine, idle, woman", "People, motor, brakes"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["waves crash against a shoreline and wind blows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zdYdyF9-m8U", "uYT5gxnyMWM"], "start_seconds": ["7", "50"], "properties": ["wind, crash, shoreline", "female, spraying, scream"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["waves crash and wind blows ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["weDbePuc-Xc", "w34HjHr6gAY"], "start_seconds": ["40", "30"], "properties": ["cartoon character, music, vocalize", "beeps, hit, woman"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tgbONvsP47Y", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["pass, vehicle, roadway", "a woman, laughs, animal"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "an airplane accelerates briefly"], "sample_ids": ["s4Uz1Ffgo04", "zjTG0gaGCUI"], "start_seconds": ["100", "80"], "properties": ["roars, background, people speaking", "accelerates, airplane, briefly"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a jet engine roars as wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "rain falls onto a hard surface and thunder roars before music plays"], "sample_ids": ["sZPuqDgX2V0", "xNMovAf3o50"], "start_seconds": ["30", "0"], "properties": ["engine, accelerate, intercom", "rain, thunder, music"], "captions_pred_video": [null, "tieng mua - the falling rain lynk lee"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "thunder and rain with music playing in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a woman and man speak while food is frying"], "sample_ids": ["vdoxuJn9lTc", "zk-xJGQU8-4"], "start_seconds": ["40", "130"], "properties": ["person, burp, girl", "food, man, woman"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a child speaks followed by a burp", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wwyfGO2J4", "yDoT73BWsdA"], "start_seconds": ["90", "10"], "properties": ["people, applaud, hoot", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "people cheer as a vehicle engine revs"], "sample_ids": ["slZLHwNbbt4", "xjhAnI2q6hM"], "start_seconds": ["300", "6"], "properties": ["clap, distance, horn", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a car accelerates and wind blows"], "sample_ids": ["zhx6hoYrHeI", "u0TrcHhkPQ"], "start_seconds": ["160", "20"], "properties": ["engine, sputter, rough", "accelerates, wind, blows"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "several insects fly while two men talk"], "sample_ids": ["yFB25fqfU8I", "s-T9OVOiMLo"], "start_seconds": ["300", "330"], "properties": ["wave, crash, shoreline", "several, fly, men"], "captions_pred_video": ["footage of a person surfing in the ocean", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be seen in a nature documentary", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "small dogs yip and bark sharply"], "sample_ids": ["xOZfdgAgJ9o", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["woman, whimpering, speaking", "bark, yip, sharply"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["t8CV69hcvF0", "xBxDz0CFVn0"], "start_seconds": ["210", "30"], "properties": ["person, sneeze, follow", "stream, water, flow"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "wind blows as people chatter quietly"], "sample_ids": ["vBslzh7saPw", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["engine, roar, louder", "wind, chatter, people"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking with wind noise in the background "], "question": "which is quieter", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "an emergency vehicle engine runs then a horn blows and siren sounds"], "sample_ids": ["xZepNM9qcRA", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["background, motor, run", "engine, horn, siren"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn and siren?", "label": 1}, {"captions": ["a machine beeps continuously", "water splashes as an animal walks through"], "sample_ids": ["y682ml90jGw", "w1ir-sZ3Im8"], "start_seconds": ["11", "90"], "properties": ["beeps, machine, continuously", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a beeping sound is being made ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "a woman speaks happily and an animal chirps"], "sample_ids": ["vMf1dLD6Sng", "uWAAAL4CIoc"], "start_seconds": ["6", "0"], "properties": ["frog, bird, vocalize", "a woman, chirps, animal"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", null], "captions_pred_audio": ["a frog croaks loudly", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "vehicle engines race around a track as a man commentates"], "sample_ids": ["vZAw4apG0Es", "sZPuqDgX2V0"], "start_seconds": ["30", "30"], "properties": ["background, clock, ticktocks", "commentator, race, track"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a video of a race?", "label": 1}, {"captions": ["a machine runs continuously", "an engine runs loudly"], "sample_ids": ["wdXV3Pv0jiY", "vqZuVbG6-HI"], "start_seconds": ["11", "130"], "properties": ["machine, running, continuously", "loud, engine, run"], "captions_pred_video": ["footage is blurry and shaky", "footage is blurry because it's raining outside"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a lawn mower is running and men are speaking "], "question": "which machine is running continuously", "label": 0}, {"captions": ["bees buzz as wind blows", "an aircraft engine runs"], "sample_ids": ["tMJne1a4AFI", "yLCORCnd35Q"], "start_seconds": ["0", "0"], "properties": ["bees, buzz, wind", "engine, aircraft, runs"], "captions_pred_video": ["a swarm of bees on the ground", "a lufthansa airbus a380 landing at london's heathrow airport"], "captions_pred_audio": ["a swarm of bees buzzing around", "a train is moving and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["uJV8NDaHqqk", "vlS6YMeWAPo"], "start_seconds": ["100", "40"], "properties": ["loud, fly, chirp", "sheep, baa, birds"], "captions_pred_video": ["a bee hive in a wooden box", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a swarm of bees buzzing around", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a child speaks in closed space"], "sample_ids": ["tgbONvsP47Y", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["pass, vehicle, roadway", "child, space, speak"], "captions_pred_video": ["footage of a fire truck entering a garage", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "repeated tapping is accompanied by water running and a woman speaking softly"], "sample_ids": ["y2bVZ7rz-5M", "wvKpEYswXO0"], "start_seconds": ["280", "150"], "properties": ["motor noise, horn, siren", "sound, water, running"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity has a horn honking?", "label": 0}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a motorcycle engine works nearby"], "sample_ids": ["sjlVMgdGSK0", "tOSWIURC-4"], "start_seconds": ["30", "0"], "properties": ["accelerates, vehicle, race car", "engine, work, nearby"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a lawn mower is running "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a person sniffs and sneezes", "an infant crying as a woman laughs"], "sample_ids": ["uRlbY6aoBU", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["sneezes, person, sniffs", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is sneezing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 0}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "birds chirps while a siren signals in the distance"], "sample_ids": ["tDVADusiIoc", "uKCSGgof8gI"], "start_seconds": ["60", "12"], "properties": ["wind, radio, waves", "chirps, distance, signal"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a street in a small town on a sunny day"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a truck is accelerating and revving its engine "], "question": "which entity is more quiet", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "several insects fly while two men talk"], "sample_ids": ["sLUnaPT5gM8", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["loud, laughter, intermittent", "several, fly, men"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be a video of insects flying?", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a infant makes noise and is excited"], "sample_ids": ["uPDn2BFTHk", "wIJK3-5y0kA"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a male speaks over some small clicks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["uXxVebHsGZ8", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["male, clicks, speak", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "people applaud and hoot and chat quietly"], "sample_ids": ["ylpYOorfH4o", "wwyfGO2J4"], "start_seconds": ["410", "90"], "properties": ["motor, run, steady", "people, applaud, hoot"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["goats bleat and people speak", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["z5iUE5h0EPs", "sYITalLZjj4"], "start_seconds": ["30", "30"], "properties": ["goats bleat, people speak, language", "water, rushes, background, birds"], "captions_pred_video": ["of the goat in the barn", "two ducks are swimming in the water near each other"], "captions_pred_audio": ["a goat bleats and a man speaks", "wind blows and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uPDn2BFTHk", "vbZ-0lGPneg"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["an insect buzzes around continuously", "pigeons vocalize and birds chirp"], "sample_ids": ["v25l1jef3JY", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["buzzes, continuously, insect", "vocalize, bird, chirp"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of the pigeon in the cage"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a child speaks in closed space"], "sample_ids": ["zgUgkpk78xU", "yW6FWLSLkx4"], "start_seconds": ["70", "40"], "properties": ["clinking, humming, horn", "child, space, speak"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a man speaks as horns blow", "a man speaks as a motor runs in the background"], "sample_ids": ["tHyNqRyK34A", "xZepNM9qcRA"], "start_seconds": ["24", "30"], "properties": ["a, man, speaks", "background, motor, run"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wvKpEYswXO0", "xfaoyyzw2WU"], "start_seconds": ["150", "180"], "properties": ["sound, water, running", "loud, jet engine, roar"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a telephone rings followed by a woman talking"], "sample_ids": ["un9VQlzgZM", "tGcFnX0GHI"], "start_seconds": ["5", "0"], "properties": ["females, talk, laugh", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a horn blasts loudly as a train passes"], "sample_ids": ["vhJWZheqaE", "zsLxS-uLJTw"], "start_seconds": ["0", "20"], "properties": ["water drains unevenly, toilet flushes, water drains", "horn, blast, train"], "captions_pred_video": [null, "footage of the train on the tracks at sunrise or sunset"], "captions_pred_audio": ["a toilet is flushed", "a train blows its horn and moves on the tracks "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman talking as an infant is crying", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tMbMDvT50j8", "tiDFTC-5vU"], "start_seconds": ["12", "30"], "properties": ["a, talk, infant", "male, duck, laugh"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and ducks are quacking"], "question": "which entity is about a person talking?", "label": 0}, {"captions": ["a child and woman laughs and the woman speaks", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["uPDn2BFTHk", "rwtmaKiCcQU"], "start_seconds": ["140", "30"], "properties": ["woman, laughs, speaks", "nozzle, depressed, spray can"], "captions_pred_video": [null, "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a baby laughs and a woman speaks", "spraying and people speaking"], "question": "which entity is about a spray can?", "label": 1}, {"captions": ["a man speaks while water drains", "plastic is tapped on while someone speaks"], "sample_ids": ["vSeGhaZt-aI", "wvKpEYswXO0"], "start_seconds": ["50", "150"], "properties": ["water, drain, man", "plastic, tap, speak"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a video of someone speaking?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "pigeons vocalize and birds chirp"], "sample_ids": ["zofjfKhqLk8", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["background, metal, clings", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of the pigeon in the cage"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a power tool runs and touches a surface", "an infant crying as a woman laughs"], "sample_ids": ["zfvPRf3chY", "xhmRY9yhC7c"], "start_seconds": ["290", "20"], "properties": ["power tool, run, touch", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a baby cries and a woman speaks"], "question": "which is not a person", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a saw finishes running as metal clings in the background"], "sample_ids": ["wtDqrBygTcU", "zofjfKhqLk8"], "start_seconds": ["30", "10"], "properties": ["man, engine, run", "background, metal, clings"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a man is speaking and a motor is running", "a large engine is running and a bell is ringing"], "question": "which entity is about a man speaking as a boat engine runs?", "label": 0}, {"captions": ["a toilet flushes and water sputters as it drains", "a clock alarm sounds and gears turn"], "sample_ids": ["smGI3C1NZc", "w2M4i1mklOA"], "start_seconds": ["30", "30"], "properties": ["water, drain, toilet", "alarm, gears, turn"], "captions_pred_video": [null, "footage of an antique clock"], "captions_pred_audio": ["a toilet is flushed", "a clock is ticking and a bell is ringing "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a person screams glaringly", "a propeller rotates loudly and intensely"], "sample_ids": ["xC8kbrKJmco", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["glaringly, screams, person", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a goat is bleating ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a person snoring several times", "a baby laugh at a sputter"], "sample_ids": ["spJCm8tD9Zo", "sLUnaPT5gM8"], "start_seconds": ["90", "0"], "properties": ["snore, person, several", "laugh, sputter, baby"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person is snoring loudly", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is a baby?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a child speaks in closed space"], "sample_ids": ["vJrjSeP17yE", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["a person is sleeping, snoring, person", "child, space, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wyllXV6PjKo", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["a kid, talk, cry", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a duck quacks and a woman speaks"], "question": "which entity has a kid?", "label": 0}, {"captions": ["a person is snoring while sleeping", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vJrjSeP17yE", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["a person is sleeping, snoring, person", "men, talk, cars"], "captions_pred_video": ["a black background with a small plane flying in the sky", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a piece of wood is being placed down and sawed", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["uiItxDsDMFI", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["wood, piece, saw", "two men, woman, birds"], "captions_pred_video": ["a man cutting a log with an axe in the woods", null], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a still image?", "label": 0}, {"captions": ["a stream of water flows as people talk and wind blows", "a car speeding up in the distance"], "sample_ids": ["xBxDz0CFVn0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["stream, water, flow", "distance, car, speed"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zj2R0XoFr5k", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["airplane, fly, overhead", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a power tool runs and touches a surface", "a clock ticktocks"], "sample_ids": ["zfvPRf3chY", "v-g-j2uTByM"], "start_seconds": ["290", "30"], "properties": ["power tool, run, touch", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a clock is ticking loudly"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["a person snoring several times", "a person snores loudly multiple times at a close distance"], "sample_ids": ["spJCm8tD9Zo", "sSMl2vc3ek"], "start_seconds": ["90", "20"], "properties": ["snore, person, several", "loud, multiple, distance"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a person snoring loudly"], "question": "which person is snoring", "label": 1}, {"captions": ["a woman sneezes then speaks", "people speak and tapping occurs"], "sample_ids": ["x4dZyf9Gbj0", "tFCUUGdREgA"], "start_seconds": ["130", "70"], "properties": ["sneezes, speaks, woman", "people, tap, speak"], "captions_pred_video": ["footage is blurry and out of focus", "a person riding a white horse in an indoor arena"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and walking with wind noise in the background "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["scraping and female speech with distant music", "wind blowing followed by a zoom"], "sample_ids": ["yHeVV-xeOxQ", "vr8ZXjEBhMQ"], "start_seconds": ["130", "150"], "properties": ["female, speech, music", "wind, blow, zoom"], "captions_pred_video": ["of a girl milking a goat's udder", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a video of a wind blowing?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a kid speaks followed by music playing"], "sample_ids": ["yaln9y8I7ms", "tQWGZLItBXk"], "start_seconds": ["230", "170"], "properties": ["female, flushes, toilet", "music, kid, speak"], "captions_pred_video": ["footage is blurry and out of focus", "worms revolution screenshots"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a female speaking?", "label": 0}, {"captions": ["a woman speaks happily and an animal chirps", "a man speaks while rain falls onto a hard surface"], "sample_ids": ["uWAAAL4CIoc", "wqN6IIHw3po"], "start_seconds": ["0", "30"], "properties": ["a woman, chirps, animal", "rain, surface, fall"], "captions_pred_video": [null, "in your own words what is happening in this screenshot? blood splattered all over the place"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking and water is splashing"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yeFvk9x0wWI", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["chirp, twitter, clatter", "men, talk, cars"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a consistent ticking pattern", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sCeWURVHfOM", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["ticking, pattern, clock", "men, talk, cars"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["ticking of a clock", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yDoT73BWsdA", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["engine revs, tires squeal, vehicle", "water, radio, man"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["white noise and birds chirping", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wRBHTgrbiwg", "vb1fPSDI4c"], "start_seconds": ["50", "30"], "properties": ["noise, white, chirping", "multiple, people, yell"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream of water flows as people talk and wind blows", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xBxDz0CFVn0", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["stream, water, flow", "People, motor, brakes"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car?", "label": 1}, {"captions": ["a toilet flushes and water drains", "paper is crumpling consistently"], "sample_ids": ["sfAvvZwdLCY", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["water drains, flushes, water", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a toilet is flushed", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a person is snoring while sleeping", "a car accelerates and wind blows"], "sample_ids": ["vJrjSeP17yE", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["a person is sleeping, snoring, person", "accelerates, wind, blows"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "birds chirp and a dog breathes heavily"], "sample_ids": ["yajyRTUQk3U", "y2ZBGpgbhHM"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "dog, chirp, breathe"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "birds chirping and a dog panting"], "question": "which entity is a dog", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "vehicles pass by on a roadway"], "sample_ids": ["y2ZBGpgbhHM", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["birds, tweet, pant", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds chirping and a dog panting", "a car is driving on the road "], "question": "which entity is more likely to be seen in a city", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a frog croaks as other frogs croak in the background"], "sample_ids": ["uEU-Hg5MTN8", "yswmmRZFItk"], "start_seconds": ["27", "0"], "properties": ["animal, grunts, snorts", "background, frog, croak"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a frog is croaking"], "question": "which animal is speaking", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a clock ticktocks"], "sample_ids": ["sQGXqGcwOTc", "v-g-j2uTByM"], "start_seconds": ["3", "30"], "properties": ["audio, kid, giggles", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an airplane accelerates briefly", "an infant crying frantically"], "sample_ids": ["zjTG0gaGCUI", "zwOBqeFTgiU"], "start_seconds": ["80", "30"], "properties": ["accelerates, airplane, briefly", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["vehicles pass by on a roadway", "several insects fly while two men talk"], "sample_ids": ["tgbONvsP47Y", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["pass, vehicle, roadway", "several, fly, men"], "captions_pred_video": ["footage of a fire truck entering a garage", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car is driving on the road ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["tQWGZLItBXk", "rwtmaKiCcQU"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "nozzle, depressed, spray can"], "captions_pred_video": ["worms revolution screenshots", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "spraying and people speaking"], "question": "which entity has a nozzle depressed?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "water flows and trickles"], "sample_ids": ["yRx9txMcBl0", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "water, flow, trickle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car is revving its engine and skidding ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "a man speaks as a motor runs in the background"], "sample_ids": ["uRlbY6aoBU", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["a, distance, sneeze", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is sneezing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vimzuGQvdcU", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["a, man, yells", "loud, multiple, distance"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an engine runs and wind blows", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["vs65y4qmyBE", "x9JovgqUcs"], "start_seconds": ["340", "500"], "properties": ["engine, run, wind", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man speaks and types on a keyboard"], "question": "which entity is a person", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "wind blowing followed by a zoom"], "sample_ids": ["zofjfKhqLk8", "vr8ZXjEBhMQ"], "start_seconds": ["10", "150"], "properties": ["background, metal, clings", "wind, blow, zoom"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["u7C-AEBQM", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["ticks, rhythmic, quiet", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks and food sizzles while frying", "vehicles pass by on a roadway"], "sample_ids": ["wTideSjRFS0", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["food, sizzle, woman", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a stream of water runs briefly"], "sample_ids": ["zk-xJGQU8-4", "x-PeY8Yb8M4"], "start_seconds": ["130", "300"], "properties": ["food, man, woman", "stream, water, run"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "an insect buzzes around continuously"], "sample_ids": ["v-wcQf4BDY0", "v25l1jef3JY"], "start_seconds": ["120", "0"], "properties": ["bark, yip, sharply", "buzzes, continuously, insect"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a dog barks and growls", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "people applaud and hoot and chat quietly"], "sample_ids": ["t8CV69hcvF0", "wwyfGO2J4"], "start_seconds": ["210", "90"], "properties": ["person, sneeze, follow", "people, applaud, hoot"], "captions_pred_video": ["of an airplane flying in the dark sky at night", null], "captions_pred_audio": ["a woman sneezes and speaks", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be at a concert", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "a person is snoring while sleeping"], "sample_ids": ["uWAAAL4CIoc", "vJrjSeP17yE"], "start_seconds": ["0", "40"], "properties": ["a, dog, vocalize", "a person is sleeping, snoring, person"], "captions_pred_video": [null, "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "an small aircraft engine runs and a boy speaks"], "sample_ids": ["uYT5gxnyMWM", "xSKJGCItUWE"], "start_seconds": ["50", "10"], "properties": ["female, spraying, scream", "engine, run, boy"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a high pitched engine is running and a child speaks"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a clock ticks quietly and rhythmically", "a man speaks as a car is passing by"], "sample_ids": ["u7C-AEBQM", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["ticks, rhythmic, quiet", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a person is snoring while sleeping", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vJrjSeP17yE", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "loud, laughter, intermittent"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person snoring loudly", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water flows as men speak and yell", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["vJ7JPEFhyLA", "tDlysoZiA1I"], "start_seconds": ["16", "0"], "properties": ["water, flow, men", "animal, grunts, chirps"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["v5P-ThUCINM", "wz7N8YRy74I"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "people speak as gunfire rings out"], "sample_ids": ["uYT5gxnyMWM", "wqTCwqVRDlk"], "start_seconds": ["50", "80"], "properties": ["person, spray, yell", "gunfire, ring, speak"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "dishes cling together then a man begins to speak"], "sample_ids": ["zdYdyF9-m8U", "sQGXqGcwOTc"], "start_seconds": ["7", "3"], "properties": ["wind, crash, shoreline", "cling, speak, dishes"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["waves crash and wind blows ", "mechanisms are operating and water is splashing "], "question": "which entity is a still image?", "label": 0}, {"captions": ["a man speaks while water trickles and flows", "a man speaks followed by another man speaking outside"], "sample_ids": ["sapQIQUhFc", "viuTg1M-dqg"], "start_seconds": ["280", "30"], "properties": ["water, trickles, flow", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a horn honks and then loudly blares", "cats meow and then a person begins to talk while the cats continue to meow"], "sample_ids": ["wnpJndXuxLc", "x5cuQjOdM3E"], "start_seconds": ["50", "30"], "properties": ["horn, honk, loud", "cat, talk, meow"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a cat meows and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a woman speaks in a fast tone with a male"], "sample_ids": ["w1mlz3Pe4fU", "sTpirNYo8vQ"], "start_seconds": ["300", "30"], "properties": ["vocalize, chirp, continuously", "a, tone, fast"], "captions_pred_video": ["of a bird in a cage", "of a man taking a selfie on a bus"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking while a car is revving and accelerating "], "question": "which entity is speaking", "label": 1}, {"captions": ["a person screams glaringly", "pigeons vocalize and birds chirp"], "sample_ids": ["xC8kbrKJmco", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["glaringly, screams, person", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["uWPRNLnpy7Y", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["accelerate, laugh, vehicle", "water, radio, man"], "captions_pred_video": ["is taken from a car driving down the street", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a stream of water runs briefly"], "sample_ids": ["zhx6hoYrHeI", "x-PeY8Yb8M4"], "start_seconds": ["160", "300"], "properties": ["engine, sputter, rough", "stream, water, run"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "sawing of wood and rustling with leaves blowing in the distance"], "sample_ids": ["ukxt9I7eMMg", "uiItxDsDMFI"], "start_seconds": ["30", "30"], "properties": ["continuous, woman, speaking", "sound, distance, leaves"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a saw is being used with background noise "], "question": "which entity has a woman speaking towards the end?", "label": 0}, {"captions": ["multiple people speak and children yell while water gurgles", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vb1fPSDI4c", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a game", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zO-LSSY92ZM", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["liquid, surface, sound", "engine, laugh, loud"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "footage of a man driving a car in the dark"], "captions_pred_audio": ["steam is hissing and hissing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "people cheer as a vehicle engine revs"], "sample_ids": ["tDlfY3nmx1A", "xjhAnI2q6hM"], "start_seconds": ["160", "6"], "properties": ["applause, laugh, man", "engine revs, vehicle, people"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "an infant crying frantically"], "sample_ids": ["wwyfGO2J4", "zwOBqeFTgiU"], "start_seconds": ["90", "30"], "properties": ["people, applaud, hoot", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "pigeons vocalize and birds chirp"], "sample_ids": ["ul60S8TXDA8", "uiS58TNyUiw"], "start_seconds": ["60", "430"], "properties": ["sound, distance, bell", "vocalize, bird, chirp"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "of the pigeon in the cage"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a man speaks as a motor runs in the background"], "sample_ids": ["vbr9mHKc8WM", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an engine is idling", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 0}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "an electric engine works nearby followed by a child talking"], "sample_ids": ["tQWGZLItBXk", "xSKJGCItUWE"], "start_seconds": ["170", "10"], "properties": ["music, person, ding", "engine, work, child"], "captions_pred_video": ["worms revolution screenshots", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a high pitched engine is running and a child speaks"], "question": "which entity has a child talking?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "birds chirp and an insect buzzes around"], "sample_ids": ["su6FAOcOA8c", "t97k0cejSQE"], "start_seconds": ["4", "250"], "properties": ["engine, run, woman", "bird, chirp, insect"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a bee on a purple thistle flower"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a bee buzzes and a woman speaks"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a dog barks and whimpers", "a crowd yells, reacts and applauds"], "sample_ids": ["sShpyu2l4YQ", "wztCSUxOf8"], "start_seconds": ["0", "130"], "properties": ["barks, whimpers, dog", "a crowd, yells, applauds"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking and a crowd is clapping"], "question": "which entity is more likely to be a crowd", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "birds chirp and objects are moved around"], "sample_ids": ["wRBHTgrbiwg", "yPUYU6t3rwo"], "start_seconds": ["50", "370"], "properties": ["birds, chirp, cooing", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a stream runs then someone speaks", "a car accelerates and wind blows"], "sample_ids": ["wbHTKEJZyhc", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["stream, run, someone", "accelerates, wind, blows"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a door slams shut roughly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zkKdxzNC97Y", "zj2R0XoFr5k"], "start_seconds": ["27", "50"], "properties": ["a door, slams, shut", "airplane, boy, fly"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a door is opened and closed", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "birds chirp and objects are moved around"], "sample_ids": ["tiDFTC-5vU", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["male, duck, laugh", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a car accelerates and wind blows"], "sample_ids": ["sG7TyPnFDR0", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["beeps, machine, smoke alarm", "accelerates, wind, blows"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "a steam engine runs and whistles as it passes by"], "sample_ids": ["sTpirNYo8vQ", "se87d6yxEOA"], "start_seconds": ["30", "10"], "properties": ["a, tone, fast", "run, whistle, pass"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a train is moving and blowing its whistle "], "question": "which entity is moving", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "some men converse over an engine running"], "sample_ids": ["vXlk0lIQBFo", "sCiy7QS1U"], "start_seconds": ["470", "300"], "properties": ["wind, talk, vocalize", "men, converse, engine"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a conversation?", "label": 1}, {"captions": ["continuous sneezing together with speech", "people speak as gunfire rings out"], "sample_ids": ["x4dZyf9Gbj0", "wqTCwqVRDlk"], "start_seconds": ["130", "80"], "properties": ["continuous, sneeze, speech", "gunfire, ring, speak"], "captions_pred_video": ["footage is blurry and out of focus", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "paper is crumpling consistently"], "sample_ids": ["vYkA3cfXp5Q", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["engine, accelerate, idle", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["an engine is idling", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a man speaks as a motor runs in the background"], "sample_ids": ["w0xsN8X18Y", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["music, surface, rain", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "an infant crying frantically"], "sample_ids": ["sK4u5T8hW78", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "cry, infant, frantically"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["an insect buzzes around continuously", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["v25l1jef3JY", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["buzzes, continuously, insect", "a woman, laughs, animal"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 0}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["x5cuQjOdM3E", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["cat, talk, meow", "water, radio, man"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yeFvk9x0wWI", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["chirp, twitter, clatter", "engine, laugh, loud"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yYEVLuqEytU", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "a woman, a television program, a bird"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sfAvvZwdLCY", "wDVMhEdTiVw"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "gun, shoot, water"], "captions_pred_video": ["footage of the toilet in the bathroom", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a toilet is flushed", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity has water sloshing nearby?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "birds tweet and squawk"], "sample_ids": ["tgbONvsP47Y", "w1mlz3Pe4fU"], "start_seconds": ["0", "300"], "properties": ["pass, vehicle, roadway", "squawk, tweet, scream"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a bird in a cage"], "captions_pred_audio": ["a car is driving on the road ", "birds are chirping and singing"], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y2ZBGpgbhHM", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["birds, tweet, pant", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about animals?", "label": 0}, {"captions": ["a man sprays as a scraping occurs in the background", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sOa7g-44Dag", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["background, man, spray", "engine, idle, woman"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a person is snoring while sleeping", "plastic is tapped on while someone speaks"], "sample_ids": ["vJrjSeP17yE", "wvKpEYswXO0"], "start_seconds": ["40", "150"], "properties": ["a person is sleeping, snoring, person", "plastic, tap, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a person screams glaringly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xC8kbrKJmco", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["glaringly, screams, person", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a goat is bleating ", "a woman is speaking and a subway train is moving "], "question": "which entity is a person", "label": 0}, {"captions": ["a stream of water runs briefly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["x-PeY8Yb8M4", "uYT5gxnyMWM"], "start_seconds": ["300", "50"], "properties": ["stream, water, run", "female, spraying, scream"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is driving on a wet road ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person spraying and screaming?", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a stream of water runs briefly"], "sample_ids": ["vfYTJq7nU", "x-PeY8Yb8M4"], "start_seconds": ["130", "300"], "properties": ["ducks, quack, man", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman sneezes then speaks", "a stream of water runs briefly"], "sample_ids": ["x4dZyf9Gbj0", "x-PeY8Yb8M4"], "start_seconds": ["130", "300"], "properties": ["sneezes, speaks, woman", "stream, water, run"], "captions_pred_video": ["footage is blurry and out of focus", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman sneezes and speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a cat meows and children speak", "a frog croaks as other frogs croak in the background"], "sample_ids": ["x5cuQjOdM3E", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["cat, speak, children", "background, frog, croak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a close up of a frog in the water"], "captions_pred_audio": ["a cat meows and a woman speaks", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "some men converse over an engine running"], "sample_ids": ["vbZ-0lGPneg", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["a woman, a television program, a bird", "men, converse, engine"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has more people", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "waves crash against a shoreline and people speak"], "sample_ids": ["sSMl2vc3ek", "yFB25fqfU8I"], "start_seconds": ["20", "300"], "properties": ["a person, laughs, snores", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "wind blowing followed by a zoom"], "sample_ids": ["sU53zg9Jp7s", "vr8ZXjEBhMQ"], "start_seconds": ["380", "150"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "wind, blow, zoom"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to cause a woman to gasp", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["yRx9txMcBl0", "wDVMhEdTiVw"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "gun, shoot, water"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a woman speaks as she rubs two objects together"], "sample_ids": ["s7knHCFW82w", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["blow horn, get close, train", "two objects, woman, speak"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a duck quacks continuously"], "sample_ids": ["sShpyu2l4YQ", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["growl, bark, yip", "quacks, continuously, duck"], "captions_pred_video": ["the puppies are playing with a toy", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a dog is barking and growling", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a telephone rings followed by a woman talking"], "sample_ids": ["y2bVZ7rz-5M", "tGcFnX0GHI"], "start_seconds": ["280", "0"], "properties": ["motor noise, horn, siren", "ring, talk, woman"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is followed by a woman talking", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["u2f5NpsoHBg", "vVhthZ45k3Y"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "cat, purr, hiss"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking and a cat is meowing"], "question": "which entity is a person", "label": 0}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["w2JXXIAdUdg", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["snoring, distance, person", "a woman, laughs, animal"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a woman is speaking and a baby is crying"], "question": "which entity has a person snoring nearby?", "label": 0}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "people cheer as a vehicle engine revs"], "sample_ids": ["tDVADusiIoc", "xjhAnI2q6hM"], "start_seconds": ["60", "6"], "properties": ["water, radio, man", "engine revs, vehicle, people"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "an airplane engine runs"], "sample_ids": ["zj2R0XoFr5k", "yVPZ2MNWpms"], "start_seconds": ["50", "0"], "properties": ["airplane, fly, overhead", "engine, airplane, runs"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a car is driving by on the road "], "question": "which airplane is flying overhead", "label": 0}, {"captions": ["a man yells and speaks as water splashes", "water pouring and bubbling"], "sample_ids": ["vimzuGQvdcU", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["a, man, yells", "water, bubbles, pouring"], "captions_pred_video": ["a group of people are rafting down a river", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "water is running from a faucet"], "question": "which entity is a video of water pouring and bubbling?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "vehicles pass by on a roadway"], "sample_ids": ["tEE3MpBt1sg", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["drill, something, laugh", "pass, vehicle, roadway"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a fire truck entering a garage"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a man speaks and is typing on a keyboard"], "sample_ids": ["wTideSjRFS0", "x9JovgqUcs"], "start_seconds": ["30", "500"], "properties": ["food, sizzle, woman", "a, man, speaks, keyboard"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man speaks and types on a keyboard"], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a stream of water runs briefly"], "sample_ids": ["sG7TyPnFDR0", "x-PeY8Yb8M4"], "start_seconds": ["180", "300"], "properties": ["beeps, machine, smoke alarm", "stream, water, run"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yVumC9TGknc", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["humming, clock, birds", "three men, wind, flow"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["children speak as a female ask them questions", "people applaud and hoot and chat quietly"], "sample_ids": ["wEBlkGWVWwE", "wwyfGO2J4"], "start_seconds": ["260", "90"], "properties": ["female, speak, questions", "people, applaud, hoot"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sofxkNWaP0s", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["wind, engine, louder", "loud, laughter, intermittent"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a crowd yells, reacts and applauds", "a man speaks followed by another man speaking outside"], "sample_ids": ["wztCSUxOf8", "viuTg1M-dqg"], "start_seconds": ["130", "30"], "properties": ["a crowd, yells, applauds", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vmrxwuAMb2I", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["a dog, inhales, exhales", "water, radio, man"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a telephone rings followed by a woman talking"], "sample_ids": ["zFjIWfSD-4", "tGcFnX0GHI"], "start_seconds": ["410", "0"], "properties": ["People, motor, brakes", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "water pouring and bubbling"], "sample_ids": ["vSeGhaZt-aI", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["water, bubbles, speak", "water, bubbles, pouring"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "a saw finishes running as metal clings in the background"], "sample_ids": ["tqR406bGiE", "zofjfKhqLk8"], "start_seconds": ["40", "10"], "properties": ["flush, water, gurgle", "background, metal, clings"], "captions_pred_video": [null, "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a toilet is flushed", "a large engine is running and a bell is ringing"], "question": "which entity is about a flushing toilet?", "label": 0}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "roadway noise occurs and a truck accelerates"], "sample_ids": ["su6FAOcOA8c", "tgbONvsP47Y"], "start_seconds": ["4", "0"], "properties": ["engine, idle, woman", "noise, truck, accelerate"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a train horn blows as it passes by"], "sample_ids": ["vbr9mHKc8WM", "zVacuqSb4LI"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["an engine is idling", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["an animal quacks rapidly", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vh30P49Po6s", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["animal, quacks, rapidly", "three men, wind, flow"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person", "label": 0}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["smDKStoHBJo", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["a, infant, speaking", "engine, idle, woman"], "captions_pred_video": ["a man holding a crying baby in his arms", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking to an infant?", "label": 0}, {"captions": ["a clock ticks quietly and rhythmically", "a dog barks and whimpers"], "sample_ids": ["u7C-AEBQM", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["ticks, rhythmic, quiet", "barks, whimpers, dog"], "captions_pred_video": [null, "the puppies are playing with a toy"], "captions_pred_audio": ["a ticktock of a clock", "a dog is barking and growling"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks as music plays before artillery is fired", "a person speaks briefly"], "sample_ids": ["vcmWSmvti8", "zOZleIRqZm4"], "start_seconds": ["30", "80"], "properties": ["music, man, fire", "person, talk, brief"], "captions_pred_video": [null, "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking with crickets chirping in the background"], "question": "which entity is more like a talk show", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "water pouring and bubbling"], "sample_ids": ["yLy-WycbVVE", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["background, people, talk", "water, bubbles, pouring"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "water is running from a faucet"], "question": "which entity is more silent", "label": 1}, {"captions": ["an insect buzzes around continuously", "an insect buzzes around continuously"], "sample_ids": ["v25l1jef3JY", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["buzzes, continuously, insect", "buzzes, continuously, insect"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a fly is buzzing around a microphone "], "question": "which insect buzzes around continuously", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "an infant crying frantically"], "sample_ids": ["vlJS7LN2XyM", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["background, clocks, ticking", "cry, infant, frantically"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "of the baby crying in the car seat"], "captions_pred_audio": ["a ticktock of a clock", "a baby cries loudly"], "question": "which entity is more active", "label": 1}, {"captions": ["ticking continues without interruption", "multiple people speak and children yell while water gurgles"], "sample_ids": ["v-g-j2uTByM", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "multiple, people, yell"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", null], "captions_pred_audio": ["a clock is ticking loudly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a kid speaks followed by music playing", "a woman speaks and is crumpling paper"], "sample_ids": ["tQWGZLItBXk", "xvDdE3zNf8Y"], "start_seconds": ["170", "120"], "properties": ["music, kid, speak", "A, crumple, paper"], "captions_pred_video": ["worms revolution screenshots", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman speaks and crumples paper"], "question": "which entity is crumpling paper", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a stream of water runs briefly"], "sample_ids": ["yYJksgsxx5U", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["audio, woman, silverware", "stream, water, run"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a car accelerates and wind blows"], "sample_ids": ["xyL9F5VrjkE", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["wind, blows, vehicle", "accelerates, wind, blows"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wvKpEYswXO0", "su6FAOcOA8c"], "start_seconds": ["150", "4"], "properties": ["plastic, tap, speak", "engine, idle, woman"], "captions_pred_video": ["of the person preparing food in the kitchen", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "an infant crying frantically"], "sample_ids": ["sShpyu2l4YQ", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["growl, bark, yip", "cry, infant, frantically"], "captions_pred_video": ["the puppies are playing with a toy", "of the baby crying in the car seat"], "captions_pred_audio": ["a dog is barking and growling", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a woman speaks with water running", "a car accelerates and wind blows"], "sample_ids": ["wTideSjRFS0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["water, running, woman", "accelerates, wind, blows"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "people speak as gunfire rings out"], "sample_ids": ["sYITalLZjj4", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["water, rushes, background, birds", "gunfire, ring, speak"], "captions_pred_video": ["two ducks are swimming in the water near each other", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["scraping and female speech with distant music", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yHeVV-xeOxQ", "uYT5gxnyMWM"], "start_seconds": ["130", "50"], "properties": ["female, speech, music", "a, scream, girl"], "captions_pred_video": ["of a girl milking a goat's udder", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream", "label": 1}, {"captions": ["people speak then an engine runs", "a man speaks as a motor runs in the background"], "sample_ids": ["uMTTDZ2mb4", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["engine, run, people", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sOa7g-44Dag", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["background, man, spray", "rooster, crow, background, men"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a woman and man are speaking", "an animal quacks rapidly"], "sample_ids": ["vbpKkWvfOu4", "vh30P49Po6s"], "start_seconds": ["560", "30"], "properties": ["two people, speaking, woman, man", "animal, quacks, rapidly"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a duck is quacking loudly"], "question": "which entity is speaking", "label": 0}, {"captions": ["birds chirps while a siren signals in the distance", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uKCSGgof8gI", "su6FAOcOA8c"], "start_seconds": ["12", "4"], "properties": ["chirps, distance, signal", "engine, idle, woman"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a motor noise is accompanied by a door opening and closing"], "sample_ids": ["w5W5Kqtc8E", "vBHyYJ8pL0"], "start_seconds": ["100", "2"], "properties": ["wind, blow, vehicle", "noise, door, opening"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is accompanied by a door opening and closing?", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "a child speaks in closed space"], "sample_ids": ["w2JXXIAdUdg", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["emits, sleeping, person", "child, space, speak"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "water splashing and a person laughs in the distance then a man speaks nearby"], "sample_ids": ["zliInBdC98Y", "vddP56-ogds"], "start_seconds": ["30", "30"], "properties": ["a, baby, cries, wails", "water, splash, person, laugh"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", null], "captions_pred_audio": ["a baby cries and a woman speaks", "water is running and gurgling and a man is speaking"], "question": "which entity is more active", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w34HjHr6gAY", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "stream, water, flow"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage is blurry and out of focus"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "an infant crying as a woman laughs"], "sample_ids": ["vveS8HT7Uog", "xhmRY9yhC7c"], "start_seconds": ["100", "20"], "properties": ["a man, objects, speak", "a, laugh, infant"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["w34HjHr6gAY", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["beeps, squawk, child speaking", "loud, laughter, intermittent"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an electronic device bleeps once", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tHJ6JSa8Y4", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["bleeps, electronic, device", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a clock is ticking and beeping", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "wind blowing and birds chirping with the distant cooing of a large bird"], "sample_ids": ["uZesmtKZGSw", "wRBHTgrbiwg"], "start_seconds": ["250", "50"], "properties": ["men, talk, cars", "birds, chirp, cooing"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "birds are chirping and insects are buzzing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child speaks", "after a few seconds of silence, a loud bang occurs followed by a softer banging noise"], "sample_ids": ["yW6FWLSLkx4", "zkKdxzNC97Y"], "start_seconds": ["40", "27"], "properties": ["a, child, speaks", "loud, bang, noise"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a door is opened and closed"], "question": "which entity is silent", "label": 1}, {"captions": ["some men converse over an engine running", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["sCiy7QS1U", "ziUT9IFTkjg"], "start_seconds": ["300", "10"], "properties": ["men, converse, engine", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "vehicles pass by on a roadway"], "sample_ids": ["xM4joTqDVp4", "tgbONvsP47Y"], "start_seconds": ["160", "0"], "properties": ["background, chirp, birds", "pass, vehicle, roadway"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a car is driving on the road "], "question": "which entity is a video of a train chugging?", "label": 0}, {"captions": ["a man speaks over intermittent keyboard taps", "a clicking followed by some people laughing and a kid speaking"], "sample_ids": ["tw76HGONaKg", "vz8868znkVQ"], "start_seconds": ["570", "60"], "properties": ["audio, man, keyboard", "audio, click, kid speaking"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a video of a plane flying over a cloudy sky"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a baby is laughing and breathing with background noise "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 0}, {"captions": ["water flows followed by women screaming", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["w5W5Kqtc8E", "tiDFTC-5vU"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and ducks are quacking"], "question": "which entity is a group of people", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "someone snores nearby"], "sample_ids": ["siJFXfGWgDk", "spJCm8tD9Zo"], "start_seconds": ["50", "90"], "properties": ["a, bird, vehicle", "someone snores, nearby, someone"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vzxHnu-SFEw", "sSMl2vc3ek"], "start_seconds": ["80", "20"], "properties": ["two objects, woman, speak", "loud, multiple, distance"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an adult woman and an adult man speak", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["zTLVJCo4WEE", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "beeps, hit, woman"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "wind blows strongly"], "sample_ids": ["sncRqQ67iJU", "w8uLijTqtlU"], "start_seconds": ["460", "70"], "properties": ["loud, repeatedly, man", "wind, blows, strongly"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage is blurry and shaky"], "captions_pred_audio": ["a person is snoring", "the wind is blowing strongly"], "question": "which entity is not a person", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "several insects fly while two men talk"], "sample_ids": ["zofjfKhqLk8", "s-T9OVOiMLo"], "start_seconds": ["10", "330"], "properties": ["background, metal, clings", "several, fly, men"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "bees buzz and wind blows"], "sample_ids": ["sWZzXuWYY", "tMJne1a4AFI"], "start_seconds": ["420", "0"], "properties": ["male, clanks, thumps", "bees buzz, wind blows, bees"], "captions_pred_video": [null, "a swarm of bees on the ground"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a swarm of bees buzzing around"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y2ZBGpgbhHM", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["dog, chirp, breathe", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a crow?", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vs65y4qmyBE", "tDVADusiIoc"], "start_seconds": ["340", "60"], "properties": ["wind, blows, strongly", "water, radio, man"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "several insects fly while two men talk"], "sample_ids": ["sxYkFKFIZD0", "s-T9OVOiMLo"], "start_seconds": ["20", "330"], "properties": ["screech, man, door", "several, fly, men"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a beep occurs briefly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["xtWeJ56-U-g", "sLUnaPT5gM8"], "start_seconds": ["20", "0"], "properties": ["beep, occur, briefly", "loud, laughter, intermittent"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream of water runs briefly", "people applaud and hoot and chat quietly"], "sample_ids": ["x-PeY8Yb8M4", "wwyfGO2J4"], "start_seconds": ["300", "90"], "properties": ["stream, water, run", "people, applaud, hoot"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["ukg5L09Wpvo", "tdWhHV3X25Q"], "start_seconds": ["150", "60"], "properties": ["a train, a horn, a bell", "applause, audience, yells"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a person snores loudly multiple times at a close distance"], "sample_ids": ["ylpYOorfH4o", "sSMl2vc3ek"], "start_seconds": ["410", "20"], "properties": ["engine, running, wind", "loud, multiple, distance"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person snoring several times", "plastic is tapped on while someone speaks"], "sample_ids": ["spJCm8tD9Zo", "wvKpEYswXO0"], "start_seconds": ["90", "150"], "properties": ["snore, person, several", "plastic, tap, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a stream of water flows as people talk and wind blows"], "sample_ids": ["x5cuQjOdM3E", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["cat, talk, meow", "stream, water, flow"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage is blurry and out of focus"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wz7N8YRy74I", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["rooster, crow, background, men", "a woman, laughs, animal"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a woman is speaking and a baby is crying"], "question": "which entity has a rooster?", "label": 0}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "people applaud and hoot and chat quietly"], "sample_ids": ["wRBHTgrbiwg", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["birds, chirp, cooing", "people, applaud, hoot"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person speaks briefly", "a clock ticktocks"], "sample_ids": ["zOZleIRqZm4", "v-g-j2uTByM"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "people speak as gunfire rings out"], "sample_ids": ["tdWhHV3X25Q", "wqTCwqVRDlk"], "start_seconds": ["60", "80"], "properties": ["applause, audience, yells", "gunfire, ring, speak"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["xSKJGCItUWE", "tDlfY3nmx1A"], "start_seconds": ["10", "160"], "properties": ["engine, work, child", "applause, laugh, man"], "captions_pred_video": ["footage of the helicopter flying in the room", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity is a performance", "label": 1}, {"captions": ["a dog barks and whimpers", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sShpyu2l4YQ", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "rooster, crow, background, men"], "captions_pred_video": ["the puppies are playing with a toy", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a man speaks as a car is passing by"], "sample_ids": ["sAam2NqGhLY", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "a, car, pass"], "captions_pred_video": ["of a little girl sleeping on a couch", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person is snoring", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "paper folding and crinkling"], "sample_ids": ["tEE3MpBt1sg", "zPpG3RD8lSs"], "start_seconds": ["50", "20"], "properties": ["drill, something, laugh", "paper, fold, crinkle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "the wind blows and a mouse clicks "], "question": "which is not a drill", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["slZLHwNbbt4", "zj2R0XoFr5k"], "start_seconds": ["300", "50"], "properties": ["train, horn, sound", "airplane, boy, fly"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "small dogs yip and bark sharply"], "sample_ids": ["s59PfAghdkM", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["bird, chirp, background, horse, neigh", "bark, yip, sharply"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["sfAvvZwdLCY", "tw76HGONaKg"], "start_seconds": ["20", "570"], "properties": ["water drains, flushes, water", "A, game, keyboard"], "captions_pred_video": ["footage of the toilet in the bathroom", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a toilet is flushed", "a man speaks and types on a computer keyboard "], "question": "which object is a source of water", "label": 0}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "water flows as men speak and yell"], "sample_ids": ["w9lpbUn0hPc", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["male, wind, rustling", "water, flow, men"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more like a stream", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "water flows and trickles"], "sample_ids": ["uJV8NDaHqqk", "tB7hWb9gTuQ"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "water, flow, trickle"], "captions_pred_video": ["a bee hive in a wooden box", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a swarm of bees buzzing around", "water is splashing and gurgling"], "question": "which entity is not loud", "label": 1}, {"captions": ["a small engine idles continuously", "a man speaks as a motor runs in the background"], "sample_ids": ["y5WII6cTH7k", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["engine, idle, continuously", "background, motor, run"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vh30P49Po6s", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["loud, continuous, quacks", "three men, wind, flow"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a duck?", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "birds chirp and objects are moved around"], "sample_ids": ["sYITalLZjj4", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["stream, flow, wind", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["wind blows and birds chirp", "insects buzz and a man speaks"], "question": "which entity is moving objects around", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w2M4i1mklOA", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "stream, water, flow"], "captions_pred_video": ["footage of an antique clock", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a woman speaks as she rubs two objects together"], "sample_ids": ["zl9Dqx-j7q4", "vzxHnu-SFEw"], "start_seconds": ["6", "80"], "properties": ["motors rev, laugh, loudly", "two objects, woman, speak"], "captions_pred_video": ["footage of a man driving a car in the dark", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a jet engine roars ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "an infant crying frantically"], "sample_ids": ["uWPRNLnpy7Y", "zwOBqeFTgiU"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "cry, infant, frantically"], "captions_pred_video": ["is taken from a car driving down the street", "of the baby crying in the car seat"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "someone snores nearby"], "sample_ids": ["xzKKf9bKNUo", "spJCm8tD9Zo"], "start_seconds": ["10", "90"], "properties": ["background, noise, snoring", "someone snores, nearby, someone"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person snoring loudly", "a person is snoring loudly"], "question": "which entity is a recording of snoring?", "label": 0}, {"captions": ["a man speaks as music plays before artillery is fired", "a propeller rotates loudly and intensely"], "sample_ids": ["vcmWSmvti8", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["music, man, fire", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["x5cuQjOdM3E", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["cat, meows, young woman", "engine, laugh, loud"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a cat meows and a woman speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a child speaks in closed space"], "sample_ids": ["tGcFnX0GHI", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["ring, talk, woman", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child speaking in a closed space?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "paper is crumpling consistently"], "sample_ids": ["sSMl2vc3ek", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["loud, multiple, distance", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person snoring loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "wind blows as people chatter quietly"], "sample_ids": ["spYNpeN7rPY", "xBxDz0CFVn0"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "wind, chatter, people"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yaln9y8I7ms", "vb1fPSDI4c"], "start_seconds": ["230", "30"], "properties": ["female, flushes, toilet", "multiple, people, yell"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a door opens and birds chirp", "a child yells and another yells"], "sample_ids": ["yeFvk9x0wWI", "vMDHu7Lxcgw"], "start_seconds": ["30", "410"], "properties": ["door, open, birds", "two, yell, child"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a boy playing on a trampoline in the backyard"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking and a child is shouting"], "question": "which entity is more likely to be a scream", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "an infant crying as a woman laughs"], "sample_ids": ["yZp6xizR0yU", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["animal, bleat, cry", "a, laugh, infant"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["y8WEcpOlT3I", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["wind, speak, buffeting", "water, radio, man"], "captions_pred_video": ["on how to use a sewing machine youtube", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "an infant crying as a woman laughs"], "sample_ids": ["xKB8O8LTs6s", "xhmRY9yhC7c"], "start_seconds": ["70", "20"], "properties": ["music, radio, gunshots", "a, laugh, infant"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a baby cries and a woman speaks"], "question": "which entity is about a woman?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["x6ijhqRY38s", "wRBHTgrbiwg"], "start_seconds": ["250", "50"], "properties": ["something metal, glass, hit", "bird, owl, speak"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "birds are chirping and insects are buzzing"], "question": "which entity has more animals", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["ylpYOorfH4o", "xBxDz0CFVn0"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "stream, water, flow"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "people applaud and hoot and chat quietly"], "sample_ids": ["zl9Dqx-j7q4", "wwyfGO2J4"], "start_seconds": ["6", "90"], "properties": ["motors rev, laugh, loudly", "people, applaud, hoot"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "wind blows as people chatter quietly"], "sample_ids": ["vMf1dLD6Sng", "xBxDz0CFVn0"], "start_seconds": ["6", "30"], "properties": ["frog, bird, vocalize", "wind, chatter, people"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["a frog croaks loudly", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "winds blows roughly as a vehicle races past"], "sample_ids": ["wudZTNBtVqc", "xjvTpk2Zpr8"], "start_seconds": ["60", "70"], "properties": ["accelerates, engine, wind", "wind, blows, vehicle"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a rumble grows louder", "several insects fly while two men talk"], "sample_ids": ["y4MY9mp8-TA", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["loudness, increase, rumble", "several, fly, men"], "captions_pred_video": ["a helicopter flying in the sky", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a helicopter flies overhead ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a forest", "label": 1}, {"captions": ["someone is snoring while sleeping", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["ujMt0-D-x2k", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["snore, sleep, someone", "two men, woman, birds"], "captions_pred_video": ["of the dog playing with a toy on the floor", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a baby laugh at a sputter", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["sLUnaPT5gM8", "wyllXV6PjKo"], "start_seconds": ["0", "30"], "properties": ["laugh, sputter, baby", "a baby, a woman, a man"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman speaks and a baby cries"], "question": "which baby is crying", "label": 1}, {"captions": ["a goat bleats as a person speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["tPJvjq9QePY", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["bleats, person, speak", "people, applaud, hoot"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["long loud burping by a man", "some men converse over an engine running"], "sample_ids": ["xmiUIOhtZyQ", "sCiy7QS1U"], "start_seconds": ["60", "300"], "properties": ["loud, burp, man", "men, converse, engine"], "captions_pred_video": ["homer simpson drinking a beer", null], "captions_pred_audio": ["a person burps and music plays in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man?", "label": 0}, {"captions": ["an engine runs and a man speaks", "a child speaks in closed space"], "sample_ids": ["yT5WfYMRr-U", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["engine, run, man", "child, space, speak"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sZPuqDgX2V0", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["commentator, race, track", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video of a race", "label": 0}, {"captions": ["a woman speaks followed by clicks and scraping", "a woman speaks as she rubs two objects together"], "sample_ids": ["yYJksgsxx5U", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["audio, clicks, scraping", "two objects, woman, speak"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "paper is crumpling consistently"], "sample_ids": ["yaln9y8I7ms", "v5cSxLaHADY"], "start_seconds": ["230", "0"], "properties": ["female, flushes, toilet", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and out of focus", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a toilet flushes and a man speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a person is burping then speaks and laughs"], "sample_ids": ["w2M4i1mklOA", "wAAkbZToh8"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "burp, laugh, speak"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man burps and a woman speaks"], "question": "which entity is speaking", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["vs65y4qmyBE", "wwyfGO2J4"], "start_seconds": ["340", "90"], "properties": ["wind, blows, strongly", "people, applaud, hoot"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a natural phenomenon", "label": 0}, {"captions": ["a door slams shut roughly", "water splashes and a door squeaks"], "sample_ids": ["zkKdxzNC97Y", "sdXV-ylviw"], "start_seconds": ["27", "190"], "properties": ["a door, slams, shut", "sound, splash, door"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a woman sneezes then speaks"], "sample_ids": ["tDVADusiIoc", "x4dZyf9Gbj0"], "start_seconds": ["60", "130"], "properties": ["water, radio, man", "sneezes, speaks, woman"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman sneezes and speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["uJV8NDaHqqk", "ziUT9IFTkjg"], "start_seconds": ["100", "10"], "properties": ["loud, fly, chirp", "background, birds, rustling"], "captions_pred_video": ["a bee hive in a wooden box", null], "captions_pred_audio": ["a swarm of bees buzzing around", "birds are chirping and a chime is ringing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zF8yoL0rkbI", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["engine, run, someone", "two men, woman, birds"], "captions_pred_video": ["footage of the traffic on the street at night", null], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sxYkFKFIZD0", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["screech, man, door", "men, talk, cars"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a car speeding up in the distance", "vehicles pass by on a roadway"], "sample_ids": ["u0TrcHhkPQ", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["distance, car, speed", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving on the road "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["children speak as a female ask them questions", "a clock ticktocks"], "sample_ids": ["wEBlkGWVWwE", "v-g-j2uTByM"], "start_seconds": ["260", "30"], "properties": ["female, speak, questions", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows a person writing on the whiteboard", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a drill drills through something then people begin laughing"], "sample_ids": ["t25U-v4k4ts", "tEE3MpBt1sg"], "start_seconds": ["40", "50"], "properties": ["a, chirps, bird", "drill, something, laugh"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "people are laughing breathing and speaking with background noise "], "question": "which entity is about a drill?", "label": 1}, {"captions": ["someone whistles a tune", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sIXTftIuUgw", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["someone, tune, whistle", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "birds tweet and squawk"], "sample_ids": ["sWZzXuWYY", "w1mlz3Pe4fU"], "start_seconds": ["420", "300"], "properties": ["male, clanks, thumps", "squawk, tweet, scream"], "captions_pred_video": [null, "of a bird in a cage"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "birds are chirping and singing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a child speaks in closed space", "people speak softly as food sizzles"], "sample_ids": ["yW6FWLSLkx4", "yhQ2Lg-7qDY"], "start_seconds": ["40", "130"], "properties": ["child, space, speak", "food, sizzle, speak"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a faucet is running and a man is speaking"], "question": "which entity is more likely to be in a closed space", "label": 0}, {"captions": ["a person sniffs and sneezes", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uRlbY6aoBU", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["sneezes, person, sniffs", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a person", "label": 0}, {"captions": ["a woman speaks and food sizzles while frying", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wTideSjRFS0", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["food, sizzle, woman", "People, motor, brakes"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a woman speaking and food sizzling while frying?", "label": 0}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "people cheer as a vehicle engine revs"], "sample_ids": ["uC9dtII1KDI", "xjhAnI2q6hM"], "start_seconds": ["150", "6"], "properties": ["wind, gusts, distance", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a stream of water flows quickly", "people speak as gunfire rings out"], "sample_ids": ["wbHTKEJZyhc", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["stream, water, flow", "gunfire, ring, speak"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "wind blowing followed by a zoom"], "sample_ids": ["uOpoD0gGXcs", "vr8ZXjEBhMQ"], "start_seconds": ["120", "150"], "properties": ["chirps, woman, bird", "wind, blow, zoom"], "captions_pred_video": ["a herd of cows grazing in the field", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["birds are chirping and a man is speaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to blow", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a man speaks as a car is passing by"], "sample_ids": ["vXlk0lIQBFo", "sK4u5T8hW78"], "start_seconds": ["470", "30"], "properties": ["wind, talk, vocalize", "a, car, pass"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "children speak and play together"], "sample_ids": ["xjvTpk2Zpr8", "yVVP8XvWJTo"], "start_seconds": ["70", "260"], "properties": ["wind, blows, vehicle", "children, speak, play"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a jet engine roars and wind blows ", "children are speaking and breathing with background noise "], "question": "which entity is more likely to be in a vehicle", "label": 0}, {"captions": ["an emergency siren wails as it passes", "wind blows as people chatter quietly"], "sample_ids": ["vGj1XLJvNrw", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["wails, wails, pass", "wind, chatter, people"], "captions_pred_video": ["footage of a police car driving down a city street", "footage is blurry and out of focus"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["v0x1odnXtP0", "yajyRTUQk3U"], "start_seconds": ["210", "400"], "properties": ["keyboard, type, computer", "a woman, something, fried"], "captions_pred_video": ["how to make money on youtube in spanish", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration of cooking?", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["u--KhUW8l1Y", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["engine, sound, horn", "water, radio, man"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a man speaks as a machine runs"], "sample_ids": ["uoGVs9yUqY4", "vD6lYD1l0BY"], "start_seconds": ["30", "330"], "properties": ["multiple, vocalize, wind", "a, machine, run"], "captions_pred_video": ["for how to make a wooden shed door youtube", "game controller being held in the hands of the person"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a man is speaking and dishes are being washed "], "question": "which entity is a man speaking to a machine?", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vcmWSmvti8", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["music, man, fire", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a consistent ticking pattern"], "sample_ids": ["vimzuGQvdcU", "sCeWURVHfOM"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "ticking, pattern, clock"], "captions_pred_video": ["a group of people are rafting down a river", "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "ticking of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zliInBdC98Y", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["a, baby, cries, wails", "water, radio, man"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["y2ZBGpgbhHM", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["animal, growl, bird", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a baby cries and a woman moans", "dishes cling together then a man begins to speak"], "sample_ids": ["smDKStoHBJo", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["a, cry, woman", "cling, speak, dishes"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "mechanisms are operating and water is splashing "], "question": "which entity is about a baby crying and a woman moaning?", "label": 0}, {"captions": ["an animal quacks rapidly", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["vh30P49Po6s", "siJFXfGWgDk"], "start_seconds": ["30", "50"], "properties": ["animal, quacks, rapidly", "man, woman, vehicle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking and birds are chirping in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "several insects fly while two men talk"], "sample_ids": ["tezvROoo4bs", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["audio, throttle, speaking", "several, fly, men"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a duck quacks several times"], "sample_ids": ["yeFvk9x0wWI", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["clack, bird, chirp", "quacks, duck, several"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 0}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uzQnlJXBbOM", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["ringing, beep, stop", "female, spraying, scream"], "captions_pred_video": ["footage of a person using a cell phone on a table", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a telephone rings and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a clock ticks quietly and rhythmically", "winds blows roughly as a vehicle races past"], "sample_ids": ["u7C-AEBQM", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["ticks, rhythmic, quiet", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a ticktock of a clock", "a jet engine roars and wind blows "], "question": "which entity is louder", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["weDbePuc-Xc", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["music, slaps, human", "loud, jet engine, roar"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a horn rings out as a machine runs by"], "sample_ids": ["u5RmF3c3Aw", "slZLHwNbbt4"], "start_seconds": ["60", "300"], "properties": ["engine, car, zoom", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vzceMbklWc", "tDVADusiIoc"], "start_seconds": ["180", "60"], "properties": ["water, faucet, sink", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "water flows as men speak and yell"], "sample_ids": ["tGcFnX0GHI", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["ring, talk, woman", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "vehicles pass by on a roadway"], "sample_ids": ["tPJvjq9QePY", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["animal, bleat, moo", "pass, vehicle, roadway"], "captions_pred_video": ["a dog and a sheep in a barn", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a baby cries and a man speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a man speaks, another man speaks, and a small bell dings"], "sample_ids": ["uEU-Hg5MTN8", "t69a8aRKhmc"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "a, b, c"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and birds are chirping in the background "], "question": "which entity has a ding?", "label": 1}, {"captions": ["a person speaks briefly", "vehicles pass by on a roadway"], "sample_ids": ["zOZleIRqZm4", "tgbONvsP47Y"], "start_seconds": ["80", "0"], "properties": ["person, talk, brief", "pass, vehicle, roadway"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a car is driving on the road "], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["xC8kbrKJmco", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["background, goat, scream", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "three men talk while wind blows and some liquid flows"], "sample_ids": ["slZLHwNbbt4", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["a, horn, run", "three men, wind, flow"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a machine running by?", "label": 0}, {"captions": ["food fries in a pan as someone talks and cooks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["ukxt9I7eMMg", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["food, pan, cook", "two men, woman, birds"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "a telephone rings followed by a woman talking"], "sample_ids": ["rqu8iB22IY", "tGcFnX0GHI"], "start_seconds": ["5", "0"], "properties": ["sound, repeats, laugh", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a person is burping while a girl speaks"], "sample_ids": ["yRx9txMcBl0", "vdoxuJn9lTc"], "start_seconds": ["40", "40"], "properties": ["accelerates, tires, squeals", "person, burp, girl"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a child speaks followed by a burp"], "question": "which entity is a person", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "roadway noise occurs and a truck accelerates"], "sample_ids": ["vJvryTwuAV8", "tgbONvsP47Y"], "start_seconds": ["16", "0"], "properties": ["audience, cheer, man", "noise, truck, accelerate"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a car is driving on the road "], "question": "which is not a person", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xO-Q2BlIIPU", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["two men, exclamation, speak", "a woman, laughs, animal"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and laughing?", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a man speaks while water trickles and flows"], "sample_ids": ["ugHJF0hfYkg", "sapQIQUhFc"], "start_seconds": ["10", "280"], "properties": ["engine, idle, continuously", "water, trickles, flow"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "roadway noise occurs and a truck accelerates"], "sample_ids": ["ukg5L09Wpvo", "tgbONvsP47Y"], "start_seconds": ["150", "0"], "properties": ["a train, a horn, a bell", "noise, truck, accelerate"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a car is driving on the road "], "question": "which is not a vehicle", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a man speaks followed by another man speaking outside"], "sample_ids": ["yZmhM1HcsyE", "viuTg1M-dqg"], "start_seconds": ["4", "30"], "properties": ["engine, roar, water", "two men, speak, follow"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a toilet flushes and a female speaks"], "sample_ids": ["sQwlkXjQabo", "yaln9y8I7ms"], "start_seconds": ["10", "230"], "properties": ["liquid, surface, spray", "female, flushes, toilet"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage is blurry and out of focus"], "captions_pred_audio": ["spraying followed by silence", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wvKpEYswXO0", "zj2R0XoFr5k"], "start_seconds": ["150", "50"], "properties": ["sound, water, running", "airplane, boy, fly"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tgbONvsP47Y", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["pass, vehicle, roadway", "a woman, something, fried"], "captions_pred_video": ["footage of a fire truck entering a garage", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car is driving on the road ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["people speak softly as food sizzles", "a car accelerates and wind blows"], "sample_ids": ["yhQ2Lg-7qDY", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["food, sizzle, speak", "accelerates, wind, blows"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp as a train approaches", "paper is crumpling consistently"], "sample_ids": ["xM4joTqDVp4", "v5cSxLaHADY"], "start_seconds": ["160", "0"], "properties": ["bird, chirp, train", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping and a train is moving ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["material crumbles into a microphone", "a infant makes noise and is excited"], "sample_ids": ["vofpvUo6NAw", "wIJK3-5y0kA"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "noise, excited, infant"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "someone is typing on a computer keyboard"], "sample_ids": ["uWPRNLnpy7Y", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["accelerate, laugh, vehicle", "keyboard, type, computer"], "captions_pred_video": ["is taken from a car driving down the street", "how to make money on youtube in spanish"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which is a person", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "an insect buzzes around continuously"], "sample_ids": ["s4Uz1Ffgo04", "v25l1jef3JY"], "start_seconds": ["100", "0"], "properties": ["water, rushes, motorcycle", "buzzes, continuously, insect"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a fly is buzzing around a microphone "], "question": "which entity is moving faster", "label": 0}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "an insect buzzes around continuously"], "sample_ids": ["tDVADusiIoc", "v25l1jef3JY"], "start_seconds": ["60", "0"], "properties": ["water, radio, man", "buzzes, continuously, insect"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while water drains", "a train horn blows as it passes by"], "sample_ids": ["vSeGhaZt-aI", "zVacuqSb4LI"], "start_seconds": ["50", "30"], "properties": ["water, drain, man", "horn, blows, train"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is moving", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a child speaks in closed space"], "sample_ids": ["sZPuqDgX2V0", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["engine, accelerate, intercom", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a horn blasts loudly as a train passes"], "sample_ids": ["wEBlkGWVWwE", "zsLxS-uLJTw"], "start_seconds": ["260", "20"], "properties": ["a, babble, woman", "horn, blast, train"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of the train on the tracks at sunrise or sunset"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a train blows its horn and moves on the tracks "], "question": "which entity is louder", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "some men converse over an engine running"], "sample_ids": ["xKB8O8LTs6s", "sCiy7QS1U"], "start_seconds": ["70", "300"], "properties": ["music, gunfire, explosion", "men, converse, engine"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more calm", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a horn rings out as a machine runs by"], "sample_ids": ["zF8yoL0rkbI", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["engine, run, someone", "a, horn, run"], "captions_pred_video": ["footage of the traffic on the street at night", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a man speaks as a car is passing by"], "sample_ids": ["yajyRTUQk3U", "sK4u5T8hW78"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "a, car, pass"], "captions_pred_video": ["- a woman cooking in the kitchen", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["goats bleat and people speak", "three men talk while wind blows and some liquid flows"], "sample_ids": ["z5iUE5h0EPs", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["goats bleat, people speak, language", "three men, wind, flow"], "captions_pred_video": ["of the goat in the barn", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a goat bleats and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "wind blows as people chatter quietly"], "sample_ids": ["sEprKHm8Sj8", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["car, tires, slows", "wind, chatter, people"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage is blurry and out of focus"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zF8yoL0rkbI", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["engine, run, someone", "engine, idle, woman"], "captions_pred_video": ["footage of the traffic on the street at night", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a woman is speaking and a subway train is moving "], "question": "which entity has a running engine", "label": 0}, {"captions": ["small dogs growl, bark and yip.", "a woman speaks as she rubs two objects together"], "sample_ids": ["sShpyu2l4YQ", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["growl, bark, yip", "two objects, woman, speak"], "captions_pred_video": ["the puppies are playing with a toy", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zliInBdC98Y", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["a, baby, cries, wails", "engine, laugh, loud"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a baby cries and a woman speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["two frogs croak at each other", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zg0X6BnhOLQ", "xfaoyyzw2WU"], "start_seconds": ["410", "180"], "properties": ["two frogs, croak, at each other", "loud, jet engine, roar"], "captions_pred_video": ["footage of lightning in the sky at night", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a frog is croaking", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a man speaks as a car is passing by"], "sample_ids": ["y8dSeubCNI", "sK4u5T8hW78"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking with background noise and breathing sounds "], "question": "which car is revving and accelerating loudly", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["y2ZBGpgbhHM", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["dog, chirp, breathe", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["a child yells and another yells", "a train horn blows as it passes by"], "sample_ids": ["vMDHu7Lxcgw", "zVacuqSb4LI"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "horn, blows, train"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["w6RTHR6AeAg", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["call, owl, screech", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a train horn blows as it passes by"], "sample_ids": ["ugHJF0hfYkg", "zVacuqSb4LI"], "start_seconds": ["10", "30"], "properties": ["engine, idle, continuously", "horn, blows, train"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a helicopter is flying overhead ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["zY3icUyMdh8", "w6RTHR6AeAg"], "start_seconds": ["20", "40"], "properties": ["dog, bark, engine", "call, owl, screech"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "an owl hoots and mechanisms operate "], "question": "which entity is a bird", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["yNtRmrn0io8", "uqFtmnhuqA8"], "start_seconds": ["210", "30"], "properties": ["storm, distance, strike", "a, b, c"], "captions_pred_video": ["footage of a house in the middle of the night", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["rain falls and thunder roars", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["t25U-v4k4ts", "wDVMhEdTiVw"], "start_seconds": ["40", "30"], "properties": ["a, chirps, bird", "gun, shoot, water"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause harm", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "small dogs yip and bark sharply"], "sample_ids": ["tMJne1a4AFI", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["wind, buzz, rustling", "bark, yip, sharply"], "captions_pred_video": ["a swarm of bees on the ground", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a swarm of bees buzzing around", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["wP8ZKrlx3oA", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["fall, rain, splash", "animal, grunts, snorts"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a baby is crying"], "question": "which entity is not a splash", "label": 1}, {"captions": ["water flows as men speak and yell", "a child speaks in closed space"], "sample_ids": ["vJ7JPEFhyLA", "yW6FWLSLkx4"], "start_seconds": ["16", "40"], "properties": ["water, flow, men", "child, space, speak"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["continuous sneezing together with speech", "waves crash against a shoreline and people speak"], "sample_ids": ["x4dZyf9Gbj0", "yFB25fqfU8I"], "start_seconds": ["130", "300"], "properties": ["continuous, sneeze, speech", "wave, crash, shoreline"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "an engine runs loudly"], "sample_ids": ["ul60S8TXDA8", "vqZuVbG6-HI"], "start_seconds": ["60", "130"], "properties": ["sound, distance, bell", "loud, engine, run"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["s59PfAghdkM", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["bird, chirp, background, horse, neigh", "female, spraying, scream"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wP8ZKrlx3oA", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["rain, storm, thunder", "water, radio, man"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "some tunes played by whistling"], "sample_ids": ["uqFtmnhuqA8", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["a, b, c", "tune, play, whistling"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a person whistling a song"], "question": "which entity is a musical composition", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vddP56-ogds", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a church bell rings several times", "a train horn blows as it passes by"], "sample_ids": ["sUVVjE3Ucp8", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["ring, bell, several", "horn, blows, train"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a church bell is ringing ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["people clap and speak in the distance", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wwyfGO2J4", "xfaoyyzw2WU"], "start_seconds": ["90", "180"], "properties": ["clap, distance, speak", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a person snoring", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["t8tv5YRMJUg", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["a person, snore, loud", "wind, blow, vehicle"], "captions_pred_video": ["of a man getting his face licked by another man", null], "captions_pred_audio": ["a person sniffs and breathes heavily", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a person?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a stream of water runs briefly"], "sample_ids": ["uzQnlJXBbOM", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["ringing, beep, stop", "stream, water, run"], "captions_pred_video": ["footage of a person using a cell phone on a table", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a telephone rings and a man speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["sfAvvZwdLCY", "xyL9F5VrjkE"], "start_seconds": ["20", "20"], "properties": ["water drains, flushes, water", "wind, motor, distance"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["a toilet is flushed", "the wind is blowing and a car is passing by "], "question": "which entity is a source of water", "label": 0}, {"captions": ["waves crash against a shoreline and wind blows", "a woman speaks as she rubs two objects together"], "sample_ids": ["zdYdyF9-m8U", "vzxHnu-SFEw"], "start_seconds": ["7", "80"], "properties": ["wind, crash, shoreline", "two objects, woman, speak"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["waves crash and wind blows ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a physical action", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vzxHnu-SFEw", "zFjIWfSD-4"], "start_seconds": ["80", "410"], "properties": ["two objects, woman, speak", "People, motor, brakes"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a clock ticktocks"], "sample_ids": ["uEU-Hg5MTN8", "v-g-j2uTByM"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a stream of water flows quickly", "people applaud and hoot and chat quietly"], "sample_ids": ["wbHTKEJZyhc", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["stream, water, flow", "people, applaud, hoot"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a clock ticktocks"], "sample_ids": ["wTjoRj1se3U", "v-g-j2uTByM"], "start_seconds": ["390", "30"], "properties": ["airplane, engine, spool", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a jet engine is running and people are talking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["water splashes as an animal walks through", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["w1ir-sZ3Im8", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["animal, water, splashes", "female, spraying, scream"], "captions_pred_video": ["footage of a group of people riding horses through a river", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying and sizzles", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zNRChLjqcU", "vfYTJq7nU"], "start_seconds": ["220", "130"], "properties": ["food is frying, sizzles, food", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "a duck quacks and a woman speaks"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["material crumbles into a microphone", "a man speaks followed by another man speaking outside"], "sample_ids": ["vofpvUo6NAw", "viuTg1M-dqg"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "two men, speak, follow"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a toilet flushes and a female speaks"], "sample_ids": ["zcDwZ6W7E3E", "yaln9y8I7ms"], "start_seconds": ["180", "230"], "properties": ["man, speak, motorcycles", "female, flushes, toilet"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "an infant crying frantically"], "sample_ids": ["xERFUeZONz8", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "cry, infant, frantically"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "of the baby crying in the car seat"], "captions_pred_audio": ["an emergency vehicle siren blares", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a stream of water flows as people talk and wind blows"], "sample_ids": ["x9JovgqUcs", "xBxDz0CFVn0"], "start_seconds": ["500", "30"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "paper is crumpling consistently"], "sample_ids": ["vs65y4qmyBE", "v5cSxLaHADY"], "start_seconds": ["340", "0"], "properties": ["engine, run, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a machine beeps continuously"], "sample_ids": ["wtDqrBygTcU", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["man, engine, run", "beeps, machine, continuously"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", null], "captions_pred_audio": ["a man is speaking and a motor is running", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["water pouring and bubbling", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uyRfq-jKPpo", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["water, bubbles, pouring", "female, spraying, scream"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["water is running from a faucet", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and spraying?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yPUYU6t3rwo", "vb1fPSDI4c"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "multiple, people, yell"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", null], "captions_pred_audio": ["insects buzz and a man speaks", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xM4joTqDVp4", "vbZ-0lGPneg"], "start_seconds": ["160", "30"], "properties": ["background, chirp, birds", "a woman, a television program, a bird"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a woman is speaking and a dog is whimpering"], "question": "which entity has birds chirping in the background?", "label": 0}, {"captions": ["a person is snoring while sleeping", "vehicles pass by on a roadway"], "sample_ids": ["vJrjSeP17yE", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "pass, vehicle, roadway"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["zY3icUyMdh8", "vlS6YMeWAPo"], "start_seconds": ["20", "40"], "properties": ["dog, bark, engine", "sheep, baa, birds"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp as a bell rings", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["ziUT9IFTkjg", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["chirp, bell, ring", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a car accelerates and wind blows"], "sample_ids": ["wTideSjRFS0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["food, sizzle, woman", "accelerates, wind, blows"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zk-xJGQU8-4", "vYkA3cfXp5Q"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "engine, accelerate, idle"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a machine beeps continuously"], "sample_ids": ["vBHyYJ8pL0", "y682ml90jGw"], "start_seconds": ["2", "11"], "properties": ["noise, door, opening", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a beeping sound is being made "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["a man speaks over a running engine and blowing wind", "pigeons vocalize and birds chirp"], "sample_ids": ["ylpYOorfH4o", "uiS58TNyUiw"], "start_seconds": ["410", "430"], "properties": ["engine, running, wind", "vocalize, bird, chirp"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "several insects fly while two men talk"], "sample_ids": ["w-4gHptFNuU", "s-T9OVOiMLo"], "start_seconds": ["21", "330"], "properties": ["engine revs, accelerates, bump", "several, fly, men"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a clock ticktocks briefly"], "sample_ids": ["wP8ZKrlx3oA", "u7C-AEBQM"], "start_seconds": ["40", "30"], "properties": ["rain, storm, thunder", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a ticktock of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vr8ZXjEBhMQ", "uZesmtKZGSw"], "start_seconds": ["150", "250"], "properties": ["sound, distance, engine", "men, talk, cars"], "captions_pred_video": ["is taken from a motorcycle's point of view", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["scraping and female speech with distant music", "birds chirp and objects are moved around"], "sample_ids": ["yHeVV-xeOxQ", "yPUYU6t3rwo"], "start_seconds": ["130", "370"], "properties": ["female, speech, music", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a girl milking a goat's udder", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yFB25fqfU8I", "sSMl2vc3ek"], "start_seconds": ["300", "20"], "properties": ["wave, crash, shoreline", "loud, multiple, distance"], "captions_pred_video": ["footage of a person surfing in the ocean", null], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "waves crash against a shoreline and people speak"], "sample_ids": ["vJvryTwuAV8", "yFB25fqfU8I"], "start_seconds": ["16", "300"], "properties": ["audience, cheer, man", "wave, crash, shoreline"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a door slams shut roughly", "multiple ducks quack continuously"], "sample_ids": ["zkKdxzNC97Y", "wfHeoPDLMaM"], "start_seconds": ["27", "30"], "properties": ["a door, slams, shut", "multiple, quack, continuously"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire"], "captions_pred_audio": ["a door is opened and closed", "ducks are quacking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaking with light rustling", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zOZleIRqZm4", "wqZ135Ssz0"], "start_seconds": ["80", "60"], "properties": ["light, rustling, man", "two men, woman, birds"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["water flows followed by women screaming", "a man speaks then blows a vehicle horn as wind blows"], "sample_ids": ["w5W5Kqtc8E", "zALy31PjDl0"], "start_seconds": ["100", "21"], "properties": ["water, flow, women", "a man, a vehicle, a horn"], "captions_pred_video": [null, "a motorcycle is parked on the side of a brick walkway"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and a car horn is honking"], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["multiple ducks quack continuously", "some men converse over an engine running"], "sample_ids": ["wfHeoPDLMaM", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["multiple, quack, continuously", "men, converse, engine"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a train horn sounds as it passes by", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["ukg5L09Wpvo", "xfaoyyzw2WU"], "start_seconds": ["150", "180"], "properties": ["sound, train, horn", "loud, jet engine, roar"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vBHyYJ8pL0", "vb1fPSDI4c"], "start_seconds": ["2", "30"], "properties": ["noise, door, opening", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["several ducks are quacking and squawking", "some men converse over an engine running"], "sample_ids": ["wfHeoPDLMaM", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["quacking, squawking, ducks", "men, converse, engine"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a group of people", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "water pouring and bubbling"], "sample_ids": ["vKrYfzleLB8", "uyRfq-jKPpo"], "start_seconds": ["110", "50"], "properties": ["a, ring, gunshots", "water, bubbles, pouring"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks while water drains", "an airplane engine runs"], "sample_ids": ["vSeGhaZt-aI", "yVPZ2MNWpms"], "start_seconds": ["50", "0"], "properties": ["water, drain, man", "engine, airplane, runs"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays"], "sample_ids": ["viuTg1M-dqg", "sU53zg9Jp7s"], "start_seconds": ["30", "380"], "properties": ["two men, speak, follow", "a bird chirps, a door bell ringing, a woman gasps"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a cartoon girl is standing in front of a blue couch"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "birds chirp and a doorbell rings with breathing and music in the background "], "question": "which entity has a doorbell ringing?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["su6FAOcOA8c", "uZesmtKZGSw"], "start_seconds": ["4", "250"], "properties": ["engine, run, woman", "men, talk, cars"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a woman making an announcement?", "label": 0}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a person uses a saw to cut some wood"], "sample_ids": ["ziUT9IFTkjg", "sHbXC6na9hg"], "start_seconds": ["10", "0"], "properties": ["background, birds, rustling", "a person, saw, wood"], "captions_pred_video": [null, "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "an engine is idling and vibrating"], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a car speeding up in the distance"], "sample_ids": ["tOSWIURC-4", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["engine, work, nearby", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["birds chirp as a bell rings", "some tunes played by whistling"], "sample_ids": ["ziUT9IFTkjg", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["chirp, bell, ring", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vBHyYJ8pL0", "zl9Dqx-j7q4"], "start_seconds": ["2", "6"], "properties": ["noise, door, opening", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a child speaks in closed space"], "sample_ids": ["sK4u5T8hW78", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["a, car, pass", "child, space, speak"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a weapon fires multiple times", "water splashes as an animal walks through"], "sample_ids": ["sMC07Ucy7kg", "w1ir-sZ3Im8"], "start_seconds": ["10", "90"], "properties": ["weapon, fire, multiple", "animal, water, splashes"], "captions_pred_video": ["footage is from a car's point of view", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "water splashes and gurgles as people speak"], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a cat meows and children speak", "a power tool runs and touches a surface"], "sample_ids": ["x5cuQjOdM3E", "zfvPRf3chY"], "start_seconds": ["30", "290"], "properties": ["cat, speak, children", "power tool, run, touch"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking while a power tool is being used "], "question": "which entity is a machine", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["rqu8iB22IY", "zFjIWfSD-4"], "start_seconds": ["5", "410"], "properties": ["sound, repeats, laugh", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a car speeding up in the distance", "water flows followed by women screaming"], "sample_ids": ["u0TrcHhkPQ", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["distance, car, speed", "water, flow, women"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is moving faster", "label": 0}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "a horn rings out as a machine runs by"], "sample_ids": ["wqZ135Ssz0", "slZLHwNbbt4"], "start_seconds": ["60", "300"], "properties": ["two men, woman, birds", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity has a horn", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a car speeding up in the distance"], "sample_ids": ["zgUgkpk78xU", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["horn, bells, ring", "distance, car, speed"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a duck quacks loudly and continuously"], "sample_ids": ["u7C-AEBQM", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["ticks, rhythmic, quiet", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a ticktock of a clock", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["people speak as gunfire rings out", "a dog barks and whimpers"], "sample_ids": ["wqTCwqVRDlk", "sShpyu2l4YQ"], "start_seconds": ["80", "0"], "properties": ["gunfire, ring, speak", "barks, whimpers, dog"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "the puppies are playing with a toy"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a dog is barking and growling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["ylpYOorfH4o", "zl9Dqx-j7q4"], "start_seconds": ["410", "6"], "properties": ["motor, run, steady", "engine, laugh, loud"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["ul60S8TXDA8", "y2bVZ7rz-5M"], "start_seconds": ["60", "280"], "properties": ["sound, distance, bell", "motor noise, horn, siren"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking and a siren wailing?", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tK4VlLsNxak", "sSMl2vc3ek"], "start_seconds": ["120", "20"], "properties": ["a, dial, telephone", "loud, multiple, distance"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a man speaks followed by another man speaking outside"], "sample_ids": ["uEU-Hg5MTN8", "viuTg1M-dqg"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "two men, speak, follow"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["ylpYOorfH4o", "tdWhHV3X25Q"], "start_seconds": ["410", "60"], "properties": ["engine, run, loud", "applause, audience, yells"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "small dogs yip and bark sharply"], "sample_ids": ["vJ7JPEFhyLA", "v-wcQf4BDY0"], "start_seconds": ["16", "120"], "properties": ["three men, wind, flow", "bark, yip, sharply"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tQWGZLItBXk", "zl9Dqx-j7q4"], "start_seconds": ["170", "6"], "properties": ["voice, music, whoosh", "engine, laugh, loud"], "captions_pred_video": ["worms revolution screenshots", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "three men talk while wind blows and some liquid flows"], "sample_ids": ["siJFXfGWgDk", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["a, bird, vehicle", "three men, wind, flow"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zj2R0XoFr5k", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["airplane, boy, fly", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a telephone rings followed by a woman talking"], "sample_ids": ["vuUVPzd2FXw", "tGcFnX0GHI"], "start_seconds": ["160", "0"], "properties": ["a, steam, release", "ring, talk, woman"], "captions_pred_video": ["of the person cooking on the grill with a spatula", null], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks while a rooster crows and other people speak in the background"], "sample_ids": ["vD6lYD1l0BY", "wz7N8YRy74I"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "rooster, crow, background, people"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a clock ticktocks"], "sample_ids": ["tK4VlLsNxak", "v-g-j2uTByM"], "start_seconds": ["120", "30"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "ticktocks, clock, ticktocks"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "wind blows as people chatter quietly"], "sample_ids": ["y2ZBGpgbhHM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["animal, growl, bird", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["children speak as a female ask them questions", "a car accelerates and wind blows"], "sample_ids": ["wEBlkGWVWwE", "u0TrcHhkPQ"], "start_seconds": ["260", "20"], "properties": ["female, speak, questions", "accelerates, wind, blows"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a race car accelerates and revs its engine "], "question": "which is not a person", "label": 0}, {"captions": ["electronic beeps occur in a short series", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["y682ml90jGw", "y2bVZ7rz-5M"], "start_seconds": ["11", "280"], "properties": ["beeps, series, electronic", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a beeping sound is being made ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["w2JXXIAdUdg", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["snoring, distance, person", "People, motor, brakes"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person speaking indiscriminately in the distance?", "label": 0}, {"captions": ["a woman speaks with water running", "an airplane engine spools and people speak"], "sample_ids": ["wTideSjRFS0", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["water, running, woman", "airplane, engine, spool"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a jet engine is running and people are talking"], "question": "which entity is a video of a woman speaking with water running?", "label": 0}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["vlS6YMeWAPo", "y2bVZ7rz-5M"], "start_seconds": ["40", "280"], "properties": ["sheep, baa, birds", "motor noise, horn, siren"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a goat bleats and birds chirp", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a motorcycle engine works nearby"], "sample_ids": ["xSKJGCItUWE", "tOSWIURC-4"], "start_seconds": ["10", "0"], "properties": ["engine, work, child", "engine, work, nearby"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a lawn mower is running "], "question": "which engine works nearby", "label": 1}, {"captions": ["a man speaks as a car is passing by", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sK4u5T8hW78", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "multiple, people, yell"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a male speaks and another male speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["viuTg1M-dqg", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["two males, speaking, male", "music, gunfire, explosion"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a car speeding up in the distance"], "sample_ids": ["xKB8O8LTs6s", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["music, gunshots, explosion", "distance, car, speed"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "dishes cling together then a man begins to speak"], "sample_ids": ["xzKKf9bKNUo", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["background, noise, snoring", "cling, speak, dishes"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person snoring loudly", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a stream of water runs briefly", "water flows as men speak and yell"], "sample_ids": ["x-PeY8Yb8M4", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["stream, water, run", "water, flow, men"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows water flowing?", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "pigeons vocalize and birds chirp"], "sample_ids": ["sTpirNYo8vQ", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["a, tone, fast", "vocalize, bird, chirp"], "captions_pred_video": ["of a man taking a selfie on a bus", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["scraping and female speech with distant music", "a man speaks uses a drill"], "sample_ids": ["yHeVV-xeOxQ", "x5eIC7S0fbg"], "start_seconds": ["130", "60"], "properties": ["female, speech, music", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["of a girl milking a goat's udder", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["wind blows strongly", "wind blowing followed by a zoom"], "sample_ids": ["w8uLijTqtlU", "vr8ZXjEBhMQ"], "start_seconds": ["70", "150"], "properties": ["wind, blows, strongly", "wind, blow, zoom"], "captions_pred_video": ["footage is blurry and shaky", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["the wind is blowing strongly", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a toilet flushes and a female speaks"], "sample_ids": ["xBxDz0CFVn0", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["wind, chatter, people", "female, flushes, toilet"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a toilet flushes and a man speaks"], "question": "which entity is more silent", "label": 0}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a siren comes to life as a horn blares"], "sample_ids": ["slZLHwNbbt4", "u--KhUW8l1Y"], "start_seconds": ["300", "0"], "properties": ["clap, distance, horn", "horn, siren, life"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a firefighter spraying water from a fire hydrant at night"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a fire truck siren blares and a horn blows "], "question": "which entity is a siren", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a vehicle engine revs and tires squeal"], "sample_ids": ["yJ0TePmaOo", "yDoT73BWsdA"], "start_seconds": ["390", "10"], "properties": ["two hard objects, man, speak", "engine revs, tires squeal, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a man speaks as a car is passing by"], "sample_ids": ["yYJksgsxx5U", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["audio, woman, silverware", "a, car, pass"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a man speaks as a car is passing by"], "sample_ids": ["tQWGZLItBXk", "sK4u5T8hW78"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "a, car, pass"], "captions_pred_video": ["worms revolution screenshots", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a train horn blows as it passes by"], "sample_ids": ["su6FAOcOA8c", "zVacuqSb4LI"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "horn, blows, train"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is moving", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zj2R0XoFr5k", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["airplane, boy, fly", "engine, laugh, loud"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks uses a drill", "paper folding and crinkling"], "sample_ids": ["x5eIC7S0fbg", "zPpG3RD8lSs"], "start_seconds": ["60", "20"], "properties": ["A man is speaking, uses a drill, and is a tool", "paper, fold, crinkle"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and using a power tool ", "the wind blows and a mouse clicks "], "question": "which is a tool", "label": 0}, {"captions": ["loud intermittent buzzing with intermittent laughter", "water splashes as an animal walks through"], "sample_ids": ["sLUnaPT5gM8", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["loud, laughter, intermittent", "animal, water, splashes"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a small engine idles continuously", "an engine idles consistently before sputtering some"], "sample_ids": ["y5WII6cTH7k", "rwTERCUno"], "start_seconds": ["40", "90"], "properties": ["engine, idle, continuously", "engine, idle, sputter"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", null], "captions_pred_audio": ["an engine is knocking and vibrating ", "an engine is idling and vibrating"], "question": "which engine idles consistently before sputtering some", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a clock ticktocks"], "sample_ids": ["y8WEcpOlT3I", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["wind, speak, buffeting", "ticktocks, clock, ticktocks"], "captions_pred_video": ["on how to use a sewing machine youtube", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a heavy rain falls endlessly", "people applaud and hoot and chat quietly"], "sample_ids": ["wP8ZKrlx3oA", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["heavy, rain, fall", "people, applaud, hoot"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["a train horn blows as it passes by", "paper is crumpling consistently"], "sample_ids": ["zVacuqSb4LI", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["horn, blows, train", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "water splashes and a door squeaks"], "sample_ids": ["y8dSeubCNI", "sdXV-ylviw"], "start_seconds": ["4", "190"], "properties": ["men, women, car", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine revving and people talking in the background", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vddP56-ogds", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["water, splash, person, laugh", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a car accelerates and wind blows"], "sample_ids": ["sofxkNWaP0s", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["wind, engine, louder", "accelerates, wind, blows"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", null], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a small engine spits as it runs", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sZvwOuuPGP0", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["spits, engine, runs", "loud, laughter, intermittent"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a medium engine is running ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a person", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a duck quacks loudly and continuously"], "sample_ids": ["ylpYOorfH4o", "vh30P49Po6s"], "start_seconds": ["410", "30"], "properties": ["motor, run, steady", "loud, continuous, quacks"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a door slams shut roughly"], "sample_ids": ["vbr9mHKc8WM", "zkKdxzNC97Y"], "start_seconds": ["40", "27"], "properties": ["noise, loudness, engine", "a door, slams, shut"], "captions_pred_video": [null, "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["an engine is idling", "a door is opened and closed"], "question": "which entity is louder", "label": 1}, {"captions": ["people speak and tapping occurs", "plastic is tapped on while someone speaks"], "sample_ids": ["tFCUUGdREgA", "wvKpEYswXO0"], "start_seconds": ["70", "150"], "properties": ["people, tap, speak", "plastic, tap, speak"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "water is sprayed across a hard surface"], "sample_ids": ["uWAAAL4CIoc", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["a woman, chirps, animal", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "wind blowing followed by a zoom"], "sample_ids": ["xfaoyyzw2WU", "vr8ZXjEBhMQ"], "start_seconds": ["180", "150"], "properties": ["loud, jet engine, roar", "wind, blow, zoom"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "wind blows and a chainsaw cuts through wood "], "question": "which is not loud", "label": 1}, {"captions": ["a man woman speak while crickets sing", "pigeons vocalize and birds chirp"], "sample_ids": ["zTLVJCo4WEE", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["a, crickets, sing", "vocalize, bird, chirp"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of the pigeon in the cage"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "metal clacking as food and oil sizzles followed by a woman talking"], "sample_ids": ["wAAkbZToh8", "vW4x7S1VfQc"], "start_seconds": ["0", "150"], "properties": ["burp, laugh, speak", "clacking, oil, woman"], "captions_pred_video": [null, "footage of a person cooking fish in a frying pan on a stove top"], "captions_pred_audio": ["a man burps and a woman speaks", "food sizzles in a frying pan"], "question": "which entity is a person", "label": 0}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yks4cLgIDMc", "zl9Dqx-j7q4"], "start_seconds": ["170", "6"], "properties": ["background, speaking, child", "engine, laugh, loud"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and a child is crying", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "wind blows as people chatter quietly"], "sample_ids": ["yNtRmrn0io8", "xBxDz0CFVn0"], "start_seconds": ["210", "30"], "properties": ["storm, distance, strike", "wind, chatter, people"], "captions_pred_video": ["footage of a house in the middle of the night", "footage is blurry and out of focus"], "captions_pred_audio": ["rain falls and thunder roars", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water drains", "an infant crying frantically"], "sample_ids": ["sfAvvZwdLCY", "zwOBqeFTgiU"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "cry, infant, frantically"], "captions_pred_video": ["footage of the toilet in the bathroom", "of the baby crying in the car seat"], "captions_pred_audio": ["a toilet is flushed", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tMbMDvT50j8", "tDVADusiIoc"], "start_seconds": ["12", "60"], "properties": ["a, cry, woman", "water, radio, man"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["multiple birds vocalize and wind blows", "a woman speaks happily and an animal chirps"], "sample_ids": ["uoGVs9yUqY4", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["multiple, vocalize, wind", "a woman, chirps, animal"], "captions_pred_video": ["for how to make a wooden shed door youtube", null], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xZepNM9qcRA", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["background, motor, run", "engine, revs, vehicle"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a race car accelerates and revs its engine "], "question": "which entity has a vehicle passing by?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "water splashes as an animal walks through"], "sample_ids": ["uzQnlJXBbOM", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["ringing, beep, stop", "animal, water, splashes"], "captions_pred_video": ["footage of a person using a cell phone on a table", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a telephone rings and a man speaks", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "vehicles pass by on a roadway"], "sample_ids": ["y2bVZ7rz-5M", "tgbONvsP47Y"], "start_seconds": ["280", "0"], "properties": ["engine, horn, siren", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "some tunes played by whistling"], "sample_ids": ["su6FAOcOA8c", "u6BnG6YZqJ4"], "start_seconds": ["4", "0"], "properties": ["engine, run, woman", "tune, play, whistling"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uJV8NDaHqqk", "su6FAOcOA8c"], "start_seconds": ["100", "4"], "properties": ["loud, fly, chirp", "engine, idle, woman"], "captions_pred_video": ["a bee hive in a wooden box", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking and a subway train is moving "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a man speaks over intermittent keyboard taps"], "sample_ids": ["t69a8aRKhmc", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["a, b, c", "audio, man, keyboard"], "captions_pred_video": ["footage is blurry and out of focus", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a man speaks followed by another man speaking outside"], "sample_ids": ["u21-Z5gJCB8", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "two men, speak, follow"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking with another voice speaking in the background?", "label": 0}, {"captions": ["a male speaks over some small clicks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uXxVebHsGZ8", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["male, clicks, speak", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a man speaks as a car is passing by"], "sample_ids": ["zY3icUyMdh8", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "a, car, pass"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more passive", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["y8dSeubCNI", "vlS6YMeWAPo"], "start_seconds": ["4", "40"], "properties": ["men, women, car", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["an engine revving and people talking in the background", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["yks4cLgIDMc", "xjvTpk2Zpr8"], "start_seconds": ["170", "70"], "properties": ["background, speaking, child", "wind, blows, vehicle"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a child is crying", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xjhAnI2q6hM", "vfYTJq7nU"], "start_seconds": ["6", "130"], "properties": ["engine revs, vehicle, people", "rustling, ducks, quack"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a church bell rings several times", "someone is typing on a computer keyboard"], "sample_ids": ["sUVVjE3Ucp8", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["ring, bell, several", "keyboard, type, computer"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "how to make money on youtube in spanish"], "captions_pred_audio": ["a church bell is ringing ", "a person is typing on a keyboard"], "question": "which is not a type of computer", "label": 0}, {"captions": ["birds chirp quietly and an adult man speaks", "an engine runs loudly"], "sample_ids": ["zuua6-5goWw", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["birds, chirp, quiet, man, speaks", "loud, engine, run"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage is blurry because it's raining outside"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a lawn mower is running and men are speaking "], "question": "which is quieter", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "paper is crumpling consistently"], "sample_ids": ["uzQnlJXBbOM", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["ringing, beep, stop", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a person using a cell phone on a table", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a telephone rings and a man speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tw76HGONaKg", "xfaoyyzw2WU"], "start_seconds": ["570", "180"], "properties": ["A, game, keyboard", "loud, jet engine, roar"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "several insects fly while two men talk"], "sample_ids": ["vdoxuJn9lTc", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["burp, loud, girl", "several, fly, men"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a girl speaking?", "label": 0}, {"captions": ["a vehicle engine revs as the vehicle passes", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yDoT73BWsdA", "wqZ135Ssz0"], "start_seconds": ["10", "60"], "properties": ["engine, revs, vehicle", "two men, woman, birds"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a child speaks in closed space"], "sample_ids": ["xfudFO976zE", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["animal, bleats, cry", "child, space, speak"], "captions_pred_video": ["footage is blurry and shaky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["paper is crumpling consistently", "a car accelerates and wind blows"], "sample_ids": ["v5cSxLaHADY", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "accelerates, wind, blows"], "captions_pred_video": ["footage of the person holding a pair of scissors", null], "captions_pred_audio": ["paper is crumpled and crinkled", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a man speaks as a motor runs in the background"], "sample_ids": ["vJ7JPEFhyLA", "xZepNM9qcRA"], "start_seconds": ["16", "30"], "properties": ["three men, wind, flow", "background, motor, run"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["continuous sneezing together with speech", "frogs croak and vocalize"], "sample_ids": ["x4dZyf9Gbj0", "yswmmRZFItk"], "start_seconds": ["130", "0"], "properties": ["continuous, sneeze, speech", "croak, vocalize, frog"], "captions_pred_video": ["footage is blurry and out of focus", "a close up of a frog in the water"], "captions_pred_audio": ["a woman sneezes and speaks", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a horn rings out as a machine runs by"], "sample_ids": ["uZesmtKZGSw", "slZLHwNbbt4"], "start_seconds": ["250", "300"], "properties": ["car, track, man", "a, horn, run"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "someone snores nearby"], "sample_ids": ["vJ7JPEFhyLA", "spJCm8tD9Zo"], "start_seconds": ["16", "90"], "properties": ["three men, wind, flow", "someone snores, nearby, someone"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sWZzXuWYY", "vbZ-0lGPneg"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "someone whistles a tune"], "sample_ids": ["uqFtmnhuqA8", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["a, b, c", "someone, tune, whistle"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", null], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xjvTpk2Zpr8", "sSMl2vc3ek"], "start_seconds": ["70", "20"], "properties": ["wind, blows, vehicle", "loud, multiple, distance"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a toilet flushes and a female speaks"], "sample_ids": ["w0xsN8X18Y", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["music, surface, rain", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a toilet flushes and a man speaks"], "question": "which entity is more likely to be in a bathroom?", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xM4joTqDVp4", "tdWhHV3X25Q"], "start_seconds": ["160", "60"], "properties": ["background, chirp, birds", "applause, audience, yells"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a duck quacks continuously"], "sample_ids": ["un9VQlzgZM", "vh30P49Po6s"], "start_seconds": ["5", "30"], "properties": ["females, talk, laugh", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a male speaks and another male speaks", "small dogs yip and bark sharply"], "sample_ids": ["viuTg1M-dqg", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["two males, speaking, male", "bark, yip, sharply"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "birds chirp and objects are moved around"], "sample_ids": ["yYJksgsxx5U", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["audio, woman, silverware", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "insects buzz and a man speaks"], "question": "which entity is a video?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a car accelerates and wind blows"], "sample_ids": ["tEE3MpBt1sg", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["drill, something, laugh", "accelerates, wind, blows"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "people applaud and hoot and chat quietly"], "sample_ids": ["xKB8O8LTs6s", "wwyfGO2J4"], "start_seconds": ["70", "90"], "properties": ["music, gunfire, explosion", "people, applaud, hoot"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xyL9F5VrjkE", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["engine, run, wind", "airplane, boy, fly"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man is filing a hard object", "cats meow and then a person begins to talk while the cats continue to meow"], "sample_ids": ["vveS8HT7Uog", "x5cuQjOdM3E"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "cat, talk, meow"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a cat meows and a woman speaks"], "question": "which entity is talking", "label": 1}, {"captions": ["a motorcycle engine is idling", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vZAqdHZ81yA", "zj2R0XoFr5k"], "start_seconds": ["180", "50"], "properties": ["engine, motorcycle, idling", "airplane, boy, fly"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["an engine is idling loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a car accelerates and wind blows"], "sample_ids": ["wqUmIEzuNz4", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["frog, bird, vocalize", "accelerates, wind, blows"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", null], "captions_pred_audio": ["a cat meows and rustles", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zTLVJCo4WEE", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "gun, shoot, water"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a consistent ticking pattern"], "sample_ids": ["vdoxuJn9lTc", "sCeWURVHfOM"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "ticking, pattern, clock"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["a child speaks followed by a burp", "ticking of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["water flows followed by women screaming", "a vehicle engine accelerating then running on idle"], "sample_ids": ["w5W5Kqtc8E", "vYkA3cfXp5Q"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "an aircraft engine runs"], "sample_ids": ["vddP56-ogds", "yLCORCnd35Q"], "start_seconds": ["30", "0"], "properties": ["water, flow, laugh", "engine, aircraft, runs"], "captions_pred_video": [null, "a lufthansa airbus a380 landing at london's heathrow airport"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a train is moving and its wheels are squealing "], "question": "which entity is a moving object", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sxYkFKFIZD0", "zl9Dqx-j7q4"], "start_seconds": ["20", "6"], "properties": ["screech, man, door", "engine, laugh, loud"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a machine beeps continuously"], "sample_ids": ["zofjfKhqLk8", "y682ml90jGw"], "start_seconds": ["10", "11"], "properties": ["background, metal, clank", "beeps, machine, continuously"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a beeping sound is being made "], "question": "which machine beeps continuously", "label": 1}, {"captions": ["an engine starts and increases in power", "an airplane engine runs"], "sample_ids": ["zjTG0gaGCUI", "yVPZ2MNWpms"], "start_seconds": ["80", "0"], "properties": ["power, increase, engine", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "small dogs yip and bark sharply"], "sample_ids": ["vbZ-0lGPneg", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["a woman, a television program, a bird", "bark, yip, sharply"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "paper is crumpling consistently"], "sample_ids": ["slZLHwNbbt4", "v5cSxLaHADY"], "start_seconds": ["300", "0"], "properties": ["train, horn, sound", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a door opens and birds chirp", "a woman speaks as she rubs two objects together"], "sample_ids": ["yeFvk9x0wWI", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["door, open, birds", "two objects, woman, speak"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["frogs croak and vocalize", "frogs croak and vocalize"], "sample_ids": ["yswmmRZFItk", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["croak, vocalize, frog", "croak, vocalize, frog"], "captions_pred_video": ["a close up of a frog in the water", "a close up of a frog in the water"], "captions_pred_audio": ["a frog is croaking", "a frog is croaking"], "question": "which frog is croaking", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a female speaks softly as paper crinkles"], "sample_ids": ["w0xsN8X18Y", "xvDdE3zNf8Y"], "start_seconds": ["30", "120"], "properties": ["music, surface, rain", "a, female, speaks"], "captions_pred_video": [null, "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a woman speaks and crumples paper"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["vBslzh7saPw", "t25U-v4k4ts"], "start_seconds": ["90", "40"], "properties": ["engine, roar, louder", "a, chirps, bird"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and bees are buzzing"], "question": "which entity is quieter", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["yYEVLuqEytU", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["grunt, slurp, background", "engine revs, vehicle, people"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a car speeding up in the distance"], "sample_ids": ["s4Uz1Ffgo04", "u0TrcHhkPQ"], "start_seconds": ["100", "20"], "properties": ["roars, background, people speaking", "distance, car, speed"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a race car accelerates and revs its engine "], "question": "which car is speeding up in the distance", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "paper is crumpling consistently"], "sample_ids": ["xfudFO976zE", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["animal, bleats, cry", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and shaky", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a woman and man speak while food is frying", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zk-xJGQU8-4", "uZesmtKZGSw"], "start_seconds": ["130", "250"], "properties": ["food, man, woman", "men, talk, cars"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a man and woman speaking?", "label": 0}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "winds blows roughly as a vehicle races past"], "sample_ids": ["w9lpbUn0hPc", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["male, wind, rustling", "wind, blows, vehicle"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["x9JovgqUcs", "uYT5gxnyMWM"], "start_seconds": ["500", "50"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and typing on a computer keyboard?", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["y8WEcpOlT3I", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["wind, speak, buffeting", "People, motor, brakes"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car?", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a horn rings out as a machine runs by"], "sample_ids": ["sOa7g-44Dag", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["background, man, spray", "a, horn, run"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is about a machine running by?", "label": 1}, {"captions": ["someone snores nearby", "water splashes and a motorboat passes as people yell"], "sample_ids": ["spJCm8tD9Zo", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["someone snores, nearby, someone", "water, splashes, motorboat"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more active", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a woman speaks in a fast tone with a male"], "sample_ids": ["uYT5gxnyMWM", "sTpirNYo8vQ"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "a, tone, fast"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while a car is revving and accelerating "], "question": "which entity is more calm", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["v7jJS8aAyA", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["wind, blows, loudly", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["goats bleat and metal clings", "an infant crying frantically"], "sample_ids": ["tH17JPjDPnc", "zwOBqeFTgiU"], "start_seconds": ["260", "30"], "properties": ["bleat, metal, clings", "cry, infant, frantically"], "captions_pred_video": ["feed of the goats eating hay in the barn", "of the baby crying in the car seat"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a person is snoring while sleeping", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vJrjSeP17yE", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["a person is sleeping, snoring, person", "rustling, ducks, quack"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a duck quacks and a woman speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["a horse runs while two women talk", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sdvI1mHAsc", "su6FAOcOA8c"], "start_seconds": ["20", "4"], "properties": ["two women, horse, run", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a woman and man are speaking"], "sample_ids": ["tw76HGONaKg", "vbpKkWvfOu4"], "start_seconds": ["570", "560"], "properties": ["A, game, keyboard", "two people, speaking, woman, man"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a woman is speaking and a man is speaking"], "question": "which entity shows two people speaking", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "continuous snoring"], "sample_ids": ["sapQIQUhFc", "sLkeqCDJIyw"], "start_seconds": ["280", "120"], "properties": ["liquid, flow, distance", "loud, snoring, noise"], "captions_pred_video": [null, ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["electronic beeps occur in a short series", "some tunes played by whistling"], "sample_ids": ["y682ml90jGw", "u6BnG6YZqJ4"], "start_seconds": ["11", "0"], "properties": ["beeps, series, electronic", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a beeping sound is being made ", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["children speak and play together", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["yVVP8XvWJTo", "tdWhHV3X25Q"], "start_seconds": ["260", "60"], "properties": ["children, speak, play", "applause, audience, yells"], "captions_pred_video": ["footage of a playground at a school or daycare center", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["s4Uz1Ffgo04", "tDlysoZiA1I"], "start_seconds": ["100", "0"], "properties": ["roars, background, people speaking", "animal, grunts, chirps"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "birds are chirping and a rooster is crowing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a helicopter engine runs", "a vehicle engine runs while a siren and horn sound"], "sample_ids": ["t5ZbXbniOWk", "u--KhUW8l1Y"], "start_seconds": ["30", "0"], "properties": ["engine, helicopter, run", "engine, sound, horn"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "a firefighter spraying water from a fire hydrant at night"], "captions_pred_audio": ["a helicopter is flying overhead ", "a fire truck siren blares and a horn blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a man talks while metallic objects are rapped and steam is released"], "sample_ids": ["un9VQlzgZM", "vuUVPzd2FXw"], "start_seconds": ["5", "160"], "properties": ["females, talk, laugh", "a, steam, release"], "captions_pred_video": [null, "of the person cooking on the grill with a spatula"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking and dishes are clanging"], "question": "which entity is a man?", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vKrYfzleLB8", "vlS6YMeWAPo"], "start_seconds": ["110", "40"], "properties": ["a, ring, gunshots", "sheep, baa, birds"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wqZ135Ssz0", "zj2R0XoFr5k"], "start_seconds": ["60", "50"], "properties": ["two men, woman, birds", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about flying?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "wind blowing followed by a zoom"], "sample_ids": ["tQWGZLItBXk", "vr8ZXjEBhMQ"], "start_seconds": ["170", "150"], "properties": ["voice, music, whoosh", "wind, blow, zoom"], "captions_pred_video": ["worms revolution screenshots", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more like a natural phenomenon", "label": 1}, {"captions": ["paper folding and crinkling", "a man speaks while water drains"], "sample_ids": ["zPpG3RD8lSs", "vSeGhaZt-aI"], "start_seconds": ["20", "50"], "properties": ["paper, fold, crinkle", "water, drain, man"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video", "label": 1}, {"captions": ["a goat bleats as a person speaks", "water splashes as an animal walks through"], "sample_ids": ["tPJvjq9QePY", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["bleats, person, speak", "animal, water, splashes"], "captions_pred_video": ["a dog and a sheep in a barn", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby cries and a man speaks", "water splashes and gurgles as people speak"], "question": "which entity is a video of an animal walking through water?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "someone is typing on a computer keyboard"], "sample_ids": ["xhmRY9yhC7c", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["a, laugh, infant", "keyboard, type, computer"], "captions_pred_video": ["of a baby crying in a baby bouncer", "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby cries and a woman speaks", "a person is typing on a keyboard"], "question": "which is not a person", "label": 0}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a motorcycle engine works nearby"], "sample_ids": ["rwtmaKiCcQU", "tOSWIURC-4"], "start_seconds": ["30", "0"], "properties": ["nozzle, depressed, spray can", "engine, work, nearby"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", null], "captions_pred_audio": ["spraying and people speaking", "a lawn mower is running "], "question": "which entity is a machine", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["uZesmtKZGSw", "wSVhSdj0F0"], "start_seconds": ["250", "10"], "properties": ["men, talk, cars", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a car horn honks and keys jangle with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a car accelerates and wind blows"], "sample_ids": ["vf9xf3vMsGM", "u0TrcHhkPQ"], "start_seconds": ["540", "20"], "properties": ["A man speaks while turning a water faucet on.", "accelerates, wind, blows"], "captions_pred_video": ["of the person washing their hands under the faucet", null], "captions_pred_audio": ["a man is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks with water running", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["wTideSjRFS0", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["water, running, woman", "sound, chirp, buzz"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a bee on a purple thistle flower"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a bee buzzes and a woman speaks"], "question": "which entity has a woman speaking with water running?", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["xM4joTqDVp4", "vqZuVbG6-HI"], "start_seconds": ["160", "130"], "properties": ["background, chirp, birds", "background, male, female"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage is blurry because it's raining outside"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a lawn mower is running and men are speaking "], "question": "which entity has a male and female voice in the background?", "label": 1}, {"captions": ["a door slams shut roughly", "someone snores nearby"], "sample_ids": ["zkKdxzNC97Y", "spJCm8tD9Zo"], "start_seconds": ["27", "90"], "properties": ["a door, slams, shut", "someone snores, nearby, someone"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a door is opened and closed", "a person is snoring loudly"], "question": "which entity is more annoying", "label": 1}, {"captions": ["small dogs yip and bark sharply", "pigeons vocalize and birds chirp"], "sample_ids": ["v-wcQf4BDY0", "uiS58TNyUiw"], "start_seconds": ["120", "430"], "properties": ["bark, yip, sharply", "vocalize, bird, chirp"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "of the pigeon in the cage"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wSVhSdj0F0", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["horn honks, keys jingle, slam", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be in a car", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vbpKkWvfOu4", "sSMl2vc3ek"], "start_seconds": ["560", "20"], "properties": ["a, man, speaks", "loud, multiple, distance"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "birds chirp and objects are moved around"], "sample_ids": ["vK93VuO0yNc", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["male voice, bus, rumble", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks as several small engines run", "an infant crying as a woman laughs"], "sample_ids": ["u9A6VZQCZpU", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["a, man, talk", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a door opens and closes", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vBHyYJ8pL0", "xKB8O8LTs6s"], "start_seconds": ["2", "70"], "properties": ["open, close, door", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "someone snores nearby"], "sample_ids": ["sa6TLVbooCc", "spJCm8tD9Zo"], "start_seconds": ["240", "90"], "properties": ["people, laugh, child", "someone snores, nearby, someone"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["an animal quacks rapidly", "a toilet flushes and a female speaks"], "sample_ids": ["vh30P49Po6s", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["animal, quacks, rapidly", "female, flushes, toilet"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage is blurry and out of focus"], "captions_pred_audio": ["a duck is quacking loudly", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a music is played followed by a frog croaking and then music is played again"], "sample_ids": ["viuTg1M-dqg", "voJh2gJxXhA"], "start_seconds": ["30", "50"], "properties": ["two men, speak, follow", "music, frog, croak"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a frog on a black background with a red diamond in the center"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "music is playing and crickets are chirping "], "question": "which entity is a frog?", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "vehicles pass by on a roadway"], "sample_ids": ["tDlysoZiA1I", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["animal, grunts, chirps", "pass, vehicle, roadway"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a car is driving on the road "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a male speaks over some small clicks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uXxVebHsGZ8", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["male, clicks, speak", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "birds chirp and objects are moved around"], "sample_ids": ["sQGXqGcwOTc", "yPUYU6t3rwo"], "start_seconds": ["3", "370"], "properties": ["cling, speak, dishes", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a door opens and closes", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vBHyYJ8pL0", "tiDFTC-5vU"], "start_seconds": ["2", "30"], "properties": ["open, close, door", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xhmRY9yhC7c", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["a, laugh, infant", "music, gunfire, explosion"], "captions_pred_video": ["of a baby crying in a baby bouncer", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby cries and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["frogs croak and vocalize", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["yswmmRZFItk", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["croak, vocalize, frog", "a train, a horn, a bell"], "captions_pred_video": ["a close up of a frog in the water", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a frog is croaking", "a train blows its whistle and blows its horn "], "question": "which entity is a warning device", "label": 1}, {"captions": ["some men converse over an engine running", "water flows and trickles"], "sample_ids": ["sCiy7QS1U", "tB7hWb9gTuQ"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["sG7TyPnFDR0", "sYITalLZjj4"], "start_seconds": ["180", "30"], "properties": ["beeps, machine, smoke alarm", "water, rushes, background, birds"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "two ducks are swimming in the water near each other"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "wind blows and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a propeller rotates loudly and intensely"], "sample_ids": ["sU53zg9Jp7s", "ugHJF0hfYkg"], "start_seconds": ["380", "10"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "loud, intense, propeller"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a man speaks as a car is passing by"], "sample_ids": ["yRx9txMcBl0", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "a, car, pass"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a man speaks as a vehicle engine idles", "winds blows roughly as a vehicle races past"], "sample_ids": ["shmR4OZtzqA", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["man, engine, idle", "wind, blows, vehicle"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man speaks while a motor runs", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["uPDn2BFTHk", "uiS58TNyUiw"], "start_seconds": ["140", "430"], "properties": ["woman, laughs, speaks", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "pigeons vocalize and birds chirp"], "sample_ids": ["vmrxwuAMb2I", "uiS58TNyUiw"], "start_seconds": ["40", "430"], "properties": ["a dog, inhales, exhales", "vocalize, bird, chirp"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "of the pigeon in the cage"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["goats bleat and people speak", "wind blowing followed by a zoom"], "sample_ids": ["z5iUE5h0EPs", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["goats bleat, people speak, language", "wind, blow, zoom"], "captions_pred_video": ["of the goat in the barn", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a goat bleats and a man speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a frog croaks as other frogs croak in the background"], "sample_ids": ["tDlysoZiA1I", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["animal, grunt, chirp", "background, frog, croak"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a frog is croaking"], "question": "which entity is a solitary animal?", "label": 0}, {"captions": ["continuous snoring", "a person is burping while a girl speaks"], "sample_ids": ["sLkeqCDJIyw", "vdoxuJn9lTc"], "start_seconds": ["120", "40"], "properties": ["loud, snoring, noise", "person, burp, girl"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a person is snoring loudly", "a child speaks followed by a burp"], "question": "which noise is louder", "label": 0}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "water splashes as an animal walks through"], "sample_ids": ["xOZfdgAgJ9o", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["woman, whimpering, speaking", "animal, water, splashes"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "multiple beeps are followed by a squawk and a child speaking"], "sample_ids": ["sLUnaPT5gM8", "w34HjHr6gAY"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "beeps, squawk, child speaking"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a beep sounds followed by a child speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["ugHJF0hfYkg", "sjlVMgdGSK0"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "accelerates, vehicle, race car"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car accelerates and revs its engine "], "question": "which is a vehicle", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vKrYfzleLB8", "uYT5gxnyMWM"], "start_seconds": ["110", "50"], "properties": ["a, ring, gunshots", "female, spraying, scream"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person spraying and screaming?", "label": 1}, {"captions": ["a small engine idles continuously", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y5WII6cTH7k", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["engine, idle, continuously", "loud, multiple, distance"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", null], "captions_pred_audio": ["an engine is knocking and vibrating ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["goats bleat and people speak", "winds blows roughly as a vehicle races past"], "sample_ids": ["z5iUE5h0EPs", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["goats bleat, people speak, language", "wind, blows, vehicle"], "captions_pred_video": ["of the goat in the barn", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a goat bleats and a man speaks", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a man speaks, another man speaks, and a small bell dings"], "sample_ids": ["wEBlkGWVWwE", "t69a8aRKhmc"], "start_seconds": ["260", "30"], "properties": ["a, babble, woman", "a, b, c"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["people converse in the distance as a clock ticks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vZAw4apG0Es", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["people, clock, converse", "engine, idle, woman"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a telephone rings followed by a woman talking"], "sample_ids": ["w8uLijTqtlU", "tGcFnX0GHI"], "start_seconds": ["70", "0"], "properties": ["wind, microphone, noise", "ring, talk, woman"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a recording", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xO-Q2BlIIPU", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["two men, exclamation, speak", "engine, idle, woman"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["tapping occurs then a baby cries", "water is sprayed across a hard surface"], "sample_ids": ["wIJK3-5y0kA", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["a, cry, baby", "water, spray, surface"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a baby cries and a woman speaks", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yaln9y8I7ms", "w5W5Kqtc8E"], "start_seconds": ["230", "100"], "properties": ["female, flushes, toilet", "wind, blow, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a telephone rings followed by a woman talking"], "sample_ids": ["uEU-Hg5MTN8", "tGcFnX0GHI"], "start_seconds": ["27", "0"], "properties": ["a woman, laughs, animal", "ring, talk, woman"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "wind blows as people chatter quietly"], "sample_ids": ["w2JXXIAdUdg", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "wind, chatter, people"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage is blurry and out of focus"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person sniffs and sneezes", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uRlbY6aoBU", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["sneezes, person, sniffs", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a stream of water runs briefly"], "sample_ids": ["wz7N8YRy74I", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["rooster, crow, background, men", "stream, water, run"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["s3cTDAj31g", "zFjIWfSD-4"], "start_seconds": ["80", "410"], "properties": ["man, talk, woman", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man talking followed by a woman shouting?", "label": 0}, {"captions": ["music plays followed by gunshots and then an explosion", "water flows and trickles"], "sample_ids": ["xKB8O8LTs6s", "tB7hWb9gTuQ"], "start_seconds": ["70", "30"], "properties": ["music, gunshots, explosion", "water, flow, trickle"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "water is splashing and gurgling"], "question": "which entity is more calm", "label": 1}, {"captions": ["a man talks as several small engines run", "dishes cling together then a man begins to speak"], "sample_ids": ["u9A6VZQCZpU", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["a, man, talk", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["continuous sneezing together with speech", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["x4dZyf9Gbj0", "tdWhHV3X25Q"], "start_seconds": ["130", "60"], "properties": ["continuous, sneeze, speech", "applause, audience, yells"], "captions_pred_video": ["footage is blurry and out of focus", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a baby coos and fidgets as a lady speaks and laughs"], "sample_ids": ["wudZTNBtVqc", "uPDn2BFTHk"], "start_seconds": ["60", "140"], "properties": ["accelerates, engine, wind", "lady, laugh, baby"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a baby laughs and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a infant makes noise and is excited"], "sample_ids": ["shmR4OZtzqA", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "noise, excited, infant"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man speaks while a motor runs", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["an adult man speaks over glass clinking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["u6jIvCtKarQ", "tdWhHV3X25Q"], "start_seconds": ["70", "60"], "properties": ["a, man, speaks", "applause, audience, yells"], "captions_pred_video": ["footage of a person using a blender on a stove top", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["sa6TLVbooCc", "xjvTpk2Zpr8"], "start_seconds": ["240", "70"], "properties": ["people, laugh, child", "wind, blows, vehicle"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a duck quacks continuously"], "sample_ids": ["uWPRNLnpy7Y", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "quacks, continuously, duck"], "captions_pred_video": ["is taken from a car driving down the street", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "a propeller rotates loudly and intensely"], "sample_ids": ["wAAkbZToh8", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["burp, laugh, speak", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man burps and a woman speaks", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "an airplane engine runs"], "sample_ids": ["xvDdE3zNf8Y", "yVPZ2MNWpms"], "start_seconds": ["120", "0"], "properties": ["A, crumple, paper", "engine, airplane, runs"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman speaks and crumples paper", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a man speaks as a car is passing by"], "sample_ids": ["ziUT9IFTkjg", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["background, birds, rustling", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a car accelerates and wind blows"], "sample_ids": ["uC9dtII1KDI", "u0TrcHhkPQ"], "start_seconds": ["150", "20"], "properties": ["wind, gusts, distance", "accelerates, wind, blows"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", null], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is about a car?", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vMf1dLD6Sng", "zl9Dqx-j7q4"], "start_seconds": ["6", "6"], "properties": ["frog, bird, vocalize", "engine, laugh, loud"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a frog croaks loudly", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "birds chirp and objects are moved around"], "sample_ids": ["yeFvk9x0wWI", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["clack, bird, chirp", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a duck quacks loudly and continuously"], "sample_ids": ["w2M4i1mklOA", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "loud, continuous, quacks"], "captions_pred_video": ["footage of an antique clock", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["vzxHnu-SFEw", "uqFtmnhuqA8"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "a, b, c"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "a man speaks over intermittent keyboard taps"], "sample_ids": ["yYJksgsxx5U", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["audio, clicks, scraping", "audio, man, keyboard"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a machine beeps continuously"], "sample_ids": ["sWZzXuWYY", "y682ml90jGw"], "start_seconds": ["420", "11"], "properties": ["male, clanks, thumps", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a beeping sound is being made "], "question": "which machine beeps continuously", "label": 1}, {"captions": ["an airplane engine runs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yVPZ2MNWpms", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["engine, airplane, runs", "a woman, something, fried"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car is driving by on the road ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a man speaks as a motor runs in the background"], "sample_ids": ["wTjoRj1se3U", "xZepNM9qcRA"], "start_seconds": ["390", "30"], "properties": ["airplane, engine, spool", "background, motor, run"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["w5W5Kqtc8E", "ukg5L09Wpvo"], "start_seconds": ["100", "150"], "properties": ["water, splashes, motorboat", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ugHJF0hfYkg", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["engine, idle, continuously", "female, spraying, scream"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wvKpEYswXO0", "sSMl2vc3ek"], "start_seconds": ["150", "20"], "properties": ["plastic, tap, speak", "loud, multiple, distance"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["s4tUs779vBA", "y2bVZ7rz-5M"], "start_seconds": ["160", "280"], "properties": ["a, sound, stop", "motor noise, horn, siren"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["a vehicle engine runs as a siren and horn sound", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["u--KhUW8l1Y", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["sound, vehicle, horn", "clickety-clack, train, whistle"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["siJFXfGWgDk", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["man, woman, vehicle", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "an infant crying as a woman laughs"], "sample_ids": ["vXlk0lIQBFo", "xhmRY9yhC7c"], "start_seconds": ["470", "20"], "properties": ["wind, speak, vocalize", "a, laugh, infant"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a child speaks in closed space", "an engine runs loudly"], "sample_ids": ["yW6FWLSLkx4", "vqZuVbG6-HI"], "start_seconds": ["40", "130"], "properties": ["child, space, speak", "loud, engine, run"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["dogs barking and whimpering", "people speak in a closed space"], "sample_ids": ["tIY7qOV3rEM", "sTpirNYo8vQ"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "people, space, speak"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking while a car is revving and accelerating "], "question": "which entity is more passive", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "paper folding and crinkling"], "sample_ids": ["s4Uz1Ffgo04", "zPpG3RD8lSs"], "start_seconds": ["100", "20"], "properties": ["water, rushes, motorcycle", "paper, fold, crinkle"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "the wind blows and a mouse clicks "], "question": "which entity is stationary", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "dog barking and vehicle engine idling followed shortly by vehicle engine revving"], "sample_ids": ["vBHyYJ8pL0", "zY3icUyMdh8"], "start_seconds": ["2", "20"], "properties": ["noise, door, opening", "dog, bark, engine"], "captions_pred_video": [null, "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a car is driving and dogs are barking and squealing "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["the revving of an engine throttle followed by a man speaking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tezvROoo4bs", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["audio, throttle, speaking", "two men, woman, birds"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", null], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["an insect buzzes around continuously", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["v25l1jef3JY", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["buzzes, continuously, insect", "a woman, something, fried"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a woman speaks happily and an animal chirps"], "sample_ids": ["vimzuGQvdcU", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["a, man, yells", "a woman, chirps, animal"], "captions_pred_video": ["a group of people are rafting down a river", null], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vJvryTwuAV8", "uYT5gxnyMWM"], "start_seconds": ["16", "50"], "properties": ["audience, cheer, man", "a, scream, girl"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a consistent ticking pattern", "water pouring and bubbling"], "sample_ids": ["sCeWURVHfOM", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["ticking, pattern, clock", "water, bubbles, pouring"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["ticking of a clock", "water is running from a faucet"], "question": "which entity is more likely to be found in a kitchen", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vqZuVbG6-HI", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["background, male, female", "animal, grunts, snorts"], "captions_pred_video": ["footage is blurry because it's raining outside", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal grunts and snorts?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "an airplane engine runs"], "sample_ids": ["wz7N8YRy74I", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["rooster, crow, background, people", "engine, airplane, runs"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "wind blowing followed by a zoom"], "sample_ids": ["vzceMbklWc", "vr8ZXjEBhMQ"], "start_seconds": ["180", "150"], "properties": ["water, faucet, sink", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["water is running and a man is speaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "an infant crying as a woman laughs"], "sample_ids": ["s4Uz1Ffgo04", "xhmRY9yhC7c"], "start_seconds": ["100", "20"], "properties": ["water, rushes, vehicle", "a, laugh, infant"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a beep occurs briefly", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xtWeJ56-U-g", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["beep, occur, briefly", "three men, wind, flow"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["an airplane engine runs", "people applaud and hoot and chat quietly"], "sample_ids": ["yVPZ2MNWpms", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["engine, airplane, runs", "people, applaud, hoot"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "people are clapping and speaking with background noise "], "question": "which entity is a performance", "label": 1}, {"captions": ["a duck quacks several times", "someone is typing on a computer keyboard"], "sample_ids": ["vh30P49Po6s", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["quacks, duck, several", "keyboard, type, computer"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "how to make money on youtube in spanish"], "captions_pred_audio": ["a duck is quacking loudly", "a person is typing on a keyboard"], "question": "which is not a type of keyboard", "label": 0}, {"captions": ["scraping and female speech with distant music", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yHeVV-xeOxQ", "wz7N8YRy74I"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "rooster, crow, background, men"], "captions_pred_video": ["of a girl milking a goat's udder", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster crow in the background?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "water splashes and a door squeaks"], "sample_ids": ["wSVhSdj0F0", "sdXV-ylviw"], "start_seconds": ["10", "190"], "properties": ["horn honks, keys jingle, slam", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a dog barks and taps with background noise "], "question": "which entity has a door?", "label": 1}, {"captions": ["an animal quacks rapidly", "a woman talks while a baby cries and a man whispers"], "sample_ids": ["vh30P49Po6s", "smDKStoHBJo"], "start_seconds": ["30", "0"], "properties": ["animal, quacks, rapidly", "a, talk, baby, cry"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a duck is quacking loudly", "a baby is crying and a woman is speaking"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sG7TyPnFDR0", "sSMl2vc3ek"], "start_seconds": ["180", "20"], "properties": ["beeps, machine, smoke alarm", "loud, multiple, distance"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["scraping and female speech with distant music", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yHeVV-xeOxQ", "ukg5L09Wpvo"], "start_seconds": ["130", "150"], "properties": ["female, speech, music", "clickety-clack, train, whistle"], "captions_pred_video": ["of a girl milking a goat's udder", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a stream of water flows quickly", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wbHTKEJZyhc", "yDoT73BWsdA"], "start_seconds": ["20", "10"], "properties": ["stream, water, flow", "engine, revs, vehicle"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zofjfKhqLk8", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["background, metal, clings", "People, motor, brakes"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a saw running?", "label": 0}, {"captions": ["a man speaks as a car is passing by", "wind blowing followed by a zoom"], "sample_ids": ["sK4u5T8hW78", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["a, car, pass", "wind, blow, zoom"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a small engine idles continuously", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y5WII6cTH7k", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["engine, idle, continuously", "a woman, laughs, animal"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a woman speaks happily and an animal chirps", "people applaud and hoot and chat quietly"], "sample_ids": ["uWAAAL4CIoc", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["a woman, chirps, animal", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "an infant crying as a woman laughs"], "sample_ids": ["vs65y4qmyBE", "xhmRY9yhC7c"], "start_seconds": ["340", "20"], "properties": ["engine, run, man", "a, laugh, infant"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a infant makes noise and is excited"], "sample_ids": ["vqZuVbG6-HI", "wIJK3-5y0kA"], "start_seconds": ["130", "30"], "properties": ["background, male, female", "noise, excited, infant"], "captions_pred_video": ["footage is blurry because it's raining outside", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "several insects fly while two men talk"], "sample_ids": ["sTpirNYo8vQ", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["a, tone, fast", "several, fly, men"], "captions_pred_video": ["of a man taking a selfie on a bus", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a woman speaking in a fast tone with a male?", "label": 0}, {"captions": ["an engine idles quietly then gradually becomes louder", "wind blows as people chatter quietly"], "sample_ids": ["vbr9mHKc8WM", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["an engine is idling", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "a propeller rotates loudly and intensely"], "sample_ids": ["s4tUs779vBA", "ugHJF0hfYkg"], "start_seconds": ["160", "10"], "properties": ["a, sound, stop", "loud, intense, propeller"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sjlVMgdGSK0", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["car, revving, loudly", "People, motor, brakes"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which is not a vehicle", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["wy1eKjR7KC0", "yLy-WycbVVE"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "background, people, talk"], "captions_pred_video": ["two police officers riding motorcycles down the street", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity has more people talking", "label": 1}, {"captions": ["a child speaks in closed space", "water flows and trickles"], "sample_ids": ["yW6FWLSLkx4", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["child, space, speak", "water, flow, trickle"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a motorcycle engine works nearby"], "sample_ids": ["zCrAfDfv6-A", "tOSWIURC-4"], "start_seconds": ["30", "0"], "properties": ["person, mouse, click", "engine, work, nearby"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", null], "captions_pred_audio": ["a person whistles a song", "a lawn mower is running "], "question": "which entity is a person", "label": 0}, {"captions": ["a jet engine spools up and takes off", "a man speaks followed by another man speaking outside"], "sample_ids": ["vBslzh7saPw", "viuTg1M-dqg"], "start_seconds": ["90", "30"], "properties": ["engine, spools, takes", "two men, speak, follow"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a train horn blows as it passes by", "a steam engine runs and whistles as it passes by"], "sample_ids": ["zVacuqSb4LI", "se87d6yxEOA"], "start_seconds": ["30", "10"], "properties": ["horn, blows, train", "run, whistle, pass"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a train is moving and blowing its whistle "], "question": "which train is more likely to blow its horn", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "several insects fly while two men talk"], "sample_ids": ["sa6TLVbooCc", "s-T9OVOiMLo"], "start_seconds": ["240", "330"], "properties": ["people, laugh, child", "several, fly, men"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more people", "label": 0}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vBHyYJ8pL0", "xfaoyyzw2WU"], "start_seconds": ["2", "180"], "properties": ["noise, door, opening", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "an aircraft engine roars and a man speaks "], "question": "which noise is louder", "label": 1}, {"captions": ["a person speaks briefly", "a man speaks as a car is passing by"], "sample_ids": ["zOZleIRqZm4", "sK4u5T8hW78"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "a, car, pass"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a person talking briefly?", "label": 0}, {"captions": ["an animal bleats and cries out and metal bangs", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["xfudFO976zE", "vlS6YMeWAPo"], "start_seconds": ["0", "40"], "properties": ["animal, bleats, cry", "sheep, baa, birds"], "captions_pred_video": ["footage is blurry and shaky", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["a person is whistling", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sIXTftIuUgw", "sLUnaPT5gM8"], "start_seconds": ["90", "0"], "properties": ["person, whistling, person", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person whistling a song", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "water flows and trickles"], "sample_ids": ["sofxkNWaP0s", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "water, flow, trickle"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vzxHnu-SFEw", "wqZ135Ssz0"], "start_seconds": ["80", "60"], "properties": ["two objects, woman, speak", "two men, woman, birds"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["people speak softly as food sizzles", "a train horn blows as it passes by"], "sample_ids": ["yhQ2Lg-7qDY", "zVacuqSb4LI"], "start_seconds": ["130", "30"], "properties": ["food, sizzle, speak", "horn, blows, train"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a woman speaks and is crumpling paper", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xvDdE3zNf8Y", "xKB8O8LTs6s"], "start_seconds": ["120", "70"], "properties": ["A, crumple, paper", "music, gunfire, explosion"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman speaks and crumples paper", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a person is snoring while sleeping", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vJrjSeP17yE", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["a person is sleeping, snoring, person", "clickety-clack, train, whistle"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a person snoring loudly", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "water pouring and bubbling"], "sample_ids": ["zofjfKhqLk8", "uyRfq-jKPpo"], "start_seconds": ["10", "50"], "properties": ["background, metal, clings", "water, bubbles, pouring"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "people applaud and hoot and chat quietly"], "sample_ids": ["t97k0cejSQE", "wwyfGO2J4"], "start_seconds": ["250", "90"], "properties": ["bird, chirp, insect", "people, applaud, hoot"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a stream of water runs briefly"], "sample_ids": ["zj2R0XoFr5k", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["airplane, boy, fly", "stream, water, run"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "several insects fly while two men talk"], "sample_ids": ["w2M4i1mklOA", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["alarm, gears, turn", "several, fly, men"], "captions_pred_video": ["footage of an antique clock", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "wind blowing followed by a zoom"], "sample_ids": ["su6FAOcOA8c", "vr8ZXjEBhMQ"], "start_seconds": ["4", "150"], "properties": ["engine, idle, woman", "wind, blow, zoom"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a propeller moves loudly nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["ugHJF0hfYkg", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["loud, propeller, move", "people, applaud, hoot"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a weapon fires multiple times"], "sample_ids": ["ul60S8TXDA8", "sMC07Ucy7kg"], "start_seconds": ["60", "10"], "properties": ["sound, distance, bell", "weapon, fire, multiple"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage is from a car's point of view"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["birds chirp as a bell rings", "goats bleat and people speak"], "sample_ids": ["ziUT9IFTkjg", "z5iUE5h0EPs"], "start_seconds": ["10", "30"], "properties": ["chirp, bell, ring", "goats bleat, people speak, language"], "captions_pred_video": [null, "of the goat in the barn"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a goat bleats and a man speaks"], "question": "which entity is speaking a language", "label": 1}, {"captions": ["paper folding and crinkling", "a person is snoring while sleeping"], "sample_ids": ["zPpG3RD8lSs", "vJrjSeP17yE"], "start_seconds": ["20", "40"], "properties": ["paper, fold, crinkle", "a person is sleeping, snoring, person"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a woman speaks with water running", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wTideSjRFS0", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["water, running, woman", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["uKCSGgof8gI", "y8WEcpOlT3I"], "start_seconds": ["12", "40"], "properties": ["chirps, distance, signal", "harsh, wind, blows"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["s4Uz1Ffgo04", "su6FAOcOA8c"], "start_seconds": ["100", "4"], "properties": ["water, rushes, vehicle", "engine, idle, woman"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "water flows and trickles"], "sample_ids": ["sfAvvZwdLCY", "tB7hWb9gTuQ"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "water, flow, trickle"], "captions_pred_video": ["footage of the toilet in the bathroom", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a toilet is flushed", "water is splashing and gurgling"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a person is whistling", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sIXTftIuUgw", "tDVADusiIoc"], "start_seconds": ["90", "60"], "properties": ["person, whistling, person", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person whistling a song", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a clock ticktocks"], "sample_ids": ["wDVMhEdTiVw", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["gun, shoot, water", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a blurry image of trees and water in the forest", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "a clock ticktocks"], "sample_ids": ["skd2PphS6oI", "v-g-j2uTByM"], "start_seconds": ["190", "30"], "properties": ["ring, bird, vocalize", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zuua6-5goWw", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "engine, accelerate, idle"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "an engine is idling"], "question": "which is quieter", "label": 1}, {"captions": ["a man speaks as a machine runs", "an airplane engine runs"], "sample_ids": ["vD6lYD1l0BY", "yVPZ2MNWpms"], "start_seconds": ["330", "0"], "properties": ["a, machine, run", "engine, airplane, runs"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a car is driving by on the road "], "question": "which machine runs", "label": 1}, {"captions": ["a man is filing a hard object", "an insect buzzes around continuously"], "sample_ids": ["vveS8HT7Uog", "v25l1jef3JY"], "start_seconds": ["100", "0"], "properties": ["a man, hard, object", "buzzes, continuously, insect"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a door opens and closes", "an insect buzzes around continuously"], "sample_ids": ["vBHyYJ8pL0", "v25l1jef3JY"], "start_seconds": ["2", "0"], "properties": ["open, close, door", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a fly is buzzing around a microphone "], "question": "which entity is more likely to be a nuisance", "label": 1}, {"captions": ["water flows as men speak and yell", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vJ7JPEFhyLA", "sSMl2vc3ek"], "start_seconds": ["16", "20"], "properties": ["water, flow, men", "loud, multiple, distance"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "paper is crumpling consistently"], "sample_ids": ["xjvTpk2Zpr8", "v5cSxLaHADY"], "start_seconds": ["70", "0"], "properties": ["engine, run, wind", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a jet engine roars and wind blows ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "several insects fly while two men talk"], "sample_ids": ["tQWGZLItBXk", "s-T9OVOiMLo"], "start_seconds": ["170", "330"], "properties": ["voice, music, whoosh", "several, fly, men"], "captions_pred_video": ["worms revolution screenshots", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sZPuqDgX2V0", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, intercom", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "an engine is idling"], "question": "which entity shows a vehicle engine accelerating then running on idle?", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["wSVhSdj0F0", "wnpJndXuxLc"], "start_seconds": ["10", "50"], "properties": ["beep, clang, footsteps", "blows, vehicle, train"], "captions_pred_video": [null, "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is a train?", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a infant makes noise and is excited"], "sample_ids": ["yFB25fqfU8I", "wIJK3-5y0kA"], "start_seconds": ["300", "30"], "properties": ["wave, crash, shoreline", "noise, excited, infant"], "captions_pred_video": ["footage of a person surfing in the ocean", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a infant makes noise and is excited", "a infant makes noise and is excited"], "sample_ids": ["wIJK3-5y0kA", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["noise, excited, infant", "noise, excited, infant"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries and a woman speaks"], "question": "which infant is making noise and is excited", "label": 1}, {"captions": ["water flows as men speak and yell", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vJ7JPEFhyLA", "vYkA3cfXp5Q"], "start_seconds": ["16", "30"], "properties": ["water, flow, men", "engine, accelerate, idle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a dog barks and whimpers", "winds blows roughly as a vehicle races past"], "sample_ids": ["sShpyu2l4YQ", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["barks, whimpers, dog", "wind, blows, vehicle"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a dog is barking and growling", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a man speaks followed by another man speaking outside"], "sample_ids": ["vf44CgrjT0A", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "two men, speak, follow"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a loud burp", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uZesmtKZGSw", "vfYTJq7nU"], "start_seconds": ["250", "130"], "properties": ["men, talk, cars", "rustling, ducks, quack"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yaln9y8I7ms", "vbZ-0lGPneg"], "start_seconds": ["230", "30"], "properties": ["female, flushes, toilet", "a woman, a television program, a bird"], "captions_pred_video": ["footage is blurry and out of focus", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "vehicles pass by on a roadway"], "sample_ids": ["su6FAOcOA8c", "tgbONvsP47Y"], "start_seconds": ["4", "0"], "properties": ["engine, idle, woman", "pass, vehicle, roadway"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an engine runs and a man speaks", "a car speeds away loudly followed by a car revving loudly and driving away while outside"], "sample_ids": ["yT5WfYMRr-U", "sjlVMgdGSK0"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "car, revving, loudly"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a car accelerates and revs its engine "], "question": "which entity is revving loudly", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "some tunes played by whistling"], "sample_ids": ["wyllXV6PjKo", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["a baby, a woman, a man", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman speaks and a baby cries", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vbr9mHKc8WM", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["noise, loudness, engine", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine is idling", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man woman speak while crickets sing", "people applaud and hoot and chat quietly"], "sample_ids": ["zTLVJCo4WEE", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["a, crickets, sing", "people, applaud, hoot"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a man speaks followed by another man speaking outside"], "sample_ids": ["vimzuGQvdcU", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "two men, speak, follow"], "captions_pred_video": ["a group of people are rafting down a river", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a dog barks and whimpers"], "sample_ids": ["sQwlkXjQabo", "sShpyu2l4YQ"], "start_seconds": ["10", "0"], "properties": ["liquid, surface, spray", "barks, whimpers, dog"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "the puppies are playing with a toy"], "captions_pred_audio": ["spraying followed by silence", "a dog is barking and growling"], "question": "which entity is a dog", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wjsXBsc7M40", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "a woman, something, fried"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a clock ticktocks in wind", "a man speaks as a car is passing by"], "sample_ids": ["yVumC9TGknc", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, wind", "a, car, pass"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "water flows and trickles"], "sample_ids": ["sxYkFKFIZD0", "tB7hWb9gTuQ"], "start_seconds": ["20", "30"], "properties": ["screech, man, door", "water, flow, trickle"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "wind blowing followed by a zoom"], "sample_ids": ["yYEVLuqEytU", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["animal, pig, background", "wind, blow, zoom"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["several sheep bleat and a man speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "females talk and laugh over gusting wind"], "sample_ids": ["w2bYrCVLT60", "un9VQlzgZM"], "start_seconds": ["120", "5"], "properties": ["ducks, speak, quack", "females, talk, laugh"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is more social", "label": 1}, {"captions": ["a baby laugh at a sputter", "a car accelerates and wind blows"], "sample_ids": ["sLUnaPT5gM8", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["laugh, sputter, baby", "accelerates, wind, blows"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a man speaks while turning a water faucet on"], "sample_ids": ["v-wcQf4BDY0", "vf9xf3vMsGM"], "start_seconds": ["120", "540"], "properties": ["bark, yip, sharply", "A man speaks while turning a water faucet on."], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking while water is running in the background"], "question": "which entity is a human", "label": 1}, {"captions": ["a machine runs continuously", "a machine beeps continuously"], "sample_ids": ["wdXV3Pv0jiY", "y682ml90jGw"], "start_seconds": ["11", "11"], "properties": ["machine, running, continuously", "beeps, machine, continuously"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a beeping sound is being made "], "question": "which machine beeps continuously", "label": 1}, {"captions": ["water flows followed by women screaming", "wind blows as people chatter quietly"], "sample_ids": ["w5W5Kqtc8E", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sjlVMgdGSK0", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["car, revving, loudly", "engine, revs, vehicle"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which vehicle is revving loudly", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a woman speaks happily and an animal chirps"], "sample_ids": ["uPDn2BFTHk", "uWAAAL4CIoc"], "start_seconds": ["140", "0"], "properties": ["lady, laugh, baby", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a dog is barking "], "question": "which entity has a baby?", "label": 0}, {"captions": ["a woman sneezes then speaks", "several ducks quack and cocks crow far away"], "sample_ids": ["x4dZyf9Gbj0", "sNB8zxXneIM"], "start_seconds": ["130", "20"], "properties": ["sneezes, speaks, woman", "several, quack, cocks"], "captions_pred_video": ["footage is blurry and out of focus", "a group of geese in a cage"], "captions_pred_audio": ["a woman sneezes and speaks", "a rooster is crowing and wind is blowing "], "question": "which entity is a bird", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a telephone rings followed by a woman talking"], "sample_ids": ["vdoxuJn9lTc", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["burp, loud, girl", "ring, talk, woman"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a stream of water runs briefly", "pigeons vocalize and birds chirp"], "sample_ids": ["x-PeY8Yb8M4", "uiS58TNyUiw"], "start_seconds": ["300", "430"], "properties": ["stream, water, run", "vocalize, bird, chirp"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "of the pigeon in the cage"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a stream of water?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "some men converse over an engine running"], "sample_ids": ["xjhAnI2q6hM", "sCiy7QS1U"], "start_seconds": ["6", "300"], "properties": ["engine revs, vehicle, people", "men, converse, engine"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows people talking to each other?", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a man speaks followed by another man speaking outside"], "sample_ids": ["zOZleIRqZm4", "viuTg1M-dqg"], "start_seconds": ["80", "30"], "properties": ["rustling, leaves, person", "two men, speak, follow"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yZmhM1HcsyE", "tDVADusiIoc"], "start_seconds": ["4", "60"], "properties": ["engine, roar, water", "water, radio, man"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sfAvvZwdLCY", "yDoT73BWsdA"], "start_seconds": ["20", "10"], "properties": ["water drains, flushes, water", "engine, revs, vehicle"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a toilet is flushed", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man talks while vehicles pass by", "several insects fly while two men talk"], "sample_ids": ["sK4u5T8hW78", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["a, man, talk", "several, fly, men"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more vehicles passing by", "label": 0}, {"captions": ["a child speaks in closed space", "paper is crumpling consistently"], "sample_ids": ["yW6FWLSLkx4", "v5cSxLaHADY"], "start_seconds": ["40", "0"], "properties": ["child, space, speak", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["sNB8zxXneIM", "yLy-WycbVVE"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "background, people, talk"], "captions_pred_video": ["a group of geese in a cage", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["a infant makes noise and is excited", "someone is typing on a computer keyboard"], "sample_ids": ["wIJK3-5y0kA", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["noise, excited, infant", "keyboard, type, computer"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby cries and a woman speaks", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["an engine runs and a man speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yT5WfYMRr-U", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["engine, run, man", "engine, idle, woman"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity has a man speaking while an engine runs?", "label": 0}, {"captions": ["a woman speaks with water running", "paper is crumpling consistently"], "sample_ids": ["wTideSjRFS0", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["water, running, woman", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zFjIWfSD-4", "uYT5gxnyMWM"], "start_seconds": ["410", "50"], "properties": ["People, motor, brakes", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "multiple birds vocalize and wind blows"], "sample_ids": ["zk-xJGQU8-4", "uoGVs9yUqY4"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "multiple, vocalize, wind"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "for how to make a wooden shed door youtube"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "birds are chirping and flapping their wings with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vf9xf3vMsGM", "tiDFTC-5vU"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "male, duck, laugh"], "captions_pred_video": ["of the person washing their hands under the faucet", null], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man is speaking and ducks are quacking"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a man speaks over intermittent keyboard taps", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tw76HGONaKg", "tiDFTC-5vU"], "start_seconds": ["570", "30"], "properties": ["audio, man, keyboard", "male, duck, laugh"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck in it?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "small dogs yip and bark sharply"], "sample_ids": ["x9JovgqUcs", "v-wcQf4BDY0"], "start_seconds": ["500", "120"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a duck quacks continuously"], "sample_ids": ["w5W5Kqtc8E", "vh30P49Po6s"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "someone whistles a tune"], "sample_ids": ["v0x1odnXtP0", "sIXTftIuUgw"], "start_seconds": ["210", "90"], "properties": ["keyboard, type, computer", "someone, tune, whistle"], "captions_pred_video": ["how to make money on youtube in spanish", null], "captions_pred_audio": ["a person is typing on a keyboard", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a car accelerates and wind blows"], "sample_ids": ["tOSWIURC-4", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["engine, work, nearby", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "someone is typing on a computer keyboard"], "sample_ids": ["zofjfKhqLk8", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["background, metal, clank", "keyboard, type, computer"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "how to make money on youtube in spanish"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a person is typing on a keyboard"], "question": "which is not a machine", "label": 1}, {"captions": ["a clock ticktocks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["v-g-j2uTByM", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["ticktocks, clock, ticktocks", "men, talk, cars"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "someone is typing on a computer keyboard"], "sample_ids": ["wqZ135Ssz0", "v0x1odnXtP0"], "start_seconds": ["60", "210"], "properties": ["man, woman, squawks", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a person is typing on a keyboard"], "question": "which is not a type of keyboard", "label": 0}, {"captions": ["someone is burping continuously", "a duck quacks continuously"], "sample_ids": ["y636gklDioE", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "quacks, continuously, duck"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person burps loudly several times", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["goats bleat and people speak", "a woman speaks as she rubs two objects together"], "sample_ids": ["z5iUE5h0EPs", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["goats bleat, people speak, language", "two objects, woman, speak"], "captions_pred_video": ["of the goat in the barn", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a goat bleats and a man speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "dishes cling together then a man begins to speak"], "sample_ids": ["wRBHTgrbiwg", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["bird, owl, speak", "cling, speak, dishes"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking briefly?", "label": 0}, {"captions": ["three men talk while wind blows and some liquid flows", "a car speeding up in the distance"], "sample_ids": ["vJ7JPEFhyLA", "u0TrcHhkPQ"], "start_seconds": ["16", "20"], "properties": ["three men, wind, flow", "distance, car, speed"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["continuous snoring", "women speak as water runs briefly, children call out, and a man speaks"], "sample_ids": ["sLkeqCDJIyw", "uRExseg-0XI"], "start_seconds": ["120", "210"], "properties": ["loud, snoring, noise", "woman, man, water"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while water is running and birds are chirping "], "question": "which entity is quieter", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "an engine runs loudly"], "sample_ids": ["xyL9F5VrjkE", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["engine, run, wind", "loud, engine, run"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage is blurry because it's raining outside"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a lawn mower is running and men are speaking "], "question": "which entity is running", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["w2M4i1mklOA", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["loud, chime, bell", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of an antique clock", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["rustling with distant murmuring", "a stream of water runs briefly"], "sample_ids": ["wnNNcxAPwGQ", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["sound, distance, rustling", "stream, water, run"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["s4Uz1Ffgo04", "zj2R0XoFr5k"], "start_seconds": ["100", "50"], "properties": ["water, rushes, vehicle", "airplane, boy, fly"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["uKCSGgof8gI", "siJFXfGWgDk"], "start_seconds": ["12", "50"], "properties": ["chirps, distance, signal", "man, woman, vehicle"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "someone snores nearby"], "sample_ids": ["yLy-WycbVVE", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["background, people, talk", "someone snores, nearby, someone"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a person is snoring loudly"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "water flows as men speak and yell"], "sample_ids": ["slZLHwNbbt4", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["clap, distance, horn", "water, flow, men"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "wind blows in gusts as a woman speaks in the distance"], "sample_ids": ["x6ijhqRY38s", "uC9dtII1KDI"], "start_seconds": ["250", "150"], "properties": ["bowl, silverware, man", "wind, gusts, distance"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a person riding a horse in a riding arena"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a woman is speaking with wind noise and breathing in the background "], "question": "which entity is more likely to be in a bowl", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a clock ticktocks"], "sample_ids": ["zkKdxzNC97Y", "v-g-j2uTByM"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a door is opened and closed", "a clock is ticking loudly"], "question": "which entity is silent", "label": 0}, {"captions": ["a large bell chimes back and forth loudly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["w2M4i1mklOA", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["loud, chime, bell", "a woman, something, fried"], "captions_pred_video": ["footage of an antique clock", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a person sniffles and sneezes", "paper is crumpling consistently"], "sample_ids": ["uRlbY6aoBU", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["sneezes, sniffles, person", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is sneezing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zkKdxzNC97Y", "vbZ-0lGPneg"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "a woman, a television program, a bird"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking and a dog is whimpering"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["continuous snoring", "a clicking followed by some people laughing and a kid speaking"], "sample_ids": ["sLkeqCDJIyw", "vz8868znkVQ"], "start_seconds": ["120", "60"], "properties": ["loud, snoring, noise", "audio, click, kid speaking"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "a video of a plane flying over a cloudy sky"], "captions_pred_audio": ["a person is snoring loudly", "a baby is laughing and breathing with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "water flows as men speak and yell"], "sample_ids": ["yJ0TePmaOo", "vJ7JPEFhyLA"], "start_seconds": ["390", "16"], "properties": ["two hard objects, man, speak", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 1}, {"captions": ["a toilet flushes and water drains", "some men converse over an engine running"], "sample_ids": ["sfAvvZwdLCY", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["water drains, flushes, water", "men, converse, engine"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying then a woman speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["ukxt9I7eMMg", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["food, woman, speak", "cling, speak, dishes"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "a baby cries and a woman speaks"], "sample_ids": ["vddP56-ogds", "tMbMDvT50j8"], "start_seconds": ["30", "12"], "properties": ["liquid, laughs, man", "a, cry, woman"], "captions_pred_video": [null, "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a baby cries and a woman speaks"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a telephone rings followed by a woman talking"], "sample_ids": ["vh30P49Po6s", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["loud, continuous, quacks", "ring, talk, woman"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a dial tone sounds followed by a woman speaking"], "question": "which entity is quieter", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xyx6eNVEYRY", "su6FAOcOA8c"], "start_seconds": ["380", "4"], "properties": ["loud, engine, muffles", "engine, idle, woman"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a woman is speaking and a subway train is moving "], "question": "which engine is quieter", "label": 1}, {"captions": ["a man speaks as a car is passing by", "loud ringing of a telephone stops followed by a man speaking and a digital beep"], "sample_ids": ["sK4u5T8hW78", "uzQnlJXBbOM"], "start_seconds": ["30", "50"], "properties": ["a, car, pass", "ringing, beep, stop"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of a person using a cell phone on a table"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a telephone rings and a man speaks"], "question": "which entity is about a car passing by?", "label": 0}, {"captions": ["people speak softly as food sizzles", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["yhQ2Lg-7qDY", "x9JovgqUcs"], "start_seconds": ["130", "500"], "properties": ["food, sizzle, speak", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a horn rings out as a machine runs by"], "sample_ids": ["s4Uz1Ffgo04", "slZLHwNbbt4"], "start_seconds": ["100", "300"], "properties": ["roars, background, people speaking", "a, horn, run"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is quieter", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a horn rings out as a machine runs by"], "sample_ids": ["wnpJndXuxLc", "slZLHwNbbt4"], "start_seconds": ["50", "300"], "properties": ["beeps, loud, whistle", "a, horn, run"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vW4x7S1VfQc", "y8WEcpOlT3I"], "start_seconds": ["150", "40"], "properties": ["clacking, oil, woman", "harsh, wind, blows"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "on how to use a sewing machine youtube"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking to another man?", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w34HjHr6gAY", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["beeps, hit, woman", "music, gunfire, explosion"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zofjfKhqLk8", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["background, metal, clings", "engine, revs, vehicle"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["food is frying and sizzles", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zNRChLjqcU", "y8WEcpOlT3I"], "start_seconds": ["220", "40"], "properties": ["food is frying, sizzles, food", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking with wind noise in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yZp6xizR0yU", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a woman is speaking and a dog is whimpering"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["male speech with light ticking", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xO-Q2BlIIPU", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["male, speech, ticking", "water, radio, man"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["t25U-v4k4ts", "tIY7qOV3rEM"], "start_seconds": ["40", "0"], "properties": ["a, chirps, bird", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a dog is barking and a cat is meowing"], "question": "which entity has more animals", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "an infant crying as a woman laughs"], "sample_ids": ["vYkA3cfXp5Q", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["speed, idle, accelerate", "a, laugh, infant"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["an engine is idling", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a man speaks as a car is passing by"], "sample_ids": ["sHbXC6na9hg", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "a, car, pass"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a person cutting wood?", "label": 0}, {"captions": ["an engine works in idle nearby followed by a man talking", "a man speaks as a car is passing by"], "sample_ids": ["wqADXCzngMw", "sK4u5T8hW78"], "start_seconds": ["340", "30"], "properties": ["engine, idle, man", "a, car, pass"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a helicopter engine runs", "women speak as water runs briefly, children call out, and a man speaks"], "sample_ids": ["t5ZbXbniOWk", "uRExseg-0XI"], "start_seconds": ["30", "210"], "properties": ["engine, helicopter, run", "woman, man, water"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while water is running and birds are chirping "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["food is frying then a woman speaks", "a child speaks in closed space"], "sample_ids": ["ukxt9I7eMMg", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["food, woman, speak", "child, space, speak"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child speaking in a closed space?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a mechanical buzzing getting louder"], "sample_ids": ["v0x1odnXtP0", "sEprKHm8Sj8"], "start_seconds": ["210", "90"], "properties": ["keyboard, type, computer", "noise, loud, buzzing"], "captions_pred_video": ["how to make money on youtube in spanish", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a person is typing on a keyboard", "a race car accelerates and revs its engine "], "question": "which is a noise", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zFjIWfSD-4", "wz7N8YRy74I"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "paper folding and crinkling"], "sample_ids": ["x6ijhqRY38s", "zPpG3RD8lSs"], "start_seconds": ["250", "20"], "properties": ["bowl, silverware, man", "paper, fold, crinkle"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "the wind blows and a mouse clicks "], "question": "which is not a person", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wyllXV6PjKo", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["a kid, talk, cry", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["someone snores nearby", "a crowd yells, reacts and applauds"], "sample_ids": ["spJCm8tD9Zo", "wztCSUxOf8"], "start_seconds": ["90", "130"], "properties": ["someone snores, nearby, someone", "a crowd, yells, applauds"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a baby laugh at a sputter"], "sample_ids": ["vSeGhaZt-aI", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, run", "laugh, sputter, baby"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is a baby?", "label": 1}, {"captions": ["a person is whistling a tune", "a stream of water flows as people talk and wind blows"], "sample_ids": ["scYRUkrFLiQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, tune, whistle", "stream, water, flow"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane engine spools and people speak", "wind blowing followed by a zoom"], "sample_ids": ["wTjoRj1se3U", "vr8ZXjEBhMQ"], "start_seconds": ["390", "150"], "properties": ["airplane, engine, spool", "wind, blow, zoom"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a jet engine is running and people are talking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uC9dtII1KDI", "wz7N8YRy74I"], "start_seconds": ["150", "30"], "properties": ["wind, gusts, distance", "rooster, crow, background, men"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a frog vocalizes as birds chirp"], "sample_ids": ["xyL9F5VrjkE", "wqUmIEzuNz4"], "start_seconds": ["20", "30"], "properties": ["engine, run, wind", "frog, bird, vocalize"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "a frog sitting in the grass on a sunny day"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a cat meows and rustles"], "question": "which entity is not a vehicle", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "birds chirp and objects are moved around"], "sample_ids": ["wvKpEYswXO0", "yPUYU6t3rwo"], "start_seconds": ["150", "370"], "properties": ["water, tap, run", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "insects buzz and a man speaks"], "question": "which entity is about moving objects around?", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "plastic is tapped on while someone speaks"], "sample_ids": ["uPDn2BFTHk", "wvKpEYswXO0"], "start_seconds": ["140", "150"], "properties": ["woman, laughs, speaks", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a man talks as several small engines run", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["u9A6VZQCZpU", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["a, man, talk", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "wind blowing followed by a zoom"], "sample_ids": ["wRV8yMk886E", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["liquid, spray, nozzle", "wind, blow, zoom"], "captions_pred_video": ["two cars are parked in a parking lot at night", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man speaks followed by a loud burst", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["people speak then an engine runs", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uMTTDZ2mb4", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["engine, run, people", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a man speaks as a car is passing by"], "sample_ids": ["zofjfKhqLk8", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "a, car, pass"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an engine runs and wind blows", "a dark barks and whimpers"], "sample_ids": ["vs65y4qmyBE", "sYj4hpDUZDQ"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "barks, whimpers, dark"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a brown and white dog standing in front of a wall with its mouth open"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a dog barks and a cat meows"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "an engine runs loudly"], "sample_ids": ["shmR4OZtzqA", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["man, engine, idle", "loud, engine, run"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man speaks while a motor runs", "a lawn mower is running and men are speaking "], "question": "which engine is running loudly", "label": 1}, {"captions": ["speaking following by laughing and clapping", "an insect buzzes around continuously"], "sample_ids": ["u2f5NpsoHBg", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["person, laugh, clap", "buzzes, continuously, insect"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a fly is buzzing around a microphone "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a child yells and another yells", "a man speaks as a motor runs in the background"], "sample_ids": ["vMDHu7Lxcgw", "xZepNM9qcRA"], "start_seconds": ["410", "30"], "properties": ["two, yell, child", "background, motor, run"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a woman and man are speaking", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["vbpKkWvfOu4", "siJFXfGWgDk"], "start_seconds": ["560", "50"], "properties": ["two people, speaking, woman, man", "man, woman, vehicle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking and birds are chirping in the background "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "wind blows as people chatter quietly"], "sample_ids": ["skd2PphS6oI", "xBxDz0CFVn0"], "start_seconds": ["190", "30"], "properties": ["ring, bird, vocalize", "wind, chatter, people"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage is blurry and out of focus"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a kid speaks followed by music playing"], "sample_ids": ["xC8kbrKJmco", "tQWGZLItBXk"], "start_seconds": ["0", "170"], "properties": ["background, goat, scream", "music, kid, speak"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["a goat is bleating ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a door slams shut roughly", "a man speaks as a car is passing by"], "sample_ids": ["zkKdxzNC97Y", "sK4u5T8hW78"], "start_seconds": ["27", "30"], "properties": ["a door, slams, shut", "a, car, pass"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a beep repeats multiple times", "a man speaks with another voice speaking in the background"], "sample_ids": ["y682ml90jGw", "u21-Z5gJCB8"], "start_seconds": ["11", "30"], "properties": ["beep, repeat, multiple", "background, voice, man"], "captions_pred_video": [null, "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a single voice speaking in the background?", "label": 0}, {"captions": ["a motorcycle engine is idling", "an airplane engine spools and people speak"], "sample_ids": ["vZAqdHZ81yA", "wTjoRj1se3U"], "start_seconds": ["180", "390"], "properties": ["engine, motorcycle, idling", "airplane, engine, spool"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["an engine is idling loudly", "a jet engine is running and people are talking"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a person sniffs and sneezes", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["uRlbY6aoBU", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["sneezes, person, sniffs", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a person speaking over a radio?", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "paper folding and crinkling"], "sample_ids": ["xKB8O8LTs6s", "zPpG3RD8lSs"], "start_seconds": ["70", "20"], "properties": ["music, gunfire, explosion", "paper, fold, crinkle"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "the wind blows and a mouse clicks "], "question": "which entity is more likely to be a movie", "label": 0}, {"captions": ["a drill runs and two people laugh", "someone is typing on a computer keyboard"], "sample_ids": ["tEE3MpBt1sg", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["two people, laugh, drill", "keyboard, type, computer"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "how to make money on youtube in spanish"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a person is typing on a keyboard"], "question": "which is not a drill", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zTLVJCo4WEE", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "rooster, crow, background, men"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["water splashes and a door squeaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["sdXV-ylviw", "vzxHnu-SFEw"], "start_seconds": ["190", "80"], "properties": ["sound, splash, door", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity has a door?", "label": 0}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "small dogs yip and bark sharply"], "sample_ids": ["tDVADusiIoc", "v-wcQf4BDY0"], "start_seconds": ["60", "120"], "properties": ["water, radio, man", "bark, yip, sharply"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a drill runs and two people laugh", "water flows as men speak and yell"], "sample_ids": ["tEE3MpBt1sg", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["two people, laugh, drill", "water, flow, men"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a drill running and two people laughing?", "label": 0}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a person is burping while a girl speaks"], "sample_ids": ["tDVADusiIoc", "vdoxuJn9lTc"], "start_seconds": ["60", "40"], "properties": ["wind, radio, waves", "person, burp, girl"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a child speaks followed by a burp"], "question": "which entity is a person speaking over a radio?", "label": 0}, {"captions": ["continuous snoring", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["sLkeqCDJIyw", "ziUT9IFTkjg"], "start_seconds": ["120", "10"], "properties": ["loud, snoring, noise", "background, birds, rustling"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "birds are chirping and a chime is ringing "], "question": "which noise is quieter", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["w34HjHr6gAY", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["beeps, hit, woman", "People, motor, brakes"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vYkA3cfXp5Q", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["engine, accelerate, idle", "music, gunfire, explosion"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an engine is idling", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "race cars go around a track as a man commentates"], "sample_ids": ["y8WEcpOlT3I", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["harsh, wind, blows", "car, track, man"], "captions_pred_video": ["on how to use a sewing machine youtube", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars going around a track?", "label": 1}, {"captions": ["a person is snoring while sleeping", "vehicles pass by on a roadway"], "sample_ids": ["vJrjSeP17yE", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "pass, vehicle, roadway"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains", "someone is typing on a computer keyboard"], "sample_ids": ["sfAvvZwdLCY", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["water drains, flushes, water", "keyboard, type, computer"], "captions_pred_video": ["footage of the toilet in the bathroom", "how to make money on youtube in spanish"], "captions_pred_audio": ["a toilet is flushed", "a person is typing on a keyboard"], "question": "which object is used to type on a computer", "label": 1}, {"captions": ["a man speaks as a machine runs", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vD6lYD1l0BY", "w5W5Kqtc8E"], "start_seconds": ["330", "100"], "properties": ["a, machine, run", "wind, blow, vehicle"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["a baby cries and wails as an adult female speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["zliInBdC98Y", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["a, baby, cries, wails", "people, applaud, hoot"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", null], "captions_pred_audio": ["a baby cries and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle engine is idling", "a person is burping while a girl speaks"], "sample_ids": ["vZAqdHZ81yA", "vdoxuJn9lTc"], "start_seconds": ["180", "40"], "properties": ["engine, motorcycle, idling", "person, burp, girl"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["an engine is idling loudly", "a child speaks followed by a burp"], "question": "which entity is not a person?", "label": 0}, {"captions": ["an infant crying frantically", "some men converse over an engine running"], "sample_ids": ["zwOBqeFTgiU", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["cry, infant, frantically", "men, converse, engine"], "captions_pred_video": ["of the baby crying in the car seat", null], "captions_pred_audio": ["a baby cries loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "a woman speaks as she rubs two objects together"], "sample_ids": ["vbpKkWvfOu4", "vzxHnu-SFEw"], "start_seconds": ["560", "80"], "properties": ["a, woman, man", "two objects, woman, speak"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman is speaking", "label": 1}, {"captions": ["an adult woman and an adult man speak", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zTLVJCo4WEE", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["two people, adult, speak", "applause, audience, yells"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["tDlysoZiA1I", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["animal, grunts, chirps", "animal, grunts, snorts"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a baby is crying"], "question": "which entity has more grunts", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sfAvvZwdLCY", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "rooster, crow, background, men"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "water is sprayed across a hard surface"], "sample_ids": ["uC9dtII1KDI", "sQwlkXjQabo"], "start_seconds": ["150", "10"], "properties": ["wind, gusts, distance", "water, spray, surface"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["siJFXfGWgDk", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["man, woman, vehicle", "music, gunfire, explosion"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["a person is snoring while sleeping", "continuous snoring"], "sample_ids": ["vJrjSeP17yE", "sLkeqCDJIyw"], "start_seconds": ["40", "120"], "properties": ["a person is sleeping, snoring, person", "loud, snoring, noise"], "captions_pred_video": ["a black background with a small plane flying in the sky", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a person snoring loudly", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "some men converse over an engine running"], "sample_ids": ["sYITalLZjj4", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["stream, flow, wind", "men, converse, engine"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks while vehicles pass by", "people applaud and hoot and chat quietly"], "sample_ids": ["sK4u5T8hW78", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["a, man, talk", "people, applaud, hoot"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a duck quacks loudly and continuously"], "sample_ids": ["vfYTJq7nU", "vh30P49Po6s"], "start_seconds": ["130", "30"], "properties": ["ducks, quack, man", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a duck is quacking loudly"], "question": "which duck is quacking loudly", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "paper is crumpling consistently"], "sample_ids": ["wz7N8YRy74I", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["rooster, crow, background, people", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["w2M4i1mklOA", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["alarm, gears, turn", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of an antique clock", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wvKpEYswXO0", "yDoT73BWsdA"], "start_seconds": ["150", "10"], "properties": ["water, tap, run", "engine, revs, vehicle"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a clock ticktocks", "a stream of water flows quickly"], "sample_ids": ["v-g-j2uTByM", "wbHTKEJZyhc"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, ticktocks", "stream, water, flow"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a clock is ticking loudly", "a waterfall is flowing and people are speaking "], "question": "which entity is moving", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wP8ZKrlx3oA", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["heavy, rain, fall", "loud, jet engine, roar"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a heavy rain is falling on a surface", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["y2ZBGpgbhHM", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["birds, tweet, pant", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "an infant crying as a woman laughs"], "sample_ids": ["zF8yoL0rkbI", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["engine, run, someone", "a, laugh, infant"], "captions_pred_video": ["footage of the traffic on the street at night", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wSVhSdj0F0", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["horn honks, keys jingle, electronic beep", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a man speaks as a car is passing by"], "sample_ids": ["t97k0cejSQE", "sK4u5T8hW78"], "start_seconds": ["250", "30"], "properties": ["bird, chirp, insect", "a, car, pass"], "captions_pred_video": ["a bee on a purple thistle flower", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a moving object", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a man speaks with another voice speaking in the background"], "sample_ids": ["v0wPrLBI3hg", "u21-Z5gJCB8"], "start_seconds": ["30", "30"], "properties": ["vocalize, bird, speak", "background, voice, man"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to birds?", "label": 0}, {"captions": ["an engine runs and wind blows", "wind blows as people chatter quietly"], "sample_ids": ["vs65y4qmyBE", "xBxDz0CFVn0"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "wind, chatter, people"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "people applaud and hoot and chat quietly"], "sample_ids": ["vXlk0lIQBFo", "wwyfGO2J4"], "start_seconds": ["470", "90"], "properties": ["wind, talk, vocalize", "people, applaud, hoot"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "winds blows roughly as a vehicle races past"], "sample_ids": ["vJvryTwuAV8", "xjvTpk2Zpr8"], "start_seconds": ["16", "70"], "properties": ["audience, cheer, man", "wind, blows, vehicle"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a guy speaks with birds chirping in the background"], "sample_ids": ["vBslzh7saPw", "v5P-ThUCINM"], "start_seconds": ["90", "400"], "properties": ["power, scream, increase", "background, chirp, bird"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and birds are chirping"], "question": "which entity is quieter", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "wind blows as people chatter quietly"], "sample_ids": ["xyL9F5VrjkE", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["wind, blows, vehicle", "wind, chatter, people"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a vehicle engine accelerating then running on idle"], "sample_ids": ["uiItxDsDMFI", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "engine, accelerate, idle"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a saw is being used with background noise ", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "water flows as men speak and yell"], "sample_ids": ["yI-KvObbDoY", "vJ7JPEFhyLA"], "start_seconds": ["260", "16"], "properties": ["sound, smack, wind", "water, flow, men"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of water flowing?", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["w0xsN8X18Y", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["music, surface, rain", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a duck quacks and a woman speaks"], "question": "which entity is about ducks?", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a horn rings out as a machine runs by"], "sample_ids": ["s4Uz1Ffgo04", "slZLHwNbbt4"], "start_seconds": ["100", "300"], "properties": ["water, rushes, motorcycle", "a, horn, run"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["t25U-v4k4ts", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["a, chirps, bird", "a woman, a television program, a bird"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird that chirps?", "label": 0}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zofjfKhqLk8", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird in it?", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "people applaud and hoot and chat quietly"], "sample_ids": ["zY3icUyMdh8", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["dog, bark, engine", "people, applaud, hoot"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person speaks briefly", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zOZleIRqZm4", "uYT5gxnyMWM"], "start_seconds": ["80", "50"], "properties": ["person, talk, brief", "a, scream, girl"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a recording of a person talking?", "label": 0}, {"captions": ["a man rubs two objects together then speaks", "a car accelerates and wind blows"], "sample_ids": ["vveS8HT7Uog", "u0TrcHhkPQ"], "start_seconds": ["100", "20"], "properties": ["a man, objects, speak", "accelerates, wind, blows"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a race car accelerates and revs its engine "], "question": "which object is moving", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["skd2PphS6oI", "zl9Dqx-j7q4"], "start_seconds": ["190", "6"], "properties": ["ring, bird, vocalize", "engine, laugh, loud"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vYkA3cfXp5Q", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["engine, accelerate, idle", "engine, revs, vehicle"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["an engine is idling", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle engine", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sHbXC6na9hg", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "rooster, crow, background, men"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a person cutting wood?", "label": 0}, {"captions": ["goats bleat and metal clings", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tH17JPjDPnc", "uYT5gxnyMWM"], "start_seconds": ["260", "50"], "properties": ["bleat, metal, clings", "female, spraying, scream"], "captions_pred_video": ["feed of the goats eating hay in the barn", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a person speaks briefly", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zOZleIRqZm4", "vbZ-0lGPneg"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "a woman, a television program, a bird"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a dog is whimpering"], "question": "which entity has more people talking", "label": 1}, {"captions": ["a male speaks and another male speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["viuTg1M-dqg", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["two males, speaking, male", "wind, blows, vehicle"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "a duck quacks loudly and continuously"], "sample_ids": ["ugHJF0hfYkg", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "loud, continuous, quacks"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a helicopter is flying overhead ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks in wind", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yVumC9TGknc", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["ticktocks, clock, wind", "engine, laugh, loud"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a series of beeps and chirps", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a car accelerates and wind blows"], "sample_ids": ["w34HjHr6gAY", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["beeps, squawk, child speaking", "accelerates, wind, blows"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zkKdxzNC97Y", "yajyRTUQk3U"], "start_seconds": ["27", "400"], "properties": ["hard, surface, door", "a woman, something, fried"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["tIY7qOV3rEM", "ziUT9IFTkjg"], "start_seconds": ["0", "10"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "background, birds, rustling"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "birds are chirping and a chime is ringing "], "question": "which entity has a background of birds chirping?", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "an engine runs loudly"], "sample_ids": ["zofjfKhqLk8", "vqZuVbG6-HI"], "start_seconds": ["10", "130"], "properties": ["background, metal, clank", "loud, engine, run"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["paper is crumpling consistently", "some men converse over an engine running"], "sample_ids": ["v5cSxLaHADY", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "men, converse, engine"], "captions_pred_video": ["footage of the person holding a pair of scissors", null], "captions_pred_audio": ["paper is crumpled and crinkled", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video", "label": 1}, {"captions": ["long loud burping by a man", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["xmiUIOhtZyQ", "sLUnaPT5gM8"], "start_seconds": ["60", "0"], "properties": ["loud, burp, man", "loud, laughter, intermittent"], "captions_pred_video": ["homer simpson drinking a beer", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person burps and music plays in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wqN6IIHw3po", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["rain, surface, fall", "three men, wind, flow"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking while rain falls onto a hard surface?", "label": 0}, {"captions": ["a toilet flushes and water drains", "roadway noise occurs and a truck accelerates"], "sample_ids": ["sfAvvZwdLCY", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["water drains, flushes, water", "noise, truck, accelerate"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a toilet is flushed", "a car is driving on the road "], "question": "which entity is a source of noise", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "pigeons vocalize and birds chirp"], "sample_ids": ["yYJksgsxx5U", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["audio, clicks, scraping", "vocalize, bird, chirp"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man speaks over intermittent keyboard taps", "birds chirp and objects are moved around"], "sample_ids": ["tw76HGONaKg", "yPUYU6t3rwo"], "start_seconds": ["570", "370"], "properties": ["audio, man, keyboard", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "waves crash against a shoreline and people speak"], "sample_ids": ["slZLHwNbbt4", "yFB25fqfU8I"], "start_seconds": ["300", "300"], "properties": ["a, horn, run", "wave, crash, shoreline"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a clock ticktocks briefly", "a speedboat passes quickly on the water"], "sample_ids": ["u7C-AEBQM", "tjmoSi330GM"], "start_seconds": ["30", "23"], "properties": ["ticktocks, clock, ticktocks briefly", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a ticktock of a clock", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["a man makes an exclamation, then another man speaks", "water flows as a woman laughs and a man speaks"], "sample_ids": ["xO-Q2BlIIPU", "vddP56-ogds"], "start_seconds": ["30", "30"], "properties": ["two men, exclamation, speak", "water, flow, laugh"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water is running and gurgling and a man is speaking"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a dog barks and whimpers", "frogs croak and vocalize"], "sample_ids": ["sShpyu2l4YQ", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["barks, whimpers, dog", "croak, vocalize, frog"], "captions_pred_video": ["the puppies are playing with a toy", "a close up of a frog in the water"], "captions_pred_audio": ["a dog is barking and growling", "a frog is croaking"], "question": "which animal is more vocal", "label": 1}, {"captions": ["a man speaks while water drains", "a telephone rings followed by a woman talking"], "sample_ids": ["vSeGhaZt-aI", "tGcFnX0GHI"], "start_seconds": ["50", "0"], "properties": ["water, drain, man", "ring, talk, woman"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["u5RmF3c3Aw", "zl9Dqx-j7q4"], "start_seconds": ["60", "6"], "properties": ["engine, car, zoom", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a jet engine roars "], "question": "which entity is followed by a car zooming by", "label": 0}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a clock ticktocks in wind"], "sample_ids": ["w0xsN8X18Y", "yVumC9TGknc"], "start_seconds": ["30", "30"], "properties": ["rain, thunder, surface", "ticktocks, clock, wind"], "captions_pred_video": [null, "game title screen of the game shadow of the colossus on sony playstation 2"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a series of beeps and chirps"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["some tunes played by whistling", "a child speaks in closed space"], "sample_ids": ["u6BnG6YZqJ4", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["tune, play, whistling", "child, space, speak"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vBslzh7saPw", "su6FAOcOA8c"], "start_seconds": ["90", "4"], "properties": ["power, scream, increase", "engine, idle, woman"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman is speaking and a subway train is moving "], "question": "which engine is quieter", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "vehicles pass by on a roadway"], "sample_ids": ["rwtmaKiCcQU", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["nozzle, depressed, spray can", "pass, vehicle, roadway"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage of a fire truck entering a garage"], "captions_pred_audio": ["spraying and people speaking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xl2PIWyXaM", "tDVADusiIoc"], "start_seconds": ["160", "60"], "properties": ["chirp, man, younger person", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds are chirping and people are talking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "someone whistles a tune"], "sample_ids": ["t69a8aRKhmc", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["a, b, c", "someone, tune, whistle"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a person whistling a song"], "question": "which entity has a tune", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "an engine runs loudly"], "sample_ids": ["wAAkbZToh8", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["burp, laugh, speak", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man burps and a woman speaks", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["birds fly and flutter around", "pigeons vocalize and birds chirp"], "sample_ids": ["wGKgwOP3h30", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["fly, flutter, around", "vocalize, bird, chirp"], "captions_pred_video": ["of the pigeons in the coop", "of the pigeon in the cage"], "captions_pred_audio": ["pigeons coo and flap their wings", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a toilet flushes and a female speaks"], "sample_ids": ["wz7N8YRy74I", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["rooster, crow, background, people", "female, flushes, toilet"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a man speaks as a car is passing by"], "sample_ids": ["spYNpeN7rPY", "sK4u5T8hW78"], "start_seconds": ["1", "30"], "properties": ["a clock, ticktock, man", "a, car, pass"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "small dogs yip and bark sharply"], "sample_ids": ["y2ZBGpgbhHM", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["birds, tweet, pant", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds chirping and a dog panting", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "an engine runs loudly"], "sample_ids": ["zl9Dqx-j7q4", "vqZuVbG6-HI"], "start_seconds": ["6", "130"], "properties": ["engine, laugh, loud", "loud, engine, run"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a jet engine roars ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vddP56-ogds", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["water, flow, laugh", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "an airplane engine spools and people speak"], "sample_ids": ["uYT5gxnyMWM", "wTjoRj1se3U"], "start_seconds": ["50", "390"], "properties": ["female, spraying, scream", "airplane, engine, spool"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking and then spraying and screaming?", "label": 0}, {"captions": ["multiple people speak and children yell while water gurgles", "paper folding and crinkling"], "sample_ids": ["vb1fPSDI4c", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["multiple, people, yell", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a crowd of people are talking and laughing", "the wind blows and a mouse clicks "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["xC8kbrKJmco", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["background, goat, scream", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a goat is bleating ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "water flows as men speak and yell"], "sample_ids": ["wvKpEYswXO0", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["plastic, tap, speak", "water, flow, men"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a liquid", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "paper folding and crinkling"], "sample_ids": ["xjhAnI2q6hM", "zPpG3RD8lSs"], "start_seconds": ["6", "20"], "properties": ["engine revs, vehicle, people", "paper, fold, crinkle"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "the wind blows and a mouse clicks "], "question": "which entity is a static object", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "a infant makes noise and is excited"], "sample_ids": ["vms5XGTDVQc", "wIJK3-5y0kA"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "noise, excited, infant"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["paper is crumpled and crinkled", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yDoT73BWsdA", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["engine, revs, vehicle", "rustling, ducks, quack"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "an engine starts and increases in power"], "sample_ids": ["spJCm8tD9Zo", "zjTG0gaGCUI"], "start_seconds": ["90", "80"], "properties": ["snores, wheezes, sleeps", "power, increase, engine"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a jet engine roars as wind blows "], "question": "which entity is a source of power", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w2JXXIAdUdg", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["emits, sleeping, person", "loud, multiple, distance"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "a person snoring loudly"], "question": "which person is emitting a snore", "label": 1}, {"captions": ["a clock ticktocks briefly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["u7C-AEBQM", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["ticktocks, clock, ticktocks briefly", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and spraying?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a woman speaks happily and an animal chirps"], "sample_ids": ["wRBHTgrbiwg", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["bird, owl, speak", "a woman, chirps, animal"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking and a dog is barking "], "question": "which entity has a man speaking briefly?", "label": 0}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["tiDFTC-5vU", "xV7Mg1QucSc"], "start_seconds": ["30", "14"], "properties": ["male, duck, laugh", "alarm, ticktocks, laughs"], "captions_pred_video": [null, "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "an alarm clock ticks and a woman laughs"], "question": "which entity is about a clock ticktocking and a man laughing?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a motorcycle engine is revving while people are speaking"], "sample_ids": ["sxYkFKFIZD0", "y8dSeubCNI"], "start_seconds": ["20", "4"], "properties": ["screech, man, door", "engine revving, people speaking, motorcycle"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "an engine revving and people talking in the background"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["waves of water rumble", "a mechanical buzzing getting louder"], "sample_ids": ["vwqaIHKxLvM", "sEprKHm8Sj8"], "start_seconds": ["20", "90"], "properties": ["sound, wave, water", "noise, loud, buzzing"], "captions_pred_video": ["of a surfer riding a big wave in the ocean", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["waves crash and wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["an insect buzzes around continuously", "people speaking indiscriminately in the distance with a person snoring loudly nearby"], "sample_ids": ["v25l1jef3JY", "w2JXXIAdUdg"], "start_seconds": ["0", "10"], "properties": ["buzzes, continuously, insect", "snoring, distance, person"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a person snoring and a dog whimpering"], "question": "which entity is louder", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vfYTJq7nU", "ukg5L09Wpvo"], "start_seconds": ["130", "150"], "properties": ["rustling, ducks, quack", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["ukxt9I7eMMg", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["food, pan, cook", "loud, multiple, distance"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "an insect buzzes around continuously"], "sample_ids": ["ugHJF0hfYkg", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "buzzes, continuously, insect"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a helicopter is flying overhead ", "a fly is buzzing around a microphone "], "question": "which entity is not a helicopter?", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "waves crash against a shoreline and people speak"], "sample_ids": ["spJCm8tD9Zo", "yFB25fqfU8I"], "start_seconds": ["90", "300"], "properties": ["snores, wheezes, sleeps", "wave, crash, shoreline"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["men speak and a nozzle sprays liquid", "a vehicle engine accelerates and wind blows"], "sample_ids": ["wRV8yMk886E", "wudZTNBtVqc"], "start_seconds": ["0", "60"], "properties": ["liquid, spray, nozzle", "accelerates, engine, wind"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak then an engine runs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uMTTDZ2mb4", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["engine, run, people", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wvKpEYswXO0", "wz7N8YRy74I"], "start_seconds": ["150", "30"], "properties": ["water, tap, run", "rooster, crow, background, men"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a rooster?", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a child speaks in closed space"], "sample_ids": ["zPX9o1uDiI", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["engine, horn, run", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a stream of water runs briefly"], "sample_ids": ["zcDwZ6W7E3E", "x-PeY8Yb8M4"], "start_seconds": ["180", "300"], "properties": ["man, speak, motorcycles", "stream, water, run"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["someone snores nearby", "a stream of water runs briefly"], "sample_ids": ["spJCm8tD9Zo", "x-PeY8Yb8M4"], "start_seconds": ["90", "300"], "properties": ["someone snores, nearby, someone", "stream, water, run"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person is snoring loudly", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "winds blows roughly as a vehicle races past"], "sample_ids": ["vzxHnu-SFEw", "xjvTpk2Zpr8"], "start_seconds": ["80", "70"], "properties": ["two objects, woman, speak", "wind, blows, vehicle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["male speech with light ticking", "a telephone rings followed by a woman talking"], "sample_ids": ["xO-Q2BlIIPU", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["male, speech, ticking", "ring, talk, woman"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a cat meows and children speak", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["x5cuQjOdM3E", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["cat, speak, children", "a woman, laughs, animal"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "water pouring and bubbling"], "sample_ids": ["v5P-ThUCINM", "uyRfq-jKPpo"], "start_seconds": ["400", "50"], "properties": ["background, chirp, bird", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and birds are chirping", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tDVADusiIoc", "tDVADusiIoc"], "start_seconds": ["60", "60"], "properties": ["man, radio, blows", "water, radio, man"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be in a storm", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a machine beeps continuously"], "sample_ids": ["vveS8HT7Uog", "y682ml90jGw"], "start_seconds": ["100", "11"], "properties": ["a man, objects, speak", "beeps, machine, continuously"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "an infant crying as a woman laughs"], "sample_ids": ["uPDn2BFTHk", "xhmRY9yhC7c"], "start_seconds": ["140", "20"], "properties": ["woman, laughs, speaks", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a baby cries and a woman speaks"], "question": "which woman is laughing", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["vb1fPSDI4c", "vXlk0lIQBFo"], "start_seconds": ["30", "470"], "properties": ["multiple, people, yell", "wind, speak, vocalize"], "captions_pred_video": [null, "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a crowd of people are talking and laughing", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "birds chirp and objects are moved around"], "sample_ids": ["x6ijhqRY38s", "yPUYU6t3rwo"], "start_seconds": ["250", "370"], "properties": ["something metal, glass, hit", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and wind blows", "several insects fly while two men talk"], "sample_ids": ["sxIvBMSavMQ", "s-T9OVOiMLo"], "start_seconds": ["210", "330"], "properties": ["birds, chirp, wind", "several, fly, men"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a man speaks followed by another man speaking outside"], "sample_ids": ["zTLVJCo4WEE", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "two men, speak, follow"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a drill runs and two people laugh", "an engine runs loudly"], "sample_ids": ["tEE3MpBt1sg", "vqZuVbG6-HI"], "start_seconds": ["50", "130"], "properties": ["two people, laugh, drill", "loud, engine, run"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage is blurry because it's raining outside"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sTpirNYo8vQ", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["a, tone, fast", "engine, idle, woman"], "captions_pred_video": ["of a man taking a selfie on a bus", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and a subway train is moving "], "question": "which woman is speaking", "label": 1}, {"captions": ["a weapon fires multiple times", "several insects fly while two men talk"], "sample_ids": ["sMC07Ucy7kg", "s-T9OVOiMLo"], "start_seconds": ["10", "330"], "properties": ["weapon, fire, multiple", "several, fly, men"], "captions_pred_video": ["footage is from a car's point of view", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xZepNM9qcRA", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["background, motor, run", "airplane, boy, fly"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a motor running in the background?", "label": 0}, {"captions": ["a rumble grows louder", "water pouring and bubbling"], "sample_ids": ["y4MY9mp8-TA", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["loudness, increase, rumble", "water, bubbles, pouring"], "captions_pred_video": ["a helicopter flying in the sky", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a helicopter flies overhead ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xyL9F5VrjkE", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["wind, motor, distance", "airplane, boy, fly"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w34HjHr6gAY", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["beeps, squawk, child speaking", "three men, wind, flow"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "some men converse over an engine running"], "sample_ids": ["tOj4tdLRaA", "sCiy7QS1U"], "start_seconds": ["70", "300"], "properties": ["woman, laugh, baby", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman speaking and a baby laughing?", "label": 0}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wnpJndXuxLc", "vfYTJq7nU"], "start_seconds": ["50", "130"], "properties": ["beeps, loud, whistle", "rustling, ducks, quack"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a duck quacks and a woman speaks"], "question": "which entity is more natural", "label": 1}, {"captions": ["frogs croak and vocalize", "someone whistles a tune"], "sample_ids": ["yswmmRZFItk", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["croak, vocalize, frog", "someone, tune, whistle"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a frog croaks as other frogs croak in the background"], "sample_ids": ["wvKpEYswXO0", "yswmmRZFItk"], "start_seconds": ["150", "0"], "properties": ["sound, water, running", "background, frog, croak"], "captions_pred_video": ["of the person preparing food in the kitchen", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a frog is croaking"], "question": "which entity has a background of frogs?", "label": 1}, {"captions": ["a child babbles as a woman speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wEBlkGWVWwE", "sLUnaPT5gM8"], "start_seconds": ["260", "0"], "properties": ["a, babble, woman", "loud, laughter, intermittent"], "captions_pred_video": ["shows a person writing on the whiteboard", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a clock ticktocks"], "sample_ids": ["sEprKHm8Sj8", "v-g-j2uTByM"], "start_seconds": ["90", "30"], "properties": ["car, tires, slows", "ticktocks, clock, ticktocks"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a man speaks as a motor runs in the background"], "sample_ids": ["y1saVTXsKwc", "xZepNM9qcRA"], "start_seconds": ["80", "30"], "properties": ["a, dog, talk", "background, motor, run"], "captions_pred_video": ["a dog playing with a pink ball", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a dog barks and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tEE3MpBt1sg", "yDoT73BWsdA"], "start_seconds": ["50", "10"], "properties": ["drill, something, laugh", "engine, revs, vehicle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which is a vehicle", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "pigeons vocalize and birds chirp"], "sample_ids": ["s7knHCFW82w", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["blow horn, get close, train", "vocalize, bird, chirp"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "of the pigeon in the cage"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a train?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xO-Q2BlIIPU", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["two men, exclamation, speak", "three men, wind, flow"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a small engine idles continuously", "a horn rings out as a machine runs by"], "sample_ids": ["y5WII6cTH7k", "slZLHwNbbt4"], "start_seconds": ["40", "300"], "properties": ["engine, idle, continuously", "a, horn, run"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is moving", "label": 1}, {"captions": ["a car accelerates and wind blows", "someone is typing on a computer keyboard"], "sample_ids": ["u0TrcHhkPQ", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["accelerates, wind, blows", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which object is moving", "label": 0}, {"captions": ["a dog barks and whimpers", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sShpyu2l4YQ", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["barks, whimpers, dog", "engine, idle, woman"], "captions_pred_video": ["the puppies are playing with a toy", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a subway train is moving "], "question": "which entity is a human", "label": 1}, {"captions": ["people speak as gunfire rings out", "an engine runs loudly"], "sample_ids": ["wqTCwqVRDlk", "vqZuVbG6-HI"], "start_seconds": ["80", "130"], "properties": ["gunfire, ring, speak", "loud, engine, run"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "music plays followed by gunshots and then an explosion"], "sample_ids": ["uC9dtII1KDI", "xKB8O8LTs6s"], "start_seconds": ["150", "70"], "properties": ["wind, gusts, distance", "music, gunshots, explosion"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["male speech with light ticking", "a vehicle is skidding and squealing tires"], "sample_ids": ["xO-Q2BlIIPU", "soTOh3zYJfY"], "start_seconds": ["30", "40"], "properties": ["male, speech, ticking", "vehicle, skid, tires"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "some men converse over an engine running"], "sample_ids": ["xfudFO976zE", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["animal, bleats, cry", "men, converse, engine"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "paper folding and crinkling"], "sample_ids": ["sEprKHm8Sj8", "zPpG3RD8lSs"], "start_seconds": ["90", "20"], "properties": ["noise, loud, buzzing", "paper, fold, crinkle"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which entity is not a noise", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["y2ZBGpgbhHM", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["birds, tweet, pant", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sa6TLVbooCc", "uYT5gxnyMWM"], "start_seconds": ["240", "50"], "properties": ["people, laugh, child", "a, scream, girl"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a woman is speaking and a baby is crying"], "question": "which entity has a child speaking?", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["yZp6xizR0yU", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["animal, bleat, cry", "people, applaud, hoot"], "captions_pred_video": ["footage of a woman feeding goats in a barn", null], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds fly and flutter around", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wGKgwOP3h30", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["fly, flutter, around", "applause, audience, yells"], "captions_pred_video": ["of the pigeons in the coop", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["pigeons coo and flap their wings", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a drill runs and two people laugh", "dishes cling together then a man begins to speak"], "sample_ids": ["tEE3MpBt1sg", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["two people, laugh, drill", "cling, speak, dishes"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "mechanisms are operating and water is splashing "], "question": "which entity is about a drill?", "label": 0}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wSVhSdj0F0", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["beep, clang, footsteps", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a machine beeps continuously"], "sample_ids": ["vZAqdHZ81yA", "y682ml90jGw"], "start_seconds": ["180", "11"], "properties": ["engine, motorcycle, idling", "beeps, machine, continuously"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a beeping sound is being made "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vMf1dLD6Sng", "sSMl2vc3ek"], "start_seconds": ["6", "20"], "properties": ["frog, bird, vocalize", "loud, multiple, distance"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", null], "captions_pred_audio": ["a frog croaks loudly", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "several insects fly while two men talk"], "sample_ids": ["vddP56-ogds", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["liquid, laughs, man", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["a woman and man speak while food is frying", "people speak as gunfire rings out"], "sample_ids": ["zk-xJGQU8-4", "wqTCwqVRDlk"], "start_seconds": ["130", "80"], "properties": ["food, man, woman", "gunfire, ring, speak"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uC9dtII1KDI", "vb1fPSDI4c"], "start_seconds": ["150", "30"], "properties": ["wind, gusts, distance", "multiple, people, yell"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", null], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an engine starts and increases in power", "two men speak as a buffeting wind blows"], "sample_ids": ["zjTG0gaGCUI", "y8WEcpOlT3I"], "start_seconds": ["80", "40"], "properties": ["power, increase, engine", "wind, speak, buffeting"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking with wind noise in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a toilet flushes and water drains unevenly"], "sample_ids": ["yks4cLgIDMc", "vhJWZheqaE"], "start_seconds": ["170", "0"], "properties": ["background, speaking, child", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "a toilet is flushed"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "an airplane flies overhead as a woman speaks"], "sample_ids": ["wz7N8YRy74I", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["rooster, crow, background, men", "airplane, fly, overhead"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying overhead", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "several ducks quack and cocks crow far away"], "sample_ids": ["y2ZBGpgbhHM", "sNB8zxXneIM"], "start_seconds": ["30", "20"], "properties": ["birds, tweet, pant", "several, quack, cocks"], "captions_pred_video": [null, "a group of geese in a cage"], "captions_pred_audio": ["birds chirping and a dog panting", "a rooster is crowing and wind is blowing "], "question": "which entity is about birds?", "label": 0}, {"captions": ["an animal quacks rapidly", "water pouring and bubbling"], "sample_ids": ["vh30P49Po6s", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["animal, quacks, rapidly", "water, bubbles, pouring"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a duck is quacking loudly", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a dark barks and whimpers", "small dogs yip and bark sharply"], "sample_ids": ["sYj4hpDUZDQ", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["barks, whimpers, dark", "bark, yip, sharply"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a dog barks and a cat meows", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["w5W5Kqtc8E", "su6FAOcOA8c"], "start_seconds": ["100", "4"], "properties": ["water, splashes, motorboat", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w5W5Kqtc8E", "wz7N8YRy74I"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman sneezes then speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["x4dZyf9Gbj0", "sLUnaPT5gM8"], "start_seconds": ["130", "0"], "properties": ["sneezes, speaks, woman", "loud, laughter, intermittent"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman sneezes and speaks", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a sneeze", "label": 0}, {"captions": ["a woman speaks with water running", "people applaud and hoot and chat quietly"], "sample_ids": ["wTideSjRFS0", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["water, running, woman", "people, applaud, hoot"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["ticking continues without interruption", "water pouring and bubbling"], "sample_ids": ["v-g-j2uTByM", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["ticking, continuous, clock", "water, bubbles, pouring"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a clock is ticking loudly", "water is running from a faucet"], "question": "which entity is not continuous", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "a man speaks over intermittent keyboard taps"], "sample_ids": ["x9JovgqUcs", "tw76HGONaKg"], "start_seconds": ["500", "570"], "properties": ["a, man, speaks, keyboard", "audio, man, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man speaks and types on a computer keyboard "], "question": "which entity is a video?", "label": 0}, {"captions": ["a man speaking with light rustling", "birds chirp and objects are moved around"], "sample_ids": ["zOZleIRqZm4", "yPUYU6t3rwo"], "start_seconds": ["80", "370"], "properties": ["light, rustling, man", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "vehicles pass by on a roadway"], "sample_ids": ["shmR4OZtzqA", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["man, engine, idle", "pass, vehicle, roadway"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man speaks while a motor runs", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a person speaks briefly", "a car accelerates and wind blows"], "sample_ids": ["zOZleIRqZm4", "u0TrcHhkPQ"], "start_seconds": ["80", "20"], "properties": ["person, talk, brief", "accelerates, wind, blows"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a race car accelerates and revs its engine "], "question": "which is not a person", "label": 1}, {"captions": ["a person is whistling a tune", "wind blows as people chatter quietly"], "sample_ids": ["scYRUkrFLiQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, tune, whistle", "wind, chatter, people"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["zY3icUyMdh8", "uqFtmnhuqA8"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "a, b, c"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a door opens and closes", "a person sneezes followed by another person speaking"], "sample_ids": ["vBHyYJ8pL0", "t8CV69hcvF0"], "start_seconds": ["2", "210"], "properties": ["open, close, door", "person, sneeze, follow"], "captions_pred_video": [null, "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a woman sneezes and speaks"], "question": "which entity is a follow up to something else?", "label": 1}, {"captions": ["ticking continues without interruption", "a clock ticktocks"], "sample_ids": ["v-g-j2uTByM", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "ticktocks, clock, ticktocks"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking loudly", "a clock is ticking loudly"], "question": "which clock ticks continuously", "label": 0}, {"captions": ["an engine idles quietly then gradually becomes louder", "loud clanking and banging with brief male speech"], "sample_ids": ["vbr9mHKc8WM", "sWZzXuWYY"], "start_seconds": ["40", "420"], "properties": ["noise, loudness, engine", "male, speech, banging"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine is idling", "a sewing machine runs and a man speaks"], "question": "which entity is louder", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zY3icUyMdh8", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["dog, bark, engine", "female, spraying, scream"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a car accelerates and wind blows", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["u0TrcHhkPQ", "x6ijhqRY38s"], "start_seconds": ["20", "250"], "properties": ["accelerates, wind, blows", "something metal, glass, hit"], "captions_pred_video": [null, "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and dishes are clanging "], "question": "which entity is a demonstration of a force", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "water splashes and a door squeaks"], "sample_ids": ["weDbePuc-Xc", "sdXV-ylviw"], "start_seconds": ["40", "190"], "properties": ["cartoon character, music, vocalize", "sound, splash, door"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a dog barks and taps with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uYT5gxnyMWM", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["female, spraying, scream", "music, gunfire, explosion"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a man speaks as a car is passing by"], "sample_ids": ["xjvTpk2Zpr8", "sK4u5T8hW78"], "start_seconds": ["70", "30"], "properties": ["engine, run, wind", "a, car, pass"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is stationary", "label": 1}, {"captions": ["someone snores nearby", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["spJCm8tD9Zo", "uEU-Hg5MTN8"], "start_seconds": ["90", "27"], "properties": ["someone snores, nearby, someone", "a woman, laughs, animal"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["t97k0cejSQE", "uZesmtKZGSw"], "start_seconds": ["250", "250"], "properties": ["bird, chirp, insect", "men, talk, cars"], "captions_pred_video": ["a bee on a purple thistle flower", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a drill runs and two people laugh", "a telephone rings followed by a woman talking"], "sample_ids": ["tEE3MpBt1sg", "tGcFnX0GHI"], "start_seconds": ["50", "0"], "properties": ["two people, laugh, drill", "ring, talk, woman"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sSMl2vc3ek", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["loud, multiple, distance", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xjhAnI2q6hM", "wDVMhEdTiVw"], "start_seconds": ["6", "30"], "properties": ["wind, blow, loudly", "gun, shoot, water"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause damage", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zALy31PjDl0", "uZesmtKZGSw"], "start_seconds": ["21", "250"], "properties": ["a man, a vehicle, a horn", "men, talk, cars"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["several ducks are quacking and squawking", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["wfHeoPDLMaM", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["quacking, squawking, ducks", "background, birds, rustling"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "birds are chirping and a chime is ringing "], "question": "which entity is a bird", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "rain falls on a surface as men speak and thunder roars"], "sample_ids": ["w-4gHptFNuU", "w0xsN8X18Y"], "start_seconds": ["21", "30"], "properties": ["engine revs, accelerates, bump", "rain, thunder, surface"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is a natural occurrence", "label": 1}, {"captions": ["a man talks as several small engines run", "a woman speaks as she rubs two objects together"], "sample_ids": ["u9A6VZQCZpU", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["a, man, talk", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a heavy rain falls endlessly", "an airplane engine roars increasingly louder"], "sample_ids": ["wP8ZKrlx3oA", "vBslzh7saPw"], "start_seconds": ["40", "90"], "properties": ["heavy, rain, fall", "engine, roar, louder"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a jet engine roars and accelerates "], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks in wind", "plastic is tapped on while someone speaks"], "sample_ids": ["yVumC9TGknc", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["ticktocks, clock, wind", "plastic, tap, speak"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a series of beeps and chirps", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks as a motor runs in the background"], "sample_ids": ["vD6lYD1l0BY", "xZepNM9qcRA"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "background, motor, run"], "captions_pred_video": ["game controller being held in the hands of the person", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man speaks while a motorcycle revs and accelerates "], "question": "which machine runs in the background", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a woman speaks and then a man speaks"], "sample_ids": ["xyL9F5VrjkE", "vbpKkWvfOu4"], "start_seconds": ["20", "560"], "properties": ["engine, run, wind", "a, man, speaks"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and a man is speaking"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "someone whistles a tune"], "sample_ids": ["vveS8HT7Uog", "sIXTftIuUgw"], "start_seconds": ["100", "90"], "properties": ["a man, objects, speak", "someone, tune, whistle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["speaking following by laughing and clapping", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["u2f5NpsoHBg", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["person, laugh, clap", "men, talk, cars"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity shows a person speaking?", "label": 0}, {"captions": ["food fries in a pan as someone talks and cooks", "a infant makes noise and is excited"], "sample_ids": ["ukxt9I7eMMg", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "noise, excited, infant"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["siJFXfGWgDk", "vlJS7LN2XyM"], "start_seconds": ["50", "30"], "properties": ["a, bird, vehicle", "background, clocks, ticking"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a ticktock of a clock"], "question": "which entity has a vehicle in the background?", "label": 0}, {"captions": ["engines sputter roughly and tires squeal", "a telephone rings followed by a woman talking"], "sample_ids": ["zhx6hoYrHeI", "tGcFnX0GHI"], "start_seconds": ["160", "0"], "properties": ["engine, sputter, rough", "ring, talk, woman"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "an engine runs loudly"], "sample_ids": ["wSVhSdj0F0", "vqZuVbG6-HI"], "start_seconds": ["10", "130"], "properties": ["horn honks, keys jingle, slam", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle engine is idling", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vZAqdHZ81yA", "xfaoyyzw2WU"], "start_seconds": ["180", "180"], "properties": ["engine, motorcycle, idling", "loud, jet engine, roar"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an engine is idling loudly", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a woman speaks happily and an animal chirps"], "sample_ids": ["xNMovAf3o50", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["rain, thunder, music", "a woman, chirps, animal"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", null], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an engine runs and a man speaks", "wind blows as people chatter quietly"], "sample_ids": ["yT5WfYMRr-U", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "wind, chatter, people"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["continuous snoring", "people applaud and hoot and chat quietly"], "sample_ids": ["sLkeqCDJIyw", "wwyfGO2J4"], "start_seconds": ["120", "90"], "properties": ["loud, snoring, noise", "people, applaud, hoot"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "paper is crumpling consistently"], "sample_ids": ["vb1fPSDI4c", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["multiple, people, yell", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a crowd of people are talking and laughing", "paper is crumpled and crinkled"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "paper folding and crinkling"], "sample_ids": ["slZLHwNbbt4", "zPpG3RD8lSs"], "start_seconds": ["300", "20"], "properties": ["a, horn, run", "paper, fold, crinkle"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "the wind blows and a mouse clicks "], "question": "which is not a machine", "label": 1}, {"captions": ["an engine starts and increases in power", "a train engine runs and a horn blows"], "sample_ids": ["zjTG0gaGCUI", "zPX9o1uDiI"], "start_seconds": ["80", "40"], "properties": ["power, increase, engine", "engine, horn, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is a train engine?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["wRBHTgrbiwg", "w34HjHr6gAY"], "start_seconds": ["50", "30"], "properties": ["bird, owl, speak", "beeps, hit, woman"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a beep sounds followed by a child speaking"], "question": "which entity has a man speaking briefly?", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vzxHnu-SFEw", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["two objects, woman, speak", "three men, wind, flow"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a man speaks while water trickles and flows", "some tunes played by whistling"], "sample_ids": ["sapQIQUhFc", "u6BnG6YZqJ4"], "start_seconds": ["280", "0"], "properties": ["water, trickles, flow", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zj2R0XoFr5k", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["airplane, boy, fly", "a, scream, girl"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a baby is crying"], "question": "which entity has a boy speaking?", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["tDlfY3nmx1A", "uEU-Hg5MTN8"], "start_seconds": ["160", "27"], "properties": ["applause, laugh, man", "animal, grunts, snorts"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "a toilet flushes and a female speaks"], "sample_ids": ["xM4joTqDVp4", "yaln9y8I7ms"], "start_seconds": ["160", "230"], "properties": ["background, chirp, birds", "female, flushes, toilet"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["water rushes by", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["x-PeY8Yb8M4", "zj2R0XoFr5k"], "start_seconds": ["300", "50"], "properties": ["water, rushes, by", "airplane, boy, fly"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car is driving on a wet road ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xKB8O8LTs6s", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["music, gunfire, explosion", "three men, wind, flow"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sAam2NqGhLY", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "stream, water, flow"], "captions_pred_video": ["of a little girl sleeping on a couch", "footage is blurry and out of focus"], "captions_pred_audio": ["a person is snoring", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sapQIQUhFc", "wqZ135Ssz0"], "start_seconds": ["280", "60"], "properties": ["water, trickles, flow", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tDlfY3nmx1A", "tdWhHV3X25Q"], "start_seconds": ["160", "60"], "properties": ["applause, laugh, man", "applause, audience, yells"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man is speaking and a crowd is clapping"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["an airplane engine runs", "pigeons vocalize and birds chirp"], "sample_ids": ["yVPZ2MNWpms", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["engine, airplane, runs", "vocalize, bird, chirp"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of the pigeon in the cage"], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "a clock ticktocks"], "sample_ids": ["wAAkbZToh8", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man burps and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "dishes cling together then a man begins to speak"], "sample_ids": ["xZepNM9qcRA", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["background, motor, run", "cling, speak, dishes"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["heavy rain splashes as it falls", "water is sprayed across a hard surface"], "sample_ids": ["wP8ZKrlx3oA", "sQwlkXjQabo"], "start_seconds": ["40", "10"], "properties": ["fall, rain, splash", "water, spray, surface"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a heavy rain is falling on a surface", "spraying followed by silence"], "question": "which entity is a spray of water?", "label": 1}, {"captions": ["a person snoring several times", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["spJCm8tD9Zo", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["snore, person, several", "two men, woman, birds"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["a man speaks as water trickles down a stream", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sapQIQUhFc", "wz7N8YRy74I"], "start_seconds": ["280", "30"], "properties": ["water, stream, trickles", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["some men converse over an engine running", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sCiy7QS1U", "ukg5L09Wpvo"], "start_seconds": ["300", "150"], "properties": ["men, converse, engine", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a person screams glaringly"], "sample_ids": ["w2M4i1mklOA", "xC8kbrKJmco"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "glaringly, screams, person"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a goat is bleating "], "question": "which entity is louder", "label": 1}, {"captions": ["a kid speaks followed by music playing", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tQWGZLItBXk", "uZesmtKZGSw"], "start_seconds": ["170", "250"], "properties": ["music, kid, speak", "men, talk, cars"], "captions_pred_video": ["worms revolution screenshots", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["vzxHnu-SFEw", "siJFXfGWgDk"], "start_seconds": ["80", "50"], "properties": ["two objects, woman, speak", "man, woman, vehicle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "water flows as men speak and yell"], "sample_ids": ["sK4u5T8hW78", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, car, pass", "water, flow, men"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking as a car is passing by?", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uEU-Hg5MTN8", "xKB8O8LTs6s"], "start_seconds": ["27", "70"], "properties": ["a woman, laughs, animal", "music, gunfire, explosion"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["ylpYOorfH4o", "uEU-Hg5MTN8"], "start_seconds": ["410", "27"], "properties": ["motor, run, steady", "a woman, laughs, animal"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a woman speaks followed by another woman whimpering and speaking"], "sample_ids": ["sWZzXuWYY", "xOZfdgAgJ9o"], "start_seconds": ["420", "40"], "properties": ["male, speech, banging", "woman, whimpering, speaking"], "captions_pred_video": [null, "footage of a woman talking to a man in a doctor's office"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a woman speaking?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["sQGXqGcwOTc", "s7knHCFW82w"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "blow horn, get close, train"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["a dog barks and whimpers", "a woman speaks as she rubs two objects together"], "sample_ids": ["sShpyu2l4YQ", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["barks, whimpers, dog", "two objects, woman, speak"], "captions_pred_video": ["the puppies are playing with a toy", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "water splashes as an animal walks through"], "sample_ids": ["yks4cLgIDMc", "w1ir-sZ3Im8"], "start_seconds": ["170", "90"], "properties": ["background, speaking, child", "animal, water, splashes"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and a child is crying", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vzceMbklWc", "ukg5L09Wpvo"], "start_seconds": ["180", "150"], "properties": ["water, faucet, sink", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["water is running and a man is speaking", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "water is sprayed across a hard surface"], "sample_ids": ["uiItxDsDMFI", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["wood, piece, saw", "water, spray, surface"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a saw is being used with background noise ", "spraying followed by silence"], "question": "which entity is wetter", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "frogs croak and vocalize"], "sample_ids": ["xfudFO976zE", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["animal, bleats, cry", "croak, vocalize, frog"], "captions_pred_video": ["footage is blurry and shaky", "a close up of a frog in the water"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a frog is croaking"], "question": "which animal is more vocal", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "water splashes and a door squeaks"], "sample_ids": ["wz7N8YRy74I", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["rooster, crow, background, men", "sound, splash, door"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a dog barks and taps with background noise "], "question": "which entity has a door?", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a stream of water runs briefly"], "sample_ids": ["yVumC9TGknc", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["humming, clock, birds", "stream, water, run"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a series of beeps and chirps", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["birds chirp and wind blows", "a man speaks as a car is passing by"], "sample_ids": ["sxIvBMSavMQ", "sK4u5T8hW78"], "start_seconds": ["210", "30"], "properties": ["birds, chirp, wind", "a, car, pass"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "an airplane engine spools and people speak"], "sample_ids": ["smDKStoHBJo", "wTjoRj1se3U"], "start_seconds": ["0", "390"], "properties": ["a, talk, baby, cry", "airplane, engine, spool"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a jet engine is running and people are talking"], "question": "which entity is a video of a person talking?", "label": 0}, {"captions": ["a man speaks while rain falls onto a hard surface", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["wqN6IIHw3po", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "gun, shoot, water"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and water is splashing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a gun?", "label": 0}, {"captions": ["a baby cries and a woman speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["tMbMDvT50j8", "w34HjHr6gAY"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "beeps, hit, woman"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a baby cries and a woman speaks", "a beep sounds followed by a child speaking"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a race car approaches quickly and slows down squealing tires", "wind blowing followed by a zoom"], "sample_ids": ["sEprKHm8Sj8", "vr8ZXjEBhMQ"], "start_seconds": ["90", "150"], "properties": ["car, tires, slows", "wind, blow, zoom"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a door opens and closes"], "sample_ids": ["tOj4tdLRaA", "vBHyYJ8pL0"], "start_seconds": ["70", "2"], "properties": ["woman, laugh, baby", "open, close, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is more passive", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yZmhM1HcsyE", "vJ7JPEFhyLA"], "start_seconds": ["4", "16"], "properties": ["engine, roar, water", "three men, wind, flow"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a person screams glaringly", "a toilet flushes and water drains"], "sample_ids": ["xC8kbrKJmco", "sfAvvZwdLCY"], "start_seconds": ["0", "20"], "properties": ["glaringly, screams, person", "water drains, flushes, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["a goat is bleating ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a cat meows and children speak"], "sample_ids": ["wqN6IIHw3po", "x5cuQjOdM3E"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "cat, speak, children"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a man is speaking and water is splashing", "a cat meows and a woman speaks"], "question": "which entity is a cat?", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uWAAAL4CIoc", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["a, dog, vocalize", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which animal is speaking", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wy1eKjR7KC0", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["people, talk, distance", "loud, jet engine, roar"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and a siren is going off", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a toilet flushes and water drains", "water is sprayed across a hard surface"], "sample_ids": ["sfAvvZwdLCY", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["water drains, flushes, water", "water, spray, surface"], "captions_pred_video": ["footage of the toilet in the bathroom", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a toilet is flushed", "spraying followed by silence"], "question": "which entity is a source of water", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a infant makes noise and is excited"], "sample_ids": ["wnpJndXuxLc", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["blows, vehicle, train", "noise, excited, infant"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "plastic is tapped on while someone speaks"], "sample_ids": ["vzceMbklWc", "wvKpEYswXO0"], "start_seconds": ["180", "150"], "properties": ["water, faucet, sink", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["water is running and a man is speaking", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["xBxDz0CFVn0", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["stream, water, flow", "loud, laughter, intermittent"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream of water flows as people talk and wind blows", "people cheer as a vehicle engine revs"], "sample_ids": ["xBxDz0CFVn0", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["stream, water, flow", "engine revs, vehicle, people"], "captions_pred_video": ["footage is blurry and out of focus", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a man speaks as a motor runs in the background"], "sample_ids": ["sapQIQUhFc", "xZepNM9qcRA"], "start_seconds": ["280", "30"], "properties": ["water, trickles, flow", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "dishes cling together then a man begins to speak"], "sample_ids": ["tOSWIURC-4", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["engine, work, nearby", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a lawn mower is running ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["multiple ducks quack continuously", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wfHeoPDLMaM", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["multiple, quack, continuously", "loud, laughter, intermittent"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["ducks are quacking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["w0xsN8X18Y", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["music, surface, rain", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a man speaks as a motor runs in the background"], "sample_ids": ["vZAw4apG0Es", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["background, clock, ticktocks", "background, motor, run"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a clock in the background", "label": 0}, {"captions": ["a man sprays as a scraping occurs in the background", "a telephone rings followed by a woman talking"], "sample_ids": ["sOa7g-44Dag", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["background, man, spray", "ring, talk, woman"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a woman speaks happily and an animal chirps"], "sample_ids": ["zsLxS-uLJTw", "uWAAAL4CIoc"], "start_seconds": ["20", "0"], "properties": ["horn, blast, train", "a woman, chirps, animal"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", null], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a child speaks in closed space"], "sample_ids": ["viuTg1M-dqg", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["two men, speak, follow", "child, space, speak"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["zY3icUyMdh8", "s7knHCFW82w"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "blow horn, get close, train"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a cat meows and children speak", "several insects fly while two men talk"], "sample_ids": ["x5cuQjOdM3E", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["cat, speak, children", "several, fly, men"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["male speech with light ticking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xO-Q2BlIIPU", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["male, speech, ticking", "three men, wind, flow"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a frog croaks as other frogs croak in the background"], "sample_ids": ["u2f5NpsoHBg", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["person, laugh, clap", "background, frog, croak"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a frog is croaking"], "question": "which entity is a frog", "label": 1}, {"captions": ["a male speaks over some small clicks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uXxVebHsGZ8", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["male, clicks, speak", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "birds chirp and objects are moved around"], "sample_ids": ["y8dSeubCNI", "yPUYU6t3rwo"], "start_seconds": ["4", "370"], "properties": ["men, women, car", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["an engine revving and people talking in the background", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["leaves rustle while man speaks", "a car accelerates and wind blows"], "sample_ids": ["zOZleIRqZm4", "u0TrcHhkPQ"], "start_seconds": ["80", "20"], "properties": ["leaves, rustle, speak", "accelerates, wind, blows"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "motors rev and run loudly as a person laughs"], "sample_ids": ["x9JovgqUcs", "zl9Dqx-j7q4"], "start_seconds": ["500", "6"], "properties": ["a, man, speaks, keyboard", "motors rev, laugh, loudly"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a jet engine roars "], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a train engine runs and a horn blows"], "sample_ids": ["sapQIQUhFc", "zPX9o1uDiI"], "start_seconds": ["280", "40"], "properties": ["liquid, flow, distance", "engine, horn, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sQGXqGcwOTc", "zl9Dqx-j7q4"], "start_seconds": ["3", "6"], "properties": ["cling, speak, dishes", "engine, laugh, loud"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a man driving a car in the dark"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "water is sprayed across a hard surface"], "sample_ids": ["tEE3MpBt1sg", "sQwlkXjQabo"], "start_seconds": ["50", "10"], "properties": ["drill, something, laugh", "water, spray, surface"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yeFvk9x0wWI", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["chirp, twitter, clatter", "rooster, crow, background, men"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a rooster?", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "vehicles pass by on a roadway"], "sample_ids": ["vXlk0lIQBFo", "tgbONvsP47Y"], "start_seconds": ["470", "0"], "properties": ["wind, talk, vocalize", "pass, vehicle, roadway"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a fire truck entering a garage"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "people cheer as a vehicle engine revs"], "sample_ids": ["uZesmtKZGSw", "xjhAnI2q6hM"], "start_seconds": ["250", "6"], "properties": ["men, talk, cars", "engine revs, vehicle, people"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["zuua6-5goWw", "y2ZBGpgbhHM"], "start_seconds": ["30", "30"], "properties": ["sound, pop, bird", "birds, tweet, pant"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "birds chirping and a dog panting"], "question": "which entity has more birds", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w8uLijTqtlU", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["wind, microphone, noise", "stream, water, flow"], "captions_pred_video": ["footage is blurry and shaky", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["s6DESzUTGjY", "yajyRTUQk3U"], "start_seconds": ["16", "400"], "properties": ["wind, laugh, woman", "a woman, something, fried"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which woman is frying something?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yRx9txMcBl0", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["motors, tires, screech", "a woman, laughs, animal"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "an insect buzzes around continuously"], "sample_ids": ["spJCm8tD9Zo", "v25l1jef3JY"], "start_seconds": ["90", "0"], "properties": ["snores, wheezes, sleeps", "buzzes, continuously, insect"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person is snoring loudly", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a woman speaks as she rubs two objects together"], "sample_ids": ["w5W5Kqtc8E", "vzxHnu-SFEw"], "start_seconds": ["100", "80"], "properties": ["water, splashes, motorboat", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["food is frying while a woman speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yhQ2Lg-7qDY", "sSMl2vc3ek"], "start_seconds": ["130", "20"], "properties": ["food, woman, speak", "loud, multiple, distance"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["wind blows and people talk while livestock vocalizes", "birds chirp and objects are moved around"], "sample_ids": ["vXlk0lIQBFo", "yPUYU6t3rwo"], "start_seconds": ["470", "370"], "properties": ["wind, talk, vocalize", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["t8CV69hcvF0", "wz7N8YRy74I"], "start_seconds": ["210", "30"], "properties": ["person, sneeze, follow", "rooster, crow, background, men"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["birds fly and flutter around", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wGKgwOP3h30", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["fly, flutter, around", "a woman, laughs, animal"], "captions_pred_video": ["of the pigeons in the coop", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["pigeons coo and flap their wings", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 0}, {"captions": ["a girl talking, laughing and sneezing noise", "people cheer as a vehicle engine revs"], "sample_ids": ["y4tPJXBKDig", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["a, noise, talk", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a clock ticktocks"], "sample_ids": ["sAam2NqGhLY", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a little girl sleeping on a couch", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person is snoring", "a clock is ticking loudly"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["a female speaks softly as paper crinkles", "water splashes as an animal walks through"], "sample_ids": ["xvDdE3zNf8Y", "w1ir-sZ3Im8"], "start_seconds": ["120", "90"], "properties": ["a, female, speaks", "animal, water, splashes"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman speaks and crumples paper", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tPJvjq9QePY", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["bleats, person, speak", "water, radio, man"], "captions_pred_video": ["a dog and a sheep in a barn", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a person speaking over a radio?", "label": 1}, {"captions": ["a helicopter engine runs", "winds blows roughly as a vehicle races past"], "sample_ids": ["t5ZbXbniOWk", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["engine, helicopter, run", "wind, blows, vehicle"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a helicopter is flying overhead ", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a woman speaks as frying food sizzles"], "sample_ids": ["v5P-ThUCINM", "wTideSjRFS0"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "food, sizzle, woman"], "captions_pred_video": [null, "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a woman is speaking while water is running in the background"], "question": "which entity is more likely to be in a restaurant", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sWZzXuWYY", "xBxDz0CFVn0"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a speedboat passes quickly on the water"], "sample_ids": ["sLUnaPT5gM8", "tjmoSi330GM"], "start_seconds": ["0", "23"], "properties": ["loud, laughter, intermittent", "speed, water, boat"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["insects humming with a dog barking and small goat bleating", "an airplane engine runs"], "sample_ids": ["tIY7qOV3rEM", "yVPZ2MNWpms"], "start_seconds": ["0", "0"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "engine, airplane, runs"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["a power tool runs and touches a surface", "a diesel truck engine runs continuously"], "sample_ids": ["zfvPRf3chY", "sZvwOuuPGP0"], "start_seconds": ["290", "50"], "properties": ["power tool, run, touch", "engine, diesel, truck"], "captions_pred_video": [null, "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a medium engine is running "], "question": "which entity is a machine", "label": 1}, {"captions": ["a motorcycle engine works nearby", "an airplane engine runs"], "sample_ids": ["tOSWIURC-4", "yVPZ2MNWpms"], "start_seconds": ["0", "0"], "properties": ["engine, work, nearby", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a lawn mower is running ", "a car is driving by on the road "], "question": "which entity has a moving engine", "label": 1}, {"captions": ["children cry and people talk", "vehicles pass by on a roadway"], "sample_ids": ["xLwHe825Zs", "tgbONvsP47Y"], "start_seconds": ["18", "0"], "properties": ["people talk, children cry, people talk", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine runs continuously", "people cheer as a vehicle engine revs"], "sample_ids": ["wdXV3Pv0jiY", "xjhAnI2q6hM"], "start_seconds": ["11", "6"], "properties": ["machine, running, continuously", "engine revs, vehicle, people"], "captions_pred_video": ["footage is blurry and shaky", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a truck is revving its engine and a man is speaking "], "question": "which machine is running continuously", "label": 0}, {"captions": ["a saw finishes running as metal clings in the background", "a power tool runs and touches a surface"], "sample_ids": ["zofjfKhqLk8", "zfvPRf3chY"], "start_seconds": ["10", "290"], "properties": ["background, metal, clings", "power tool, run, touch"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking while a power tool is being used "], "question": "which tool is touching a surface", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a person is burping then speaks and laughs"], "sample_ids": ["vs65y4qmyBE", "wAAkbZToh8"], "start_seconds": ["340", "0"], "properties": ["wind, blows, strongly", "burp, laugh, speak"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man burps and a woman speaks"], "question": "which entity is speaking", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "an airplane engine spools and people speak"], "sample_ids": ["yJ0TePmaOo", "wTjoRj1se3U"], "start_seconds": ["390", "390"], "properties": ["two hard objects, man, speak", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a jet engine is running and people are talking"], "question": "which object is moving", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["sWZzXuWYY", "vzxHnu-SFEw"], "start_seconds": ["420", "80"], "properties": ["male, clanks, thumps", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["a crowd yells, reacts and applauds", "females talk and laugh over gusting wind"], "sample_ids": ["wztCSUxOf8", "un9VQlzgZM"], "start_seconds": ["130", "5"], "properties": ["a crowd, yells, applauds", "females, talk, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is more likely to be at a sporting event", "label": 0}, {"captions": ["a man speaks as horns blow", "a man speaks followed by another man speaking outside"], "sample_ids": ["tHyNqRyK34A", "viuTg1M-dqg"], "start_seconds": ["24", "30"], "properties": ["a, man, speaks", "two men, speak, follow"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a horn rings out as a machine runs by"], "sample_ids": ["vZAw4apG0Es", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["background, tick, repeat", "a, horn, run"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a clock is ticking and people are talking", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity has a horn?", "label": 1}, {"captions": ["water bubbles and gurgles.", "a car speeding up in the distance"], "sample_ids": ["tB7hWb9gTuQ", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["bubbles, gurgles, water", "distance, car, speed"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", null], "captions_pred_audio": ["water is splashing and gurgling", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["zofjfKhqLk8", "ziUT9IFTkjg"], "start_seconds": ["10", "10"], "properties": ["background, metal, clank", "background, birds, rustling"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "birds are chirping and a chime is ringing "], "question": "which entity has a bird in the background?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["wSVhSdj0F0", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["horn honks, keys jingle, slam", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a snort?", "label": 1}, {"captions": ["a duck quacks continuously", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vh30P49Po6s", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["quacks, continuously, duck", "a woman, a television program, a bird"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a dog is whimpering"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "waves crash against a shoreline and people speak"], "sample_ids": ["sfAvvZwdLCY", "yFB25fqfU8I"], "start_seconds": ["20", "300"], "properties": ["flushes, drains, water", "wave, crash, shoreline"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a source of water", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "a vehicle engine accelerating then running on idle"], "sample_ids": ["uYT5gxnyMWM", "vYkA3cfXp5Q"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "engine, accelerate, idle"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["birds chirp and wind blows", "a woman speaks happily and an animal chirps"], "sample_ids": ["sxIvBMSavMQ", "uWAAAL4CIoc"], "start_seconds": ["210", "0"], "properties": ["birds, chirp, wind", "a woman, chirps, animal"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a goat screams and people speak in the background", "someone is typing on a computer keyboard"], "sample_ids": ["xC8kbrKJmco", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["background, goat, scream", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a goat is bleating ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a person whistles a meandering tune", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uFoga8sHpiw", "zFjIWfSD-4"], "start_seconds": ["90", "410"], "properties": ["person, tune, whistle", "People, motor, brakes"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vBslzh7saPw", "vYkA3cfXp5Q"], "start_seconds": ["90", "30"], "properties": ["power, scream, increase", "engine, accelerate, idle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a jet engine roars and accelerates ", "an engine is idling"], "question": "which engine is running on idle", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zl9Dqx-j7q4", "tDVADusiIoc"], "start_seconds": ["6", "60"], "properties": ["motors rev, laugh, loudly", "water, radio, man"], "captions_pred_video": ["footage of a man driving a car in the dark", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a train horn sounds as it passes by", "a train horn blows as it passes by"], "sample_ids": ["ukg5L09Wpvo", "zVacuqSb4LI"], "start_seconds": ["150", "30"], "properties": ["sound, train, horn", "horn, blows, train"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which train horn blows as it passes by", "label": 1}, {"captions": ["birds chirp and wind blows", "an engine runs loudly"], "sample_ids": ["sxIvBMSavMQ", "vqZuVbG6-HI"], "start_seconds": ["210", "130"], "properties": ["birds, chirp, wind", "loud, engine, run"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage is blurry because it's raining outside"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["a child speaks", "a duck quacks continuously"], "sample_ids": ["yW6FWLSLkx4", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["a, child, speaks", "quacks, continuously, duck"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a duck is quacking loudly"], "question": "which entity is speaking", "label": 0}, {"captions": ["a motor noise is accompanied by a door opening and closing", "pigeons vocalize and birds chirp"], "sample_ids": ["vBHyYJ8pL0", "uiS58TNyUiw"], "start_seconds": ["2", "430"], "properties": ["noise, door, opening", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zhx6hoYrHeI", "xfaoyyzw2WU"], "start_seconds": ["160", "180"], "properties": ["engine, sputter, rough", "loud, jet engine, roar"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a car accelerates and revs its engine ", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["s6DESzUTGjY", "vfYTJq7nU"], "start_seconds": ["16", "130"], "properties": ["wind, laugh, woman", "rustling, ducks, quack"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["some people speak", "a child speaks in closed space"], "sample_ids": ["vbZ-0lGPneg", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "child, space, speak"], "captions_pred_video": ["of a man holding a baby duck in his hands", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking english", "label": 0}, {"captions": ["people speak in the background as a clock ticktocks", "someone is typing on a computer keyboard"], "sample_ids": ["vZAw4apG0Es", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["background, clock, ticktocks", "keyboard, type, computer"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "how to make money on youtube in spanish"], "captions_pred_audio": ["a clock is ticking and people are talking", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a infant makes noise and is excited"], "sample_ids": ["sofxkNWaP0s", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "noise, excited, infant"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vzceMbklWc", "uYT5gxnyMWM"], "start_seconds": ["180", "50"], "properties": ["water, faucet, sink", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["water is running and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["u6jIvCtKarQ", "w5W5Kqtc8E"], "start_seconds": ["70", "100"], "properties": ["a, man, speaks", "wind, blow, vehicle"], "captions_pred_video": ["footage of a person using a blender on a stove top", null], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["ukg5L09Wpvo", "sYITalLZjj4"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "water, rushes, background, birds"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "two ducks are swimming in the water near each other"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "wind blows and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sWZzXuWYY", "uYT5gxnyMWM"], "start_seconds": ["420", "50"], "properties": ["male, speech, banging", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a scream", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wRBHTgrbiwg", "sSMl2vc3ek"], "start_seconds": ["50", "20"], "properties": ["bird, owl, speak", "loud, multiple, distance"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["sWZzXuWYY", "wyllXV6PjKo"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "a baby, a woman, a man"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman speaks and a baby cries"], "question": "which entity is more quiet", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sQGXqGcwOTc", "tdWhHV3X25Q"], "start_seconds": ["3", "60"], "properties": ["audio, kid, giggles", "applause, audience, yells"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "water pouring and bubbling"], "sample_ids": ["yDoT73BWsdA", "uyRfq-jKPpo"], "start_seconds": ["10", "50"], "properties": ["engine, revs, vehicle", "water, bubbles, pouring"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a cat meows and children speak", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["x5cuQjOdM3E", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["cat, speak, children", "men, talk, cars"], "captions_pred_video": ["a black background with an airplane flying in the sky", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a door opens and birds chirp", "an adult male speaks and dials a rotary phone"], "sample_ids": ["yeFvk9x0wWI", "tK4VlLsNxak"], "start_seconds": ["30", "120"], "properties": ["door, open, birds", "An adult male speaks, dials, and speaks into a rotary phone"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and using a sewing machine"], "question": "which entity is a video", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a man speaks as a car is passing by"], "sample_ids": ["s3cTDAj31g", "sK4u5T8hW78"], "start_seconds": ["80", "30"], "properties": ["man, talk, woman", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["a woman and man speak while food is frying", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zk-xJGQU8-4", "tDVADusiIoc"], "start_seconds": ["130", "60"], "properties": ["food, man, woman", "water, radio, man"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["su6FAOcOA8c", "w34HjHr6gAY"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "beeps, hit, woman"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a woman and man are speaking", "a stream of water runs briefly"], "sample_ids": ["vbpKkWvfOu4", "x-PeY8Yb8M4"], "start_seconds": ["560", "300"], "properties": ["two people, speaking, woman, man", "stream, water, run"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a power tool runs and touches a surface", "plastic is tapped on while someone speaks"], "sample_ids": ["zfvPRf3chY", "wvKpEYswXO0"], "start_seconds": ["290", "150"], "properties": ["power tool, run, touch", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a woman is speaking and tapping with background noise and water running "], "question": "which is not a power tool", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "winds blows roughly as a vehicle races past"], "sample_ids": ["tEE3MpBt1sg", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["drill, something, laugh", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wy1eKjR7KC0", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["people, talk, distance", "motor noise, horn, siren"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a car speeding up in the distance"], "sample_ids": ["v7jJS8aAyA", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["wind, blows, loudly", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a machine beeps continuously", "a duck quacks continuously"], "sample_ids": ["y682ml90jGw", "vh30P49Po6s"], "start_seconds": ["11", "30"], "properties": ["beeps, machine, continuously", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a beeping sound is being made ", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "some tunes played by whistling"], "sample_ids": ["wztCSUxOf8", "u6BnG6YZqJ4"], "start_seconds": ["130", "0"], "properties": ["a crowd, yells, applauds", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a man speaks as a motor runs in the background"], "sample_ids": ["ylpYOorfH4o", "xZepNM9qcRA"], "start_seconds": ["410", "30"], "properties": ["engine, running, wind", "background, motor, run"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a man speaks as a car is passing by"], "sample_ids": ["sK4u5T8hW78", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "a, car, pass"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a photograph", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["un9VQlzgZM", "xfaoyyzw2WU"], "start_seconds": ["5", "180"], "properties": ["wind, speak, laugh", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sa6TLVbooCc", "wDVMhEdTiVw"], "start_seconds": ["240", "30"], "properties": ["people, laugh, child", "gun, shoot, water"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a child speaks in closed space"], "sample_ids": ["u6jIvCtKarQ", "yW6FWLSLkx4"], "start_seconds": ["70", "40"], "properties": ["a, man, speaks", "child, space, speak"], "captions_pred_video": ["footage of a person using a blender on a stove top", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 0}, {"captions": ["speaking following by laughing and clapping", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["u2f5NpsoHBg", "tIY7qOV3rEM"], "start_seconds": ["30", "0"], "properties": ["person, laugh, clap", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a dog is barking and a cat is meowing"], "question": "which animal is barking", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xyL9F5VrjkE", "y8WEcpOlT3I"], "start_seconds": ["20", "40"], "properties": ["engine, run, wind", "harsh, wind, blows"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "on how to use a sewing machine youtube"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["goats bleat and people speak", "an infant crying as a woman laughs"], "sample_ids": ["z5iUE5h0EPs", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["goats bleat, people speak, language", "a, laugh, infant"], "captions_pred_video": ["of the goat in the barn", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a goat bleats and a man speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "some men converse over an engine running"], "sample_ids": ["uiItxDsDMFI", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["wood, piece, saw", "men, converse, engine"], "captions_pred_video": ["a man cutting a log with an axe in the woods", null], "captions_pred_audio": ["a saw is being used with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a piece of wood being sawed?", "label": 0}, {"captions": ["here comes the train and it starts to blow the horn and get close", "birds chirp and objects are moved around"], "sample_ids": ["s7knHCFW82w", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["blow horn, get close, train", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "insects buzz and a man speaks"], "question": "which entity is moving around objects", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a propeller rotates loudly and intensely"], "sample_ids": ["wSVhSdj0F0", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["horn honks, keys jingle, slam", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a duck quacks loudly and continuously"], "sample_ids": ["xBxDz0CFVn0", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["wind, chatter, people", "loud, continuous, quacks"], "captions_pred_video": ["footage is blurry and out of focus", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "dishes cling together then a man begins to speak"], "sample_ids": ["w2JXXIAdUdg", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["snoring, distance, person", "cling, speak, dishes"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person snoring and a dog whimpering", "mechanisms are operating and water is splashing "], "question": "which entity has a person speaking in the distance?", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "a woman speaks and a baby laughs"], "sample_ids": ["yaln9y8I7ms", "tOj4tdLRaA"], "start_seconds": ["230", "70"], "properties": ["female, flushes, toilet", "woman, laugh, baby"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a baby laughs and a woman speaks"], "question": "which entity has a baby laugh?", "label": 1}, {"captions": ["a machine runs continuously", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["wdXV3Pv0jiY", "zY3icUyMdh8"], "start_seconds": ["11", "20"], "properties": ["machine, running, continuously", "dog, bark, engine"], "captions_pred_video": ["footage is blurry and shaky", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a car is driving and dogs are barking and squealing "], "question": "which entity is not running continuously", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "dishes cling together then a man begins to speak"], "sample_ids": ["sncRqQ67iJU", "sQGXqGcwOTc"], "start_seconds": ["460", "3"], "properties": ["loud, repeatedly, man", "cling, speak, dishes"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person is snoring", "mechanisms are operating and water is splashing "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "an infant crying frantically"], "sample_ids": ["vhJWZheqaE", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["water drains unevenly, toilet flushes, water drains", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a toilet is flushed", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "people cheer as a vehicle engine revs"], "sample_ids": ["wtDqrBygTcU", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["man, engine, run", "engine revs, vehicle, people"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a motor is running", "a truck is revving its engine and a man is speaking "], "question": "which entity has a man speaking as an engine runs?", "label": 0}, {"captions": ["a diesel truck engine runs while wind blows", "a woman speaks as she rubs two objects together"], "sample_ids": ["xyL9F5VrjkE", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["engine, run, wind", "two objects, woman, speak"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["an engine runs and a man speaks", "vehicles pass by on a roadway"], "sample_ids": ["yT5WfYMRr-U", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["engine, run, man", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "birds chirp and objects are moved around"], "sample_ids": ["uPDn2BFTHk", "yPUYU6t3rwo"], "start_seconds": ["140", "370"], "properties": ["lady, laugh, baby", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a baby laughs and a woman speaks", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["vz8868znkVQ", "ziUT9IFTkjg"], "start_seconds": ["60", "10"], "properties": ["audio, click, kid speaking", "background, birds, rustling"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", null], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "birds are chirping and a chime is ringing "], "question": "which entity has a bird in the background?", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a vehicle is skidding and squealing tires"], "sample_ids": ["wztCSUxOf8", "soTOh3zYJfY"], "start_seconds": ["130", "40"], "properties": ["a crowd, yells, applauds", "vehicle, skid, tires"], "captions_pred_video": [null, "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a helicopter engine idles continuously", "an airplane engine spools and people speak"], "sample_ids": ["ugHJF0hfYkg", "wTjoRj1se3U"], "start_seconds": ["10", "390"], "properties": ["engine, idle, continuously", "airplane, engine, spool"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a helicopter is flying overhead ", "a jet engine is running and people are talking"], "question": "which entity has a moving engine", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vf9xf3vMsGM", "xBxDz0CFVn0"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "stream, water, flow"], "captions_pred_video": ["of the person washing their hands under the faucet", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["an audience gives applause", "water flows as a woman laughs and a man speaks"], "sample_ids": ["x6iCUDmRpKQ", "vddP56-ogds"], "start_seconds": ["38", "30"], "properties": ["applause, audience, give", "water, flow, laugh"], "captions_pred_video": ["a black background with the moon and stars in the sky", null], "captions_pred_audio": ["a group of people are clapping and cheering", "water is running and gurgling and a man is speaking"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["w0xsN8X18Y", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["music, surface, rain", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["running water in a faucet with some clinks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zNRChLjqcU", "uZesmtKZGSw"], "start_seconds": ["220", "250"], "properties": ["water, faucet, run", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks as insects buzz and a bird chirps", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["t25U-v4k4ts", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["a, chirps, bird", "loud, laughter, intermittent"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an adult woman and an adult man speak", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zTLVJCo4WEE", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["two people, adult, speak", "airplane, boy, fly"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a boy speaking?", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a vehicle accelerates and squeals tires"], "sample_ids": ["tK4VlLsNxak", "yRx9txMcBl0"], "start_seconds": ["120", "40"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "accelerates, tires, squeals"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "water pouring and bubbling"], "sample_ids": ["vs65y4qmyBE", "uyRfq-jKPpo"], "start_seconds": ["340", "50"], "properties": ["engine, run, man", "water, bubbles, pouring"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wfHeoPDLMaM", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "engine, accelerate, idle"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["ducks are quacking", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tK4VlLsNxak", "vb1fPSDI4c"], "start_seconds": ["120", "30"], "properties": ["a, dial, telephone", "multiple, people, yell"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["yRx9txMcBl0", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["accelerates, tires, squeals", "applause, audience, yells"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman and man speak while food is frying", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zk-xJGQU8-4", "vb1fPSDI4c"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "multiple, people, yell"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a horn rings out as a machine runs by"], "sample_ids": ["wudZTNBtVqc", "slZLHwNbbt4"], "start_seconds": ["60", "300"], "properties": ["accelerates, engine, wind", "a, horn, run"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a man talks while metallic objects are rapped and steam is released"], "sample_ids": ["sSMl2vc3ek", "vuUVPzd2FXw"], "start_seconds": ["20", "160"], "properties": ["a person, laughs, snores", "a, steam, release"], "captions_pred_video": [null, "of the person cooking on the grill with a spatula"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and dishes are clanging"], "question": "which entity is about a person releasing steam?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "someone is typing on a computer keyboard"], "sample_ids": ["tDVADusiIoc", "v0x1odnXtP0"], "start_seconds": ["60", "210"], "properties": ["water, radio, man", "keyboard, type, computer"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person is typing on a keyboard"], "question": "which entity is a person", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a infant makes noise and is excited"], "sample_ids": ["ul60S8TXDA8", "wIJK3-5y0kA"], "start_seconds": ["60", "30"], "properties": ["sound, distance, bell", "noise, excited, infant"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "an airplane engine spools and people speak"], "sample_ids": ["vJ7JPEFhyLA", "wTjoRj1se3U"], "start_seconds": ["16", "390"], "properties": ["three men, wind, flow", "airplane, engine, spool"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine is running and people are talking"], "question": "which entity is about a moving object", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "an insect buzzes around continuously"], "sample_ids": ["yRx9txMcBl0", "v25l1jef3JY"], "start_seconds": ["40", "0"], "properties": ["accelerates, tires, squeals", "buzzes, continuously, insect"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a fly is buzzing around a microphone "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["birds chirp as a bell rings", "birds chirp and objects are moved around"], "sample_ids": ["ziUT9IFTkjg", "yPUYU6t3rwo"], "start_seconds": ["10", "370"], "properties": ["chirp, bell, ring", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["y8dSeubCNI", "sLUnaPT5gM8"], "start_seconds": ["4", "0"], "properties": ["engine revving, people speaking, motorcycle", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["an engine revving and people talking in the background", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["running water in a faucet with some clinks", "an airplane engine spools and people speak"], "sample_ids": ["zNRChLjqcU", "wTjoRj1se3U"], "start_seconds": ["220", "390"], "properties": ["water, faucet, run", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["water is running from a faucet into a sink", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a duck quacks several times", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["vh30P49Po6s", "wnpJndXuxLc"], "start_seconds": ["30", "50"], "properties": ["quacks, duck, several", "beeps, loud, whistle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a duck is quacking loudly", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "vehicles pass by on a roadway"], "sample_ids": ["tDVADusiIoc", "tgbONvsP47Y"], "start_seconds": ["60", "0"], "properties": ["man, radio, blows", "pass, vehicle, roadway"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a child speaks"], "sample_ids": ["vddP56-ogds", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["liquid, laughs, man", "a, child, speaks"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["s7knHCFW82w", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["blow horn, get close, train", "a woman, laughs, animal"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "dishes cling together then a man begins to speak"], "sample_ids": ["v0x1odnXtP0", "sQGXqGcwOTc"], "start_seconds": ["210", "3"], "properties": ["keyboard, type, computer", "cling, speak, dishes"], "captions_pred_video": ["how to make money on youtube in spanish", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a person is typing on a keyboard", "mechanisms are operating and water is splashing "], "question": "which entity is about speaking", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a vehicle is skidding and squealing tires"], "sample_ids": ["vXlk0lIQBFo", "soTOh3zYJfY"], "start_seconds": ["470", "40"], "properties": ["wind, speak, vocalize", "vehicle, skid, tires"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "wind blows as people chatter quietly"], "sample_ids": ["zF8yoL0rkbI", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "wind, chatter, people"], "captions_pred_video": ["footage of the traffic on the street at night", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["an insect buzzes around continuously", "a train horn blows as it passes by"], "sample_ids": ["v25l1jef3JY", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "horn, blows, train"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vzxHnu-SFEw", "tDVADusiIoc"], "start_seconds": ["80", "60"], "properties": ["two objects, woman, speak", "water, radio, man"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a man speaks as a car is passing by"], "sample_ids": ["xOZfdgAgJ9o", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["woman, whimpering, speaking", "a, car, pass"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xBxDz0CFVn0", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["wind, chatter, people", "loud, multiple, distance"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person is whistling", "water pouring and bubbling"], "sample_ids": ["sIXTftIuUgw", "uyRfq-jKPpo"], "start_seconds": ["90", "50"], "properties": ["person, whistling, person", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a person whistling a song", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks while water drains", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vSeGhaZt-aI", "xfaoyyzw2WU"], "start_seconds": ["50", "180"], "properties": ["water, drain, man", "loud, jet engine, roar"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a small engine spits as it runs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sZvwOuuPGP0", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["spits, engine, runs", "gun, shoot, water"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a medium engine is running ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a gun?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "a train horn blares as a train passes, then fades"], "sample_ids": ["w5W5Kqtc8E", "zVacuqSb4LI"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "blares, fades, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is about a train?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["w5W5Kqtc8E", "uEU-Hg5MTN8"], "start_seconds": ["100", "27"], "properties": ["wind, blow, vehicle", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman laughing?", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "several insects fly while two men talk"], "sample_ids": ["sjlVMgdGSK0", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["accelerates, vehicle, race car", "several, fly, men"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["water bubbles and gurgles.", "a door opens and closes"], "sample_ids": ["tB7hWb9gTuQ", "vBHyYJ8pL0"], "start_seconds": ["30", "2"], "properties": ["bubbles, gurgles, water", "open, close, door"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", null], "captions_pred_audio": ["water is splashing and gurgling", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["v0wPrLBI3hg", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["vocalize, bird, speak", "engine, laugh, loud"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "footage of a man driving a car in the dark"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "an infant crying as a woman laughs"], "sample_ids": ["yajyRTUQk3U", "xhmRY9yhC7c"], "start_seconds": ["400", "20"], "properties": ["a woman, something, fried", "a, laugh, infant"], "captions_pred_video": ["- a woman cooking in the kitchen", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a baby cries and a woman speaks"], "question": "which woman is laughing", "label": 1}, {"captions": ["an airplane engine spools and people speak", "water flows as men speak and yell"], "sample_ids": ["wTjoRj1se3U", "vJ7JPEFhyLA"], "start_seconds": ["390", "16"], "properties": ["airplane, engine, spool", "water, flow, men"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a moving object?", "label": 0}, {"captions": ["a helicopter engine runs continuously", "a man speaks followed by another man speaking outside"], "sample_ids": ["ugHJF0hfYkg", "viuTg1M-dqg"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "two men, speak, follow"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "dishes cling together then a man begins to speak"], "sample_ids": ["sOa7g-44Dag", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["audio, scratching, man", "cling, speak, dishes"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a heavy rain falls endlessly", "a man speaks as a car is passing by"], "sample_ids": ["wP8ZKrlx3oA", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["heavy, rain, fall", "a, car, pass"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["ugHJF0hfYkg", "uqFtmnhuqA8"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "a, b, c"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a helicopter is flying overhead ", "mechanisms are ticking and a hammer is striking "], "question": "which entity is quieter", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["w0xsN8X18Y", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["rain, thunder, surface", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yZrFNS7GFBQ", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["pigeon, buzzes, insect", "rooster, crow, background, men"], "captions_pred_video": ["of the bird in the cage", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird?", "label": 0}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["t69a8aRKhmc", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["a, b, c", "a, chirps, bird"], "captions_pred_video": ["footage is blurry and out of focus", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and bees are buzzing"], "question": "which entity has a bird chirp?", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "water flows and trickles"], "sample_ids": ["zCrAfDfv6-A", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "water, flow, trickle"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a person whistles a song", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["yDoT73BWsdA", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["engine revs, tires squeal, vehicle", "applause, audience, yells"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a child yells and another yells", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vMDHu7Lxcgw", "su6FAOcOA8c"], "start_seconds": ["410", "4"], "properties": ["two, yell, child", "engine, idle, woman"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a car accelerates and wind blows"], "sample_ids": ["wP8ZKrlx3oA", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["rain, storm, thunder", "accelerates, wind, blows"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an insect buzzes around continuously", "a machine beeps continuously"], "sample_ids": ["v25l1jef3JY", "y682ml90jGw"], "start_seconds": ["0", "11"], "properties": ["buzzes, continuously, insect", "beeps, machine, continuously"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a beeping sound is being made "], "question": "which entity is a machine", "label": 1}, {"captions": ["a train horn blows as it passes by", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zVacuqSb4LI", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["horn, blows, train", "engine, accelerate, idle"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xyx6eNVEYRY", "zj2R0XoFr5k"], "start_seconds": ["380", "50"], "properties": ["loud, engine, muffles", "airplane, boy, fly"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a baby cries and a woman speaks", "vehicles pass by on a roadway"], "sample_ids": ["tMbMDvT50j8", "tgbONvsP47Y"], "start_seconds": ["12", "0"], "properties": ["a, cry, woman", "pass, vehicle, roadway"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a car is driving on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yswmmRZFItk", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["background, frog, croak", "male, duck, laugh"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "several insects fly while two men talk"], "sample_ids": ["zkKdxzNC97Y", "s-T9OVOiMLo"], "start_seconds": ["27", "330"], "properties": ["hard, surface, door", "several, fly, men"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a person snoring several times", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["spJCm8tD9Zo", "uZesmtKZGSw"], "start_seconds": ["90", "250"], "properties": ["snore, person, several", "men, talk, cars"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds chirp and a pop occurs before a man speaks", "vehicles pass by on a roadway"], "sample_ids": ["zuua6-5goWw", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["sound, pop, bird", "pass, vehicle, roadway"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a stream of water runs briefly"], "sample_ids": ["zY3icUyMdh8", "x-PeY8Yb8M4"], "start_seconds": ["20", "300"], "properties": ["dog, bark, engine", "stream, water, run"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["ugHJF0hfYkg", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["loud, intense, propeller", "People, motor, brakes"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which is quieter", "label": 1}, {"captions": ["someone whistles a song", "several insects fly while two men talk"], "sample_ids": ["sIXTftIuUgw", "s-T9OVOiMLo"], "start_seconds": ["90", "330"], "properties": ["someone, song, whistle", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a person whistling a song", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a man speaks as a motor runs in the background"], "sample_ids": ["wP8ZKrlx3oA", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["rain, storm, thunder", "background, motor, run"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "waves crash against a shoreline and people speak"], "sample_ids": ["vlJS7LN2XyM", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["background, clocks, ticking", "wave, crash, shoreline"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zkKdxzNC97Y", "uZesmtKZGSw"], "start_seconds": ["27", "250"], "properties": ["hard, surface, door", "men, talk, cars"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["goats bleat and metal clings", "a clock ticktocks"], "sample_ids": ["tH17JPjDPnc", "v-g-j2uTByM"], "start_seconds": ["260", "30"], "properties": ["bleat, metal, clings", "ticktocks, clock, ticktocks"], "captions_pred_video": ["feed of the goats eating hay in the barn", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["y2ZBGpgbhHM", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["animal, growl, bird", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds chirping and a dog panting", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["birds chirp as a bell rings", "some men converse over an engine running"], "sample_ids": ["ziUT9IFTkjg", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["chirp, bell, ring", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a human activity", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "water flows as men speak and yell"], "sample_ids": ["wvKpEYswXO0", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["sound, water, running", "water, flow, men"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water flowing", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a toilet flushes and a female speaks"], "sample_ids": ["vYkA3cfXp5Q", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["engine, accelerate, idle", "female, flushes, toilet"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["an engine is idling", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a woman speaks with water running"], "sample_ids": ["sQwlkXjQabo", "wTideSjRFS0"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "water, running, woman"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["spraying followed by silence", "a woman is speaking while water is running in the background"], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["bees buzz and wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tMJne1a4AFI", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["bees buzz, wind blows, bees", "a woman, something, fried"], "captions_pred_video": ["a swarm of bees on the ground", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a clock ticktocks"], "sample_ids": ["v0wPrLBI3hg", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["vocalize, bird, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yks4cLgIDMc", "wz7N8YRy74I"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "rooster, crow, background, men"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a child is crying", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a duck quacks continuously"], "sample_ids": ["tDVADusiIoc", "vh30P49Po6s"], "start_seconds": ["60", "30"], "properties": ["wind, radio, waves", "quacks, continuously, duck"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a few ducks quack and scamper and a man speaks"], "sample_ids": ["zCrAfDfv6-A", "w2bYrCVLT60"], "start_seconds": ["30", "120"], "properties": ["person, mouse, click", "ducks, speak, quack"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "of the ducks drinking from a pink pool in the grass"], "captions_pred_audio": ["a person whistles a song", "ducks are quacking and a man is speaking"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person snoring several times", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["spJCm8tD9Zo", "zFjIWfSD-4"], "start_seconds": ["90", "410"], "properties": ["snore, person, several", "People, motor, brakes"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "dishes cling together then a man begins to speak"], "sample_ids": ["wAAkbZToh8", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["burp, laugh, speak", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man burps and a woman speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about speaking", "label": 1}, {"captions": ["a duck quacks several times", "a car speeding up in the distance"], "sample_ids": ["vh30P49Po6s", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["quacks, duck, several", "distance, car, speed"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "water splashes as an animal walks through"], "sample_ids": ["zgUgkpk78xU", "w1ir-sZ3Im8"], "start_seconds": ["70", "90"], "properties": ["horn, bells, ring", "animal, water, splashes"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a car accelerates and wind blows"], "sample_ids": ["wjsXBsc7M40", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "accelerates, wind, blows"], "captions_pred_video": ["footage of the baby playing with a toothbrush", null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "an insect buzzes around continuously"], "sample_ids": ["zuua6-5goWw", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["birds, chirp, quiet, man, speaks", "buzzes, continuously, insect"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a horn rings out as a machine runs by"], "sample_ids": ["vBHyYJ8pL0", "slZLHwNbbt4"], "start_seconds": ["2", "300"], "properties": ["noise, door, opening", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["some tunes played by whistling", "a toilet flushes and a female speaks"], "sample_ids": ["u6BnG6YZqJ4", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["tune, play, whistling", "female, flushes, toilet"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a toilet flushes and a man speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "water is sprayed across a hard surface"], "sample_ids": ["sofxkNWaP0s", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["wind, engine, louder", "water, spray, surface"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a child speaks in closed space"], "sample_ids": ["sLUnaPT5gM8", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["loud, laughter, intermittent", "child, space, speak"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child yells and another yells", "a horn honks and then loudly blares"], "sample_ids": ["vMDHu7Lxcgw", "wnpJndXuxLc"], "start_seconds": ["410", "50"], "properties": ["two, yell, child", "horn, honk, loud"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "a horse runs while two women talk"], "sample_ids": ["sdXV-ylviw", "sdvI1mHAsc"], "start_seconds": ["190", "20"], "properties": ["door, toilet, squeaks", "two women, horse, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "horses clip-clop and a woman speaks"], "question": "which entity is a living thing", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "some men converse over an engine running"], "sample_ids": ["sQGXqGcwOTc", "sCiy7QS1U"], "start_seconds": ["3", "300"], "properties": ["audio, kid, giggles", "men, converse, engine"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks as a machine runs"], "sample_ids": ["vD6lYD1l0BY", "vD6lYD1l0BY"], "start_seconds": ["330", "330"], "properties": ["a, machine, run", "a, machine, run"], "captions_pred_video": ["game controller being held in the hands of the person", "game controller being held in the hands of the person"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking and dishes are being washed "], "question": "which machine is running in the first image?", "label": 0}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vddP56-ogds", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["water, splash, person, laugh", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a piece of wood is being placed down and sawed"], "sample_ids": ["tQWGZLItBXk", "uiItxDsDMFI"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "wood, piece, saw"], "captions_pred_video": ["worms revolution screenshots", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a saw is being used with background noise "], "question": "which entity is a video of a person sawing wood?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "paper is crumpling consistently"], "sample_ids": ["uJV8NDaHqqk", "v5cSxLaHADY"], "start_seconds": ["100", "0"], "properties": ["loud, fly, chirp", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a bee hive in a wooden box", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a swarm of bees buzzing around", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "wind blows as people chatter quietly"], "sample_ids": ["sncRqQ67iJU", "xBxDz0CFVn0"], "start_seconds": ["460", "30"], "properties": ["loud, repeatedly, man", "wind, chatter, people"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a person is snoring", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "an airplane engine spools and people speak"], "sample_ids": ["vbpKkWvfOu4", "wTjoRj1se3U"], "start_seconds": ["560", "390"], "properties": ["a, woman, man", "airplane, engine, spool"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a jet engine is running and people are talking"], "question": "which entity is a video of a woman speaking and other women and a man talk with her?", "label": 0}, {"captions": ["birds chirp and objects are moved around", "a woman speaks happily and an animal chirps"], "sample_ids": ["yPUYU6t3rwo", "uWAAAL4CIoc"], "start_seconds": ["370", "0"], "properties": ["birds chirp, objects are moved around, birds", "a woman, chirps, animal"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", null], "captions_pred_audio": ["insects buzz and a man speaks", "a woman is speaking and a dog is barking "], "question": "which entity is a video", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xyL9F5VrjkE", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["wind, blows, vehicle", "female, spraying, scream"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman and man speak while food is frying", "an infant crying frantically"], "sample_ids": ["zk-xJGQU8-4", "zwOBqeFTgiU"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "cry, infant, frantically"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tjmoSi330GM", "wz7N8YRy74I"], "start_seconds": ["23", "30"], "properties": ["speed, water, boat", "rooster, crow, background, men"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a rooster?", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "an airplane flies overhead as a woman speaks"], "sample_ids": ["ul60S8TXDA8", "zj2R0XoFr5k"], "start_seconds": ["60", "50"], "properties": ["sound, distance, bell", "airplane, fly, overhead"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying overhead", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a man speaks as a car is passing by"], "sample_ids": ["yZp6xizR0yU", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "a, car, pass"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["people clap and speak in the distance", "someone snores nearby"], "sample_ids": ["wwyfGO2J4", "spJCm8tD9Zo"], "start_seconds": ["90", "90"], "properties": ["clap, distance, speak", "someone snores, nearby, someone"], "captions_pred_video": [null, "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a person is snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["people speak softly as food sizzles", "sirens ring and approach with humming of distant traffic"], "sample_ids": ["yhQ2Lg-7qDY", "xERFUeZONz8"], "start_seconds": ["130", "0"], "properties": ["food, sizzle, speak", "ring, approach, traffic"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage is blurry due to camera shake or motion blur"], "captions_pred_audio": ["a faucet is running and a man is speaking", "an emergency vehicle siren blares"], "question": "which entity is more quiet", "label": 0}, {"captions": ["people cheer as a vehicle engine revs", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xjhAnI2q6hM", "tdWhHV3X25Q"], "start_seconds": ["6", "60"], "properties": ["engine revs, vehicle, people", "applause, audience, yells"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "water splashes as an animal walks through"], "sample_ids": ["wPz6QRAkEb4", "w1ir-sZ3Im8"], "start_seconds": ["60", "90"], "properties": ["chirps, tweets, song", "animal, water, splashes"], "captions_pred_video": ["a bird in a cage on top of a pole", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds are chirping in the background ", "water splashes and gurgles as people speak"], "question": "which entity is not a bird?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "pigeons vocalize and birds chirp"], "sample_ids": ["wSVhSdj0F0", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["horn honks, keys jingle, slam", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a car accelerates and wind blows"], "sample_ids": ["wfHeoPDLMaM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["quacking, squawking, ducks", "accelerates, wind, blows"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "a airplane flies overhead as a woman speaks"], "sample_ids": ["sdXV-ylviw", "zj2R0XoFr5k"], "start_seconds": ["190", "50"], "properties": ["door, toilet, squeaks", "airplane, fly, woman"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a duck quacks continuously", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vh30P49Po6s", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["quacks, continuously, duck", "male, duck, laugh"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking and ducks are quacking"], "question": "which duck is speaking", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sZPuqDgX2V0", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["commentator, race, track", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which vehicle is racing around a track", "label": 0}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wz7N8YRy74I", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["rooster, crow, background, people", "loud, laughter, intermittent"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a motorcycle engine works nearby", "water flows as men speak and yell"], "sample_ids": ["tOSWIURC-4", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["engine, work, nearby", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vJrjSeP17yE", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["a person is sleeping, snoring, person", "female, spraying, scream"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["a propeller moves loudly nearby", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["ugHJF0hfYkg", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["loud, propeller, move", "a woman, something, fried"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "paper is crumpling consistently"], "sample_ids": ["yYJksgsxx5U", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["audio, clicks, scraping", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["speaking following by laughing and clapping", "an infant crying as a woman laughs"], "sample_ids": ["u2f5NpsoHBg", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["person, laugh, clap", "a, laugh, infant"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a baby cries and a woman speaks"], "question": "which person is laughing", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "water splashes as an animal walks through"], "sample_ids": ["zFjIWfSD-4", "w1ir-sZ3Im8"], "start_seconds": ["410", "90"], "properties": ["People, motor, brakes", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "an infant crying frantically"], "sample_ids": ["tDlfY3nmx1A", "zwOBqeFTgiU"], "start_seconds": ["160", "30"], "properties": ["applause, laugh, man", "cry, infant, frantically"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "of the baby crying in the car seat"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["goats bleat and people speak", "an insect buzzes around continuously"], "sample_ids": ["z5iUE5h0EPs", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["goats bleat, people speak, language", "buzzes, continuously, insect"], "captions_pred_video": ["of the goat in the barn", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a goat bleats and a man speaks", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["a child speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["yW6FWLSLkx4", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["a, child, speaks", "engine revs, vehicle, people"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["water flows followed by women screaming", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["w5W5Kqtc8E", "vlS6YMeWAPo"], "start_seconds": ["100", "40"], "properties": ["water, flow, women", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a goat bleats and birds chirp"], "question": "which entity is followed by birds chirping", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "an airplane engine spools and people speak"], "sample_ids": ["zofjfKhqLk8", "wTjoRj1se3U"], "start_seconds": ["10", "390"], "properties": ["noise, stop, motor", "airplane, engine, spool"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["people speak as gunfire rings out", "a woman talks while a baby cries and a man whispers"], "sample_ids": ["wqTCwqVRDlk", "smDKStoHBJo"], "start_seconds": ["80", "0"], "properties": ["gunfire, ring, speak", "a, talk, baby, cry"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a baby is crying and a woman is speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "several insects fly while two men talk"], "sample_ids": ["sofxkNWaP0s", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["wind, engine, louder", "several, fly, men"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a train horn blows as it passes by"], "sample_ids": ["vBslzh7saPw", "zVacuqSb4LI"], "start_seconds": ["90", "30"], "properties": ["engine, spools, takes", "horn, blows, train"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["an adult woman and an adult man speak", "water pouring and bubbling"], "sample_ids": ["zTLVJCo4WEE", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["two people, adult, speak", "water, bubbles, pouring"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman speaks and crickets chirp", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zOZleIRqZm4", "su6FAOcOA8c"], "start_seconds": ["80", "4"], "properties": ["rustling, leaves, person", "engine, idle, woman"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a subway train is moving "], "question": "which entity is a person speaking over?", "label": 0}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a car accelerates and wind blows"], "sample_ids": ["yI-KvObbDoY", "u0TrcHhkPQ"], "start_seconds": ["260", "20"], "properties": ["sound, smack, wind", "accelerates, wind, blows"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", null], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["people speak and tapping occurs", "a propeller rotates loudly and intensely"], "sample_ids": ["tFCUUGdREgA", "ugHJF0hfYkg"], "start_seconds": ["70", "10"], "properties": ["people, tap, speak", "loud, intense, propeller"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man is filing a hard object", "an airplane engine spools and people speak"], "sample_ids": ["vveS8HT7Uog", "wTjoRj1se3U"], "start_seconds": ["100", "390"], "properties": ["a man, hard, object", "airplane, engine, spool"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a jet engine is running and people are talking"], "question": "which object is moving", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "heavy rain splashes as it falls"], "sample_ids": ["vdoxuJn9lTc", "wP8ZKrlx3oA"], "start_seconds": ["40", "40"], "properties": ["burp, loud, girl", "fall, rain, splash"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a child speaks followed by a burp", "a heavy rain is falling on a surface"], "question": "which entity is more likely to cause a splash", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a man speaks, another man speaks, and a small bell dings"], "sample_ids": ["yajyRTUQk3U", "t69a8aRKhmc"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "a, b, c"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and birds are chirping in the background "], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["water running down a sink while a man is talking", "a clock ticktocks"], "sample_ids": ["vSeGhaZt-aI", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "motors runs briefly and tires screech"], "sample_ids": ["su6FAOcOA8c", "yRx9txMcBl0"], "start_seconds": ["4", "40"], "properties": ["engine, idle, woman", "motors, tires, screech"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a car is revving its engine and skidding "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a train horn sounds as a railroad passing bell rings", "someone whistles a tune"], "sample_ids": ["zgUgkpk78xU", "sIXTftIuUgw"], "start_seconds": ["70", "90"], "properties": ["horn, bell, train", "someone, tune, whistle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["vehicles pass by on a roadway", "an airplane engine spools and people speak"], "sample_ids": ["tgbONvsP47Y", "wTjoRj1se3U"], "start_seconds": ["0", "390"], "properties": ["pass, vehicle, roadway", "airplane, engine, spool"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a car is driving on the road ", "a jet engine is running and people are talking"], "question": "which is not a moving object", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "water splashes as an animal walks through"], "sample_ids": ["uWAAAL4CIoc", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["a woman, chirps, animal", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "water splashes and gurgles as people speak"], "question": "which animal is more active", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w5W5Kqtc8E", "wDVMhEdTiVw"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["dogs barking and whimpering", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tIY7qOV3rEM", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["barking, whimpering, dog", "two men, woman, birds"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a stream of water runs briefly"], "sample_ids": ["vzxHnu-SFEw", "x-PeY8Yb8M4"], "start_seconds": ["80", "300"], "properties": ["two objects, woman, speak", "stream, water, run"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a weapon fires multiple times", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sMC07Ucy7kg", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["weapon, fire, multiple", "a, scream, girl"], "captions_pred_video": ["footage is from a car's point of view", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tOj4tdLRaA", "sSMl2vc3ek"], "start_seconds": ["70", "20"], "properties": ["woman, laugh, baby", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vbZ-0lGPneg", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["a woman, a television program, a bird", "sheep, baa, birds"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a goat bleats and birds chirp"], "question": "which entity has more birds", "label": 1}, {"captions": ["a power tool runs and touches a surface", "several ducks quack and cocks crow far away"], "sample_ids": ["zfvPRf3chY", "sNB8zxXneIM"], "start_seconds": ["290", "20"], "properties": ["power tool, run, touch", "several, quack, cocks"], "captions_pred_video": [null, "a group of geese in a cage"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a rooster is crowing and wind is blowing "], "question": "which is not a power tool", "label": 1}, {"captions": ["birds chirp and wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["sxIvBMSavMQ", "viuTg1M-dqg"], "start_seconds": ["210", "30"], "properties": ["birds, chirp, wind", "two men, speak, follow"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "roadway noise occurs and a truck accelerates"], "sample_ids": ["u--KhUW8l1Y", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["engine, sound, horn", "noise, truck, accelerate"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a telephone rings followed by a woman talking"], "sample_ids": ["w2JXXIAdUdg", "tGcFnX0GHI"], "start_seconds": ["10", "0"], "properties": ["snoring, distance, person", "ring, talk, woman"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a toilet flushes and a female speaks"], "sample_ids": ["wP8ZKrlx3oA", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["heavy, rain, fall", "female, flushes, toilet"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a toilet flushes and a man speaks"], "question": "which entity is not a video of a toilet flushing?", "label": 0}, {"captions": ["ticking continues without interruption", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["v-g-j2uTByM", "xV7Mg1QucSc"], "start_seconds": ["30", "14"], "properties": ["ticking, continuous, clock", "alarm, ticktocks, laughs"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking loudly", "an alarm clock ticks and a woman laughs"], "question": "which clock is ticking continuously", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "a man speaks as a motor runs in the background"], "sample_ids": ["uYT5gxnyMWM", "xZepNM9qcRA"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "background, motor, run"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a machine beeps continuously"], "sample_ids": ["yRx9txMcBl0", "y682ml90jGw"], "start_seconds": ["40", "11"], "properties": ["accelerates, tires, squeals", "beeps, machine, continuously"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a machine runs continuously", "water flows and trickles"], "sample_ids": ["wdXV3Pv0jiY", "tB7hWb9gTuQ"], "start_seconds": ["11", "30"], "properties": ["machine, running, continuously", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and shaky", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "water is splashing and gurgling"], "question": "which entity is not a continuous flow", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zALy31PjDl0", "zj2R0XoFr5k"], "start_seconds": ["21", "50"], "properties": ["a man, a vehicle, a horn", "airplane, boy, fly"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vfYTJq7nU", "xKB8O8LTs6s"], "start_seconds": ["130", "70"], "properties": ["rustling, ducks, quack", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a duck quacks and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a stream of water flows as people talk and wind blows"], "sample_ids": ["slZLHwNbbt4", "xBxDz0CFVn0"], "start_seconds": ["300", "30"], "properties": ["clap, distance, horn", "stream, water, flow"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a horn rings out as a machine runs by"], "sample_ids": ["sK4u5T8hW78", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["a, car, pass", "a, horn, run"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a child babbles as a woman speaks", "water pouring and bubbling"], "sample_ids": ["wEBlkGWVWwE", "uyRfq-jKPpo"], "start_seconds": ["260", "50"], "properties": ["a, babble, woman", "water, bubbles, pouring"], "captions_pred_video": ["shows a person writing on the whiteboard", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a train engine runs and a horn blows"], "sample_ids": ["w1mlz3Pe4fU", "zPX9o1uDiI"], "start_seconds": ["300", "40"], "properties": ["vocalize, chirp, continuously", "engine, horn, run"], "captions_pred_video": ["of a bird in a cage", null], "captions_pred_audio": ["birds are chirping and singing", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is not a train?", "label": 0}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "people applaud and hoot and chat quietly"], "sample_ids": ["ukg5L09Wpvo", "wwyfGO2J4"], "start_seconds": ["150", "90"], "properties": ["clickety-clack, train, whistle", "people, applaud, hoot"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a car speeding up in the distance"], "sample_ids": ["wqN6IIHw3po", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["rain, surface, fall", "distance, car, speed"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", null], "captions_pred_audio": ["a man is speaking and water is splashing", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "water pouring and bubbling"], "sample_ids": ["wqZ135Ssz0", "uyRfq-jKPpo"], "start_seconds": ["60", "50"], "properties": ["two men, woman, birds", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a child speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yW6FWLSLkx4", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["a, child, speaks", "female, spraying, scream"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is a child speaking?", "label": 0}, {"captions": ["distant men speak as a spray can nozzle is depressed", "people speak as gunfire rings out"], "sample_ids": ["rwtmaKiCcQU", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["nozzle, depressed, spray can", "gunfire, ring, speak"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["spraying and people speaking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a telephone rings followed by a woman talking"], "sample_ids": ["t25U-v4k4ts", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["a, chirps, bird", "ring, talk, woman"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a human talking?", "label": 1}, {"captions": ["a beep repeats multiple times", "wind blowing followed by a zoom"], "sample_ids": ["y682ml90jGw", "vr8ZXjEBhMQ"], "start_seconds": ["11", "150"], "properties": ["beep, repeat, multiple", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a beeping sound is being made ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "paper is crumpling consistently"], "sample_ids": ["x6ijhqRY38s", "v5cSxLaHADY"], "start_seconds": ["250", "0"], "properties": ["bowl, silverware, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a person is snoring while sleeping"], "sample_ids": ["zuua6-5goWw", "vJrjSeP17yE"], "start_seconds": ["30", "40"], "properties": ["birds, chirp, quiet, man, speaks", "a person is sleeping, snoring, person"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a person snoring loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["small dogs yip and bark sharply", "a telephone rings followed by a woman talking"], "sample_ids": ["v-wcQf4BDY0", "tGcFnX0GHI"], "start_seconds": ["120", "0"], "properties": ["bark, yip, sharply", "ring, talk, woman"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", null], "captions_pred_audio": ["a dog barks and growls", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a man speaks as a car is passing by"], "sample_ids": ["wSVhSdj0F0", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["horn honks, keys jingle, electronic beep", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a recording of a car passing by?", "label": 1}, {"captions": ["food is frying while a woman speaks", "dogs barking and whimpering"], "sample_ids": ["yhQ2Lg-7qDY", "tIY7qOV3rEM"], "start_seconds": ["130", "0"], "properties": ["food, woman, speak", "barking, whimpering, dog"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a dog is barking and a cat is meowing"], "question": "which entity is a dog", "label": 1}, {"captions": ["a car speeding up in the distance", "an engine sputters followed by a car zooming by"], "sample_ids": ["u0TrcHhkPQ", "u5RmF3c3Aw"], "start_seconds": ["20", "60"], "properties": ["distance, car, speed", "engine, car, zoom"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a race car accelerates and skids with wind noise in the background "], "question": "which car is zooming by", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "waves crash against a shoreline and people speak"], "sample_ids": ["wqN6IIHw3po", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["rain, surface, fall", "wave, crash, shoreline"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be seen in a movie", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a car accelerates and wind blows"], "sample_ids": ["yFB25fqfU8I", "u0TrcHhkPQ"], "start_seconds": ["300", "20"], "properties": ["wave, crash, shoreline", "accelerates, wind, blows"], "captions_pred_video": ["footage of a person surfing in the ocean", null], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["heavy rain splashes as it falls", "an engine sputters followed by a car zooming by"], "sample_ids": ["wP8ZKrlx3oA", "u5RmF3c3Aw"], "start_seconds": ["40", "60"], "properties": ["fall, rain, splash", "engine, car, zoom"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a race car accelerates and skids with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a infant makes noise and is excited"], "sample_ids": ["uZesmtKZGSw", "wIJK3-5y0kA"], "start_seconds": ["250", "30"], "properties": ["men, talk, cars", "noise, excited, infant"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "people applaud and hoot and chat quietly"], "sample_ids": ["vZAw4apG0Es", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["background, clock, ticktocks", "people, applaud, hoot"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["several insects fly while two men talk", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["s-T9OVOiMLo", "tDVADusiIoc"], "start_seconds": ["330", "60"], "properties": ["several, fly, men", "water, radio, man"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a male speaks and another male speaks"], "sample_ids": ["tDVADusiIoc", "viuTg1M-dqg"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "two males, speaking, male"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a crowd yells, reacts and applauds"], "sample_ids": ["xC8kbrKJmco", "wztCSUxOf8"], "start_seconds": ["0", "130"], "properties": ["background, goat, scream", "a crowd, yells, applauds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["w5W5Kqtc8E", "ziUT9IFTkjg"], "start_seconds": ["100", "10"], "properties": ["wind, engine, scream", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tGcFnX0GHI", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["ring, talk, woman", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["zj2R0XoFr5k", "s7knHCFW82w"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, overhead", "blow horn, get close, train"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a train is blowing its horn and its wheels are squealing "], "question": "which is a train", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "water drips and bubbles as a man speaks"], "sample_ids": ["yVumC9TGknc", "vSeGhaZt-aI"], "start_seconds": ["30", "50"], "properties": ["humming, clock, birds", "water, bubbles, speak"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["an engine starts and increases in power", "a man talks followed by a woman shouting"], "sample_ids": ["zjTG0gaGCUI", "s3cTDAj31g"], "start_seconds": ["80", "80"], "properties": ["power, increase, engine", "man, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "people speak as gunfire rings out"], "sample_ids": ["sapQIQUhFc", "wqTCwqVRDlk"], "start_seconds": ["280", "80"], "properties": ["liquid, flow, distance", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a duck quacks continuously", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vh30P49Po6s", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["quacks, continuously, duck", "airplane, boy, fly"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a duck is quacking loudly", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "pigeons vocalize and birds chirp"], "sample_ids": ["xyL9F5VrjkE", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["wind, blows, vehicle", "vocalize, bird, chirp"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of the pigeon in the cage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a toilet door squeaks as it is opened", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["sdXV-ylviw", "ukg5L09Wpvo"], "start_seconds": ["190", "150"], "properties": ["door, toilet, squeaks", "a train, a horn, a bell"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "wind blowing followed by a zoom"], "sample_ids": ["zcDwZ6W7E3E", "vr8ZXjEBhMQ"], "start_seconds": ["180", "150"], "properties": ["man, speak, motorcycles", "wind, blow, zoom"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a video of a man speaking?", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["vbpKkWvfOu4", "sQGXqGcwOTc"], "start_seconds": ["560", "3"], "properties": ["a, man, speaks", "cling, speak, dishes"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["distant humming of an engine", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yVPZ2MNWpms", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["sound, distance, engine", "a, scream, girl"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is driving by on the road ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["x6ijhqRY38s", "wqZ135Ssz0"], "start_seconds": ["250", "60"], "properties": ["bowl, silverware, man", "two men, woman, birds"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vhJWZheqaE", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["water drains unevenly, toilet flushes, water drains", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a person talking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a toilet flushes and a female speaks"], "sample_ids": ["tgbONvsP47Y", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["pass, vehicle, roadway", "female, flushes, toilet"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving on the road ", "a toilet flushes and a man speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["a door slams shut roughly", "small dogs yip and bark sharply"], "sample_ids": ["zkKdxzNC97Y", "v-wcQf4BDY0"], "start_seconds": ["27", "120"], "properties": ["a door, slams, shut", "bark, yip, sharply"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a door is opened and closed", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a drill runs and two people laugh", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["tEE3MpBt1sg", "uWPRNLnpy7Y"], "start_seconds": ["50", "10"], "properties": ["two people, laugh, drill", "accelerate, laugh, vehicle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "is taken from a car driving down the street"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xMXvkIcaG0Y", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["sound, humming, rattling", "loud, multiple, distance"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", null], "captions_pred_audio": ["an engine is revving and accelerating ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "multiple birds vocalize and wind blows"], "sample_ids": ["wvKpEYswXO0", "uoGVs9yUqY4"], "start_seconds": ["150", "30"], "properties": ["plastic, tap, speak", "multiple, vocalize, wind"], "captions_pred_video": ["of the person preparing food in the kitchen", "for how to make a wooden shed door youtube"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "birds are chirping and flapping their wings with wind noise in the background "], "question": "which entity is not a person", "label": 1}, {"captions": ["leaves rustle while man speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["zOZleIRqZm4", "vzxHnu-SFEw"], "start_seconds": ["80", "80"], "properties": ["leaves, rustle, speak", "two objects, woman, speak"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a motorcycle engine is revving while people are speaking", "a woman speaks and then a man speaks"], "sample_ids": ["y8dSeubCNI", "vbpKkWvfOu4"], "start_seconds": ["4", "560"], "properties": ["engine revving, people speaking, motorcycle", "a, man, speaks"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["an engine revving and people talking in the background", "a woman is speaking and a man is speaking"], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a muffled toilet flushes and the water drains"], "sample_ids": ["w1mlz3Pe4fU", "sfAvvZwdLCY"], "start_seconds": ["300", "20"], "properties": ["vocalize, chirp, continuously", "flushes, drains, water"], "captions_pred_video": ["of a bird in a cage", "footage of the toilet in the bathroom"], "captions_pred_audio": ["birds are chirping and singing", "a toilet is flushed"], "question": "which entity is silent", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "an audience gives applause"], "sample_ids": ["vhJWZheqaE", "x6iCUDmRpKQ"], "start_seconds": ["0", "38"], "properties": ["water drains unevenly, toilet flushes, water drains", "applause, audience, give"], "captions_pred_video": [null, "a black background with the moon and stars in the sky"], "captions_pred_audio": ["a toilet is flushed", "a group of people are clapping and cheering"], "question": "which entity is a response to a stimulus", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "pigeons vocalize and birds chirp"], "sample_ids": ["vZAw4apG0Es", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["people, clock, converse", "vocalize, bird, chirp"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of the pigeon in the cage"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["water flows and trickles", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tB7hWb9gTuQ", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["water, flow, trickle", "engine, idle, woman"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["water is splashing and gurgling", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["uOpoD0gGXcs", "vlS6YMeWAPo"], "start_seconds": ["120", "40"], "properties": ["chirps, woman, bird", "sheep, baa, birds"], "captions_pred_video": ["a herd of cows grazing in the field", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a goat bleats and birds chirp"], "question": "which entity is a response to a human chirping?", "label": 0}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "someone snores nearby"], "sample_ids": ["su6FAOcOA8c", "spJCm8tD9Zo"], "start_seconds": ["4", "90"], "properties": ["engine, idle, woman", "someone snores, nearby, someone"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["people speak then an engine runs", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["uMTTDZ2mb4", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["engine, run, people", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wAAkbZToh8", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["burp, laugh, speak", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man burps and a woman speaks", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a snore", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["vlJS7LN2XyM", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["background, clocks, ticking", "motor noise, horn, siren"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a ticktock of a clock", "a truck is honking its horn and a siren is blaring "], "question": "which entity is more ominous", "label": 1}, {"captions": ["leaves rustle while man speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zOZleIRqZm4", "xKB8O8LTs6s"], "start_seconds": ["80", "70"], "properties": ["leaves, rustle, speak", "music, gunfire, explosion"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["a machine runs continuously", "wind blows as people chatter quietly"], "sample_ids": ["wdXV3Pv0jiY", "xBxDz0CFVn0"], "start_seconds": ["11", "30"], "properties": ["machine, running, continuously", "wind, chatter, people"], "captions_pred_video": ["footage is blurry and shaky", "footage is blurry and out of focus"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sYITalLZjj4", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["water, rushes, background, birds", "People, motor, brakes"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xl2PIWyXaM", "w5W5Kqtc8E"], "start_seconds": ["160", "100"], "properties": ["chirp, man, younger person", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a person is whistling", "birds chirp quietly and an adult man speaks"], "sample_ids": ["sIXTftIuUgw", "zuua6-5goWw"], "start_seconds": ["90", "30"], "properties": ["person, whistling, person", "birds, chirp, quiet, man, speaks"], "captions_pred_video": [null, "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["a person whistling a song", "birds are chirping and a man is speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["siJFXfGWgDk", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["man, woman, vehicle", "a woman, chirps, animal"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking and a dog is barking "], "question": "which entity has a more active animal", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zdYdyF9-m8U", "wz7N8YRy74I"], "start_seconds": ["7", "30"], "properties": ["wind, crash, shoreline", "rooster, crow, background, men"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["waves crash and wind blows ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vD6lYD1l0BY", "tDVADusiIoc"], "start_seconds": ["330", "60"], "properties": ["a, machine, run", "water, radio, man"], "captions_pred_video": ["game controller being held in the hands of the person", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["people speak then an engine runs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uMTTDZ2mb4", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["engine, run, people", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "dishes cling together then a man begins to speak"], "sample_ids": ["wqZ135Ssz0", "sQGXqGcwOTc"], "start_seconds": ["60", "3"], "properties": ["man, woman, squawks", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking", "label": 1}, {"captions": ["an insect buzzes around continuously", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["v25l1jef3JY", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "rooster, crow, background, men"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["v-wcQf4BDY0", "xKB8O8LTs6s"], "start_seconds": ["120", "70"], "properties": ["bark, yip, sharply", "music, gunfire, explosion"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog barks and growls", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "several insects fly while two men talk"], "sample_ids": ["rwtmaKiCcQU", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["nozzle, depressed, spray can", "several, fly, men"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["spraying and people speaking", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["a man speaks uses a drill", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["x5eIC7S0fbg", "vqZuVbG6-HI"], "start_seconds": ["60", "130"], "properties": ["A man is speaking, uses a drill, and is a tool", "background, male, female"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a lawn mower is running and men are speaking "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tDlfY3nmx1A", "uZesmtKZGSw"], "start_seconds": ["160", "250"], "properties": ["applause, laugh, man", "men, talk, cars"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a man speaks as horns blow"], "sample_ids": ["yswmmRZFItk", "tHyNqRyK34A"], "start_seconds": ["0", "24"], "properties": ["background, frog, croak", "a, man, speaks"], "captions_pred_video": ["a close up of a frog in the water", "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["a frog is croaking", "a man is speaking and a car is honking with background noise "], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a baby coos and fidgets as a lady speaks and laughs"], "sample_ids": ["voJh2gJxXhA", "uPDn2BFTHk"], "start_seconds": ["50", "140"], "properties": ["music, frog, croak", "lady, laugh, baby"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", null], "captions_pred_audio": ["music is playing and crickets are chirping ", "a baby laughs and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "an adult woman and an adult man speak"], "sample_ids": ["sofxkNWaP0s", "zTLVJCo4WEE"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "two people, adult, speak"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a woman speaks and crickets chirp"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a clock ticktocks briefly", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["u7C-AEBQM", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks briefly", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and ducks are quacking"], "question": "which entity is a clock?", "label": 0}, {"captions": ["a door slams shut and an object moves on a hard surface", "people applaud and hoot and chat quietly"], "sample_ids": ["zkKdxzNC97Y", "wwyfGO2J4"], "start_seconds": ["27", "90"], "properties": ["hard, surface, door", "people, applaud, hoot"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be in a theater", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sWZzXuWYY", "uYT5gxnyMWM"], "start_seconds": ["420", "50"], "properties": ["male, speech, banging", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a woman", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uiS58TNyUiw", "xBxDz0CFVn0"], "start_seconds": ["430", "30"], "properties": ["vocalize, bird, chirp", "stream, water, flow"], "captions_pred_video": ["of the pigeon in the cage", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is not a stream of water flowing?", "label": 0}, {"captions": ["a saw finishes running as metal clings in the background", "water runs into a sink while men speak"], "sample_ids": ["zofjfKhqLk8", "vzceMbklWc"], "start_seconds": ["10", "180"], "properties": ["background, metal, clings", "water, sink, run"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "water is running and a man is speaking"], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a car speeding up in the distance", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["u0TrcHhkPQ", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["distance, car, speed", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["an airplane engine runs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yVPZ2MNWpms", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["engine, airplane, runs", "engine, revs, vehicle"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car is driving by on the road ", "a race car accelerates and revs its engine "], "question": "which entity has a running engine", "label": 0}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a car speeding up in the distance"], "sample_ids": ["yLy-WycbVVE", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, people, talk", "distance, car, speed"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a duck quacks continuously"], "sample_ids": ["siJFXfGWgDk", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["man, woman, vehicle", "quacks, continuously, duck"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "waves crash against a shoreline and people speak"], "sample_ids": ["ylpYOorfH4o", "yFB25fqfU8I"], "start_seconds": ["410", "300"], "properties": ["motor, run, steady", "wave, crash, shoreline"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is a natural phenomenon", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a young woman speaks over spraying and another person yells"], "sample_ids": ["tPJvjq9QePY", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["bleats, person, speak", "person, spray, yell"], "captions_pred_video": ["a dog and a sheep in a barn", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby cries and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tezvROoo4bs", "yDoT73BWsdA"], "start_seconds": ["40", "10"], "properties": ["audio, throttle, speaking", "engine, revs, vehicle"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a race car accelerates and revs its engine "], "question": "which entity is a video of a vehicle?", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "an insect buzzes around continuously"], "sample_ids": ["w6RTHR6AeAg", "v25l1jef3JY"], "start_seconds": ["40", "0"], "properties": ["call, owl, screech", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a fly is buzzing around a microphone "], "question": "which entity is a predator", "label": 0}, {"captions": ["an aircraft engine runs as wind blows heavily", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xjvTpk2Zpr8", "vfYTJq7nU"], "start_seconds": ["70", "130"], "properties": ["engine, run, wind", "rustling, ducks, quack"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a duck quacks and a woman speaks"], "question": "which entity is not a video of an aircraft engine running?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wz7N8YRy74I", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["rooster, crow, background, men", "applause, audience, yells"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a helicopter engine runs continuously"], "sample_ids": ["tOSWIURC-4", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["engine, work, nearby", "engine, running, continuously"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a lawn mower is running ", "a helicopter is flying overhead "], "question": "which entity has a running engine", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a man speaks as a motor runs in the background"], "sample_ids": ["vJvryTwuAV8", "xZepNM9qcRA"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "background, motor, run"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zFjIWfSD-4", "vfYTJq7nU"], "start_seconds": ["410", "130"], "properties": ["People, motor, brakes", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["water pouring and bubbling", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uyRfq-jKPpo", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["water, bubbles, pouring", "a woman, something, fried"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "- a woman cooking in the kitchen"], "captions_pred_audio": ["water is running from a faucet", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["a door opens and closes", "water pouring and bubbling"], "sample_ids": ["vBHyYJ8pL0", "uyRfq-jKPpo"], "start_seconds": ["2", "50"], "properties": ["open, close, door", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "water is running from a faucet"], "question": "which entity is more likely to be a door", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "some men converse over an engine running"], "sample_ids": ["sa6TLVbooCc", "sCiy7QS1U"], "start_seconds": ["240", "300"], "properties": ["people, laugh, child", "men, converse, engine"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", null], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows people speaking and laughing as a child speaks?", "label": 0}, {"captions": ["birds chirp and pigeons vocalize while walking around", "vehicles pass by on a roadway"], "sample_ids": ["wIvYjuR3nrg", "tgbONvsP47Y"], "start_seconds": ["9", "0"], "properties": ["birds, pigeons, vocalize", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and cooing", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a clock ticktocks in wind", "a car accelerates and wind blows"], "sample_ids": ["yVumC9TGknc", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, wind", "accelerates, wind, blows"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", null], "captions_pred_audio": ["a series of beeps and chirps", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains", "a clock ticktocks"], "sample_ids": ["sfAvvZwdLCY", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a toilet is flushed", "a clock is ticking loudly"], "question": "which entity is a timepiece", "label": 1}, {"captions": ["food is frying and sizzles", "paper folding and crinkling"], "sample_ids": ["zNRChLjqcU", "zPpG3RD8lSs"], "start_seconds": ["220", "20"], "properties": ["food is frying, sizzles, food", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["water is running from a faucet into a sink", "the wind blows and a mouse clicks "], "question": "which entity is not a food", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vr8ZXjEBhMQ", "uEU-Hg5MTN8"], "start_seconds": ["150", "27"], "properties": ["wind, blow, zoom", "a woman, laughs, animal"], "captions_pred_video": ["is taken from a motorcycle's point of view", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vbpKkWvfOu4", "wqZ135Ssz0"], "start_seconds": ["560", "60"], "properties": ["a, man, speaks", "two men, woman, birds"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "an insect buzzes around continuously"], "sample_ids": ["vveS8HT7Uog", "v25l1jef3JY"], "start_seconds": ["100", "0"], "properties": ["a man, objects, speak", "buzzes, continuously, insect"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a drill runs and two people laugh", "water drips and bubbles as a man speaks"], "sample_ids": ["tEE3MpBt1sg", "vSeGhaZt-aI"], "start_seconds": ["50", "50"], "properties": ["two people, laugh, drill", "water, bubbles, speak"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xKB8O8LTs6s", "vb1fPSDI4c"], "start_seconds": ["70", "30"], "properties": ["music, gunfire, explosion", "multiple, people, yell"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "winds blows roughly as a vehicle races past"], "sample_ids": ["sjlVMgdGSK0", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["car, revving, loudly", "wind, blows, vehicle"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine roars and wind blows "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "water flows as men speak and yell"], "sample_ids": ["uWPRNLnpy7Y", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["accelerate, laugh, vehicle", "water, flow, men"], "captions_pred_video": ["is taken from a car driving down the street", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a vehicle?", "label": 0}, {"captions": ["an insect buzzes around continuously", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["v25l1jef3JY", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "rooster, crow, background, men"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a man talks while metallic objects are rapped and steam is released"], "sample_ids": ["vr8ZXjEBhMQ", "vuUVPzd2FXw"], "start_seconds": ["150", "160"], "properties": ["wind, blow, zoom", "a, steam, release"], "captions_pred_video": ["is taken from a motorcycle's point of view", "of the person cooking on the grill with a spatula"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking and dishes are clanging"], "question": "which entity is a video of a man talking?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a man speaks, another man speaks, and a small bell dings"], "sample_ids": ["xjhAnI2q6hM", "t69a8aRKhmc"], "start_seconds": ["6", "30"], "properties": ["engine revs, vehicle, people", "a, b, c"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a vehicle?", "label": 0}, {"captions": ["a person speaks over rustling leaves", "water pouring and bubbling"], "sample_ids": ["zOZleIRqZm4", "uyRfq-jKPpo"], "start_seconds": ["80", "50"], "properties": ["rustling, leaves, person", "water, bubbles, pouring"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a infant makes noise and is excited"], "sample_ids": ["xfaoyyzw2WU", "wIJK3-5y0kA"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "noise, excited, infant"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a baby cries and a woman speaks"], "question": "which is louder", "label": 1}, {"captions": ["a man is filing a hard object", "a man speaks over intermittent keyboard taps"], "sample_ids": ["vveS8HT7Uog", "tw76HGONaKg"], "start_seconds": ["100", "570"], "properties": ["a man, hard, object", "audio, man, keyboard"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man speaks and types on a computer keyboard "], "question": "which entity is a video of a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a man speaks followed by another man speaking outside"], "sample_ids": ["wz7N8YRy74I", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, people", "two men, speak, follow"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a rooster in it?", "label": 0}, {"captions": ["a jet engine screams, then increases its power", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vBslzh7saPw", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["power, scream, increase", "female, spraying, scream"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "water pouring and bubbling"], "sample_ids": ["vh30P49Po6s", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["loud, continuous, quacks", "water, bubbles, pouring"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a duck is quacking loudly", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple ducks quack continuously", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wfHeoPDLMaM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["multiple, quack, continuously", "loud, multiple, distance"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "an infant crying frantically"], "sample_ids": ["vbpKkWvfOu4", "zwOBqeFTgiU"], "start_seconds": ["560", "30"], "properties": ["a, woman, man", "cry, infant, frantically"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["water rushes by", "a man is snoring loudly and repeatedly"], "sample_ids": ["x-PeY8Yb8M4", "sncRqQ67iJU"], "start_seconds": ["300", "460"], "properties": ["water, rushes, by", "loud, repeatedly, man"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a car is driving on a wet road ", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["su6FAOcOA8c", "sLUnaPT5gM8"], "start_seconds": ["4", "0"], "properties": ["engine, idle, woman", "loud, laughter, intermittent"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a horn rings out as a machine runs by", "a car accelerates and wind blows"], "sample_ids": ["slZLHwNbbt4", "u0TrcHhkPQ"], "start_seconds": ["300", "20"], "properties": ["a, horn, run", "accelerates, wind, blows"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a race car accelerates and revs its engine "], "question": "which is not a machine", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y8WEcpOlT3I", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["harsh, wind, blows", "men, talk, cars"], "captions_pred_video": ["on how to use a sewing machine youtube", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a helicopter engine runs continuously", "vehicles pass by on a roadway"], "sample_ids": ["ugHJF0hfYkg", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an insect buzzes around continuously", "a horn blasts as warning bells ring"], "sample_ids": ["v25l1jef3JY", "zgUgkpk78xU"], "start_seconds": ["0", "70"], "properties": ["buzzes, continuously, insect", "horn, bells, ring"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a train blows its horn as it speeds down the tracks "], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xV7Mg1QucSc", "yDoT73BWsdA"], "start_seconds": ["14", "10"], "properties": ["alarm, ticktocks, laughs", "engine, revs, vehicle"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a door opens and birds chirp", "birds vocalize and chirp continuously"], "sample_ids": ["yeFvk9x0wWI", "w1mlz3Pe4fU"], "start_seconds": ["30", "300"], "properties": ["door, open, birds", "vocalize, chirp, continuously"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of a bird in a cage"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "birds are chirping and singing"], "question": "which entity is more active", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a jet engine spools up and takes off"], "sample_ids": ["wRV8yMk886E", "vBslzh7saPw"], "start_seconds": ["0", "90"], "properties": ["liquid, spray, nozzle", "engine, spools, takes"], "captions_pred_video": ["two cars are parked in a parking lot at night", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a jet engine roars and accelerates "], "question": "which entity is a moving object", "label": 1}, {"captions": ["continuous snoring", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sLkeqCDJIyw", "vYkA3cfXp5Q"], "start_seconds": ["120", "30"], "properties": ["loud, snoring, noise", "engine, accelerate, idle"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a person is snoring loudly", "an engine is idling"], "question": "which entity is not a noise", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a infant makes noise and is excited"], "sample_ids": ["v0x1odnXtP0", "wIJK3-5y0kA"], "start_seconds": ["210", "30"], "properties": ["keyboard, type, computer", "noise, excited, infant"], "captions_pred_video": ["how to make money on youtube in spanish", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a person is typing on a keyboard", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a car accelerates and wind blows"], "sample_ids": ["vJ7JPEFhyLA", "u0TrcHhkPQ"], "start_seconds": ["16", "20"], "properties": ["three men, wind, flow", "accelerates, wind, blows"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["someone whistles a song", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sIXTftIuUgw", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["someone, song, whistle", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["yZmhM1HcsyE", "tdWhHV3X25Q"], "start_seconds": ["4", "60"], "properties": ["engine, roar, water", "applause, audience, yells"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a clock ticktocks"], "sample_ids": ["tgbONvsP47Y", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["pass, vehicle, roadway", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a fire truck entering a garage", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a car is driving on the road ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vr8ZXjEBhMQ", "sSMl2vc3ek"], "start_seconds": ["150", "20"], "properties": ["wind, blow, zoom", "loud, multiple, distance"], "captions_pred_video": ["is taken from a motorcycle's point of view", null], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a person snoring loudly"], "question": "which entity is not a zoom", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "someone whistles a tune"], "sample_ids": ["w0xsN8X18Y", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["music, surface, rain", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaking with light rustling", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zOZleIRqZm4", "uYT5gxnyMWM"], "start_seconds": ["80", "50"], "properties": ["light, rustling, man", "a, scream, girl"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity is more spooky", "label": 1}, {"captions": ["a infant makes noise and is excited", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wIJK3-5y0kA", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["noise, excited, infant", "water, radio, man"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["sWZzXuWYY", "zY3icUyMdh8"], "start_seconds": ["420", "20"], "properties": ["male, speech, banging", "dog, bark, engine"], "captions_pred_video": [null, "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a car is driving and dogs are barking and squealing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xyL9F5VrjkE", "ukg5L09Wpvo"], "start_seconds": ["20", "150"], "properties": ["wind, motor, distance", "clickety-clack, train, whistle"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a person is whistling a tune", "some tunes played by whistling"], "sample_ids": ["scYRUkrFLiQ", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["a, tune, whistle", "tune, play, whistling"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person whistling a song", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "three men talk while wind blows and some liquid flows"], "sample_ids": ["ziUT9IFTkjg", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["background, birds, rustling", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a natural phenomenon", "label": 0}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "an infant crying as a woman laughs"], "sample_ids": ["yYEVLuqEytU", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["animal, pig, background", "a, laugh, infant"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["spYNpeN7rPY", "yDoT73BWsdA"], "start_seconds": ["1", "10"], "properties": ["a clock, ticktock, man", "engine, revs, vehicle"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an audience gives applause", "a man speaks uses a drill"], "sample_ids": ["x6iCUDmRpKQ", "x5eIC7S0fbg"], "start_seconds": ["38", "60"], "properties": ["applause, audience, give", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a group of people are clapping and cheering", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["vzceMbklWc", "s7knHCFW82w"], "start_seconds": ["180", "30"], "properties": ["water, faucet, sink", "blow horn, get close, train"], "captions_pred_video": [null, "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["water is running and a man is speaking", "a train is blowing its horn and its wheels are squealing "], "question": "which is a train", "label": 1}, {"captions": ["an airplane engine runs", "a person uses a saw to cut some wood"], "sample_ids": ["yVPZ2MNWpms", "sHbXC6na9hg"], "start_seconds": ["0", "0"], "properties": ["engine, airplane, runs", "a person, saw, wood"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a car is driving by on the road ", "an engine is idling and vibrating"], "question": "which entity is a person", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "someone is typing on a computer keyboard"], "sample_ids": ["vXlk0lIQBFo", "v0x1odnXtP0"], "start_seconds": ["470", "210"], "properties": ["wind, talk, vocalize", "keyboard, type, computer"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "how to make money on youtube in spanish"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a clock ticktocks", "a infant makes noise and is excited"], "sample_ids": ["v-g-j2uTByM", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks", "noise, excited, infant"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a clock is ticking loudly", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["women speak and laugh as wind blows", "an airplane engine spools and people speak"], "sample_ids": ["un9VQlzgZM", "wTjoRj1se3U"], "start_seconds": ["5", "390"], "properties": ["wind, speak, laugh", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a jet engine is running and people are talking"], "question": "which entity is about a moving object", "label": 1}, {"captions": ["material crumbles into a microphone", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vofpvUo6NAw", "tdWhHV3X25Q"], "start_seconds": ["220", "60"], "properties": ["material, crumbles, microphone", "applause, audience, yells"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a man is speaking and a crowd is clapping"], "question": "which is a live action", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zgUgkpk78xU", "sLUnaPT5gM8"], "start_seconds": ["70", "0"], "properties": ["horn, bell, train", "loud, laughter, intermittent"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a dog barks and whimpers", "a train horn blows as it passes by"], "sample_ids": ["sShpyu2l4YQ", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "horn, blows, train"], "captions_pred_video": ["the puppies are playing with a toy", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a dog is barking and growling", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["scraping and female speech with distant music", "a man speaks as a motor runs in the background"], "sample_ids": ["yHeVV-xeOxQ", "xZepNM9qcRA"], "start_seconds": ["130", "30"], "properties": ["female, speech, music", "background, motor, run"], "captions_pred_video": ["of a girl milking a goat's udder", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xyL9F5VrjkE", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["engine, run, wind", "a woman, something, fried"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "- a woman cooking in the kitchen"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "small dogs yip and bark sharply"], "sample_ids": ["u6jIvCtKarQ", "v-wcQf4BDY0"], "start_seconds": ["70", "120"], "properties": ["a, man, speaks", "bark, yip, sharply"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "an infant crying as a woman laughs"], "sample_ids": ["yNtRmrn0io8", "xhmRY9yhC7c"], "start_seconds": ["210", "20"], "properties": ["storm, distance, strike", "a, laugh, infant"], "captions_pred_video": ["footage of a house in the middle of the night", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["rain falls and thunder roars", "a baby cries and a woman speaks"], "question": "which is not a person", "label": 0}, {"captions": ["a woman speaks and food sizzles while frying", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wTideSjRFS0", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["food, sizzle, woman", "airplane, boy, fly"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about flying", "label": 1}, {"captions": ["a woman talking as an infant is crying", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tMbMDvT50j8", "xKB8O8LTs6s"], "start_seconds": ["12", "70"], "properties": ["a, talk, infant", "music, gunfire, explosion"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby cries and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["water splashes as an animal walks through", "a duck quacks continuously"], "sample_ids": ["w1ir-sZ3Im8", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["animal, water, splashes", "quacks, continuously, duck"], "captions_pred_video": ["footage of a group of people riding horses through a river", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a duck is quacking loudly"], "question": "which animal is more active", "label": 0}, {"captions": ["a rumble grows louder", "people speak as gunfire rings out"], "sample_ids": ["y4MY9mp8-TA", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["loudness, increase, rumble", "gunfire, ring, speak"], "captions_pred_video": ["a helicopter flying in the sky", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a helicopter flies overhead ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "plastic is tapped on while someone speaks"], "sample_ids": ["v7jJS8aAyA", "wvKpEYswXO0"], "start_seconds": ["10", "150"], "properties": ["wind, blows, loudly", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is quieter", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a duck quacks continuously"], "sample_ids": ["zhx6hoYrHeI", "vh30P49Po6s"], "start_seconds": ["160", "30"], "properties": ["engine, sputter, rough", "quacks, continuously, duck"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "water is sprayed across a hard surface"], "sample_ids": ["sOa7g-44Dag", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["background, man, spray", "water, spray, surface"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "spraying followed by silence"], "question": "which entity is sprayed across a hard surface", "label": 1}, {"captions": ["a duck quacks continuously", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["vh30P49Po6s", "vXlk0lIQBFo"], "start_seconds": ["30", "470"], "properties": ["quacks, continuously, duck", "wind, speak, vocalize"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a duck is quacking loudly", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is speaking", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yRx9txMcBl0", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["motors, tires, screech", "a woman, something, fried"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "birds chirp as a man speaks and a younger person speaks"], "sample_ids": ["uC9dtII1KDI", "xl2PIWyXaM"], "start_seconds": ["150", "160"], "properties": ["wind, gusts, distance", "chirp, man, younger person"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", null], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "birds are chirping and people are talking"], "question": "which entity is more likely to be in a city", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zl9Dqx-j7q4", "tDVADusiIoc"], "start_seconds": ["6", "60"], "properties": ["engine, laugh, loud", "water, radio, man"], "captions_pred_video": ["footage of a man driving a car in the dark", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a speedboat passes quickly on the water"], "sample_ids": ["w5W5Kqtc8E", "tjmoSi330GM"], "start_seconds": ["100", "23"], "properties": ["water, splashes, motorboat", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a motorboat speeds through water with wind noise "], "question": "which boat is moving faster", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "wind blows as people chatter quietly"], "sample_ids": ["yDoT73BWsdA", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["engine revs, tires squeal, vehicle", "wind, chatter, people"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage is blurry and out of focus"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["uoGVs9yUqY4", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["multiple, vocalize, wind", "sheep, baa, birds"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["a infant makes noise and is excited", "a telephone rings followed by a woman talking"], "sample_ids": ["wIJK3-5y0kA", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["noise, excited, infant", "ring, talk, woman"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a infant makes noise and is excited", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wIJK3-5y0kA", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["noise, excited, infant", "People, motor, brakes"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a machine beeps continuously"], "sample_ids": ["wTideSjRFS0", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["food, sizzle, woman", "beeps, machine, continuously"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "running water in a faucet with some clinks"], "sample_ids": ["vh30P49Po6s", "zNRChLjqcU"], "start_seconds": ["30", "220"], "properties": ["loud, continuous, quacks", "water, faucet, run"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "water is running from a faucet into a sink"], "question": "which entity is quieter", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vJvryTwuAV8", "vb1fPSDI4c"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "multiple, people, yell"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", null], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking?", "label": 1}, {"captions": ["people speak in a closed space", "a car accelerates and wind blows"], "sample_ids": ["sTpirNYo8vQ", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["people, space, speak", "accelerates, wind, blows"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person sniffles and sneezes", "several insects fly while two men talk"], "sample_ids": ["uRlbY6aoBU", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["sneezes, sniffles, person", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a person?", "label": 0}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a man speaks as a motor runs in the background"], "sample_ids": ["vdoxuJn9lTc", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "background, motor, run"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a child speaks followed by a burp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "small dogs yip and bark sharply"], "sample_ids": ["ugHJF0hfYkg", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["engine, running, continuously", "bark, yip, sharply"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a helicopter is flying overhead ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a duck quacks continuously"], "sample_ids": ["wwyfGO2J4", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["people, applaud, hoot", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["continuous snoring", "a woman speaks as she rubs two objects together"], "sample_ids": ["sLkeqCDJIyw", "vzxHnu-SFEw"], "start_seconds": ["120", "80"], "properties": ["loud, snoring, noise", "two objects, woman, speak"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is silent", "label": 1}, {"captions": ["someone is burping continuously", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y636gklDioE", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["burps, burps, burps", "men, talk, cars"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["food fries in a pan as someone talks and cooks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["ukxt9I7eMMg", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["food, pan, cook", "rooster, crow, background, men"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a rooster?", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "water splashes as an animal walks through"], "sample_ids": ["ylpYOorfH4o", "w1ir-sZ3Im8"], "start_seconds": ["410", "90"], "properties": ["engine, run, loud", "animal, water, splashes"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and an engine is revving", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "water splashes as an animal walks through"], "sample_ids": ["w34HjHr6gAY", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["beeps, squawk, child speaking", "animal, water, splashes"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["someone whistles briefly", "an insect buzzes around continuously"], "sample_ids": ["uFoga8sHpiw", "v25l1jef3JY"], "start_seconds": ["90", "0"], "properties": ["sound, duration, pitch", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a bird in a cage", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person whistles a song", "a fly is buzzing around a microphone "], "question": "which entity buzzes continuously", "label": 1}, {"captions": ["a infant makes noise and is excited", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wIJK3-5y0kA", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["noise, excited, infant", "three men, wind, flow"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a stream of water runs briefly"], "sample_ids": ["w6RTHR6AeAg", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["call, owl, screech", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a horn rings out as a machine runs by"], "sample_ids": ["sZPuqDgX2V0", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["engine, accelerate, intercom", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sOa7g-44Dag", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["audio, scratching, man", "water, radio, man"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a recording of a man speaking?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "water flows as men speak and yell"], "sample_ids": ["yRx9txMcBl0", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["motors, tires, screech", "water, flow, men"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a car accelerates and wind blows"], "sample_ids": ["sfAvvZwdLCY", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["water drains, flushes, water", "accelerates, wind, blows"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["someone snores nearby", "a woman speaks as she rubs two objects together"], "sample_ids": ["spJCm8tD9Zo", "vzxHnu-SFEw"], "start_seconds": ["90", "80"], "properties": ["someone snores, nearby, someone", "two objects, woman, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks while vehicles pass by", "people speaking indiscriminately in the distance with a person snoring loudly nearby"], "sample_ids": ["sK4u5T8hW78", "w2JXXIAdUdg"], "start_seconds": ["30", "10"], "properties": ["a, man, talk", "snoring, distance, person"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person snoring and a dog whimpering"], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "repeated tapping is accompanied by water running and a woman speaking softly"], "sample_ids": ["vfYTJq7nU", "wvKpEYswXO0"], "start_seconds": ["130", "150"], "properties": ["rustling, ducks, quack", "sound, water, running"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is accompanied by water running", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tOSWIURC-4", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["engine, work, nearby", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a lawn mower is running ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wPz6QRAkEb4", "xfaoyyzw2WU"], "start_seconds": ["60", "180"], "properties": ["chirps, tweets, song", "loud, jet engine, roar"], "captions_pred_video": ["a bird in a cage on top of a pole", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["birds are chirping in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "some tunes played by whistling"], "sample_ids": ["sOa7g-44Dag", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["audio, scratching, man", "tune, play, whistling"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a clock ticktocks"], "sample_ids": ["xNMovAf3o50", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["rain, thunder, music", "ticktocks, clock, ticktocks"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["wind blows strongly", "multiple people speak and children yell while water gurgles"], "sample_ids": ["w8uLijTqtlU", "vb1fPSDI4c"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "multiple, people, yell"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "paper is crumpling consistently"], "sample_ids": ["v7jJS8aAyA", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["wind, blows, loudly", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uZesmtKZGSw", "tdWhHV3X25Q"], "start_seconds": ["250", "60"], "properties": ["car, track, man", "applause, audience, yells"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["sZvwOuuPGP0", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "rooster, crow, background, men"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "several insects fly while two men talk"], "sample_ids": ["xl2PIWyXaM", "s-T9OVOiMLo"], "start_seconds": ["160", "330"], "properties": ["chirp, man, younger person", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["birds are chirping and people are talking", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a man speaking and a younger person speaking?", "label": 0}, {"captions": ["a train engine runs and a horn blows", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["zPX9o1uDiI", "y2bVZ7rz-5M"], "start_seconds": ["40", "280"], "properties": ["engine, horn, run", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["children speak as a female ask them questions", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wEBlkGWVWwE", "zj2R0XoFr5k"], "start_seconds": ["260", "50"], "properties": ["female, speak, questions", "airplane, boy, fly"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a boy speaking?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["vbZ-0lGPneg", "tDlfY3nmx1A"], "start_seconds": ["30", "160"], "properties": ["a woman, a television program, a bird", "applause, laugh, man"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["a clock ticktocks briefly", "a heavy rain falls endlessly"], "sample_ids": ["u7C-AEBQM", "wP8ZKrlx3oA"], "start_seconds": ["30", "40"], "properties": ["ticktocks, clock, ticktocks briefly", "heavy, rain, fall"], "captions_pred_video": [null, "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a ticktock of a clock", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["a clock ticktocks in wind", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["yVumC9TGknc", "yLy-WycbVVE"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, wind", "background, people, talk"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a clock ticktocks"], "sample_ids": ["xSKJGCItUWE", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the helicopter flying in the room", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vXlk0lIQBFo", "uEU-Hg5MTN8"], "start_seconds": ["470", "27"], "properties": ["wind, talk, vocalize", "a woman, laughs, animal"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vbr9mHKc8WM", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["noise, loudness, engine", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an engine is idling", "a train blows its whistle and blows its horn "], "question": "which train is making noise", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["smGI3C1NZc", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["water, drain, toilet", "a, chirps, bird"], "captions_pred_video": [null, "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and bees are buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a weapon fires multiple times", "a woman speaks happily and an animal chirps"], "sample_ids": ["sMC07Ucy7kg", "uWAAAL4CIoc"], "start_seconds": ["10", "0"], "properties": ["weapon, fire, multiple", "a woman, chirps, animal"], "captions_pred_video": ["footage is from a car's point of view", null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking and a dog is barking "], "question": "which entity is more passive", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["vddP56-ogds", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["water, flow, laugh", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a machine runs continuously", "an insect buzzes around continuously"], "sample_ids": ["wdXV3Pv0jiY", "v25l1jef3JY"], "start_seconds": ["11", "0"], "properties": ["machine, running, continuously", "buzzes, continuously, insect"], "captions_pred_video": ["footage is blurry and shaky", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a woman speaks followed by another woman whimpering and speaking"], "sample_ids": ["sOa7g-44Dag", "xOZfdgAgJ9o"], "start_seconds": ["30", "40"], "properties": ["background, man, spray", "woman, whimpering, speaking"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of a woman talking to a man in a doctor's office"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a woman is speaking and a baby is crying"], "question": "which entity is a woman speaking?", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wRBHTgrbiwg", "tdWhHV3X25Q"], "start_seconds": ["50", "60"], "properties": ["bird, owl, speak", "applause, audience, yells"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a man speaks as a car is passing by"], "sample_ids": ["v5P-ThUCINM", "sK4u5T8hW78"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wz7N8YRy74I", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["rooster, crow, background, men", "men, talk, cars"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a cat meows and children speak", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["x5cuQjOdM3E", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["cat, speak, children", "female, spraying, scream"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "small dogs yip and bark sharply"], "sample_ids": ["uKCSGgof8gI", "v-wcQf4BDY0"], "start_seconds": ["12", "120"], "properties": ["chirps, distance, signal", "bark, yip, sharply"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["multiple motorcycles pass by as a man speaks", "a flush is followed by gurgling water, then another flush"], "sample_ids": ["zcDwZ6W7E3E", "tqR406bGiE"], "start_seconds": ["180", "40"], "properties": ["man, speak, motorcycles", "flush, water, gurgle"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a toilet is flushed"], "question": "which entity is about water?", "label": 1}, {"captions": ["a dark barks and whimpers", "winds blows roughly as a vehicle races past"], "sample_ids": ["sYj4hpDUZDQ", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["barks, whimpers, dark", "wind, blows, vehicle"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a dog barks and a cat meows", "a jet engine roars and wind blows "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a person snores loudly multiple times at a close distance"], "sample_ids": ["soTOh3zYJfY", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["vehicle, skid, tires", "loud, multiple, distance"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["people speak softly as food sizzles", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yhQ2Lg-7qDY", "w5W5Kqtc8E"], "start_seconds": ["130", "100"], "properties": ["food, sizzle, speak", "wind, blow, vehicle"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man speaks followed by another man speaking outside"], "sample_ids": ["vD6lYD1l0BY", "viuTg1M-dqg"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "two men, speak, follow"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person speaks over rustling leaves", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zOZleIRqZm4", "sLUnaPT5gM8"], "start_seconds": ["80", "0"], "properties": ["rustling, leaves, person", "loud, laughter, intermittent"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a large bell chimes back and forth loudly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w2M4i1mklOA", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "stream, water, flow"], "captions_pred_video": ["footage of an antique clock", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "roadway noise occurs and a truck accelerates"], "sample_ids": ["sEprKHm8Sj8", "tgbONvsP47Y"], "start_seconds": ["90", "0"], "properties": ["noise, loud, buzzing", "noise, truck, accelerate"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving on the road "], "question": "which noise is caused by a truck", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xC8kbrKJmco", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["background, goat, scream", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a goat is bleating ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["wz7N8YRy74I", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "beeps, hit, woman"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "an airplane engine runs"], "sample_ids": ["yRx9txMcBl0", "yVPZ2MNWpms"], "start_seconds": ["40", "0"], "properties": ["accelerates, tires, squeals", "engine, airplane, runs"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a car is driving by on the road "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["paper is crumpling consistently", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["v5cSxLaHADY", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "airplane, boy, fly"], "captions_pred_video": ["footage of the person holding a pair of scissors", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a woman speaks and taps on a hard surface before running tap water"], "sample_ids": ["xjvTpk2Zpr8", "wvKpEYswXO0"], "start_seconds": ["70", "150"], "properties": ["engine, run, wind", "water, tap, run"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is not running", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a stream of water runs briefly"], "sample_ids": ["sHbXC6na9hg", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["a person, saw, wood", "stream, water, run"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["an engine is idling and vibrating", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["white noise and birds chirping", "loud, continuous burping"], "sample_ids": ["wRBHTgrbiwg", "y636gklDioE"], "start_seconds": ["50", "20"], "properties": ["noise, white, chirping", "loud, continuous, burping"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a person burps loudly several times"], "question": "which noise is louder", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "winds blows roughly as a vehicle races past"], "sample_ids": ["wRBHTgrbiwg", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["bird, owl, speak", "wind, blows, vehicle"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a jet engine roars and wind blows "], "question": "which entity is more active", "label": 1}, {"captions": ["people speak softly as food sizzles", "a woman speaks as she rubs two objects together"], "sample_ids": ["yhQ2Lg-7qDY", "vzxHnu-SFEw"], "start_seconds": ["130", "80"], "properties": ["food, sizzle, speak", "two objects, woman, speak"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a woman speaking?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "some men converse over an engine running"], "sample_ids": ["vXlk0lIQBFo", "sCiy7QS1U"], "start_seconds": ["470", "300"], "properties": ["wind, speak, vocalize", "men, converse, engine"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a conversation?", "label": 1}, {"captions": ["birds chirp as a train approaches", "a frog croaks as other frogs croak in the background"], "sample_ids": ["xM4joTqDVp4", "yswmmRZFItk"], "start_seconds": ["160", "0"], "properties": ["bird, chirp, train", "background, frog, croak"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a frog is croaking"], "question": "which entity is a solitary animal", "label": 1}, {"captions": ["people speak and tapping occurs", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["tFCUUGdREgA", "t25U-v4k4ts"], "start_seconds": ["70", "40"], "properties": ["people, tap, speak", "a, chirps, bird"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking and bees are buzzing"], "question": "which entity has a bird chirp?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "pigeons vocalize and birds chirp"], "sample_ids": ["xERFUeZONz8", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["ring, approach, traffic", "vocalize, bird, chirp"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "of the pigeon in the cage"], "captions_pred_audio": ["an emergency vehicle siren blares", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["uOpoD0gGXcs", "t25U-v4k4ts"], "start_seconds": ["120", "40"], "properties": ["chirps, woman, bird", "a, chirps, bird"], "captions_pred_video": ["a herd of cows grazing in the field", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a man is speaking and bees are buzzing"], "question": "which entity is a response to a woman chirping for the birds?", "label": 0}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "wind blowing followed by a zoom"], "sample_ids": ["wP8ZKrlx3oA", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["rain, storm, thunder", "wind, blow, zoom"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a heavy rain is falling on a surface", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a weather event", "label": 0}, {"captions": ["birds chirp and an insect buzzes around", "waves crash against a shoreline and people speak"], "sample_ids": ["t97k0cejSQE", "yFB25fqfU8I"], "start_seconds": ["250", "300"], "properties": ["bird, chirp, insect", "wave, crash, shoreline"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and objects are moved around", "small dogs yip and bark sharply"], "sample_ids": ["yPUYU6t3rwo", "v-wcQf4BDY0"], "start_seconds": ["370", "120"], "properties": ["birds chirp, objects are moved around, birds", "bark, yip, sharply"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["insects buzz and a man speaks", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "plastic is tapped on while someone speaks"], "sample_ids": ["zcDwZ6W7E3E", "wvKpEYswXO0"], "start_seconds": ["180", "150"], "properties": ["man, speak, motorcycles", "plastic, tap, speak"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a man speaks in the background while a slow tick repeats", "a stream of water runs briefly"], "sample_ids": ["vZAw4apG0Es", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["background, tick, repeat", "stream, water, run"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a clock is ticking and people are talking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a woman speaks happily and an animal chirps"], "sample_ids": ["wRV8yMk886E", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["liquid, spray, nozzle", "a woman, chirps, animal"], "captions_pred_video": ["two cars are parked in a parking lot at night", null], "captions_pred_audio": ["a man speaks followed by a loud burst", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a mechanical buzzing getting louder"], "sample_ids": ["siJFXfGWgDk", "sEprKHm8Sj8"], "start_seconds": ["50", "90"], "properties": ["a, bird, vehicle", "noise, loud, buzzing"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a machine beeps continuously"], "sample_ids": ["vBslzh7saPw", "y682ml90jGw"], "start_seconds": ["90", "11"], "properties": ["power, scream, increase", "beeps, machine, continuously"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["zVacuqSb4LI", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["blares, fades, train", "motor noise, horn, siren"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sapQIQUhFc", "uEU-Hg5MTN8"], "start_seconds": ["280", "27"], "properties": ["water, trickles, flow", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "wind blows strongly and a young man speaks"], "sample_ids": ["uWPRNLnpy7Y", "vs65y4qmyBE"], "start_seconds": ["10", "340"], "properties": ["accelerate, laugh, vehicle", "wind, blows, strongly"], "captions_pred_video": ["is taken from a car driving down the street", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a heavy engine is running and men are speaking "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a motorcycle engine is idling", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vZAqdHZ81yA", "xBxDz0CFVn0"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "stream, water, flow"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage is blurry and out of focus"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "an infant crying as a woman laughs"], "sample_ids": ["yYEVLuqEytU", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["grunt, slurp, background", "a, laugh, infant"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a motorcycle engine is idling"], "sample_ids": ["xV7Mg1QucSc", "vZAqdHZ81yA"], "start_seconds": ["14", "180"], "properties": ["alarm, ticktocks, laughs", "engine, motorcycle, idling"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "a motorcycle is parked on the side of the road with its rear end facing the viewer"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "an engine is idling loudly"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a stream of water flows as people talk and wind blows"], "sample_ids": ["y4tPJXBKDig", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["a, noise, talk", "stream, water, flow"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "a boat travels through the waves as the wind blows loudly and a man speaks over a radio"], "sample_ids": ["vbpKkWvfOu4", "tDVADusiIoc"], "start_seconds": ["560", "60"], "properties": ["a, woman, man", "wind, radio, waves"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking over a radio?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a siren comes to life as a horn blares"], "sample_ids": ["wSVhSdj0F0", "u--KhUW8l1Y"], "start_seconds": ["10", "0"], "properties": ["horn honks, keys jingle, electronic beep", "horn, siren, life"], "captions_pred_video": [null, "a firefighter spraying water from a fire hydrant at night"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a fire truck siren blares and a horn blows "], "question": "which entity is a siren?", "label": 1}, {"captions": ["a woman talking as an infant is crying", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["tMbMDvT50j8", "s7knHCFW82w"], "start_seconds": ["12", "30"], "properties": ["a, talk, infant", "blow horn, get close, train"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a baby cries and a woman speaks", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a vehicle accelerates squealing tires"], "sample_ids": ["w5W5Kqtc8E", "sd7xVssqlw"], "start_seconds": ["100", "50"], "properties": ["water, splashes, motorboat", "accelerates, tires, squealing"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a man speaks as a motor runs in the background"], "sample_ids": ["yI-KvObbDoY", "xZepNM9qcRA"], "start_seconds": ["260", "30"], "properties": ["sound, smack, wind", "background, motor, run"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["someone snores nearby", "small dogs yip and bark sharply"], "sample_ids": ["spJCm8tD9Zo", "v-wcQf4BDY0"], "start_seconds": ["90", "120"], "properties": ["someone snores, nearby, someone", "bark, yip, sharply"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a person is snoring loudly", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a propeller rotates loudly and intensely", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["ugHJF0hfYkg", "zj2R0XoFr5k"], "start_seconds": ["10", "50"], "properties": ["loud, intense, propeller", "airplane, boy, fly"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman speaks while a helicopter flies overhead "], "question": "which is a moving object", "label": 1}, {"captions": ["a man is filing a hard object", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["vveS8HT7Uog", "xV7Mg1QucSc"], "start_seconds": ["100", "14"], "properties": ["a man, hard, object", "alarm, ticktocks, laughs"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "an alarm clock ticks and a woman laughs"], "question": "which entity is about a clock ticktocking and a man laughing?", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["zY3icUyMdh8", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["dog, bark, engine", "background, male, female"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a lawn mower is running and men are speaking "], "question": "which entity has a male and female voice in the background?", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "three men talk while wind blows and some liquid flows"], "sample_ids": ["u5RmF3c3Aw", "vJ7JPEFhyLA"], "start_seconds": ["60", "16"], "properties": ["engine, car, zoom", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a car zooming by?", "label": 0}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["u--KhUW8l1Y", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["engine, sound, horn", "male, duck, laugh"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", null], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["water flows followed by women screaming", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["w5W5Kqtc8E", "uEU-Hg5MTN8"], "start_seconds": ["100", "27"], "properties": ["water, flow, women", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman laughing?", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a beep repeats multiple times"], "sample_ids": ["xKB8O8LTs6s", "y682ml90jGw"], "start_seconds": ["70", "11"], "properties": ["music, gunshots, explosion", "beep, repeat, multiple"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a beeping sound is being made "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "wind blowing followed by a zoom"], "sample_ids": ["ylpYOorfH4o", "vr8ZXjEBhMQ"], "start_seconds": ["410", "150"], "properties": ["motor, run, steady", "wind, blow, zoom"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and an engine is revving", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "an engine runs loudly"], "sample_ids": ["vqZuVbG6-HI", "vqZuVbG6-HI"], "start_seconds": ["130", "130"], "properties": ["background, male, female", "loud, engine, run"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a child speaks in closed space"], "sample_ids": ["w8uLijTqtlU", "yW6FWLSLkx4"], "start_seconds": ["70", "40"], "properties": ["wind, microphone, noise", "child, space, speak"], "captions_pred_video": ["footage is blurry and shaky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sWZzXuWYY", "vb1fPSDI4c"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person is whistling a tune", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["scYRUkrFLiQ", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["a, tune, whistle", "male, duck, laugh"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", null], "captions_pred_audio": ["a person whistling a song", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a clicking followed by some people laughing and a kid speaking"], "sample_ids": ["wvKpEYswXO0", "vz8868znkVQ"], "start_seconds": ["150", "60"], "properties": ["sound, water, running", "audio, click, kid speaking"], "captions_pred_video": ["of the person preparing food in the kitchen", "a video of a plane flying over a cloudy sky"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a baby is laughing and breathing with background noise "], "question": "which entity has a woman speaking softly?", "label": 0}, {"captions": ["people cheer as a vehicle engine revs", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xjhAnI2q6hM", "sSMl2vc3ek"], "start_seconds": ["6", "20"], "properties": ["engine revs, vehicle, people", "loud, multiple, distance"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a person snoring loudly"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["xl2PIWyXaM", "sLUnaPT5gM8"], "start_seconds": ["160", "0"], "properties": ["chirp, man, younger person", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["birds are chirping and people are talking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["young female child snoring and breathing deeply", "food is frying while a woman speaks"], "sample_ids": ["sAam2NqGhLY", "yhQ2Lg-7qDY"], "start_seconds": ["20", "130"], "properties": ["snoring, breathing, child", "food, woman, speak"], "captions_pred_video": ["of a little girl sleeping on a couch", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a person is snoring", "a faucet is running and a man is speaking"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wz7N8YRy74I", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["rooster, crow, background, people", "People, motor, brakes"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["wDVMhEdTiVw", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["gun, shoot, water", "background, birds, rustling"], "captions_pred_video": ["a blurry image of trees and water in the forest", null], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a heavy rain falls endlessly", "water rushes and then a vehicle zooms past"], "sample_ids": ["wP8ZKrlx3oA", "s4Uz1Ffgo04"], "start_seconds": ["40", "100"], "properties": ["heavy, rain, fall", "water, rushes, vehicle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is moving faster", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a toilet flushes and water drains"], "sample_ids": ["vlJS7LN2XyM", "sfAvvZwdLCY"], "start_seconds": ["30", "20"], "properties": ["background, clocks, ticking", "water drains, flushes, water"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a ticktock of a clock", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["water flows and trickles", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tB7hWb9gTuQ", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["water, flow, trickle", "engine, revs, vehicle"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["water is splashing and gurgling", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a woman speaks happily and an animal chirps"], "sample_ids": ["wP8ZKrlx3oA", "uWAAAL4CIoc"], "start_seconds": ["40", "0"], "properties": ["rain, storm, thunder", "a woman, chirps, animal"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yks4cLgIDMc", "vfYTJq7nU"], "start_seconds": ["170", "130"], "properties": ["background, speaking, child", "rustling, ducks, quack"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "a duck quacks and a woman speaks"], "question": "which entity has a child shouting in the background?", "label": 0}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a infant makes noise and is excited"], "sample_ids": ["xNMovAf3o50", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["rain, thunder, music", "noise, excited, infant"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a duck quacks loudly and continuously"], "sample_ids": ["vdoxuJn9lTc", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["person, burp, girl", "loud, continuous, quacks"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a child speaks followed by a burp", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["xNMovAf3o50", "vlS6YMeWAPo"], "start_seconds": ["0", "40"], "properties": ["rain, thunder, music", "sheep, baa, birds"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a goat bleats and birds chirp"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a car speeding up in the distance"], "sample_ids": ["ul60S8TXDA8", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["sound, distance, bell", "distance, car, speed"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", null], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a girl speaks followed by a scream and more girls talking", "dishes cling together then a man begins to speak"], "sample_ids": ["uYT5gxnyMWM", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["a, scream, girl", "cling, speak, dishes"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "mechanisms are operating and water is splashing "], "question": "which entity is about a girl speaking followed by a scream and more girls talking?", "label": 0}, {"captions": ["a girl speaks followed by a scream and more girls talking", "an infant crying as a woman laughs"], "sample_ids": ["uYT5gxnyMWM", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["a, scream, girl", "a, laugh, infant"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "some men converse over an engine running"], "sample_ids": ["wTideSjRFS0", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["food, sizzle, woman", "men, converse, engine"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman speaking as frying food sizzles?", "label": 0}, {"captions": ["a baby cries and a woman speaks", "an infant crying frantically"], "sample_ids": ["tMbMDvT50j8", "zwOBqeFTgiU"], "start_seconds": ["12", "30"], "properties": ["a, cry, woman", "cry, infant, frantically"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "of the baby crying in the car seat"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries loudly"], "question": "which entity is crying frantically", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a car speeding up in the distance"], "sample_ids": ["vZAw4apG0Es", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, clock, ticktocks", "distance, car, speed"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "people cheer as a vehicle engine revs"], "sample_ids": ["rqu8iB22IY", "xjhAnI2q6hM"], "start_seconds": ["5", "6"], "properties": ["sound, repeats, laugh", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yswmmRZFItk", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["background, frog, croak", "men, talk, cars"], "captions_pred_video": ["a close up of a frog in the water", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a frog is croaking", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a machine beeps continuously", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["y682ml90jGw", "tdWhHV3X25Q"], "start_seconds": ["11", "60"], "properties": ["beeps, machine, continuously", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking and a crowd is clapping"], "question": "which entity is a response to a performance", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wP8ZKrlx3oA", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["heavy, rain, fall", "a woman, laughs, animal"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "small dogs yip and bark sharply"], "sample_ids": ["ukxt9I7eMMg", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["food, pan, cook", "bark, yip, sharply"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking with light rustling", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zOZleIRqZm4", "xfaoyyzw2WU"], "start_seconds": ["80", "180"], "properties": ["light, rustling, man", "loud, jet engine, roar"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zgUgkpk78xU", "uZesmtKZGSw"], "start_seconds": ["70", "250"], "properties": ["horn, bells, ring", "men, talk, cars"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a baby laugh at a sputter", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sLUnaPT5gM8", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["laugh, sputter, baby", "engine, idle, woman"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity is a person", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a stream of water runs briefly"], "sample_ids": ["ugHJF0hfYkg", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["engine, running, continuously", "stream, water, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving on a wet road "], "question": "which entity is running continuously", "label": 0}, {"captions": ["a person whistles and clicks a mouse", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zCrAfDfv6-A", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["person, mouse, click", "a woman, something, fried"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["tapping occurs then a baby cries", "music plays and a woman speaks on a radio before gunshots are fired"], "sample_ids": ["wIJK3-5y0kA", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["a, cry, baby", "music, radio, gunshots"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby cries and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is about a baby crying?", "label": 0}, {"captions": ["birds chirp as a train approaches", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xM4joTqDVp4", "vJ7JPEFhyLA"], "start_seconds": ["160", "16"], "properties": ["bird, chirp, train", "three men, wind, flow"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a train?", "label": 0}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a man speaks as a motor runs in the background"], "sample_ids": ["w6RTHR6AeAg", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["call, owl, screech", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "birds chirp and objects are moved around"], "sample_ids": ["xZepNM9qcRA", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["background, motor, run", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "paper folding and crinkling"], "sample_ids": ["yYEVLuqEytU", "zPpG3RD8lSs"], "start_seconds": ["40", "20"], "properties": ["grunt, slurp, background", "paper, fold, crinkle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["several sheep bleat and a man speaks", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "water flows as men speak and yell"], "sample_ids": ["x4a9YGIw4ok", "vJ7JPEFhyLA"], "start_seconds": ["120", "16"], "properties": ["water, gurgles, stops", "water, flow, men"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet flushes and water splashes", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tDVADusiIoc", "zFjIWfSD-4"], "start_seconds": ["60", "410"], "properties": ["man, radio, blows", "People, motor, brakes"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man speaking on a radio as wind blows?", "label": 0}, {"captions": ["a car accelerates and wind blows", "people speak as gunfire rings out"], "sample_ids": ["u0TrcHhkPQ", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["accelerates, wind, blows", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wnpJndXuxLc", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["beeps, loud, whistle", "engine, idle, woman"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "plastic is tapped on while someone speaks"], "sample_ids": ["wTjoRj1se3U", "wvKpEYswXO0"], "start_seconds": ["390", "150"], "properties": ["engine, run, people", "plastic, tap, speak"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a jet engine is running and people are talking", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a vehicle accelerates squealing tires"], "sample_ids": ["zkKdxzNC97Y", "sd7xVssqlw"], "start_seconds": ["27", "50"], "properties": ["hard, surface, door", "accelerates, tires, squealing"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "a man speaks as a car is passing by"], "sample_ids": ["uRlbY6aoBU", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["a, distance, sneeze", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "water is sprayed across a hard surface"], "sample_ids": ["w0xsN8X18Y", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["music, surface, rain", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "spraying followed by silence"], "question": "which entity is sprayed across a hard surface?", "label": 1}, {"captions": ["a helicopter engine runs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["t5ZbXbniOWk", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["engine, helicopter, run", "a woman, a television program, a bird"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a bird?", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "pigeons vocalize and birds chirp"], "sample_ids": ["x4a9YGIw4ok", "uiS58TNyUiw"], "start_seconds": ["120", "430"], "properties": ["water, gurgles, stops", "vocalize, bird, chirp"], "captions_pred_video": ["footage is blurry and out of focus", "of the pigeon in the cage"], "captions_pred_audio": ["a toilet flushes and water splashes", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["food is frying while a woman speaks", "wind blowing followed by a zoom"], "sample_ids": ["yhQ2Lg-7qDY", "vr8ZXjEBhMQ"], "start_seconds": ["130", "150"], "properties": ["food, woman, speak", "wind, blow, zoom"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a faucet is running and a man is speaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "some men converse over an engine running"], "sample_ids": ["xyL9F5VrjkE", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["engine, run, wind", "men, converse, engine"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["continuous snoring", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["sLkeqCDJIyw", "wqZ135Ssz0"], "start_seconds": ["120", "60"], "properties": ["loud, snoring, noise", "man, woman, squawks"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["paper folding and crinkling", "several insects fly while two men talk"], "sample_ids": ["zPpG3RD8lSs", "s-T9OVOiMLo"], "start_seconds": ["20", "330"], "properties": ["paper, fold, crinkle", "several, fly, men"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a bird is chirping and tweeting a bird song"], "sample_ids": ["wIvYjuR3nrg", "wPz6QRAkEb4"], "start_seconds": ["9", "60"], "properties": ["birds, pigeons, vocalize", "chirps, tweets, song"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "a bird in a cage on top of a pole"], "captions_pred_audio": ["birds are chirping and cooing", "birds are chirping in the background "], "question": "which bird is singing", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "a male speaks and another male speaks"], "sample_ids": ["tK4VlLsNxak", "viuTg1M-dqg"], "start_seconds": ["120", "30"], "properties": ["a, dial, telephone", "two males, speaking, male"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a muffled toilet flushes and the water drains"], "sample_ids": ["uZesmtKZGSw", "sfAvvZwdLCY"], "start_seconds": ["250", "20"], "properties": ["car, track, man", "flushes, drains, water"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a toilet is flushed"], "question": "which entity has water draining?", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["zhx6hoYrHeI", "y2bVZ7rz-5M"], "start_seconds": ["160", "280"], "properties": ["engine, sputter, rough", "motor noise, horn, siren"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "pigeons vocalize and birds chirp"], "sample_ids": ["zl9Dqx-j7q4", "uiS58TNyUiw"], "start_seconds": ["6", "430"], "properties": ["engine, laugh, loud", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a man driving a car in the dark", "of the pigeon in the cage"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["continuous sneezing together with speech", "a duck quacks continuously"], "sample_ids": ["x4dZyf9Gbj0", "vh30P49Po6s"], "start_seconds": ["130", "30"], "properties": ["continuous, sneeze, speech", "quacks, continuously, duck"], "captions_pred_video": ["footage is blurry and out of focus", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman sneezes and speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a car accelerates and wind blows"], "sample_ids": ["ugHJF0hfYkg", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["engine, idle, continuously", "accelerates, wind, blows"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["w5W5Kqtc8E", "w34HjHr6gAY"], "start_seconds": ["100", "30"], "properties": ["wind, blow, vehicle", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "water flows and trickles"], "sample_ids": ["vbr9mHKc8WM", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["an engine is idling", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water pouring and bubbling", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uyRfq-jKPpo", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["water, bubbles, pouring", "three men, wind, flow"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water is running from a faucet", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a liquid flowing?", "label": 1}, {"captions": ["someone whistles a song", "a man speaks as a car is passing by"], "sample_ids": ["sIXTftIuUgw", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["someone, song, whistle", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["xERFUeZONz8", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["ring, approach, traffic", "loud, jet engine, roar"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an emergency vehicle siren blares", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "people applaud and hoot and chat quietly"], "sample_ids": ["tQWGZLItBXk", "wwyfGO2J4"], "start_seconds": ["170", "90"], "properties": ["music, person, ding", "people, applaud, hoot"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "people are clapping and speaking with background noise "], "question": "which entity has more people", "label": 1}, {"captions": ["a small engine spits as it runs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sZvwOuuPGP0", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["spits, engine, runs", "airplane, boy, fly"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a medium engine is running ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["food is frying while a woman speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yhQ2Lg-7qDY", "xBxDz0CFVn0"], "start_seconds": ["130", "30"], "properties": ["food, woman, speak", "stream, water, flow"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage is blurry and out of focus"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["dogs barking and whimpering", "a baby cries and a woman speaks"], "sample_ids": ["tIY7qOV3rEM", "tMbMDvT50j8"], "start_seconds": ["0", "12"], "properties": ["barking, whimpering, dog", "a, cry, woman"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["distant humming of an engine", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yVPZ2MNWpms", "wz7N8YRy74I"], "start_seconds": ["0", "30"], "properties": ["sound, distance, engine", "rooster, crow, background, men"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster crow?", "label": 1}, {"captions": ["people speak and tapping occurs", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tFCUUGdREgA", "xfaoyyzw2WU"], "start_seconds": ["70", "180"], "properties": ["people, tap, speak", "loud, jet engine, roar"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a child speaks in closed space"], "sample_ids": ["wPz6QRAkEb4", "yW6FWLSLkx4"], "start_seconds": ["60", "40"], "properties": ["chirps, tweets, song", "child, space, speak"], "captions_pred_video": ["a bird in a cage on top of a pole", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds are chirping in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sNB8zxXneIM", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["several, quack, cocks", "music, gunfire, explosion"], "captions_pred_video": ["a group of geese in a cage", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zO-LSSY92ZM", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["liquid, surface, sound", "a woman, something, fried"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "- a woman cooking in the kitchen"], "captions_pred_audio": ["steam is hissing and hissing", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking", "label": 1}, {"captions": ["scraping and female speech with distant music", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["yHeVV-xeOxQ", "x6ijhqRY38s"], "start_seconds": ["130", "250"], "properties": ["female, speech, music", "something metal, glass, hit"], "captions_pred_video": ["of a girl milking a goat's udder", "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking and dishes are clanging "], "question": "which entity is about something hitting something?", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["x6ijhqRY38s", "wqZ135Ssz0"], "start_seconds": ["250", "60"], "properties": ["something metal, glass, hit", "two men, woman, birds"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zdYdyF9-m8U", "vYkA3cfXp5Q"], "start_seconds": ["7", "30"], "properties": ["wind, crash, shoreline", "engine, accelerate, idle"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["waves crash and wind blows ", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a jet engine spools up and takes off", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vBslzh7saPw", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["engine, spools, takes", "three men, wind, flow"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a moving object", "label": 0}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vuUVPzd2FXw", "zFjIWfSD-4"], "start_seconds": ["160", "410"], "properties": ["a, steam, release", "People, motor, brakes"], "captions_pred_video": ["of the person cooking on the grill with a spatula", null], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "a woman speaks as she rubs two objects together"], "sample_ids": ["xSKJGCItUWE", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["engine, work, child", "two objects, woman, speak"], "captions_pred_video": ["footage of the helicopter flying in the room", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["an airplane engine runs", "water flows and trickles"], "sample_ids": ["yVPZ2MNWpms", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "water, flow, trickle"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car is driving by on the road ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "birds chirp and objects are moved around"], "sample_ids": ["yswmmRZFItk", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["background, frog, croak", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a close up of a frog in the water", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a frog is croaking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks as several small engines run", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["u9A6VZQCZpU", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["a, man, talk", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man is speaking with wind noise in the background "], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["a wooden clack accompanies nearby chirping birds", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yeFvk9x0wWI", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["clack, bird, chirp", "a woman, something, fried"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a vehicle engine accelerating then running on idle"], "sample_ids": ["ukxt9I7eMMg", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["continuous, woman, speaking", "engine, accelerate, idle"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an airplane engine runs", "roadway noise occurs and a truck accelerates"], "sample_ids": ["yVPZ2MNWpms", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["engine, airplane, runs", "noise, truck, accelerate"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a car is driving by on the road ", "a car is driving on the road "], "question": "which is not a source of noise", "label": 0}, {"captions": ["a duck quacks loudly and continuously", "birds chirp and objects are moved around"], "sample_ids": ["vh30P49Po6s", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["loud, continuous, quacks", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a duck is quacking loudly", "insects buzz and a man speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a drill drills through something then people begin laughing"], "sample_ids": ["xvDdE3zNf8Y", "tEE3MpBt1sg"], "start_seconds": ["120", "50"], "properties": ["a, female, speaks", "drill, something, laugh"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a woman speaks and crumples paper", "people are laughing breathing and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a infant makes noise and is excited"], "sample_ids": ["u21-Z5gJCB8", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "noise, excited, infant"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person sniffles and sneezes", "people speak as gunfire rings out"], "sample_ids": ["uRlbY6aoBU", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["sneezes, sniffles, person", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "someone is typing on a computer keyboard"], "sample_ids": ["sZPuqDgX2V0", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["engine, accelerate, intercom", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a person is typing on a keyboard"], "question": "which entity is stationary", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "wind blows as people chatter quietly"], "sample_ids": ["rwtmaKiCcQU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["nozzle, depressed, spray can", "wind, chatter, people"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage is blurry and out of focus"], "captions_pred_audio": ["spraying and people speaking", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone snores nearby", "a man speaks as a motor runs in the background"], "sample_ids": ["spJCm8tD9Zo", "xZepNM9qcRA"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "background, motor, run"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person is snoring loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["children speak as a female ask them questions", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["wEBlkGWVWwE", "wDVMhEdTiVw"], "start_seconds": ["260", "30"], "properties": ["female, speak, questions", "gun, shoot, water"], "captions_pred_video": ["shows a person writing on the whiteboard", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a game", "label": 1}, {"captions": ["an airplane engine runs", "a woman speaks as she rubs two objects together"], "sample_ids": ["yVPZ2MNWpms", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["engine, airplane, runs", "two objects, woman, speak"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a car is driving by on the road ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is moving", "label": 0}, {"captions": ["a female speaks softly as paper crinkles", "people speak as gunfire rings out"], "sample_ids": ["xvDdE3zNf8Y", "wqTCwqVRDlk"], "start_seconds": ["120", "80"], "properties": ["a, female, speaks", "gunfire, ring, speak"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a goat bleats and someone makes a calling noise", "a clock ticktocks"], "sample_ids": ["vlS6YMeWAPo", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["noise, bleat, call", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a goat bleats and birds chirp", "a clock is ticking loudly"], "question": "which entity makes a ticktocks noise", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vZAw4apG0Es", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["background, clock, ticktocks", "female, spraying, scream"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a train engine runs and a horn blows"], "sample_ids": ["wz7N8YRy74I", "zPX9o1uDiI"], "start_seconds": ["30", "40"], "properties": ["rooster, crow, background, people", "engine, horn, run"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is a train", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a woman speaks happily and an animal chirps"], "sample_ids": ["sAam2NqGhLY", "uWAAAL4CIoc"], "start_seconds": ["20", "0"], "properties": ["snoring, breathing, child", "a woman, chirps, animal"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "paper is crumpling consistently"], "sample_ids": ["t97k0cejSQE", "v5cSxLaHADY"], "start_seconds": ["250", "0"], "properties": ["bird, chirp, insect", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "an electric engine works nearby followed by a child talking"], "sample_ids": ["vimzuGQvdcU", "xSKJGCItUWE"], "start_seconds": ["30", "10"], "properties": ["a, man, yells", "engine, work, child"], "captions_pred_video": ["a group of people are rafting down a river", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a high pitched engine is running and a child speaks"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["goats bleat and metal clings", "a car speeding up in the distance"], "sample_ids": ["tH17JPjDPnc", "u0TrcHhkPQ"], "start_seconds": ["260", "20"], "properties": ["bleat, metal, clings", "distance, car, speed"], "captions_pred_video": ["feed of the goats eating hay in the barn", null], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "an engine idles consistently before sputtering some"], "sample_ids": ["yRx9txMcBl0", "rwTERCUno"], "start_seconds": ["40", "90"], "properties": ["accelerates, tires, squeals", "engine, idle, sputter"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "an engine is idling and vibrating"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["birds chirp as a train approaches", "a clock ticktocks"], "sample_ids": ["xM4joTqDVp4", "v-g-j2uTByM"], "start_seconds": ["160", "30"], "properties": ["bird, chirp, train", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a cat meows and children speak", "water flows and trickles"], "sample_ids": ["x5cuQjOdM3E", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["cat, speak, children", "water, flow, trickle"], "captions_pred_video": ["a black background with an airplane flying in the sky", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a cat meows and a woman speaks", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a helicopter engine runs", "small dogs yip and bark sharply"], "sample_ids": ["t5ZbXbniOWk", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["engine, helicopter, run", "bark, yip, sharply"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a helicopter is flying overhead ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "paper is crumpling consistently"], "sample_ids": ["su6FAOcOA8c", "v5cSxLaHADY"], "start_seconds": ["4", "0"], "properties": ["engine, idle, woman", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "winds blows roughly as a vehicle races past"], "sample_ids": ["vbpKkWvfOu4", "xjvTpk2Zpr8"], "start_seconds": ["560", "70"], "properties": ["a, woman, man", "wind, blows, vehicle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a jet engine roars and wind blows "], "question": "which entity is a person", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["y2ZBGpgbhHM", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["dog, chirp, breathe", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["birds chirping and a dog panting", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a machine engine runs and a man speaks"], "sample_ids": ["u21-Z5gJCB8", "vs65y4qmyBE"], "start_seconds": ["30", "340"], "properties": ["background, voice, man", "engine, run, man"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a heavy engine is running and men are speaking "], "question": "which entity has a man speaking with another voice speaking in the background?", "label": 0}, {"captions": ["a woman speaks and other women and a man talk with her", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vbpKkWvfOu4", "tdWhHV3X25Q"], "start_seconds": ["560", "60"], "properties": ["a, woman, man", "applause, audience, yells"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "paper is crumpling consistently"], "sample_ids": ["xvDdE3zNf8Y", "v5cSxLaHADY"], "start_seconds": ["120", "0"], "properties": ["a, female, speaks", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman speaks and crumples paper", "paper is crumpled and crinkled"], "question": "which entity is crumpling consistently", "label": 1}, {"captions": ["a baby laugh at a sputter", "a stream of water runs briefly"], "sample_ids": ["sLUnaPT5gM8", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["laugh, sputter, baby", "stream, water, run"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["material crumbles into a microphone", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["vofpvUo6NAw", "ziUT9IFTkjg"], "start_seconds": ["220", "10"], "properties": ["material, crumbles, microphone", "background, birds, rustling"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", null], "captions_pred_audio": ["paper is being crumpled and crinkled", "birds are chirping and a chime is ringing "], "question": "which entity is more likely to be found in a forest", "label": 1}, {"captions": ["some men converse over an engine running", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["sCiy7QS1U", "tIY7qOV3rEM"], "start_seconds": ["300", "0"], "properties": ["men, converse, engine", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": [null, "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a dog is barking and a cat is meowing"], "question": "which animal is barking", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "a steam engine runs and whistles as it passes by"], "sample_ids": ["u5RmF3c3Aw", "se87d6yxEOA"], "start_seconds": ["60", "10"], "properties": ["engine, car, zoom", "run, whistle, pass"], "captions_pred_video": [null, "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a train is moving and blowing its whistle "], "question": "which entity is a steam engine?", "label": 1}, {"captions": ["a cat meows and children speak", "a man speaks as a car is passing by"], "sample_ids": ["x5cuQjOdM3E", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["cat, speak, children", "a, car, pass"], "captions_pred_video": ["a black background with an airplane flying in the sky", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vf44CgrjT0A", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["loud, long, person", "men, talk, cars"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a loud burp", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "water flows and trickles"], "sample_ids": ["vVhthZ45k3Y", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["cat, purr, hiss", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and out of focus", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "an infant crying as a woman laughs"], "sample_ids": ["vW4x7S1VfQc", "xhmRY9yhC7c"], "start_seconds": ["150", "20"], "properties": ["clacking, oil, woman", "a, laugh, infant"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["food sizzles in a frying pan", "a baby cries and a woman speaks"], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["leaves rustle while man speaks", "a steam engine runs and whistles as it passes by"], "sample_ids": ["zOZleIRqZm4", "se87d6yxEOA"], "start_seconds": ["80", "10"], "properties": ["leaves, rustle, speak", "run, whistle, pass"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a train is moving and blowing its whistle "], "question": "which entity is moving", "label": 1}, {"captions": ["a car accelerates and wind blows", "an engine runs loudly"], "sample_ids": ["u0TrcHhkPQ", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["accelerates, wind, blows", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "paper is crumpling consistently"], "sample_ids": ["w0xsN8X18Y", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["music, surface, rain", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a horn honks and then loudly blares", "a loud engine muffles a man as he speaks"], "sample_ids": ["wnpJndXuxLc", "xyx6eNVEYRY"], "start_seconds": ["50", "380"], "properties": ["horn, honk, loud", "loud, engine, muffles"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["ylpYOorfH4o", "zj2R0XoFr5k"], "start_seconds": ["410", "50"], "properties": ["engine, running, wind", "airplane, boy, fly"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "water splashes as an animal walks through"], "sample_ids": ["vbZ-0lGPneg", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["a woman, a television program, a bird", "animal, water, splashes"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a vehicle accelerates and squeals tires"], "sample_ids": ["xMXvkIcaG0Y", "yRx9txMcBl0"], "start_seconds": ["30", "40"], "properties": ["sound, humming, rattling", "accelerates, tires, squeals"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["an engine is revving and accelerating ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xfaoyyzw2WU", "tDVADusiIoc"], "start_seconds": ["180", "60"], "properties": ["loud, jet engine, roar", "water, radio, man"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which is louder", "label": 1}, {"captions": ["a helicopter engine runs continuously", "pigeons vocalize and birds chirp"], "sample_ids": ["ugHJF0hfYkg", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["engine, running, continuously", "vocalize, bird, chirp"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of the pigeon in the cage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["water flows as a woman laughs and a man speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vddP56-ogds", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["water, flow, laugh", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "an infant crying as a woman laughs"], "sample_ids": ["vf44CgrjT0A", "xhmRY9yhC7c"], "start_seconds": ["20", "20"], "properties": ["loud, long, person", "a, laugh, infant"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a loud burp", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a car speeding up in the distance"], "sample_ids": ["s6DESzUTGjY", "u0TrcHhkPQ"], "start_seconds": ["16", "20"], "properties": ["wind, laugh, woman", "distance, car, speed"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", null], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yZp6xizR0yU", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["animal, bleat, cry", "a woman, something, fried"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman talking?", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yLy-WycbVVE", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["background, people, talk", "engine, laugh, loud"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a man sprays as a scraping occurs in the background"], "sample_ids": ["uYT5gxnyMWM", "sOa7g-44Dag"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "background, man, spray"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and rubbing his hands together "], "question": "which entity has a female spraying?", "label": 0}, {"captions": ["white noise and birds chirping", "a man speaks followed by another man speaking outside"], "sample_ids": ["wRBHTgrbiwg", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["noise, white, chirping", "two men, speak, follow"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "people cheer as a vehicle engine revs"], "sample_ids": ["uEU-Hg5MTN8", "xjhAnI2q6hM"], "start_seconds": ["27", "6"], "properties": ["a woman, laughs, animal", "engine revs, vehicle, people"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["a horse runs while two women talk", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sdvI1mHAsc", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["two women, horse, run", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wDVMhEdTiVw", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["gun, shoot, water", "loud, multiple, distance"], "captions_pred_video": ["a blurry image of trees and water in the forest", null], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "someone snores nearby"], "sample_ids": ["zofjfKhqLk8", "spJCm8tD9Zo"], "start_seconds": ["10", "90"], "properties": ["background, metal, clings", "someone snores, nearby, someone"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wztCSUxOf8", "sLUnaPT5gM8"], "start_seconds": ["130", "0"], "properties": ["a crowd, yells, applauds", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs barking and whimpering", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tIY7qOV3rEM", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["barking, whimpering, dog", "female, spraying, scream"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a toilet flushes and a female speaks"], "sample_ids": ["xyx6eNVEYRY", "yaln9y8I7ms"], "start_seconds": ["380", "230"], "properties": ["loud, engine, muffles", "female, flushes, toilet"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage is blurry and out of focus"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sfAvvZwdLCY", "y8WEcpOlT3I"], "start_seconds": ["20", "40"], "properties": ["water drains, flushes, water", "harsh, wind, blows"], "captions_pred_video": ["footage of the toilet in the bathroom", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with wind noise in the background "], "question": "which entity is a source of water", "label": 0}, {"captions": ["dogs barking and whimpering", "an infant crying frantically"], "sample_ids": ["tIY7qOV3rEM", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "cry, infant, frantically"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of the baby crying in the car seat"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "birds chirp and an insect buzzes around"], "sample_ids": ["tZGN5a7ybxo", "t97k0cejSQE"], "start_seconds": ["60", "250"], "properties": ["ring, train, horn", "bird, chirp, insect"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "a bee on a purple thistle flower"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a bee buzzes and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a vehicle accelerates and squeals tires"], "sample_ids": ["zPX9o1uDiI", "yRx9txMcBl0"], "start_seconds": ["40", "40"], "properties": ["engine, horn, run", "accelerates, tires, squeals"], "captions_pred_video": [null, "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "birds chirp and objects are moved around"], "sample_ids": ["u21-Z5gJCB8", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["background, voice, man", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["shmR4OZtzqA", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["man, engine, idle", "a woman, something, fried"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man speaks while a motor runs", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a telephone rings followed by a woman talking"], "sample_ids": ["wjsXBsc7M40", "tGcFnX0GHI"], "start_seconds": ["10", "0"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "ring, talk, woman"], "captions_pred_video": ["footage of the baby playing with a toothbrush", null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a man speaks as a car is passing by"], "sample_ids": ["zCrAfDfv6-A", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "a, car, pass"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person whistles a song", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a person clicking a mouse?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["w5W5Kqtc8E", "vbZ-0lGPneg"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more calm", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "someone whistles a tune"], "sample_ids": ["xjhAnI2q6hM", "sIXTftIuUgw"], "start_seconds": ["6", "90"], "properties": ["wind, blow, loudly", "someone, tune, whistle"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "paper is crumpling consistently"], "sample_ids": ["vqZuVbG6-HI", "v5cSxLaHADY"], "start_seconds": ["130", "0"], "properties": ["background, male, female", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a door slams shut roughly", "a woman and man are speaking"], "sample_ids": ["zkKdxzNC97Y", "vbpKkWvfOu4"], "start_seconds": ["27", "560"], "properties": ["a door, slams, shut", "two people, speaking, woman, man"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking and a man is speaking"], "question": "which entity is a person", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["y2bVZ7rz-5M", "ziUT9IFTkjg"], "start_seconds": ["280", "10"], "properties": ["motor noise, horn, siren", "background, birds, rustling"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "water is sprayed across a hard surface"], "sample_ids": ["sapQIQUhFc", "sQwlkXjQabo"], "start_seconds": ["280", "10"], "properties": ["liquid, flow, distance", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "spraying followed by silence"], "question": "which entity is a spray of water?", "label": 1}, {"captions": ["someone snores nearby", "paper folding and crinkling"], "sample_ids": ["spJCm8tD9Zo", "zPpG3RD8lSs"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "paper, fold, crinkle"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a person is snoring loudly", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["xyx6eNVEYRY", "vzxHnu-SFEw"], "start_seconds": ["380", "80"], "properties": ["loud, engine, muffles", "two objects, woman, speak"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is rubbing together?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["vddP56-ogds", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["water, flow, laugh", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xBxDz0CFVn0", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["wind, chatter, people", "harsh, wind, blows"], "captions_pred_video": ["footage is blurry and out of focus", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 0}, {"captions": ["people speak in a closed space", "a woman speaks happily and an animal chirps"], "sample_ids": ["sTpirNYo8vQ", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["people, space, speak", "a woman, chirps, animal"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sZPuqDgX2V0", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["engine, accelerate, intercom", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vr8ZXjEBhMQ", "vbZ-0lGPneg"], "start_seconds": ["150", "30"], "properties": ["wind, blow, zoom", "a woman, a television program, a bird"], "captions_pred_video": ["is taken from a motorcycle's point of view", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a video of a natural phenomenon?", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "a car accelerates and wind blows"], "sample_ids": ["yajyRTUQk3U", "u0TrcHhkPQ"], "start_seconds": ["400", "20"], "properties": ["a woman, something, fried", "accelerates, wind, blows"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a man speaks as a car is passing by"], "sample_ids": ["vW4x7S1VfQc", "sK4u5T8hW78"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "a, car, pass"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["xyx6eNVEYRY", "wwyfGO2J4"], "start_seconds": ["380", "90"], "properties": ["loud, engine, muffles", "people, applaud, hoot"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", null], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a person snoring", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["t8tv5YRMJUg", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["a person, snore, loud", "gun, shoot, water"], "captions_pred_video": ["of a man getting his face licked by another man", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks with water running", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["wTideSjRFS0", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["water, running, woman", "male, duck, laugh"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and ducks are quacking"], "question": "which entity has a duck in it?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "people speak as gunfire rings out"], "sample_ids": ["wTideSjRFS0", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["food, sizzle, woman", "gunfire, ring, speak"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a horse runs while two women talk", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sdvI1mHAsc", "wDVMhEdTiVw"], "start_seconds": ["20", "30"], "properties": ["two women, horse, run", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["uEU-Hg5MTN8", "vlS6YMeWAPo"], "start_seconds": ["27", "40"], "properties": ["a woman, laughs, animal", "sheep, baa, birds"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a goat bleats and birds chirp"], "question": "which entity has more animals", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "birds chirp and objects are moved around"], "sample_ids": ["u6jIvCtKarQ", "yPUYU6t3rwo"], "start_seconds": ["70", "370"], "properties": ["a, man, speaks", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "a telephone rings and a bird vocalizes"], "sample_ids": ["wRBHTgrbiwg", "skd2PphS6oI"], "start_seconds": ["50", "190"], "properties": ["birds, chirp, cooing", "ring, bird, vocalize"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a telephone bell rings repeatedly "], "question": "which entity is a bird vocalizing?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a man speaks while turning a water faucet on"], "sample_ids": ["vJrjSeP17yE", "vf9xf3vMsGM"], "start_seconds": ["40", "540"], "properties": ["a person is sleeping, snoring, person", "A man speaks while turning a water faucet on."], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while water is running in the background"], "question": "which entity is a man?", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a toilet flushes and a female speaks"], "sample_ids": ["yYEVLuqEytU", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["grunt, slurp, background", "female, flushes, toilet"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage is blurry and out of focus"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["some men converse over an engine running", "some tunes played by whistling"], "sample_ids": ["sCiy7QS1U", "u6BnG6YZqJ4"], "start_seconds": ["300", "0"], "properties": ["men, converse, engine", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "paper is crumpling consistently"], "sample_ids": ["sYITalLZjj4", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["water, rushes, background, birds", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["wind blows and birds chirp", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a woman speaks as she rubs two objects together"], "sample_ids": ["un9VQlzgZM", "vzxHnu-SFEw"], "start_seconds": ["5", "80"], "properties": ["females, talk, laugh", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a woman speaking?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a young woman speaks over spraying and another person yells"], "sample_ids": ["rqfQRErjfk8", "uYT5gxnyMWM"], "start_seconds": ["170", "50"], "properties": ["crowd, cheers, applauds", "person, spray, yell"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a train horn blares as a train passes, then fades"], "sample_ids": ["xKB8O8LTs6s", "zVacuqSb4LI"], "start_seconds": ["70", "30"], "properties": ["music, gunfire, explosion", "blares, fades, train"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is more calm", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "water pouring and bubbling"], "sample_ids": ["vdoxuJn9lTc", "uyRfq-jKPpo"], "start_seconds": ["40", "50"], "properties": ["burp, loud, girl", "water, bubbles, pouring"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a child speaks followed by a burp", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a toilet flushes and a female speaks"], "sample_ids": ["zPX9o1uDiI", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["engine, horn, run", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a toilet flushes and a man speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a car accelerates and wind blows"], "sample_ids": ["zsLxS-uLJTw", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["horn, blast, train", "accelerates, wind, blows"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", null], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["male speech with light ticking", "small dogs growl, bark and yip."], "sample_ids": ["xO-Q2BlIIPU", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["male, speech, ticking", "growl, bark, yip"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "the puppies are playing with a toy"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a dog is barking and growling"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["t97k0cejSQE", "vfYTJq7nU"], "start_seconds": ["250", "130"], "properties": ["bird, chirp, insect", "rustling, ducks, quack"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "several insects fly while two men talk"], "sample_ids": ["vzxHnu-SFEw", "s-T9OVOiMLo"], "start_seconds": ["80", "330"], "properties": ["two objects, woman, speak", "several, fly, men"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a woman speaking as she rubs two objects together?", "label": 0}, {"captions": ["someone is snoring while sleeping", "paper folding and crinkling"], "sample_ids": ["ujMt0-D-x2k", "zPpG3RD8lSs"], "start_seconds": ["0", "20"], "properties": ["snore, sleep, someone", "paper, fold, crinkle"], "captions_pred_video": ["of the dog playing with a toy on the floor", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a person is snoring loudly", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a woman speaks as she rubs two objects together"], "sample_ids": ["vuUVPzd2FXw", "vzxHnu-SFEw"], "start_seconds": ["160", "80"], "properties": ["a, steam, release", "two objects, woman, speak"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is being rubbed together", "label": 0}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "several insects fly while two men talk"], "sample_ids": ["wsHBIgzs9Fs", "s-T9OVOiMLo"], "start_seconds": ["50", "330"], "properties": ["horn, continuous, buzzing", "several, fly, men"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a zoo", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a flush is followed by gurgling water, then another flush"], "sample_ids": ["v7jJS8aAyA", "tqR406bGiE"], "start_seconds": ["10", "40"], "properties": ["wind, blows, loudly", "flush, water, gurgle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a toilet is flushed"], "question": "which entity is silent", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "several insects fly while two men talk"], "sample_ids": ["xvDdE3zNf8Y", "s-T9OVOiMLo"], "start_seconds": ["120", "330"], "properties": ["a, female, speaks", "several, fly, men"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["speaking following by laughing and clapping", "someone snores nearby"], "sample_ids": ["u2f5NpsoHBg", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["person, laugh, clap", "someone snores, nearby, someone"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a person is snoring loudly"], "question": "which person is speaking", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "water is sprayed across a hard surface"], "sample_ids": ["vf44CgrjT0A", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["loud, long, person", "water, spray, surface"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a loud burp", "spraying followed by silence"], "question": "which entity is a spray?", "label": 1}, {"captions": ["a consistent ticking pattern", "a large crowd cheers and applauds"], "sample_ids": ["sCeWURVHfOM", "rqfQRErjfk8"], "start_seconds": ["30", "170"], "properties": ["ticking, pattern, clock", "crowd, cheers, applauds"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["ticking of a clock", "a crowd of people clapping and cheering"], "question": "which entity is more likely to be a clock", "label": 0}, {"captions": ["food is frying while a woman speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["yhQ2Lg-7qDY", "sQGXqGcwOTc"], "start_seconds": ["130", "3"], "properties": ["food, woman, speak", "cling, speak, dishes"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a faucet is running and a man is speaking", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a person sniffles and then sneezes in the distance", "people cheer as a vehicle engine revs"], "sample_ids": ["uRlbY6aoBU", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["a, distance, sneeze", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is sneezing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["people speak and tapping occurs", "water flows as a woman laughs and a man speaks"], "sample_ids": ["tFCUUGdREgA", "vddP56-ogds"], "start_seconds": ["70", "30"], "properties": ["people, tap, speak", "water, flow, laugh"], "captions_pred_video": ["a person riding a white horse in an indoor arena", null], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "water is running and gurgling and a man is speaking"], "question": "which entity is a video of a person speaking and tapping?", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vzxHnu-SFEw", "ukg5L09Wpvo"], "start_seconds": ["80", "150"], "properties": ["two objects, woman, speak", "clickety-clack, train, whistle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a male speaks and another male speaks", "a man speaks as a car is passing by"], "sample_ids": ["viuTg1M-dqg", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "a, car, pass"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a man speaks as crickets sing", "three men talk while wind blows and some liquid flows"], "sample_ids": ["ryFDPxgDOGc", "vJ7JPEFhyLA"], "start_seconds": ["570", "16"], "properties": ["a, crickets, sing", "three men, wind, flow"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yLCORCnd35Q", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["engine, aircraft, runs", "People, motor, brakes"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", null], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["a man is filing a hard object", "several insects fly while two men talk"], "sample_ids": ["vveS8HT7Uog", "s-T9OVOiMLo"], "start_seconds": ["100", "330"], "properties": ["a man, hard, object", "several, fly, men"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a man filing a hard object?", "label": 0}, {"captions": ["a woman speaks in a fast tone with a male", "someone whistles a tune"], "sample_ids": ["sTpirNYo8vQ", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["a, tone, fast", "someone, tune, whistle"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a clock ticktocks"], "sample_ids": ["zj2R0XoFr5k", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "roadway noise occurs and a truck accelerates"], "sample_ids": ["zkKdxzNC97Y", "tgbONvsP47Y"], "start_seconds": ["27", "0"], "properties": ["loud, bang, noise", "noise, truck, accelerate"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a door is opened and closed", "a car is driving on the road "], "question": "which noise is made by a truck", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["smDKStoHBJo", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["a, talk, baby, cry", "a woman, a television program, a bird"], "captions_pred_video": ["a man holding a crying baby in his arms", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a dog is whimpering"], "question": "which entity has a baby?", "label": 0}, {"captions": ["an airplane engine roars increasingly louder", "a duck quacks continuously"], "sample_ids": ["vBslzh7saPw", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["engine, roar, louder", "quacks, continuously, duck"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a car speeding up in the distance"], "sample_ids": ["y1saVTXsKwc", "u0TrcHhkPQ"], "start_seconds": ["80", "20"], "properties": ["a, dog, talk", "distance, car, speed"], "captions_pred_video": ["a dog playing with a pink ball", null], "captions_pred_audio": ["a dog barks and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["vBHyYJ8pL0", "tezvROoo4bs"], "start_seconds": ["2", "40"], "properties": ["noise, door, opening", "audio, throttle, speaking"], "captions_pred_video": [null, "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a car accelerates and revs while a man speaks "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a man speaks as a car is passing by"], "sample_ids": ["tiDFTC-5vU", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a duck in it?", "label": 0}, {"captions": ["multiple birds vocalize and wind blows", "a man speaks as a motor runs in the background"], "sample_ids": ["uoGVs9yUqY4", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["multiple, vocalize, wind", "background, motor, run"], "captions_pred_video": ["for how to make a wooden shed door youtube", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a man speaking to a motor?", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a woman speaks as she rubs two objects together"], "sample_ids": ["sOa7g-44Dag", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["audio, scratching, man", "two objects, woman, speak"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a child speaks in closed space"], "sample_ids": ["ugHJF0hfYkg", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["engine, running, continuously", "child, space, speak"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not running continuously", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sOa7g-44Dag", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["background, man, spray", "two men, woman, birds"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a duck quacks continuously"], "sample_ids": ["wz7N8YRy74I", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, people", "quacks, continuously, duck"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a train horn blows as it passes by"], "sample_ids": ["slZLHwNbbt4", "zVacuqSb4LI"], "start_seconds": ["300", "30"], "properties": ["train, horn, sound", "horn, blows, train"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which train is blowing its horn?", "label": 1}, {"captions": ["a motorcycle engine is idling", "people speak as gunfire rings out"], "sample_ids": ["vZAqdHZ81yA", "wqTCwqVRDlk"], "start_seconds": ["180", "80"], "properties": ["engine, motorcycle, idling", "gunfire, ring, speak"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking and a gun is fired"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a clock ticktocks"], "sample_ids": ["sofxkNWaP0s", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "pigeons vocalize and birds chirp"], "sample_ids": ["yeFvk9x0wWI", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["chirp, twitter, clatter", "vocalize, bird, chirp"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of the pigeon in the cage"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["leaves rustle while man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["zOZleIRqZm4", "xZepNM9qcRA"], "start_seconds": ["80", "30"], "properties": ["leaves, rustle, speak", "background, motor, run"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["wqUmIEzuNz4", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["frog, bird, vocalize", "two men, woman, birds"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", null], "captions_pred_audio": ["a cat meows and rustles", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a drill runs and two people laugh"], "sample_ids": ["sa6TLVbooCc", "tEE3MpBt1sg"], "start_seconds": ["240", "50"], "properties": ["people, laugh, child", "two people, laugh, drill"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "people are laughing breathing and speaking with background noise "], "question": "which entity shows a drill running?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sAam2NqGhLY", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["snoring, breathing, child", "a woman, something, fried"], "captions_pred_video": ["of a little girl sleeping on a couch", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is snoring", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a horn honks and then loudly blares"], "sample_ids": ["zOZleIRqZm4", "wnpJndXuxLc"], "start_seconds": ["80", "50"], "properties": ["rustling, leaves, person", "horn, honk, loud"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a stream of water runs briefly", "paper folding and crinkling"], "sample_ids": ["x-PeY8Yb8M4", "zPpG3RD8lSs"], "start_seconds": ["300", "20"], "properties": ["stream, water, run", "paper, fold, crinkle"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a car is driving on a wet road ", "the wind blows and a mouse clicks "], "question": "which entity is not a stream of water?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "an airplane engine spools and people speak"], "sample_ids": ["vBslzh7saPw", "wTjoRj1se3U"], "start_seconds": ["90", "390"], "properties": ["engine, roar, louder", "airplane, engine, spool"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a jet engine is running and people are talking"], "question": "which entity is a video of an airplane engine?", "label": 0}, {"captions": ["a child speaks in closed space", "a telephone rings followed by a woman talking"], "sample_ids": ["yW6FWLSLkx4", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["child, space, speak", "ring, talk, woman"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xMXvkIcaG0Y", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["sound, humming, rattling", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an engine is revving and accelerating ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "water flows and trickles"], "sample_ids": ["yFB25fqfU8I", "tB7hWb9gTuQ"], "start_seconds": ["300", "30"], "properties": ["wave, crash, shoreline", "water, flow, trickle"], "captions_pred_video": ["footage of a person surfing in the ocean", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["someone is snoring while sleeping", "some tunes played by whistling"], "sample_ids": ["ujMt0-D-x2k", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["snore, sleep, someone", "tune, play, whistling"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person is snoring loudly", "a person whistling a song"], "question": "which entity is not playing a tune?", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a clock ticktocks"], "sample_ids": ["su6FAOcOA8c", "v-g-j2uTByM"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vddP56-ogds", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["water, flow, laugh", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows water flowing?", "label": 0}, {"captions": ["birds twitter and chirp and clatter", "birds chirp as a bell rings"], "sample_ids": ["yeFvk9x0wWI", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["chirp, twitter, clatter", "chirp, bell, ring"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a infant makes noise and is excited"], "sample_ids": ["wsHBIgzs9Fs", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["horn, continuous, buzzing", "noise, excited, infant"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a clock ticktocks"], "sample_ids": ["sapQIQUhFc", "v-g-j2uTByM"], "start_seconds": ["280", "30"], "properties": ["liquid, flow, distance", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a person is burping while a girl speaks"], "sample_ids": ["zliInBdC98Y", "vdoxuJn9lTc"], "start_seconds": ["30", "40"], "properties": ["a, baby, cries, wails", "person, burp, girl"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a baby cries and a woman speaks", "a child speaks followed by a burp"], "question": "which entity is a person?", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sTpirNYo8vQ", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["a, tone, fast", "two men, woman, birds"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["bees buzz and wind blows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tMJne1a4AFI", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["bees buzz, wind blows, bees", "engine, revs, vehicle"], "captions_pred_video": ["a swarm of bees on the ground", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a swarm of bees buzzing around", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["people speak in a closed space", "an airplane engine spools and people speak"], "sample_ids": ["sTpirNYo8vQ", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["people, space, speak", "airplane, engine, spool"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a jet engine is running and people are talking"], "question": "which entity is a video", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "water pouring and bubbling"], "sample_ids": ["yks4cLgIDMc", "uyRfq-jKPpo"], "start_seconds": ["170", "50"], "properties": ["background, speaking, child", "water, bubbles, pouring"], "captions_pred_video": ["footage of two kids wrestling on the floor", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and a child is crying", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a infant makes noise and is excited"], "sample_ids": ["wIJK3-5y0kA", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["a, cry, baby", "noise, excited, infant"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is a baby?", "label": 0}, {"captions": ["a toilet flushes and water drains", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sfAvvZwdLCY", "xfaoyyzw2WU"], "start_seconds": ["20", "180"], "properties": ["water drains, flushes, water", "loud, jet engine, roar"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a toilet is flushed", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a infant makes noise and is excited"], "sample_ids": ["xjhAnI2q6hM", "wIJK3-5y0kA"], "start_seconds": ["6", "30"], "properties": ["engine revs, vehicle, people", "noise, excited, infant"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a baby cries and a woman speaks"], "question": "which entity is more excited", "label": 1}, {"captions": ["electronic beeps occur in a short series", "water splashes as an animal walks through"], "sample_ids": ["y682ml90jGw", "w1ir-sZ3Im8"], "start_seconds": ["11", "90"], "properties": ["beeps, series, electronic", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a beeping sound is being made ", "water splashes and gurgles as people speak"], "question": "which entity is more natural", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "water splashes as an animal walks through"], "sample_ids": ["wIvYjuR3nrg", "w1ir-sZ3Im8"], "start_seconds": ["9", "90"], "properties": ["birds, pigeons, vocalize", "animal, water, splashes"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds are chirping and cooing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["uYT5gxnyMWM", "ziUT9IFTkjg"], "start_seconds": ["50", "10"], "properties": ["a, scream, girl", "background, birds, rustling"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yW6FWLSLkx4", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["a, child, speaks", "People, motor, brakes"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vW4x7S1VfQc", "zj2R0XoFr5k"], "start_seconds": ["150", "50"], "properties": ["clacking, oil, woman", "airplane, boy, fly"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["food sizzles in a frying pan", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["material crumbles into a microphone", "birds chirp and objects are moved around"], "sample_ids": ["vofpvUo6NAw", "yPUYU6t3rwo"], "start_seconds": ["220", "370"], "properties": ["material, crumbles, microphone", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["paper is being crumpled and crinkled", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a person is snoring while sleeping"], "sample_ids": ["tPJvjq9QePY", "vJrjSeP17yE"], "start_seconds": ["40", "40"], "properties": ["animal, bleat, moo", "a person is sleeping, snoring, person"], "captions_pred_video": ["a dog and a sheep in a barn", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a baby cries and a man speaks", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["birds chirp quietly and an adult man speaks", "a duck quacks continuously"], "sample_ids": ["zuua6-5goWw", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "quacks, continuously, duck"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["a frog croaks as other frogs croak in the background", "a toilet flushes and a female speaks"], "sample_ids": ["yswmmRZFItk", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["background, frog, croak", "female, flushes, toilet"], "captions_pred_video": ["a close up of a frog in the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a frog is croaking", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "paper is crumpling consistently"], "sample_ids": ["w8uLijTqtlU", "v5cSxLaHADY"], "start_seconds": ["70", "0"], "properties": ["wind, microphone, noise", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and shaky", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["the wind is blowing strongly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "water rushes by"], "sample_ids": ["zdYdyF9-m8U", "x-PeY8Yb8M4"], "start_seconds": ["7", "300"], "properties": ["wind, crash, shoreline", "water, rushes, by"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["waves crash and wind blows ", "a car is driving on a wet road "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a vehicle accelerates squealing tires"], "sample_ids": ["sOa7g-44Dag", "sd7xVssqlw"], "start_seconds": ["30", "50"], "properties": ["audio, scratching, man", "accelerates, tires, squealing"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "water flows as men speak and yell"], "sample_ids": ["wvKpEYswXO0", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["water, tap, run", "water, flow, men"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has water flowing?", "label": 1}, {"captions": ["a horse runs while two women talk", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["sdvI1mHAsc", "w34HjHr6gAY"], "start_seconds": ["20", "30"], "properties": ["two women, horse, run", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a clock ticktocks in wind", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yVumC9TGknc", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, wind", "loud, multiple, distance"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", null], "captions_pred_audio": ["a series of beeps and chirps", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "someone snores nearby"], "sample_ids": ["y8WEcpOlT3I", "spJCm8tD9Zo"], "start_seconds": ["40", "90"], "properties": ["wind, speak, buffeting", "someone snores, nearby, someone"], "captions_pred_video": ["on how to use a sewing machine youtube", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a person is snoring loudly"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["un9VQlzgZM", "xyL9F5VrjkE"], "start_seconds": ["5", "20"], "properties": ["wind, speak, laugh", "wind, motor, distance"], "captions_pred_video": [null, "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "the wind is blowing and a car is passing by "], "question": "which entity is about a motor running in the distance as a soft wind periodically gusts?", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "wind blows in gusts as a woman speaks in the distance"], "sample_ids": ["s4Uz1Ffgo04", "uC9dtII1KDI"], "start_seconds": ["100", "150"], "properties": ["water, rushes, vehicle", "wind, gusts, distance"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a person riding a horse in a riding arena"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman is speaking with wind noise and breathing in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a man speaks as a car is passing by"], "sample_ids": ["zFjIWfSD-4", "sK4u5T8hW78"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "an infant crying as a woman laughs"], "sample_ids": ["uWAAAL4CIoc", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["a woman, chirps, animal", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a baby cries and a woman speaks"], "question": "which entity is more likely to be a solitary event", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a car speeding up in the distance"], "sample_ids": ["tGcFnX0GHI", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["ring, talk, woman", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a woman and man speak while food is frying"], "sample_ids": ["xMXvkIcaG0Y", "zk-xJGQU8-4"], "start_seconds": ["30", "130"], "properties": ["sound, humming, rattling", "food, man, woman"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["an engine is revving and accelerating ", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a woman speaks happily and an animal chirps"], "sample_ids": ["smDKStoHBJo", "uWAAAL4CIoc"], "start_seconds": ["0", "0"], "properties": ["a, infant, speaking", "a woman, chirps, animal"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a dog is barking "], "question": "which entity is a woman speaking to an animal?", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "wind blows as people chatter quietly"], "sample_ids": ["sOa7g-44Dag", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["background, man, spray", "wind, chatter, people"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a clock alarm sounds and gears turn"], "sample_ids": ["xjvTpk2Zpr8", "w2M4i1mklOA"], "start_seconds": ["70", "30"], "properties": ["engine, run, wind", "alarm, gears, turn"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of an antique clock"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a clock is ticking and a bell is ringing "], "question": "which entity is not a clock?", "label": 0}, {"captions": ["a horse runs while two women talk", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sdvI1mHAsc", "y8WEcpOlT3I"], "start_seconds": ["20", "40"], "properties": ["two women, horse, run", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 0}, {"captions": ["a person is whistling", "an infant crying frantically"], "sample_ids": ["sIXTftIuUgw", "zwOBqeFTgiU"], "start_seconds": ["90", "30"], "properties": ["person, whistling, person", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a person whistling a song", "a baby cries loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["a man speaks followed by another man speaking outside", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["viuTg1M-dqg", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["two men, speak, follow", "motor noise, horn, siren"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn and a siren", "label": 1}, {"captions": ["a goat screams and people speak in the background", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["xC8kbrKJmco", "y2bVZ7rz-5M"], "start_seconds": ["0", "280"], "properties": ["background, goat, scream", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a goat is bleating ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "winds blows roughly as a vehicle races past"], "sample_ids": ["su6FAOcOA8c", "xjvTpk2Zpr8"], "start_seconds": ["4", "70"], "properties": ["engine, run, woman", "wind, blows, vehicle"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "multiple ducks quack continuously"], "sample_ids": ["w5W5Kqtc8E", "wfHeoPDLMaM"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "multiple, quack, continuously"], "captions_pred_video": [null, "ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "ducks are quacking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a church bell rings several times", "a man talks while a clock does ticktock"], "sample_ids": ["sUVVjE3Ucp8", "spYNpeN7rPY"], "start_seconds": ["0", "1"], "properties": ["ring, bell, several", "a clock, ticktock, man"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["a church bell is ringing ", "a man is speaking and breathing with background noise "], "question": "which entity is a clock?", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "water is sprayed across a hard surface"], "sample_ids": ["w0xsN8X18Y", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["rain, thunder, surface", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "water splashes as an animal walks through"], "sample_ids": ["zF8yoL0rkbI", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["engine, run, someone", "animal, water, splashes"], "captions_pred_video": ["footage of the traffic on the street at night", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "someone snores nearby"], "sample_ids": ["x6ijhqRY38s", "spJCm8tD9Zo"], "start_seconds": ["250", "90"], "properties": ["bowl, silverware, man", "someone snores, nearby, someone"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a male speaks over some small clicks", "winds blows roughly as a vehicle races past"], "sample_ids": ["uXxVebHsGZ8", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["male, clicks, speak", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["weDbePuc-Xc", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["music, slaps, human", "animal, grunts, snorts"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and an animal grunts and snorts?", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "a stream of water flows as people talk and wind blows"], "sample_ids": ["skd2PphS6oI", "xBxDz0CFVn0"], "start_seconds": ["190", "30"], "properties": ["ring, bird, vocalize", "stream, water, flow"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage is blurry and out of focus"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wy1eKjR7KC0", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "a woman, a television program, a bird"], "captions_pred_video": ["two police officers riding motorcycles down the street", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a woman is speaking and a dog is whimpering"], "question": "which entity is a solitary event", "label": 1}, {"captions": ["water splashes and a door squeaks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sdXV-ylviw", "xfaoyyzw2WU"], "start_seconds": ["190", "180"], "properties": ["sound, splash, door", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a dog barks and taps with background noise ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["an adult woman and an adult man speak", "an engine runs loudly"], "sample_ids": ["zTLVJCo4WEE", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["two people, adult, speak", "loud, engine, run"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["uqFtmnhuqA8", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["a, b, c", "motor noise, horn, siren"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "an airplane engine roars increasingly louder"], "sample_ids": ["sd7xVssqlw", "vBslzh7saPw"], "start_seconds": ["50", "90"], "properties": ["accelerates, tires, squealing", "engine, roar, louder"], "captions_pred_video": [null, "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine roars and accelerates "], "question": "which entity is louder", "label": 1}, {"captions": ["a small engine spits as it runs", "a train horn blows as it passes by"], "sample_ids": ["sZvwOuuPGP0", "zVacuqSb4LI"], "start_seconds": ["50", "30"], "properties": ["spits, engine, runs", "horn, blows, train"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a medium engine is running ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which train is blowing a horn?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["y2bVZ7rz-5M", "yajyRTUQk3U"], "start_seconds": ["280", "400"], "properties": ["motor noise, horn, siren", "a woman, something, fried"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["u7C-AEBQM", "wSVhSdj0F0"], "start_seconds": ["30", "10"], "properties": ["ticks, rhythmic, quiet", "horn honks, keys jingle, electronic beep"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a car horn honks and keys jangle with background noise "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y8dSeubCNI", "uZesmtKZGSw"], "start_seconds": ["4", "250"], "properties": ["engine revving, people speaking, motorcycle", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a person uses a saw to cut some wood"], "sample_ids": ["v0wPrLBI3hg", "sHbXC6na9hg"], "start_seconds": ["30", "0"], "properties": ["vocalize, bird, speak", "a person, saw, wood"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "an engine is idling and vibrating"], "question": "which entity is a person", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["x5cuQjOdM3E", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["cat, meows, young woman", "a, scream, girl"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "wind blows as people chatter quietly"], "sample_ids": ["uiItxDsDMFI", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["wood, piece, saw", "wind, chatter, people"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "footage is blurry and out of focus"], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a car speeding up in the distance"], "sample_ids": ["x5cuQjOdM3E", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["cat, meows, young woman", "distance, car, speed"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a drill drills through something then people begin laughing"], "sample_ids": ["tjmoSi330GM", "tEE3MpBt1sg"], "start_seconds": ["23", "50"], "properties": ["speed, water, boat", "drill, something, laugh"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "people are laughing breathing and speaking with background noise "], "question": "which is a drill", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "multiple people speak and children yell while water gurgles"], "sample_ids": ["siJFXfGWgDk", "vb1fPSDI4c"], "start_seconds": ["50", "30"], "properties": ["a, bird, vehicle", "multiple, people, yell"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a man is filing a hard object"], "sample_ids": ["v0x1odnXtP0", "vveS8HT7Uog"], "start_seconds": ["210", "100"], "properties": ["keyboard, type, computer", "a man, hard, object"], "captions_pred_video": ["how to make money on youtube in spanish", "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is filing and speaking with background noise and breathing "], "question": "which object is harder to file", "label": 0}, {"captions": ["an animal growls followed by birds chirping", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["y2ZBGpgbhHM", "y2ZBGpgbhHM"], "start_seconds": ["30", "30"], "properties": ["animal, growl, bird", "birds, tweet, pant"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "birds chirping and a dog panting"], "question": "which entity has more animals", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "water flows as a woman laughs and a man speaks"], "sample_ids": ["zkKdxzNC97Y", "vddP56-ogds"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "water, flow, laugh"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "water is running and gurgling and a man is speaking"], "question": "which entity is a video", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wRBHTgrbiwg", "tDlysoZiA1I"], "start_seconds": ["50", "0"], "properties": ["birds, chirp, cooing", "animal, grunts, chirps"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "birds are chirping and a rooster is crowing "], "question": "which entity is a recording of birds chirping?", "label": 0}, {"captions": ["the rumbling of a bus followed by a soft male voice", "winds blows roughly as a vehicle races past"], "sample_ids": ["vK93VuO0yNc", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["male voice, bus, rumble", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "an infant crying as a woman laughs"], "sample_ids": ["wqZ135Ssz0", "xhmRY9yhC7c"], "start_seconds": ["60", "20"], "properties": ["man, woman, squawks", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a baby cries and a woman speaks"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["tapping occurs then a baby cries", "a motor noise is accompanied by a door opening and closing"], "sample_ids": ["wIJK3-5y0kA", "vBHyYJ8pL0"], "start_seconds": ["30", "2"], "properties": ["a, cry, baby", "noise, door, opening"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is accompanied by a door opening and closing?", "label": 1}, {"captions": ["an adult woman and an adult man speak", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zTLVJCo4WEE", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["two people, adult, speak", "People, motor, brakes"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more people", "label": 1}, {"captions": ["an engine runs and a man speaks", "a toilet flushes and a female speaks"], "sample_ids": ["yT5WfYMRr-U", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["engine, run, man", "female, flushes, toilet"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a man speaking?", "label": 0}, {"captions": ["multiple birds chirp and an animal grunts", "water pouring and bubbling"], "sample_ids": ["tDlysoZiA1I", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["animal, grunt, multiple", "water, bubbles, pouring"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an airplane engine runs", "a stream of water runs briefly"], "sample_ids": ["yVPZ2MNWpms", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["engine, airplane, runs", "stream, water, run"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car is driving by on the road ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a vehicle engine accelerating then running on idle"], "sample_ids": ["u2f5NpsoHBg", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "engine, accelerate, idle"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "an engine is idling"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uqFtmnhuqA8", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["a, b, c", "airplane, boy, fly"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a toilet flushes and a female speaks"], "sample_ids": ["vXlk0lIQBFo", "yaln9y8I7ms"], "start_seconds": ["470", "230"], "properties": ["wind, talk, vocalize", "female, flushes, toilet"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage is blurry and out of focus"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["goats bleat and people speak", "loud, continuous burping"], "sample_ids": ["z5iUE5h0EPs", "y636gklDioE"], "start_seconds": ["30", "20"], "properties": ["goats bleat, people speak, language", "loud, continuous, burping"], "captions_pred_video": ["of the goat in the barn", "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a goat bleats and a man speaks", "a person burps loudly several times"], "question": "which is louder", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "an engine runs loudly"], "sample_ids": ["yaln9y8I7ms", "vqZuVbG6-HI"], "start_seconds": ["230", "130"], "properties": ["female, flushes, toilet", "loud, engine, run"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vSeGhaZt-aI", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["water, bubbles, run", "a, scream, girl"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a grown man speaking and water bubbles and runs?", "label": 0}, {"captions": ["a child speaks in closed space", "a female speaks softly as paper crinkles"], "sample_ids": ["yW6FWLSLkx4", "xvDdE3zNf8Y"], "start_seconds": ["40", "120"], "properties": ["child, space, speak", "a, female, speaks"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman speaks and crumples paper"], "question": "which entity is speaking softly", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a frog croaks as other frogs croak in the background"], "sample_ids": ["xKB8O8LTs6s", "yswmmRZFItk"], "start_seconds": ["70", "0"], "properties": ["music, gunshots, explosion", "background, frog, croak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a close up of a frog in the water"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a frog is croaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["children speak as a female ask them questions", "water flows and trickles"], "sample_ids": ["wEBlkGWVWwE", "tB7hWb9gTuQ"], "start_seconds": ["260", "30"], "properties": ["female, speak, questions", "water, flow, trickle"], "captions_pred_video": ["shows a person writing on the whiteboard", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "water is splashing and gurgling"], "question": "which entity is not a flow of water?", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a drill drills through something then people begin laughing"], "sample_ids": ["zkKdxzNC97Y", "tEE3MpBt1sg"], "start_seconds": ["27", "50"], "properties": ["loud, bang, noise", "drill, something, laugh"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a door is opened and closed", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a child speaks", "a car speeding up in the distance"], "sample_ids": ["yW6FWLSLkx4", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["a, child, speaks", "distance, car, speed"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "vehicles pass by on a roadway"], "sample_ids": ["xKB8O8LTs6s", "tgbONvsP47Y"], "start_seconds": ["70", "0"], "properties": ["music, gunfire, explosion", "pass, vehicle, roadway"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a fire truck entering a garage"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a car is driving on the road "], "question": "which entity is more calm", "label": 1}, {"captions": ["women speak and laugh as wind blows", "dishes cling together then a man begins to speak"], "sample_ids": ["un9VQlzgZM", "sQGXqGcwOTc"], "start_seconds": ["5", "3"], "properties": ["wind, speak, laugh", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "an infant crying frantically"], "sample_ids": ["zj2R0XoFr5k", "zwOBqeFTgiU"], "start_seconds": ["50", "30"], "properties": ["airplane, boy, fly", "cry, infant, frantically"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a man speaks with another voice speaking in the background"], "sample_ids": ["xKB8O8LTs6s", "u21-Z5gJCB8"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "background, voice, man"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a woman speaking on a radio?", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yRx9txMcBl0", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["accelerates, tires, squeals", "People, motor, brakes"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["females talk and laugh over gusting wind", "a man speaks as a car is passing by"], "sample_ids": ["un9VQlzgZM", "sK4u5T8hW78"], "start_seconds": ["5", "30"], "properties": ["females, talk, laugh", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "paper is crumpling consistently"], "sample_ids": ["v-wcQf4BDY0", "v5cSxLaHADY"], "start_seconds": ["120", "0"], "properties": ["bark, yip, sharply", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a dog barks and growls", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "dishes cling together then a man begins to speak"], "sample_ids": ["zY3icUyMdh8", "sQGXqGcwOTc"], "start_seconds": ["20", "3"], "properties": ["dog, bark, engine", "cling, speak, dishes"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "mechanisms are operating and water is splashing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "dogs barking and whimpering"], "sample_ids": ["w5W5Kqtc8E", "tIY7qOV3rEM"], "start_seconds": ["100", "0"], "properties": ["wind, engine, scream", "barking, whimpering, dog"], "captions_pred_video": [null, "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a dog is barking and a cat is meowing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a car accelerates and wind blows"], "sample_ids": ["yYEVLuqEytU", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["animal, pig, background", "accelerates, wind, blows"], "captions_pred_video": ["a baby goat is being petted by a person's hand", null], "captions_pred_audio": ["several sheep bleat and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["continuous sneezing together with speech", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["x4dZyf9Gbj0", "yajyRTUQk3U"], "start_seconds": ["130", "400"], "properties": ["continuous, sneeze, speech", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and out of focus", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["sLUnaPT5gM8", "y2bVZ7rz-5M"], "start_seconds": ["0", "280"], "properties": ["loud, laughter, intermittent", "motor noise, horn, siren"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a person snores loudly multiple times at a close distance"], "sample_ids": ["ukxt9I7eMMg", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["continuous, woman, speaking", "loud, multiple, distance"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["water splashes as an animal walks through", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w1ir-sZ3Im8", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["animal, water, splashes", "airplane, boy, fly"], "captions_pred_video": ["footage of a group of people riding horses through a river", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks while water drains", "birds chirp and objects are moved around"], "sample_ids": ["vSeGhaZt-aI", "yPUYU6t3rwo"], "start_seconds": ["50", "370"], "properties": ["water, drain, man", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby cries and a woman moans", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["smDKStoHBJo", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["a, cry, woman", "a woman, something, fried"], "captions_pred_video": ["a man holding a crying baby in his arms", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman talking?", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "someone is burping continuously"], "sample_ids": ["w5W5Kqtc8E", "y636gklDioE"], "start_seconds": ["100", "20"], "properties": ["wind, engine, scream", "burps, burps, burps"], "captions_pred_video": [null, "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a person burps loudly several times"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["t25U-v4k4ts", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["bees buzz, birds chirp, man speaks", "loud, laughter, intermittent"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks as a machine runs", "a man speaks as a machine runs"], "sample_ids": ["vD6lYD1l0BY", "vD6lYD1l0BY"], "start_seconds": ["330", "330"], "properties": ["a, machine, run", "a, machine, run"], "captions_pred_video": ["game controller being held in the hands of the person", "game controller being held in the hands of the person"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking and dishes are being washed "], "question": "which machine is running in the first image?", "label": 0}, {"captions": ["children cheer as a man speaks then an audience screams", "someone snores nearby"], "sample_ids": ["vJvryTwuAV8", "spJCm8tD9Zo"], "start_seconds": ["16", "90"], "properties": ["audience, cheer, man", "someone snores, nearby, someone"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["an adult woman and an adult man speak", "people cheer as a vehicle engine revs"], "sample_ids": ["zTLVJCo4WEE", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["two people, adult, speak", "engine revs, vehicle, people"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a truck is revving its engine and a man is speaking "], "question": "which entity shows people cheering?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yRx9txMcBl0", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["accelerates, tires, squeals", "People, motor, brakes"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["people speak then an engine runs", "wind blows as people chatter quietly"], "sample_ids": ["uMTTDZ2mb4", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["engine, run, people", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["tapping occurs then a baby cries", "wind blowing followed by a zoom"], "sample_ids": ["wIJK3-5y0kA", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["a, cry, baby", "wind, blow, zoom"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a baby cries and a woman speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["females talk and laugh over gusting wind", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["un9VQlzgZM", "vbZ-0lGPneg"], "start_seconds": ["5", "30"], "properties": ["females, talk, laugh", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more likely to be a documentary", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wqADXCzngMw", "tdWhHV3X25Q"], "start_seconds": ["340", "60"], "properties": ["engine, idle, man", "applause, audience, yells"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["someone whistles a tune", "a child speaks in closed space"], "sample_ids": ["sIXTftIuUgw", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["someone, tune, whistle", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xyL9F5VrjkE", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["wind, motor, distance", "rustling, ducks, quack"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a duck quacks and a woman speaks"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a jet engine spools up and takes off"], "sample_ids": ["tEE3MpBt1sg", "vBslzh7saPw"], "start_seconds": ["50", "90"], "properties": ["drill, something, laugh", "engine, spools, takes"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a jet engine roars and accelerates "], "question": "which entity is a machine?", "label": 0}, {"captions": ["a cat meows as a young woman speaks", "paper is crumpling consistently"], "sample_ids": ["x5cuQjOdM3E", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["cat, meows, young woman", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a cat meows and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "a consistent ticking pattern"], "sample_ids": ["vz8868znkVQ", "sCeWURVHfOM"], "start_seconds": ["60", "30"], "properties": ["audio, click, kid speaking", "ticking, pattern, clock"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "- a close-up view of the clock's inner workings"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "ticking of a clock"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a person sniffs and sneezes", "a train horn blows as it passes by"], "sample_ids": ["uRlbY6aoBU", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["sneezes, person, sniffs", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is sneezing ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "someone is typing on a computer keyboard"], "sample_ids": ["w-4gHptFNuU", "v0x1odnXtP0"], "start_seconds": ["21", "210"], "properties": ["engine revs, accelerates, bump", "keyboard, type, computer"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "how to make money on youtube in spanish"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which entity is stationary", "label": 1}, {"captions": ["water pouring and bubbling", "an airplane engine spools and people speak"], "sample_ids": ["uyRfq-jKPpo", "wTjoRj1se3U"], "start_seconds": ["50", "390"], "properties": ["water, bubbles, pouring", "airplane, engine, spool"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["water is running from a faucet", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["continuous sneezing together with speech", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["x4dZyf9Gbj0", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["continuous, sneeze, speech", "a woman, laughs, animal"], "captions_pred_video": ["footage is blurry and out of focus", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a drill drills through something then people begin laughing"], "sample_ids": ["wSVhSdj0F0", "tEE3MpBt1sg"], "start_seconds": ["10", "50"], "properties": ["horn honks, keys jingle, electronic beep", "drill, something, laugh"], "captions_pred_video": [null, "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a vehicle is skidding and squealing tires"], "sample_ids": ["tZGN5a7ybxo", "soTOh3zYJfY"], "start_seconds": ["60", "40"], "properties": ["ring, train, horn", "vehicle, skid, tires"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["people speak and tapping occurs", "winds blows roughly as a vehicle races past"], "sample_ids": ["tFCUUGdREgA", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["people, tap, speak", "wind, blows, vehicle"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a beep occurs briefly", "music plays and a woman speaks on a radio before gunshots are fired"], "sample_ids": ["xtWeJ56-U-g", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["beep, occur, briefly", "music, radio, gunshots"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has a woman speaking on a radio?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a woman speaks and dog vocalizes"], "sample_ids": ["voJh2gJxXhA", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["music, frog, croak", "a, dog, vocalize"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", null], "captions_pred_audio": ["music is playing and crickets are chirping ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "someone whistles a tune"], "sample_ids": ["tw76HGONaKg", "sIXTftIuUgw"], "start_seconds": ["570", "90"], "properties": ["music, click, man", "someone, tune, whistle"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a horse runs while two women talk", "an infant crying as a woman laughs"], "sample_ids": ["sdvI1mHAsc", "xhmRY9yhC7c"], "start_seconds": ["20", "20"], "properties": ["two women, horse, run", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a child speaks"], "sample_ids": ["soTOh3zYJfY", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["vehicle, skid, tires", "a, child, speaks"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wyllXV6PjKo", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a baby, a woman, a man", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking and a baby is crying"], "question": "which entity has a baby?", "label": 0}, {"captions": ["children speak as a female ask them questions", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wEBlkGWVWwE", "y8WEcpOlT3I"], "start_seconds": ["260", "40"], "properties": ["female, speak, questions", "harsh, wind, blows"], "captions_pred_video": ["shows a person writing on the whiteboard", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water drains", "water flows as men speak and yell"], "sample_ids": ["sfAvvZwdLCY", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["water drains, flushes, water", "water, flow, men"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water", "label": 1}, {"captions": ["a baby laugh at a sputter", "pigeons vocalize and birds chirp"], "sample_ids": ["sLUnaPT5gM8", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["laugh, sputter, baby", "vocalize, bird, chirp"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of the pigeon in the cage"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "wind blows as people chatter quietly"], "sample_ids": ["y2bVZ7rz-5M", "xBxDz0CFVn0"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "wind, chatter, people"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage is blurry and out of focus"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a weapon fires multiple times"], "sample_ids": ["vSeGhaZt-aI", "sMC07Ucy7kg"], "start_seconds": ["50", "10"], "properties": ["water, bubbles, run", "weapon, fire, multiple"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is from a car's point of view"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "people are clapping and speaking with background noise "], "question": "which entity is more violent", "label": 1}, {"captions": ["leaves rustle while man speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["zOZleIRqZm4", "xjhAnI2q6hM"], "start_seconds": ["80", "6"], "properties": ["leaves, rustle, speak", "engine revs, vehicle, people"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle?", "label": 1}, {"captions": ["children speak and play together", "water splashes and a door squeaks"], "sample_ids": ["yVVP8XvWJTo", "sdXV-ylviw"], "start_seconds": ["260", "190"], "properties": ["children, speak, play", "sound, splash, door"], "captions_pred_video": ["footage of a playground at a school or daycare center", null], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a dog barks and taps with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "an airplane engine runs"], "sample_ids": ["vbZ-0lGPneg", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["a woman, a television program, a bird", "engine, airplane, runs"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a door slams shut roughly", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zkKdxzNC97Y", "vYkA3cfXp5Q"], "start_seconds": ["27", "30"], "properties": ["a door, slams, shut", "engine, accelerate, idle"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a door is opened and closed", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tPJvjq9QePY", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["animal, bleat, moo", "engine, laugh, loud"], "captions_pred_video": ["a dog and a sheep in a barn", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a baby cries and a man speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a man speaks while turning a water faucet on"], "sample_ids": ["vdoxuJn9lTc", "vf9xf3vMsGM"], "start_seconds": ["40", "540"], "properties": ["person, burp, girl", "A man speaks while turning a water faucet on."], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking while water is running in the background"], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "water pouring and bubbling"], "sample_ids": ["tEE3MpBt1sg", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["drill, something, laugh", "water, bubbles, pouring"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["male speech with light ticking", "winds blows roughly as a vehicle races past"], "sample_ids": ["xO-Q2BlIIPU", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["male, speech, ticking", "wind, blows, vehicle"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "some tunes played by whistling"], "sample_ids": ["xERFUeZONz8", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["ring, approach, traffic", "tune, play, whistling"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["an emergency vehicle siren blares", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xjhAnI2q6hM", "uZesmtKZGSw"], "start_seconds": ["6", "250"], "properties": ["wind, blow, loudly", "men, talk, cars"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "plastic is tapped on while someone speaks"], "sample_ids": ["ylpYOorfH4o", "wvKpEYswXO0"], "start_seconds": ["410", "150"], "properties": ["motor, run, steady", "plastic, tap, speak"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "small dogs yip and bark sharply"], "sample_ids": ["v7jJS8aAyA", "v-wcQf4BDY0"], "start_seconds": ["10", "120"], "properties": ["wind, blows, loudly", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as horns blow", "a telephone rings followed by a woman talking"], "sample_ids": ["tHyNqRyK34A", "tGcFnX0GHI"], "start_seconds": ["24", "0"], "properties": ["a, man, speaks", "ring, talk, woman"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["xl2PIWyXaM", "ziUT9IFTkjg"], "start_seconds": ["160", "10"], "properties": ["chirp, man, younger person", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "birds are chirping and a chime is ringing "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "someone is typing on a computer keyboard"], "sample_ids": ["wz7N8YRy74I", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["rooster, crow, background, men", "keyboard, type, computer"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a man speaks as a motor runs in the background"], "sample_ids": ["vh30P49Po6s", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "background, motor, run"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a duck is quacking loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a woman speaks with water running"], "sample_ids": ["sjlVMgdGSK0", "wTideSjRFS0"], "start_seconds": ["30", "30"], "properties": ["accelerates, vehicle, race car", "water, running, woman"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking while water is running in the background"], "question": "which entity is stationary", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a mechanical buzzing getting louder"], "sample_ids": ["wz7N8YRy74I", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["rooster, crow, background, people", "noise, loud, buzzing"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["a male speaks over some small clicks", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["uXxVebHsGZ8", "s7knHCFW82w"], "start_seconds": ["30", "30"], "properties": ["male, clicks, speak", "blow horn, get close, train"], "captions_pred_video": [null, "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "someone snores nearby"], "sample_ids": ["yks4cLgIDMc", "spJCm8tD9Zo"], "start_seconds": ["170", "90"], "properties": ["background, speaking, child", "someone snores, nearby, someone"], "captions_pred_video": ["footage of two kids wrestling on the floor", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking and a child is crying", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "wind blows as people chatter quietly"], "sample_ids": ["y8WEcpOlT3I", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["harsh, wind, blows", "wind, chatter, people"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "people applaud and hoot and chat quietly"], "sample_ids": ["x6ijhqRY38s", "wwyfGO2J4"], "start_seconds": ["250", "90"], "properties": ["bowl, silverware, man", "people, applaud, hoot"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wTjoRj1se3U", "yajyRTUQk3U"], "start_seconds": ["390", "400"], "properties": ["engine, run, people", "a woman, something, fried"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a jet engine is running and people are talking", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "vehicles pass by on a roadway"], "sample_ids": ["uJV8NDaHqqk", "tgbONvsP47Y"], "start_seconds": ["100", "0"], "properties": ["loud, fly, chirp", "pass, vehicle, roadway"], "captions_pred_video": ["a bee hive in a wooden box", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a swarm of bees buzzing around", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person whistles a meandering tune", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uFoga8sHpiw", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["person, tune, whistle", "wind, blow, vehicle"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water splashes and a door squeaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["sdXV-ylviw", "uWAAAL4CIoc"], "start_seconds": ["190", "0"], "properties": ["sound, splash, door", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman is speaking and a dog is barking "], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "an airplane engine spools and people speak"], "sample_ids": ["su6FAOcOA8c", "wTjoRj1se3U"], "start_seconds": ["4", "390"], "properties": ["engine, idle, woman", "airplane, engine, spool"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a jet engine is running and people are talking"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a woman speaks as she rubs two objects together"], "sample_ids": ["uzQnlJXBbOM", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["ringing, beep, stop", "two objects, woman, speak"], "captions_pred_video": ["footage of a person using a cell phone on a table", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a telephone rings and a man speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vdoxuJn9lTc", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["burp, loud, girl", "engine, laugh, loud"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a child speaks followed by a burp", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["water flows as men speak and yell", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vJ7JPEFhyLA", "xfaoyyzw2WU"], "start_seconds": ["16", "180"], "properties": ["water, flow, men", "loud, jet engine, roar"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "water is sprayed across a hard surface"], "sample_ids": ["xl2PIWyXaM", "sQwlkXjQabo"], "start_seconds": ["160", "10"], "properties": ["chirp, man, younger person", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["birds are chirping and people are talking", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a car speeding up in the distance"], "sample_ids": ["sapQIQUhFc", "u0TrcHhkPQ"], "start_seconds": ["280", "20"], "properties": ["liquid, flow, distance", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a person sniffs and sneezes"], "sample_ids": ["vBHyYJ8pL0", "uRlbY6aoBU"], "start_seconds": ["2", "0"], "properties": ["noise, door, opening", "sneezes, person, sniffs"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is sneezing "], "question": "which entity is accompanied by a door opening and closing", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "water is sprayed across a hard surface"], "sample_ids": ["sQwlkXjQabo", "sQwlkXjQabo"], "start_seconds": ["10", "10"], "properties": ["liquid, surface, spray", "water, spray, surface"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["spraying followed by silence", "spraying followed by silence"], "question": "which entity is sprayed across a hard surface", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["wnpJndXuxLc", "uOpoD0gGXcs"], "start_seconds": ["50", "120"], "properties": ["blows, vehicle, train", "chirps, woman, bird"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a herd of cows grazing in the field"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "birds are chirping and a man is speaking"], "question": "which entity is a person", "label": 1}, {"captions": ["material crumbles into a microphone", "water splashes as an animal walks through"], "sample_ids": ["vofpvUo6NAw", "w1ir-sZ3Im8"], "start_seconds": ["220", "90"], "properties": ["material, crumbles, microphone", "animal, water, splashes"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["paper is being crumpled and crinkled", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video of a person speaking?", "label": 0}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tQWGZLItBXk", "tdWhHV3X25Q"], "start_seconds": ["170", "60"], "properties": ["music, person, ding", "applause, audience, yells"], "captions_pred_video": ["worms revolution screenshots", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tZGN5a7ybxo", "vYkA3cfXp5Q"], "start_seconds": ["60", "30"], "properties": ["ring, train, horn", "engine, accelerate, idle"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a train is moving and blowing its horn ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a train engine runs and a horn blows", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zPX9o1uDiI", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["engine, horn, run", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "two frogs croak at each other"], "sample_ids": ["un9VQlzgZM", "zg0X6BnhOLQ"], "start_seconds": ["5", "410"], "properties": ["females, talk, laugh", "two frogs, croak, at each other"], "captions_pred_video": [null, "footage of lightning in the sky at night"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a frog is croaking"], "question": "which entity is more likely to be a frog", "label": 1}, {"captions": ["scraping and female speech with distant music", "someone whistles a tune"], "sample_ids": ["yHeVV-xeOxQ", "sIXTftIuUgw"], "start_seconds": ["130", "90"], "properties": ["female, speech, music", "someone, tune, whistle"], "captions_pred_video": ["of a girl milking a goat's udder", null], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "wind blows as people chatter quietly"], "sample_ids": ["y8dSeubCNI", "xBxDz0CFVn0"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "people speak in a closed space"], "sample_ids": ["s6DESzUTGjY", "sTpirNYo8vQ"], "start_seconds": ["16", "30"], "properties": ["wind, laugh, woman", "people, space, speak"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a man is speaking while a car is revving and accelerating "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sK4u5T8hW78", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["a, car, pass", "engine, revs, vehicle"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which vehicle is passing by", "label": 1}, {"captions": ["white noise and birds chirping", "roadway noise occurs and a truck accelerates"], "sample_ids": ["wRBHTgrbiwg", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["noise, white, chirping", "noise, truck, accelerate"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a car is driving on the road "], "question": "which noise is more likely to be heard", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xzKKf9bKNUo", "zl9Dqx-j7q4"], "start_seconds": ["10", "6"], "properties": ["background, noise, snoring", "engine, laugh, loud"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person snoring loudly", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "small dogs yip and bark sharply"], "sample_ids": ["vb1fPSDI4c", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["multiple, people, yell", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["food is frying then a woman speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["ukxt9I7eMMg", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "two men, speak, follow"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "a frog croaks as other frogs croak in the background"], "sample_ids": ["uRlbY6aoBU", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["a, distance, sneeze", "background, frog, croak"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a man is sneezing ", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "winds blows roughly as a vehicle races past"], "sample_ids": ["sfAvvZwdLCY", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["flushes, drains, water", "wind, blows, vehicle"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a toilet is flushed", "a jet engine roars and wind blows "], "question": "which entity is a source of water", "label": 0}, {"captions": ["a door opens and closes", "birds chirp and objects are moved around"], "sample_ids": ["vBHyYJ8pL0", "yPUYU6t3rwo"], "start_seconds": ["2", "370"], "properties": ["open, close, door", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["uEU-Hg5MTN8", "uYT5gxnyMWM"], "start_seconds": ["27", "50"], "properties": ["a woman, laughs, animal", "a, scream, girl"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "several insects fly while two men talk"], "sample_ids": ["y4tPJXBKDig", "s-T9OVOiMLo"], "start_seconds": ["20", "330"], "properties": ["a, noise, talk", "several, fly, men"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a girl talking", "label": 0}, {"captions": ["an engine idles consistently before sputtering some", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["rwTERCUno", "tdWhHV3X25Q"], "start_seconds": ["90", "60"], "properties": ["engine, idle, sputter", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "an airplane engine runs"], "sample_ids": ["vbpKkWvfOu4", "yVPZ2MNWpms"], "start_seconds": ["560", "0"], "properties": ["a, woman, man", "engine, airplane, runs"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "paper is crumpling consistently"], "sample_ids": ["xl2PIWyXaM", "v5cSxLaHADY"], "start_seconds": ["160", "0"], "properties": ["chirp, man, younger person", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping and people are talking", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a machine beeps continuously"], "sample_ids": ["wyllXV6PjKo", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["a kid, talk, cry", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a duck quacks continuously"], "sample_ids": ["xO-Q2BlIIPU", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["two men, exclamation, speak", "quacks, continuously, duck"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an animal quacks rapidly", "an infant crying as a woman laughs"], "sample_ids": ["vh30P49Po6s", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["animal, quacks, rapidly", "a, laugh, infant"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a duck is quacking loudly", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["u21-Z5gJCB8", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["background, voice, man", "two men, woman, birds"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a clock ticktocks"], "sample_ids": ["sDSppXIlJrs", "v-g-j2uTByM"], "start_seconds": ["27", "30"], "properties": ["microphone, water, wind", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["food is frying and sizzles", "dishes cling together then a man begins to speak"], "sample_ids": ["zNRChLjqcU", "sQGXqGcwOTc"], "start_seconds": ["220", "3"], "properties": ["food is frying, sizzles, food", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["water is running from a faucet into a sink", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a woman speaks as she rubs two objects together"], "sample_ids": ["t25U-v4k4ts", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["bees buzz, birds chirp, man speaks", "two objects, woman, speak"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "an animal growls followed by birds chirping"], "sample_ids": ["w9lpbUn0hPc", "y2ZBGpgbhHM"], "start_seconds": ["30", "30"], "properties": ["male, wind, rustling", "animal, growl, bird"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", null], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "birds chirping and a dog panting"], "question": "which entity is followed by birds chirping", "label": 1}, {"captions": ["water splashes as an animal walks through", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["w1ir-sZ3Im8", "yDoT73BWsdA"], "start_seconds": ["90", "10"], "properties": ["animal, water, splashes", "engine, revs, vehicle"], "captions_pred_video": ["footage of a group of people riding horses through a river", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["an audience gives applause as a man yells and a group sings", "a woman speaks and then a man speaks"], "sample_ids": ["tdWhHV3X25Q", "vbpKkWvfOu4"], "start_seconds": ["60", "560"], "properties": ["applause, audience, yells", "a, man, speaks"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a woman is speaking and a man is speaking"], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "birds vocalize and chirp continuously"], "sample_ids": ["uOpoD0gGXcs", "w1mlz3Pe4fU"], "start_seconds": ["120", "300"], "properties": ["chirps, woman, bird", "vocalize, chirp, continuously"], "captions_pred_video": ["a herd of cows grazing in the field", "of a bird in a cage"], "captions_pred_audio": ["birds are chirping and a man is speaking", "birds are chirping and singing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while water drains", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vSeGhaZt-aI", "w34HjHr6gAY"], "start_seconds": ["50", "30"], "properties": ["water, drain, man", "beeps, hit, woman"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["w2M4i1mklOA", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["loud, chime, bell", "motor noise, horn, siren"], "captions_pred_video": ["footage of an antique clock", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vXlk0lIQBFo", "zj2R0XoFr5k"], "start_seconds": ["470", "50"], "properties": ["wind, talk, vocalize", "airplane, boy, fly"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a person snoring several times", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["spJCm8tD9Zo", "tDVADusiIoc"], "start_seconds": ["90", "60"], "properties": ["snore, person, several", "water, radio, man"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person?", "label": 0}, {"captions": ["birds chirp quietly and an adult man speaks", "a car speeding up in the distance"], "sample_ids": ["zuua6-5goWw", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["birds, chirp, quiet, man, speaks", "distance, car, speed"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["engines sputter roughly and tires squeal", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zhx6hoYrHeI", "uYT5gxnyMWM"], "start_seconds": ["160", "50"], "properties": ["engine, sputter, rough", "female, spraying, scream"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "an engine idles consistently before sputtering some"], "sample_ids": ["tDlfY3nmx1A", "rwTERCUno"], "start_seconds": ["160", "90"], "properties": ["applause, laugh, man", "engine, idle, sputter"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", null], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "an engine is idling and vibrating"], "question": "which entity is a machine?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "a car accelerates and wind blows"], "sample_ids": ["vBslzh7saPw", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["engine, roar, louder", "accelerates, wind, blows"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["water runs into a sink while men speak", "a airplane flies overhead as a woman speaks"], "sample_ids": ["vzceMbklWc", "zj2R0XoFr5k"], "start_seconds": ["180", "50"], "properties": ["water, sink, run", "airplane, fly, woman"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["water is running and a man is speaking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a woman speaks as frying food sizzles"], "sample_ids": ["wqN6IIHw3po", "wTideSjRFS0"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "food, sizzle, woman"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a man is speaking and water is splashing", "a woman is speaking while water is running in the background"], "question": "which entity is a man speaking to?", "label": 0}, {"captions": ["a vehicle accelerates squealing tires", "a stream of water runs briefly"], "sample_ids": ["sd7xVssqlw", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["accelerates, tires, squealing", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "people speak as gunfire rings out"], "sample_ids": ["sAam2NqGhLY", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["snoring, breathing, child", "gunfire, ring, speak"], "captions_pred_video": ["of a little girl sleeping on a couch", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person is snoring", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["su6FAOcOA8c", "vbZ-0lGPneg"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "a woman, a television program, a bird"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vW4x7S1VfQc", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["clacking, oil, woman", "three men, wind, flow"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["a man speaks as a machine runs", "an engine sputters followed by a car zooming by"], "sample_ids": ["vD6lYD1l0BY", "u5RmF3c3Aw"], "start_seconds": ["330", "60"], "properties": ["a, machine, run", "engine, car, zoom"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a race car accelerates and skids with wind noise in the background "], "question": "which entity is a car?", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xfaoyyzw2WU", "vbZ-0lGPneg"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "a woman, a television program, a bird"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a woman is speaking and a dog is whimpering"], "question": "which is quieter", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a woman speaks happily and an animal chirps"], "sample_ids": ["slZLHwNbbt4", "uWAAAL4CIoc"], "start_seconds": ["300", "0"], "properties": ["clap, distance, horn", "a woman, chirps, animal"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "an adult man speaks over glass clinking"], "sample_ids": ["yYEVLuqEytU", "u6jIvCtKarQ"], "start_seconds": ["40", "70"], "properties": ["grunt, slurp, background", "a, man, speaks"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a person using a blender on a stove top"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking and dishes are being moved with background noise "], "question": "which entity is a person", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a woman speaks as she rubs two objects together"], "sample_ids": ["xKB8O8LTs6s", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["music, radio, gunshots", "two objects, woman, speak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman is speaking", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "rustling with distant murmuring"], "sample_ids": ["vh30P49Po6s", "wnNNcxAPwGQ"], "start_seconds": ["30", "0"], "properties": ["loud, continuous, quacks", "sound, distance, rustling"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a yellow truck doing a burnout on a race track"], "captions_pred_audio": ["a duck is quacking loudly", "a crowd of people are talking and laughing while a skateboard rolls by "], "question": "which entity is quieter", "label": 1}, {"captions": ["a weapon fires multiple times", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sMC07Ucy7kg", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["weapon, fire, multiple", "animal, grunts, snorts"], "captions_pred_video": ["footage is from a car's point of view", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is not a weapon", "label": 1}, {"captions": ["an animal quacks rapidly", "someone snores nearby"], "sample_ids": ["vh30P49Po6s", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["animal, quacks, rapidly", "someone snores, nearby, someone"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a duck is quacking loudly", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a stream of water runs briefly"], "sample_ids": ["voJh2gJxXhA", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["music, frog, croak", "stream, water, run"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["uWPRNLnpy7Y", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["accelerate, laugh, vehicle", "engine, revs, vehicle"], "captions_pred_video": ["is taken from a car driving down the street", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving faster", "label": 0}, {"captions": ["scraping and female speech with distant music", "a telephone rings followed by a woman talking"], "sample_ids": ["yHeVV-xeOxQ", "tGcFnX0GHI"], "start_seconds": ["130", "0"], "properties": ["female, speech, music", "ring, talk, woman"], "captions_pred_video": ["of a girl milking a goat's udder", null], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a dark barks and whimpers", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sYj4hpDUZDQ", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["barks, whimpers, dark", "two men, woman, birds"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak softly as food sizzles", "frogs croak and vocalize"], "sample_ids": ["yhQ2Lg-7qDY", "yswmmRZFItk"], "start_seconds": ["130", "0"], "properties": ["food, sizzle, speak", "croak, vocalize, frog"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a close up of a frog in the water"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a frog is croaking"], "question": "which entity is a frog", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "continuous sizzling with a woman speaking towards the end"], "sample_ids": ["vfYTJq7nU", "ukxt9I7eMMg"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "continuous, woman, speaking"], "captions_pred_video": [null, "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking while food is frying in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vVhthZ45k3Y", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["cat, purr, hiss", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and out of focus", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "paper folding and crinkling"], "sample_ids": ["tIY7qOV3rEM", "zPpG3RD8lSs"], "start_seconds": ["0", "20"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "paper, fold, crinkle"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "the wind blows and a mouse clicks "], "question": "which entity is not a living thing", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "wind blows as people chatter quietly"], "sample_ids": ["xfudFO976zE", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["animal, bleats, cry", "wind, chatter, people"], "captions_pred_video": ["footage is blurry and shaky", "footage is blurry and out of focus"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a person speaks briefly", "a jet engine spools up and takes off"], "sample_ids": ["zOZleIRqZm4", "vBslzh7saPw"], "start_seconds": ["80", "90"], "properties": ["person, talk, brief", "engine, spools, takes"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a jet engine roars and accelerates "], "question": "which is a moving object", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yDoT73BWsdA", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["engine, revs, vehicle", "loud, jet engine, roar"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["water bubbles and gurgles.", "birds chirp and objects are moved around"], "sample_ids": ["tB7hWb9gTuQ", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["bubbles, gurgles, water", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["water is splashing and gurgling", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a woman speaks happily and an animal chirps"], "sample_ids": ["yFB25fqfU8I", "uWAAAL4CIoc"], "start_seconds": ["300", "0"], "properties": ["wave, crash, shoreline", "a woman, chirps, animal"], "captions_pred_video": ["footage of a person surfing in the ocean", null], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["a person is burping while a girl speaks", "paper folding and crinkling"], "sample_ids": ["vdoxuJn9lTc", "zPpG3RD8lSs"], "start_seconds": ["40", "20"], "properties": ["person, burp, girl", "paper, fold, crinkle"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a child speaks followed by a burp", "the wind blows and a mouse clicks "], "question": "which is not a person", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "some tunes played by whistling"], "sample_ids": ["xfudFO976zE", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["animal, bleats, cry", "tune, play, whistling"], "captions_pred_video": ["footage is blurry and shaky", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sfAvvZwdLCY", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["water drains, flushes, water", "wind, blow, vehicle"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an engine runs and a man speaks", "an emergency vehicle engine runs then a horn blows and siren sounds"], "sample_ids": ["yT5WfYMRr-U", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["engine, run, man", "engine, horn, siren"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn and siren", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "water splashes as an animal walks through"], "sample_ids": ["ylpYOorfH4o", "w1ir-sZ3Im8"], "start_seconds": ["410", "90"], "properties": ["engine, running, wind", "animal, water, splashes"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and an engine is revving", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "some tunes played by whistling"], "sample_ids": ["uYT5gxnyMWM", "u6BnG6YZqJ4"], "start_seconds": ["50", "0"], "properties": ["person, spray, yell", "tune, play, whistling"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "people speak as gunfire rings out"], "sample_ids": ["tDVADusiIoc", "wqTCwqVRDlk"], "start_seconds": ["60", "80"], "properties": ["man, radio, blows", "gunfire, ring, speak"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war zone", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a car accelerates and wind blows"], "sample_ids": ["vs65y4qmyBE", "u0TrcHhkPQ"], "start_seconds": ["340", "20"], "properties": ["engine, run, man", "accelerates, wind, blows"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a helicopter engine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["t5ZbXbniOWk", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["engine, helicopter, run", "female, spraying, scream"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["birds vocalize and a man speaks", "an infant crying as a woman laughs"], "sample_ids": ["v0wPrLBI3hg", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["vocalize, bird, speak", "a, laugh, infant"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a person snoring", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["t8tv5YRMJUg", "wRBHTgrbiwg"], "start_seconds": ["0", "50"], "properties": ["a person, snore, loud", "bird, owl, speak"], "captions_pred_video": ["of a man getting his face licked by another man", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a person sniffs and breathes heavily", "birds are chirping and insects are buzzing"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "dishes cling together then a man begins to speak"], "sample_ids": ["ugHJF0hfYkg", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["engine, running, continuously", "cling, speak, dishes"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a helicopter is flying overhead ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a car speeding up in the distance"], "sample_ids": ["rwtmaKiCcQU", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["nozzle, depressed, spray can", "distance, car, speed"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", null], "captions_pred_audio": ["spraying and people speaking", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a man talks as several small engines run", "someone snores nearby"], "sample_ids": ["u9A6VZQCZpU", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["a, man, talk", "someone snores, nearby, someone"], "captions_pred_video": [null, "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uiItxDsDMFI", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["wood, piece, saw", "wind, blow, vehicle"], "captions_pred_video": ["a man cutting a log with an axe in the woods", null], "captions_pred_audio": ["a saw is being used with background noise ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not being sawed", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a diesel truck engine runs continuously"], "sample_ids": ["uYT5gxnyMWM", "sZvwOuuPGP0"], "start_seconds": ["50", "50"], "properties": ["a, scream, girl", "engine, diesel, truck"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a medium engine is running "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "water pouring and bubbling"], "sample_ids": ["sWZzXuWYY", "uyRfq-jKPpo"], "start_seconds": ["420", "50"], "properties": ["male, speech, banging", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a horn rings out as a machine runs by"], "sample_ids": ["xyx6eNVEYRY", "slZLHwNbbt4"], "start_seconds": ["380", "300"], "properties": ["loud, engine, muffles", "a, horn, run"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["x6ijhqRY38s", "w34HjHr6gAY"], "start_seconds": ["250", "30"], "properties": ["bowl, silverware, man", "beeps, hit, woman"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a beep sounds followed by a child speaking"], "question": "which entity is about a woman talking?", "label": 1}, {"captions": ["ticking continues without interruption", "a man speaks uses a drill"], "sample_ids": ["v-g-j2uTByM", "x5eIC7S0fbg"], "start_seconds": ["30", "60"], "properties": ["ticking, continuous, clock", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["birds tweet and squawk", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w1mlz3Pe4fU", "sSMl2vc3ek"], "start_seconds": ["300", "20"], "properties": ["squawk, tweet, scream", "loud, multiple, distance"], "captions_pred_video": ["of a bird in a cage", null], "captions_pred_audio": ["birds are chirping and singing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["birds coo incessantly", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["yZrFNS7GFBQ", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["coo, bird, incessant", "sheep, baa, birds"], "captions_pred_video": ["of the bird in the cage", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["an owl hoots in the background ", "a goat bleats and birds chirp"], "question": "which entity is a sheep?", "label": 1}, {"captions": ["people speak softly as food sizzles", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yhQ2Lg-7qDY", "su6FAOcOA8c"], "start_seconds": ["130", "4"], "properties": ["food, sizzle, speak", "engine, idle, woman"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and a subway train is moving "], "question": "which entity is about a bus engine?", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["zNRChLjqcU", "wnpJndXuxLc"], "start_seconds": ["220", "50"], "properties": ["water, faucet, run", "beeps, loud, whistle"], "captions_pred_video": [null, "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["water is running from a faucet into a sink", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a stream of water runs briefly"], "sample_ids": ["u--KhUW8l1Y", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["engine, sound, horn", "stream, water, run"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["leaves rustle while man speaks", "a infant makes noise and is excited"], "sample_ids": ["zOZleIRqZm4", "wIJK3-5y0kA"], "start_seconds": ["80", "30"], "properties": ["leaves, rustle, speak", "noise, excited, infant"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby cries and a woman speaks"], "question": "which is quieter", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uEU-Hg5MTN8", "zl9Dqx-j7q4"], "start_seconds": ["27", "6"], "properties": ["a woman, laughs, animal", "engine, laugh, loud"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["several insects fly while two men talk", "water pouring and bubbling"], "sample_ids": ["s-T9OVOiMLo", "uyRfq-jKPpo"], "start_seconds": ["330", "50"], "properties": ["several, fly, men", "water, bubbles, pouring"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["sWZzXuWYY", "sQGXqGcwOTc"], "start_seconds": ["420", "3"], "properties": ["male, clanks, thumps", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about a machine?", "label": 0}, {"captions": ["a door opens and closes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vBHyYJ8pL0", "zj2R0XoFr5k"], "start_seconds": ["2", "50"], "properties": ["open, close, door", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a propeller rotates loudly and intensely"], "sample_ids": ["x6ijhqRY38s", "ugHJF0hfYkg"], "start_seconds": ["250", "10"], "properties": ["something metal, glass, hit", "loud, intense, propeller"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "vehicles pass by on a roadway"], "sample_ids": ["wTjoRj1se3U", "tgbONvsP47Y"], "start_seconds": ["390", "0"], "properties": ["engine, run, people", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["water splashes as an animal walks through", "a car speeding up in the distance"], "sample_ids": ["w1ir-sZ3Im8", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["animal, water, splashes", "distance, car, speed"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yeFvk9x0wWI", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["chirp, twitter, clatter", "a woman, something, fried"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "paper is crumpling consistently"], "sample_ids": ["wSVhSdj0F0", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["horn honks, keys jingle, slam", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "a stream of water flows as people talk and wind blows"], "sample_ids": ["tMJne1a4AFI", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["wind, buzz, rustling", "stream, water, flow"], "captions_pred_video": ["a swarm of bees on the ground", "footage is blurry and out of focus"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaking with light rustling", "people applaud and hoot and chat quietly"], "sample_ids": ["zOZleIRqZm4", "wwyfGO2J4"], "start_seconds": ["80", "90"], "properties": ["light, rustling, man", "people, applaud, hoot"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a woman speaks over sizzling noise"], "sample_ids": ["xKB8O8LTs6s", "yajyRTUQk3U"], "start_seconds": ["70", "400"], "properties": ["music, gunfire, explosion", "noise, woman, speak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "- a woman cooking in the kitchen"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking while food is frying in the background"], "question": "which entity has a woman speaking over a sizzling noise?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sSMl2vc3ek", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["loud, multiple, distance", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "a car speeding up in the distance"], "sample_ids": ["yYJksgsxx5U", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["audio, clicks, scraping", "distance, car, speed"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", null], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "some men converse over an engine running"], "sample_ids": ["wqADXCzngMw", "sCiy7QS1U"], "start_seconds": ["340", "300"], "properties": ["audio, humming, revving", "men, converse, engine"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", null], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video", "label": 1}, {"captions": ["water bubbles and gurgles.", "water pouring and bubbling"], "sample_ids": ["tB7hWb9gTuQ", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["bubbles, gurgles, water", "water, bubbles, pouring"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["water is splashing and gurgling", "water is running from a faucet"], "question": "which entity is a video of water flowing and bubbling?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a man speaks as a car is passing by"], "sample_ids": ["vr8ZXjEBhMQ", "sK4u5T8hW78"], "start_seconds": ["150", "30"], "properties": ["wind, blow, zoom", "a, car, pass"], "captions_pred_video": ["is taken from a motorcycle's point of view", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a zoom of", "label": 0}, {"captions": ["a motor slows to a stopover traffic noises", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zofjfKhqLk8", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["noise, stop, motor", "applause, audience, yells"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tGcFnX0GHI", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["ring, talk, woman", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "small dogs yip and bark sharply"], "sample_ids": ["y8WEcpOlT3I", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["wind, speak, buffeting", "bark, yip, sharply"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vXlk0lIQBFo", "yajyRTUQk3U"], "start_seconds": ["470", "400"], "properties": ["wind, speak, vocalize", "a woman, something, fried"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "- a woman cooking in the kitchen"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tOSWIURC-4", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["engine, work, nearby", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a lawn mower is running ", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["wind blowing followed by a zoom", "an infant crying as a woman laughs"], "sample_ids": ["vr8ZXjEBhMQ", "xhmRY9yhC7c"], "start_seconds": ["150", "20"], "properties": ["wind, blow, zoom", "a, laugh, infant"], "captions_pred_video": ["is taken from a motorcycle's point of view", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wfHeoPDLMaM", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["quacking, squawking, ducks", "sheep, baa, birds"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["ducks are quacking", "a goat bleats and birds chirp"], "question": "which entity is a single animal", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "wind blows as people chatter quietly"], "sample_ids": ["sU53zg9Jp7s", "xBxDz0CFVn0"], "start_seconds": ["380", "30"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "wind, chatter, people"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "footage is blurry and out of focus"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "wind blowing followed by a zoom"], "sample_ids": ["vbpKkWvfOu4", "vr8ZXjEBhMQ"], "start_seconds": ["560", "150"], "properties": ["a, man, speaks", "wind, blow, zoom"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["birds chirp then an animal grunts", "people cheer as a vehicle engine revs"], "sample_ids": ["tDlysoZiA1I", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["animal, grunt, chirp", "engine revs, vehicle, people"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["x5cuQjOdM3E", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["cat, talk, meow", "engine, laugh, loud"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a cat meows and a woman speaks", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a person snoring", "wind blows as people chatter quietly"], "sample_ids": ["t8tv5YRMJUg", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["a person, snore, loud", "wind, chatter, people"], "captions_pred_video": ["of a man getting his face licked by another man", "footage is blurry and out of focus"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "motors rev and run loudly as a person laughs"], "sample_ids": ["vJ7JPEFhyLA", "zl9Dqx-j7q4"], "start_seconds": ["16", "6"], "properties": ["three men, wind, flow", "motors rev, laugh, loudly"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars "], "question": "which entity is more quiet", "label": 0}, {"captions": ["some clanking with distant murmuring", "motors rev and run loudly as a person laughs"], "sample_ids": ["uMTTDZ2mb4", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["clanking, murmuring, distant", "motors rev, laugh, loudly"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a jet engine roars "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a girl talking, laughing and sneezing noise", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y4tPJXBKDig", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["a, noise, talk", "music, gunfire, explosion"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a person speaks briefly"], "sample_ids": ["zgUgkpk78xU", "zOZleIRqZm4"], "start_seconds": ["70", "80"], "properties": ["horn, bell, train", "person, talk, brief"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking with crickets chirping in the background"], "question": "which entity is talking", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["vJvryTwuAV8", "vddP56-ogds"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "liquid, laughs, man"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", null], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "water is running and gurgling and a man is speaking"], "question": "which entity has a man speaking to an audience?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yRx9txMcBl0", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "multiple, people, yell"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "small dogs yip and bark sharply"], "sample_ids": ["rqu8iB22IY", "v-wcQf4BDY0"], "start_seconds": ["5", "120"], "properties": ["sound, repeats, laugh", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a dog barks and growls"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vbr9mHKc8WM", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["noise, loudness, engine", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["an engine is idling", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["an infant crying frantically", "a man speaks as a motor runs in the background"], "sample_ids": ["zwOBqeFTgiU", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["cry, infant, frantically", "background, motor, run"], "captions_pred_video": ["of the baby crying in the car seat", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a baby cries loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is silent", "label": 1}, {"captions": ["ticking continues without interruption", "a man speaks as a motor runs in the background"], "sample_ids": ["v-g-j2uTByM", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "background, motor, run"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a clock is ticking loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a clock", "label": 0}, {"captions": ["men speak and a nozzle sprays liquid", "water flows and trickles"], "sample_ids": ["wRV8yMk886E", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "water, flow, trickle"], "captions_pred_video": ["two cars are parked in a parking lot at night", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man speaks followed by a loud burst", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds vocalize and a man speaks", "an insect buzzes around continuously"], "sample_ids": ["v0wPrLBI3hg", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["vocalize, bird, speak", "buzzes, continuously, insect"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a fly is buzzing around a microphone "], "question": "which entity is not a bird?", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xERFUeZONz8", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "a woman, a television program, a bird"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["an emergency vehicle siren blares", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "waves crash against a shoreline and wind blows"], "sample_ids": ["vJvryTwuAV8", "zdYdyF9-m8U"], "start_seconds": ["16", "7"], "properties": ["audience, cheer, man", "wind, crash, shoreline"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a person kayaking in the ocean near a cliff"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "waves crash and wind blows "], "question": "which entity is more active", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "people applaud and hoot and chat quietly"], "sample_ids": ["sQGXqGcwOTc", "wwyfGO2J4"], "start_seconds": ["3", "90"], "properties": ["cling, speak, dishes", "people, applaud, hoot"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "wind blowing followed by a zoom"], "sample_ids": ["wqN6IIHw3po", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["rain, surface, fall", "wind, blow, zoom"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and water is splashing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["material crumbles into a microphone", "water flows as men speak and yell"], "sample_ids": ["vofpvUo6NAw", "vJ7JPEFhyLA"], "start_seconds": ["220", "16"], "properties": ["material, crumbles, microphone", "water, flow, men"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "multiple people speak and children yell while water gurgles"], "sample_ids": ["ylpYOorfH4o", "vb1fPSDI4c"], "start_seconds": ["410", "30"], "properties": ["motor, run, steady", "multiple, people, yell"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vcmWSmvti8", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["music, man, fire", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about to fly", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wqZ135Ssz0", "xBxDz0CFVn0"], "start_seconds": ["60", "30"], "properties": ["man, woman, squawks", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is accompanied by a man and woman speaking", "label": 0}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "someone whistles a tune"], "sample_ids": ["wyllXV6PjKo", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["a baby, a woman, a man", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["paper is crumpling consistently", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["v5cSxLaHADY", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "a woman, a television program, a bird"], "captions_pred_video": ["footage of the person holding a pair of scissors", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["male speech with light ticking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xO-Q2BlIIPU", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["male, speech, ticking", "applause, audience, yells"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a telephone rings followed by a woman talking"], "sample_ids": ["vb1fPSDI4c", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["multiple, people, yell", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a crowd of people are talking and laughing", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "winds blows roughly as a vehicle races past"], "sample_ids": ["ujMt0-D-x2k", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["snoring, rhythmical, nearby", "wind, blows, vehicle"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a person is snoring loudly", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a man speaks as a car is passing by"], "sample_ids": ["s4Uz1Ffgo04", "sK4u5T8hW78"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "a, car, pass"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is quieter", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tIY7qOV3rEM", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "wind, blow, vehicle"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["dishes cling together then a man begins to speak", "an animal growls followed by birds chirping"], "sample_ids": ["sQGXqGcwOTc", "y2ZBGpgbhHM"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "animal, growl, bird"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "birds chirping and a dog panting"], "question": "which entity is more likely to be a scream", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xBxDz0CFVn0", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["stream, water, flow", "a woman, laughs, animal"], "captions_pred_video": ["footage is blurry and out of focus", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "a man speaks as a motor runs in the background"], "sample_ids": ["vK93VuO0yNc", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["male voice, bus, rumble", "background, motor, run"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a child speaks in closed space"], "sample_ids": ["v-wcQf4BDY0", "yW6FWLSLkx4"], "start_seconds": ["120", "40"], "properties": ["bark, yip, sharply", "child, space, speak"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a dog barks and growls", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tGcFnX0GHI", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["ring, talk, woman", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sZPuqDgX2V0", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, intercom", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird nearby?", "label": 1}, {"captions": ["an insect buzzes around continuously", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["v25l1jef3JY", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["buzzes, continuously, insect", "a, scream, girl"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["slZLHwNbbt4", "ziUT9IFTkjg"], "start_seconds": ["300", "10"], "properties": ["clap, distance, horn", "background, birds, rustling"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an animal quacks rapidly", "a car speeding up in the distance"], "sample_ids": ["vh30P49Po6s", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["animal, quacks, rapidly", "distance, car, speed"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "paper folding and crinkling"], "sample_ids": ["sOa7g-44Dag", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["background, man, spray", "paper, fold, crinkle"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["a child speaks in closed space", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yW6FWLSLkx4", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["child, space, speak", "stream, water, flow"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "wind blowing and birds chirping with the distant cooing of a large bird"], "sample_ids": ["w5W5Kqtc8E", "wRBHTgrbiwg"], "start_seconds": ["100", "50"], "properties": ["wind, blow, vehicle", "birds, chirp, cooing"], "captions_pred_video": [null, "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "birds are chirping and insects are buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a toilet flushes and water drains", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sfAvvZwdLCY", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["water drains, flushes, water", "men, talk, cars"], "captions_pred_video": ["footage of the toilet in the bathroom", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a source of water", "label": 0}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uZesmtKZGSw", "zFjIWfSD-4"], "start_seconds": ["250", "410"], "properties": ["men, talk, cars", "People, motor, brakes"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more cars", "label": 0}, {"captions": ["a man speaks as bees buzz and birds chirp", "a stream of water flows as people talk and wind blows"], "sample_ids": ["t25U-v4k4ts", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["bees buzz, birds chirp, man speaks", "stream, water, flow"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a male speaks over some small clicks", "birds chirp and objects are moved around"], "sample_ids": ["uXxVebHsGZ8", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["male, clicks, speak", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "children speak and play together"], "sample_ids": ["se87d6yxEOA", "yVVP8XvWJTo"], "start_seconds": ["10", "260"], "properties": ["run, whistle, pass", "children, speak, play"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "children are speaking and breathing with background noise "], "question": "which entity is moving", "label": 0}, {"captions": ["an aircraft engine runs as wind blows heavily", "a duck quacks continuously"], "sample_ids": ["xjvTpk2Zpr8", "vh30P49Po6s"], "start_seconds": ["70", "30"], "properties": ["engine, run, wind", "quacks, continuously, duck"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a duck quacks continuously"], "sample_ids": ["tK4VlLsNxak", "vh30P49Po6s"], "start_seconds": ["120", "30"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "quacks, continuously, duck"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a beep occurs briefly", "someone is typing on a computer keyboard"], "sample_ids": ["xtWeJ56-U-g", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["beep, occur, briefly", "keyboard, type, computer"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "how to make money on youtube in spanish"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a person is typing on a keyboard"], "question": "which is not a type of computer", "label": 0}, {"captions": ["loud clanking and banging with brief male speech", "paper is crumpling consistently"], "sample_ids": ["sWZzXuWYY", "v5cSxLaHADY"], "start_seconds": ["420", "0"], "properties": ["male, speech, banging", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w1mlz3Pe4fU", "wz7N8YRy74I"], "start_seconds": ["300", "30"], "properties": ["vocalize, chirp, continuously", "rooster, crow, background, men"], "captions_pred_video": ["of a bird in a cage", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a rooster?", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a woman talks while a baby cries and a man whispers"], "sample_ids": ["y1saVTXsKwc", "smDKStoHBJo"], "start_seconds": ["80", "0"], "properties": ["a, dog, talk", "a, talk, baby, cry"], "captions_pred_video": ["a dog playing with a pink ball", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a dog barks and a man speaks", "a baby is crying and a woman is speaking"], "question": "which entity has a dog?", "label": 0}, {"captions": ["a person speaks over rustling leaves", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zOZleIRqZm4", "yajyRTUQk3U"], "start_seconds": ["80", "400"], "properties": ["rustling, leaves, person", "a woman, something, fried"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a muffled toilet flushes and the water drains"], "sample_ids": ["vzceMbklWc", "sfAvvZwdLCY"], "start_seconds": ["180", "20"], "properties": ["water, faucet, sink", "flushes, drains, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["water is running and a man is speaking", "a toilet is flushed"], "question": "which entity has water running in it", "label": 0}, {"captions": ["food is frying while a woman speaks", "a woman speaks happily and an animal chirps"], "sample_ids": ["yhQ2Lg-7qDY", "uWAAAL4CIoc"], "start_seconds": ["130", "0"], "properties": ["food, woman, speak", "a woman, chirps, animal"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and a dog is barking "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a infant makes noise and is excited", "a loud engine muffles a man as he speaks"], "sample_ids": ["wIJK3-5y0kA", "xyx6eNVEYRY"], "start_seconds": ["30", "380"], "properties": ["noise, excited, infant", "loud, engine, muffles"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a baby cries and a woman speaks", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "an infant crying as a woman laughs"], "sample_ids": ["y2ZBGpgbhHM", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["animal, growl, bird", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds chirping and a dog panting", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "an engine runs loudly"], "sample_ids": ["vVhthZ45k3Y", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["cat, purr, hiss", "loud, engine, run"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tDlysoZiA1I", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["animal, grunt, multiple", "engine, laugh, loud"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a car speeding up in the distance"], "sample_ids": ["su6FAOcOA8c", "u0TrcHhkPQ"], "start_seconds": ["4", "20"], "properties": ["engine, run, woman", "distance, car, speed"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a race car accelerates and revs its engine "], "question": "which car is speeding up in the distance", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yaln9y8I7ms", "uEU-Hg5MTN8"], "start_seconds": ["230", "27"], "properties": ["female, flushes, toilet", "a woman, laughs, animal"], "captions_pred_video": ["footage is blurry and out of focus", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["an audience gives applause", "a telephone rings followed by a woman talking"], "sample_ids": ["x6iCUDmRpKQ", "tGcFnX0GHI"], "start_seconds": ["38", "0"], "properties": ["applause, audience, give", "ring, talk, woman"], "captions_pred_video": ["a black background with the moon and stars in the sky", null], "captions_pred_audio": ["a group of people are clapping and cheering", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a dog barks and whimpers"], "sample_ids": ["ukxt9I7eMMg", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["continuous, woman, speaking", "barks, whimpers, dog"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "the puppies are playing with a toy"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a dog is barking and growling"], "question": "which entity is a dog?", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["skd2PphS6oI", "uZesmtKZGSw"], "start_seconds": ["190", "250"], "properties": ["ring, bird, vocalize", "men, talk, cars"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "a propeller rotates loudly and intensely"], "sample_ids": ["vf44CgrjT0A", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["loud, long, person", "loud, intense, propeller"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a loud burp", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a dog barks and whimpers", "a piece of wood is being placed down and sawed"], "sample_ids": ["sShpyu2l4YQ", "uiItxDsDMFI"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "wood, piece, saw"], "captions_pred_video": ["the puppies are playing with a toy", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a dog is barking and growling", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["some men converse over an engine running", "water pouring and bubbling"], "sample_ids": ["sCiy7QS1U", "uyRfq-jKPpo"], "start_seconds": ["300", "50"], "properties": ["men, converse, engine", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "water is running from a faucet"], "question": "which entity is more likely to be in a kitchen", "label": 1}, {"captions": ["a man talks while vehicles pass by", "a man speaks with another voice speaking in the background"], "sample_ids": ["sK4u5T8hW78", "u21-Z5gJCB8"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "background, voice, man"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man talking while vehicles pass by?", "label": 0}, {"captions": ["wind blows strongly", "an infant crying as a woman laughs"], "sample_ids": ["w8uLijTqtlU", "xhmRY9yhC7c"], "start_seconds": ["70", "20"], "properties": ["wind, blows, strongly", "a, laugh, infant"], "captions_pred_video": ["footage is blurry and shaky", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["the wind is blowing strongly", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yLy-WycbVVE", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["background, people, talk", "two men, woman, birds"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a more natural background", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "vehicles pass by on a roadway"], "sample_ids": ["yDoT73BWsdA", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["engine revs, tires squeal, vehicle", "pass, vehicle, roadway"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a woman speaks happily and an animal chirps"], "sample_ids": ["uiS58TNyUiw", "uWAAAL4CIoc"], "start_seconds": ["430", "0"], "properties": ["audio, man, speaking", "a woman, chirps, animal"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a woman is speaking and a dog is barking "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["speaking following by laughing and clapping", "people speak as gunfire rings out"], "sample_ids": ["u2f5NpsoHBg", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["person, laugh, clap", "gunfire, ring, speak"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking and a gun is fired"], "question": "which entity shows a person speaking and then laughing and clapping?", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["yRx9txMcBl0", "wnpJndXuxLc"], "start_seconds": ["40", "50"], "properties": ["accelerates, tires, squeals", "beeps, loud, whistle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a door opens and birds chirp", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yeFvk9x0wWI", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["door, open, birds", "a, scream, girl"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vYkA3cfXp5Q", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["engine, accelerate, idle", "two men, woman, birds"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", null], "captions_pred_audio": ["an engine is idling", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a video of a vehicle engine accelerating then running on idle?", "label": 0}, {"captions": ["someone is typing on a computer keyboard", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["v0x1odnXtP0", "w5W5Kqtc8E"], "start_seconds": ["210", "100"], "properties": ["keyboard, type, computer", "wind, blow, vehicle"], "captions_pred_video": ["how to make money on youtube in spanish", null], "captions_pred_audio": ["a person is typing on a keyboard", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a helicopter engine idles continuously", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["ugHJF0hfYkg", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["engine, idle, continuously", "a woman, something, fried"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a man speaks as a car is passing by"], "sample_ids": ["soTOh3zYJfY", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["vehicle, skid, tires", "a, car, pass"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which vehicle is skidding and squealing tires", "label": 0}, {"captions": ["a baby cries and a woman moans", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["smDKStoHBJo", "yks4cLgIDMc"], "start_seconds": ["0", "170"], "properties": ["a, cry, woman", "background, speaking, child"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["a child babbles as a woman speaks", "an infant crying as a woman laughs"], "sample_ids": ["wEBlkGWVWwE", "xhmRY9yhC7c"], "start_seconds": ["260", "20"], "properties": ["a, babble, woman", "a, laugh, infant"], "captions_pred_video": ["shows a person writing on the whiteboard", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a baby cries and a woman speaks"], "question": "which entity is a child", "label": 0}, {"captions": ["a person whistles and clicks a mouse", "vehicle tires screech and a man speaks before a car door opens"], "sample_ids": ["zCrAfDfv6-A", "sxYkFKFIZD0"], "start_seconds": ["30", "20"], "properties": ["person, mouse, click", "screech, man, door"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2"], "captions_pred_audio": ["a person whistles a song", "a man is speaking while a car is revving and accelerating with a squeal in the background "], "question": "which entity is about a car door opening?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "an airplane engine runs"], "sample_ids": ["ugHJF0hfYkg", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "engine, airplane, runs"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sLUnaPT5gM8", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["loud, laughter, intermittent", "clickety-clack, train, whistle"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a train blows its whistle and blows its horn "], "question": "which entity is continuous", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["xfaoyyzw2WU", "uEU-Hg5MTN8"], "start_seconds": ["180", "27"], "properties": ["loud, jet engine, roar", "animal, grunts, snorts"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a woman is speaking and a baby is crying"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "wind blowing followed by a zoom"], "sample_ids": ["zALy31PjDl0", "vr8ZXjEBhMQ"], "start_seconds": ["21", "150"], "properties": ["a man, a vehicle, a horn", "wind, blow, zoom"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is about a man blowing a vehicle horn?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "small dogs yip and bark sharply"], "sample_ids": ["x6ijhqRY38s", "v-wcQf4BDY0"], "start_seconds": ["250", "120"], "properties": ["something metal, glass, hit", "bark, yip, sharply"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["w5W5Kqtc8E", "uZesmtKZGSw"], "start_seconds": ["100", "250"], "properties": ["wind, engine, scream", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["a stream runs then someone speaks", "a man speaks as a car is passing by"], "sample_ids": ["wbHTKEJZyhc", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["stream, run, someone", "a, car, pass"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car passing by?", "label": 1}, {"captions": ["a stream runs then someone speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wbHTKEJZyhc", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["stream, run, someone", "music, gunfire, explosion"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "people applaud and hoot and chat quietly"], "sample_ids": ["wsHBIgzs9Fs", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["horn, continuous, buzzing", "people, applaud, hoot"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", null], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a mechanical buzzing getting louder"], "sample_ids": ["vbZ-0lGPneg", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["a woman, a television program, a bird", "noise, loud, buzzing"], "captions_pred_video": ["of a man holding a baby duck in his hands", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "some tunes played by whistling"], "sample_ids": ["uWAAAL4CIoc", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["a woman, chirps, animal", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a woman speaks with water running"], "sample_ids": ["sShpyu2l4YQ", "wTideSjRFS0"], "start_seconds": ["0", "30"], "properties": ["growl, bark, yip", "water, running, woman"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking while water is running in the background"], "question": "which entity is more calm", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a dog barks and whimpers"], "sample_ids": ["xM4joTqDVp4", "sShpyu2l4YQ"], "start_seconds": ["160", "0"], "properties": ["background, chirp, birds", "barks, whimpers, dog"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "the puppies are playing with a toy"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["an engine runs loudly", "a horn rings out as a machine runs by"], "sample_ids": ["vqZuVbG6-HI", "slZLHwNbbt4"], "start_seconds": ["130", "300"], "properties": ["loud, engine, run", "a, horn, run"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a car speeding up in the distance", "a woman speaks with water running"], "sample_ids": ["u0TrcHhkPQ", "wTideSjRFS0"], "start_seconds": ["20", "30"], "properties": ["distance, car, speed", "water, running, woman"], "captions_pred_video": [null, "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking while water is running in the background"], "question": "which entity is moving at a slower speed", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "wind blows as people chatter quietly"], "sample_ids": ["y2ZBGpgbhHM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["birds, tweet, pant", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a duck quacks continuously"], "sample_ids": ["vzceMbklWc", "vh30P49Po6s"], "start_seconds": ["180", "30"], "properties": ["water, faucet, sink", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["water is running and a man is speaking", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "people speak as gunfire rings out"], "sample_ids": ["smDKStoHBJo", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["a, talk, baby, cry", "gunfire, ring, speak"], "captions_pred_video": ["a man holding a crying baby in his arms", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "an infant crying as a woman laughs"], "sample_ids": ["sG7TyPnFDR0", "xhmRY9yhC7c"], "start_seconds": ["180", "20"], "properties": ["beeps, machine, smoke alarm", "a, laugh, infant"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["speaking following by laughing and clapping", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["u2f5NpsoHBg", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "a woman, a television program, a bird"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird nearby?", "label": 1}, {"captions": ["goats bleat and people speak", "people speak as gunfire rings out"], "sample_ids": ["z5iUE5h0EPs", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["goats bleat, people speak, language", "gunfire, ring, speak"], "captions_pred_video": ["of the goat in the barn", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a goat bleats and a man speaks", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a man is filing a hard object"], "sample_ids": ["vzxHnu-SFEw", "vveS8HT7Uog"], "start_seconds": ["80", "100"], "properties": ["two objects, woman, speak", "a man, hard, object"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is filing and speaking with background noise and breathing "], "question": "which object is harder to file", "label": 0}, {"captions": ["a man speaks on a radio as wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tDVADusiIoc", "yajyRTUQk3U"], "start_seconds": ["60", "400"], "properties": ["man, radio, blows", "a woman, something, fried"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xSKJGCItUWE", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["engine, work, child", "music, gunfire, explosion"], "captions_pred_video": ["footage of the helicopter flying in the room", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a kid speaks followed by music playing", "an infant crying as a woman laughs"], "sample_ids": ["tQWGZLItBXk", "xhmRY9yhC7c"], "start_seconds": ["170", "20"], "properties": ["music, kid, speak", "a, laugh, infant"], "captions_pred_video": ["worms revolution screenshots", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tDVADusiIoc", "su6FAOcOA8c"], "start_seconds": ["60", "4"], "properties": ["man, radio, blows", "engine, idle, woman"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a motorcycle engine works nearby", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tOSWIURC-4", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a stream of water runs briefly"], "sample_ids": ["vXlk0lIQBFo", "x-PeY8Yb8M4"], "start_seconds": ["470", "300"], "properties": ["wind, speak, vocalize", "stream, water, run"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "water flows and trickles"], "sample_ids": ["w-4gHptFNuU", "tB7hWb9gTuQ"], "start_seconds": ["21", "30"], "properties": ["engine revs, accelerates, bump", "water, flow, trickle"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car accelerates and revs its engine ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w-4gHptFNuU", "xKB8O8LTs6s"], "start_seconds": ["21", "70"], "properties": ["engine revs, accelerates, bump", "music, gunfire, explosion"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car accelerates and revs its engine ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["someone snores nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["spJCm8tD9Zo", "wwyfGO2J4"], "start_seconds": ["90", "90"], "properties": ["someone snores, nearby, someone", "people, applaud, hoot"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone whistles a song", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sIXTftIuUgw", "sLUnaPT5gM8"], "start_seconds": ["90", "0"], "properties": ["someone, song, whistle", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person whistling a song", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks happily and an animal chirps", "small dogs yip and bark sharply"], "sample_ids": ["uWAAAL4CIoc", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["a woman, chirps, animal", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a drill runs and two people laugh", "a duck quacks continuously"], "sample_ids": ["tEE3MpBt1sg", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "quacks, continuously, duck"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "paper is crumpling consistently"], "sample_ids": ["uWAAAL4CIoc", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["a woman, chirps, animal", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a vehicle engine accelerating then running on idle"], "sample_ids": ["y682ml90jGw", "vYkA3cfXp5Q"], "start_seconds": ["11", "30"], "properties": ["beeps, series, electronic", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a beeping sound is being made ", "an engine is idling"], "question": "which entity is a series of beeps", "label": 0}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "three men talk while wind blows and some liquid flows"], "sample_ids": ["ylpYOorfH4o", "vJ7JPEFhyLA"], "start_seconds": ["410", "16"], "properties": ["motor, run, steady", "three men, wind, flow"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "water flows and trickles"], "sample_ids": ["vbZ-0lGPneg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["a woman, a television program, a bird", "water, flow, trickle"], "captions_pred_video": ["of a man holding a baby duck in his hands", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "wind blowing followed by a zoom"], "sample_ids": ["w2JXXIAdUdg", "vr8ZXjEBhMQ"], "start_seconds": ["10", "150"], "properties": ["emits, sleeping, person", "wind, blow, zoom"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a person snoring and a dog whimpering", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "water splashes as an animal walks through"], "sample_ids": ["uOpoD0gGXcs", "w1ir-sZ3Im8"], "start_seconds": ["120", "90"], "properties": ["chirps, woman, bird", "animal, water, splashes"], "captions_pred_video": ["a herd of cows grazing in the field", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds are chirping and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["wyllXV6PjKo", "tIY7qOV3rEM"], "start_seconds": ["30", "0"], "properties": ["a kid, talk, cry", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": [null, "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a woman speaks and a baby cries", "a dog is barking and a cat is meowing"], "question": "which entity has more animals", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["wPz6QRAkEb4", "y8dSeubCNI"], "start_seconds": ["60", "4"], "properties": ["chirps, tweets, song", "men, women, car"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "an engine revving and people talking in the background"], "question": "which entity is more quiet", "label": 0}, {"captions": ["race cars go around a track as a man commentates", "pigeons vocalize and birds chirp"], "sample_ids": ["uZesmtKZGSw", "uiS58TNyUiw"], "start_seconds": ["250", "430"], "properties": ["car, track, man", "vocalize, bird, chirp"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["ul60S8TXDA8", "t25U-v4k4ts"], "start_seconds": ["60", "40"], "properties": ["sound, distance, bell", "a, chirps, bird"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a man is speaking and bees are buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a kid speaks followed by music playing", "water flows and trickles"], "sample_ids": ["tQWGZLItBXk", "tB7hWb9gTuQ"], "start_seconds": ["170", "30"], "properties": ["music, kid, speak", "water, flow, trickle"], "captions_pred_video": ["worms revolution screenshots", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a beep repeats multiple times", "a man speaks followed by another man speaking outside"], "sample_ids": ["y682ml90jGw", "viuTg1M-dqg"], "start_seconds": ["11", "30"], "properties": ["beep, repeat, multiple", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a beeping sound is being made ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a single speaker?", "label": 0}, {"captions": ["a man speaks as music plays before artillery is fired", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vcmWSmvti8", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["music, man, fire", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp as a train approaches", "water pouring and bubbling"], "sample_ids": ["xM4joTqDVp4", "uyRfq-jKPpo"], "start_seconds": ["160", "50"], "properties": ["bird, chirp, train", "water, bubbles, pouring"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds are chirping and a train is moving ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["rustling with distant murmuring", "birds chirp and objects are moved around"], "sample_ids": ["wnNNcxAPwGQ", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["sound, distance, rustling", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["water pouring and bubbling", "a stream of water runs briefly"], "sample_ids": ["uyRfq-jKPpo", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["water, bubbles, pouring", "stream, water, run"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["water is running from a faucet", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a person uses a saw to cut some wood"], "sample_ids": ["yRx9txMcBl0", "sHbXC6na9hg"], "start_seconds": ["40", "0"], "properties": ["accelerates, tires, squeals", "a person, saw, wood"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a car is revving its engine and skidding ", "an engine is idling and vibrating"], "question": "which entity is stationary", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["xyL9F5VrjkE", "xfaoyyzw2WU"], "start_seconds": ["20", "180"], "properties": ["engine, run, wind", "loud, jet engine, roar"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["yDoT73BWsdA", "sjlVMgdGSK0"], "start_seconds": ["10", "30"], "properties": ["engine revs, tires squeal, vehicle", "accelerates, vehicle, race car"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car accelerates and revs its engine "], "question": "which vehicle is accelerating", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["weDbePuc-Xc", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["music, slaps, human", "man, woman, squawks"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a man and woman speaking?", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a child speaks in closed space"], "sample_ids": ["tIY7qOV3rEM", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "child, space, speak"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a clock ticktocks"], "sample_ids": ["vcmWSmvti8", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a helicopter engine runs", "birds chirp and pigeons vocalize while walking around"], "sample_ids": ["t5ZbXbniOWk", "wIvYjuR3nrg"], "start_seconds": ["30", "9"], "properties": ["engine, helicopter, run", "birds, pigeons, vocalize"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of a pigeon sitting on a roof with trees in the background"], "captions_pred_audio": ["a helicopter is flying overhead ", "birds are chirping and cooing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an insect buzzes around continuously", "a toilet flushes and a female speaks"], "sample_ids": ["v25l1jef3JY", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["buzzes, continuously, insect", "female, flushes, toilet"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage is blurry and out of focus"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a toilet flushes and a man speaks"], "question": "which entity is not a person", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "dishes cling together then a man begins to speak"], "sample_ids": ["uPDn2BFTHk", "sQGXqGcwOTc"], "start_seconds": ["140", "3"], "properties": ["lady, laugh, baby", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a baby laughs and a woman speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about a baby and a lady?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "paper is crumpling consistently"], "sample_ids": ["zF8yoL0rkbI", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["engine, run, someone", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the traffic on the street at night", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "an insect buzzes around continuously"], "sample_ids": ["zl9Dqx-j7q4", "v25l1jef3JY"], "start_seconds": ["6", "0"], "properties": ["motors rev, laugh, loudly", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a man driving a car in the dark", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a jet engine roars ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "rain falls on a surface as men speak and music plays"], "sample_ids": ["vms5XGTDVQc", "w0xsN8X18Y"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "music, surface, rain"], "captions_pred_video": ["footage of a woman opening a black bag on a table", null], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is not a video of rain falling on a surface?", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yaln9y8I7ms", "ukg5L09Wpvo"], "start_seconds": ["230", "150"], "properties": ["female, flushes, toilet", "clickety-clack, train, whistle"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "water splashes as an animal walks through"], "sample_ids": ["vveS8HT7Uog", "w1ir-sZ3Im8"], "start_seconds": ["100", "90"], "properties": ["a man, objects, speak", "animal, water, splashes"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["loud, continuous burping", "birds chirp and pigeons vocalize while walking around"], "sample_ids": ["y636gklDioE", "wIvYjuR3nrg"], "start_seconds": ["20", "9"], "properties": ["loud, continuous, burping", "birds, pigeons, vocalize"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage of a pigeon sitting on a roof with trees in the background"], "captions_pred_audio": ["a person burps loudly several times", "birds are chirping and cooing"], "question": "which entity is not a human", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "paper is crumpling consistently"], "sample_ids": ["s4Uz1Ffgo04", "v5cSxLaHADY"], "start_seconds": ["100", "0"], "properties": ["water, rushes, vehicle", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a stream of water runs briefly"], "sample_ids": ["u2f5NpsoHBg", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["person, laugh, clap", "stream, water, run"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a consistent ticking pattern", "pigeons vocalize and birds chirp"], "sample_ids": ["sCeWURVHfOM", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["ticking, pattern, clock", "vocalize, bird, chirp"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "of the pigeon in the cage"], "captions_pred_audio": ["ticking of a clock", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["zY3icUyMdh8", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["dog, bark, engine", "animal, grunts, snorts"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is more playful", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a saw finishes running as metal clings in the background"], "sample_ids": ["v-wcQf4BDY0", "zofjfKhqLk8"], "start_seconds": ["120", "10"], "properties": ["bark, yip, sharply", "background, metal, clings"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a dog barks and growls", "a large engine is running and a bell is ringing"], "question": "which entity is a still image?", "label": 0}, {"captions": ["a dog whimpers and a woman briefly talks", "dog barking and vehicle engine idling followed shortly by vehicle engine revving"], "sample_ids": ["y1saVTXsKwc", "zY3icUyMdh8"], "start_seconds": ["80", "20"], "properties": ["a, dog, talk", "dog, bark, engine"], "captions_pred_video": ["a dog playing with a pink ball", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a dog barks and a man speaks", "a car is driving and dogs are barking and squealing "], "question": "which entity is more active", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a machine beeps continuously"], "sample_ids": ["vJvryTwuAV8", "y682ml90jGw"], "start_seconds": ["16", "11"], "properties": ["audience, cheer, man", "beeps, machine, continuously"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", null], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a duck quacks continuously"], "sample_ids": ["xZepNM9qcRA", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "quacks, continuously, duck"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "some men converse over an engine running"], "sample_ids": ["yRx9txMcBl0", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["accelerates, tires, squeals", "men, converse, engine"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["bees buzz as wind blows", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["tMJne1a4AFI", "x6ijhqRY38s"], "start_seconds": ["0", "250"], "properties": ["bees, buzz, wind", "something metal, glass, hit"], "captions_pred_video": ["a swarm of bees on the ground", "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and dishes are clanging "], "question": "which entity is not a video of something hitting something?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "some tunes played by whistling"], "sample_ids": ["uRExseg-0XI", "u6BnG6YZqJ4"], "start_seconds": ["210", "0"], "properties": ["woman, man, water", "tune, play, whistling"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["someone whistles briefly", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uFoga8sHpiw", "zl9Dqx-j7q4"], "start_seconds": ["90", "6"], "properties": ["sound, duration, pitch", "engine, laugh, loud"], "captions_pred_video": ["footage of a bird in a cage", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person whistles a song", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a duck quacks continuously"], "sample_ids": ["sSMl2vc3ek", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["a person, laughs, snores", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person snoring loudly", "a duck is quacking loudly"], "question": "which entity is a noise", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["yajyRTUQk3U", "y8WEcpOlT3I"], "start_seconds": ["400", "40"], "properties": ["a woman, something, fried", "harsh, wind, blows"], "captions_pred_video": ["- a woman cooking in the kitchen", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking with wind noise in the background "], "question": "which entity is about cooking?", "label": 0}, {"captions": ["an aircraft engine runs", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["yLCORCnd35Q", "yks4cLgIDMc"], "start_seconds": ["0", "170"], "properties": ["engine, aircraft, runs", "background, speaking, child"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yZmhM1HcsyE", "tiDFTC-5vU"], "start_seconds": ["4", "30"], "properties": ["engine, roar, water", "male, duck, laugh"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a man speaks followed by another man speaking outside"], "sample_ids": ["t69a8aRKhmc", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "two men, speak, follow"], "captions_pred_video": ["footage is blurry and out of focus", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["a horse runs while two women talk", "small dogs yip and bark sharply"], "sample_ids": ["sdvI1mHAsc", "v-wcQf4BDY0"], "start_seconds": ["20", "120"], "properties": ["two women, horse, run", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "an infant crying as a woman laughs"], "sample_ids": ["yaln9y8I7ms", "xhmRY9yhC7c"], "start_seconds": ["230", "20"], "properties": ["female, flushes, toilet", "a, laugh, infant"], "captions_pred_video": ["footage is blurry and out of focus", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "roadway noise occurs and a truck accelerates"], "sample_ids": ["sDSppXIlJrs", "tgbONvsP47Y"], "start_seconds": ["27", "0"], "properties": ["microphone, water, wind", "noise, truck, accelerate"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "footage of a fire truck entering a garage"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a car is driving on the road "], "question": "which noise is made by a truck", "label": 1}, {"captions": ["a person is snoring while sleeping", "water drips and bubbles as a man speaks"], "sample_ids": ["vJrjSeP17yE", "vSeGhaZt-aI"], "start_seconds": ["40", "50"], "properties": ["a person is sleeping, snoring, person", "water, bubbles, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uKCSGgof8gI", "tdWhHV3X25Q"], "start_seconds": ["12", "60"], "properties": ["chirps, distance, signal", "applause, audience, yells"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a motorcycle idles loudly as wind blows"], "sample_ids": ["sYITalLZjj4", "v7jJS8aAyA"], "start_seconds": ["30", "10"], "properties": ["water, rushes, background, birds", "wind, blows, loudly"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a motorcycle engine is idling and vibrating"], "question": "which entity is louder", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "an insect buzzes around continuously"], "sample_ids": ["v0x1odnXtP0", "v25l1jef3JY"], "start_seconds": ["210", "0"], "properties": ["keyboard, type, computer", "buzzes, continuously, insect"], "captions_pred_video": ["how to make money on youtube in spanish", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person is typing on a keyboard", "a fly is buzzing around a microphone "], "question": "which entity is not a person?", "label": 1}, {"captions": ["some men converse over an engine running", "people speak as gunfire rings out"], "sample_ids": ["sCiy7QS1U", "wqTCwqVRDlk"], "start_seconds": ["300", "80"], "properties": ["men, converse, engine", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["birds fly and flutter around", "wind blows as people chatter quietly"], "sample_ids": ["wGKgwOP3h30", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["fly, flutter, around", "wind, chatter, people"], "captions_pred_video": ["of the pigeons in the coop", "footage is blurry and out of focus"], "captions_pred_audio": ["pigeons coo and flap their wings", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["vdoxuJn9lTc", "vddP56-ogds"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "liquid, laughs, man"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "water is running and gurgling and a man is speaking"], "question": "which entity has a man talking?", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["y4tPJXBKDig", "ziUT9IFTkjg"], "start_seconds": ["20", "10"], "properties": ["a, noise, talk", "background, birds, rustling"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", null], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "birds are chirping and a chime is ringing "], "question": "which noise is made by a girl", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "people applaud and hoot and chat quietly"], "sample_ids": ["zkKdxzNC97Y", "wwyfGO2J4"], "start_seconds": ["27", "90"], "properties": ["loud, bang, noise", "people, applaud, hoot"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a vehicle accelerates and squeals tires"], "sample_ids": ["t8CV69hcvF0", "yRx9txMcBl0"], "start_seconds": ["210", "40"], "properties": ["person, sneeze, follow", "accelerates, tires, squeals"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a woman sneezes and speaks", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y8dSeubCNI", "wz7N8YRy74I"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "an insect buzzes around continuously"], "sample_ids": ["smDKStoHBJo", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["a, talk, baby, cry", "buzzes, continuously, insect"], "captions_pred_video": ["a man holding a crying baby in his arms", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a fly is buzzing around a microphone "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a person sniffs and sneezes", "a woman and man speak while food is frying"], "sample_ids": ["uRlbY6aoBU", "zk-xJGQU8-4"], "start_seconds": ["0", "130"], "properties": ["sneezes, person, sniffs", "food, man, woman"], "captions_pred_video": [null, "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a group of people", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a frog croaks as other frogs croak in the background"], "sample_ids": ["vbZ-0lGPneg", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["a woman, a television program, a bird", "background, frog, croak"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "people speak as gunfire rings out"], "sample_ids": ["u--KhUW8l1Y", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["horn, siren, life", "gunfire, ring, speak"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["y4tPJXBKDig", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["a, noise, talk", "animal, grunts, snorts"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person talking", "label": 0}, {"captions": ["birds chirp then an animal grunts", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["tDlysoZiA1I", "vddP56-ogds"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, chirp", "liquid, laughs, man"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "water is running and gurgling and a man is speaking"], "question": "which entity is about a woman and a man?", "label": 1}, {"captions": ["birds chirp as a train approaches", "a toilet flushes and water drains"], "sample_ids": ["xM4joTqDVp4", "sfAvvZwdLCY"], "start_seconds": ["160", "20"], "properties": ["bird, chirp, train", "water drains, flushes, water"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of the toilet in the bathroom"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["someone is burping continuously", "three men talk while wind blows and some liquid flows"], "sample_ids": ["y636gklDioE", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["burps, burps, burps", "three men, wind, flow"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wy1eKjR7KC0", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["people, talk, distance", "music, gunfire, explosion"], "captions_pred_video": ["two police officers riding motorcycles down the street", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and a siren is going off", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "some tunes played by whistling"], "sample_ids": ["vb1fPSDI4c", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["multiple, people, yell", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xjvTpk2Zpr8", "w5W5Kqtc8E"], "start_seconds": ["70", "100"], "properties": ["engine, run, wind", "wind, blow, vehicle"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "pigeons vocalize and birds chirp"], "sample_ids": ["zFjIWfSD-4", "uiS58TNyUiw"], "start_seconds": ["410", "430"], "properties": ["People, motor, brakes", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a car accelerates and wind blows", "a duck quacks continuously"], "sample_ids": ["u0TrcHhkPQ", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vddP56-ogds", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["liquid, laughs, man", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yRx9txMcBl0", "yDoT73BWsdA"], "start_seconds": ["40", "10"], "properties": ["motors, tires, screech", "engine, revs, vehicle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a race car accelerates and revs its engine "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "vehicles pass by on a roadway"], "sample_ids": ["sYITalLZjj4", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["stream, flow, wind", "pass, vehicle, roadway"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of a fire truck entering a garage"], "captions_pred_audio": ["wind blows and birds chirp", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "water rushes by"], "sample_ids": ["zuua6-5goWw", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["birds, chirp, quiet, man, speaks", "water, rushes, by"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a car is driving on a wet road "], "question": "which entity is moving faster", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "an adult woman speaks over chopping and silverware noises"], "sample_ids": ["vXlk0lIQBFo", "yYJksgsxx5U"], "start_seconds": ["470", "30"], "properties": ["wind, talk, vocalize", "audio, woman, silverware"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "of a woman slicing an orange on a cutting board"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking and dishes are clanging in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yajyRTUQk3U", "uYT5gxnyMWM"], "start_seconds": ["400", "50"], "properties": ["a woman, something, fried", "a, scream, girl"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking?", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wRBHTgrbiwg", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["birds, chirp, cooing", "music, gunfire, explosion"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["someone is burping continuously", "a man speaks as a motor runs in the background"], "sample_ids": ["y636gklDioE", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "background, motor, run"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person burps loudly several times", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "dishes cling together then a man begins to speak"], "sample_ids": ["uZesmtKZGSw", "sQGXqGcwOTc"], "start_seconds": ["250", "3"], "properties": ["men, talk, cars", "cling, speak, dishes"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a car speeding up in the distance"], "sample_ids": ["tgbONvsP47Y", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["pass, vehicle, roadway", "distance, car, speed"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving faster", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "running water in a faucet with some clinks"], "sample_ids": ["vs65y4qmyBE", "zNRChLjqcU"], "start_seconds": ["340", "220"], "properties": ["wind, blows, strongly", "water, faucet, run"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "water is running from a faucet into a sink"], "question": "which entity is a liquid", "label": 1}, {"captions": ["someone whistles a tune", "a man speaks then multiple motorcycles pass by"], "sample_ids": ["sIXTftIuUgw", "zcDwZ6W7E3E"], "start_seconds": ["90", "180"], "properties": ["someone, tune, whistle", "a, man, speak"], "captions_pred_video": [null, "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["a person whistling a song", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a man speaks as a machine runs", "winds blows roughly as a vehicle races past"], "sample_ids": ["vD6lYD1l0BY", "xjvTpk2Zpr8"], "start_seconds": ["330", "70"], "properties": ["a, machine, run", "wind, blows, vehicle"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "wind blows as people chatter quietly"], "sample_ids": ["zkKdxzNC97Y", "xBxDz0CFVn0"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "wind, chatter, people"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage is blurry and out of focus"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "water flows and trickles"], "sample_ids": ["vhJWZheqaE", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["water drains unevenly, toilet flushes, water drains", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a toilet is flushed", "water is splashing and gurgling"], "question": "which entity is a source of water", "label": 1}, {"captions": ["people clap and speak in the distance", "waves crash against a shoreline and people speak"], "sample_ids": ["wwyfGO2J4", "yFB25fqfU8I"], "start_seconds": ["90", "300"], "properties": ["clap, distance, speak", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be a video of a performance?", "label": 0}, {"captions": ["small dogs growl, bark and yip.", "small dogs yip and bark sharply"], "sample_ids": ["sShpyu2l4YQ", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["growl, bark, yip", "bark, yip, sharply"], "captions_pred_video": ["the puppies are playing with a toy", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a dog is barking and growling", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["t69a8aRKhmc", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["a, b, c", "men, talk, cars"], "captions_pred_video": ["footage is blurry and out of focus", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a woman and man speak while food is frying", "an airplane engine spools and people speak"], "sample_ids": ["zk-xJGQU8-4", "wTjoRj1se3U"], "start_seconds": ["130", "390"], "properties": ["food, man, woman", "airplane, engine, spool"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a jet engine is running and people are talking"], "question": "which entity is about a plane?", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "some men converse over an engine running"], "sample_ids": ["tDlfY3nmx1A", "sCiy7QS1U"], "start_seconds": ["160", "300"], "properties": ["applause, laugh, man", "men, converse, engine"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", null], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["an airplane engine runs", "birds chirp and pigeons vocalize while walking around"], "sample_ids": ["yVPZ2MNWpms", "wIvYjuR3nrg"], "start_seconds": ["0", "9"], "properties": ["engine, airplane, runs", "birds, pigeons, vocalize"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a pigeon sitting on a roof with trees in the background"], "captions_pred_audio": ["a car is driving by on the road ", "birds are chirping and cooing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["distant humming of an engine", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yVPZ2MNWpms", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["sound, distance, engine", "engine, laugh, loud"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a car is driving by on the road ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "water flows as men speak and yell"], "sample_ids": ["vYkA3cfXp5Q", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["speed, idle, accelerate", "water, flow, men"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["an engine is idling", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a motor?", "label": 0}, {"captions": ["an airplane engine runs", "a infant makes noise and is excited"], "sample_ids": ["yVPZ2MNWpms", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "noise, excited, infant"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a car is driving by on the road ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an airplane engine spools and people speak", "water flows and trickles"], "sample_ids": ["wTjoRj1se3U", "tB7hWb9gTuQ"], "start_seconds": ["390", "30"], "properties": ["airplane, engine, spool", "water, flow, trickle"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a jet engine is running and people are talking", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["white noise and birds chirping", "vehicles pass by on a roadway"], "sample_ids": ["wRBHTgrbiwg", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["noise, white, chirping", "pass, vehicle, roadway"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a car is driving on the road "], "question": "which is a moving object", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "people cheer as a vehicle engine revs"], "sample_ids": ["xfaoyyzw2WU", "xjhAnI2q6hM"], "start_seconds": ["180", "6"], "properties": ["loud, jet engine, roar", "engine revs, vehicle, people"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a truck is revving its engine and a man is speaking "], "question": "which is louder", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a car speeding up in the distance"], "sample_ids": ["uOpoD0gGXcs", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["chirps, woman, bird", "distance, car, speed"], "captions_pred_video": ["a herd of cows grazing in the field", null], "captions_pred_audio": ["birds are chirping and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "paper folding and crinkling"], "sample_ids": ["vveS8HT7Uog", "zPpG3RD8lSs"], "start_seconds": ["100", "20"], "properties": ["a man, objects, speak", "paper, fold, crinkle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "the wind blows and a mouse clicks "], "question": "which object is being folded and crinkled", "label": 0}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "small dogs yip and bark sharply"], "sample_ids": ["yYEVLuqEytU", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["animal, pig, background", "bark, yip, sharply"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a stream of water runs briefly"], "sample_ids": ["y682ml90jGw", "x-PeY8Yb8M4"], "start_seconds": ["11", "300"], "properties": ["beeps, series, electronic", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a beeping sound is being made ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vqZuVbG6-HI", "wqZ135Ssz0"], "start_seconds": ["130", "60"], "properties": ["background, male, female", "two men, woman, birds"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a mechanical buzzing getting louder", "a duck quacks loudly and continuously"], "sample_ids": ["sEprKHm8Sj8", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["noise, loud, buzzing", "loud, continuous, quacks"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a child speaks in closed space"], "sample_ids": ["u21-Z5gJCB8", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["background, voice, man", "child, space, speak"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "water is sprayed across a hard surface"], "sample_ids": ["w5W5Kqtc8E", "sQwlkXjQabo"], "start_seconds": ["100", "10"], "properties": ["wind, blow, vehicle", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "winds blows roughly as a vehicle races past"], "sample_ids": ["sxYkFKFIZD0", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["screech, man, door", "wind, blows, vehicle"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "an insect buzzes around continuously"], "sample_ids": ["vveS8HT7Uog", "v25l1jef3JY"], "start_seconds": ["100", "0"], "properties": ["a man, objects, speak", "buzzes, continuously, insect"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "male speech with light ticking"], "sample_ids": ["vKrYfzleLB8", "xO-Q2BlIIPU"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "male, speech, ticking"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "a clock with a green glowing display showing the time 09 07 2016 12 31 2016"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "small dogs growl, bark and yip."], "sample_ids": ["zofjfKhqLk8", "sShpyu2l4YQ"], "start_seconds": ["10", "0"], "properties": ["background, metal, clings", "growl, bark, yip"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "the puppies are playing with a toy"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a stream of water runs briefly"], "sample_ids": ["vJvryTwuAV8", "x-PeY8Yb8M4"], "start_seconds": ["16", "300"], "properties": ["audience, cheer, man", "stream, water, run"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["un9VQlzgZM", "zj2R0XoFr5k"], "start_seconds": ["5", "50"], "properties": ["wind, speak, laugh", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about flying", "label": 1}, {"captions": ["someone snores nearby", "some men converse over an engine running"], "sample_ids": ["spJCm8tD9Zo", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["someone snores, nearby, someone", "men, converse, engine"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "two women and a man talk while a kid cries"], "sample_ids": ["u6jIvCtKarQ", "wyllXV6PjKo"], "start_seconds": ["70", "30"], "properties": ["a, man, speaks", "a kid, talk, cry"], "captions_pred_video": ["footage of a person using a blender on a stove top", null], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a woman speaks and a baby cries"], "question": "which entity has a kid crying?", "label": 1}, {"captions": ["a clock ticktocks in wind", "a heavy rain falls endlessly"], "sample_ids": ["yVumC9TGknc", "wP8ZKrlx3oA"], "start_seconds": ["30", "40"], "properties": ["ticktocks, clock, wind", "heavy, rain, fall"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a series of beeps and chirps", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["water rushes and then a vehicle zooms past", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["s4Uz1Ffgo04", "ziUT9IFTkjg"], "start_seconds": ["100", "10"], "properties": ["water, rushes, vehicle", "background, birds, rustling"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["motors runs briefly and tires screech", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yRx9txMcBl0", "xKB8O8LTs6s"], "start_seconds": ["40", "70"], "properties": ["motors, tires, screech", "music, gunfire, explosion"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car is revving its engine and skidding ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a man is filing a hard object", "water flows and trickles"], "sample_ids": ["vveS8HT7Uog", "tB7hWb9gTuQ"], "start_seconds": ["100", "30"], "properties": ["a man, hard, object", "water, flow, trickle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "water is splashing and gurgling"], "question": "which entity is flowing", "label": 1}, {"captions": ["an engine runs and a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["yT5WfYMRr-U", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "a, car, pass"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a toilet flushes and water drains", "running water in a faucet with some clinks"], "sample_ids": ["sfAvvZwdLCY", "zNRChLjqcU"], "start_seconds": ["20", "220"], "properties": ["water drains, flushes, water", "water, faucet, run"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "water is running from a faucet into a sink"], "question": "which entity has water running through it?", "label": 1}, {"captions": ["bees buzz as wind blows", "a toilet flushes and a female speaks"], "sample_ids": ["tMJne1a4AFI", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["bees, buzz, wind", "female, flushes, toilet"], "captions_pred_video": ["a swarm of bees on the ground", "footage is blurry and out of focus"], "captions_pred_audio": ["a swarm of bees buzzing around", "a toilet flushes and a man speaks"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a clock ticktocks briefly", "a stream of water runs briefly"], "sample_ids": ["u7C-AEBQM", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["ticktocks, clock, ticktocks briefly", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a ticktock of a clock", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "an insect buzzes around continuously"], "sample_ids": ["y2bVZ7rz-5M", "v25l1jef3JY"], "start_seconds": ["280", "0"], "properties": ["engine, horn, siren", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a fly is buzzing around a microphone "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a person sniffles and sneezes", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uRlbY6aoBU", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["sneezes, sniffles, person", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a person", "label": 0}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a stream of water runs briefly"], "sample_ids": ["sapQIQUhFc", "x-PeY8Yb8M4"], "start_seconds": ["280", "300"], "properties": ["liquid, flow, distance", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tQWGZLItBXk", "tdWhHV3X25Q"], "start_seconds": ["170", "60"], "properties": ["voice, music, whoosh", "applause, audience, yells"], "captions_pred_video": ["worms revolution screenshots", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zkKdxzNC97Y", "xKB8O8LTs6s"], "start_seconds": ["27", "70"], "properties": ["hard, surface, door", "music, gunfire, explosion"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a door is opened and closed", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["yaln9y8I7ms", "xjhAnI2q6hM"], "start_seconds": ["230", "6"], "properties": ["female, flushes, toilet", "engine revs, vehicle, people"], "captions_pred_video": ["footage is blurry and out of focus", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity has a vehicle?", "label": 1}, {"captions": ["a motorcycle engine is idling", "winds blows roughly as a vehicle races past"], "sample_ids": ["vZAqdHZ81yA", "xjvTpk2Zpr8"], "start_seconds": ["180", "70"], "properties": ["engine, motorcycle, idling", "wind, blows, vehicle"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["an engine is idling loudly", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a dark barks and whimpers"], "sample_ids": ["sncRqQ67iJU", "sYj4hpDUZDQ"], "start_seconds": ["460", "30"], "properties": ["loud, repeatedly, man", "barks, whimpers, dark"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a brown and white dog standing in front of a wall with its mouth open"], "captions_pred_audio": ["a person is snoring", "a dog barks and a cat meows"], "question": "which entity is a dog", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a person snores loudly multiple times at a close distance"], "sample_ids": ["u7C-AEBQM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["ticks, rhythmic, quiet", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as horns blow", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["tHyNqRyK34A", "sLUnaPT5gM8"], "start_seconds": ["24", "0"], "properties": ["a, man, speaks", "loud, laughter, intermittent"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "after a few seconds of silence, a loud bang occurs followed by a softer banging noise"], "sample_ids": ["zgUgkpk78xU", "zkKdxzNC97Y"], "start_seconds": ["70", "27"], "properties": ["clinking, humming, horn", "loud, bang, noise"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a door is opened and closed"], "question": "which entity is softer", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a vehicle accelerates and squeals tires"], "sample_ids": ["uZesmtKZGSw", "yRx9txMcBl0"], "start_seconds": ["250", "40"], "properties": ["men, talk, cars", "accelerates, tires, squeals"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "pigeons vocalize and birds chirp"], "sample_ids": ["vimzuGQvdcU", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["a, man, yells", "vocalize, bird, chirp"], "captions_pred_video": ["a group of people are rafting down a river", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a child speaks", "an infant crying frantically"], "sample_ids": ["yW6FWLSLkx4", "zwOBqeFTgiU"], "start_seconds": ["40", "30"], "properties": ["a, child, speaks", "cry, infant, frantically"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of the baby crying in the car seat"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a baby cries loudly"], "question": "which entity is a child", "label": 0}, {"captions": ["frogs croak and vocalize", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yswmmRZFItk", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["croak, vocalize, frog", "loud, multiple, distance"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["water flows as men speak and yell", "people speak as gunfire rings out"], "sample_ids": ["vJ7JPEFhyLA", "wqTCwqVRDlk"], "start_seconds": ["16", "80"], "properties": ["water, flow, men", "gunfire, ring, speak"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "people cheer as a vehicle engine revs"], "sample_ids": ["zALy31PjDl0", "xjhAnI2q6hM"], "start_seconds": ["21", "6"], "properties": ["a man, a vehicle, a horn", "engine revs, vehicle, people"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["someone is snoring while sleeping", "people cheer as a vehicle engine revs"], "sample_ids": ["ujMt0-D-x2k", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["snore, sleep, someone", "engine revs, vehicle, people"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person is snoring loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a telephone rings followed by a woman talking"], "sample_ids": ["wy1eKjR7KC0", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["people, talk, distance", "ring, talk, woman"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a woman speaks happily and an animal chirps"], "sample_ids": ["uJV8NDaHqqk", "uWAAAL4CIoc"], "start_seconds": ["100", "0"], "properties": ["loud, fly, chirp", "a woman, chirps, animal"], "captions_pred_video": ["a bee hive in a wooden box", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and wind blows", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sxIvBMSavMQ", "wqZ135Ssz0"], "start_seconds": ["210", "60"], "properties": ["birds, chirp, wind", "two men, woman, birds"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sapQIQUhFc", "uZesmtKZGSw"], "start_seconds": ["280", "250"], "properties": ["water, trickles, flow", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks and food sizzles while frying", "wind blowing followed by a zoom"], "sample_ids": ["wTideSjRFS0", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["food, sizzle, woman", "wind, blow, zoom"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["a woman speaks and a baby laughs", "small dogs yip and bark sharply"], "sample_ids": ["tOj4tdLRaA", "v-wcQf4BDY0"], "start_seconds": ["70", "120"], "properties": ["woman, laugh, baby", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sQwlkXjQabo", "wqZ135Ssz0"], "start_seconds": ["10", "60"], "properties": ["liquid, surface, spray", "two men, woman, birds"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a propeller rotates loudly and intensely"], "sample_ids": ["spJCm8tD9Zo", "ugHJF0hfYkg"], "start_seconds": ["90", "10"], "properties": ["snores, wheezes, sleeps", "loud, intense, propeller"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person is snoring loudly", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["someone snores nearby", "females talk and laugh over gusting wind"], "sample_ids": ["spJCm8tD9Zo", "un9VQlzgZM"], "start_seconds": ["90", "5"], "properties": ["someone snores, nearby, someone", "females, talk, laugh"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["people speak as gunfire rings out", "birds chirp and objects are moved around"], "sample_ids": ["wqTCwqVRDlk", "yPUYU6t3rwo"], "start_seconds": ["80", "370"], "properties": ["gunfire, ring, speak", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a gun is fired", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a helicopter engine idles continuously", "birds chirp and pigeons vocalize while walking around"], "sample_ids": ["ugHJF0hfYkg", "wIvYjuR3nrg"], "start_seconds": ["10", "9"], "properties": ["engine, idle, continuously", "birds, pigeons, vocalize"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a pigeon sitting on a roof with trees in the background"], "captions_pred_audio": ["a helicopter is flying overhead ", "birds are chirping and cooing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a helicopter engine runs"], "sample_ids": ["y2bVZ7rz-5M", "t5ZbXbniOWk"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "engine, helicopter, run"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a helicopter is flying overhead "], "question": "which entity is a helicopter?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zl9Dqx-j7q4", "vfYTJq7nU"], "start_seconds": ["6", "130"], "properties": ["engine, laugh, loud", "rustling, ducks, quack"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "water flows as men speak and yell"], "sample_ids": ["sU53zg9Jp7s", "vJ7JPEFhyLA"], "start_seconds": ["380", "16"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "water, flow, men"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "a man speaks as a car is passing by"], "sample_ids": ["vms5XGTDVQc", "sK4u5T8hW78"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "a, car, pass"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "water splashes and a door squeaks"], "sample_ids": ["w2bYrCVLT60", "sdXV-ylviw"], "start_seconds": ["120", "190"], "properties": ["ducks, speak, quack", "sound, splash, door"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a dog barks and taps with background noise "], "question": "which entity is silent", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zY3icUyMdh8", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "rooster, crow, background, men"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more social", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "wind blowing followed by a zoom"], "sample_ids": ["sofxkNWaP0s", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["wind, engine, louder", "wind, blow, zoom"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom?", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a man speaks as a motor runs in the background"], "sample_ids": ["s59PfAghdkM", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["bird, chirp, background, horse, neigh", "background, motor, run"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "an airplane engine spools and people speak"], "sample_ids": ["un9VQlzgZM", "wTjoRj1se3U"], "start_seconds": ["5", "390"], "properties": ["females, talk, laugh", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sQwlkXjQabo", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "stream, water, flow"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage is blurry and out of focus"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with wind noise in the background "], "question": "which entity is flowing", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xSKJGCItUWE", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["engine, run, boy", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["multiple people speak while a television play and a child screams", "a diesel truck engine runs steadily"], "sample_ids": ["yks4cLgIDMc", "sZvwOuuPGP0"], "start_seconds": ["170", "50"], "properties": ["multiple people, television, child", "engine, diesel, truck"], "captions_pred_video": ["footage of two kids wrestling on the floor", "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a man is speaking and a child is crying", "a medium engine is running "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["an insect buzzes around continuously", "a toilet flushes and water drains unevenly"], "sample_ids": ["v25l1jef3JY", "vhJWZheqaE"], "start_seconds": ["0", "0"], "properties": ["buzzes, continuously, insect", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a toilet is flushed"], "question": "which entity is not a living thing", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["ziUT9IFTkjg", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["background, birds, rustling", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sZvwOuuPGP0", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["engine, diesel, truck", "airplane, boy, fly"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a medium engine is running ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a stream of water runs briefly", "a woman speaks as she rubs two objects together"], "sample_ids": ["x-PeY8Yb8M4", "vzxHnu-SFEw"], "start_seconds": ["300", "80"], "properties": ["stream, water, run", "two objects, woman, speak"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a car is driving on a wet road ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a physical action", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["x5cuQjOdM3E", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["cat, talk, meow", "loud, jet engine, roar"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a cat meows and a woman speaks", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "small dogs yip and bark sharply"], "sample_ids": ["vZAw4apG0Es", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["background, clock, ticktocks", "bark, yip, sharply"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a clock is ticking and people are talking", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a person snoring", "birds chirp and objects are moved around"], "sample_ids": ["t8tv5YRMJUg", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["a person, snore, loud", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man getting his face licked by another man", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a person sniffs and breathes heavily", "insects buzz and a man speaks"], "question": "which entity is not a person?", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "wind blows as people chatter quietly"], "sample_ids": ["uKCSGgof8gI", "xBxDz0CFVn0"], "start_seconds": ["12", "30"], "properties": ["chirps, distance, signal", "wind, chatter, people"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a dog barks and whimpers", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sShpyu2l4YQ", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["barks, whimpers, dog", "a woman, laughs, animal"], "captions_pred_video": ["the puppies are playing with a toy", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a baby is crying"], "question": "which entity is more playful", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xfudFO976zE", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["animal, bleats, cry", "engine, laugh, loud"], "captions_pred_video": ["footage is blurry and shaky", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["dogs barking and whimpering", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tIY7qOV3rEM", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "gun, shoot, water"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more violent", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "pigeons vocalize and birds chirp"], "sample_ids": ["ukxt9I7eMMg", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["continuous, woman, speaking", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "small dogs yip and bark sharply"], "sample_ids": ["vYkA3cfXp5Q", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["speed, idle, accelerate", "bark, yip, sharply"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["an engine is idling", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yLy-WycbVVE", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "a woman, a television program, a bird"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing in the background?", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["tDVADusiIoc", "tDlysoZiA1I"], "start_seconds": ["60", "0"], "properties": ["wind, radio, waves", "animal, grunts, chirps"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "paper is crumpling consistently"], "sample_ids": ["zhx6hoYrHeI", "v5cSxLaHADY"], "start_seconds": ["160", "0"], "properties": ["engine, sputter, rough", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an insect buzzes around continuously", "winds blows roughly as a vehicle races past"], "sample_ids": ["v25l1jef3JY", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["buzzes, continuously, insect", "wind, blows, vehicle"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["water flows followed by women screaming", "a woman speaks happily and an animal chirps"], "sample_ids": ["w5W5Kqtc8E", "uWAAAL4CIoc"], "start_seconds": ["100", "0"], "properties": ["water, flow, women", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["an infant crying frantically", "people speak as gunfire rings out"], "sample_ids": ["zwOBqeFTgiU", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["cry, infant, frantically", "gunfire, ring, speak"], "captions_pred_video": ["of the baby crying in the car seat", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war zone", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "people speak as gunfire rings out"], "sample_ids": ["sHbXC6na9hg", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["a person, saw, wood", "gunfire, ring, speak"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "an infant crying frantically"], "sample_ids": ["zofjfKhqLk8", "zwOBqeFTgiU"], "start_seconds": ["10", "30"], "properties": ["noise, stop, motor", "cry, infant, frantically"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of the baby crying in the car seat"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a stream of water flows quickly", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wbHTKEJZyhc", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["stream, water, flow", "men, talk, cars"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is moving faster", "label": 1}, {"captions": ["goats bleat and people speak", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["z5iUE5h0EPs", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["goats bleat, people speak, language", "rooster, crow, background, men"], "captions_pred_video": ["of the goat in the barn", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a goat bleats and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a rooster?", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "a machine beeps continuously"], "sample_ids": ["vbpKkWvfOu4", "y682ml90jGw"], "start_seconds": ["560", "11"], "properties": ["a, man, speaks", "beeps, machine, continuously"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a person is snoring while sleeping", "people applaud and hoot and chat quietly"], "sample_ids": ["vJrjSeP17yE", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["a person is sleeping, snoring, person", "people, applaud, hoot"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a helicopter engine idles continuously", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["ugHJF0hfYkg", "wqZ135Ssz0"], "start_seconds": ["10", "60"], "properties": ["engine, idle, continuously", "two men, woman, birds"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a man woman speak while crickets sing"], "sample_ids": ["zj2R0XoFr5k", "zTLVJCo4WEE"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, woman", "a, crickets, sing"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman speaks and crickets chirp"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "water pouring and bubbling"], "sample_ids": ["zY3icUyMdh8", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["dog, bark, engine", "water, bubbles, pouring"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["some people speak", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vbZ-0lGPneg", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "beeps, hit, woman"], "captions_pred_video": ["of a man holding a baby duck in his hands", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "someone is typing on a computer keyboard"], "sample_ids": ["t8CV69hcvF0", "v0x1odnXtP0"], "start_seconds": ["210", "210"], "properties": ["person, sneeze, follow", "keyboard, type, computer"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman sneezes and speaks", "a person is typing on a keyboard"], "question": "which person is typing on a computer keyboard", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a vehicle engine accelerating then running on idle"], "sample_ids": ["yJ0TePmaOo", "vYkA3cfXp5Q"], "start_seconds": ["390", "30"], "properties": ["two hard objects, man, speak", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "an engine is idling"], "question": "which is a vehicle", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a infant makes noise and is excited"], "sample_ids": ["zuua6-5goWw", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "noise, excited, infant"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "a steam engine runs and whistles as it passes by"], "sample_ids": ["wyllXV6PjKo", "se87d6yxEOA"], "start_seconds": ["30", "10"], "properties": ["a kid, talk, cry", "run, whistle, pass"], "captions_pred_video": [null, "footage of a train passing by a train station with smoke billowing out of the train's smokestack"], "captions_pred_audio": ["a woman speaks and a baby cries", "a train is moving and blowing its whistle "], "question": "which entity is moving", "label": 1}, {"captions": ["paper folding and crinkling", "a woman speaks as frying food sizzles"], "sample_ids": ["zPpG3RD8lSs", "wTideSjRFS0"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "food, sizzle, woman"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a woman is speaking while water is running in the background"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "an infant crying frantically"], "sample_ids": ["xO-Q2BlIIPU", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["two men, exclamation, speak", "cry, infant, frantically"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uiS58TNyUiw", "uEU-Hg5MTN8"], "start_seconds": ["430", "27"], "properties": ["vocalize, bird, chirp", "a woman, laughs, animal"], "captions_pred_video": ["of the pigeon in the cage", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a woman is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["uEU-Hg5MTN8", "yDoT73BWsdA"], "start_seconds": ["27", "10"], "properties": ["a woman, laughs, animal", "engine, revs, vehicle"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xC8kbrKJmco", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["background, goat, scream", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a goat is bleating ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["multiple ducks quack continuously", "an adult woman and an adult man speak"], "sample_ids": ["wfHeoPDLMaM", "zTLVJCo4WEE"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "two people, adult, speak"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["ducks are quacking", "a woman speaks and crickets chirp"], "question": "which entity is speaking", "label": 1}, {"captions": ["a door opens and closes", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vBHyYJ8pL0", "uEU-Hg5MTN8"], "start_seconds": ["2", "27"], "properties": ["open, close, door", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a door", "label": 0}, {"captions": ["water rushes by", "a man speaks as water trickles down a stream"], "sample_ids": ["x-PeY8Yb8M4", "sapQIQUhFc"], "start_seconds": ["300", "280"], "properties": ["water, rushes, by", "water, stream, trickles"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is moving more slowly", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "an audience gives applause"], "sample_ids": ["xZepNM9qcRA", "x6iCUDmRpKQ"], "start_seconds": ["30", "38"], "properties": ["background, motor, run", "applause, audience, give"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a black background with the moon and stars in the sky"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a group of people are clapping and cheering"], "question": "which is a more active scene", "label": 1}, {"captions": ["a power tool runs and touches a surface", "some people speak"], "sample_ids": ["zfvPRf3chY", "vbZ-0lGPneg"], "start_seconds": ["290", "30"], "properties": ["power tool, run, touch", "some people speak English, some people speak Spanish, some people speak French"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a woman is speaking and a dog is whimpering"], "question": "which entity is not a power tool", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a person screams glaringly"], "sample_ids": ["vSeGhaZt-aI", "xC8kbrKJmco"], "start_seconds": ["50", "0"], "properties": ["water, sink, talk", "glaringly, screams, person"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a goat is bleating "], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "paper is crumpling consistently"], "sample_ids": ["sQGXqGcwOTc", "v5cSxLaHADY"], "start_seconds": ["3", "0"], "properties": ["cling, speak, dishes", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vJ7JPEFhyLA", "yDoT73BWsdA"], "start_seconds": ["16", "10"], "properties": ["three men, wind, flow", "engine, revs, vehicle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a car speeds away loudly followed by a car revving loudly and driving away while outside"], "sample_ids": ["ukg5L09Wpvo", "sjlVMgdGSK0"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "car, revving, loudly"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a car accelerates and revs its engine "], "question": "which entity is revving loudly", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "pigeons vocalize and birds chirp"], "sample_ids": ["y2bVZ7rz-5M", "uiS58TNyUiw"], "start_seconds": ["280", "430"], "properties": ["motor noise, horn, siren", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "of the pigeon in the cage"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["sQGXqGcwOTc", "vlJS7LN2XyM"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "background, clocks, ticking"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a ticktock of a clock"], "question": "which entity is more quiet", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tIY7qOV3rEM", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "a woman, laughs, animal"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uZesmtKZGSw", "tdWhHV3X25Q"], "start_seconds": ["250", "60"], "properties": ["men, talk, cars", "applause, audience, yells"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "people applaud and hoot and chat quietly"], "sample_ids": ["smGI3C1NZc", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["water, drain, toilet", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "people are clapping and speaking with background noise "], "question": "which entity is a performance", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vcmWSmvti8", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["music, man, fire", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a duck quacks and a woman speaks"], "question": "which entity is about hunting?", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "a toilet flushes and a female speaks"], "sample_ids": ["tMJne1a4AFI", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["wind, buzz, rustling", "female, flushes, toilet"], "captions_pred_video": ["a swarm of bees on the ground", "footage is blurry and out of focus"], "captions_pred_audio": ["a swarm of bees buzzing around", "a toilet flushes and a man speaks"], "question": "which entity is not a toilet?", "label": 0}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a man speaks followed by another man speaking outside"], "sample_ids": ["ul60S8TXDA8", "viuTg1M-dqg"], "start_seconds": ["60", "30"], "properties": ["sound, distance, bell", "two men, speak, follow"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["a dog barks and whimpers", "a man speaks as a car is passing by"], "sample_ids": ["sShpyu2l4YQ", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "a, car, pass"], "captions_pred_video": ["the puppies are playing with a toy", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a person is whistling a tune", "a toilet flushes and water drains"], "sample_ids": ["scYRUkrFLiQ", "sfAvvZwdLCY"], "start_seconds": ["30", "20"], "properties": ["a, tune, whistle", "water drains, flushes, water"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a person whistling a song", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a man speaks as a car is passing by"], "sample_ids": ["vZAw4apG0Es", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["background, clock, ticktocks", "a, car, pass"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a clock ticktocking in the background", "label": 0}, {"captions": ["there are rhythmical snoring nearby", "an engine runs loudly"], "sample_ids": ["ujMt0-D-x2k", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["snoring, rhythmical, nearby", "loud, engine, run"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person is snoring loudly", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["food is frying and sizzles", "a man speaks as a car is passing by"], "sample_ids": ["zNRChLjqcU", "sK4u5T8hW78"], "start_seconds": ["220", "30"], "properties": ["food is frying, sizzles, food", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking with background noise and breathing sounds "], "question": "which entity is not a person?", "label": 0}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "three men talk while wind blows and some liquid flows"], "sample_ids": ["smDKStoHBJo", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["a, infant, speaking", "three men, wind, flow"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a child yells and another yells", "people cheer as a vehicle engine revs"], "sample_ids": ["vMDHu7Lxcgw", "xjhAnI2q6hM"], "start_seconds": ["410", "6"], "properties": ["two, yell, child", "engine revs, vehicle, people"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["a horse runs while two women talk", "a clock ticktocks"], "sample_ids": ["sdvI1mHAsc", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["two women, horse, run", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "vehicles pass by on a roadway"], "sample_ids": ["xV7Mg1QucSc", "tgbONvsP47Y"], "start_seconds": ["14", "0"], "properties": ["alarm, ticktocks, laughs", "pass, vehicle, roadway"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage of a fire truck entering a garage"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a car is driving on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a car speeding up in the distance"], "sample_ids": ["tDlysoZiA1I", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["animal, grunt, chirp", "distance, car, speed"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["two frogs croak at each other", "vehicles pass by on a roadway"], "sample_ids": ["zg0X6BnhOLQ", "tgbONvsP47Y"], "start_seconds": ["410", "0"], "properties": ["two frogs, croak, at each other", "pass, vehicle, roadway"], "captions_pred_video": ["footage of lightning in the sky at night", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a frog is croaking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["someone whistles a tune", "a man is filing a hard object"], "sample_ids": ["sIXTftIuUgw", "vveS8HT7Uog"], "start_seconds": ["90", "100"], "properties": ["someone, tune, whistle", "a man, hard, object"], "captions_pred_video": [null, "footage is of a workbench with various tools on it including a hammer and a screwdriver"], "captions_pred_audio": ["a person whistling a song", "a man is filing and speaking with background noise and breathing "], "question": "which action is more passive", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zofjfKhqLk8", "y8WEcpOlT3I"], "start_seconds": ["10", "40"], "properties": ["background, metal, clings", "harsh, wind, blows"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a train horn blows as it passes by"], "sample_ids": ["w5W5Kqtc8E", "zVacuqSb4LI"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zofjfKhqLk8", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["noise, stop, motor", "female, spraying, scream"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tiDFTC-5vU", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["male, duck, laugh", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a door opens and birds chirp", "a woman speaks with water running"], "sample_ids": ["yeFvk9x0wWI", "wTideSjRFS0"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "water, running, woman"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a woman is speaking while water is running in the background"], "question": "which entity is a video of a door opening and birds chirping?", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "a clock ticks quietly and rhythmically"], "sample_ids": ["vddP56-ogds", "u7C-AEBQM"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "ticks, rhythmic, quiet"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "water flows as men speak and yell"], "sample_ids": ["s3cTDAj31g", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["man, talk, woman", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["water flows as men speak and yell", "an engine starts and increases in power"], "sample_ids": ["vJ7JPEFhyLA", "zjTG0gaGCUI"], "start_seconds": ["16", "80"], "properties": ["water, flow, men", "power, increase, engine"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars as wind blows "], "question": "which entity is more powerful", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zkKdxzNC97Y", "zj2R0XoFr5k"], "start_seconds": ["27", "50"], "properties": ["hard, surface, door", "airplane, boy, fly"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a door is opened and closed", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["multiple ducks quack continuously", "a duck quacks loudly and continuously"], "sample_ids": ["wfHeoPDLMaM", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "loud, continuous, quacks"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["ducks are quacking", "a duck is quacking loudly"], "question": "which duck is louder", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "people applaud and hoot and chat quietly"], "sample_ids": ["vXlk0lIQBFo", "wwyfGO2J4"], "start_seconds": ["470", "90"], "properties": ["wind, speak, vocalize", "people, applaud, hoot"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "someone is typing on a computer keyboard"], "sample_ids": ["tQWGZLItBXk", "v0x1odnXtP0"], "start_seconds": ["170", "210"], "properties": ["music, person, ding", "keyboard, type, computer"], "captions_pred_video": ["worms revolution screenshots", "how to make money on youtube in spanish"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a person is typing on a keyboard"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a church bell rings several times", "winds blows roughly as a vehicle races past"], "sample_ids": ["sUVVjE3Ucp8", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["ring, bell, several", "wind, blows, vehicle"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a church bell is ringing ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a baby laugh at a sputter", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sLUnaPT5gM8", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["laugh, sputter, baby", "two men, woman, birds"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["uqFtmnhuqA8", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["a, b, c", "water, radio, man"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["vh30P49Po6s", "rwtmaKiCcQU"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "nozzle, depressed, spray can"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a duck is quacking loudly", "spraying and people speaking"], "question": "which entity is silent", "label": 1}, {"captions": ["a helicopter engine idles continuously", "birds chirp as a train approaches"], "sample_ids": ["ugHJF0hfYkg", "xM4joTqDVp4"], "start_seconds": ["10", "160"], "properties": ["engine, idle, continuously", "bird, chirp, train"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["a helicopter is flying overhead ", "birds are chirping and a train is moving "], "question": "which entity is not a train?", "label": 0}, {"captions": ["a train horn blows as it passes by", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["zVacuqSb4LI", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["horn, blows, train", "motor noise, horn, siren"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["slZLHwNbbt4", "wDVMhEdTiVw"], "start_seconds": ["300", "30"], "properties": ["a, horn, run", "gun, shoot, water"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "pigeons vocalize and birds chirp"], "sample_ids": ["yks4cLgIDMc", "uiS58TNyUiw"], "start_seconds": ["170", "430"], "properties": ["background, speaking, child", "vocalize, bird, chirp"], "captions_pred_video": ["footage of two kids wrestling on the floor", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking and a child is crying", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man speaks as a machine runs", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["vD6lYD1l0BY", "tezvROoo4bs"], "start_seconds": ["330", "40"], "properties": ["a, machine, run", "audio, throttle, speaking"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a car accelerates and revs while a man speaks "], "question": "which entity is about a man speaking as a machine runs?", "label": 0}, {"captions": ["people speak as gunfire rings out", "a woman speaks as she rubs two objects together"], "sample_ids": ["wqTCwqVRDlk", "vzxHnu-SFEw"], "start_seconds": ["80", "80"], "properties": ["gunfire, ring, speak", "two objects, woman, speak"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a duck quacks continuously"], "sample_ids": ["vh30P49Po6s", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "quacks, continuously, duck"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a duck is quacking loudly", "a duck is quacking loudly"], "question": "which duck is louder", "label": 0}, {"captions": ["a man speaks as he moves silverware in a bowl", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["x6ijhqRY38s", "vfYTJq7nU"], "start_seconds": ["250", "130"], "properties": ["bowl, silverware, man", "rustling, ducks, quack"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a duck quacks and a woman speaks"], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["an small aircraft engine runs and a boy speaks", "continuous chugging with birds chirping in the background"], "sample_ids": ["xSKJGCItUWE", "xM4joTqDVp4"], "start_seconds": ["10", "160"], "properties": ["engine, run, boy", "background, chirp, birds"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "birds are chirping and a train is moving "], "question": "which entity has a boy speaking?", "label": 0}, {"captions": ["a weapon fires multiple times", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sMC07Ucy7kg", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["weapon, fire, multiple", "loud, jet engine, roar"], "captions_pred_video": ["footage is from a car's point of view", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "some tunes played by whistling"], "sample_ids": ["tDVADusiIoc", "u6BnG6YZqJ4"], "start_seconds": ["60", "0"], "properties": ["wind, radio, waves", "tune, play, whistling"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["a train engine runs and a horn blows", "an infant crying as a woman laughs"], "sample_ids": ["zPX9o1uDiI", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["engine, horn, run", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a male speaks over some small clicks", "a motorcycle idles loudly as wind blows"], "sample_ids": ["uXxVebHsGZ8", "v7jJS8aAyA"], "start_seconds": ["30", "10"], "properties": ["male, clicks, speak", "wind, blows, loudly"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a motorcycle engine is idling and vibrating"], "question": "which entity is louder", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a clock ticktocks"], "sample_ids": ["rqfQRErjfk8", "v-g-j2uTByM"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["birds coo incessantly", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yZrFNS7GFBQ", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["coo, bird, incessant", "multiple, people, yell"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tK4VlLsNxak", "wqZ135Ssz0"], "start_seconds": ["120", "60"], "properties": ["a, dial, telephone", "two men, woman, birds"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["some men converse over an engine running", "an infant crying frantically"], "sample_ids": ["sCiy7QS1U", "zwOBqeFTgiU"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "birds chirp and objects are moved around"], "sample_ids": ["vddP56-ogds", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["water, flow, laugh", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["t25U-v4k4ts", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["a, chirps, bird", "water, radio, man"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "water pouring and bubbling"], "sample_ids": ["xhmRY9yhC7c", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["a, laugh, infant", "water, bubbles, pouring"], "captions_pred_video": ["of a baby crying in a baby bouncer", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a baby cries and a woman speaks", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "an infant crying frantically"], "sample_ids": ["xZepNM9qcRA", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "cry, infant, frantically"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of the baby crying in the car seat"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a duck quacks continuously"], "sample_ids": ["vKrYfzleLB8", "vh30P49Po6s"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "quacks, continuously, duck"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yRx9txMcBl0", "tiDFTC-5vU"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "male, duck, laugh"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sd7xVssqlw", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["accelerates, tires, squealing", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a stream of water runs briefly"], "sample_ids": ["siJFXfGWgDk", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["a, bird, vehicle", "stream, water, run"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sd7xVssqlw", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["accelerates, tires, squealing", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "dishes cling together then a man begins to speak"], "sample_ids": ["wz7N8YRy74I", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["rooster, crow, background, men", "cling, speak, dishes"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "a person screams glaringly"], "sample_ids": ["vzxHnu-SFEw", "xC8kbrKJmco"], "start_seconds": ["80", "0"], "properties": ["two objects, woman, speak", "glaringly, screams, person"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a goat is bleating "], "question": "which entity is more silent", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uoGVs9yUqY4", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["multiple, vocalize, wind", "stream, water, flow"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["ugHJF0hfYkg", "w34HjHr6gAY"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "beeps, hit, woman"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a helicopter is flying overhead ", "a beep sounds followed by a child speaking"], "question": "which entity is quieter", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "water pouring and bubbling"], "sample_ids": ["ukxt9I7eMMg", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["food, pan, cook", "water, bubbles, pouring"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "wind blows as people chatter quietly"], "sample_ids": ["wRV8yMk886E", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "wind, chatter, people"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["siJFXfGWgDk", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["man, woman, vehicle", "three men, wind, flow"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as a machine runs", "water flows as men speak and yell"], "sample_ids": ["vD6lYD1l0BY", "vJ7JPEFhyLA"], "start_seconds": ["330", "16"], "properties": ["a, machine, run", "water, flow, men"], "captions_pred_video": ["game controller being held in the hands of the person", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["a clock ticktocks", "wind blows in gusts as a woman speaks in the distance"], "sample_ids": ["v-g-j2uTByM", "uC9dtII1KDI"], "start_seconds": ["30", "150"], "properties": ["ticktocks, clock, ticktocks", "wind, gusts, distance"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of a person riding a horse in a riding arena"], "captions_pred_audio": ["a clock is ticking loudly", "a woman is speaking with wind noise and breathing in the background "], "question": "which entity is not a clock?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zofjfKhqLk8", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["background, metal, clings", "applause, audience, yells"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zNRChLjqcU", "xBxDz0CFVn0"], "start_seconds": ["220", "30"], "properties": ["water, faucet, run", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking with wind noise in the background "], "question": "which entity is flowing water", "label": 1}, {"captions": ["a man talks as several small engines run", "a man is snoring loudly and repeatedly"], "sample_ids": ["u9A6VZQCZpU", "sncRqQ67iJU"], "start_seconds": ["30", "460"], "properties": ["a, man, talk", "loud, repeatedly, man"], "captions_pred_video": [null, "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a person is snoring"], "question": "which man is louder", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a man speaks on a radio as wind blows"], "sample_ids": ["s4Uz1Ffgo04", "tDVADusiIoc"], "start_seconds": ["100", "60"], "properties": ["roars, background, people speaking", "man, radio, blows"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking on a radio?", "label": 1}, {"captions": ["people speak then an engine runs", "water pouring and bubbling"], "sample_ids": ["uMTTDZ2mb4", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["engine, run, people", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["two frogs croak at each other", "a telephone rings followed by a woman talking"], "sample_ids": ["zg0X6BnhOLQ", "tGcFnX0GHI"], "start_seconds": ["410", "0"], "properties": ["two frogs, croak, at each other", "ring, talk, woman"], "captions_pred_video": ["footage of lightning in the sky at night", null], "captions_pred_audio": ["a frog is croaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a man speaks as a car is passing by"], "sample_ids": ["yYEVLuqEytU", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["grunt, slurp, background", "a, car, pass"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["bees buzz and wind blows", "people cheer as a vehicle engine revs"], "sample_ids": ["tMJne1a4AFI", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["bees buzz, wind blows, bees", "engine revs, vehicle, people"], "captions_pred_video": ["a swarm of bees on the ground", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a swarm of bees buzzing around", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "people applaud and hoot and chat quietly"], "sample_ids": ["tiDFTC-5vU", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["male, duck, laugh", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be at a party", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "a horn rings out as a machine runs by"], "sample_ids": ["zVacuqSb4LI", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["blares, fades, train", "a, horn, run"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uEU-Hg5MTN8", "tiDFTC-5vU"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "male, duck, laugh"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a person is snoring while sleeping", "people speak as gunfire rings out"], "sample_ids": ["vJrjSeP17yE", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["a person is sleeping, snoring, person", "gunfire, ring, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["people cheer as a vehicle engine revs", "vehicles pass by on a roadway"], "sample_ids": ["xjhAnI2q6hM", "tgbONvsP47Y"], "start_seconds": ["6", "0"], "properties": ["engine revs, vehicle, people", "pass, vehicle, roadway"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "winds blows roughly as a vehicle races past"], "sample_ids": ["sZPuqDgX2V0", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["engine, accelerate, intercom", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xKB8O8LTs6s", "uEU-Hg5MTN8"], "start_seconds": ["70", "27"], "properties": ["music, radio, gunshots", "a woman, laughs, animal"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking on a radio?", "label": 0}, {"captions": ["a man speaking with light rustling", "females talk and laugh over gusting wind"], "sample_ids": ["zOZleIRqZm4", "un9VQlzgZM"], "start_seconds": ["80", "5"], "properties": ["light, rustling, man", "females, talk, laugh"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is a group of people", "label": 1}, {"captions": ["a man talks as several small engines run", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["u9A6VZQCZpU", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["a, man, talk", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an aircraft engine runs", "a stream of water runs briefly"], "sample_ids": ["yLCORCnd35Q", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["engine, aircraft, runs", "stream, water, run"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a person sniffs and sneezes", "someone is typing on a computer keyboard"], "sample_ids": ["uRlbY6aoBU", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["sneezes, person, sniffs", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is sneezing ", "a person is typing on a keyboard"], "question": "which person is typing on a computer keyboard", "label": 1}, {"captions": ["a beep occurs briefly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xtWeJ56-U-g", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["beep, occur, briefly", "music, gunfire, explosion"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["two frogs croak at each other", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zg0X6BnhOLQ", "sLUnaPT5gM8"], "start_seconds": ["410", "0"], "properties": ["two frogs, croak, at each other", "loud, laughter, intermittent"], "captions_pred_video": ["footage of lightning in the sky at night", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a frog is croaking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a siren comes to life as a horn blares", "a vehicle engine accelerating then running on idle"], "sample_ids": ["u--KhUW8l1Y", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "engine, accelerate, idle"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a clock ticktocks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["v-g-j2uTByM", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["ticktocks, clock, ticktocks", "engine, idle, woman"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a clock is ticking loudly", "a woman is speaking and a subway train is moving "], "question": "which entity is not stationary", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["xM4joTqDVp4", "y2bVZ7rz-5M"], "start_seconds": ["160", "280"], "properties": ["background, chirp, birds", "motor noise, horn, siren"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "someone is typing on a computer keyboard"], "sample_ids": ["vfYTJq7nU", "v0x1odnXtP0"], "start_seconds": ["130", "210"], "properties": ["rustling, ducks, quack", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wP8ZKrlx3oA", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["rain, storm, thunder", "men, talk, cars"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone snores nearby", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["spJCm8tD9Zo", "uZesmtKZGSw"], "start_seconds": ["90", "250"], "properties": ["someone snores, nearby, someone", "men, talk, cars"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman sneezes then speaks", "a toilet flushes and a female speaks"], "sample_ids": ["x4dZyf9Gbj0", "yaln9y8I7ms"], "start_seconds": ["130", "230"], "properties": ["sneezes, speaks, woman", "female, flushes, toilet"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman sneezes and speaks", "a toilet flushes and a man speaks"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yDoT73BWsdA", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["engine revs, tires squeal, vehicle", "loud, multiple, distance"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp, a woman speaks, and insects buzz", "a infant makes noise and is excited"], "sample_ids": ["t97k0cejSQE", "wIJK3-5y0kA"], "start_seconds": ["250", "30"], "properties": ["sound, chirp, buzz", "noise, excited, infant"], "captions_pred_video": ["a bee on a purple thistle flower", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a baby cries and a woman speaks"], "question": "which entity makes a lot of noise", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "an insect buzzes around continuously"], "sample_ids": ["su6FAOcOA8c", "v25l1jef3JY"], "start_seconds": ["4", "0"], "properties": ["engine, run, woman", "buzzes, continuously, insect"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "wind blowing followed by a zoom"], "sample_ids": ["sDSppXIlJrs", "vr8ZXjEBhMQ"], "start_seconds": ["27", "150"], "properties": ["microphone, water, wind", "wind, blow, zoom"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["the wind is blowing and water is splashing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a video of wind blowing?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a helicopter engine runs continuously"], "sample_ids": ["yRx9txMcBl0", "ugHJF0hfYkg"], "start_seconds": ["40", "10"], "properties": ["motors, tires, screech", "engine, running, continuously"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a helicopter is flying overhead "], "question": "which entity is running continuously", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "an engine runs loudly"], "sample_ids": ["tiDFTC-5vU", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["male, duck, laugh", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a clock ticktocks"], "sample_ids": ["zcDwZ6W7E3E", "v-g-j2uTByM"], "start_seconds": ["180", "30"], "properties": ["man, speak, motorcycles", "ticktocks, clock, ticktocks"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y2bVZ7rz-5M", "uEU-Hg5MTN8"], "start_seconds": ["280", "27"], "properties": ["engine, horn, siren", "a woman, laughs, animal"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking and a baby is crying"], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wAAkbZToh8", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man burps and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a toilet flushes and water drains"], "sample_ids": ["vzxHnu-SFEw", "sfAvvZwdLCY"], "start_seconds": ["80", "20"], "properties": ["two objects, woman, speak", "water drains, flushes, water"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "people cheer as a vehicle engine revs"], "sample_ids": ["yajyRTUQk3U", "xjhAnI2q6hM"], "start_seconds": ["400", "6"], "properties": ["noise, woman, speak", "engine revs, vehicle, people"], "captions_pred_video": ["- a woman cooking in the kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xC8kbrKJmco", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["background, goat, scream", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a more natural background", "label": 1}, {"captions": ["a large crowd cheers and applauds", "vehicles pass by on a roadway"], "sample_ids": ["rqfQRErjfk8", "tgbONvsP47Y"], "start_seconds": ["170", "0"], "properties": ["crowd, cheers, applauds", "pass, vehicle, roadway"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a toilet flushes and water drains"], "sample_ids": ["tw76HGONaKg", "sfAvvZwdLCY"], "start_seconds": ["570", "20"], "properties": ["music, click, man", "water drains, flushes, water"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a clock ticktocks in wind"], "sample_ids": ["zkKdxzNC97Y", "yVumC9TGknc"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "ticktocks, clock, wind"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "game title screen of the game shadow of the colossus on sony playstation 2"], "captions_pred_audio": ["a door is opened and closed", "a series of beeps and chirps"], "question": "which entity is quieter", "label": 1}, {"captions": ["white noise and birds chirping", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wRBHTgrbiwg", "xfaoyyzw2WU"], "start_seconds": ["50", "180"], "properties": ["noise, white, chirping", "loud, jet engine, roar"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "an aircraft engine roars and a man speaks "], "question": "which noise is louder", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yVumC9TGknc", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["humming, clock, birds", "engine, laugh, loud"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a series of beeps and chirps", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a machine runs", "waves crash against a shoreline and people speak"], "sample_ids": ["vD6lYD1l0BY", "yFB25fqfU8I"], "start_seconds": ["330", "300"], "properties": ["a, machine, run", "wave, crash, shoreline"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["w8uLijTqtlU", "y8WEcpOlT3I"], "start_seconds": ["70", "40"], "properties": ["wind, microphone, noise", "harsh, wind, blows"], "captions_pred_video": ["footage is blurry and shaky", "on how to use a sewing machine youtube"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking with wind noise in the background "], "question": "which entity is a recording of a harsh wind blowing?", "label": 1}, {"captions": ["an airplane engine runs", "people applaud and hoot and chat quietly"], "sample_ids": ["yVPZ2MNWpms", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["engine, airplane, runs", "people, applaud, hoot"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "people are clapping and speaking with background noise "], "question": "which entity is a performance", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a church bell rings several times"], "sample_ids": ["wyllXV6PjKo", "sUVVjE3Ucp8"], "start_seconds": ["30", "0"], "properties": ["a baby, a woman, a man", "ring, bell, several"], "captions_pred_video": [null, "the video shows a stone wall with a clock on top of it and a bench in front of it"], "captions_pred_audio": ["a woman speaks and a baby cries", "a church bell is ringing "], "question": "which entity is silent", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "waves crash against a shoreline and people speak"], "sample_ids": ["sHbXC6na9hg", "yFB25fqfU8I"], "start_seconds": ["0", "300"], "properties": ["a person, saw, wood", "wave, crash, shoreline"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "footage of a person surfing in the ocean"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be in a natural environment", "label": 1}, {"captions": ["a heavy rain falls endlessly", "water flows as men speak and yell"], "sample_ids": ["wP8ZKrlx3oA", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["heavy, rain, fall", "water, flow, men"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of water flowing?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "birds chirp and objects are moved around"], "sample_ids": ["w2M4i1mklOA", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["alarm, gears, turn", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of an antique clock", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "insects buzz and a man speaks"], "question": "which entity is more like a clock", "label": 0}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["su6FAOcOA8c", "tezvROoo4bs"], "start_seconds": ["4", "40"], "properties": ["engine, idle, woman", "audio, throttle, speaking"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a car accelerates and revs while a man speaks "], "question": "which entity is about a bus engine?", "label": 0}, {"captions": ["two frogs croak at each other", "a car speeding up in the distance"], "sample_ids": ["zg0X6BnhOLQ", "u0TrcHhkPQ"], "start_seconds": ["410", "20"], "properties": ["two frogs, croak, at each other", "distance, car, speed"], "captions_pred_video": ["footage of lightning in the sky at night", null], "captions_pred_audio": ["a frog is croaking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["v0x1odnXtP0", "tDVADusiIoc"], "start_seconds": ["210", "60"], "properties": ["keyboard, type, computer", "water, radio, man"], "captions_pred_video": ["how to make money on youtube in spanish", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person?", "label": 0}, {"captions": ["an engine runs and a man speaks", "a duck quacks continuously"], "sample_ids": ["yT5WfYMRr-U", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "quacks, continuously, duck"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a man speaks as a motor runs in the background"], "sample_ids": ["zCrAfDfv6-A", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "background, motor, run"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person whistles a song", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yJ0TePmaOo", "uZesmtKZGSw"], "start_seconds": ["390", "250"], "properties": ["two hard objects, man, speak", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["running water in a faucet with some clinks", "a woman speaks and other women and a man talk with her"], "sample_ids": ["zNRChLjqcU", "vbpKkWvfOu4"], "start_seconds": ["220", "560"], "properties": ["water, faucet, run", "a, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["running water in a faucet with some clinks", "plastic is tapped on while someone speaks"], "sample_ids": ["zNRChLjqcU", "wvKpEYswXO0"], "start_seconds": ["220", "150"], "properties": ["water, faucet, run", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "water splashes as an animal walks through"], "sample_ids": ["w8uLijTqtlU", "w1ir-sZ3Im8"], "start_seconds": ["70", "90"], "properties": ["wind, microphone, noise", "animal, water, splashes"], "captions_pred_video": ["footage is blurry and shaky", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["the wind is blowing strongly", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a recording", "label": 1}, {"captions": ["small dogs yip and bark sharply", "an infant crying frantically"], "sample_ids": ["v-wcQf4BDY0", "zwOBqeFTgiU"], "start_seconds": ["120", "30"], "properties": ["bark, yip, sharply", "cry, infant, frantically"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "of the baby crying in the car seat"], "captions_pred_audio": ["a dog barks and growls", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["material crumbles into a microphone", "some people speak"], "sample_ids": ["vofpvUo6NAw", "vbZ-0lGPneg"], "start_seconds": ["220", "30"], "properties": ["material, crumbles, microphone", "some people speak English, some people speak Spanish, some people speak French"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a woman is speaking and a dog is whimpering"], "question": "which entity is not a person", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tDlfY3nmx1A", "uEU-Hg5MTN8"], "start_seconds": ["160", "27"], "properties": ["applause, laugh, man", "a woman, laughs, animal"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a vehicle engine accelerating then running on idle", "an airplane engine runs"], "sample_ids": ["vYkA3cfXp5Q", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["engine, accelerate, idle", "engine, airplane, runs"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["an engine is idling", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uYT5gxnyMWM", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "stream, water, flow"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a car speeding up in the distance"], "sample_ids": ["sZPuqDgX2V0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["commentator, race, track", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which car is speeding up in the distance", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["w2JXXIAdUdg", "uZesmtKZGSw"], "start_seconds": ["10", "250"], "properties": ["snoring, distance, person", "men, talk, cars"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more likely to be a dream", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vzxHnu-SFEw", "uZesmtKZGSw"], "start_seconds": ["80", "250"], "properties": ["two objects, woman, speak", "men, talk, cars"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["bees buzz and wind blows", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tMJne1a4AFI", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["bees buzz, wind blows, bees", "wind, blow, vehicle"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blows?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y8WEcpOlT3I", "xKB8O8LTs6s"], "start_seconds": ["40", "70"], "properties": ["harsh, wind, blows", "music, gunfire, explosion"], "captions_pred_video": ["on how to use a sewing machine youtube", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yFB25fqfU8I", "vfYTJq7nU"], "start_seconds": ["300", "130"], "properties": ["wave, crash, shoreline", "rustling, ducks, quack"], "captions_pred_video": ["footage of a person surfing in the ocean", null], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yRx9txMcBl0", "sSMl2vc3ek"], "start_seconds": ["40", "20"], "properties": ["motors, tires, screech", "loud, multiple, distance"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["xyx6eNVEYRY", "tw76HGONaKg"], "start_seconds": ["380", "570"], "properties": ["loud, engine, muffles", "A, game, keyboard"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a man speaks and types on a computer keyboard "], "question": "which man is speaking", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zk-xJGQU8-4", "w5W5Kqtc8E"], "start_seconds": ["130", "100"], "properties": ["food, man, woman", "wind, blow, vehicle"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["a car speeding up in the distance", "an insect buzzes around continuously"], "sample_ids": ["u0TrcHhkPQ", "v25l1jef3JY"], "start_seconds": ["20", "0"], "properties": ["distance, car, speed", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a fly is buzzing around a microphone "], "question": "which entity is moving faster", "label": 0}, {"captions": ["a woman speaks and is crumpling paper", "a child speaks in closed space"], "sample_ids": ["xvDdE3zNf8Y", "yW6FWLSLkx4"], "start_seconds": ["120", "40"], "properties": ["A, crumple, paper", "child, space, speak"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a car accelerates and wind blows"], "sample_ids": ["tQWGZLItBXk", "u0TrcHhkPQ"], "start_seconds": ["170", "20"], "properties": ["music, kid, speak", "accelerates, wind, blows"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wRV8yMk886E", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["liquid, spray, nozzle", "engine, revs, vehicle"], "captions_pred_video": ["two cars are parked in a parking lot at night", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "people speak as gunfire rings out"], "sample_ids": ["sQGXqGcwOTc", "wqTCwqVRDlk"], "start_seconds": ["3", "80"], "properties": ["cling, speak, dishes", "gunfire, ring, speak"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["y8WEcpOlT3I", "rqu8iB22IY"], "start_seconds": ["40", "5"], "properties": ["wind, speak, buffeting", "sound, repeats, laugh"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a dog barks and a man speaks while music plays "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["continuous snoring", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["sLkeqCDJIyw", "uEU-Hg5MTN8"], "start_seconds": ["120", "27"], "properties": ["loud, snoring, noise", "a woman, laughs, animal"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is not a person", "label": 0}, {"captions": ["a helicopter engine idles continuously", "continuous snoring"], "sample_ids": ["ugHJF0hfYkg", "sLkeqCDJIyw"], "start_seconds": ["10", "120"], "properties": ["engine, idle, continuously", "loud, snoring, noise"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a helicopter is flying overhead ", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sncRqQ67iJU", "tDVADusiIoc"], "start_seconds": ["460", "60"], "properties": ["loud, repeatedly, man", "water, radio, man"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person is snoring", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a man?", "label": 0}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a car accelerates and wind blows"], "sample_ids": ["slZLHwNbbt4", "u0TrcHhkPQ"], "start_seconds": ["300", "20"], "properties": ["clap, distance, horn", "accelerates, wind, blows"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xNMovAf3o50", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["rain, thunder, music", "a woman, laughs, animal"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "water splashes and a door squeaks"], "sample_ids": ["sjlVMgdGSK0", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["car, revving, loudly", "sound, splash, door"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uPDn2BFTHk", "vfYTJq7nU"], "start_seconds": ["140", "130"], "properties": ["lady, laugh, baby", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a baby?", "label": 0}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uPDn2BFTHk", "wz7N8YRy74I"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "wind blowing followed by a zoom"], "sample_ids": ["vddP56-ogds", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["water, flow, laugh", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to blow", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a person speaks briefly"], "sample_ids": ["zF8yoL0rkbI", "zOZleIRqZm4"], "start_seconds": ["30", "80"], "properties": ["engine, run, someone", "person, talk, brief"], "captions_pred_video": ["footage of the traffic on the street at night", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking with crickets chirping in the background"], "question": "which entity is talking", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "an insect buzzes around continuously"], "sample_ids": ["sQGXqGcwOTc", "v25l1jef3JY"], "start_seconds": ["3", "0"], "properties": ["cling, speak, dishes", "buzzes, continuously, insect"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a motor slows to a stopover traffic noises"], "sample_ids": ["y8WEcpOlT3I", "zofjfKhqLk8"], "start_seconds": ["40", "10"], "properties": ["wind, speak, buffeting", "noise, stop, motor"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a large engine is running and a bell is ringing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "people speak as gunfire rings out"], "sample_ids": ["zhx6hoYrHeI", "wqTCwqVRDlk"], "start_seconds": ["160", "80"], "properties": ["engine, sputter, rough", "gunfire, ring, speak"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a crowd yells, reacts and applauds"], "sample_ids": ["wTjoRj1se3U", "wztCSUxOf8"], "start_seconds": ["390", "130"], "properties": ["airplane, engine, spool", "a crowd, yells, applauds"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "an airplane engine spools and people speak"], "sample_ids": ["xKB8O8LTs6s", "wTjoRj1se3U"], "start_seconds": ["70", "390"], "properties": ["music, radio, gunshots", "airplane, engine, spool"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a jet engine is running and people are talking"], "question": "which entity is a video of a plane engine spooling?", "label": 1}, {"captions": ["a door opens and birds chirp", "water rushes and then a vehicle zooms past"], "sample_ids": ["yeFvk9x0wWI", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["door, open, birds", "water, rushes, vehicle"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a goat screams and people speak in the background", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["xC8kbrKJmco", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["background, goat, scream", "man, woman, squawks"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is accompanied by a man and woman speaking", "label": 1}, {"captions": ["a woman and man are speaking", "a toilet flushes and water drains"], "sample_ids": ["vbpKkWvfOu4", "sfAvvZwdLCY"], "start_seconds": ["560", "20"], "properties": ["two people, speaking, woman, man", "water drains, flushes, water"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vbpKkWvfOu4", "xBxDz0CFVn0"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "stream, water, flow"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a woman speaking and then a man speaking?", "label": 0}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "water pouring and bubbling"], "sample_ids": ["zY3icUyMdh8", "uyRfq-jKPpo"], "start_seconds": ["20", "50"], "properties": ["dog, bark, engine", "water, bubbles, pouring"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "people speak then an engine runs"], "sample_ids": ["yDoT73BWsdA", "uMTTDZ2mb4"], "start_seconds": ["10", "30"], "properties": ["engine, revs, vehicle", "engine, run, people"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity has a vehicle with an engine?", "label": 0}, {"captions": ["a man talks while vehicles pass by", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["sK4u5T8hW78", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "beeps, hit, woman"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a beep sounds followed by a child speaking"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["someone whistles briefly", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uFoga8sHpiw", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["sound, duration, pitch", "wind, blow, vehicle"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a longer duration", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a clock ticktocks"], "sample_ids": ["vfYTJq7nU", "v-g-j2uTByM"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a toilet flushes and a female speaks"], "sample_ids": ["x6ijhqRY38s", "yaln9y8I7ms"], "start_seconds": ["250", "230"], "properties": ["bowl, silverware, man", "female, flushes, toilet"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a toilet flushes and a man speaks"], "question": "which entity is about a toilet?", "label": 1}, {"captions": ["a toilet flushes and water drains", "someone is typing on a computer keyboard"], "sample_ids": ["sfAvvZwdLCY", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["water drains, flushes, water", "keyboard, type, computer"], "captions_pred_video": ["footage of the toilet in the bathroom", "how to make money on youtube in spanish"], "captions_pred_audio": ["a toilet is flushed", "a person is typing on a keyboard"], "question": "which object is used to type on a computer", "label": 1}, {"captions": ["a beep occurs briefly", "a clock ticktocks"], "sample_ids": ["xtWeJ56-U-g", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["beep, occur, briefly", "ticktocks, clock, ticktocks"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a horn rings out as a machine runs by"], "sample_ids": ["sfAvvZwdLCY", "slZLHwNbbt4"], "start_seconds": ["20", "300"], "properties": ["water drains, flushes, water", "a, horn, run"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a toilet is flushed", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a child speaks in closed space"], "sample_ids": ["xjvTpk2Zpr8", "yW6FWLSLkx4"], "start_seconds": ["70", "40"], "properties": ["engine, run, wind", "child, space, speak"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "someone is typing on a computer keyboard"], "sample_ids": ["yeFvk9x0wWI", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["chirp, twitter, clatter", "keyboard, type, computer"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "how to make money on youtube in spanish"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a person is typing on a keyboard"], "question": "which entity is typing", "label": 1}, {"captions": ["a baby laugh at a sputter", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sLUnaPT5gM8", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["laugh, sputter, baby", "loud, jet engine, roar"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vSeGhaZt-aI", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["water, bubbles, speak", "a woman, a television program, a bird"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "dishes cling together then a man begins to speak"], "sample_ids": ["ugHJF0hfYkg", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["engine, running, continuously", "cling, speak, dishes"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a helicopter is flying overhead ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "birds chirp and objects are moved around"], "sample_ids": ["rwTERCUno", "yPUYU6t3rwo"], "start_seconds": ["90", "370"], "properties": ["engine, idle, sputter", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["an engine is idling and vibrating", "insects buzz and a man speaks"], "question": "which entity is not a person?", "label": 0}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["yYEVLuqEytU", "xjvTpk2Zpr8"], "start_seconds": ["40", "70"], "properties": ["animal, pig, background", "wind, blows, vehicle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a duck quacks continuously"], "sample_ids": ["yks4cLgIDMc", "vh30P49Po6s"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "quacks, continuously, duck"], "captions_pred_video": ["footage of two kids wrestling on the floor", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a child is crying", "a duck is quacking loudly"], "question": "which entity is speaking", "label": 0}, {"captions": ["some men converse over an engine running", "people cheer as a vehicle engine revs"], "sample_ids": ["sCiy7QS1U", "xjhAnI2q6hM"], "start_seconds": ["300", "6"], "properties": ["men, converse, engine", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a truck is revving its engine and a man is speaking "], "question": "which entity shows people cheering?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["x6ijhqRY38s", "zl9Dqx-j7q4"], "start_seconds": ["250", "6"], "properties": ["bowl, silverware, man", "engine, laugh, loud"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a jet engine roars "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["w6RTHR6AeAg", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["call, owl, screech", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["zl9Dqx-j7q4", "sapQIQUhFc"], "start_seconds": ["6", "280"], "properties": ["engine, laugh, loud", "liquid, flow, distance"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["a stream runs then someone speaks", "a woman speaks and is crumpling paper"], "sample_ids": ["wbHTKEJZyhc", "xvDdE3zNf8Y"], "start_seconds": ["20", "120"], "properties": ["stream, run, someone", "A, crumple, paper"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a woman speaks and crumples paper"], "question": "which entity is crumpling paper", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "someone is typing on a computer keyboard"], "sample_ids": ["u7C-AEBQM", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["ticks, rhythmic, quiet", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a ticktock of a clock", "a person is typing on a keyboard"], "question": "which is quieter", "label": 1}, {"captions": ["a person sniffles and sneezes", "a woman speaks as she rubs two objects together"], "sample_ids": ["uRlbY6aoBU", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["sneezes, sniffles, person", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is sneezing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["someone snores nearby", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["spJCm8tD9Zo", "uZesmtKZGSw"], "start_seconds": ["90", "250"], "properties": ["someone snores, nearby, someone", "men, talk, cars"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an emergency siren wails as it passes", "some tunes played by whistling"], "sample_ids": ["vGj1XLJvNrw", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["wails, wails, pass", "tune, play, whistling"], "captions_pred_video": ["footage of a police car driving down a city street", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a person whistling a song"], "question": "which entity is not playing a tune?", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sa6TLVbooCc", "tDVADusiIoc"], "start_seconds": ["240", "60"], "properties": ["people, laugh, child", "water, radio, man"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a child speaking?", "label": 0}, {"captions": ["birds chirps while a siren signals in the distance", "a car speeding up in the distance"], "sample_ids": ["uKCSGgof8gI", "u0TrcHhkPQ"], "start_seconds": ["12", "20"], "properties": ["chirps, distance, signal", "distance, car, speed"], "captions_pred_video": ["footage of a street in a small town on a sunny day", null], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a train engine runs and a horn blows", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zPX9o1uDiI", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["engine, horn, run", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wyllXV6PjKo", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["a kid, talk, cry", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman speaks and a baby cries", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "an insect buzzes around continuously"], "sample_ids": ["wvKpEYswXO0", "v25l1jef3JY"], "start_seconds": ["150", "0"], "properties": ["water, tap, run", "buzzes, continuously, insect"], "captions_pred_video": ["of the person preparing food in the kitchen", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a person is snoring while sleeping", "a man speaks as a motor runs in the background"], "sample_ids": ["vJrjSeP17yE", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "background, motor, run"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person snoring loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 0}, {"captions": ["multiple birds chirp and an animal grunts", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["tDlysoZiA1I", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["animal, grunt, multiple", "animal, grunts, chirps"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "birds are chirping and a rooster is crowing "], "question": "which entity has more grunts", "label": 1}, {"captions": ["a cat meows and children speak", "material crumbles into a microphone"], "sample_ids": ["x5cuQjOdM3E", "vofpvUo6NAw"], "start_seconds": ["30", "220"], "properties": ["cat, speak, children", "material, crumbles, microphone"], "captions_pred_video": ["a black background with an airplane flying in the sky", "person wrapping a toy car in a plastic bag"], "captions_pred_audio": ["a cat meows and a woman speaks", "paper is being crumpled and crinkled"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wqUmIEzuNz4", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["frog, bird, vocalize", "loud, multiple, distance"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", null], "captions_pred_audio": ["a cat meows and rustles", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sG7TyPnFDR0", "su6FAOcOA8c"], "start_seconds": ["180", "4"], "properties": ["beeps, machine, smoke alarm", "engine, idle, woman"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "an infant crying and a woman speaking with some distant murmuring"], "sample_ids": ["vb1fPSDI4c", "smDKStoHBJo"], "start_seconds": ["30", "0"], "properties": ["multiple, people, yell", "a, infant, speaking"], "captions_pred_video": [null, "a man holding a crying baby in his arms"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a baby is crying and a woman is speaking"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "an animal quacks rapidly"], "sample_ids": ["vfYTJq7nU", "vh30P49Po6s"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "animal, quacks, rapidly"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a duck is quacking loudly"], "question": "which entity is a duck?", "label": 0}, {"captions": ["a beep repeats multiple times", "a duck quacks loudly and continuously"], "sample_ids": ["y682ml90jGw", "vh30P49Po6s"], "start_seconds": ["11", "30"], "properties": ["beep, repeat, multiple", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a beeping sound is being made ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks in wind", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yVumC9TGknc", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["ticktocks, clock, wind", "loud, jet engine, roar"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a series of beeps and chirps", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a man speaks as a car is passing by"], "sample_ids": ["wvKpEYswXO0", "sK4u5T8hW78"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "a, car, pass"], "captions_pred_video": ["of the person preparing food in the kitchen", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wyllXV6PjKo", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["a baby, a woman, a man", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "water splashes as an animal walks through"], "sample_ids": ["sWZzXuWYY", "w1ir-sZ3Im8"], "start_seconds": ["420", "90"], "properties": ["male, clanks, thumps", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xjvTpk2Zpr8", "xKB8O8LTs6s"], "start_seconds": ["70", "70"], "properties": ["engine, run, wind", "music, gunfire, explosion"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a jet engine roars and wind blows ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a movie?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle accelerates squealing tires"], "sample_ids": ["sfAvvZwdLCY", "sd7xVssqlw"], "start_seconds": ["20", "50"], "properties": ["water drains, flushes, water", "accelerates, tires, squealing"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xOZfdgAgJ9o", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["woman, whimpering, speaking", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a dog is whimpering"], "question": "which woman is speaking", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xKB8O8LTs6s", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "stream, water, flow"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage is blurry and out of focus"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a man speaks as a car is passing by"], "sample_ids": ["vveS8HT7Uog", "sK4u5T8hW78"], "start_seconds": ["100", "30"], "properties": ["a man, objects, speak", "a, car, pass"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a man is speaking with background noise and breathing sounds "], "question": "which object is rubbed together", "label": 0}, {"captions": ["a baby cries and a woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["tMbMDvT50j8", "wwyfGO2J4"], "start_seconds": ["12", "90"], "properties": ["a, cry, woman", "people, applaud, hoot"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xyL9F5VrjkE", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["wind, blows, vehicle", "People, motor, brakes"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "vehicles pass by on a roadway"], "sample_ids": ["xl2PIWyXaM", "tgbONvsP47Y"], "start_seconds": ["160", "0"], "properties": ["chirp, man, younger person", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["birds are chirping and people are talking", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vlS6YMeWAPo", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["sheep, baa, birds", "loud, jet engine, roar"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a goat bleats and birds chirp", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vbr9mHKc8WM", "sLUnaPT5gM8"], "start_seconds": ["40", "0"], "properties": ["noise, loudness, engine", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["an engine is idling", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "some men converse over an engine running"], "sample_ids": ["xyL9F5VrjkE", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["wind, blows, vehicle", "men, converse, engine"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks while water drains", "a drill drills through something then people begin laughing"], "sample_ids": ["vSeGhaZt-aI", "tEE3MpBt1sg"], "start_seconds": ["50", "50"], "properties": ["water, drain, man", "drill, something, laugh"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "people are laughing breathing and speaking with background noise "], "question": "which entity is about a drill?", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["zuua6-5goWw", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["sound, pop, bird", "background, motor, run"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["an insect buzzes around continuously", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["v25l1jef3JY", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["buzzes, continuously, insect", "People, motor, brakes"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is not a person?", "label": 0}, {"captions": ["a man speaks as a car is passing by", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sK4u5T8hW78", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a, car, pass", "female, spraying, scream"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a duck quacks loudly and continuously", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vh30P49Po6s", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "multiple, people, yell"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a woman speaks and then a man speaks"], "sample_ids": ["tDlysoZiA1I", "vbpKkWvfOu4"], "start_seconds": ["0", "560"], "properties": ["animal, grunt, chirp", "a, man, speaks"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a man is speaking"], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zY3icUyMdh8", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "rooster, crow, background, men"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a bird?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uYT5gxnyMWM", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["female, spraying, scream", "a woman, laughs, animal"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a woman speaking and spraying?", "label": 0}, {"captions": ["a door opens and closes", "an engine runs loudly"], "sample_ids": ["vBHyYJ8pL0", "vqZuVbG6-HI"], "start_seconds": ["2", "130"], "properties": ["open, close, door", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "water pouring and bubbling"], "sample_ids": ["uWPRNLnpy7Y", "uyRfq-jKPpo"], "start_seconds": ["10", "50"], "properties": ["accelerate, laugh, vehicle", "water, bubbles, pouring"], "captions_pred_video": ["is taken from a car driving down the street", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car accelerates and revs its engine ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "an infant crying frantically"], "sample_ids": ["vXlk0lIQBFo", "zwOBqeFTgiU"], "start_seconds": ["470", "30"], "properties": ["wind, talk, vocalize", "cry, infant, frantically"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "of the baby crying in the car seat"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a man speaks as a car is passing by"], "sample_ids": ["tDVADusiIoc", "sK4u5T8hW78"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "a, car, pass"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "an airplane engine runs"], "sample_ids": ["zFjIWfSD-4", "yVPZ2MNWpms"], "start_seconds": ["410", "0"], "properties": ["People, motor, brakes", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a car is driving by on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "water is sprayed across a hard surface"], "sample_ids": ["siJFXfGWgDk", "sQwlkXjQabo"], "start_seconds": ["50", "10"], "properties": ["a, bird, vehicle", "water, spray, surface"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "vehicles pass by on a roadway"], "sample_ids": ["sapQIQUhFc", "tgbONvsP47Y"], "start_seconds": ["280", "0"], "properties": ["liquid, flow, distance", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "birds chirp quietly and an adult man speaks"], "sample_ids": ["y8dSeubCNI", "zuua6-5goWw"], "start_seconds": ["4", "30"], "properties": ["engine revving, people speaking, motorcycle", "birds, chirp, quiet, man, speaks"], "captions_pred_video": [null, "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["an engine revving and people talking in the background", "birds are chirping and a man is speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "paper is crumpling consistently"], "sample_ids": ["wjsXBsc7M40", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a baby laughs and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is more likely to be a video", "label": 0}, {"captions": ["food is frying and sizzles", "people speak as gunfire rings out"], "sample_ids": ["zNRChLjqcU", "wqTCwqVRDlk"], "start_seconds": ["220", "80"], "properties": ["food is frying, sizzles, food", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sZvwOuuPGP0", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["engine, diesel, truck", "loud, laughter, intermittent"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a medium engine is running ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is intermittent", "label": 1}, {"captions": ["scraping and female speech with distant music", "a man talks while a clock does ticktock"], "sample_ids": ["yHeVV-xeOxQ", "spYNpeN7rPY"], "start_seconds": ["130", "1"], "properties": ["female, speech, music", "a clock, ticktock, man"], "captions_pred_video": ["of a girl milking a goat's udder", "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking and breathing with background noise "], "question": "which entity is a clock?", "label": 1}, {"captions": ["rustling with distant murmuring", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wnNNcxAPwGQ", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["sound, distance, rustling", "stream, water, flow"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "footage is blurry and out of focus"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a goat screams and people speak in the background", "speaking following by laughing and clapping"], "sample_ids": ["xC8kbrKJmco", "u2f5NpsoHBg"], "start_seconds": ["0", "30"], "properties": ["background, goat, scream", "person, laugh, clap"], "captions_pred_video": [null, "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a goat is bleating ", "a woman is speaking and a crowd is clapping"], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["a dark barks and whimpers", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sYj4hpDUZDQ", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["barks, whimpers, dark", "music, gunfire, explosion"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog barks and a cat meows", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zliInBdC98Y", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["a, baby, cries, wails", "applause, audience, yells"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "water is sprayed across a hard surface"], "sample_ids": ["tdWhHV3X25Q", "sQwlkXjQabo"], "start_seconds": ["60", "10"], "properties": ["applause, audience, yells", "water, spray, surface"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uiItxDsDMFI", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["sound, distance, leaves", "music, gunfire, explosion"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a saw is being used with background noise ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a woman speaks happily and an animal chirps"], "sample_ids": ["tDVADusiIoc", "uWAAAL4CIoc"], "start_seconds": ["60", "0"], "properties": ["wind, radio, waves", "a woman, chirps, animal"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "water flows and trickles"], "sample_ids": ["sQwlkXjQabo", "tB7hWb9gTuQ"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "water, flow, trickle"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["spraying followed by silence", "water is splashing and gurgling"], "question": "which entity is flowing", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["wudZTNBtVqc", "viuTg1M-dqg"], "start_seconds": ["60", "30"], "properties": ["accelerates, engine, wind", "two men, speak, follow"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "some tunes played by whistling"], "sample_ids": ["tEE3MpBt1sg", "u6BnG6YZqJ4"], "start_seconds": ["50", "0"], "properties": ["drill, something, laugh", "tune, play, whistling"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sTpirNYo8vQ", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["a, tone, fast", "engine, laugh, loud"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["vbZ-0lGPneg", "yeFvk9x0wWI"], "start_seconds": ["30", "30"], "properties": ["a woman, a television program, a bird", "clack, bird, chirp"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "birds chirp in the background as a car drives by "], "question": "which entity has more birds", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tK4VlLsNxak", "vYkA3cfXp5Q"], "start_seconds": ["120", "30"], "properties": ["a, dial, telephone", "engine, accelerate, idle"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["w1mlz3Pe4fU", "zl9Dqx-j7q4"], "start_seconds": ["300", "6"], "properties": ["vocalize, chirp, continuously", "engine, laugh, loud"], "captions_pred_video": ["of a bird in a cage", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and singing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["vK93VuO0yNc", "sYITalLZjj4"], "start_seconds": ["30", "30"], "properties": ["male voice, bus, rumble", "water, rushes, background, birds"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "two ducks are swimming in the water near each other"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "wind blows and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "pigeons vocalize and birds chirp"], "sample_ids": ["tDlysoZiA1I", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["animal, grunts, chirps", "vocalize, bird, chirp"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of the pigeon in the cage"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a car speeding up in the distance"], "sample_ids": ["xhmRY9yhC7c", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["a, laugh, infant", "distance, car, speed"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a man talks as several small engines run", "water splashes and a motorboat passes as people yell"], "sample_ids": ["u9A6VZQCZpU", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["a, man, talk", "water, splashes, motorboat"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about water?", "label": 1}, {"captions": ["an engine runs and a man speaks", "a vehicle engine accelerating then running on idle"], "sample_ids": ["yT5WfYMRr-U", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "engine, accelerate, idle"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "an engine is idling"], "question": "which entity is a vehicle engine?", "label": 1}, {"captions": ["a beep occurs briefly", "a man speaks followed by another man speaking outside"], "sample_ids": ["xtWeJ56-U-g", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["beep, occur, briefly", "two men, speak, follow"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "three men talk while wind blows and some liquid flows"], "sample_ids": ["su6FAOcOA8c", "vJ7JPEFhyLA"], "start_seconds": ["4", "16"], "properties": ["engine, idle, woman", "three men, wind, flow"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a bus engine?", "label": 0}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "small dogs yip and bark sharply"], "sample_ids": ["sjlVMgdGSK0", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["car, revving, loudly", "bark, yip, sharply"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a speedboat passes quickly on the water"], "sample_ids": ["vlJS7LN2XyM", "tjmoSi330GM"], "start_seconds": ["30", "23"], "properties": ["background, clocks, ticking", "speed, water, boat"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a ticktock of a clock", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 1}, {"captions": ["birds chirp and wind blows", "paper is crumpling consistently"], "sample_ids": ["sxIvBMSavMQ", "v5cSxLaHADY"], "start_seconds": ["210", "0"], "properties": ["birds, chirp, wind", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a man speaks as a car is passing by"], "sample_ids": ["uPDn2BFTHk", "sK4u5T8hW78"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["xKB8O8LTs6s", "tiDFTC-5vU"], "start_seconds": ["70", "30"], "properties": ["music, gunshots, explosion", "male, duck, laugh"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and ducks are quacking"], "question": "which entity is a comedy", "label": 1}, {"captions": ["a man speaks as crickets sing", "waves crash against a shoreline and people speak"], "sample_ids": ["ryFDPxgDOGc", "yFB25fqfU8I"], "start_seconds": ["570", "300"], "properties": ["a, crickets, sing", "wave, crash, shoreline"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be in a desert?", "label": 0}, {"captions": ["a vehicle engine runs and someone speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zF8yoL0rkbI", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "rooster, crow, background, men"], "captions_pred_video": ["footage of the traffic on the street at night", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a toilet flushes and a female speaks"], "sample_ids": ["zTLVJCo4WEE", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["a, crickets, sing", "female, flushes, toilet"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "birds chirp as a train approaches"], "sample_ids": ["wqADXCzngMw", "xM4joTqDVp4"], "start_seconds": ["340", "160"], "properties": ["engine, idle, man", "bird, chirp, train"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "birds are chirping and a train is moving "], "question": "which entity is a train", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w-4gHptFNuU", "sSMl2vc3ek"], "start_seconds": ["21", "20"], "properties": ["engine revs, accelerates, bump", "loud, multiple, distance"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "a duck quacks continuously"], "sample_ids": ["uzQnlJXBbOM", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "quacks, continuously, duck"], "captions_pred_video": ["footage of a person using a cell phone on a table", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a telephone rings and a man speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a machine beeps continuously"], "sample_ids": ["uYT5gxnyMWM", "y682ml90jGw"], "start_seconds": ["50", "11"], "properties": ["person, spray, yell", "beeps, machine, continuously"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a stream of water runs briefly"], "sample_ids": ["wnpJndXuxLc", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["blows, vehicle, train", "stream, water, run"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a infant makes noise and is excited"], "sample_ids": ["tZGN5a7ybxo", "wIJK3-5y0kA"], "start_seconds": ["60", "30"], "properties": ["ring, train, horn", "noise, excited, infant"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "an infant crying frantically"], "sample_ids": ["yks4cLgIDMc", "zwOBqeFTgiU"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "cry, infant, frantically"], "captions_pred_video": ["footage of two kids wrestling on the floor", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and a child is crying", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vddP56-ogds", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["water, splash, person, laugh", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "a man speaks as a car is passing by"], "sample_ids": ["rqu8iB22IY", "sK4u5T8hW78"], "start_seconds": ["5", "30"], "properties": ["sound, repeats, laugh", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wTideSjRFS0", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["food, sizzle, woman", "harsh, wind, blows"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking with wind noise in the background "], "question": "which entity is about a woman speaking and food sizzling while frying?", "label": 0}, {"captions": ["water splashes and a motorboat passes as people yell", "winds blows roughly as a vehicle races past"], "sample_ids": ["w5W5Kqtc8E", "xjvTpk2Zpr8"], "start_seconds": ["100", "70"], "properties": ["water, splashes, motorboat", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a man talks as several small engines run", "a man speaks as a car is passing by"], "sample_ids": ["u9A6VZQCZpU", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zALy31PjDl0", "vbZ-0lGPneg"], "start_seconds": ["21", "30"], "properties": ["a man, a vehicle, a horn", "a woman, a television program, a bird"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a horn rings out as a machine runs by"], "sample_ids": ["wz7N8YRy74I", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["rooster, crow, background, people", "a, horn, run"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["v0x1odnXtP0", "tDlysoZiA1I"], "start_seconds": ["210", "0"], "properties": ["keyboard, type, computer", "animal, grunts, chirps"], "captions_pred_video": ["how to make money on youtube in spanish", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a person is typing on a keyboard", "birds are chirping and a rooster is crowing "], "question": "which entity is not a person?", "label": 1}, {"captions": ["water pouring and bubbling", "a car speeding up in the distance"], "sample_ids": ["uyRfq-jKPpo", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["water, bubbles, pouring", "distance, car, speed"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", null], "captions_pred_audio": ["water is running from a faucet", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["several beeps are followed by a hit and a woman talking", "a machine clanks and thumps and a male speaks"], "sample_ids": ["w34HjHr6gAY", "sWZzXuWYY"], "start_seconds": ["30", "420"], "properties": ["beeps, hit, woman", "male, clanks, thumps"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a sewing machine runs and a man speaks"], "question": "which entity has a male speaking?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "loud ringing of a telephone stops followed by a man speaking and a digital beep"], "sample_ids": ["vb1fPSDI4c", "uzQnlJXBbOM"], "start_seconds": ["30", "50"], "properties": ["multiple, people, yell", "ringing, beep, stop"], "captions_pred_video": [null, "footage of a person using a cell phone on a table"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a telephone rings and a man speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a machine beeps continuously"], "sample_ids": ["tPJvjq9QePY", "y682ml90jGw"], "start_seconds": ["40", "11"], "properties": ["bleats, person, speak", "beeps, machine, continuously"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a clock ticktocks", "pigeons vocalize and birds chirp"], "sample_ids": ["v-g-j2uTByM", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["ticktocks, clock, ticktocks", "vocalize, bird, chirp"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of the pigeon in the cage"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["xOZfdgAgJ9o", "y2bVZ7rz-5M"], "start_seconds": ["40", "280"], "properties": ["woman, whimpering, speaking", "motor noise, horn, siren"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["some tunes played by whistling", "birds twitter and chirp and clatter"], "sample_ids": ["u6BnG6YZqJ4", "yeFvk9x0wWI"], "start_seconds": ["0", "30"], "properties": ["tune, play, whistling", "chirp, twitter, clatter"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a person whistling a song", "birds chirp in the background as a car drives by "], "question": "which entity is not a musical instrument", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["wnpJndXuxLc", "vXlk0lIQBFo"], "start_seconds": ["50", "470"], "properties": ["beeps, loud, whistle", "wind, speak, vocalize"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is not a series of light horn beeps followed by a loud steam whistle?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "an airplane engine runs"], "sample_ids": ["tOSWIURC-4", "yVPZ2MNWpms"], "start_seconds": ["0", "0"], "properties": ["engine, work, nearby", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a lawn mower is running ", "a car is driving by on the road "], "question": "which entity has a moving engine", "label": 1}, {"captions": ["an electronic device bleeps once", "a woman and man speak while food is frying"], "sample_ids": ["tHJ6JSa8Y4", "zk-xJGQU8-4"], "start_seconds": ["0", "130"], "properties": ["bleeps, electronic, device", "food, man, woman"], "captions_pred_video": [null, "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a clock is ticking and beeping", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "wind blows as people chatter quietly"], "sample_ids": ["w34HjHr6gAY", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "wind, chatter, people"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage is blurry and out of focus"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a machine beeps continuously"], "sample_ids": ["zk-xJGQU8-4", "y682ml90jGw"], "start_seconds": ["130", "11"], "properties": ["food, man, woman", "beeps, machine, continuously"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["water running down a sink while a man is talking", "vehicles pass by on a roadway"], "sample_ids": ["vSeGhaZt-aI", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["water, sink, talk", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaking with light rustling", "a man speaks as a car is passing by"], "sample_ids": ["zOZleIRqZm4", "sK4u5T8hW78"], "start_seconds": ["80", "30"], "properties": ["light, rustling, man", "a, car, pass"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more likely to be in a city", "label": 1}, {"captions": ["some people speak", "a woman talking as an infant is crying"], "sample_ids": ["vbZ-0lGPneg", "tMbMDvT50j8"], "start_seconds": ["30", "12"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "a, talk, infant"], "captions_pred_video": ["of a man holding a baby duck in his hands", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a baby cries and a woman speaks"], "question": "which entity is about a woman talking to an infant?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "wind blowing followed by a zoom"], "sample_ids": ["xO-Q2BlIIPU", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["two men, exclamation, speak", "wind, blow, zoom"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a person whistles a meandering tune", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["uFoga8sHpiw", "wqZ135Ssz0"], "start_seconds": ["90", "60"], "properties": ["person, tune, whistle", "two men, woman, birds"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["several ducks are quacking and squawking", "wind blowing followed by a zoom"], "sample_ids": ["wfHeoPDLMaM", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["quacking, squawking, ducks", "wind, blow, zoom"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["ducks are quacking", "wind blows and a chainsaw cuts through wood "], "question": "which entity is silent", "label": 1}, {"captions": ["a duck quacks several times", "a man speaks as a car is passing by"], "sample_ids": ["vh30P49Po6s", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["quacks, duck, several", "a, car, pass"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a person speaks over rustling leaves", "a man speaks over intermittent keyboard taps"], "sample_ids": ["zOZleIRqZm4", "tw76HGONaKg"], "start_seconds": ["80", "570"], "properties": ["rustling, leaves, person", "audio, man, keyboard"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man speaks and types on a computer keyboard "], "question": "which entity is a person speaking over?", "label": 0}, {"captions": ["a goat bleats and someone makes a calling noise", "small dogs yip and bark sharply"], "sample_ids": ["vlS6YMeWAPo", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["noise, bleat, call", "bark, yip, sharply"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a goat bleats and birds chirp", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone snores nearby", "a child speaks in closed space"], "sample_ids": ["spJCm8tD9Zo", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["someone snores, nearby, someone", "child, space, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a drill runs and two people laugh", "water splashes as an animal walks through"], "sample_ids": ["tEE3MpBt1sg", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["two people, laugh, drill", "animal, water, splashes"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wnpJndXuxLc", "tdWhHV3X25Q"], "start_seconds": ["50", "60"], "properties": ["blows, vehicle, train", "applause, audience, yells"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a person", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a motorcycle engine works nearby"], "sample_ids": ["vdoxuJn9lTc", "tOSWIURC-4"], "start_seconds": ["40", "0"], "properties": ["person, burp, girl", "engine, work, nearby"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "a lawn mower is running "], "question": "which entity is working", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wTideSjRFS0", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["food, sizzle, woman", "multiple, people, yell"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a crowd of people are talking and laughing"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs", "a toilet flushes and a female speaks"], "sample_ids": ["yLCORCnd35Q", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["engine, aircraft, runs", "female, flushes, toilet"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "people cheer as a vehicle engine revs"], "sample_ids": ["zcDwZ6W7E3E", "xjhAnI2q6hM"], "start_seconds": ["180", "6"], "properties": ["a, man, speak", "engine revs, vehicle, people"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a male speaks over some small clicks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uXxVebHsGZ8", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["male, clicks, speak", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "vehicles pass by on a roadway"], "sample_ids": ["sWZzXuWYY", "tgbONvsP47Y"], "start_seconds": ["420", "0"], "properties": ["male, clanks, thumps", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a car is driving on the road "], "question": "which entity is a video of vehicles passing by on a roadway?", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a piece of wood is being placed down and sawed"], "sample_ids": ["yYEVLuqEytU", "uiItxDsDMFI"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "wood, piece, saw"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["birds chirp as a train approaches", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xM4joTqDVp4", "yajyRTUQk3U"], "start_seconds": ["160", "400"], "properties": ["bird, chirp, train", "a woman, something, fried"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a child speaks in closed space"], "sample_ids": ["vcmWSmvti8", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["music, man, fire", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["male speech with light ticking", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xO-Q2BlIIPU", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["male, speech, ticking", "rustling, ducks, quack"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["ugHJF0hfYkg", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["loud, propeller, move", "a woman, laughs, animal"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is not moving", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a telephone rings followed by a woman talking"], "sample_ids": ["xKB8O8LTs6s", "tGcFnX0GHI"], "start_seconds": ["70", "0"], "properties": ["music, gunshots, explosion", "ring, talk, woman"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a woman speaks as she rubs two objects together"], "sample_ids": ["vh30P49Po6s", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["loud, continuous, quacks", "two objects, woman, speak"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is silent", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yPUYU6t3rwo", "wz7N8YRy74I"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "rooster, crow, background, men"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["insects buzz and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is about a rooster?", "label": 1}, {"captions": ["a man speaks while water drains", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vSeGhaZt-aI", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["water, drain, man", "a woman, a television program, a bird"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a dog is whimpering"], "question": "which entity has more moving parts", "label": 1}, {"captions": ["people speak as gunfire rings out", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wqTCwqVRDlk", "tDVADusiIoc"], "start_seconds": ["80", "60"], "properties": ["gunfire, ring, speak", "water, radio, man"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sTpirNYo8vQ", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["a, tone, fast", "harsh, wind, blows"], "captions_pred_video": ["of a man taking a selfie on a bus", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a woman speaks over sizzling noise"], "sample_ids": ["zCrAfDfv6-A", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["person, mouse, click", "noise, woman, speak"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking while food is frying in the background"], "question": "which entity is speaking over noise", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a car accelerates and wind blows"], "sample_ids": ["wTjoRj1se3U", "u0TrcHhkPQ"], "start_seconds": ["390", "20"], "properties": ["engine, run, people", "accelerates, wind, blows"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a clock ticktocks"], "sample_ids": ["xhmRY9yhC7c", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["a, laugh, infant", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a baby crying in a baby bouncer", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a baby cries and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a boat travels through the waves as the wind blows loudly and a man speaks over a radio"], "sample_ids": ["wvKpEYswXO0", "tDVADusiIoc"], "start_seconds": ["150", "60"], "properties": ["sound, water, running", "wind, radio, waves"], "captions_pred_video": ["of the person preparing food in the kitchen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a radio?", "label": 1}, {"captions": ["birds coo incessantly", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yZrFNS7GFBQ", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["coo, bird, incessant", "rustling, ducks, quack"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a duck quacks and a woman speaks"], "question": "which entity is a bird", "label": 0}, {"captions": ["several ducks quack and cocks crow far away", "a man speaks while rain falls onto a hard surface"], "sample_ids": ["sNB8zxXneIM", "wqN6IIHw3po"], "start_seconds": ["20", "30"], "properties": ["several, quack, cocks", "rain, surface, fall"], "captions_pred_video": ["a group of geese in a cage", "in your own words what is happening in this screenshot? blood splattered all over the place"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a man is speaking and water is splashing"], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a door opens and birds chirp", "water flows and trickles"], "sample_ids": ["yeFvk9x0wWI", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "water, flow, trickle"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vJ7JPEFhyLA", "su6FAOcOA8c"], "start_seconds": ["16", "4"], "properties": ["three men, wind, flow", "engine, idle, woman"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a goat bleats and someone makes a calling noise"], "sample_ids": ["w6RTHR6AeAg", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["call, owl, screech", "noise, bleat, call"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a goat bleats and birds chirp"], "question": "which entity is a call", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "plastic is tapped on while someone speaks"], "sample_ids": ["sWZzXuWYY", "wvKpEYswXO0"], "start_seconds": ["420", "150"], "properties": ["male, speech, banging", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is quieter", "label": 1}, {"captions": ["a person is snoring while sleeping", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vJrjSeP17yE", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "multiple, people, yell"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks over sizzling noise", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["yajyRTUQk3U", "ziUT9IFTkjg"], "start_seconds": ["400", "10"], "properties": ["noise, woman, speak", "background, birds, rustling"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wvKpEYswXO0", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["sound, water, running", "three men, wind, flow"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a woman speaking softly?", "label": 0}, {"captions": ["a man speaks over a running engine and blowing wind", "a female speaks softly as paper crinkles"], "sample_ids": ["ylpYOorfH4o", "xvDdE3zNf8Y"], "start_seconds": ["410", "120"], "properties": ["engine, running, wind", "a, female, speaks"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman speaks and crumples paper"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["motors runs briefly and tires screech", "a duck quacks continuously"], "sample_ids": ["yRx9txMcBl0", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "quacks, continuously, duck"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["birds chirp as a bell rings", "water splashes as an animal walks through"], "sample_ids": ["ziUT9IFTkjg", "w1ir-sZ3Im8"], "start_seconds": ["10", "90"], "properties": ["chirp, bell, ring", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wqUmIEzuNz4", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["frog, bird, vocalize", "engine, laugh, loud"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a cat meows and rustles", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["viuTg1M-dqg", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["two men, speak, follow", "engine, idle, woman"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a heavy rain falls endlessly", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["wP8ZKrlx3oA", "zO-LSSY92ZM"], "start_seconds": ["40", "30"], "properties": ["heavy, rain, fall", "liquid, surface, sound"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["a heavy rain is falling on a surface", "steam is hissing and hissing"], "question": "which entity is not a liquid?", "label": 0}, {"captions": ["winds blows roughly as a vehicle races past", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["xjvTpk2Zpr8", "ziUT9IFTkjg"], "start_seconds": ["70", "10"], "properties": ["wind, blows, vehicle", "background, birds, rustling"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "birds are chirping and a chime is ringing "], "question": "which entity is more calm", "label": 1}, {"captions": ["a child speaks in closed space", "people speak as gunfire rings out"], "sample_ids": ["yW6FWLSLkx4", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["child, space, speak", "gunfire, ring, speak"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war zone", "label": 1}, {"captions": ["someone is burping continuously", "people speak as gunfire rings out"], "sample_ids": ["y636gklDioE", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["burps, burps, burps", "gunfire, ring, speak"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a stream of water runs briefly", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["x-PeY8Yb8M4", "w5W5Kqtc8E"], "start_seconds": ["300", "100"], "properties": ["stream, water, run", "wind, blow, vehicle"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "goats bleat and metal clings"], "sample_ids": ["tw76HGONaKg", "tH17JPjDPnc"], "start_seconds": ["570", "260"], "properties": ["A, game, keyboard", "bleat, metal, clings"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "feed of the goats eating hay in the barn"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a cow is mooing and mechanisms are ticking "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "an airplane engine spools and people speak"], "sample_ids": ["s6DESzUTGjY", "wTjoRj1se3U"], "start_seconds": ["16", "390"], "properties": ["wind, laugh, woman", "airplane, engine, spool"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a propeller rotates loudly and intensely"], "sample_ids": ["tK4VlLsNxak", "ugHJF0hfYkg"], "start_seconds": ["120", "10"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "loud, intense, propeller"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a man speaks followed by another man speaking outside"], "sample_ids": ["wEBlkGWVWwE", "viuTg1M-dqg"], "start_seconds": ["260", "30"], "properties": ["a, babble, woman", "two men, speak, follow"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a clock ticktocks"], "sample_ids": ["slZLHwNbbt4", "v-g-j2uTByM"], "start_seconds": ["300", "30"], "properties": ["a, horn, run", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a vehicle engine accelerates and wind blows"], "sample_ids": ["wvKpEYswXO0", "wudZTNBtVqc"], "start_seconds": ["150", "60"], "properties": ["plastic, tap, speak", "accelerates, engine, wind"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a man speaks as a motor runs in the background"], "sample_ids": ["ugHJF0hfYkg", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["engine, running, continuously", "background, motor, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uYT5gxnyMWM", "tiDFTC-5vU"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "male, duck, laugh"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["children speak as a female ask them questions", "some men converse over an engine running"], "sample_ids": ["wEBlkGWVWwE", "sCiy7QS1U"], "start_seconds": ["260", "300"], "properties": ["female, speak, questions", "men, converse, engine"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation between two people?", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "an infant crying as a woman laughs"], "sample_ids": ["vJ7JPEFhyLA", "xhmRY9yhC7c"], "start_seconds": ["16", "20"], "properties": ["three men, wind, flow", "a, laugh, infant"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as horns blow", "someone is typing on a computer keyboard"], "sample_ids": ["tHyNqRyK34A", "v0x1odnXtP0"], "start_seconds": ["24", "210"], "properties": ["a, man, speaks", "keyboard, type, computer"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["a horn honks and then loudly blares", "water splashes as an animal walks through"], "sample_ids": ["wnpJndXuxLc", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["horn, honk, loud", "animal, water, splashes"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a duck quacks continuously"], "sample_ids": ["tPJvjq9QePY", "vh30P49Po6s"], "start_seconds": ["40", "30"], "properties": ["bleats, person, speak", "quacks, continuously, duck"], "captions_pred_video": ["a dog and a sheep in a barn", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a baby cries and a man speaks", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 0}, {"captions": ["a male speaks and another male speaks", "material crumbles into a microphone"], "sample_ids": ["viuTg1M-dqg", "vofpvUo6NAw"], "start_seconds": ["30", "220"], "properties": ["two males, speaking, male", "material, crumbles, microphone"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "person wrapping a toy car in a plastic bag"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "paper is being crumpled and crinkled"], "question": "which entity is not a person", "label": 1}, {"captions": ["a machine beeps continuously", "a duck quacks loudly and continuously"], "sample_ids": ["y682ml90jGw", "vh30P49Po6s"], "start_seconds": ["11", "30"], "properties": ["beeps, machine, continuously", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a beeping sound is being made ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["a man speaks as a car is passing by", "a vehicle accelerates and squeals tires"], "sample_ids": ["sK4u5T8hW78", "yRx9txMcBl0"], "start_seconds": ["30", "40"], "properties": ["a, car, pass", "accelerates, tires, squeals"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is revving its engine and skidding "], "question": "which vehicle is accelerating?", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "an insect buzzes around continuously"], "sample_ids": ["soTOh3zYJfY", "v25l1jef3JY"], "start_seconds": ["40", "0"], "properties": ["vehicle, skid, tires", "buzzes, continuously, insect"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a fly is buzzing around a microphone "], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a car accelerates and wind blows"], "sample_ids": ["ugHJF0hfYkg", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["engine, running, continuously", "accelerates, wind, blows"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "several insects fly while two men talk"], "sample_ids": ["sapQIQUhFc", "s-T9OVOiMLo"], "start_seconds": ["280", "330"], "properties": ["water, trickles, flow", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a clock ticktocks"], "sample_ids": ["xyL9F5VrjkE", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["engine, run, wind", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "people applaud and hoot and chat quietly"], "sample_ids": ["vbr9mHKc8WM", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["noise, loudness, engine", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine is idling", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "animals bleat and moo as a person speaks"], "sample_ids": ["vfYTJq7nU", "tPJvjq9QePY"], "start_seconds": ["130", "40"], "properties": ["ducks, quack, man", "animal, bleat, moo"], "captions_pred_video": [null, "a dog and a sheep in a barn"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a baby cries and a man speaks"], "question": "which animal is speaking", "label": 1}, {"captions": ["water runs into a sink while men speak", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vzceMbklWc", "wz7N8YRy74I"], "start_seconds": ["180", "30"], "properties": ["water, sink, run", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["water is running and a man is speaking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more men", "label": 1}, {"captions": ["someone snores nearby", "pigeons vocalize and birds chirp"], "sample_ids": ["spJCm8tD9Zo", "uiS58TNyUiw"], "start_seconds": ["90", "430"], "properties": ["someone snores, nearby, someone", "vocalize, bird, chirp"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the pigeon in the cage"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "someone is typing on a computer keyboard"], "sample_ids": ["s3cTDAj31g", "v0x1odnXtP0"], "start_seconds": ["80", "210"], "properties": ["man, talk, woman", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zCrAfDfv6-A", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "gun, shoot, water"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person whistles a song", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause harm", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a machine beeps continuously"], "sample_ids": ["ukxt9I7eMMg", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["food, pan, cook", "beeps, machine, continuously"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a beeping sound is being made "], "question": "which entity is not a machine?", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "people speak as gunfire rings out"], "sample_ids": ["yajyRTUQk3U", "wqTCwqVRDlk"], "start_seconds": ["400", "80"], "properties": ["a woman, something, fried", "gunfire, ring, speak"], "captions_pred_video": ["- a woman cooking in the kitchen", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["xjhAnI2q6hM", "su6FAOcOA8c"], "start_seconds": ["6", "4"], "properties": ["engine revs, vehicle, people", "engine, idle, woman"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "a speedboat passes quickly on the water"], "sample_ids": ["vddP56-ogds", "tjmoSi330GM"], "start_seconds": ["30", "23"], "properties": ["liquid, laughs, man", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a motorboat speeds through water with wind noise "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a woman speaks as she rubs two objects together"], "sample_ids": ["zl9Dqx-j7q4", "vzxHnu-SFEw"], "start_seconds": ["6", "80"], "properties": ["engine, laugh, loud", "two objects, woman, speak"], "captions_pred_video": ["footage of a man driving a car in the dark", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a jet engine roars ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "wind blows as people chatter quietly"], "sample_ids": ["voJh2gJxXhA", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["music, frog, croak", "wind, chatter, people"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "footage is blurry and out of focus"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["male speech with light ticking", "a duck quacks continuously"], "sample_ids": ["xO-Q2BlIIPU", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["male, speech, ticking", "quacks, continuously, duck"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["food is frying then a woman speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["ukxt9I7eMMg", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "male, duck, laugh"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and ducks are quacking"], "question": "which entity is about a duck?", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "people applaud and hoot and chat quietly"], "sample_ids": ["sofxkNWaP0s", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["wind, engine, louder", "people, applaud, hoot"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", null], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tjmoSi330GM", "tiDFTC-5vU"], "start_seconds": ["23", "30"], "properties": ["speed, water, boat", "male, duck, laugh"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y8dSeubCNI", "sSMl2vc3ek"], "start_seconds": ["4", "20"], "properties": ["engine revving, people speaking, motorcycle", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine revving and people talking in the background", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["t97k0cejSQE", "uEU-Hg5MTN8"], "start_seconds": ["250", "27"], "properties": ["bird, chirp, insect", "a woman, laughs, animal"], "captions_pred_video": ["a bee on a purple thistle flower", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be in a forest", "label": 0}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a infant makes noise and is excited"], "sample_ids": ["w2JXXIAdUdg", "wIJK3-5y0kA"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "noise, excited, infant"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["an airplane engine spools and people speak", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wTjoRj1se3U", "zFjIWfSD-4"], "start_seconds": ["390", "410"], "properties": ["airplane, engine, spool", "People, motor, brakes"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a motor?", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "children cheer as a man speaks then an audience screams"], "sample_ids": ["xzKKf9bKNUo", "vJvryTwuAV8"], "start_seconds": ["10", "16"], "properties": ["background, noise, snoring", "audience, cheer, man"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "some tunes played by whistling"], "sample_ids": ["yYEVLuqEytU", "u6BnG6YZqJ4"], "start_seconds": ["40", "0"], "properties": ["animal, pig, background", "tune, play, whistling"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["continuous snoring", "a woman and man speak while food is frying"], "sample_ids": ["sLkeqCDJIyw", "zk-xJGQU8-4"], "start_seconds": ["120", "130"], "properties": ["loud, snoring, noise", "food, man, woman"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a motor runs steadily as a man speaks, then the motor revs twice"], "sample_ids": ["s3cTDAj31g", "ylpYOorfH4o"], "start_seconds": ["80", "410"], "properties": ["man, talk, woman", "motor, run, steady"], "captions_pred_video": [null, "for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking and an engine is revving"], "question": "which entity is silent", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a man speaks as a car is passing by"], "sample_ids": ["yajyRTUQk3U", "sK4u5T8hW78"], "start_seconds": ["400", "30"], "properties": ["a woman, something, fried", "a, car, pass"], "captions_pred_video": ["- a woman cooking in the kitchen", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "pigeons vocalize and birds chirp"], "sample_ids": ["vMf1dLD6Sng", "uiS58TNyUiw"], "start_seconds": ["6", "430"], "properties": ["frog, bird, vocalize", "vocalize, bird, chirp"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "of the pigeon in the cage"], "captions_pred_audio": ["a frog croaks loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is a frog", "label": 0}, {"captions": ["a female speaks softly as paper crinkles", "a woman speaks as she rubs two objects together"], "sample_ids": ["xvDdE3zNf8Y", "vzxHnu-SFEw"], "start_seconds": ["120", "80"], "properties": ["a, female, speaks", "two objects, woman, speak"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is about a woman speaking?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a train horn blows as it passes by"], "sample_ids": ["vs65y4qmyBE", "zVacuqSb4LI"], "start_seconds": ["340", "30"], "properties": ["engine, run, man", "horn, blows, train"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a child speaks in closed space"], "sample_ids": ["xfaoyyzw2WU", "yW6FWLSLkx4"], "start_seconds": ["180", "40"], "properties": ["loud, jet engine, roar", "child, space, speak"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a woman is speaking with background noise and breathing sounds "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["siJFXfGWgDk", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["man, woman, vehicle", "stream, water, flow"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a man speaks as a motor runs in the background"], "sample_ids": ["uEU-Hg5MTN8", "xZepNM9qcRA"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "background, motor, run"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a car speeding up in the distance", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["u0TrcHhkPQ", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["distance, car, speed", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["water rushes by", "music plays and a woman speaks on a radio before gunshots are fired"], "sample_ids": ["x-PeY8Yb8M4", "xKB8O8LTs6s"], "start_seconds": ["300", "70"], "properties": ["water, rushes, by", "music, radio, gunshots"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car is driving on a wet road ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a video of a woman speaking on a radio?", "label": 1}, {"captions": ["birds coo incessantly", "an infant crying as a woman laughs"], "sample_ids": ["yZrFNS7GFBQ", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["coo, bird, incessant", "a, laugh, infant"], "captions_pred_video": ["of the bird in the cage", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["an owl hoots in the background ", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "pigeons vocalize and birds chirp"], "sample_ids": ["w9lpbUn0hPc", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["male, wind, rustling", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "birds chirp and objects are moved around"], "sample_ids": ["zVacuqSb4LI", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["blares, fades, train", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a car speeding up in the distance"], "sample_ids": ["yZp6xizR0yU", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["animal, bleat, cry", "distance, car, speed"], "captions_pred_video": ["footage of a woman feeding goats in a barn", null], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a rumble grows louder", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["y4MY9mp8-TA", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["loudness, increase, rumble", "motor noise, horn, siren"], "captions_pred_video": ["a helicopter flying in the sky", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a helicopter flies overhead ", "a truck is honking its horn and a siren is blaring "], "question": "which is louder", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["su6FAOcOA8c", "zl9Dqx-j7q4"], "start_seconds": ["4", "6"], "properties": ["engine, idle, woman", "engine, laugh, loud"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a jet engine roars "], "question": "which entity is a man?", "label": 1}, {"captions": ["a person is whistling a tune", "paper is crumpling consistently"], "sample_ids": ["scYRUkrFLiQ", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["a, tune, whistle", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person whistling a song", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["y682ml90jGw", "yajyRTUQk3U"], "start_seconds": ["11", "400"], "properties": ["beeps, series, electronic", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zofjfKhqLk8", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["background, metal, clings", "wind, blow, vehicle"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["u21-Z5gJCB8", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "stream, water, flow"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "plastic is tapped on while someone speaks"], "sample_ids": ["zl9Dqx-j7q4", "wvKpEYswXO0"], "start_seconds": ["6", "150"], "properties": ["motors rev, laugh, loudly", "plastic, tap, speak"], "captions_pred_video": ["footage of a man driving a car in the dark", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a jet engine roars ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sOa7g-44Dag", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["background, man, spray", "loud, laughter, intermittent"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person is snoring while sleeping", "a child speaks in closed space"], "sample_ids": ["vJrjSeP17yE", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["a person is sleeping, snoring, person", "child, space, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "vehicles pass by on a roadway"], "sample_ids": ["vbZ-0lGPneg", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["a woman, a television program, a bird", "pass, vehicle, roadway"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a car is driving on the road "], "question": "which entity has more vehicles", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a child speaks in closed space"], "sample_ids": ["sWZzXuWYY", "yW6FWLSLkx4"], "start_seconds": ["420", "40"], "properties": ["male, clanks, thumps", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xM4joTqDVp4", "yajyRTUQk3U"], "start_seconds": ["160", "400"], "properties": ["background, chirp, birds", "a woman, something, fried"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["viuTg1M-dqg", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["two men, speak, follow", "loud, jet engine, roar"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "people cheer as a vehicle engine revs"], "sample_ids": ["w6RTHR6AeAg", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["call, owl, screech", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a car accelerates and wind blows"], "sample_ids": ["tGcFnX0GHI", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["ring, talk, woman", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zTLVJCo4WEE", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "stream, water, flow"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "waves crash against a shoreline and people speak"], "sample_ids": ["w8uLijTqtlU", "yFB25fqfU8I"], "start_seconds": ["70", "300"], "properties": ["wind, microphone, noise", "wave, crash, shoreline"], "captions_pred_video": ["footage is blurry and shaky", "footage of a person surfing in the ocean"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "some men converse over an engine running"], "sample_ids": ["tQWGZLItBXk", "sCiy7QS1U"], "start_seconds": ["170", "300"], "properties": ["music, person, ding", "men, converse, engine"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a person speaking?", "label": 0}, {"captions": ["some tunes played by whistling", "wind blows as people chatter quietly"], "sample_ids": ["u6BnG6YZqJ4", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["tune, play, whistling", "wind, chatter, people"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vb1fPSDI4c", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["multiple, people, yell", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a crowd of people are talking and laughing", "a duck quacks and a woman speaks"], "question": "which entity has more people speaking?", "label": 0}, {"captions": ["small dogs growl, bark and yip.", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["sShpyu2l4YQ", "rqu8iB22IY"], "start_seconds": ["0", "5"], "properties": ["growl, bark, yip", "sound, repeats, laugh"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a dog barks and a man speaks while music plays "], "question": "which entity is more likely to be repeated", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "water pouring and bubbling"], "sample_ids": ["vZAw4apG0Es", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["background, tick, repeat", "water, bubbles, pouring"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a clock is ticking and people are talking", "water is running from a faucet"], "question": "which entity is more likely to be a video of a man speaking?", "label": 0}, {"captions": ["birds chirp and pigeons vocalize while walking around", "several ducks quack and cocks crow far away"], "sample_ids": ["wIvYjuR3nrg", "sNB8zxXneIM"], "start_seconds": ["9", "20"], "properties": ["birds, pigeons, vocalize", "several, quack, cocks"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "a group of geese in a cage"], "captions_pred_audio": ["birds are chirping and cooing", "a rooster is crowing and wind is blowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a clock ticktocks"], "sample_ids": ["sLUnaPT5gM8", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a male speaks and another male speaks", "a fly buzzes around loudly as birds chirp"], "sample_ids": ["viuTg1M-dqg", "uJV8NDaHqqk"], "start_seconds": ["30", "100"], "properties": ["two males, speaking, male", "loud, fly, chirp"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a bee hive in a wooden box"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a swarm of bees buzzing around"], "question": "which entity is louder", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a man speaks as a motor runs in the background"], "sample_ids": ["vr8ZXjEBhMQ", "xZepNM9qcRA"], "start_seconds": ["150", "30"], "properties": ["wind, blow, zoom", "background, motor, run"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a man speaking in the background?", "label": 1}, {"captions": ["two frogs croak at each other", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["zg0X6BnhOLQ", "zl9Dqx-j7q4"], "start_seconds": ["410", "6"], "properties": ["two frogs, croak, at each other", "engine, laugh, loud"], "captions_pred_video": ["footage of lightning in the sky at night", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a frog is croaking", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a woman speaks happily and an animal chirps"], "sample_ids": ["xjhAnI2q6hM", "uWAAAL4CIoc"], "start_seconds": ["6", "0"], "properties": ["wind, blow, loudly", "a woman, chirps, animal"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["children speak and play together", "a power tool runs and touches a surface"], "sample_ids": ["yVVP8XvWJTo", "zfvPRf3chY"], "start_seconds": ["260", "290"], "properties": ["children, speak, play", "power tool, run, touch"], "captions_pred_video": ["footage of a playground at a school or daycare center", null], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a man is speaking while a power tool is being used "], "question": "which is not a person", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vZAw4apG0Es", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["background, tick, repeat", "a, scream, girl"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["leaves rustle while man speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zOZleIRqZm4", "uEU-Hg5MTN8"], "start_seconds": ["80", "27"], "properties": ["leaves, rustle, speak", "a woman, laughs, animal"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a muffled toilet flushes and the water drains", "an airplane engine spools and people speak"], "sample_ids": ["sfAvvZwdLCY", "wTjoRj1se3U"], "start_seconds": ["20", "390"], "properties": ["flushes, drains, water", "airplane, engine, spool"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a toilet is flushed", "a jet engine is running and people are talking"], "question": "which entity is a machine", "label": 1}, {"captions": ["several insects fly while two men talk", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["s-T9OVOiMLo", "zFjIWfSD-4"], "start_seconds": ["330", "410"], "properties": ["several, fly, men", "People, motor, brakes"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", null], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "the rumbling of a bus followed by a soft male voice"], "sample_ids": ["u7C-AEBQM", "vK93VuO0yNc"], "start_seconds": ["30", "30"], "properties": ["ticks, rhythmic, quiet", "male voice, bus, rumble"], "captions_pred_video": [null, "footage is blurry due to the movement of the bus as it drives through the city at night"], "captions_pred_audio": ["a ticktock of a clock", "a car drives by with wind noise in the background "], "question": "which entity is quieter", "label": 0}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a toilet flushes and water drains"], "sample_ids": ["weDbePuc-Xc", "sfAvvZwdLCY"], "start_seconds": ["40", "20"], "properties": ["music, slaps, human", "water drains, flushes, water"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a female speaks softly as paper crinkles"], "sample_ids": ["zY3icUyMdh8", "xvDdE3zNf8Y"], "start_seconds": ["20", "120"], "properties": ["dog, bark, engine", "a, female, speaks"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman speaks and crumples paper"], "question": "which entity is speaking softly", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "people applaud and hoot and chat quietly"], "sample_ids": ["w-4gHptFNuU", "wwyfGO2J4"], "start_seconds": ["21", "90"], "properties": ["engine revs, accelerates, bump", "people, applaud, hoot"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a video of a performance", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yVumC9TGknc", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["humming, clock, birds", "airplane, boy, fly"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a series of beeps and chirps", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a man speaks as a car is passing by"], "sample_ids": ["sU53zg9Jp7s", "sK4u5T8hW78"], "start_seconds": ["380", "30"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a, car, pass"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vBslzh7saPw", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["engine, roar, louder", "multiple, people, yell"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "two women and a man talk while a kid cries"], "sample_ids": ["ukg5L09Wpvo", "wyllXV6PjKo"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "a kid, talk, cry"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman speaks and a baby cries"], "question": "which entity has a kid?", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a horn rings out as a machine runs by"], "sample_ids": ["shmR4OZtzqA", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["man, engine, idle", "a, horn, run"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man speaks while a motor runs", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sK4u5T8hW78", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["a, car, pass", "men, talk, cars"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["continuous snoring", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sLkeqCDJIyw", "uYT5gxnyMWM"], "start_seconds": ["120", "50"], "properties": ["loud, snoring, noise", "female, spraying, scream"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is louder", "label": 1}, {"captions": ["a toilet flushes and water drains", "a clock ticktocks in wind"], "sample_ids": ["sfAvvZwdLCY", "yVumC9TGknc"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "ticktocks, clock, wind"], "captions_pred_video": ["footage of the toilet in the bathroom", "game title screen of the game shadow of the colossus on sony playstation 2"], "captions_pred_audio": ["a toilet is flushed", "a series of beeps and chirps"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["a muffled toilet flushes and the water drains", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sfAvvZwdLCY", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "multiple, people, yell"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wRBHTgrbiwg", "vfYTJq7nU"], "start_seconds": ["50", "130"], "properties": ["birds, chirp, cooing", "rustling, ducks, quack"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a duck quacks and a woman speaks"], "question": "which entity is about birds?", "label": 0}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["ziUT9IFTkjg", "wqZ135Ssz0"], "start_seconds": ["10", "60"], "properties": ["background, birds, rustling", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "water rushes by"], "sample_ids": ["xO-Q2BlIIPU", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["two men, exclamation, speak", "water, rushes, by"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is driving on a wet road "], "question": "which entity is more calm", "label": 0}, {"captions": ["a man speaks while video game music plays with some clicking", "a telephone rings followed by a woman talking"], "sample_ids": ["tw76HGONaKg", "tGcFnX0GHI"], "start_seconds": ["570", "0"], "properties": ["music, click, man", "ring, talk, woman"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "someone whistles a tune"], "sample_ids": ["yI-KvObbDoY", "sIXTftIuUgw"], "start_seconds": ["260", "90"], "properties": ["sound, smack, wind", "someone, tune, whistle"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", null], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a clock ticktocks"], "sample_ids": ["zALy31PjDl0", "v-g-j2uTByM"], "start_seconds": ["21", "30"], "properties": ["a man, a vehicle, a horn", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["white noise and birds chirping", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wRBHTgrbiwg", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["noise, white, chirping", "a woman, something, fried"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["an insect buzzes around continuously", "wind loudly blowing while people speak in the background followed by a horn blowing"], "sample_ids": ["v25l1jef3JY", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["buzzes, continuously, insect", "wind, blow, loudly"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a truck is revving its engine and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["food is frying and sizzles", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zNRChLjqcU", "vJ7JPEFhyLA"], "start_seconds": ["220", "16"], "properties": ["food is frying, sizzles, food", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person?", "label": 0}, {"captions": ["dogs bark as an engine runs and a person whistles", "an airplane engine spools and people speak"], "sample_ids": ["zY3icUyMdh8", "wTjoRj1se3U"], "start_seconds": ["20", "390"], "properties": ["dog, bark, engine", "airplane, engine, spool"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a jet engine is running and people are talking"], "question": "which entity is a machine", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "wind blows as people chatter quietly"], "sample_ids": ["tDVADusiIoc", "xBxDz0CFVn0"], "start_seconds": ["60", "30"], "properties": ["man, radio, blows", "wind, chatter, people"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["sapQIQUhFc", "w34HjHr6gAY"], "start_seconds": ["280", "30"], "properties": ["liquid, flow, distance", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a infant makes noise and is excited"], "sample_ids": ["smDKStoHBJo", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["a, talk, baby, cry", "noise, excited, infant"], "captions_pred_video": ["a man holding a crying baby in his arms", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a baby cries and a woman speaks"], "question": "which is a more active scene", "label": 1}, {"captions": ["a man speaking with light rustling", "dishes cling together then a man begins to speak"], "sample_ids": ["zOZleIRqZm4", "sQGXqGcwOTc"], "start_seconds": ["80", "3"], "properties": ["light, rustling, man", "cling, speak, dishes"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["birds chirp and a pop occurs before a man speaks", "water flows as men speak and yell"], "sample_ids": ["zuua6-5goWw", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["sound, pop, bird", "water, flow, men"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["water quietly rushes by while birds chirp in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["sYITalLZjj4", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["water, rushes, background, birds", "wind, blows, vehicle"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["wind blows and birds chirp", "a jet engine roars and wind blows "], "question": "which entity is more calm", "label": 0}, {"captions": ["ticking continues without interruption", "a horn honks followed by a loud continuous buzzing while men speak"], "sample_ids": ["v-g-j2uTByM", "wsHBIgzs9Fs"], "start_seconds": ["30", "50"], "properties": ["ticking, continuous, clock", "horn, continuous, buzzing"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "shows a motorcycle riding down a country road with a motorcycle in the foreground"], "captions_pred_audio": ["a clock is ticking loudly", "a car accelerates and revs its engine while a man speaks "], "question": "which entity is continuous", "label": 1}, {"captions": ["several insects fly while two men talk", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["s-T9OVOiMLo", "uYT5gxnyMWM"], "start_seconds": ["330", "50"], "properties": ["several, fly, men", "a, scream, girl"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has more people", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xjhAnI2q6hM", "tDVADusiIoc"], "start_seconds": ["6", "60"], "properties": ["engine revs, vehicle, people", "water, radio, man"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a vehicle?", "label": 0}, {"captions": ["an animal growls followed by birds chirping", "people speak as gunfire rings out"], "sample_ids": ["y2ZBGpgbhHM", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["animal, growl, bird", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "vehicles pass by on a roadway"], "sample_ids": ["vSeGhaZt-aI", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, speak", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an aircraft engine runs", "water is sprayed across a hard surface"], "sample_ids": ["yLCORCnd35Q", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["engine, aircraft, runs", "water, spray, surface"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a telephone rings followed by a woman talking"], "sample_ids": ["uPDn2BFTHk", "tGcFnX0GHI"], "start_seconds": ["140", "0"], "properties": ["lady, laugh, baby", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation between a woman and a baby?", "label": 0}, {"captions": ["a clock ticktocks", "water is sprayed across a hard surface"], "sample_ids": ["v-g-j2uTByM", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["ticktocks, clock, ticktocks", "water, spray, surface"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a clock is ticking loudly", "spraying followed by silence"], "question": "which entity is not a clock?", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "people cheer as a vehicle engine revs"], "sample_ids": ["w34HjHr6gAY", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["beeps, squawk, child speaking", "engine revs, vehicle, people"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wqADXCzngMw", "xKB8O8LTs6s"], "start_seconds": ["340", "70"], "properties": ["audio, humming, revving", "music, gunfire, explosion"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a toilet flushes and a female speaks"], "sample_ids": ["xjhAnI2q6hM", "yaln9y8I7ms"], "start_seconds": ["6", "230"], "properties": ["engine revs, vehicle, people", "female, flushes, toilet"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wjsXBsc7M40", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "loud, multiple, distance"], "captions_pred_video": ["footage of the baby playing with a toothbrush", null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["yZp6xizR0yU", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["animal, bleat, cry", "applause, audience, yells"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "wind blows as people chatter quietly"], "sample_ids": ["xV7Mg1QucSc", "xBxDz0CFVn0"], "start_seconds": ["14", "30"], "properties": ["alarm, ticktocks, laughs", "wind, chatter, people"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage is blurry and out of focus"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone whistles a song", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["sIXTftIuUgw", "uWPRNLnpy7Y"], "start_seconds": ["90", "10"], "properties": ["someone, song, whistle", "accelerate, laugh, vehicle"], "captions_pred_video": [null, "is taken from a car driving down the street"], "captions_pred_audio": ["a person whistling a song", "a car accelerates and revs its engine "], "question": "which entity is more likely to be a song", "label": 0}, {"captions": ["a machine beeps continuously", "a woman speaks and then a man speaks"], "sample_ids": ["y682ml90jGw", "vbpKkWvfOu4"], "start_seconds": ["11", "560"], "properties": ["beeps, machine, continuously", "a, man, speaks"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and a man is speaking"], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vXlk0lIQBFo", "tDVADusiIoc"], "start_seconds": ["470", "60"], "properties": ["wind, talk, vocalize", "water, radio, man"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "multiple insects buzz over rustling wind"], "sample_ids": ["vzxHnu-SFEw", "tMJne1a4AFI"], "start_seconds": ["80", "0"], "properties": ["two objects, woman, speak", "wind, buzz, rustling"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a swarm of bees on the ground"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a swarm of bees buzzing around"], "question": "which entity is moving", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wjsXBsc7M40", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "music, gunfire, explosion"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a baby laughs and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a person snores loudly multiple times at a close distance"], "sample_ids": ["t69a8aRKhmc", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["a, b, c", "loud, multiple, distance"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vveS8HT7Uog", "uEU-Hg5MTN8"], "start_seconds": ["100", "27"], "properties": ["a man, objects, speak", "animal, grunts, snorts"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a frog croaks as other frogs croak in the background"], "sample_ids": ["ugHJF0hfYkg", "yswmmRZFItk"], "start_seconds": ["10", "0"], "properties": ["loud, propeller, move", "background, frog, croak"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a close up of a frog in the water"], "captions_pred_audio": ["a helicopter is flying overhead ", "a frog is croaking"], "question": "which is quieter", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a woman speaks happily and an animal chirps"], "sample_ids": ["zkKdxzNC97Y", "uWAAAL4CIoc"], "start_seconds": ["27", "0"], "properties": ["loud, bang, noise", "a woman, chirps, animal"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "material crumbles into a microphone"], "sample_ids": ["vYkA3cfXp5Q", "vofpvUo6NAw"], "start_seconds": ["30", "220"], "properties": ["speed, idle, accelerate", "material, crumbles, microphone"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "person wrapping a toy car in a plastic bag"], "captions_pred_audio": ["an engine is idling", "paper is being crumpled and crinkled"], "question": "which entity is more likely to be a video of a car engine?", "label": 0}, {"captions": ["a man speaks as he moves silverware in a bowl", "an infant crying frantically"], "sample_ids": ["x6ijhqRY38s", "zwOBqeFTgiU"], "start_seconds": ["250", "30"], "properties": ["bowl, silverware, man", "cry, infant, frantically"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["v0x1odnXtP0", "yajyRTUQk3U"], "start_seconds": ["210", "400"], "properties": ["keyboard, type, computer", "a woman, something, fried"], "captions_pred_video": ["how to make money on youtube in spanish", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration of cooking?", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "children cheer as a man speaks then an audience screams"], "sample_ids": ["wnpJndXuxLc", "vJvryTwuAV8"], "start_seconds": ["50", "16"], "properties": ["beeps, loud, whistle", "audience, cheer, man"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is a person speaking to an audience?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zgUgkpk78xU", "uEU-Hg5MTN8"], "start_seconds": ["70", "27"], "properties": ["horn, bells, ring", "a woman, laughs, animal"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "an infant crying as a woman laughs"], "sample_ids": ["vbpKkWvfOu4", "xhmRY9yhC7c"], "start_seconds": ["560", "20"], "properties": ["a, man, speaks", "a, laugh, infant"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a baby cries and a woman speaks"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["material crumbles into a microphone", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vofpvUo6NAw", "zl9Dqx-j7q4"], "start_seconds": ["220", "6"], "properties": ["material, crumbles, microphone", "engine, laugh, loud"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of a man driving a car in the dark"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a vehicle engine accelerating then running on idle"], "sample_ids": ["w0xsN8X18Y", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["rain, thunder, surface", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "an infant crying frantically"], "sample_ids": ["uRExseg-0XI", "zwOBqeFTgiU"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "cry, infant, frantically"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "water flows and trickles"], "sample_ids": ["t8CV69hcvF0", "tB7hWb9gTuQ"], "start_seconds": ["210", "30"], "properties": ["person, sneeze, follow", "water, flow, trickle"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman sneezes and speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["someone is snoring while sleeping", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["ujMt0-D-x2k", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["snore, sleep, someone", "engine, idle, woman"], "captions_pred_video": ["of the dog playing with a toy on the floor", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a subway train is moving "], "question": "which entity is a person", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sLUnaPT5gM8", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "stream, water, flow"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "people speak as gunfire rings out"], "sample_ids": ["vZAw4apG0Es", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["background, tick, repeat", "gunfire, ring, speak"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a child speaks", "a child speaks"], "sample_ids": ["yW6FWLSLkx4", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["a, child, speaks", "a, child, speaks"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which child speaks", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a toilet flushes and water drains"], "sample_ids": ["ylpYOorfH4o", "sfAvvZwdLCY"], "start_seconds": ["410", "20"], "properties": ["engine, run, loud", "water drains, flushes, water"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a car accelerates and wind blows"], "sample_ids": ["tPJvjq9QePY", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["bleats, person, speak", "accelerates, wind, blows"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a man speaks as a machine runs"], "sample_ids": ["w0xsN8X18Y", "vD6lYD1l0BY"], "start_seconds": ["30", "330"], "properties": ["music, surface, rain", "a, machine, run"], "captions_pred_video": [null, "game controller being held in the hands of the person"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking and dishes are being washed "], "question": "which entity has a machine running?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "small dogs yip and bark sharply"], "sample_ids": ["tiDFTC-5vU", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["male, duck, laugh", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["waves crash against a shoreline and people speak", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yFB25fqfU8I", "su6FAOcOA8c"], "start_seconds": ["300", "4"], "properties": ["wave, crash, shoreline", "engine, idle, woman"], "captions_pred_video": ["footage of a person surfing in the ocean", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sapQIQUhFc", "uYT5gxnyMWM"], "start_seconds": ["280", "50"], "properties": ["water, stream, trickles", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "a clock ticktocks"], "sample_ids": ["uYT5gxnyMWM", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "birds chirp and objects are moved around"], "sample_ids": ["v5P-ThUCINM", "yPUYU6t3rwo"], "start_seconds": ["400", "370"], "properties": ["background, chirp, bird", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and birds are chirping", "insects buzz and a man speaks"], "question": "which entity has birds chirping in the background?", "label": 0}, {"captions": ["a goat bleats as a person speaks", "a stream of water runs briefly"], "sample_ids": ["tPJvjq9QePY", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["bleats, person, speak", "stream, water, run"], "captions_pred_video": ["a dog and a sheep in a barn", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby cries and a man speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sU53zg9Jp7s", "tDVADusiIoc"], "start_seconds": ["380", "60"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "water, radio, man"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman?", "label": 0}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yYEVLuqEytU", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["grunt, slurp, background", "rustling, ducks, quack"], "captions_pred_video": ["a baby goat is being petted by a person's hand", null], "captions_pred_audio": ["several sheep bleat and a man speaks", "a duck quacks and a woman speaks"], "question": "which entity is about ducks?", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a woman speaks happily and an animal chirps"], "sample_ids": ["y2bVZ7rz-5M", "uWAAAL4CIoc"], "start_seconds": ["280", "0"], "properties": ["motor noise, horn, siren", "a woman, chirps, animal"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["electronic beeps occur in a short series", "people applaud and hoot and chat quietly"], "sample_ids": ["y682ml90jGw", "wwyfGO2J4"], "start_seconds": ["11", "90"], "properties": ["beeps, series, electronic", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a person is snoring while sleeping"], "sample_ids": ["w2M4i1mklOA", "vJrjSeP17yE"], "start_seconds": ["30", "40"], "properties": ["alarm, gears, turn", "a person is sleeping, snoring, person"], "captions_pred_video": ["footage of an antique clock", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["x9JovgqUcs", "uYT5gxnyMWM"], "start_seconds": ["500", "50"], "properties": ["a, man, speaks, keyboard", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and typing on a keyboard?", "label": 0}, {"captions": ["a train horn blares as a train passes, then fades", "a infant makes noise and is excited"], "sample_ids": ["zVacuqSb4LI", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["blares, fades, train", "noise, excited, infant"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak softly as food sizzles", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yhQ2Lg-7qDY", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["food, sizzle, speak", "three men, wind, flow"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a liquid flowing?", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wqN6IIHw3po", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["rain, surface, fall", "a woman, something, fried"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and water is splashing", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a toilet flushes and a female speaks"], "sample_ids": ["slZLHwNbbt4", "yaln9y8I7ms"], "start_seconds": ["300", "230"], "properties": ["a, horn, run", "female, flushes, toilet"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "water splashes as an animal walks through"], "sample_ids": ["viuTg1M-dqg", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["two men, speak, follow", "animal, water, splashes"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["some people speak", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vbZ-0lGPneg", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "loud, multiple, distance"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wnpJndXuxLc", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["beeps, loud, whistle", "a woman, a television program, a bird"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a series of light horn beeps followed by a loud steam whistle?", "label": 0}, {"captions": ["a woman and man are speaking", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vbpKkWvfOu4", "xKB8O8LTs6s"], "start_seconds": ["560", "70"], "properties": ["two people, speaking, woman, man", "music, gunfire, explosion"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a railroad crossing bell rings as a train horn blows"], "sample_ids": ["wudZTNBtVqc", "tZGN5a7ybxo"], "start_seconds": ["60", "60"], "properties": ["accelerates, engine, wind", "ring, train, horn"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "is taken from a moving vehicle on the train tracks"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a train is moving and blowing its horn "], "question": "which entity is a warning device", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a woman speaks and dog vocalizes"], "sample_ids": ["w8uLijTqtlU", "uWAAAL4CIoc"], "start_seconds": ["70", "0"], "properties": ["wind, microphone, noise", "a, dog, vocalize"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a person is whistling a tune"], "sample_ids": ["vfYTJq7nU", "scYRUkrFLiQ"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "a, tune, whistle"], "captions_pred_video": [null, "of the man wearing a bow tie and a suit jacket in front of a red door"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "several insects fly while two men talk"], "sample_ids": ["v5P-ThUCINM", "s-T9OVOiMLo"], "start_seconds": ["400", "330"], "properties": ["background, chirp, bird", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "people speak as gunfire rings out"], "sample_ids": ["sZPuqDgX2V0", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["engine, accelerate, intercom", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vfYTJq7nU", "xKB8O8LTs6s"], "start_seconds": ["130", "70"], "properties": ["ducks, quack, man", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a duck quacks and a woman speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a door opens and birds chirp", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yeFvk9x0wWI", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["door, open, birds", "engine, laugh, loud"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a jet engine roars "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a toilet flushes and water drains", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sfAvvZwdLCY", "wDVMhEdTiVw"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "gun, shoot, water"], "captions_pred_video": ["footage of the toilet in the bathroom", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a toilet is flushed", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "wind blows as people chatter quietly"], "sample_ids": ["xvDdE3zNf8Y", "xBxDz0CFVn0"], "start_seconds": ["120", "30"], "properties": ["A, crumple, paper", "wind, chatter, people"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["uYT5gxnyMWM", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["a, scream, girl", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["sxYkFKFIZD0", "y2bVZ7rz-5M"], "start_seconds": ["20", "280"], "properties": ["screech, man, door", "motor noise, horn, siren"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is a warning", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a vehicle accelerates and squeals tires"], "sample_ids": ["xhmRY9yhC7c", "yRx9txMcBl0"], "start_seconds": ["20", "40"], "properties": ["a, laugh, infant", "accelerates, tires, squeals"], "captions_pred_video": ["of a baby crying in a baby bouncer", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a baby cries and a woman speaks", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "pigeons vocalize and birds chirp"], "sample_ids": ["ujMt0-D-x2k", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["snoring, rhythmical, nearby", "vocalize, bird, chirp"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of the pigeon in the cage"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "an engine runs loudly"], "sample_ids": ["yZrFNS7GFBQ", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["pigeon, buzzes, insect", "loud, engine, run"], "captions_pred_video": ["of the bird in the cage", "footage is blurry because it's raining outside"], "captions_pred_audio": ["an owl hoots in the background ", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["a large crowd cheers and applauds", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["rqfQRErjfk8", "s4Uz1Ffgo04"], "start_seconds": ["170", "100"], "properties": ["crowd, cheers, applauds", "roars, background, people speaking"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["a helicopter engine runs", "a person snores loudly multiple times at a close distance"], "sample_ids": ["t5ZbXbniOWk", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["engine, helicopter, run", "loud, multiple, distance"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["zFjIWfSD-4", "y8WEcpOlT3I"], "start_seconds": ["410", "40"], "properties": ["People, motor, brakes", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "a machine beeps continuously"], "sample_ids": ["uPDn2BFTHk", "y682ml90jGw"], "start_seconds": ["140", "11"], "properties": ["woman, laughs, speaks", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "vehicles pass by on a roadway"], "sample_ids": ["t25U-v4k4ts", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["a, chirps, bird", "pass, vehicle, roadway"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["zY3icUyMdh8", "uOpoD0gGXcs"], "start_seconds": ["20", "120"], "properties": ["dog, bark, engine", "chirps, woman, bird"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a herd of cows grazing in the field"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "birds are chirping and a man is speaking"], "question": "which entity is a response to a human action", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "water splashes and a door squeaks"], "sample_ids": ["s4Uz1Ffgo04", "sdXV-ylviw"], "start_seconds": ["100", "190"], "properties": ["water, rushes, motorcycle", "sound, splash, door"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a dog barks and taps with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["xERFUeZONz8", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["ring, approach, traffic", "animal, grunts, chirps"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["an emergency vehicle siren blares", "birds are chirping and a rooster is crowing "], "question": "which entity is more animal like", "label": 1}, {"captions": ["an insect buzzes around continuously", "a motorcycle idles loudly as wind blows"], "sample_ids": ["v25l1jef3JY", "v7jJS8aAyA"], "start_seconds": ["0", "10"], "properties": ["buzzes, continuously, insect", "wind, blows, loudly"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a motorcycle engine is idling and vibrating"], "question": "which entity is louder", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a man speaks as a car is passing by"], "sample_ids": ["se87d6yxEOA", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "a, car, pass"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a man is speaking with background noise and breathing sounds "], "question": "which object is moving", "label": 0}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "music plays, a person speaks, followed by whooshes and a ding"], "sample_ids": ["uYT5gxnyMWM", "tQWGZLItBXk"], "start_seconds": ["50", "170"], "properties": ["female, spraying, scream", "music, person, ding"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "worms revolution screenshots"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a person speaking?", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "someone is typing on a computer keyboard"], "sample_ids": ["uPDn2BFTHk", "v0x1odnXtP0"], "start_seconds": ["140", "210"], "properties": ["lady, laugh, baby", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y2ZBGpgbhHM", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["dog, chirp, breathe", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tK4VlLsNxak", "uYT5gxnyMWM"], "start_seconds": ["120", "50"], "properties": ["a, dial, telephone", "a, scream, girl"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "wind blows as people chatter quietly"], "sample_ids": ["tPJvjq9QePY", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["animal, bleat, moo", "wind, chatter, people"], "captions_pred_video": ["a dog and a sheep in a barn", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a goat bleats as a person speaks", "wind blows as people chatter quietly"], "sample_ids": ["tPJvjq9QePY", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["bleats, person, speak", "wind, chatter, people"], "captions_pred_video": ["a dog and a sheep in a barn", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uqFtmnhuqA8", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["a, b, c", "a woman, something, fried"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "- a woman cooking in the kitchen"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a horse runs while two women talk", "a man speaks as horns blow"], "sample_ids": ["sdvI1mHAsc", "tHyNqRyK34A"], "start_seconds": ["20", "24"], "properties": ["two women, horse, run", "a, man, speaks"], "captions_pred_video": [null, "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking and a car is honking with background noise "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "paper is crumpling consistently"], "sample_ids": ["x9JovgqUcs", "v5cSxLaHADY"], "start_seconds": ["500", "0"], "properties": ["a, man, speaks, keyboard", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man speaks and types on a keyboard", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["some men converse over an engine running", "wind blows as people chatter quietly"], "sample_ids": ["sCiy7QS1U", "xBxDz0CFVn0"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wIJK3-5y0kA", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["a, cry, baby", "loud, jet engine, roar"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a baby cries and a woman speaks", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["u7C-AEBQM", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["ticks, rhythmic, quiet", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vbZ-0lGPneg", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["a woman, a television program, a bird", "People, motor, brakes"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "an airplane engine runs"], "sample_ids": ["vZAw4apG0Es", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["background, tick, repeat", "engine, airplane, runs"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a clock is ticking and people are talking", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "water rushes by"], "sample_ids": ["u--KhUW8l1Y", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["horn, siren, life", "water, rushes, by"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains", "dishes cling together then a man begins to speak"], "sample_ids": ["sfAvvZwdLCY", "sQGXqGcwOTc"], "start_seconds": ["20", "3"], "properties": ["water drains, flushes, water", "cling, speak, dishes"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a toilet is flushed", "mechanisms are operating and water is splashing "], "question": "which entity is about water", "label": 0}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["voJh2gJxXhA", "tiDFTC-5vU"], "start_seconds": ["50", "30"], "properties": ["music, frog, croak", "male, duck, laugh"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", null], "captions_pred_audio": ["music is playing and crickets are chirping ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["birds coo incessantly", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yZrFNS7GFBQ", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["coo, bird, incessant", "two men, woman, birds"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a video of birds?", "label": 0}, {"captions": ["a man speaks as a machine runs", "a machine beeps continuously"], "sample_ids": ["vD6lYD1l0BY", "y682ml90jGw"], "start_seconds": ["330", "11"], "properties": ["a, machine, run", "beeps, machine, continuously"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a beeping sound is being made "], "question": "which machine is beeping continuously?", "label": 0}, {"captions": ["a person is snoring while sleeping", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vJrjSeP17yE", "y8WEcpOlT3I"], "start_seconds": ["40", "40"], "properties": ["a person is sleeping, snoring, person", "harsh, wind, blows"], "captions_pred_video": ["a black background with a small plane flying in the sky", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking with wind noise in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["several insects fly while two men talk", "two men speak as a buffeting wind blows"], "sample_ids": ["s-T9OVOiMLo", "y8WEcpOlT3I"], "start_seconds": ["330", "40"], "properties": ["several, fly, men", "wind, speak, buffeting"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is about a buffeting wind?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "water flows and trickles"], "sample_ids": ["t97k0cejSQE", "tB7hWb9gTuQ"], "start_seconds": ["250", "30"], "properties": ["bird, chirp, insect", "water, flow, trickle"], "captions_pred_video": ["a bee on a purple thistle flower", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a mechanical buzzing getting louder"], "sample_ids": ["u--KhUW8l1Y", "sEprKHm8Sj8"], "start_seconds": ["0", "90"], "properties": ["horn, siren, life", "noise, loud, buzzing"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vZAw4apG0Es", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["background, clock, ticktocks", "wind, blow, vehicle"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a clock ticking in the background?", "label": 0}, {"captions": ["a heavy rain falls endlessly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wP8ZKrlx3oA", "su6FAOcOA8c"], "start_seconds": ["40", "4"], "properties": ["heavy, rain, fall", "engine, idle, woman"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "small dogs growl, bark and yip."], "sample_ids": ["yRx9txMcBl0", "sShpyu2l4YQ"], "start_seconds": ["40", "0"], "properties": ["accelerates, tires, squeals", "growl, bark, yip"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "the puppies are playing with a toy"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a dog is barking and growling"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["an airplane engine runs", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yVPZ2MNWpms", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["engine, airplane, runs", "music, gunfire, explosion"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car is driving by on the road ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a movie?", "label": 1}, {"captions": ["a power tool runs and touches a surface", "a child speaks in closed space"], "sample_ids": ["zfvPRf3chY", "yW6FWLSLkx4"], "start_seconds": ["290", "40"], "properties": ["power tool, run, touch", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not a power tool", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["vs65y4qmyBE", "vzxHnu-SFEw"], "start_seconds": ["340", "80"], "properties": ["engine, run, man", "two objects, woman, speak"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["popping and crackling repeats as men yell and laugh", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["rqu8iB22IY", "w34HjHr6gAY"], "start_seconds": ["5", "30"], "properties": ["sound, repeats, laugh", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "paper is crumpling consistently"], "sample_ids": ["uYT5gxnyMWM", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["a, scream, girl", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "paper is crumpled and crinkled"], "question": "which entity is a video of a girl speaking followed by a scream and more girls talking?", "label": 0}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "water splashes as an animal walks through"], "sample_ids": ["zY3icUyMdh8", "w1ir-sZ3Im8"], "start_seconds": ["20", "90"], "properties": ["dog, bark, engine", "animal, water, splashes"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "water splashes and gurgles as people speak"], "question": "which entity is a video of an animal walking through water?", "label": 1}, {"captions": ["a person is whistling a tune", "an insect buzzes around continuously"], "sample_ids": ["scYRUkrFLiQ", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["a, tune, whistle", "buzzes, continuously, insect"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person whistling a song", "a fly is buzzing around a microphone "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a baby cries and a woman moans", "an infant crying frantically"], "sample_ids": ["smDKStoHBJo", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["a, cry, woman", "cry, infant, frantically"], "captions_pred_video": ["a man holding a crying baby in his arms", "of the baby crying in the car seat"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a baby cries loudly"], "question": "which entity is crying frantically", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a child and woman laughs and the woman speaks"], "sample_ids": ["sU53zg9Jp7s", "uPDn2BFTHk"], "start_seconds": ["380", "140"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "woman, laughs, speaks"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a baby laughs and a woman speaks"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a man speaks as a machine runs"], "sample_ids": ["sWZzXuWYY", "vD6lYD1l0BY"], "start_seconds": ["420", "330"], "properties": ["male, clanks, thumps", "a, machine, run"], "captions_pred_video": [null, "game controller being held in the hands of the person"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking and dishes are being washed "], "question": "which machine is running", "label": 1}, {"captions": ["a woman and man speak while food is frying", "people applaud and hoot and chat quietly"], "sample_ids": ["zk-xJGQU8-4", "wwyfGO2J4"], "start_seconds": ["130", "90"], "properties": ["food, man, woman", "people, applaud, hoot"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", null], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wvKpEYswXO0", "vJ7JPEFhyLA"], "start_seconds": ["150", "16"], "properties": ["water, tap, run", "three men, wind, flow"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 0}, {"captions": ["an engine runs and wind blows", "water pouring and bubbling"], "sample_ids": ["vs65y4qmyBE", "uyRfq-jKPpo"], "start_seconds": ["340", "50"], "properties": ["engine, run, wind", "water, bubbles, pouring"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["ugHJF0hfYkg", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["engine, running, continuously", "engine, revs, vehicle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which entity has a running engine", "label": 0}, {"captions": ["a toilet door squeaks as it is opened", "water splashes and a door squeaks"], "sample_ids": ["sdXV-ylviw", "sdXV-ylviw"], "start_seconds": ["190", "190"], "properties": ["door, toilet, squeaks", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dog barks and taps with background noise ", "a dog barks and taps with background noise "], "question": "which door is squeaking", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["v-wcQf4BDY0", "uYT5gxnyMWM"], "start_seconds": ["120", "50"], "properties": ["bark, yip, sharply", "a, scream, girl"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog barks and growls", "a woman is speaking and a baby is crying"], "question": "which entity is a human", "label": 1}, {"captions": ["a person is snoring while sleeping", "someone is snoring while sleeping"], "sample_ids": ["vJrjSeP17yE", "ujMt0-D-x2k"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "snore, sleep, someone"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the dog playing with a toy on the floor"], "captions_pred_audio": ["a person snoring loudly", "a person is snoring loudly"], "question": "which entity is snoring while sleeping", "label": 0}, {"captions": ["an audience gives applause as a man yells and a group sings", "waves crash against a shoreline and people speak"], "sample_ids": ["tdWhHV3X25Q", "yFB25fqfU8I"], "start_seconds": ["60", "300"], "properties": ["applause, audience, yells", "wave, crash, shoreline"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["un9VQlzgZM", "zFjIWfSD-4"], "start_seconds": ["5", "410"], "properties": ["females, talk, laugh", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a toilet flushes and water drains"], "sample_ids": ["v0x1odnXtP0", "sfAvvZwdLCY"], "start_seconds": ["210", "20"], "properties": ["keyboard, type, computer", "water drains, flushes, water"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a person is typing on a keyboard", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["water flows followed by women screaming", "a man speaks as a motor runs in the background"], "sample_ids": ["w5W5Kqtc8E", "xZepNM9qcRA"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["people clap and speak in the distance", "an insect buzzes around continuously"], "sample_ids": ["wwyfGO2J4", "v25l1jef3JY"], "start_seconds": ["90", "0"], "properties": ["clap, distance, speak", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "water splashes as an animal walks through"], "sample_ids": ["uKCSGgof8gI", "w1ir-sZ3Im8"], "start_seconds": ["12", "90"], "properties": ["chirps, distance, signal", "animal, water, splashes"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a person is whistling a tune", "people cheer as a vehicle engine revs"], "sample_ids": ["scYRUkrFLiQ", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["a, tune, whistle", "engine revs, vehicle, people"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person whistling a song", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["children cry and people talk", "a man speaks as a car is passing by"], "sample_ids": ["xLwHe825Zs", "sK4u5T8hW78"], "start_seconds": ["18", "30"], "properties": ["people talk, children cry, people talk", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a train horn blares as a train passes, then fades", "a car accelerates and wind blows"], "sample_ids": ["zVacuqSb4LI", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["blares, fades, train", "accelerates, wind, blows"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", null], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["someone is snoring while sleeping", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ujMt0-D-x2k", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["snore, sleep, someone", "female, spraying, scream"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["x5cuQjOdM3E", "wyllXV6PjKo"], "start_seconds": ["30", "30"], "properties": ["cat, meows, young woman", "a baby, a woman, a man"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman speaks and a baby cries"], "question": "which entity is a child", "label": 1}, {"captions": ["wind blows strongly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["w8uLijTqtlU", "yajyRTUQk3U"], "start_seconds": ["70", "400"], "properties": ["wind, blows, strongly", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and shaky", "- a woman cooking in the kitchen"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["an aircraft engine runs", "water pouring and bubbling"], "sample_ids": ["yLCORCnd35Q", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["engine, aircraft, runs", "water, bubbles, pouring"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a baby cries and a woman speaks", "females talk and laugh over gusting wind"], "sample_ids": ["tMbMDvT50j8", "un9VQlzgZM"], "start_seconds": ["12", "5"], "properties": ["a, cry, woman", "females, talk, laugh"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is a group of people", "label": 1}, {"captions": ["birds coo incessantly", "a man speaks as a car is passing by"], "sample_ids": ["yZrFNS7GFBQ", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["coo, bird, incessant", "a, car, pass"], "captions_pred_video": ["of the bird in the cage", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a man speaks followed by another man speaking outside"], "sample_ids": ["wRBHTgrbiwg", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["bird, owl, speak", "two men, speak, follow"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "wind blowing followed by a zoom"], "sample_ids": ["w5W5Kqtc8E", "vr8ZXjEBhMQ"], "start_seconds": ["100", "150"], "properties": ["wind, blow, vehicle", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "wind blows and a chainsaw cuts through wood "], "question": "which entity has a zoom?", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["ul60S8TXDA8", "su6FAOcOA8c"], "start_seconds": ["60", "4"], "properties": ["sound, distance, bell", "engine, idle, woman"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "waves crash against a shoreline and people speak"], "sample_ids": ["tDlysoZiA1I", "yFB25fqfU8I"], "start_seconds": ["0", "300"], "properties": ["animal, grunt, multiple", "wave, crash, shoreline"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a person surfing in the ocean"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "an airplane engine spools and people speak"], "sample_ids": ["uYT5gxnyMWM", "wTjoRj1se3U"], "start_seconds": ["50", "390"], "properties": ["person, spray, yell", "airplane, engine, spool"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking over spraying and another person yelling?", "label": 0}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["uqFtmnhuqA8", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["a, b, c", "loud, laughter, intermittent"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a scream", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "a duck quacks continuously"], "sample_ids": ["w8uLijTqtlU", "vh30P49Po6s"], "start_seconds": ["70", "30"], "properties": ["wind, microphone, noise", "quacks, continuously, duck"], "captions_pred_video": ["footage is blurry and shaky", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["the wind is blowing strongly", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["x5cuQjOdM3E", "vVhthZ45k3Y"], "start_seconds": ["30", "30"], "properties": ["cat, meows, young woman", "cat, purr, hiss"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage is blurry and out of focus"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a cat is meowing"], "question": "which entity is more playful", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "an engine runs loudly"], "sample_ids": ["w5W5Kqtc8E", "vqZuVbG6-HI"], "start_seconds": ["100", "130"], "properties": ["wind, engine, scream", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["w5W5Kqtc8E", "ziUT9IFTkjg"], "start_seconds": ["100", "10"], "properties": ["water, splashes, motorboat", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone snores nearby", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["spJCm8tD9Zo", "siJFXfGWgDk"], "start_seconds": ["90", "50"], "properties": ["someone snores, nearby, someone", "a, bird, vehicle"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and birds are chirping in the background "], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "an insect buzzes around continuously"], "sample_ids": ["vf9xf3vMsGM", "v25l1jef3JY"], "start_seconds": ["540", "0"], "properties": ["A man speaks while turning a water faucet on.", "buzzes, continuously, insect"], "captions_pred_video": ["of the person washing their hands under the faucet", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["food is frying while a woman speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["yhQ2Lg-7qDY", "xjhAnI2q6hM"], "start_seconds": ["130", "6"], "properties": ["food, woman, speak", "engine revs, vehicle, people"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a truck is revving its engine and a man is speaking "], "question": "what is the woman doing while the food is frying?", "label": 0}, {"captions": ["water is sprayed across a hard surface", "a man is snoring loudly and repeatedly"], "sample_ids": ["sQwlkXjQabo", "sncRqQ67iJU"], "start_seconds": ["10", "460"], "properties": ["water, spray, surface", "loud, repeatedly, man"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["spraying followed by silence", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "wind blowing followed by a zoom"], "sample_ids": ["yajyRTUQk3U", "vr8ZXjEBhMQ"], "start_seconds": ["400", "150"], "properties": ["noise, woman, speak", "wind, blow, zoom"], "captions_pred_video": ["- a woman cooking in the kitchen", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "food is frying while a woman speaks"], "sample_ids": ["wz7N8YRy74I", "yhQ2Lg-7qDY"], "start_seconds": ["30", "130"], "properties": ["rooster, crow, background, people", "food, woman, speak"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a faucet is running and a man is speaking"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "a dog whimpers as someone inhales/exhales briefly"], "sample_ids": ["uiS58TNyUiw", "vmrxwuAMb2I"], "start_seconds": ["430", "40"], "properties": ["vocalize, bird, chirp", "a dog, inhales, exhales"], "captions_pred_video": ["of the pigeon in the cage", "of the dog laying on the bed with his head out of the blanket"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a dog barks and growls"], "question": "which animal is not vocalizing", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a propeller rotates loudly and intensely"], "sample_ids": ["y4tPJXBKDig", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["a, noise, talk", "loud, intense, propeller"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a helicopter is flying overhead "], "question": "which noise is louder", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wqUmIEzuNz4", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["frog, bird, vocalize", "music, gunfire, explosion"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a cat meows and rustles", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x6ijhqRY38s", "xKB8O8LTs6s"], "start_seconds": ["250", "70"], "properties": ["bowl, silverware, man", "music, gunfire, explosion"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zl9Dqx-j7q4", "yajyRTUQk3U"], "start_seconds": ["6", "400"], "properties": ["motors rev, laugh, loudly", "a woman, something, fried"], "captions_pred_video": ["footage of a man driving a car in the dark", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a jet engine roars ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a stream of water runs briefly"], "sample_ids": ["sSMl2vc3ek", "x-PeY8Yb8M4"], "start_seconds": ["20", "300"], "properties": ["a person, laughs, snores", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["some men converse over an engine running", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sCiy7QS1U", "w5W5Kqtc8E"], "start_seconds": ["300", "100"], "properties": ["men, converse, engine", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vW4x7S1VfQc", "wz7N8YRy74I"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "rooster, crow, background, men"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "someone is typing on a computer keyboard"], "sample_ids": ["sjlVMgdGSK0", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["accelerates, vehicle, race car", "keyboard, type, computer"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "how to make money on youtube in spanish"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which is a stationary object", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "people speak as gunfire rings out"], "sample_ids": ["yeFvk9x0wWI", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["clack, bird, chirp", "gunfire, ring, speak"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "an insect buzzes around continuously"], "sample_ids": ["x6ijhqRY38s", "v25l1jef3JY"], "start_seconds": ["250", "0"], "properties": ["something metal, glass, hit", "buzzes, continuously, insect"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a train horn sounds and railroad crossing ring", "children cheer as a man speaks then an audience screams"], "sample_ids": ["s7knHCFW82w", "vJvryTwuAV8"], "start_seconds": ["30", "16"], "properties": ["horn, sound, train", "audience, cheer, man"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity is a person speaking to an audience?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zl9Dqx-j7q4", "zj2R0XoFr5k"], "start_seconds": ["6", "50"], "properties": ["motors rev, laugh, loudly", "airplane, boy, fly"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a jet engine roars ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["zj2R0XoFr5k", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["airplane, fly, overhead", "wind, blows, vehicle"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a jet engine roars and wind blows "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "water is sprayed across a hard surface"], "sample_ids": ["y1saVTXsKwc", "sQwlkXjQabo"], "start_seconds": ["80", "10"], "properties": ["a, dog, talk", "water, spray, surface"], "captions_pred_video": ["a dog playing with a pink ball", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a dog barks and a man speaks", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vmrxwuAMb2I", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["a dog, inhales, exhales", "rooster, crow, background, men"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "an airplane engine roars increasingly louder"], "sample_ids": ["sjlVMgdGSK0", "vBslzh7saPw"], "start_seconds": ["30", "90"], "properties": ["accelerates, vehicle, race car", "engine, roar, louder"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine roars and accelerates "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a toilet flushes and water drains unevenly"], "sample_ids": ["yYEVLuqEytU", "vhJWZheqaE"], "start_seconds": ["40", "0"], "properties": ["grunt, slurp, background", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["a baby goat is being petted by a person's hand", null], "captions_pred_audio": ["several sheep bleat and a man speaks", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "people speaking indiscriminately in the distance with a person snoring loudly nearby"], "sample_ids": ["sAam2NqGhLY", "w2JXXIAdUdg"], "start_seconds": ["20", "10"], "properties": ["snoring, breathing, child", "snoring, distance, person"], "captions_pred_video": ["of a little girl sleeping on a couch", "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["a person is snoring", "a person snoring and a dog whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a telephone rings followed by a woman talking"], "sample_ids": ["x9JovgqUcs", "tGcFnX0GHI"], "start_seconds": ["500", "0"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["someone is snoring while sleeping", "a woman speaks as she rubs two objects together"], "sample_ids": ["ujMt0-D-x2k", "vzxHnu-SFEw"], "start_seconds": ["0", "80"], "properties": ["snore, sleep, someone", "two objects, woman, speak"], "captions_pred_video": ["of the dog playing with a toy on the floor", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "people speak as gunfire rings out"], "sample_ids": ["uJV8NDaHqqk", "wqTCwqVRDlk"], "start_seconds": ["100", "80"], "properties": ["loud, fly, chirp", "gunfire, ring, speak"], "captions_pred_video": ["a bee hive in a wooden box", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a telephone rings followed by a woman talking"], "sample_ids": ["y8WEcpOlT3I", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["harsh, wind, blows", "ring, talk, woman"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a drill drills through something then people begin laughing"], "sample_ids": ["ylpYOorfH4o", "tEE3MpBt1sg"], "start_seconds": ["410", "50"], "properties": ["engine, run, loud", "drill, something, laugh"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a man is speaking and an engine is revving", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a infant makes noise and is excited", "water splashes as an animal walks through"], "sample_ids": ["wIJK3-5y0kA", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["noise, excited, infant", "animal, water, splashes"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby cries and a woman speaks", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "winds blows roughly as a vehicle races past"], "sample_ids": ["xyL9F5VrjkE", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["wind, blows, vehicle", "wind, blows, vehicle"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a jet engine roars and wind blows "], "question": "which entity shows a vehicle running?", "label": 0}, {"captions": ["an infant crying as a woman laughs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["xhmRY9yhC7c", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["a, laugh, infant", "three men, wind, flow"], "captions_pred_video": ["of a baby crying in a baby bouncer", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman and an infant?", "label": 0}, {"captions": ["food is frying while a woman speaks", "an airplane engine runs"], "sample_ids": ["yhQ2Lg-7qDY", "yVPZ2MNWpms"], "start_seconds": ["130", "0"], "properties": ["food, woman, speak", "engine, airplane, runs"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "some tunes played by whistling"], "sample_ids": ["sZvwOuuPGP0", "u6BnG6YZqJ4"], "start_seconds": ["50", "0"], "properties": ["engine, diesel, truck", "tune, play, whistling"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a medium engine is running ", "a person whistling a song"], "question": "which entity is not a vehicle", "label": 1}, {"captions": ["an aircraft engine runs", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yLCORCnd35Q", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["engine, aircraft, runs", "a woman, laughs, animal"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "waves crash against a shoreline and people speak"], "sample_ids": ["uqFtmnhuqA8", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["a, b, c", "wave, crash, shoreline"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage of a person surfing in the ocean"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more like a natural phenomenon", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xvDdE3zNf8Y", "wqZ135Ssz0"], "start_seconds": ["120", "60"], "properties": ["A, crumple, paper", "two men, woman, birds"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["footsteps followed by a flushing toilet", "a man speaks while water drains"], "sample_ids": ["yXrw3GRMZag", "vSeGhaZt-aI"], "start_seconds": ["40", "50"], "properties": ["sound, toilet, flush", "water, drain, man"], "captions_pred_video": ["footage of a toilet bowl with water in it", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["rustling followed by a toilet flushing", "a man is speaking and pouring liquid with background noise "], "question": "which entity has a man speaking while water drains?", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "an electric engine works nearby followed by a child talking"], "sample_ids": ["wTjoRj1se3U", "xSKJGCItUWE"], "start_seconds": ["390", "10"], "properties": ["engine, run, people", "engine, work, child"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a jet engine is running and people are talking", "a high pitched engine is running and a child speaks"], "question": "which entity has a child talking?", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vhJWZheqaE", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["water drains unevenly, toilet flushes, water drains", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a train horn blows as it passes by"], "sample_ids": ["xV7Mg1QucSc", "zVacuqSb4LI"], "start_seconds": ["14", "30"], "properties": ["alarm, ticktocks, laughs", "horn, blows, train"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "an insect buzzes around continuously"], "sample_ids": ["ugHJF0hfYkg", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "buzzes, continuously, insect"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a helicopter is flying overhead ", "a fly is buzzing around a microphone "], "question": "which entity is not a helicopter?", "label": 1}, {"captions": ["a child speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yW6FWLSLkx4", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["a, child, speaks", "a woman, laughs, animal"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["wSVhSdj0F0", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["horn honks, keys jingle, electronic beep", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a propeller rotates loudly and intensely"], "sample_ids": ["zl9Dqx-j7q4", "ugHJF0hfYkg"], "start_seconds": ["6", "10"], "properties": ["motors rev, laugh, loudly", "loud, intense, propeller"], "captions_pred_video": ["footage of a man driving a car in the dark", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a jet engine roars ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "frogs croak and vocalize"], "sample_ids": ["xl2PIWyXaM", "yswmmRZFItk"], "start_seconds": ["160", "0"], "properties": ["chirp, man, younger person", "croak, vocalize, frog"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and people are talking", "a frog is croaking"], "question": "which animal is more vocal", "label": 1}, {"captions": ["some people speak", "continuous snoring"], "sample_ids": ["vbZ-0lGPneg", "sLkeqCDJIyw"], "start_seconds": ["30", "120"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "loud, snoring, noise"], "captions_pred_video": ["of a man holding a baby duck in his hands", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a person is snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a small engine idles continuously", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["y5WII6cTH7k", "xKB8O8LTs6s"], "start_seconds": ["40", "70"], "properties": ["engine, idle, continuously", "music, gunfire, explosion"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an engine is knocking and vibrating ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "a man speaks as a car is passing by"], "sample_ids": ["yDoT73BWsdA", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["engine, revs, vehicle", "a, car, pass"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which vehicle is passing by", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["wSVhSdj0F0", "w34HjHr6gAY"], "start_seconds": ["10", "30"], "properties": ["horn honks, keys jingle, slam", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "frogs croak and vocalize"], "sample_ids": ["uWAAAL4CIoc", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["a woman, chirps, animal", "croak, vocalize, frog"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a frog is croaking"], "question": "which animal is speaking", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xjvTpk2Zpr8", "yajyRTUQk3U"], "start_seconds": ["70", "400"], "properties": ["wind, blows, vehicle", "a woman, something, fried"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yRx9txMcBl0", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["motors, tires, screech", "clickety-clack, train, whistle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a stream of water runs briefly"], "sample_ids": ["y2bVZ7rz-5M", "x-PeY8Yb8M4"], "start_seconds": ["280", "300"], "properties": ["engine, horn, siren", "stream, water, run"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a car is driving on a wet road "], "question": "which entity is a moving object", "label": 0}, {"captions": ["food is frying while a woman speaks", "an airplane engine spools and people speak"], "sample_ids": ["yhQ2Lg-7qDY", "wTjoRj1se3U"], "start_seconds": ["130", "390"], "properties": ["food, woman, speak", "airplane, engine, spool"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a jet engine is running and people are talking"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["vehicles pass by on a roadway", "paper folding and crinkling"], "sample_ids": ["tgbONvsP47Y", "zPpG3RD8lSs"], "start_seconds": ["0", "20"], "properties": ["pass, vehicle, roadway", "paper, fold, crinkle"], "captions_pred_video": ["footage of a fire truck entering a garage", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a car is driving on the road ", "the wind blows and a mouse clicks "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a toilet flushes and water drains", "a woman speaks as she rubs two objects together"], "sample_ids": ["sfAvvZwdLCY", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["water drains, flushes, water", "two objects, woman, speak"], "captions_pred_video": ["footage of the toilet in the bathroom", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a person is burping while a girl speaks"], "sample_ids": ["wqZ135Ssz0", "vdoxuJn9lTc"], "start_seconds": ["60", "40"], "properties": ["man, woman, squawks", "person, burp, girl"], "captions_pred_video": [null, "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a child speaks followed by a burp"], "question": "which entity has a girl speaking?", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uoGVs9yUqY4", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["multiple, vocalize, wind", "a woman, something, fried"], "captions_pred_video": ["for how to make a wooden shed door youtube", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["xyL9F5VrjkE", "vVhthZ45k3Y"], "start_seconds": ["20", "30"], "properties": ["wind, blows, vehicle", "cat, purr, hiss"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a cat is meowing"], "question": "which entity is more likely to be a cat", "label": 1}, {"captions": ["water flows followed by women screaming", "a man speaks as a car is passing by"], "sample_ids": ["w5W5Kqtc8E", "sK4u5T8hW78"], "start_seconds": ["100", "30"], "properties": ["water, flow, women", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "people applaud and hoot and chat quietly"], "sample_ids": ["u5RmF3c3Aw", "wwyfGO2J4"], "start_seconds": ["60", "90"], "properties": ["engine, car, zoom", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vh30P49Po6s", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["loud, continuous, quacks", "men, talk, cars"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["ugHJF0hfYkg", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["loud, propeller, move", "loud, jet engine, roar"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a helicopter is flying overhead ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "an insect buzzes around continuously"], "sample_ids": ["t8CV69hcvF0", "v25l1jef3JY"], "start_seconds": ["210", "0"], "properties": ["person, sneeze, follow", "buzzes, continuously, insect"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman sneezes and speaks", "a fly is buzzing around a microphone "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vf44CgrjT0A", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["loud, long, person", "applause, audience, yells"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a loud burp", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xSKJGCItUWE", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["engine, work, child", "multiple, people, yell"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["tDVADusiIoc", "xfaoyyzw2WU"], "start_seconds": ["60", "180"], "properties": ["water, radio, man", "loud, jet engine, roar"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vKrYfzleLB8", "xfaoyyzw2WU"], "start_seconds": ["110", "180"], "properties": ["a, ring, gunshots", "loud, jet engine, roar"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "vehicles pass by on a roadway"], "sample_ids": ["s6DESzUTGjY", "tgbONvsP47Y"], "start_seconds": ["16", "0"], "properties": ["wind, laugh, woman", "pass, vehicle, roadway"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a car is driving on the road "], "question": "which entity is more likely to be seen in a movie", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vzxHnu-SFEw", "zj2R0XoFr5k"], "start_seconds": ["80", "50"], "properties": ["two objects, woman, speak", "airplane, boy, fly"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["a child speaks", "an airplane engine runs"], "sample_ids": ["yW6FWLSLkx4", "yVPZ2MNWpms"], "start_seconds": ["40", "0"], "properties": ["a, child, speaks", "engine, airplane, runs"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "birds chirp and objects are moved around"], "sample_ids": ["sTpirNYo8vQ", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["a, tone, fast", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "someone is typing on a computer keyboard"], "sample_ids": ["tOj4tdLRaA", "v0x1odnXtP0"], "start_seconds": ["70", "210"], "properties": ["woman, laugh, baby", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "water flows and trickles"], "sample_ids": ["uzQnlJXBbOM", "tB7hWb9gTuQ"], "start_seconds": ["50", "30"], "properties": ["ringing, beep, stop", "water, flow, trickle"], "captions_pred_video": ["footage of a person using a cell phone on a table", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a telephone rings and a man speaks", "water is splashing and gurgling"], "question": "which entity is a continuous flow", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["rqu8iB22IY", "t97k0cejSQE"], "start_seconds": ["5", "250"], "properties": ["sound, repeats, laugh", "sound, chirp, buzz"], "captions_pred_video": [null, "a bee on a purple thistle flower"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a bee buzzes and a woman speaks"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a machine runs continuously", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wdXV3Pv0jiY", "sSMl2vc3ek"], "start_seconds": ["11", "20"], "properties": ["machine, running, continuously", "loud, multiple, distance"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a person snoring loudly"], "question": "which entity is not a machine?", "label": 1}, {"captions": ["an animal quacks rapidly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vh30P49Po6s", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["animal, quacks, rapidly", "stream, water, flow"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage is blurry and out of focus"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "people applaud and hoot and chat quietly"], "sample_ids": ["sLUnaPT5gM8", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["loud, laughter, intermittent", "people, applaud, hoot"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a car speeding up in the distance"], "sample_ids": ["w34HjHr6gAY", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["beeps, squawk, child speaking", "distance, car, speed"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "an infant crying frantically"], "sample_ids": ["vdoxuJn9lTc", "zwOBqeFTgiU"], "start_seconds": ["40", "30"], "properties": ["burp, loud, girl", "cry, infant, frantically"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of the baby crying in the car seat"], "captions_pred_audio": ["a child speaks followed by a burp", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks as a car is passing by", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["sK4u5T8hW78", "vXlk0lIQBFo"], "start_seconds": ["30", "470"], "properties": ["a, car, pass", "wind, speak, vocalize"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is about a man speaking as a car is passing by?", "label": 0}, {"captions": ["a man speaks then rubs two hard objects together", "paper folding and crinkling"], "sample_ids": ["yJ0TePmaOo", "zPpG3RD8lSs"], "start_seconds": ["390", "20"], "properties": ["two hard objects, man, speak", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "the wind blows and a mouse clicks "], "question": "which object is softer", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a man is snoring loudly and repeatedly"], "sample_ids": ["wIJK3-5y0kA", "sncRqQ67iJU"], "start_seconds": ["30", "460"], "properties": ["a, cry, baby", "loud, repeatedly, man"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a baby cries and a woman speaks", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "wind blows as people chatter quietly"], "sample_ids": ["zCrAfDfv6-A", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["person, mouse, click", "wind, chatter, people"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistles a song", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["water splashes as an animal walks through", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["w1ir-sZ3Im8", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["animal, water, splashes", "wind, blow, vehicle"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["continuous snoring", "a train horn blows as it passes by"], "sample_ids": ["sLkeqCDJIyw", "zVacuqSb4LI"], "start_seconds": ["120", "30"], "properties": ["loud, snoring, noise", "horn, blows, train"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a person is snoring loudly", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which noise is louder", "label": 0}, {"captions": ["a girl speaks followed by a scream and more girls talking", "someone whistles a tune"], "sample_ids": ["uYT5gxnyMWM", "sIXTftIuUgw"], "start_seconds": ["50", "90"], "properties": ["a, scream, girl", "someone, tune, whistle"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["ugHJF0hfYkg", "xyL9F5VrjkE"], "start_seconds": ["10", "20"], "properties": ["engine, running, continuously", "wind, motor, distance"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["a helicopter is flying overhead ", "the wind is blowing and a car is passing by "], "question": "which entity is running continuously", "label": 0}, {"captions": ["a girl speaks followed by a scream and more girls talking", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["uYT5gxnyMWM", "vXlk0lIQBFo"], "start_seconds": ["50", "470"], "properties": ["a, scream, girl", "wind, speak, vocalize"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["tapping occurs then a baby cries", "some men converse over an engine running"], "sample_ids": ["wIJK3-5y0kA", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["a, cry, baby", "men, converse, engine"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a baby crying?", "label": 0}, {"captions": ["a toilet flushes and water drains", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sfAvvZwdLCY", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "male, duck, laugh"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "water pouring and bubbling"], "sample_ids": ["t8CV69hcvF0", "uyRfq-jKPpo"], "start_seconds": ["210", "50"], "properties": ["person, sneeze, follow", "water, bubbles, pouring"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman sneezes and speaks", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a motorcycle engine works nearby", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tOSWIURC-4", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["engine, work, nearby", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a duck quacks and a woman speaks"], "question": "which entity is a natural event", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vmrxwuAMb2I", "wqZ135Ssz0"], "start_seconds": ["40", "60"], "properties": ["a dog, inhales, exhales", "two men, woman, birds"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", null], "captions_pred_audio": ["a dog barks and growls", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["w2JXXIAdUdg", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["snoring, distance, person", "people, applaud, hoot"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "small dogs yip and bark sharply"], "sample_ids": ["vBslzh7saPw", "v-wcQf4BDY0"], "start_seconds": ["90", "120"], "properties": ["power, scream, increase", "bark, yip, sharply"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wRBHTgrbiwg", "w5W5Kqtc8E"], "start_seconds": ["50", "100"], "properties": ["bird, owl, speak", "wind, blow, vehicle"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "an engine runs loudly"], "sample_ids": ["vZAw4apG0Es", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["background, tick, repeat", "loud, engine, run"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a clock is ticking and people are talking", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["ukxt9I7eMMg", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["continuous, woman, speaking", "music, gunfire, explosion"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more action", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a man speaks as a motor runs in the background"], "sample_ids": ["yPUYU6t3rwo", "xZepNM9qcRA"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "background, motor, run"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["insects buzz and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "some men converse over an engine running"], "sample_ids": ["zALy31PjDl0", "sCiy7QS1U"], "start_seconds": ["21", "300"], "properties": ["a man, a vehicle, a horn", "men, converse, engine"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", null], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has more people", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "some men converse over an engine running"], "sample_ids": ["zsLxS-uLJTw", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["horn, blast, train", "men, converse, engine"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", null], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a train", "label": 0}, {"captions": ["water splashes and a motorboat passes as people yell", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w5W5Kqtc8E", "xKB8O8LTs6s"], "start_seconds": ["100", "70"], "properties": ["water, splashes, motorboat", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "someone is typing on a computer keyboard"], "sample_ids": ["yDoT73BWsdA", "v0x1odnXtP0"], "start_seconds": ["10", "210"], "properties": ["engine, revs, vehicle", "keyboard, type, computer"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "how to make money on youtube in spanish"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person is typing on a keyboard"], "question": "which is not a vehicle", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "pigeons vocalize and birds chirp"], "sample_ids": ["vW4x7S1VfQc", "uiS58TNyUiw"], "start_seconds": ["150", "430"], "properties": ["clacking, oil, woman", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "of the pigeon in the cage"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["continuous sneezing together with speech", "a car accelerates and wind blows"], "sample_ids": ["x4dZyf9Gbj0", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["continuous, sneeze, speech", "accelerates, wind, blows"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "birds chirp and objects are moved around"], "sample_ids": ["t25U-v4k4ts", "yPUYU6t3rwo"], "start_seconds": ["40", "370"], "properties": ["a, chirps, bird", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "insects buzz and a man speaks"], "question": "which entity has more birds", "label": 1}, {"captions": ["water flows followed by women screaming", "a child speaks in closed space"], "sample_ids": ["w5W5Kqtc8E", "yW6FWLSLkx4"], "start_seconds": ["100", "40"], "properties": ["water, flow, women", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["bees buzz and wind blows", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tMJne1a4AFI", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["bees buzz, wind blows, bees", "applause, audience, yells"], "captions_pred_video": ["a swarm of bees on the ground", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a person speaks briefly", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["zOZleIRqZm4", "zFjIWfSD-4"], "start_seconds": ["80", "410"], "properties": ["person, talk, brief", "People, motor, brakes"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person talking?", "label": 0}, {"captions": ["a small engine idles continuously", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["y5WII6cTH7k", "su6FAOcOA8c"], "start_seconds": ["40", "4"], "properties": ["engine, idle, continuously", "engine, idle, woman"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a dark barks and whimpers", "a horn honks followed by a loud continuous buzzing while men speak"], "sample_ids": ["sYj4hpDUZDQ", "wsHBIgzs9Fs"], "start_seconds": ["30", "50"], "properties": ["barks, whimpers, dark", "horn, continuous, buzzing"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "shows a motorcycle riding down a country road with a motorcycle in the foreground"], "captions_pred_audio": ["a dog barks and a cat meows", "a car accelerates and revs its engine while a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a toilet flushes and a female speaks"], "sample_ids": ["sapQIQUhFc", "yaln9y8I7ms"], "start_seconds": ["280", "230"], "properties": ["water, trickles, flow", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["w5W5Kqtc8E", "yDoT73BWsdA"], "start_seconds": ["100", "10"], "properties": ["wind, engine, scream", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a clock ticktocks briefly", "a race car approaches quickly and slows down squealing tires"], "sample_ids": ["u7C-AEBQM", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["ticktocks, clock, ticktocks briefly", "car, tires, slows"], "captions_pred_video": [null, "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a ticktock of a clock", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a stream of water runs briefly"], "sample_ids": ["tEE3MpBt1sg", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["drill, something, laugh", "stream, water, run"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "people applaud and hoot and chat quietly"], "sample_ids": ["viuTg1M-dqg", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["two men, speak, follow", "people, applaud, hoot"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "a train horn blares as a train passes, then fades"], "sample_ids": ["tOSWIURC-4", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["noise, engine, revs", "blares, fades, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a lawn mower is running ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a clock ticktocks briefly", "an infant crying as a woman laughs"], "sample_ids": ["u7C-AEBQM", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, ticktocks briefly", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a ticktock of a clock", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman and man speak while food is frying", "a small voice speaks, music plays followed by a double whoosh, and then a bell dings"], "sample_ids": ["zk-xJGQU8-4", "tQWGZLItBXk"], "start_seconds": ["130", "170"], "properties": ["food, man, woman", "voice, music, whoosh"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "worms revolution screenshots"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a voice speaking?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vh30P49Po6s", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["loud, continuous, quacks", "a woman, laughs, animal"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a baby is crying"], "question": "which entity is not continuous", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tK4VlLsNxak", "tiDFTC-5vU"], "start_seconds": ["120", "30"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "male, duck, laugh"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", null], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking and ducks are quacking"], "question": "which entity is a spoof", "label": 1}, {"captions": ["water runs into a sink while men speak", "water splashes as an animal walks through"], "sample_ids": ["vzceMbklWc", "w1ir-sZ3Im8"], "start_seconds": ["180", "90"], "properties": ["water, sink, run", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["water is running and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wqN6IIHw3po", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "engine, accelerate, idle"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and water is splashing", "an engine is idling"], "question": "which entity is a moving object", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a man speaks as a motor runs in the background"], "sample_ids": ["wvKpEYswXO0", "xZepNM9qcRA"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "background, motor, run"], "captions_pred_video": ["of the person preparing food in the kitchen", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "dishes cling together then a man begins to speak"], "sample_ids": ["x9JovgqUcs", "sQGXqGcwOTc"], "start_seconds": ["500", "3"], "properties": ["a, man, speaks, keyboard", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man speaks and types on a keyboard", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a woman and man speak while food is frying", "a duck quacks loudly and continuously"], "sample_ids": ["zk-xJGQU8-4", "vh30P49Po6s"], "start_seconds": ["130", "30"], "properties": ["food, man, woman", "loud, continuous, quacks"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "a duck is quacking loudly"], "question": "which entity is speaking", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "water splashes as an animal walks through"], "sample_ids": ["y2ZBGpgbhHM", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["dog, chirp, breathe", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds chirping and a dog panting", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yJ0TePmaOo", "w5W5Kqtc8E"], "start_seconds": ["390", "100"], "properties": ["two hard objects, man, speak", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running?", "label": 1}, {"captions": ["continuous sneezing together with speech", "winds blows roughly as a vehicle races past"], "sample_ids": ["x4dZyf9Gbj0", "xjvTpk2Zpr8"], "start_seconds": ["130", "70"], "properties": ["continuous, sneeze, speech", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman sneezes and speaks", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man speaks while playing a video game on a keyboard", "water flows and trickles"], "sample_ids": ["tw76HGONaKg", "tB7hWb9gTuQ"], "start_seconds": ["570", "30"], "properties": ["A, game, keyboard", "water, flow, trickle"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water rushes by", "a man speaks followed by another man speaking outside"], "sample_ids": ["x-PeY8Yb8M4", "viuTg1M-dqg"], "start_seconds": ["300", "30"], "properties": ["water, rushes, by", "two men, speak, follow"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zl9Dqx-j7q4", "vb1fPSDI4c"], "start_seconds": ["6", "30"], "properties": ["engine, laugh, loud", "multiple, people, yell"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a train horn blows as it passes by"], "sample_ids": ["yswmmRZFItk", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["background, frog, croak", "horn, blows, train"], "captions_pred_video": ["a close up of a frog in the water", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a frog is croaking", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a telephone rings and a bird vocalizes", "birds chirp and objects are moved around"], "sample_ids": ["skd2PphS6oI", "yPUYU6t3rwo"], "start_seconds": ["190", "370"], "properties": ["ring, bird, vocalize", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["leaves rustle while man speaks", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zOZleIRqZm4", "sLUnaPT5gM8"], "start_seconds": ["80", "0"], "properties": ["leaves, rustle, speak", "loud, laughter, intermittent"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a propeller rotates loudly and intensely"], "sample_ids": ["sxYkFKFIZD0", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["screech, man, door", "loud, intense, propeller"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["w2bYrCVLT60", "uZesmtKZGSw"], "start_seconds": ["120", "250"], "properties": ["ducks, speak, quack", "men, talk, cars"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a child speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["yW6FWLSLkx4", "uiS58TNyUiw"], "start_seconds": ["40", "430"], "properties": ["a, child, speaks", "vocalize, bird, chirp"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["someone snores nearby", "a man speaks as horns blow"], "sample_ids": ["spJCm8tD9Zo", "tHyNqRyK34A"], "start_seconds": ["90", "24"], "properties": ["someone snores, nearby, someone", "a, man, speaks"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "being taken from inside a vehicle on the street at night"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a car is honking with background noise "], "question": "which entity is a person", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a soft wind underscores a woman laughing"], "sample_ids": ["sOa7g-44Dag", "s6DESzUTGjY"], "start_seconds": ["30", "16"], "properties": ["background, man, spray", "wind, laugh, woman"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a motorboat is moving with wind noise in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "water flows and trickles"], "sample_ids": ["vZAw4apG0Es", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["background, clock, ticktocks", "water, flow, trickle"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a clock is ticking and people are talking", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a toilet flushes and water drains"], "sample_ids": ["uiS58TNyUiw", "sfAvvZwdLCY"], "start_seconds": ["430", "20"], "properties": ["audio, man, speaking", "water drains, flushes, water"], "captions_pred_video": ["of the pigeon in the cage", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "people speak in a closed space"], "sample_ids": ["tZGN5a7ybxo", "sTpirNYo8vQ"], "start_seconds": ["60", "30"], "properties": ["ring, train, horn", "people, space, speak"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a man is speaking while a car is revving and accelerating "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["zY3icUyMdh8", "vlS6YMeWAPo"], "start_seconds": ["20", "40"], "properties": ["dog, bark, engine", "sheep, baa, birds"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a stream of water runs briefly"], "sample_ids": ["wEBlkGWVWwE", "x-PeY8Yb8M4"], "start_seconds": ["260", "300"], "properties": ["a, babble, woman", "stream, water, run"], "captions_pred_video": ["shows a person writing on the whiteboard", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a drill runs and two people laugh"], "sample_ids": ["xV7Mg1QucSc", "tEE3MpBt1sg"], "start_seconds": ["14", "50"], "properties": ["alarm, ticktocks, laughs", "two people, laugh, drill"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a clock ticktocks in wind", "paper is crumpling consistently"], "sample_ids": ["yVumC9TGknc", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, wind", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a series of beeps and chirps", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a duck quacks continuously"], "sample_ids": ["tDlysoZiA1I", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, multiple", "quacks, continuously, duck"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a duck is quacking loudly"], "question": "which animal is making a noise", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["voJh2gJxXhA", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["music, frog, croak", "airplane, boy, fly"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a man speaking with light rustling", "water is sprayed across a hard surface"], "sample_ids": ["zOZleIRqZm4", "sQwlkXjQabo"], "start_seconds": ["80", "10"], "properties": ["light, rustling, man", "water, spray, surface"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a car speeding up in the distance", "a woman speaks and a baby laughs"], "sample_ids": ["u0TrcHhkPQ", "tOj4tdLRaA"], "start_seconds": ["20", "70"], "properties": ["distance, car, speed", "woman, laugh, baby"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a baby laughs and a woman speaks"], "question": "which entity is not moving", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "a stream of water flows as people talk and wind blows"], "sample_ids": ["x4a9YGIw4ok", "xBxDz0CFVn0"], "start_seconds": ["120", "30"], "properties": ["water, gurgles, stops", "stream, water, flow"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a toilet flushes and water splashes", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xjvTpk2Zpr8", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["engine, run, wind", "female, spraying, scream"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zY3icUyMdh8", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["dog, bark, engine", "rustling, ducks, quack"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "someone whistles a tune"], "sample_ids": ["sNB8zxXneIM", "sIXTftIuUgw"], "start_seconds": ["20", "90"], "properties": ["several, quack, cocks", "someone, tune, whistle"], "captions_pred_video": ["a group of geese in a cage", null], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["an animal quacks rapidly", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vh30P49Po6s", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["animal, quacks, rapidly", "a, scream, girl"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "wind blowing followed by a zoom"], "sample_ids": ["w5W5Kqtc8E", "vr8ZXjEBhMQ"], "start_seconds": ["100", "150"], "properties": ["water, splashes, motorboat", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["an engine starts and increases in power", "a propeller rotates loudly and intensely"], "sample_ids": ["zjTG0gaGCUI", "ugHJF0hfYkg"], "start_seconds": ["80", "10"], "properties": ["power, increase, engine", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["water splashes as an animal walks through", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["w1ir-sZ3Im8", "wyllXV6PjKo"], "start_seconds": ["90", "30"], "properties": ["animal, water, splashes", "a baby, a woman, a man"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a woman speaks and a baby cries"], "question": "which entity is a person", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "an engine runs loudly"], "sample_ids": ["y1saVTXsKwc", "vqZuVbG6-HI"], "start_seconds": ["80", "130"], "properties": ["a, dog, talk", "loud, engine, run"], "captions_pred_video": ["a dog playing with a pink ball", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a dog barks and a man speaks", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["sSMl2vc3ek", "w6RTHR6AeAg"], "start_seconds": ["20", "40"], "properties": ["loud, multiple, distance", "call, owl, screech"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "an owl hoots and mechanisms operate "], "question": "which entity is a bird", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "some tunes played by whistling"], "sample_ids": ["wTideSjRFS0", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["food, sizzle, woman", "tune, play, whistling"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "water flows and trickles"], "sample_ids": ["yRx9txMcBl0", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "water, flow, trickle"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car is revving its engine and skidding ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["birds chirp as a bell rings", "several insects fly while two men talk"], "sample_ids": ["ziUT9IFTkjg", "s-T9OVOiMLo"], "start_seconds": ["10", "330"], "properties": ["chirp, bell, ring", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zuua6-5goWw", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "a woman, a television program, a bird"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program playing?", "label": 1}, {"captions": ["food is frying while a woman speaks", "water flows as men speak and yell"], "sample_ids": ["yhQ2Lg-7qDY", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["food, woman, speak", "water, flow, men"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["an airplane engine roars increasingly louder", "paper is crumpling consistently"], "sample_ids": ["vBslzh7saPw", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["engine, roar, louder", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a jet engine roars and accelerates ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "an airplane engine runs"], "sample_ids": ["vW4x7S1VfQc", "yVPZ2MNWpms"], "start_seconds": ["150", "0"], "properties": ["clacking, oil, woman", "engine, airplane, runs"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["food sizzles in a frying pan", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a propeller rotates loudly and intensely"], "sample_ids": ["yYEVLuqEytU", "ugHJF0hfYkg"], "start_seconds": ["40", "10"], "properties": ["animal, pig, background", "loud, intense, propeller"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yJ0TePmaOo", "sSMl2vc3ek"], "start_seconds": ["390", "20"], "properties": ["two hard objects, man, speak", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "people speak as gunfire rings out"], "sample_ids": ["zj2R0XoFr5k", "wqTCwqVRDlk"], "start_seconds": ["50", "80"], "properties": ["airplane, boy, fly", "gunfire, ring, speak"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["a woman sneezes then speaks", "some men converse over an engine running"], "sample_ids": ["x4dZyf9Gbj0", "sCiy7QS1U"], "start_seconds": ["130", "300"], "properties": ["sneezes, speaks, woman", "men, converse, engine"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman?", "label": 0}, {"captions": ["a goat bleats and someone makes a calling noise", "a car accelerates and wind blows"], "sample_ids": ["vlS6YMeWAPo", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["noise, bleat, call", "accelerates, wind, blows"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a dog barks and whimpers", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sShpyu2l4YQ", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["barks, whimpers, dog", "water, radio, man"], "captions_pred_video": ["the puppies are playing with a toy", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "wind blowing followed by a zoom"], "sample_ids": ["zgUgkpk78xU", "vr8ZXjEBhMQ"], "start_seconds": ["70", "150"], "properties": ["horn, bells, ring", "wind, blow, zoom"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "wind blowing followed by a zoom"], "sample_ids": ["sTpirNYo8vQ", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["a, tone, fast", "wind, blow, zoom"], "captions_pred_video": ["of a man taking a selfie on a bus", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "winds blows roughly as a vehicle races past"], "sample_ids": ["s6DESzUTGjY", "xjvTpk2Zpr8"], "start_seconds": ["16", "70"], "properties": ["wind, laugh, woman", "wind, blows, vehicle"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is more calm", "label": 0}, {"captions": ["an insect buzzes around continuously", "a cat meows as a young woman speaks"], "sample_ids": ["v25l1jef3JY", "x5cuQjOdM3E"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "cat, meows, young woman"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a cat meows and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["some clanking with distant murmuring", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uMTTDZ2mb4", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["clanking, murmuring, distant", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["people speak then an engine runs", "dishes cling together then a man begins to speak"], "sample_ids": ["uMTTDZ2mb4", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["engine, run, people", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a person screams glaringly", "paper is crumpling consistently"], "sample_ids": ["xC8kbrKJmco", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["glaringly, screams, person", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a goat is bleating ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds coo incessantly", "a woman speaks and then a man speaks"], "sample_ids": ["yZrFNS7GFBQ", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["coo, bird, incessant", "a, man, speaks"], "captions_pred_video": ["of the bird in the cage", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["an owl hoots in the background ", "a woman is speaking and a man is speaking"], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tiDFTC-5vU", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a man is speaking and ducks are quacking"], "question": "which entity is speaking and a duck quacks as others laugh", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a child speaks in closed space"], "sample_ids": ["x5cuQjOdM3E", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["cat, meows, young woman", "child, space, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a train engine runs and a horn blows", "water pouring and bubbling"], "sample_ids": ["zPX9o1uDiI", "uyRfq-jKPpo"], "start_seconds": ["40", "50"], "properties": ["engine, horn, run", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a car speeds away loudly followed by a car revving loudly and driving away while outside"], "sample_ids": ["sncRqQ67iJU", "sjlVMgdGSK0"], "start_seconds": ["460", "30"], "properties": ["loud, repeatedly, man", "car, revving, loudly"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a person is snoring", "a car accelerates and revs its engine "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["xl2PIWyXaM", "xjvTpk2Zpr8"], "start_seconds": ["160", "70"], "properties": ["chirp, man, younger person", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["birds are chirping and people are talking", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["water is sprayed across a hard surface", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sQwlkXjQabo", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["water, spray, surface", "applause, audience, yells"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "water flows and trickles"], "sample_ids": ["y8WEcpOlT3I", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["wind, speak, buffeting", "water, flow, trickle"], "captions_pred_video": ["on how to use a sewing machine youtube", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "vehicles pass by on a roadway"], "sample_ids": ["u7C-AEBQM", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["ticks, rhythmic, quiet", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a ticktock of a clock", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["xZepNM9qcRA", "uWPRNLnpy7Y"], "start_seconds": ["30", "10"], "properties": ["background, motor, run", "accelerate, laugh, vehicle"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "is taken from a car driving down the street"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a man speaks as a motor runs in the background"], "sample_ids": ["w5W5Kqtc8E", "xZepNM9qcRA"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a man speaks as a car is passing by"], "sample_ids": ["zl9Dqx-j7q4", "sK4u5T8hW78"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "a, car, pass"], "captions_pred_video": ["footage of a man driving a car in the dark", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tiDFTC-5vU", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["male, duck, laugh", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["voJh2gJxXhA", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["music, frog, croak", "a woman, laughs, animal"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a woman is speaking and a baby is crying"], "question": "which entity has a frog in it?", "label": 0}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zALy31PjDl0", "tiDFTC-5vU"], "start_seconds": ["21", "30"], "properties": ["a man, a vehicle, a horn", "male, duck, laugh"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", null], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "water flows and trickles"], "sample_ids": ["vfYTJq7nU", "tB7hWb9gTuQ"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a duck quacks and a woman speaks", "water is splashing and gurgling"], "question": "which entity is a video of water flowing?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tOSWIURC-4", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["engine, work, nearby", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a lawn mower is running ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a duck quacks continuously", "a train horn blows as it passes by"], "sample_ids": ["vh30P49Po6s", "zVacuqSb4LI"], "start_seconds": ["30", "30"], "properties": ["quacks, continuously, duck", "horn, blows, train"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a duck is quacking loudly", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "men speak and a nozzle sprays liquid"], "sample_ids": ["s59PfAghdkM", "wRV8yMk886E"], "start_seconds": ["0", "0"], "properties": ["bird, chirp, background, horse, neigh", "liquid, spray, nozzle"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man speaks followed by a loud burst"], "question": "which entity is more likely to be used in a science class", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xMXvkIcaG0Y", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["sound, humming, rattling", "airplane, boy, fly"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["an engine is revving and accelerating ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a small engine spits as it runs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sZvwOuuPGP0", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["spits, engine, runs", "engine, laugh, loud"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a medium engine is running ", "a jet engine roars "], "question": "which entity is followed by a man laughing", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "paper is crumpling consistently"], "sample_ids": ["uYT5gxnyMWM", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["female, spraying, scream", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "paper is crumpled and crinkled"], "question": "which entity is a video of a person speaking", "label": 0}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "people cheer as a vehicle engine revs"], "sample_ids": ["sU53zg9Jp7s", "xjhAnI2q6hM"], "start_seconds": ["380", "6"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "engine revs, vehicle, people"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "an insect buzzes around continuously"], "sample_ids": ["wqUmIEzuNz4", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["frog, bird, vocalize", "buzzes, continuously, insect"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a cat meows and rustles", "a fly is buzzing around a microphone "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["vZAw4apG0Es", "xV7Mg1QucSc"], "start_seconds": ["30", "14"], "properties": ["background, tick, repeat", "alarm, ticktocks, laughs"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking and people are talking", "an alarm clock ticks and a woman laughs"], "question": "which entity has a tick that repeats", "label": 0}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a woman speaks happily and an animal chirps"], "sample_ids": ["wvKpEYswXO0", "uWAAAL4CIoc"], "start_seconds": ["150", "0"], "properties": ["sound, water, running", "a woman, chirps, animal"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking and a dog is barking "], "question": "which entity has a woman speaking softly?", "label": 0}, {"captions": ["speaking following by laughing and clapping", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["u2f5NpsoHBg", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["person, laugh, clap", "engine, laugh, loud"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a car accelerates and wind blows"], "sample_ids": ["v7jJS8aAyA", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["wind, blows, loudly", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a race car accelerates and revs its engine "], "question": "which vehicle is moving faster", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a stream of water flows quickly"], "sample_ids": ["wyllXV6PjKo", "wbHTKEJZyhc"], "start_seconds": ["30", "20"], "properties": ["a kid, talk, cry", "stream, water, flow"], "captions_pred_video": [null, "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a woman speaks and a baby cries", "a waterfall is flowing and people are speaking "], "question": "which entity is moving", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vhJWZheqaE", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["water drains unevenly, toilet flushes, water drains", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a toilet is flushed", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["smGI3C1NZc", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["water, drain, toilet", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman talking?", "label": 1}, {"captions": ["a beep occurs briefly", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["xtWeJ56-U-g", "wqZ135Ssz0"], "start_seconds": ["20", "60"], "properties": ["beep, occur, briefly", "man, woman, squawks"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", null], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is accompanied by a man and woman speaking", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "some men converse over an engine running"], "sample_ids": ["wyllXV6PjKo", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["a kid, talk, cry", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a kid?", "label": 0}, {"captions": ["people converse in the distance as a clock ticks", "an engine works in idle nearby followed by a man talking"], "sample_ids": ["vZAw4apG0Es", "wqADXCzngMw"], "start_seconds": ["30", "340"], "properties": ["people, clock, converse", "engine, idle, man"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of a man working on a vintage volkswagen beetle"], "captions_pred_audio": ["a clock is ticking and people are talking", "a lawn mower is running and a man is speaking "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["race cars go around a track as a man commentates", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["uZesmtKZGSw", "yajyRTUQk3U"], "start_seconds": ["250", "400"], "properties": ["car, track, man", "a woman, something, fried"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an adult woman and an adult man speak", "someone is typing on a computer keyboard"], "sample_ids": ["zTLVJCo4WEE", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["two people, adult, speak", "keyboard, type, computer"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["w8uLijTqtlU", "yks4cLgIDMc"], "start_seconds": ["70", "170"], "properties": ["wind, microphone, noise", "background, speaking, child"], "captions_pred_video": ["footage is blurry and shaky", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "an engine runs loudly"], "sample_ids": ["sa6TLVbooCc", "vqZuVbG6-HI"], "start_seconds": ["240", "130"], "properties": ["people, laugh, child", "loud, engine, run"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yajyRTUQk3U", "vb1fPSDI4c"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "multiple, people, yell"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["wind blowing followed by a zoom", "water is sprayed across a hard surface"], "sample_ids": ["vr8ZXjEBhMQ", "sQwlkXjQabo"], "start_seconds": ["150", "10"], "properties": ["wind, blow, zoom", "water, spray, surface"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a duck quacks loudly and continuously"], "sample_ids": ["wqUmIEzuNz4", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["frog, bird, vocalize", "loud, continuous, quacks"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a cat meows and rustles", "a duck is quacking loudly"], "question": "which animal is making a noise", "label": 1}, {"captions": ["a man speaks uses a drill", "roadway noise occurs and a truck accelerates"], "sample_ids": ["x5eIC7S0fbg", "tgbONvsP47Y"], "start_seconds": ["60", "0"], "properties": ["A man is speaking, uses a drill, and is a tool", "noise, truck, accelerate"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a car is driving on the road "], "question": "which is a tool", "label": 0}, {"captions": ["a machine runs continuously", "a stream of water runs briefly"], "sample_ids": ["wdXV3Pv0jiY", "x-PeY8Yb8M4"], "start_seconds": ["11", "300"], "properties": ["machine, running, continuously", "stream, water, run"], "captions_pred_video": ["footage is blurry and shaky", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a car is driving on a wet road "], "question": "which entity is running continuously", "label": 0}, {"captions": ["people clap and speak in the distance", "winds blows roughly as a vehicle races past"], "sample_ids": ["wwyfGO2J4", "xjvTpk2Zpr8"], "start_seconds": ["90", "70"], "properties": ["clap, distance, speak", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a person is snoring while sleeping", "an engine runs loudly"], "sample_ids": ["vJrjSeP17yE", "vqZuVbG6-HI"], "start_seconds": ["40", "130"], "properties": ["a person is sleeping, snoring, person", "loud, engine, run"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person snoring loudly", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "birds chirp and objects are moved around"], "sample_ids": ["vVhthZ45k3Y", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["cat, purr, hiss", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage is blurry and out of focus", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a person is snoring while sleeping", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vJrjSeP17yE", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["a person is sleeping, snoring, person", "sheep, baa, birds"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a person snoring loudly", "a goat bleats and birds chirp"], "question": "which entity is a person", "label": 0}, {"captions": ["an animal growls followed by birds chirping", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["y2ZBGpgbhHM", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["animal, growl, bird", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["t25U-v4k4ts", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["a, chirps, bird", "animal, grunts, snorts"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman is speaking and a baby is crying"], "question": "which entity has a bird chirp?", "label": 0}, {"captions": ["a person speaks briefly", "wind blowing followed by a zoom"], "sample_ids": ["zOZleIRqZm4", "vr8ZXjEBhMQ"], "start_seconds": ["80", "150"], "properties": ["person, talk, brief", "wind, blow, zoom"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not talking", "label": 1}, {"captions": ["some men converse over an engine running", "a man speaks as a car is passing by"], "sample_ids": ["sCiy7QS1U", "sK4u5T8hW78"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "some tunes played by whistling"], "sample_ids": ["w2bYrCVLT60", "u6BnG6YZqJ4"], "start_seconds": ["120", "0"], "properties": ["ducks, speak, quack", "tune, play, whistling"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["a small engine spits as it runs", "a propeller rotates loudly and intensely"], "sample_ids": ["sZvwOuuPGP0", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["spits, engine, runs", "loud, intense, propeller"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a medium engine is running ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a dog barks and whimpers", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sShpyu2l4YQ", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["barks, whimpers, dog", "music, gunfire, explosion"], "captions_pred_video": ["the puppies are playing with a toy", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog is barking and growling", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vs65y4qmyBE", "su6FAOcOA8c"], "start_seconds": ["340", "4"], "properties": ["wind, blows, strongly", "engine, idle, woman"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "birds chirp in the background while a horse neighs followed by a girl speaking"], "sample_ids": ["zcDwZ6W7E3E", "s59PfAghdkM"], "start_seconds": ["180", "0"], "properties": ["a, man, speak", "bird, chirp, background, horse, neigh"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "is an anime scene featuring two people and a horse in the foreground and a fence in the background"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "birds are chirping a horse is neighing and a woman is speaking "], "question": "which entity has a horse neighing?", "label": 1}, {"captions": ["a baby laugh at a sputter", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sLUnaPT5gM8", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["laugh, sputter, baby", "People, motor, brakes"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", null], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["someone is snoring while sleeping", "water flows and trickles"], "sample_ids": ["ujMt0-D-x2k", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["snore, sleep, someone", "water, flow, trickle"], "captions_pred_video": ["of the dog playing with a toy on the floor", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a person is snoring loudly", "water is splashing and gurgling"], "question": "which entity is not a person", "label": 1}, {"captions": ["an animal quacks rapidly", "people cheer as a vehicle engine revs"], "sample_ids": ["vh30P49Po6s", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["animal, quacks, rapidly", "engine revs, vehicle, people"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a duck is quacking loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["yJ0TePmaOo", "y8WEcpOlT3I"], "start_seconds": ["390", "40"], "properties": ["two hard objects, man, speak", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["birds chirps while a siren signals in the distance", "a stream runs then someone speaks"], "sample_ids": ["uKCSGgof8gI", "wbHTKEJZyhc"], "start_seconds": ["12", "20"], "properties": ["chirps, distance, signal", "stream, run, someone"], "captions_pred_video": ["footage of a street in a small town on a sunny day", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a waterfall is flowing and people are speaking "], "question": "which entity is a stream?", "label": 1}, {"captions": ["someone snores nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["spJCm8tD9Zo", "wwyfGO2J4"], "start_seconds": ["90", "90"], "properties": ["someone snores, nearby, someone", "people, applaud, hoot"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks as several small engines run", "an infant crying frantically"], "sample_ids": ["u9A6VZQCZpU", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a man speaks as a car is passing by"], "sample_ids": ["vzxHnu-SFEw", "sK4u5T8hW78"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "a, car, pass"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which object is moving", "label": 0}, {"captions": ["people speak softly as food sizzles", "paper folding and crinkling"], "sample_ids": ["yhQ2Lg-7qDY", "zPpG3RD8lSs"], "start_seconds": ["130", "20"], "properties": ["food, sizzle, speak", "paper, fold, crinkle"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a faucet is running and a man is speaking", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "people speak as gunfire rings out"], "sample_ids": ["y8WEcpOlT3I", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["harsh, wind, blows", "gunfire, ring, speak"], "captions_pred_video": ["on how to use a sewing machine youtube", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["bees buzz and wind blows", "dishes cling together then a man begins to speak"], "sample_ids": ["tMJne1a4AFI", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["bees buzz, wind blows, bees", "cling, speak, dishes"], "captions_pred_video": ["a swarm of bees on the ground", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a swarm of bees buzzing around", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a frog croaks as other frogs croak in the background"], "sample_ids": ["uEU-Hg5MTN8", "yswmmRZFItk"], "start_seconds": ["27", "0"], "properties": ["a woman, laughs, animal", "background, frog, croak"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a close up of a frog in the water"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "a man speaks as a car is passing by"], "sample_ids": ["sdXV-ylviw", "sK4u5T8hW78"], "start_seconds": ["190", "30"], "properties": ["door, toilet, squeaks", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["people speak as gunfire rings out", "a woman speaks happily and an animal chirps"], "sample_ids": ["wqTCwqVRDlk", "uWAAAL4CIoc"], "start_seconds": ["80", "0"], "properties": ["gunfire, ring, speak", "a woman, chirps, animal"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", null], "captions_pred_audio": ["a man is speaking and a gun is fired", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["a helicopter engine idles continuously", "females talk and laugh over gusting wind"], "sample_ids": ["ugHJF0hfYkg", "un9VQlzgZM"], "start_seconds": ["10", "5"], "properties": ["engine, idle, continuously", "females, talk, laugh"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["a man speaks and is typing on a keyboard", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["x9JovgqUcs", "wDVMhEdTiVw"], "start_seconds": ["500", "30"], "properties": ["a, man, speaks, keyboard", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["a weapon fires multiple times", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sMC07Ucy7kg", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["weapon, fire, multiple", "rustling, ducks, quack"], "captions_pred_video": ["footage is from a car's point of view", null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a duck quacks and a woman speaks"], "question": "which entity is more likely to be used in a hunting situation", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "water pouring and bubbling"], "sample_ids": ["ukg5L09Wpvo", "uyRfq-jKPpo"], "start_seconds": ["150", "50"], "properties": ["clickety-clack, train, whistle", "water, bubbles, pouring"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "water splashes and a motorboat passes as people yell"], "sample_ids": ["vveS8HT7Uog", "w5W5Kqtc8E"], "start_seconds": ["100", "100"], "properties": ["a man, objects, speak", "water, splashes, motorboat"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more active", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vBHyYJ8pL0", "vbZ-0lGPneg"], "start_seconds": ["2", "30"], "properties": ["noise, door, opening", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a video of a door opening and closing?", "label": 0}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wnpJndXuxLc", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["beeps, loud, whistle", "a woman, laughs, animal"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["viuTg1M-dqg", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["two men, speak, follow", "People, motor, brakes"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more people", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uoGVs9yUqY4", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["multiple, vocalize, wind", "rooster, crow, background, men"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a rooster?", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "plastic is tapped on while someone speaks"], "sample_ids": ["sTpirNYo8vQ", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["a, tone, fast", "plastic, tap, speak"], "captions_pred_video": ["of a man taking a selfie on a bus", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a woman speaks as frying food sizzles", "a toilet flushes and a female speaks"], "sample_ids": ["wTideSjRFS0", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["food, sizzle, woman", "female, flushes, toilet"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a toilet flushes and a man speaks"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a man speaks as a motor runs in the background"], "sample_ids": ["uOpoD0gGXcs", "xZepNM9qcRA"], "start_seconds": ["120", "30"], "properties": ["chirps, woman, bird", "background, motor, run"], "captions_pred_video": ["a herd of cows grazing in the field", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a man speaking to a motor?", "label": 1}, {"captions": ["a dog barks and whimpers", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["sShpyu2l4YQ", "zY3icUyMdh8"], "start_seconds": ["0", "20"], "properties": ["barks, whimpers, dog", "dog, bark, engine"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a dog is barking and growling", "a car is driving and dogs are barking and squealing "], "question": "which dog barks and whimpers", "label": 0}, {"captions": ["a woman talking as an infant is crying", "a man speaks then multiple motorcycles pass by"], "sample_ids": ["tMbMDvT50j8", "zcDwZ6W7E3E"], "start_seconds": ["12", "180"], "properties": ["a, talk, infant", "a, man, speak"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a weapon fires multiple times"], "sample_ids": ["zcDwZ6W7E3E", "sMC07Ucy7kg"], "start_seconds": ["180", "10"], "properties": ["man, speak, motorcycles", "weapon, fire, multiple"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage is from a car's point of view"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["water runs into a sink while men speak", "running water in a faucet with some clinks"], "sample_ids": ["vzceMbklWc", "zNRChLjqcU"], "start_seconds": ["180", "220"], "properties": ["water, sink, run", "water, faucet, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "water is running from a faucet into a sink"], "question": "which entity has water running into it", "label": 0}, {"captions": ["a man speaks as a car is passing by", "a car accelerates and wind blows"], "sample_ids": ["sK4u5T8hW78", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["a, car, pass", "accelerates, wind, blows"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which car is moving faster", "label": 1}, {"captions": ["an airplane engine spools and people speak", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wTjoRj1se3U", "sLUnaPT5gM8"], "start_seconds": ["390", "0"], "properties": ["airplane, engine, spool", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a jet engine is running and people are talking", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["people speak and tapping occurs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tFCUUGdREgA", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["people, tap, speak", "airplane, boy, fly"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a plane flying by?", "label": 1}, {"captions": ["people speak as gunfire rings out", "a toilet flushes and a female speaks"], "sample_ids": ["wqTCwqVRDlk", "yaln9y8I7ms"], "start_seconds": ["80", "230"], "properties": ["gunfire, ring, speak", "female, flushes, toilet"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a toilet flushes and a man speaks"], "question": "which entity is more likely to be in a bathroom?", "label": 1}, {"captions": ["water rushes by", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["x-PeY8Yb8M4", "vfYTJq7nU"], "start_seconds": ["300", "130"], "properties": ["water, rushes, by", "rustling, ducks, quack"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", null], "captions_pred_audio": ["a car is driving on a wet road ", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "people cheer as a vehicle engine revs"], "sample_ids": ["sQGXqGcwOTc", "xjhAnI2q6hM"], "start_seconds": ["3", "6"], "properties": ["audio, kid, giggles", "engine revs, vehicle, people"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["ukg5L09Wpvo", "zj2R0XoFr5k"], "start_seconds": ["150", "50"], "properties": ["a train, a horn, a bell", "airplane, boy, fly"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vVhthZ45k3Y", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["cat, purr, hiss", "gun, shoot, water"], "captions_pred_video": ["footage is blurry and out of focus", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause injury", "label": 1}, {"captions": ["water splashes as an animal walks through", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w1ir-sZ3Im8", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["animal, water, splashes", "three men, wind, flow"], "captions_pred_video": ["footage of a group of people riding horses through a river", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a woman speaks and then a man speaks"], "sample_ids": ["yPUYU6t3rwo", "vbpKkWvfOu4"], "start_seconds": ["370", "560"], "properties": ["birds chirp, objects are moved around, birds", "a, man, speaks"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["insects buzz and a man speaks", "a woman is speaking and a man is speaking"], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "water splashes as an animal walks through"], "sample_ids": ["vXlk0lIQBFo", "w1ir-sZ3Im8"], "start_seconds": ["470", "90"], "properties": ["wind, speak, vocalize", "animal, water, splashes"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vh30P49Po6s", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["loud, continuous, quacks", "gun, shoot, water"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a duck is quacking loudly", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is louder", "label": 0}, {"captions": ["running water in a faucet with some clinks", "running water in a faucet with some clinks"], "sample_ids": ["zNRChLjqcU", "zNRChLjqcU"], "start_seconds": ["220", "220"], "properties": ["water, faucet, run", "water, faucet, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "water is running from a faucet into a sink"], "question": "which entity is a faucet?", "label": 0}, {"captions": ["an airplane engine spools and people speak", "water splashes as an animal walks through"], "sample_ids": ["wTjoRj1se3U", "w1ir-sZ3Im8"], "start_seconds": ["390", "90"], "properties": ["airplane, engine, spool", "animal, water, splashes"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a jet engine is running and people are talking", "water splashes and gurgles as people speak"], "question": "which entity is a moving object", "label": 1}, {"captions": ["an animal quacks rapidly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vh30P49Po6s", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["animal, quacks, rapidly", "loud, laughter, intermittent"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a duck is quacking loudly", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "loud ringing of a telephone stops followed by a man speaking and a digital beep"], "sample_ids": ["wz7N8YRy74I", "uzQnlJXBbOM"], "start_seconds": ["30", "50"], "properties": ["rooster, crow, background, people", "ringing, beep, stop"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of a person using a cell phone on a table"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a telephone rings and a man speaks"], "question": "which entity is a recording of a telephone call?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["uRExseg-0XI", "wwyfGO2J4"], "start_seconds": ["210", "90"], "properties": ["woman, man, water", "people, applaud, hoot"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", null], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "people are clapping and speaking with background noise "], "question": "which entity has more people", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a car accelerates and wind blows"], "sample_ids": ["sHbXC6na9hg", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["a person, saw, wood", "accelerates, wind, blows"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", null], "captions_pred_audio": ["an engine is idling and vibrating", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a woman speaks as she rubs two objects together"], "sample_ids": ["uOpoD0gGXcs", "vzxHnu-SFEw"], "start_seconds": ["120", "80"], "properties": ["chirps, woman, bird", "two objects, woman, speak"], "captions_pred_video": ["a herd of cows grazing in the field", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman is speaking?", "label": 1}, {"captions": ["a man speaks uses a drill", "birds chirp and objects are moved around"], "sample_ids": ["x5eIC7S0fbg", "yPUYU6t3rwo"], "start_seconds": ["60", "370"], "properties": ["A man is speaking, uses a drill, and is a tool", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and using a power tool ", "insects buzz and a man speaks"], "question": "which entity is a tool", "label": 0}, {"captions": ["a man speaks uses a drill", "an airplane engine runs"], "sample_ids": ["x5eIC7S0fbg", "yVPZ2MNWpms"], "start_seconds": ["60", "0"], "properties": ["A man is speaking, uses a drill, and is a tool", "engine, airplane, runs"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a car is driving by on the road "], "question": "which entity is a tool", "label": 0}, {"captions": ["a horn honks and then loudly blares", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wnpJndXuxLc", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["horn, honk, loud", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wtDqrBygTcU", "vYkA3cfXp5Q"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "engine, accelerate, idle"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and a motor is running", "an engine is idling"], "question": "which engine is running", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "loud clanking and banging with brief male speech"], "sample_ids": ["vbpKkWvfOu4", "sWZzXuWYY"], "start_seconds": ["560", "420"], "properties": ["a, woman, man", "male, speech, banging"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a sewing machine runs and a man speaks"], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a man speaks followed by another man speaking outside"], "sample_ids": ["sAam2NqGhLY", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "two men, speak, follow"], "captions_pred_video": ["of a little girl sleeping on a couch", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a person is snoring", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "people cheer as a vehicle engine revs"], "sample_ids": ["soTOh3zYJfY", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["vehicle, skid, tires", "engine revs, vehicle, people"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a truck is revving its engine and a man is speaking "], "question": "which vehicle is skidding", "label": 0}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "people applaud and hoot and chat quietly"], "sample_ids": ["zALy31PjDl0", "wwyfGO2J4"], "start_seconds": ["21", "90"], "properties": ["a man, a vehicle, a horn", "people, applaud, hoot"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", null], "captions_pred_audio": ["a man is speaking and a car horn is honking", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "people cheer as a vehicle engine revs"], "sample_ids": ["y8WEcpOlT3I", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["wind, speak, buffeting", "engine revs, vehicle, people"], "captions_pred_video": ["on how to use a sewing machine youtube", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sjlVMgdGSK0", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["accelerates, vehicle, race car", "male, duck, laugh"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a stream of water runs briefly"], "sample_ids": ["weDbePuc-Xc", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["music, slaps, human", "stream, water, run"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks as a machine runs", "paper folding and crinkling"], "sample_ids": ["vD6lYD1l0BY", "zPpG3RD8lSs"], "start_seconds": ["330", "20"], "properties": ["a, machine, run", "paper, fold, crinkle"], "captions_pred_video": ["game controller being held in the hands of the person", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["a motor idles, accelerates, then slows down.", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["vYkA3cfXp5Q", "tezvROoo4bs"], "start_seconds": ["30", "40"], "properties": ["speed, idle, accelerate", "audio, throttle, speaking"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["an engine is idling", "a car accelerates and revs while a man speaks "], "question": "which entity is a video of a motor?", "label": 0}, {"captions": ["dishes cling together then a man begins to speak", "a sleeping person emits a gravely snore"], "sample_ids": ["sQGXqGcwOTc", "w2JXXIAdUdg"], "start_seconds": ["3", "10"], "properties": ["cling, speak, dishes", "emits, sleeping, person"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a person snoring and a dog whimpering"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "a woman talking as an infant is crying"], "sample_ids": ["x6ijhqRY38s", "tMbMDvT50j8"], "start_seconds": ["250", "12"], "properties": ["bowl, silverware, man", "a, talk, infant"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "shows a little girl covering her face with her hands while sitting at a table"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a baby cries and a woman speaks"], "question": "which entity is about a person talking?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a train horn blows as it passes by"], "sample_ids": ["sncRqQ67iJU", "zVacuqSb4LI"], "start_seconds": ["460", "30"], "properties": ["loud, repeatedly, man", "horn, blows, train"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a person is snoring", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a man talks while vehicles pass by", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sK4u5T8hW78", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["a, man, talk", "loud, laughter, intermittent"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone snores nearby", "a man speaks as a car is passing by"], "sample_ids": ["spJCm8tD9Zo", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a, car, pass"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a woman speaks over sizzling noise"], "sample_ids": ["uWPRNLnpy7Y", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["accelerate, laugh, vehicle", "noise, woman, speak"], "captions_pred_video": ["is taken from a car driving down the street", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person speaking over noise?", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "winds blows roughly as a vehicle races past"], "sample_ids": ["w5W5Kqtc8E", "xjvTpk2Zpr8"], "start_seconds": ["100", "70"], "properties": ["wind, engine, scream", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "water flows and trickles"], "sample_ids": ["sDSppXIlJrs", "tB7hWb9gTuQ"], "start_seconds": ["27", "30"], "properties": ["microphone, water, wind", "water, flow, trickle"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["the wind is blowing and water is splashing", "water is splashing and gurgling"], "question": "which entity is a video of water flowing?", "label": 1}, {"captions": ["a person sniffles and sneezes", "water quietly rushes by while birds chirp in the background"], "sample_ids": ["uRlbY6aoBU", "sYITalLZjj4"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "water, rushes, background, birds"], "captions_pred_video": [null, "two ducks are swimming in the water near each other"], "captions_pred_audio": ["a man is sneezing ", "wind blows and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a baby cries and a woman moans", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["smDKStoHBJo", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["a, cry, woman", "female, spraying, scream"], "captions_pred_video": ["a man holding a crying baby in his arms", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a woman spraying?", "label": 1}, {"captions": ["a baby laugh at a sputter", "winds blows roughly as a vehicle races past"], "sample_ids": ["sLUnaPT5gM8", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["laugh, sputter, baby", "wind, blows, vehicle"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "someone whistles a tune"], "sample_ids": ["wwyfGO2J4", "sIXTftIuUgw"], "start_seconds": ["90", "90"], "properties": ["people, applaud, hoot", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a machine beeps continuously"], "sample_ids": ["zuua6-5goWw", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["birds, chirp, quiet, man, speaks", "beeps, machine, continuously"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 0}, {"captions": ["a infant makes noise and is excited", "a dog barks and whimpers"], "sample_ids": ["wIJK3-5y0kA", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["noise, excited, infant", "barks, whimpers, dog"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "the puppies are playing with a toy"], "captions_pred_audio": ["a baby cries and a woman speaks", "a dog is barking and growling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["bees buzz and wind blows", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tMJne1a4AFI", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["bees buzz, wind blows, bees", "engine, laugh, loud"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a swarm of bees buzzing around", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["xZepNM9qcRA", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["background, motor, run", "engine revs, vehicle, people"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a truck is revving its engine and a man is speaking "], "question": "which entity has a motor running in the background?", "label": 0}, {"captions": ["waves crash against a shoreline and wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["zdYdyF9-m8U", "viuTg1M-dqg"], "start_seconds": ["7", "30"], "properties": ["wind, crash, shoreline", "two men, speak, follow"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["waves crash and wind blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["ul60S8TXDA8", "uYT5gxnyMWM"], "start_seconds": ["60", "50"], "properties": ["sound, distance, bell", "a, scream, girl"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "a piece of wood is being placed down and sawed"], "sample_ids": ["zO-LSSY92ZM", "uiItxDsDMFI"], "start_seconds": ["30", "30"], "properties": ["liquid, surface, sound", "wood, piece, saw"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["steam is hissing and hissing", "a saw is being used with background noise "], "question": "which entity is being cut", "label": 1}, {"captions": ["a clock ticktocks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["v-g-j2uTByM", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["ticktocks, clock, ticktocks", "loud, jet engine, roar"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a clock is ticking loudly", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["children speak and play together", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yVVP8XvWJTo", "uYT5gxnyMWM"], "start_seconds": ["260", "50"], "properties": ["children, speak, play", "a, scream, girl"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking followed by a scream?", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "a duck quacks loudly and continuously"], "sample_ids": ["sd7xVssqlw", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["accelerates, tires, squealing", "loud, continuous, quacks"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["bees buzz as wind blows", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tMJne1a4AFI", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["bees, buzz, wind", "male, duck, laugh"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a small engine spits as it runs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sZvwOuuPGP0", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["spits, engine, runs", "clickety-clack, train, whistle"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a medium engine is running ", "a train blows its whistle and blows its horn "], "question": "which train whistle keeps going off", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "a man speaks as a car is passing by"], "sample_ids": ["wRBHTgrbiwg", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["birds, chirp, cooing", "a, car, pass"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yYJksgsxx5U", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["audio, woman, silverware", "wind, blow, vehicle"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", null], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a man speaks followed by another man speaking outside"], "sample_ids": ["w1mlz3Pe4fU", "viuTg1M-dqg"], "start_seconds": ["300", "30"], "properties": ["vocalize, chirp, continuously", "two men, speak, follow"], "captions_pred_video": ["of a bird in a cage", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a human", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "an airplane engine spools and people speak"], "sample_ids": ["tDVADusiIoc", "wTjoRj1se3U"], "start_seconds": ["60", "390"], "properties": ["water, radio, man", "airplane, engine, spool"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine is running and people are talking"], "question": "which entity is a video of an airplane engine spooling?", "label": 1}, {"captions": ["a person snoring", "speaking following by laughing and clapping"], "sample_ids": ["t8tv5YRMJUg", "u2f5NpsoHBg"], "start_seconds": ["0", "30"], "properties": ["a person, snore, loud", "person, laugh, clap"], "captions_pred_video": ["of a man getting his face licked by another man", "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a woman is speaking and a crowd is clapping"], "question": "which person is more likely to be clapping", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "some men converse over an engine running"], "sample_ids": ["yeFvk9x0wWI", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["clack, bird, chirp", "men, converse, engine"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["x5cuQjOdM3E", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["cat, meows, young woman", "animal, grunts, chirps"], "captions_pred_video": ["a black background with an airplane flying in the sky", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a cat meows and a woman speaks", "birds are chirping and a rooster is crowing "], "question": "which entity is a domesticated animal", "label": 0}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a duck quacks continuously"], "sample_ids": ["wSVhSdj0F0", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["beep, clang, footsteps", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a infant makes noise and is excited"], "sample_ids": ["sYITalLZjj4", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["water, rushes, background, birds", "noise, excited, infant"], "captions_pred_video": ["two ducks are swimming in the water near each other", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["wind blows and birds chirp", "a baby cries and a woman speaks"], "question": "which entity is quieter", "label": 0}, {"captions": ["water splashes as an animal walks through", "a car accelerates and wind blows"], "sample_ids": ["w1ir-sZ3Im8", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["animal, water, splashes", "accelerates, wind, blows"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "people speak as gunfire rings out"], "sample_ids": ["zCrAfDfv6-A", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["person, mouse, click", "gunfire, ring, speak"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person whistles a song", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["shmR4OZtzqA", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["man, engine, idle", "clickety-clack, train, whistle"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man speaks while a motor runs", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "people cheer as a vehicle engine revs"], "sample_ids": ["xvDdE3zNf8Y", "xjhAnI2q6hM"], "start_seconds": ["120", "6"], "properties": ["A, crumple, paper", "engine revs, vehicle, people"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman speaks and crumples paper", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a man speaks as a motor runs in the background"], "sample_ids": ["su6FAOcOA8c", "xZepNM9qcRA"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "background, motor, run"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xKB8O8LTs6s", "yDoT73BWsdA"], "start_seconds": ["70", "10"], "properties": ["music, gunfire, explosion", "engine, revs, vehicle"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a race car accelerates and revs its engine "], "question": "which entity is more quiet", "label": 1}, {"captions": ["children speak and play together", "a toilet flushes and water drains"], "sample_ids": ["yVVP8XvWJTo", "sfAvvZwdLCY"], "start_seconds": ["260", "20"], "properties": ["children, speak, play", "water drains, flushes, water"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of the toilet in the bathroom"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vKrYfzleLB8", "vb1fPSDI4c"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "multiple, people, yell"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", null], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking?", "label": 1}, {"captions": ["someone whistles a song", "winds blows roughly as a vehicle races past"], "sample_ids": ["sIXTftIuUgw", "xjvTpk2Zpr8"], "start_seconds": ["90", "70"], "properties": ["someone, song, whistle", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a person whistling a song", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uoGVs9yUqY4", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["multiple, vocalize, wind", "engine, idle, woman"], "captions_pred_video": ["for how to make a wooden shed door youtube", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vXlk0lIQBFo", "tDVADusiIoc"], "start_seconds": ["470", "60"], "properties": ["wind, speak, vocalize", "water, radio, man"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a piece of wood is being placed down and sawed"], "sample_ids": ["uRExseg-0XI", "uiItxDsDMFI"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "wood, piece, saw"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "a man cutting a log with an axe in the woods"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a saw is being used with background noise "], "question": "which entity is about a piece of wood being sawed?", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "pigeons vocalize and birds chirp"], "sample_ids": ["sShpyu2l4YQ", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["growl, bark, yip", "vocalize, bird, chirp"], "captions_pred_video": ["the puppies are playing with a toy", "of the pigeon in the cage"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tDlfY3nmx1A", "zFjIWfSD-4"], "start_seconds": ["160", "410"], "properties": ["applause, laugh, man", "People, motor, brakes"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", null], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a large bell chimes back and forth loudly", "pigeons vocalize and birds chirp"], "sample_ids": ["w2M4i1mklOA", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["loud, chime, bell", "vocalize, bird, chirp"], "captions_pred_video": ["footage of an antique clock", "of the pigeon in the cage"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "a stream of water flows as people talk and wind blows"], "sample_ids": ["w5W5Kqtc8E", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a man speaks as horns blow", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tHyNqRyK34A", "ukg5L09Wpvo"], "start_seconds": ["24", "150"], "properties": ["a, man, speaks", "clickety-clack, train, whistle"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "vehicles pass by on a roadway"], "sample_ids": ["xyL9F5VrjkE", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["wind, motor, distance", "pass, vehicle, roadway"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a fire truck entering a garage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["y1saVTXsKwc", "tDVADusiIoc"], "start_seconds": ["80", "60"], "properties": ["a, dog, talk", "water, radio, man"], "captions_pred_video": ["a dog playing with a pink ball", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["a fly buzzes around loudly as birds chirp", "a train horn blows as it passes by"], "sample_ids": ["uJV8NDaHqqk", "zVacuqSb4LI"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "horn, blows, train"], "captions_pred_video": ["a bee hive in a wooden box", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a swarm of bees buzzing around", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "paper is crumpling consistently"], "sample_ids": ["uYT5gxnyMWM", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["person, spray, yell", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "paper is crumpled and crinkled"], "question": "which entity is a video of a person speaking over spraying and another person yelling?", "label": 0}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a telephone rings followed by a woman talking"], "sample_ids": ["weDbePuc-Xc", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["cartoon character, music, vocalize", "ring, talk, woman"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y2bVZ7rz-5M", "sSMl2vc3ek"], "start_seconds": ["280", "20"], "properties": ["motor noise, horn, siren", "loud, multiple, distance"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a person snoring loudly"], "question": "which entity is louder", "label": 0}, {"captions": ["an adult male speaks and dials a rotary phone", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tK4VlLsNxak", "tdWhHV3X25Q"], "start_seconds": ["120", "60"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "applause, audience, yells"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uiS58TNyUiw", "wDVMhEdTiVw"], "start_seconds": ["430", "30"], "properties": ["audio, man, speaking", "gun, shoot, water"], "captions_pred_video": ["of the pigeon in the cage", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "birds chirp and objects are moved around"], "sample_ids": ["vKrYfzleLB8", "yPUYU6t3rwo"], "start_seconds": ["110", "370"], "properties": ["a, ring, gunshots", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "wind blowing followed by a zoom"], "sample_ids": ["uPDn2BFTHk", "vr8ZXjEBhMQ"], "start_seconds": ["140", "150"], "properties": ["woman, laughs, speaks", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a baby laughs and a woman speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a video of a child and a woman laughing?", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "a car accelerates and wind blows"], "sample_ids": ["sa6TLVbooCc", "u0TrcHhkPQ"], "start_seconds": ["240", "20"], "properties": ["people, laugh, child", "accelerates, wind, blows"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", null], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["someone whistles a song", "a train engine runs and a horn blows"], "sample_ids": ["sIXTftIuUgw", "zPX9o1uDiI"], "start_seconds": ["90", "40"], "properties": ["someone, song, whistle", "engine, horn, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is a train", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["uPDn2BFTHk", "xjhAnI2q6hM"], "start_seconds": ["140", "6"], "properties": ["woman, laughs, speaks", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a woman speaks as she rubs two objects together"], "sample_ids": ["yajyRTUQk3U", "vzxHnu-SFEw"], "start_seconds": ["400", "80"], "properties": ["noise, woman, speak", "two objects, woman, speak"], "captions_pred_video": ["- a woman cooking in the kitchen", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman speaks over sizzling noise", "label": 0}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "some tunes played by whistling"], "sample_ids": ["slZLHwNbbt4", "u6BnG6YZqJ4"], "start_seconds": ["300", "0"], "properties": ["clap, distance, horn", "tune, play, whistling"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "water flows as men speak and yell"], "sample_ids": ["t97k0cejSQE", "vJ7JPEFhyLA"], "start_seconds": ["250", "16"], "properties": ["bird, chirp, insect", "water, flow, men"], "captions_pred_video": ["a bee on a purple thistle flower", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "birds chirp and an insect buzzes around"], "sample_ids": ["sYITalLZjj4", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["water, rushes, background, birds", "bird, chirp, insect"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a bee on a purple thistle flower"], "captions_pred_audio": ["wind blows and birds chirp", "a bee buzzes and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "an infant crying as a woman laughs"], "sample_ids": ["w2JXXIAdUdg", "xhmRY9yhC7c"], "start_seconds": ["10", "20"], "properties": ["emits, sleeping, person", "a, laugh, infant"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person is snoring while sleeping", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vJrjSeP17yE", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["a person is sleeping, snoring, person", "three men, wind, flow"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a person", "label": 0}, {"captions": ["people applaud and hoot and chat quietly", "an engine runs loudly"], "sample_ids": ["wwyfGO2J4", "vqZuVbG6-HI"], "start_seconds": ["90", "130"], "properties": ["people, applaud, hoot", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "some men converse over an engine running"], "sample_ids": ["wnpJndXuxLc", "sCiy7QS1U"], "start_seconds": ["50", "300"], "properties": ["beeps, loud, whistle", "men, converse, engine"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a train?", "label": 0}, {"captions": ["an adult woman and an adult man speak", "a man speaks, then dials a rotary telephone"], "sample_ids": ["zTLVJCo4WEE", "tK4VlLsNxak"], "start_seconds": ["30", "120"], "properties": ["two people, adult, speak", "a, dial, telephone"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "person is wearing a headset and holding a remote control in his hand"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking and using a sewing machine"], "question": "which entity shows a man speaking?", "label": 1}, {"captions": ["a weapon fires multiple times", "a duck quacks continuously"], "sample_ids": ["sMC07Ucy7kg", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["weapon, fire, multiple", "quacks, continuously, duck"], "captions_pred_video": ["footage is from a car's point of view", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wjsXBsc7M40", "tDVADusiIoc"], "start_seconds": ["10", "60"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "water, radio, man"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["y2bVZ7rz-5M", "uEU-Hg5MTN8"], "start_seconds": ["280", "27"], "properties": ["engine, horn, siren", "animal, grunts, snorts"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking and a baby is crying"], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a frog vocalizes while birds chirp", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vMf1dLD6Sng", "vJ7JPEFhyLA"], "start_seconds": ["6", "16"], "properties": ["frog, bird, vocalize", "three men, wind, flow"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a frog croaks loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a frog?", "label": 1}, {"captions": ["people speak and tapping occurs", "some tunes played by whistling"], "sample_ids": ["tFCUUGdREgA", "u6BnG6YZqJ4"], "start_seconds": ["70", "0"], "properties": ["people, tap, speak", "tune, play, whistling"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "an airplane flies overhead as a woman speaks"], "sample_ids": ["su6FAOcOA8c", "zj2R0XoFr5k"], "start_seconds": ["4", "50"], "properties": ["engine, run, woman", "airplane, fly, overhead"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying overhead", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a person screams glaringly"], "sample_ids": ["zFjIWfSD-4", "xC8kbrKJmco"], "start_seconds": ["410", "0"], "properties": ["People, motor, brakes", "glaringly, screams, person"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a goat is bleating "], "question": "which entity is more agressive", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yPUYU6t3rwo", "tDVADusiIoc"], "start_seconds": ["370", "60"], "properties": ["birds chirp, objects are moved around, birds", "water, radio, man"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["insects buzz and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a helicopter engine runs continuously"], "sample_ids": ["tOSWIURC-4", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["engine, work, nearby", "engine, running, continuously"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a lawn mower is running ", "a helicopter is flying overhead "], "question": "which entity has a running engine", "label": 1}, {"captions": ["multiple ducks quack continuously", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["wfHeoPDLMaM", "s7knHCFW82w"], "start_seconds": ["30", "30"], "properties": ["multiple, quack, continuously", "blow horn, get close, train"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["ducks are quacking", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is a train", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zF8yoL0rkbI", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["engine, run, someone", "rustling, ducks, quack"], "captions_pred_video": ["footage of the traffic on the street at night", null], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a duck quacks and a woman speaks"], "question": "which entity is about a vehicle engine running?", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "a car accelerates and wind blows"], "sample_ids": ["s3cTDAj31g", "u0TrcHhkPQ"], "start_seconds": ["80", "20"], "properties": ["man, talk, woman", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sa6TLVbooCc", "xKB8O8LTs6s"], "start_seconds": ["240", "70"], "properties": ["people, laugh, child", "music, gunfire, explosion"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["an airplane accelerates briefly", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zjTG0gaGCUI", "yDoT73BWsdA"], "start_seconds": ["80", "10"], "properties": ["accelerates, airplane, briefly", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a race car accelerates and revs its engine "], "question": "which is a vehicle", "label": 1}, {"captions": ["a toilet flushes and water drains", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sfAvvZwdLCY", "vfYTJq7nU"], "start_seconds": ["20", "130"], "properties": ["water drains, flushes, water", "rustling, ducks, quack"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a duck quacks and a woman speaks"], "question": "which entity is about water?", "label": 0}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["y2ZBGpgbhHM", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["birds, tweet, pant", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about animals?", "label": 0}, {"captions": ["a rumble grows louder", "people applaud and hoot and chat quietly"], "sample_ids": ["y4MY9mp8-TA", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["loudness, increase, rumble", "people, applaud, hoot"], "captions_pred_video": ["a helicopter flying in the sky", null], "captions_pred_audio": ["a helicopter flies overhead ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a stream of water runs briefly"], "sample_ids": ["weDbePuc-Xc", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["cartoon character, music, vocalize", "stream, water, run"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "an engine runs loudly"], "sample_ids": ["xO-Q2BlIIPU", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["two men, exclamation, speak", "loud, engine, run"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a power tool runs and touches a surface"], "sample_ids": ["s3cTDAj31g", "zfvPRf3chY"], "start_seconds": ["80", "290"], "properties": ["man, talk, woman", "power tool, run, touch"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking while a power tool is being used "], "question": "which entity is a machine", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a man speaks as a machine runs"], "sample_ids": ["tDlysoZiA1I", "vD6lYD1l0BY"], "start_seconds": ["0", "330"], "properties": ["animal, grunts, chirps", "a, machine, run"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "game controller being held in the hands of the person"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking and dishes are being washed "], "question": "which entity is a man speaking to a machine?", "label": 1}, {"captions": ["birds vocalize and a man speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["v0wPrLBI3hg", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["vocalize, bird, speak", "three men, wind, flow"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["paper is crumpling consistently", "water is sprayed across a hard surface"], "sample_ids": ["v5cSxLaHADY", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "water, spray, surface"], "captions_pred_video": ["footage of the person holding a pair of scissors", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["paper is crumpled and crinkled", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a horn honks and then loudly blares", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wnpJndXuxLc", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["horn, honk, loud", "engine, idle, woman"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is quieter", "label": 1}, {"captions": ["ticking continues without interruption", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["v-g-j2uTByM", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["ticking, continuous, clock", "loud, laughter, intermittent"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a clock is ticking loudly", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is continuous", "label": 0}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "a man speaks followed by another man speaking outside"], "sample_ids": ["wRBHTgrbiwg", "viuTg1M-dqg"], "start_seconds": ["50", "30"], "properties": ["birds, chirp, cooing", "two men, speak, follow"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a car accelerates and wind blows"], "sample_ids": ["siJFXfGWgDk", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["man, woman, vehicle", "accelerates, wind, blows"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a race car accelerates and revs its engine "], "question": "which entity is about a car?", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["uZesmtKZGSw", "w6RTHR6AeAg"], "start_seconds": ["250", "40"], "properties": ["car, track, man", "call, owl, screech"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "an owl hoots and mechanisms operate "], "question": "which entity is a bird?", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tIY7qOV3rEM", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "a, scream, girl"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["birds tweet and squawk", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["w1mlz3Pe4fU", "yajyRTUQk3U"], "start_seconds": ["300", "400"], "properties": ["squawk, tweet, scream", "a woman, something, fried"], "captions_pred_video": ["of a bird in a cage", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and singing", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "water pouring and bubbling"], "sample_ids": ["vMf1dLD6Sng", "uyRfq-jKPpo"], "start_seconds": ["6", "50"], "properties": ["frog, bird, vocalize", "water, bubbles, pouring"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a frog croaks loudly", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vXlk0lIQBFo", "su6FAOcOA8c"], "start_seconds": ["470", "4"], "properties": ["wind, talk, vocalize", "engine, idle, woman"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["frogs croak and vocalize", "an engine runs loudly"], "sample_ids": ["yswmmRZFItk", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["croak, vocalize, frog", "loud, engine, run"], "captions_pred_video": ["a close up of a frog in the water", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a frog is croaking", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a clock ticktocks briefly"], "sample_ids": ["tiDFTC-5vU", "u7C-AEBQM"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a ticktock of a clock"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "vehicles pass by on a roadway"], "sample_ids": ["xzKKf9bKNUo", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["background, noise, snoring", "pass, vehicle, roadway"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person snoring loudly", "a car is driving on the road "], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a drill runs and two people laugh", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tEE3MpBt1sg", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "gun, shoot, water"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a person whistles a meandering tune", "a woman speaks as frying food sizzles"], "sample_ids": ["uFoga8sHpiw", "wTideSjRFS0"], "start_seconds": ["90", "30"], "properties": ["person, tune, whistle", "food, sizzle, woman"], "captions_pred_video": ["footage of a bird in a cage", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking while water is running in the background"], "question": "which entity is a person", "label": 0}, {"captions": ["a vehicle accelerates and squeals tires", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yRx9txMcBl0", "xKB8O8LTs6s"], "start_seconds": ["40", "70"], "properties": ["accelerates, tires, squeals", "music, gunfire, explosion"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a car is revving its engine and skidding ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vYkA3cfXp5Q", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["speed, idle, accelerate", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a dog is whimpering"], "question": "which entity is a still image?", "label": 0}, {"captions": ["three men talk while wind blows and some liquid flows", "a woman speaks as she rubs two objects together"], "sample_ids": ["vJ7JPEFhyLA", "vzxHnu-SFEw"], "start_seconds": ["16", "80"], "properties": ["three men, wind, flow", "two objects, woman, speak"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity shows a woman speaking?", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "paper is crumpling consistently"], "sample_ids": ["vbpKkWvfOu4", "v5cSxLaHADY"], "start_seconds": ["560", "0"], "properties": ["a, man, speaks", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "paper is crumpled and crinkled"], "question": "which entity is a video of a woman speaking and then a man speaking?", "label": 0}, {"captions": ["the wind blows while a vehicle engine runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xyL9F5VrjkE", "tDVADusiIoc"], "start_seconds": ["20", "60"], "properties": ["wind, blows, vehicle", "water, radio, man"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a vehicle running?", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["y8WEcpOlT3I", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["wind, speak, buffeting", "loud, jet engine, roar"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tDlysoZiA1I", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["animal, grunt, chirp", "engine, laugh, loud"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "people cheer as a vehicle engine revs"], "sample_ids": ["tDlysoZiA1I", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["animal, grunt, multiple", "engine revs, vehicle, people"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "three men talk while wind blows and some liquid flows"], "sample_ids": ["x4a9YGIw4ok", "vJ7JPEFhyLA"], "start_seconds": ["120", "16"], "properties": ["water, gurgles, stops", "three men, wind, flow"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet flushes and water splashes", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about liquid flowing?", "label": 1}, {"captions": ["an audience gives applause", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["x6iCUDmRpKQ", "uYT5gxnyMWM"], "start_seconds": ["38", "50"], "properties": ["applause, audience, give", "female, spraying, scream"], "captions_pred_video": ["a black background with the moon and stars in the sky", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a group of people are clapping and cheering", "a woman is speaking and a baby is crying"], "question": "which entity is a performance", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a small engine idles continuously"], "sample_ids": ["zgUgkpk78xU", "y5WII6cTH7k"], "start_seconds": ["70", "40"], "properties": ["clinking, humming, horn", "engine, idle, continuously"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "an engine is knocking and vibrating "], "question": "which entity is a train", "label": 0}, {"captions": ["running water in a faucet with some clinks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zNRChLjqcU", "tdWhHV3X25Q"], "start_seconds": ["220", "60"], "properties": ["water, faucet, run", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "some men converse over an engine running"], "sample_ids": ["u6jIvCtKarQ", "sCiy7QS1U"], "start_seconds": ["70", "300"], "properties": ["a, man, speaks", "men, converse, engine"], "captions_pred_video": ["footage of a person using a blender on a stove top", null], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has more people", "label": 1}, {"captions": ["wind blows strongly", "a motorcycle idles loudly as wind blows"], "sample_ids": ["w8uLijTqtlU", "v7jJS8aAyA"], "start_seconds": ["70", "10"], "properties": ["wind, blows, strongly", "wind, blows, loudly"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a motorcycle engine is idling and vibrating"], "question": "which entity is louder", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a clock ticktocks"], "sample_ids": ["xERFUeZONz8", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an emergency vehicle siren blares", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vf9xf3vMsGM", "wz7N8YRy74I"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "rooster, crow, background, men"], "captions_pred_video": ["of the person washing their hands under the faucet", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["water rushes by", "water flows as men speak and yell"], "sample_ids": ["x-PeY8Yb8M4", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["water, rushes, by", "water, flow, men"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["an insect buzzes around continuously", "a man speaks followed by another man speaking outside"], "sample_ids": ["v25l1jef3JY", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "two men, speak, follow"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single speaker?", "label": 0}, {"captions": ["a kid speaks followed by music playing", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tQWGZLItBXk", "tiDFTC-5vU"], "start_seconds": ["170", "30"], "properties": ["music, kid, speak", "male, duck, laugh"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a telephone rings followed by a woman talking"], "sample_ids": ["sapQIQUhFc", "tGcFnX0GHI"], "start_seconds": ["280", "0"], "properties": ["liquid, flow, distance", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wTjoRj1se3U", "yDoT73BWsdA"], "start_seconds": ["390", "10"], "properties": ["engine, run, people", "engine, revs, vehicle"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a jet engine is running and people are talking", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "an infant crying as a woman laughs"], "sample_ids": ["uYT5gxnyMWM", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["female, spraying, scream", "a, laugh, infant"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person is snoring while sleeping", "people cheer as a vehicle engine revs"], "sample_ids": ["vJrjSeP17yE", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["a person is sleeping, snoring, person", "engine revs, vehicle, people"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person snoring loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an airplane engine runs", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yVPZ2MNWpms", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["engine, airplane, runs", "People, motor, brakes"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["se87d6yxEOA", "tiDFTC-5vU"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "male, duck, laugh"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", null], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["an insect buzzes around continuously", "a person sniffs and sneezes"], "sample_ids": ["v25l1jef3JY", "uRlbY6aoBU"], "start_seconds": ["0", "0"], "properties": ["buzzes, continuously, insect", "sneezes, person, sniffs"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is sneezing "], "question": "which entity is not a person?", "label": 0}, {"captions": ["a crowd yells, reacts and applauds", "waves crash against a shoreline and people speak"], "sample_ids": ["wztCSUxOf8", "yFB25fqfU8I"], "start_seconds": ["130", "300"], "properties": ["a crowd, yells, applauds", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is a natural phenomenon", "label": 1}, {"captions": ["a stream runs then someone speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["wbHTKEJZyhc", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["stream, run, someone", "male, duck, laugh"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and ducks are quacking"], "question": "which entity is a video of a duck quacking?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a woman speaks as she rubs two objects together"], "sample_ids": ["vZAw4apG0Es", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["background, tick, repeat", "two objects, woman, speak"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a clock is ticking and people are talking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a woman speaks and then a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["vbpKkWvfOu4", "sK4u5T8hW78"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "a, car, pass"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["heavy rain splashes as it falls", "multiple birds chirp and an animal grunts"], "sample_ids": ["wP8ZKrlx3oA", "tDlysoZiA1I"], "start_seconds": ["40", "0"], "properties": ["fall, rain, splash", "animal, grunt, multiple"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a heavy rain is falling on a surface", "birds are chirping and a rooster is crowing "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["speaking following by laughing and clapping", "birds chirp and objects are moved around"], "sample_ids": ["u2f5NpsoHBg", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["person, laugh, clap", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "insects buzz and a man speaks"], "question": "which entity is a bird", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "water flows as men speak and yell"], "sample_ids": ["u6jIvCtKarQ", "vJ7JPEFhyLA"], "start_seconds": ["70", "16"], "properties": ["a, man, speaks", "water, flow, men"], "captions_pred_video": ["footage of a person using a blender on a stove top", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water flowing", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zgUgkpk78xU", "xKB8O8LTs6s"], "start_seconds": ["70", "70"], "properties": ["clinking, humming, horn", "music, gunfire, explosion"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a toilet door squeaks as it is opened", "repeated tapping is accompanied by water running and a woman speaking softly"], "sample_ids": ["sdXV-ylviw", "wvKpEYswXO0"], "start_seconds": ["190", "150"], "properties": ["door, toilet, squeaks", "sound, water, running"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is accompanied by water running", "label": 1}, {"captions": ["male speech with light ticking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xO-Q2BlIIPU", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["male, speech, ticking", "two men, woman, birds"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a duck quacks several times", "water rushes and then a vehicle zooms past"], "sample_ids": ["vh30P49Po6s", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["quacks, duck, several", "water, rushes, vehicle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sTpirNYo8vQ", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["a, tone, fast", "three men, wind, flow"], "captions_pred_video": ["of a man taking a selfie on a bus", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a more natural setting", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "water splashes as an animal walks through"], "sample_ids": ["tGcFnX0GHI", "w1ir-sZ3Im8"], "start_seconds": ["0", "90"], "properties": ["ring, talk, woman", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a consistent ticking pattern", "a car accelerates and wind blows"], "sample_ids": ["sCeWURVHfOM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["ticking, pattern, clock", "accelerates, wind, blows"], "captions_pred_video": ["- a close-up view of the clock's inner workings", null], "captions_pred_audio": ["ticking of a clock", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a child speaks in closed space"], "sample_ids": ["yJ0TePmaOo", "yW6FWLSLkx4"], "start_seconds": ["390", "40"], "properties": ["two hard objects, man, speak", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zj2R0XoFr5k", "wqZ135Ssz0"], "start_seconds": ["50", "60"], "properties": ["airplane, fly, woman", "two men, woman, birds"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["scraping and female speech with distant music", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yHeVV-xeOxQ", "tDVADusiIoc"], "start_seconds": ["130", "60"], "properties": ["female, speech, music", "water, radio, man"], "captions_pred_video": ["of a girl milking a goat's udder", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a clock ticktocks briefly", "small dogs yip and bark sharply"], "sample_ids": ["u7C-AEBQM", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["ticktocks, clock, ticktocks briefly", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a ticktock of a clock", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a man talks while a clock does ticktock"], "sample_ids": ["xvDdE3zNf8Y", "spYNpeN7rPY"], "start_seconds": ["120", "1"], "properties": ["a, female, speaks", "a clock, ticktock, man"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and breathing with background noise "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a man speaks as a motor runs in the background"], "sample_ids": ["sfAvvZwdLCY", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "background, motor, run"], "captions_pred_video": ["footage of the toilet in the bathroom", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a car speeding up in the distance"], "sample_ids": ["sG7TyPnFDR0", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["beeps, machine, smoke alarm", "distance, car, speed"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "winds blows roughly as a vehicle races past"], "sample_ids": ["w2M4i1mklOA", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["loud, chime, bell", "wind, blows, vehicle"], "captions_pred_video": ["footage of an antique clock", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a woman speaks and other women and a man talk with her", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vbpKkWvfOu4", "su6FAOcOA8c"], "start_seconds": ["560", "4"], "properties": ["a, woman, man", "engine, idle, woman"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a woman is speaking and a subway train is moving "], "question": "which woman is speaking", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "someone is typing on a computer keyboard"], "sample_ids": ["tEE3MpBt1sg", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["drill, something, laugh", "keyboard, type, computer"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "how to make money on youtube in spanish"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a person is typing on a keyboard"], "question": "which is not a drill", "label": 1}, {"captions": ["motors runs briefly and tires screech", "vehicles pass by on a roadway"], "sample_ids": ["yRx9txMcBl0", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["motors, tires, screech", "pass, vehicle, roadway"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a vehicle accelerates and squeals tires"], "sample_ids": ["sQGXqGcwOTc", "yRx9txMcBl0"], "start_seconds": ["3", "40"], "properties": ["audio, kid, giggles", "accelerates, tires, squeals"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "some men converse over an engine running"], "sample_ids": ["zhx6hoYrHeI", "sCiy7QS1U"], "start_seconds": ["160", "300"], "properties": ["engine, sputter, rough", "men, converse, engine"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a person is snoring while sleeping", "water flows as men speak and yell"], "sample_ids": ["vJrjSeP17yE", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["a person is sleeping, snoring, person", "water, flow, men"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking and yelling?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["yYJksgsxx5U", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["audio, woman, silverware", "a woman, something, fried"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a woman is speaking while food is frying in the background"], "question": "which woman is speaking over chopping and silverware noises", "label": 0}, {"captions": ["a man speaks in the background while a slow tick repeats", "a man speaks as a car is passing by"], "sample_ids": ["vZAw4apG0Es", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "a, car, pass"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a moving object", "label": 1}, {"captions": ["a child speaks", "an infant crying as a woman laughs"], "sample_ids": ["yW6FWLSLkx4", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["a, child, speaks", "a, laugh, infant"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "birds chirp and objects are moved around"], "sample_ids": ["w1mlz3Pe4fU", "yPUYU6t3rwo"], "start_seconds": ["300", "370"], "properties": ["vocalize, chirp, continuously", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a bird in a cage", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds are chirping and singing", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["continuous snoring", "a person sniffles and then sneezes in the distance"], "sample_ids": ["sLkeqCDJIyw", "uRlbY6aoBU"], "start_seconds": ["120", "0"], "properties": ["loud, snoring, noise", "a, distance, sneeze"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "a man is sneezing "], "question": "which entity is not loud", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a duck quacks continuously"], "sample_ids": ["s3cTDAj31g", "vh30P49Po6s"], "start_seconds": ["80", "30"], "properties": ["man, talk, woman", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "paper is crumpling consistently"], "sample_ids": ["zY3icUyMdh8", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["dog, bark, engine", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motorcycle engine is idling", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["vZAqdHZ81yA", "wSVhSdj0F0"], "start_seconds": ["180", "10"], "properties": ["engine, motorcycle, idling", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a car horn honks and keys jangle with background noise "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "an insect buzzes around continuously"], "sample_ids": ["zl9Dqx-j7q4", "v25l1jef3JY"], "start_seconds": ["6", "0"], "properties": ["engine, laugh, loud", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a man driving a car in the dark", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a jet engine roars ", "a fly is buzzing around a microphone "], "question": "which entity is not a human", "label": 1}, {"captions": ["a small engine spits as it runs", "water flows as men speak and yell"], "sample_ids": ["sZvwOuuPGP0", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["spits, engine, runs", "water, flow, men"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and yelling?", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "an engine runs loudly"], "sample_ids": ["sZPuqDgX2V0", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["commentator, race, track", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a lawn mower is running and men are speaking "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a telephone rings followed by a woman talking", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tGcFnX0GHI", "vYkA3cfXp5Q"], "start_seconds": ["0", "30"], "properties": ["ring, talk, woman", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "an adult woman and an adult man speak"], "sample_ids": ["xjhAnI2q6hM", "zTLVJCo4WEE"], "start_seconds": ["6", "30"], "properties": ["wind, blow, loudly", "two people, adult, speak"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman speaks and crickets chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone is burping continuously", "a drill runs and two people laugh"], "sample_ids": ["y636gklDioE", "tEE3MpBt1sg"], "start_seconds": ["20", "50"], "properties": ["burps, burps, burps", "two people, laugh, drill"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a person burps loudly several times", "people are laughing breathing and speaking with background noise "], "question": "which entity is more likely to be a joke", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wqUmIEzuNz4", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["frog, bird, vocalize", "stream, water, flow"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["a cat meows and rustles", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a child speaks in closed space"], "sample_ids": ["tDVADusiIoc", "yW6FWLSLkx4"], "start_seconds": ["60", "40"], "properties": ["water, radio, man", "child, space, speak"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["multiple ducks quack continuously", "a dog barks and whimpers"], "sample_ids": ["wfHeoPDLMaM", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["multiple, quack, continuously", "barks, whimpers, dog"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "the puppies are playing with a toy"], "captions_pred_audio": ["ducks are quacking", "a dog is barking and growling"], "question": "which entity is a dog", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "an airplane engine spools and people speak"], "sample_ids": ["vZAw4apG0Es", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["background, clock, ticktocks", "airplane, engine, spool"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a clock is ticking and people are talking", "a jet engine is running and people are talking"], "question": "which entity is a video of a clock ticking?", "label": 0}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["sofxkNWaP0s", "siJFXfGWgDk"], "start_seconds": ["30", "50"], "properties": ["wind, engine, louder", "a, bird, vehicle"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking and birds are chirping in the background "], "question": "which entity is about a vehicle passing nearby?", "label": 1}, {"captions": ["a cat meows and children speak", "pigeons vocalize and birds chirp"], "sample_ids": ["x5cuQjOdM3E", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["cat, speak, children", "vocalize, bird, chirp"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the pigeon in the cage"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a propeller moves loudly nearby", "a person uses a saw to cut some wood"], "sample_ids": ["ugHJF0hfYkg", "sHbXC6na9hg"], "start_seconds": ["10", "0"], "properties": ["loud, propeller, move", "a person, saw, wood"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a helicopter is flying overhead ", "an engine is idling and vibrating"], "question": "which entity is quieter", "label": 1}, {"captions": ["an animal quacks rapidly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vh30P49Po6s", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["animal, quacks, rapidly", "music, gunfire, explosion"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a duck is quacking loudly", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be a movie", "label": 1}, {"captions": ["people speak and tapping occurs", "a vehicle is skidding and squealing tires"], "sample_ids": ["tFCUUGdREgA", "soTOh3zYJfY"], "start_seconds": ["70", "40"], "properties": ["people, tap, speak", "vehicle, skid, tires"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["ul60S8TXDA8", "yajyRTUQk3U"], "start_seconds": ["60", "400"], "properties": ["sound, distance, bell", "a woman, something, fried"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["people clap and speak in the distance", "water pouring and bubbling"], "sample_ids": ["wwyfGO2J4", "uyRfq-jKPpo"], "start_seconds": ["90", "50"], "properties": ["clap, distance, speak", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sShpyu2l4YQ", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["growl, bark, yip", "stream, water, flow"], "captions_pred_video": ["the puppies are playing with a toy", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["bees buzz as wind blows", "frogs croak and vocalize"], "sample_ids": ["tMJne1a4AFI", "yswmmRZFItk"], "start_seconds": ["0", "0"], "properties": ["bees, buzz, wind", "croak, vocalize, frog"], "captions_pred_video": ["a swarm of bees on the ground", "a close up of a frog in the water"], "captions_pred_audio": ["a swarm of bees buzzing around", "a frog is croaking"], "question": "which animal is more likely to be a frog", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["sWZzXuWYY", "xjvTpk2Zpr8"], "start_seconds": ["420", "70"], "properties": ["male, clanks, thumps", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["siJFXfGWgDk", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["a, bird, vehicle", "engine, idle, woman"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tDlfY3nmx1A", "yajyRTUQk3U"], "start_seconds": ["160", "400"], "properties": ["applause, laugh, man", "a woman, something, fried"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a woman is speaking while food is frying in the background"], "question": "which entity is about food?", "label": 1}, {"captions": ["a duck quacks several times", "a man speaks as a car is passing by"], "sample_ids": ["vh30P49Po6s", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["quacks, duck, several", "a, car, pass"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is moving", "label": 1}, {"captions": ["a man is filing a hard object", "a telephone rings and a bird vocalizes"], "sample_ids": ["vveS8HT7Uog", "skd2PphS6oI"], "start_seconds": ["100", "190"], "properties": ["a man, hard, object", "ring, bird, vocalize"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a telephone bell rings repeatedly "], "question": "which entity is not a bird?", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "vehicles pass by on a roadway"], "sample_ids": ["vddP56-ogds", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["liquid, laughs, man", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a car is driving on the road "], "question": "which entity shows vehicles moving", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "a horn blasts loudly as a train passes"], "sample_ids": ["w2bYrCVLT60", "zsLxS-uLJTw"], "start_seconds": ["120", "20"], "properties": ["ducks, speak, quack", "horn, blast, train"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "footage of the train on the tracks at sunrise or sunset"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a train blows its horn and moves on the tracks "], "question": "which is louder", "label": 0}, {"captions": ["a motorcycle engine is idling", "people speak as gunfire rings out"], "sample_ids": ["vZAqdHZ81yA", "wqTCwqVRDlk"], "start_seconds": ["180", "80"], "properties": ["engine, motorcycle, idling", "gunfire, ring, speak"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an engine is idling loudly", "a man is speaking and a gun is fired"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "water is sprayed across a hard surface"], "sample_ids": ["zcDwZ6W7E3E", "sQwlkXjQabo"], "start_seconds": ["180", "10"], "properties": ["a, man, speak", "water, spray, surface"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "spraying followed by silence"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a person whistles a meandering tune", "a car accelerates and wind blows"], "sample_ids": ["uFoga8sHpiw", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["person, tune, whistle", "accelerates, wind, blows"], "captions_pred_video": ["footage of a bird in a cage", null], "captions_pred_audio": ["a person whistles a song", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman and man are speaking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vbpKkWvfOu4", "vb1fPSDI4c"], "start_seconds": ["560", "30"], "properties": ["two people, speaking, woman, man", "multiple, people, yell"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["people speak then an engine runs", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uMTTDZ2mb4", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["engine, run, people", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a clock ticktocks"], "sample_ids": ["vGj1XLJvNrw", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["wails, wails, pass", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a police car driving down a city street", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["food is frying then a woman speaks", "water splashes and a door squeaks"], "sample_ids": ["ukxt9I7eMMg", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["food, woman, speak", "sound, splash, door"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a dog barks and taps with background noise "], "question": "which entity is silent", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["t97k0cejSQE", "tDlysoZiA1I"], "start_seconds": ["250", "0"], "properties": ["bird, chirp, insect", "animal, grunts, chirps"], "captions_pred_video": ["a bee on a purple thistle flower", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "birds are chirping and a rooster is crowing "], "question": "which entity has a bird chirp and an animal grunts?", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["u6jIvCtKarQ", "uZesmtKZGSw"], "start_seconds": ["70", "250"], "properties": ["a, man, speaks", "men, talk, cars"], "captions_pred_video": ["footage of a person using a blender on a stove top", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a cat meows and children speak", "a clock ticktocks"], "sample_ids": ["x5cuQjOdM3E", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["cat, speak, children", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a black background with an airplane flying in the sky", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a cat meows and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sEprKHm8Sj8", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["car, tires, slows", "female, spraying, scream"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaking with light rustling", "a man speaks over intermittent keyboard taps"], "sample_ids": ["zOZleIRqZm4", "tw76HGONaKg"], "start_seconds": ["80", "570"], "properties": ["light, rustling, man", "audio, man, keyboard"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a machine runs continuously", "a machine engine runs and a man speaks"], "sample_ids": ["wdXV3Pv0jiY", "vs65y4qmyBE"], "start_seconds": ["11", "340"], "properties": ["machine, running, continuously", "engine, run, man"], "captions_pred_video": ["footage is blurry and shaky", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a heavy engine is running and men are speaking "], "question": "which machine is running continuously", "label": 0}, {"captions": ["an electronic device bleeps once", "people applaud and hoot and chat quietly"], "sample_ids": ["tHJ6JSa8Y4", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["bleeps, electronic, device", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a clock is ticking and beeping", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xOZfdgAgJ9o", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["woman, whimpering, speaking", "multiple, people, yell"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an airplane engine spools and people speak", "winds blows roughly as a vehicle races past"], "sample_ids": ["wTjoRj1se3U", "xjvTpk2Zpr8"], "start_seconds": ["390", "70"], "properties": ["airplane, engine, spool", "wind, blows, vehicle"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a jet engine is running and people are talking", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "an electric engine works nearby followed by a child talking"], "sample_ids": ["vK93VuO0yNc", "xSKJGCItUWE"], "start_seconds": ["30", "10"], "properties": ["male voice, bus, rumble", "engine, work, child"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a high pitched engine is running and a child speaks"], "question": "which entity is a machine", "label": 1}, {"captions": ["multiple ducks quack continuously", "a drill drills through something then people begin laughing"], "sample_ids": ["wfHeoPDLMaM", "tEE3MpBt1sg"], "start_seconds": ["30", "50"], "properties": ["multiple, quack, continuously", "drill, something, laugh"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["ducks are quacking", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zj2R0XoFr5k", "wqZ135Ssz0"], "start_seconds": ["50", "60"], "properties": ["airplane, fly, overhead", "two men, woman, birds"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a bird?", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a toilet flushes and a female speaks"], "sample_ids": ["vGj1XLJvNrw", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["wails, wails, pass", "female, flushes, toilet"], "captions_pred_video": ["footage of a police car driving down a city street", "footage is blurry and out of focus"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a toilet flushes and a man speaks"], "question": "which entity is silent", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle is skidding and squealing tires"], "sample_ids": ["sfAvvZwdLCY", "soTOh3zYJfY"], "start_seconds": ["20", "40"], "properties": ["water drains, flushes, water", "vehicle, skid, tires"], "captions_pred_video": ["footage of the toilet in the bathroom", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a toilet is flushed", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a motorcycle engine works nearby", "winds blows roughly as a vehicle races past"], "sample_ids": ["tOSWIURC-4", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["engine, work, nearby", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a lawn mower is running ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["s3cTDAj31g", "tdWhHV3X25Q"], "start_seconds": ["80", "60"], "properties": ["man, talk, woman", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking and a crowd is clapping"], "question": "which entity has more people", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "paper folding and crinkling"], "sample_ids": ["ugHJF0hfYkg", "zPpG3RD8lSs"], "start_seconds": ["10", "20"], "properties": ["loud, intense, propeller", "paper, fold, crinkle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a helicopter is flying overhead ", "the wind blows and a mouse clicks "], "question": "which is quieter", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a clock ticktocks briefly"], "sample_ids": ["zFjIWfSD-4", "u7C-AEBQM"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "ticktocks, clock, ticktocks briefly"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a ticktock of a clock"], "question": "which entity is silent", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a train horn blows as it passes by"], "sample_ids": ["wnpJndXuxLc", "zVacuqSb4LI"], "start_seconds": ["50", "30"], "properties": ["beeps, loud, whistle", "horn, blows, train"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a power tool runs and touches a surface", "birds chirp and objects are moved around"], "sample_ids": ["zfvPRf3chY", "yPUYU6t3rwo"], "start_seconds": ["290", "370"], "properties": ["power tool, run, touch", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "insects buzz and a man speaks"], "question": "which is not a power tool", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "paper is crumpling consistently"], "sample_ids": ["xSKJGCItUWE", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["engine, run, boy", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["some people speak", "birds chirp and objects are moved around"], "sample_ids": ["vbZ-0lGPneg", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a dog barks and whimpers", "sucking and grunting followed by slurping with birds in the background"], "sample_ids": ["sShpyu2l4YQ", "yYEVLuqEytU"], "start_seconds": ["0", "40"], "properties": ["barks, whimpers, dog", "grunt, slurp, background"], "captions_pred_video": ["the puppies are playing with a toy", "a baby goat is being petted by a person's hand"], "captions_pred_audio": ["a dog is barking and growling", "several sheep bleat and a man speaks"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "birds chirp and a dog breathes heavily"], "sample_ids": ["w2JXXIAdUdg", "y2ZBGpgbhHM"], "start_seconds": ["10", "30"], "properties": ["emits, sleeping, person", "dog, chirp, breathe"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "birds chirping and a dog panting"], "question": "which entity is a person", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "a man speaks as a motor runs in the background"], "sample_ids": ["sQwlkXjQabo", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "background, motor, run"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["spraying followed by silence", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "an airplane engine spools and people speak"], "sample_ids": ["yRx9txMcBl0", "wTjoRj1se3U"], "start_seconds": ["40", "390"], "properties": ["accelerates, tires, squeals", "airplane, engine, spool"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a jet engine is running and people are talking"], "question": "which entity is a vehicle", "label": 0}, {"captions": ["people speak as gunfire rings out", "water pouring and bubbling"], "sample_ids": ["wqTCwqVRDlk", "uyRfq-jKPpo"], "start_seconds": ["80", "50"], "properties": ["gunfire, ring, speak", "water, bubbles, pouring"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and a gun is fired", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a car accelerates and wind blows"], "sample_ids": ["w2M4i1mklOA", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["alarm, gears, turn", "accelerates, wind, blows"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["water running down a sink while a man is talking", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vSeGhaZt-aI", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["water, sink, talk", "music, gunfire, explosion"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "birds chirp quietly and an adult man speaks"], "sample_ids": ["zF8yoL0rkbI", "zuua6-5goWw"], "start_seconds": ["30", "30"], "properties": ["engine, run, someone", "birds, chirp, quiet, man, speaks"], "captions_pred_video": ["footage of the traffic on the street at night", "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "birds are chirping and a man is speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "water is sprayed across a hard surface"], "sample_ids": ["zY3icUyMdh8", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["dog, bark, engine", "water, spray, surface"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["y682ml90jGw", "zj2R0XoFr5k"], "start_seconds": ["11", "50"], "properties": ["beeps, series, electronic", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a beeping sound is being made ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sfAvvZwdLCY", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["flushes, drains, water", "People, motor, brakes"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a machine?", "label": 0}, {"captions": ["a person screams glaringly", "people applaud and hoot and chat quietly"], "sample_ids": ["xC8kbrKJmco", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["glaringly, screams, person", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a goat is bleating ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sQGXqGcwOTc", "vb1fPSDI4c"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "multiple, people, yell"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["weDbePuc-Xc", "yeFvk9x0wWI"], "start_seconds": ["40", "30"], "properties": ["music, slaps, human", "clack, bird, chirp"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "birds chirp in the background as a car drives by "], "question": "which entity has a human sniveling?", "label": 0}, {"captions": ["a stream of water flows quickly", "water flows and trickles"], "sample_ids": ["wbHTKEJZyhc", "tB7hWb9gTuQ"], "start_seconds": ["20", "30"], "properties": ["stream, water, flow", "water, flow, trickle"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "water is splashing and gurgling"], "question": "which entity is flowing more slowly", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["v-wcQf4BDY0", "yajyRTUQk3U"], "start_seconds": ["120", "400"], "properties": ["bark, yip, sharply", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a dog barks and growls", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks and birds chirp in the distance", "a duck quacks and men speak and laugh"], "sample_ids": ["uGS7O46tlSo", "tiDFTC-5vU"], "start_seconds": ["70", "30"], "properties": ["a, distance, chirp", "quacks, speak, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a motorcycle engine is idling", "a machine beeps continuously"], "sample_ids": ["vZAqdHZ81yA", "y682ml90jGw"], "start_seconds": ["180", "11"], "properties": ["engine, motorcycle, idling", "beeps, machine, continuously"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a beeping sound is being made "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "an infant crying frantically"], "sample_ids": ["vJvryTwuAV8", "zwOBqeFTgiU"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "cry, infant, frantically"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a goat screams and people speak in the background", "continuous chugging with birds chirping in the background"], "sample_ids": ["xC8kbrKJmco", "xM4joTqDVp4"], "start_seconds": ["0", "160"], "properties": ["background, goat, scream", "background, chirp, birds"], "captions_pred_video": [null, "footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack"], "captions_pred_audio": ["a goat is bleating ", "birds are chirping and a train is moving "], "question": "which entity has a more natural background", "label": 1}, {"captions": ["some clanking with distant murmuring", "a stream of water runs briefly"], "sample_ids": ["uMTTDZ2mb4", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["clanking, murmuring, distant", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vSeGhaZt-aI", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "rooster, crow, background, men"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wSVhSdj0F0", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["horn honks, keys jingle, slam", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a woman speaks happily and an animal chirps"], "sample_ids": ["sSMl2vc3ek", "uWAAAL4CIoc"], "start_seconds": ["20", "0"], "properties": ["loud, multiple, distance", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a dog is barking "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["su6FAOcOA8c", "wnpJndXuxLc"], "start_seconds": ["4", "50"], "properties": ["engine, run, woman", "beeps, loud, whistle"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sncRqQ67iJU", "xBxDz0CFVn0"], "start_seconds": ["460", "30"], "properties": ["loud, repeatedly, man", "stream, water, flow"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a person is snoring", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a person is whistling", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sIXTftIuUgw", "xKB8O8LTs6s"], "start_seconds": ["90", "70"], "properties": ["person, whistling, person", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person whistling a song", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["a person is burping while a girl speaks", "an infant crying frantically"], "sample_ids": ["vdoxuJn9lTc", "zwOBqeFTgiU"], "start_seconds": ["40", "30"], "properties": ["person, burp, girl", "cry, infant, frantically"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of the baby crying in the car seat"], "captions_pred_audio": ["a child speaks followed by a burp", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["an engine starts and increases in power", "a person snores loudly multiple times at a close distance"], "sample_ids": ["zjTG0gaGCUI", "sSMl2vc3ek"], "start_seconds": ["80", "20"], "properties": ["power, increase, engine", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["someone snores nearby", "a man speaks as a car is passing by"], "sample_ids": ["spJCm8tD9Zo", "sK4u5T8hW78"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a, car, pass"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["paper folding and crinkling", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["zPpG3RD8lSs", "tDlfY3nmx1A"], "start_seconds": ["20", "160"], "properties": ["paper, fold, crinkle", "applause, laugh, man"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity is a crowd", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xyx6eNVEYRY", "w5W5Kqtc8E"], "start_seconds": ["380", "100"], "properties": ["loud, engine, muffles", "wind, blow, vehicle"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", null], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a infant makes noise and is excited"], "sample_ids": ["wvKpEYswXO0", "wIJK3-5y0kA"], "start_seconds": ["150", "30"], "properties": ["water, tap, run", "noise, excited, infant"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["slZLHwNbbt4", "vbZ-0lGPneg"], "start_seconds": ["300", "30"], "properties": ["a, horn, run", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a horn?", "label": 0}, {"captions": ["a child yells and another yells", "water is sprayed across a hard surface"], "sample_ids": ["vMDHu7Lxcgw", "sQwlkXjQabo"], "start_seconds": ["410", "10"], "properties": ["two, yell, child", "water, spray, surface"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a car accelerates and wind blows"], "sample_ids": ["yaln9y8I7ms", "u0TrcHhkPQ"], "start_seconds": ["230", "20"], "properties": ["female, flushes, toilet", "accelerates, wind, blows"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "people applaud and hoot and chat quietly"], "sample_ids": ["x5cuQjOdM3E", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["cat, talk, meow", "people, applaud, hoot"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "water pouring and bubbling"], "sample_ids": ["zkKdxzNC97Y", "uyRfq-jKPpo"], "start_seconds": ["27", "50"], "properties": ["loud, bang, noise", "water, bubbles, pouring"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a door is opened and closed", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a man speaks followed by another man speaking outside"], "sample_ids": ["u6jIvCtKarQ", "viuTg1M-dqg"], "start_seconds": ["70", "30"], "properties": ["a, man, speaks", "two men, speak, follow"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zuua6-5goWw", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["birds, chirp, quiet, man, speaks", "three men, wind, flow"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "water is sprayed across a hard surface"], "sample_ids": ["u5RmF3c3Aw", "sQwlkXjQabo"], "start_seconds": ["60", "10"], "properties": ["engine, car, zoom", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["wyllXV6PjKo", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["a baby, a woman, a man", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman speaks and a baby cries", "a jet engine roars and wind blows "], "question": "which entity is a person", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "wind blowing followed by a zoom"], "sample_ids": ["yZp6xizR0yU", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["animal, bleat, cry", "wind, blow, zoom"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "some clanking with distant murmuring"], "sample_ids": ["yYEVLuqEytU", "uMTTDZ2mb4"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "clanking, murmuring, distant"], "captions_pred_video": ["a baby goat is being petted by a person's hand", null], "captions_pred_audio": ["several sheep bleat and a man speaks", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["children cheer as a man speaks then an audience screams", "a mechanical buzzing getting louder"], "sample_ids": ["vJvryTwuAV8", "sEprKHm8Sj8"], "start_seconds": ["16", "90"], "properties": ["audience, cheer, man", "noise, loud, buzzing"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a race car accelerates and revs its engine "], "question": "which entity is a noise", "label": 1}, {"captions": ["a helicopter engine runs continuously", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["ugHJF0hfYkg", "sLUnaPT5gM8"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "loud, laughter, intermittent"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a helicopter is flying overhead ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is intermittent", "label": 1}, {"captions": ["a duck quacks several times", "some tunes played by whistling"], "sample_ids": ["vh30P49Po6s", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["quacks, duck, several", "tune, play, whistling"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a duck is quacking loudly", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["an engine runs loudly", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vqZuVbG6-HI", "vb1fPSDI4c"], "start_seconds": ["130", "30"], "properties": ["loud, engine, run", "multiple, people, yell"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a small engine idles continuously", "people applaud and hoot and chat quietly"], "sample_ids": ["y5WII6cTH7k", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["engine, idle, continuously", "people, applaud, hoot"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", null], "captions_pred_audio": ["an engine is knocking and vibrating ", "people are clapping and speaking with background noise "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "wind blows and women speak as livestock vocalizes"], "sample_ids": ["y8WEcpOlT3I", "vXlk0lIQBFo"], "start_seconds": ["40", "470"], "properties": ["harsh, wind, blows", "wind, speak, vocalize"], "captions_pred_video": ["on how to use a sewing machine youtube", "- a woman and two donkeys in a fenced in area"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "wind chimes are ringing and people are speaking and laughing "], "question": "which entity has a harsher wind blowing", "label": 0}, {"captions": ["multiple ducks quack continuously", "vehicles pass by on a roadway"], "sample_ids": ["wfHeoPDLMaM", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["multiple, quack, continuously", "pass, vehicle, roadway"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of a fire truck entering a garage"], "captions_pred_audio": ["ducks are quacking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a child speaks in closed space"], "sample_ids": ["wyllXV6PjKo", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["a baby, a woman, a man", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman speaks and a baby cries", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child?", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a woman speaks as frying food sizzles"], "sample_ids": ["ziUT9IFTkjg", "wTideSjRFS0"], "start_seconds": ["10", "30"], "properties": ["background, birds, rustling", "food, sizzle, woman"], "captions_pred_video": [null, "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman is speaking while water is running in the background"], "question": "which entity is about a woman speaking?", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "small dogs yip and bark sharply"], "sample_ids": ["t25U-v4k4ts", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["a, chirps, bird", "bark, yip, sharply"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a machine runs", "people speak as gunfire rings out"], "sample_ids": ["vD6lYD1l0BY", "wqTCwqVRDlk"], "start_seconds": ["330", "80"], "properties": ["a, machine, run", "gunfire, ring, speak"], "captions_pred_video": ["game controller being held in the hands of the person", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["someone whistles a tune", "someone whistles a tune"], "sample_ids": ["sIXTftIuUgw", "sIXTftIuUgw"], "start_seconds": ["90", "90"], "properties": ["someone, tune, whistle", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a person whistling a song"], "question": "which entity is a person", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "some men converse over an engine running"], "sample_ids": ["vBslzh7saPw", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["engine, roar, louder", "men, converse, engine"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation over an engine running?", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xKB8O8LTs6s", "tDVADusiIoc"], "start_seconds": ["70", "60"], "properties": ["music, radio, gunshots", "water, radio, man"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a woman speaking over a radio?", "label": 0}, {"captions": ["water flows followed by women screaming", "dishes cling together then a man begins to speak"], "sample_ids": ["w5W5Kqtc8E", "sQGXqGcwOTc"], "start_seconds": ["100", "3"], "properties": ["water, flow, women", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a man speaks as a car is passing by"], "sample_ids": ["vlJS7LN2XyM", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["background, clocks, ticking", "a, car, pass"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a dog barks and whimpers", "water splashing and a person laughs in the distance then a man speaks nearby"], "sample_ids": ["sShpyu2l4YQ", "vddP56-ogds"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "water, splash, person, laugh"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "water is running and gurgling and a man is speaking"], "question": "which entity is more active", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "a clock ticktocks"], "sample_ids": ["wnpJndXuxLc", "v-g-j2uTByM"], "start_seconds": ["50", "30"], "properties": ["beeps, loud, whistle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a clock is ticking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman sneezes then speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x4dZyf9Gbj0", "xKB8O8LTs6s"], "start_seconds": ["130", "70"], "properties": ["sneezes, speaks, woman", "music, gunfire, explosion"], "captions_pred_video": ["footage is blurry and out of focus", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman sneezes and speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a motorcycle engine works nearby", "pigeons vocalize and birds chirp"], "sample_ids": ["tOSWIURC-4", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["engine, work, nearby", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a vehicle is skidding and squealing tires", "a telephone rings followed by a woman talking"], "sample_ids": ["soTOh3zYJfY", "tGcFnX0GHI"], "start_seconds": ["40", "0"], "properties": ["vehicle, skid, tires", "ring, talk, woman"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "someone is snoring while sleeping"], "sample_ids": ["tw76HGONaKg", "ujMt0-D-x2k"], "start_seconds": ["570", "0"], "properties": ["music, click, man", "snore, sleep, someone"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "of the dog playing with a toy on the floor"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a person sniffs and sneezes", "an infant crying frantically"], "sample_ids": ["uRlbY6aoBU", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["sneezes, person, sniffs", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a man is sneezing ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "water flows and trickles"], "sample_ids": ["wz7N8YRy74I", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "water, flow, trickle"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a vehicle accelerates and squeals tires"], "sample_ids": ["weDbePuc-Xc", "yRx9txMcBl0"], "start_seconds": ["40", "40"], "properties": ["music, slaps, human", "accelerates, tires, squeals"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a door slams shut roughly", "an engine runs loudly"], "sample_ids": ["zkKdxzNC97Y", "vqZuVbG6-HI"], "start_seconds": ["27", "130"], "properties": ["a door, slams, shut", "loud, engine, run"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a door is opened and closed", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "a child speaks in closed space"], "sample_ids": ["vfYTJq7nU", "yW6FWLSLkx4"], "start_seconds": ["130", "40"], "properties": ["ducks, quack, man", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a dog barks and whimpers", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sShpyu2l4YQ", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["barks, whimpers, dog", "three men, wind, flow"], "captions_pred_video": ["the puppies are playing with a toy", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "a child speaks in closed space"], "sample_ids": ["ujMt0-D-x2k", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["snoring, rhythmical, nearby", "child, space, speak"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water flows as men speak and yell", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vJ7JPEFhyLA", "zl9Dqx-j7q4"], "start_seconds": ["16", "6"], "properties": ["water, flow, men", "engine, laugh, loud"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a car accelerates and wind blows"], "sample_ids": ["ylpYOorfH4o", "u0TrcHhkPQ"], "start_seconds": ["410", "20"], "properties": ["engine, run, loud", "accelerates, wind, blows"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "wind blows as people chatter quietly"], "sample_ids": ["yYEVLuqEytU", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "wind, chatter, people"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage is blurry and out of focus"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y2ZBGpgbhHM", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["animal, growl, bird", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vZAw4apG0Es", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["people, clock, converse", "multiple, people, yell"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["y2bVZ7rz-5M", "su6FAOcOA8c"], "start_seconds": ["280", "4"], "properties": ["engine, horn, siren", "engine, idle, woman"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xBxDz0CFVn0", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["stream, water, flow", "multiple, people, yell"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vBslzh7saPw", "w5W5Kqtc8E"], "start_seconds": ["90", "100"], "properties": ["power, scream, increase", "wind, blow, vehicle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a woman and man speak while food is frying"], "sample_ids": ["w2M4i1mklOA", "zk-xJGQU8-4"], "start_seconds": ["30", "130"], "properties": ["alarm, gears, turn", "food, man, woman"], "captions_pred_video": ["footage of an antique clock", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "some people speak"], "sample_ids": ["sZPuqDgX2V0", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["commentator, race, track", "some people speak English, some people speak Spanish, some people speak French"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and a dog is whimpering"], "question": "which entity is not a race", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "dishes cling together then a man begins to speak"], "sample_ids": ["y2ZBGpgbhHM", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["birds, tweet, pant", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["birds chirping and a dog panting", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "race cars go around a track as a man commentates"], "sample_ids": ["xSKJGCItUWE", "uZesmtKZGSw"], "start_seconds": ["10", "250"], "properties": ["engine, work, child", "car, track, man"], "captions_pred_video": ["footage of the helicopter flying in the room", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a man commentating?", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "bees buzz and wind blows"], "sample_ids": ["vVhthZ45k3Y", "tMJne1a4AFI"], "start_seconds": ["30", "0"], "properties": ["cat, purr, hiss", "bees buzz, wind blows, bees"], "captions_pred_video": ["footage is blurry and out of focus", "a swarm of bees on the ground"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a swarm of bees buzzing around"], "question": "which entity is more active", "label": 1}, {"captions": ["water runs into a sink while men speak", "water pouring and bubbling"], "sample_ids": ["vzceMbklWc", "uyRfq-jKPpo"], "start_seconds": ["180", "50"], "properties": ["water, sink, run", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["water is running and a man is speaking", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["someone is burping continuously", "a car accelerates and wind blows"], "sample_ids": ["y636gklDioE", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["burps, burps, burps", "accelerates, wind, blows"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "wind blowing followed by a zoom"], "sample_ids": ["s4tUs779vBA", "vr8ZXjEBhMQ"], "start_seconds": ["160", "150"], "properties": ["a, sound, stop", "wind, blow, zoom"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a car is revving and a man is speaking ", "wind blows and a chainsaw cuts through wood "], "question": "which entity has a zoom?", "label": 1}, {"captions": ["water splashes as an animal walks through", "an infant crying frantically"], "sample_ids": ["w1ir-sZ3Im8", "zwOBqeFTgiU"], "start_seconds": ["90", "30"], "properties": ["animal, water, splashes", "cry, infant, frantically"], "captions_pred_video": ["footage of a group of people riding horses through a river", "of the baby crying in the car seat"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a baby cries loudly"], "question": "which entity is a human", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "a man speaks as a car is passing by"], "sample_ids": ["vbpKkWvfOu4", "sK4u5T8hW78"], "start_seconds": ["560", "30"], "properties": ["a, woman, man", "a, car, pass"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xSKJGCItUWE", "sSMl2vc3ek"], "start_seconds": ["10", "20"], "properties": ["engine, work, child", "loud, multiple, distance"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["male speech with light ticking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xO-Q2BlIIPU", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["male, speech, ticking", "airplane, boy, fly"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a cat meows and children speak", "a person is burping while a girl speaks"], "sample_ids": ["x5cuQjOdM3E", "vdoxuJn9lTc"], "start_seconds": ["30", "40"], "properties": ["cat, speak, children", "person, burp, girl"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a cat meows and a woman speaks", "a child speaks followed by a burp"], "question": "which entity is speaking", "label": 1}, {"captions": ["a person is whistling", "wind loudly blowing while people speak in the background followed by a horn blowing"], "sample_ids": ["sIXTftIuUgw", "xjhAnI2q6hM"], "start_seconds": ["90", "6"], "properties": ["person, whistling, person", "wind, blow, loudly"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person whistling a song", "a truck is revving its engine and a man is speaking "], "question": "which entity is blowing", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a machine beeps continuously"], "sample_ids": ["sa6TLVbooCc", "y682ml90jGw"], "start_seconds": ["240", "11"], "properties": ["people, laugh, child", "beeps, machine, continuously"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", null], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "water pouring and bubbling"], "sample_ids": ["su6FAOcOA8c", "uyRfq-jKPpo"], "start_seconds": ["4", "50"], "properties": ["engine, run, woman", "water, bubbles, pouring"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["y4tPJXBKDig", "su6FAOcOA8c"], "start_seconds": ["20", "4"], "properties": ["a, noise, talk", "engine, idle, woman"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a woman is speaking and a subway train is moving "], "question": "which entity is a person", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vh30P49Po6s", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["loud, continuous, quacks", "applause, audience, yells"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking and a crowd is clapping"], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone snores nearby", "a toilet flushes and water drains unevenly"], "sample_ids": ["spJCm8tD9Zo", "vhJWZheqaE"], "start_seconds": ["90", "0"], "properties": ["someone snores, nearby, someone", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a toilet is flushed"], "question": "which entity is a source of noise", "label": 0}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a train horn blows as it passes by"], "sample_ids": ["y8dSeubCNI", "zVacuqSb4LI"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["an engine revving and people talking in the background", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["an animal quacks rapidly", "wind blows as people chatter quietly"], "sample_ids": ["vh30P49Po6s", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["animal, quacks, rapidly", "wind, chatter, people"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage is blurry and out of focus"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a clang followed by a toilet flushing", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wNZ5thZM7XU", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["sound, flush, toilet", "loud, multiple, distance"], "captions_pred_video": ["footage of a toilet in a bathroom stall", null], "captions_pred_audio": ["a toilet flushes", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a small engine spits as it runs", "people cheer as a vehicle engine revs"], "sample_ids": ["sZvwOuuPGP0", "xjhAnI2q6hM"], "start_seconds": ["50", "6"], "properties": ["spits, engine, runs", "engine revs, vehicle, people"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a medium engine is running ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["s4Uz1Ffgo04", "yDoT73BWsdA"], "start_seconds": ["100", "10"], "properties": ["water, rushes, motorcycle", "engine, revs, vehicle"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a man speaks as a motor runs in the background"], "sample_ids": ["yajyRTUQk3U", "xZepNM9qcRA"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "background, motor, run"], "captions_pred_video": ["- a woman cooking in the kitchen", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "water running down a sink while a man is talking"], "sample_ids": ["vKrYfzleLB8", "vSeGhaZt-aI"], "start_seconds": ["110", "50"], "properties": ["a, ring, gunshots", "water, sink, talk"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of a man talking?", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a frog vocalizes while birds chirp"], "sample_ids": ["vXlk0lIQBFo", "vMf1dLD6Sng"], "start_seconds": ["470", "6"], "properties": ["wind, talk, vocalize", "frog, bird, vocalize"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a frog in a pond with pink flowers in the background"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a frog croaks loudly"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["a woman speaks followed by clicks and scraping", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yYJksgsxx5U", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["audio, clicks, scraping", "loud, multiple, distance"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", null], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a woman sneezes then speaks"], "sample_ids": ["xV7Mg1QucSc", "x4dZyf9Gbj0"], "start_seconds": ["14", "130"], "properties": ["alarm, ticktocks, laughs", "sneezes, speaks, woman"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage is blurry and out of focus"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a woman sneezes and speaks"], "question": "which entity is a woman?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a car speeding up in the distance"], "sample_ids": ["vb1fPSDI4c", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["multiple, people, yell", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a crowd of people are talking and laughing", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a muffled toilet flushes and the water drains"], "sample_ids": ["vqZuVbG6-HI", "sfAvvZwdLCY"], "start_seconds": ["130", "20"], "properties": ["background, male, female", "flushes, drains, water"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a toilet is flushed"], "question": "which entity is a toilet?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sK4u5T8hW78", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "a woman, a television program, a bird"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird nearby?", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["s7knHCFW82w", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["blow horn, get close, train", "music, gunfire, explosion"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "wind blows as people chatter quietly"], "sample_ids": ["tw76HGONaKg", "xBxDz0CFVn0"], "start_seconds": ["570", "30"], "properties": ["A, game, keyboard", "wind, chatter, people"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage is blurry and out of focus"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a car accelerates and wind blows"], "sample_ids": ["zuua6-5goWw", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["birds, chirp, quiet, man, speaks", "accelerates, wind, blows"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaking with light rustling", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["zOZleIRqZm4", "xV7Mg1QucSc"], "start_seconds": ["80", "14"], "properties": ["light, rustling, man", "alarm, ticktocks, laughs"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "an alarm clock ticks and a woman laughs"], "question": "which entity is about a clock ticktocking?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "a horn blasts as warning bells ring"], "sample_ids": ["tgbONvsP47Y", "zgUgkpk78xU"], "start_seconds": ["0", "70"], "properties": ["pass, vehicle, roadway", "horn, bells, ring"], "captions_pred_video": ["footage of a fire truck entering a garage", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a car is driving on the road ", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a warning", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a child speaks in closed space"], "sample_ids": ["yRx9txMcBl0", "yW6FWLSLkx4"], "start_seconds": ["40", "40"], "properties": ["accelerates, tires, squeals", "child, space, speak"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["water flows as men speak and yell", "an airplane engine runs"], "sample_ids": ["vJ7JPEFhyLA", "yVPZ2MNWpms"], "start_seconds": ["16", "0"], "properties": ["water, flow, men", "engine, airplane, runs"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tw76HGONaKg", "wz7N8YRy74I"], "start_seconds": ["570", "30"], "properties": ["music, click, man", "rooster, crow, background, men"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more background noise", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["t25U-v4k4ts", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["bees buzz, birds chirp, man speaks", "a, scream, girl"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u7C-AEBQM", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["ticks, rhythmic, quiet", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a ticktock of a clock", "a woman speaks while a helicopter flies overhead "], "question": "which entity is moving", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zkKdxzNC97Y", "wqZ135Ssz0"], "start_seconds": ["27", "60"], "properties": ["hard, surface, door", "two men, woman, birds"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["x6ijhqRY38s", "tiDFTC-5vU"], "start_seconds": ["250", "30"], "properties": ["something metal, glass, hit", "male, duck, laugh"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vf9xf3vMsGM", "uEU-Hg5MTN8"], "start_seconds": ["540", "27"], "properties": ["A man speaks while turning a water faucet on.", "a woman, laughs, animal"], "captions_pred_video": ["of the person washing their hands under the faucet", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video of a person speaking?", "label": 0}, {"captions": ["people speak then an engine runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["uMTTDZ2mb4", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["engine, run, people", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["food is frying then a woman speaks", "a clock ticktocks"], "sample_ids": ["ukxt9I7eMMg", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "some men converse over an engine running"], "sample_ids": ["xjvTpk2Zpr8", "sCiy7QS1U"], "start_seconds": ["70", "300"], "properties": ["engine, run, wind", "men, converse, engine"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a jet engine spools up and takes off", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["vBslzh7saPw", "uOpoD0gGXcs"], "start_seconds": ["90", "120"], "properties": ["engine, spools, takes", "chirps, woman, bird"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a herd of cows grazing in the field"], "captions_pred_audio": ["a jet engine roars and accelerates ", "birds are chirping and a man is speaking"], "question": "which entity is a response to a woman chirping?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "some men converse over an engine running"], "sample_ids": ["uYT5gxnyMWM", "sCiy7QS1U"], "start_seconds": ["50", "300"], "properties": ["person, spray, yell", "men, converse, engine"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a person speaking over spraying and another person yelling?", "label": 0}, {"captions": ["water splashes and a motorboat passes as people yell", "a large crowd cheers and applauds"], "sample_ids": ["w5W5Kqtc8E", "rqfQRErjfk8"], "start_seconds": ["100", "170"], "properties": ["water, splashes, motorboat", "crowd, cheers, applauds"], "captions_pred_video": [null, "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a crowd of people clapping and cheering"], "question": "which entity is more likely to be at a sporting event", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a man laughs and speaks as cats purr and hiss"], "sample_ids": ["u7C-AEBQM", "vVhthZ45k3Y"], "start_seconds": ["30", "30"], "properties": ["ticks, rhythmic, quiet", "cat, purr, hiss"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a cat is meowing"], "question": "which entity is more active", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "several insects fly while two men talk"], "sample_ids": ["uiItxDsDMFI", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["wood, piece, saw", "several, fly, men"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a saw is being used with background noise ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is not being sawed", "label": 1}, {"captions": ["birds vocalize and a man speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["v0wPrLBI3hg", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["vocalize, bird, speak", "two men, woman, birds"], "captions_pred_video": ["footage of the pigeons feeding on the ground", null], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a horn rings out as a machine runs by"], "sample_ids": ["rwTERCUno", "slZLHwNbbt4"], "start_seconds": ["90", "300"], "properties": ["engine, idle, sputter", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["an engine is idling and vibrating", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a person screams glaringly", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xC8kbrKJmco", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["glaringly, screams, person", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a infant makes noise and is excited", "water drips and bubbles as a man speaks"], "sample_ids": ["wIJK3-5y0kA", "vSeGhaZt-aI"], "start_seconds": ["30", "50"], "properties": ["noise, excited, infant", "water, bubbles, speak"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a liquid", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a man speaks over intermittent keyboard taps"], "sample_ids": ["sShpyu2l4YQ", "tw76HGONaKg"], "start_seconds": ["0", "570"], "properties": ["growl, bark, yip", "audio, man, keyboard"], "captions_pred_video": ["the puppies are playing with a toy", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a dog is barking and growling", "a man speaks and types on a computer keyboard "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a woman speaks as she rubs two objects together"], "sample_ids": ["t97k0cejSQE", "vzxHnu-SFEw"], "start_seconds": ["250", "80"], "properties": ["bird, chirp, insect", "two objects, woman, speak"], "captions_pred_video": ["a bee on a purple thistle flower", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["an engine runs and wind blows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vs65y4qmyBE", "uYT5gxnyMWM"], "start_seconds": ["340", "50"], "properties": ["engine, run, wind", "female, spraying, scream"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a beep occurs briefly", "a car accelerates and wind blows"], "sample_ids": ["xtWeJ56-U-g", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["beep, occur, briefly", "accelerates, wind, blows"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", null], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs as a siren and horn sound", "a stream of water runs briefly"], "sample_ids": ["u--KhUW8l1Y", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["sound, vehicle, horn", "stream, water, run"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "small dogs yip and bark sharply"], "sample_ids": ["slZLHwNbbt4", "v-wcQf4BDY0"], "start_seconds": ["300", "120"], "properties": ["clap, distance, horn", "bark, yip, sharply"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "an electric engine works nearby followed by a child talking"], "sample_ids": ["zj2R0XoFr5k", "xSKJGCItUWE"], "start_seconds": ["50", "10"], "properties": ["airplane, fly, woman", "engine, work, child"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a high pitched engine is running and a child speaks"], "question": "which entity is a machine", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "people cheer as a vehicle engine revs"], "sample_ids": ["wTjoRj1se3U", "xjhAnI2q6hM"], "start_seconds": ["390", "6"], "properties": ["engine, run, people", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a jet engine is running and people are talking", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["water flows and trickles", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["tB7hWb9gTuQ", "xV7Mg1QucSc"], "start_seconds": ["30", "14"], "properties": ["water, flow, trickle", "alarm, ticktocks, laughs"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["water is splashing and gurgling", "an alarm clock ticks and a woman laughs"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["men speak and a nozzle sprays liquid", "an airplane engine spools and people speak"], "sample_ids": ["wRV8yMk886E", "wTjoRj1se3U"], "start_seconds": ["0", "390"], "properties": ["liquid, spray, nozzle", "airplane, engine, spool"], "captions_pred_video": ["two cars are parked in a parking lot at night", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "several insects fly while two men talk"], "sample_ids": ["sfAvvZwdLCY", "s-T9OVOiMLo"], "start_seconds": ["20", "330"], "properties": ["flushes, drains, water", "several, fly, men"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a toilet flushing?", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["yZmhM1HcsyE", "ziUT9IFTkjg"], "start_seconds": ["4", "10"], "properties": ["engine, roar, water", "background, birds, rustling"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["s4Uz1Ffgo04", "wqZ135Ssz0"], "start_seconds": ["100", "60"], "properties": ["water, rushes, motorcycle", "two men, woman, birds"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["y8WEcpOlT3I", "uiS58TNyUiw"], "start_seconds": ["40", "430"], "properties": ["harsh, wind, blows", "vocalize, bird, chirp"], "captions_pred_video": ["on how to use a sewing machine youtube", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["vf9xf3vMsGM", "wRBHTgrbiwg"], "start_seconds": ["540", "50"], "properties": ["A man speaks while turning a water faucet on.", "bird, owl, speak"], "captions_pred_video": ["of the person washing their hands under the faucet", "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a man is speaking while water is running in the background", "birds are chirping and insects are buzzing"], "question": "which entity has a man speaking to an owl?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "water bubbles and gurgles."], "sample_ids": ["vb1fPSDI4c", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "bubbles, gurgles, water"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a crowd of people are talking and laughing", "water is splashing and gurgling"], "question": "which entity has more bubbles", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a stream of water runs briefly"], "sample_ids": ["smDKStoHBJo", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["a, infant, speaking", "stream, water, run"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yajyRTUQk3U", "uEU-Hg5MTN8"], "start_seconds": ["400", "27"], "properties": ["noise, woman, speak", "a woman, laughs, animal"], "captions_pred_video": ["- a woman cooking in the kitchen", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman is speaking and a baby is crying"], "question": "which woman is speaking over sizzling noise", "label": 0}, {"captions": ["a woman speaks with water running", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["wTideSjRFS0", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["water, running, woman", "beeps, hit, woman"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "paper folding and crinkling"], "sample_ids": ["xO-Q2BlIIPU", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["two men, exclamation, speak", "paper, fold, crinkle"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "the wind blows and a mouse clicks "], "question": "which is not a person", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "an airplane engine runs"], "sample_ids": ["vBslzh7saPw", "yVPZ2MNWpms"], "start_seconds": ["90", "0"], "properties": ["engine, roar, louder", "engine, airplane, runs"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a car is driving by on the road "], "question": "which entity is a video of an airplane engine?", "label": 0}, {"captions": ["a goat bleats and someone makes a calling noise", "a infant makes noise and is excited"], "sample_ids": ["vlS6YMeWAPo", "wIJK3-5y0kA"], "start_seconds": ["40", "30"], "properties": ["noise, bleat, call", "noise, excited, infant"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a goat bleats and birds chirp", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "several insects fly while two men talk"], "sample_ids": ["xzKKf9bKNUo", "s-T9OVOiMLo"], "start_seconds": ["10", "330"], "properties": ["background, noise, snoring", "several, fly, men"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about insects?", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a stream of water runs briefly"], "sample_ids": ["uYT5gxnyMWM", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["a, scream, girl", "stream, water, run"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a propeller rotates loudly and intensely"], "sample_ids": ["siJFXfGWgDk", "ugHJF0hfYkg"], "start_seconds": ["50", "10"], "properties": ["a, bird, vehicle", "loud, intense, propeller"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "an insect buzzes around continuously"], "sample_ids": ["wTideSjRFS0", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["food, sizzle, woman", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "an infant crying as a woman laughs"], "sample_ids": ["ylpYOorfH4o", "xhmRY9yhC7c"], "start_seconds": ["410", "20"], "properties": ["engine, run, loud", "a, laugh, infant"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "water flows and trickles"], "sample_ids": ["ukxt9I7eMMg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["continuous, woman, speaking", "water, flow, trickle"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "water is splashing and gurgling"], "question": "which entity is a video of water flowing and trickling?", "label": 1}, {"captions": ["a cat meows and children speak", "plastic is tapped on while someone speaks"], "sample_ids": ["x5cuQjOdM3E", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["cat, speak, children", "plastic, tap, speak"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a man speaks as a motor runs in the background"], "sample_ids": ["xSKJGCItUWE", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["engine, work, child", "background, motor, run"], "captions_pred_video": ["footage of the helicopter flying in the room", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a drill runs and two people laugh", "a man speaks while rain falls onto a hard surface"], "sample_ids": ["tEE3MpBt1sg", "wqN6IIHw3po"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "rain, surface, fall"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "in your own words what is happening in this screenshot? blood splattered all over the place"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking and water is splashing"], "question": "which entity is a video of a drill running and two people laughing?", "label": 0}, {"captions": ["a man talks as several small engines run", "water flows and trickles"], "sample_ids": ["u9A6VZQCZpU", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xzKKf9bKNUo", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["background, noise, snoring", "rustling, ducks, quack"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", null], "captions_pred_audio": ["a person snoring loudly", "a duck quacks and a woman speaks"], "question": "which entity has more rustling", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["siJFXfGWgDk", "tDlysoZiA1I"], "start_seconds": ["50", "0"], "properties": ["a, bird, vehicle", "animal, grunts, chirps"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "birds are chirping and a rooster is crowing "], "question": "which entity has more birds", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "sucking and grunting followed by slurping with birds in the background"], "sample_ids": ["sShpyu2l4YQ", "yYEVLuqEytU"], "start_seconds": ["0", "40"], "properties": ["growl, bark, yip", "grunt, slurp, background"], "captions_pred_video": ["the puppies are playing with a toy", "a baby goat is being petted by a person's hand"], "captions_pred_audio": ["a dog is barking and growling", "several sheep bleat and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xjvTpk2Zpr8", "y8WEcpOlT3I"], "start_seconds": ["70", "40"], "properties": ["wind, blows, vehicle", "harsh, wind, blows"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vW4x7S1VfQc", "wDVMhEdTiVw"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "gun, shoot, water"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["food sizzles in a frying pan", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is about shooting something?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "several insects fly while two men talk"], "sample_ids": ["yYJksgsxx5U", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["audio, woman, silverware", "several, fly, men"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a man woman speak while crickets sing", "paper is crumpling consistently"], "sample_ids": ["zTLVJCo4WEE", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["a, crickets, sing", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman speaks and crickets chirp", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "water flows and trickles"], "sample_ids": ["vf9xf3vMsGM", "tB7hWb9gTuQ"], "start_seconds": ["540", "30"], "properties": ["A man speaks while turning a water faucet on.", "water, flow, trickle"], "captions_pred_video": ["of the person washing their hands under the faucet", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while water is running in the background", "water is splashing and gurgling"], "question": "which entity is a video of water flowing and trickling?", "label": 1}, {"captions": ["people speak and tapping occurs", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tFCUUGdREgA", "sSMl2vc3ek"], "start_seconds": ["70", "20"], "properties": ["people, tap, speak", "loud, multiple, distance"], "captions_pred_video": ["a person riding a white horse in an indoor arena", null], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person sniffles and sneezes", "birds chirp and objects are moved around"], "sample_ids": ["uRlbY6aoBU", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["sneezes, sniffles, person", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is sneezing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sYITalLZjj4", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["stream, flow, wind", "music, gunfire, explosion"], "captions_pred_video": ["two ducks are swimming in the water near each other", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["wind blows and birds chirp", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["sofxkNWaP0s", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["wind, engine, louder", "sound, chirp, buzz"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "a bee on a purple thistle flower"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a bee buzzes and a woman speaks"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a stream of water flows quickly", "a car speeding up in the distance"], "sample_ids": ["wbHTKEJZyhc", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["stream, water, flow", "distance, car, speed"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["wind blows strongly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["w8uLijTqtlU", "xKB8O8LTs6s"], "start_seconds": ["70", "70"], "properties": ["wind, blows, strongly", "music, gunfire, explosion"], "captions_pred_video": ["footage is blurry and shaky", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["the wind is blowing strongly", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a door opens and birds chirp", "people cheer as a vehicle engine revs"], "sample_ids": ["yeFvk9x0wWI", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["door, open, birds", "engine revs, vehicle, people"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle?", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a motorcycle idles loudly as wind blows"], "sample_ids": ["tDVADusiIoc", "v7jJS8aAyA"], "start_seconds": ["60", "10"], "properties": ["wind, radio, waves", "wind, blows, loudly"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a motorcycle engine is idling and vibrating"], "question": "which entity is moving through the water", "label": 0}, {"captions": ["someone is snoring while sleeping", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["ujMt0-D-x2k", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["snore, sleep, someone", "music, gunfire, explosion"], "captions_pred_video": ["of the dog playing with a toy on the floor", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a person is snoring loudly", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["zkKdxzNC97Y", "rqu8iB22IY"], "start_seconds": ["27", "5"], "properties": ["loud, bang, noise", "sound, repeats, laugh"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a dog barks and a man speaks while music plays "], "question": "which entity has a loud bang followed by a softer banging noise?", "label": 0}, {"captions": ["a child babbles as a woman speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wEBlkGWVWwE", "vJ7JPEFhyLA"], "start_seconds": ["260", "16"], "properties": ["a, babble, woman", "three men, wind, flow"], "captions_pred_video": ["shows a person writing on the whiteboard", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "vehicles pass by on a roadway"], "sample_ids": ["spJCm8tD9Zo", "tgbONvsP47Y"], "start_seconds": ["90", "0"], "properties": ["snores, wheezes, sleeps", "pass, vehicle, roadway"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person is snoring loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "someone whistles a tune"], "sample_ids": ["sSMl2vc3ek", "sIXTftIuUgw"], "start_seconds": ["20", "90"], "properties": ["loud, multiple, distance", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["a person snores loudly multiple times at a close distance", "a car accelerates and wind blows"], "sample_ids": ["sSMl2vc3ek", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["loud, multiple, distance", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tjmoSi330GM", "zj2R0XoFr5k"], "start_seconds": ["23", "50"], "properties": ["speed, water, boat", "airplane, boy, fly"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "ticking continues without interruption"], "sample_ids": ["vVhthZ45k3Y", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["cat, purr, hiss", "ticking, continuous, clock"], "captions_pred_video": ["footage is blurry and out of focus", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a clock is ticking loudly"], "question": "which entity is a clock", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "an infant crying as a woman laughs"], "sample_ids": ["sWZzXuWYY", "xhmRY9yhC7c"], "start_seconds": ["420", "20"], "properties": ["male, clanks, thumps", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a toilet flushes and water drains"], "sample_ids": ["zFjIWfSD-4", "sfAvvZwdLCY"], "start_seconds": ["410", "20"], "properties": ["People, motor, brakes", "water drains, flushes, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a woman speaks happily and an animal chirps"], "sample_ids": ["s7knHCFW82w", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["blow horn, get close, train", "a woman, chirps, animal"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", null], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a woman is speaking and a dog is barking "], "question": "which entity is a person", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uPDn2BFTHk", "w34HjHr6gAY"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["uRExseg-0XI", "y2bVZ7rz-5M"], "start_seconds": ["210", "280"], "properties": ["woman, man, water", "motor noise, horn, siren"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xMXvkIcaG0Y", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["sound, humming, rattling", "engine, revs, vehicle"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["an engine is revving and accelerating ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person speaks briefly", "paper folding and crinkling"], "sample_ids": ["zOZleIRqZm4", "zPpG3RD8lSs"], "start_seconds": ["80", "20"], "properties": ["person, talk, brief", "paper, fold, crinkle"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "the wind blows and a mouse clicks "], "question": "which is not a person", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a rumbling clap in the distance followed by a horn and the rumbling grows louder"], "sample_ids": ["wP8ZKrlx3oA", "slZLHwNbbt4"], "start_seconds": ["40", "300"], "properties": ["fall, rain, splash", "clap, distance, horn"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is not a splash", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["xfudFO976zE", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["animal, bleats, cry", "male, duck, laugh"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["distant humming of an engine", "a stream of water runs briefly"], "sample_ids": ["yVPZ2MNWpms", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["sound, distance, engine", "stream, water, run"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a car is driving by on the road ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man talks as several small engines run", "a telephone rings followed by a woman talking"], "sample_ids": ["u9A6VZQCZpU", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["a, man, talk", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["birds chirps while a siren signals in the distance", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uKCSGgof8gI", "vfYTJq7nU"], "start_seconds": ["12", "130"], "properties": ["chirps, distance, signal", "rustling, ducks, quack"], "captions_pred_video": ["footage of a street in a small town on a sunny day", null], "captions_pred_audio": ["a truck is accelerating and revving its engine ", "a duck quacks and a woman speaks"], "question": "which entity is about ducks?", "label": 1}, {"captions": ["a small engine idles continuously", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["y5WII6cTH7k", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["engine, idle, continuously", "loud, jet engine, roar"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an engine is knocking and vibrating ", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "water flows as men speak and yell"], "sample_ids": ["sOa7g-44Dag", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["audio, scratching, man", "water, flow, men"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["yZp6xizR0yU", "wyllXV6PjKo"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "a baby, a woman, a man"], "captions_pred_video": ["footage of a woman feeding goats in a barn", null], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a woman speaks and a baby cries"], "question": "which entity is a human", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a vehicle accelerates and squeals tires"], "sample_ids": ["xSKJGCItUWE", "yRx9txMcBl0"], "start_seconds": ["10", "40"], "properties": ["engine, run, boy", "accelerates, tires, squeals"], "captions_pred_video": ["footage of the helicopter flying in the room", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a car is revving its engine and skidding "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sfAvvZwdLCY", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "male, duck, laugh"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["food is frying then a woman speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["ukxt9I7eMMg", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "rooster, crow, background, men"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in it?", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u6jIvCtKarQ", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["a, man, speaks", "airplane, boy, fly"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["wind blows strongly", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["w8uLijTqtlU", "wqZ135Ssz0"], "start_seconds": ["70", "60"], "properties": ["wind, blows, strongly", "two men, woman, birds"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["x9JovgqUcs", "sLUnaPT5gM8"], "start_seconds": ["500", "0"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["young female child snoring and breathing deeply", "bees buzz and wind blows"], "sample_ids": ["sAam2NqGhLY", "tMJne1a4AFI"], "start_seconds": ["20", "0"], "properties": ["snoring, breathing, child", "bees buzz, wind blows, bees"], "captions_pred_video": ["of a little girl sleeping on a couch", "a swarm of bees on the ground"], "captions_pred_audio": ["a person is snoring", "a swarm of bees buzzing around"], "question": "which entity is moving", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "some men converse over an engine running"], "sample_ids": ["xyx6eNVEYRY", "sCiy7QS1U"], "start_seconds": ["380", "300"], "properties": ["loud, engine, muffles", "men, converse, engine"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", null], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man speaking?", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "a car speeding up in the distance"], "sample_ids": ["yDoT73BWsdA", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["engine revs, tires squeal, vehicle", "distance, car, speed"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving faster", "label": 1}, {"captions": ["a clock ticktocks in wind", "a clock ticktocks"], "sample_ids": ["yVumC9TGknc", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, wind", "ticktocks, clock, ticktocks"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a series of beeps and chirps", "a clock is ticking loudly"], "question": "which clock ticktocks", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wudZTNBtVqc", "y8WEcpOlT3I"], "start_seconds": ["60", "40"], "properties": ["accelerates, engine, wind", "harsh, wind, blows"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a vehicle engine accelerating and wind blowing?", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "roadway noise occurs and a truck accelerates"], "sample_ids": ["yZmhM1HcsyE", "tgbONvsP47Y"], "start_seconds": ["4", "0"], "properties": ["engine, roar, water", "noise, truck, accelerate"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "people cheer as a vehicle engine revs"], "sample_ids": ["xMXvkIcaG0Y", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["sound, humming, rattling", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["an engine is revving and accelerating ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle engine revs?", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "pigeons vocalize and birds chirp"], "sample_ids": ["xjvTpk2Zpr8", "uiS58TNyUiw"], "start_seconds": ["70", "430"], "properties": ["engine, run, wind", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of the pigeon in the cage"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a woman speaks and is crumpling paper", "pigeons vocalize and birds chirp"], "sample_ids": ["xvDdE3zNf8Y", "uiS58TNyUiw"], "start_seconds": ["120", "430"], "properties": ["A, crumple, paper", "vocalize, bird, chirp"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of the pigeon in the cage"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a door opens and closes"], "sample_ids": ["zj2R0XoFr5k", "vBHyYJ8pL0"], "start_seconds": ["50", "2"], "properties": ["airplane, fly, woman", "open, close, door"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", null], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is stationary", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yajyRTUQk3U", "zj2R0XoFr5k"], "start_seconds": ["400", "50"], "properties": ["noise, woman, speak", "airplane, boy, fly"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "people cheer as a vehicle engine revs"], "sample_ids": ["vK93VuO0yNc", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["male voice, bus, rumble", "engine revs, vehicle, people"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man speaks as crickets sing", "multiple motorcycles pass by as a man speaks"], "sample_ids": ["ryFDPxgDOGc", "zcDwZ6W7E3E"], "start_seconds": ["570", "180"], "properties": ["a, crickets, sing", "man, speak, motorcycles"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity has a man speaking as multiple motorcycles pass by?", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vBHyYJ8pL0", "vYkA3cfXp5Q"], "start_seconds": ["2", "30"], "properties": ["noise, door, opening", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "an engine is idling"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "someone is typing on a computer keyboard"], "sample_ids": ["ukxt9I7eMMg", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["continuous, woman, speaking", "keyboard, type, computer"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a person is typing on a keyboard"], "question": "which is a video", "label": 1}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "a car speeding up in the distance"], "sample_ids": ["wRBHTgrbiwg", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["birds, chirp, cooing", "distance, car, speed"], "captions_pred_video": ["of a bee pollinating the flowers in the field", null], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "a woman speaks over sizzling noise"], "sample_ids": ["vf44CgrjT0A", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["loud, long, person", "noise, woman, speak"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a loud burp", "a woman is speaking while food is frying in the background"], "question": "which entity is quieter", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["xERFUeZONz8", "siJFXfGWgDk"], "start_seconds": ["0", "50"], "properties": ["ring, approach, traffic", "a, bird, vehicle"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["an emergency vehicle siren blares", "a man is speaking and birds are chirping in the background "], "question": "which entity has a vehicle passing nearby?", "label": 1}, {"captions": ["water pouring and bubbling", "dishes cling together then a man begins to speak"], "sample_ids": ["uyRfq-jKPpo", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["water, bubbles, pouring", "cling, speak, dishes"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["water is running from a faucet", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["people speak in a closed space", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sTpirNYo8vQ", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["people, space, speak", "water, radio, man"], "captions_pred_video": ["of a man taking a selfie on a bus", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be in a closed space", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "wind blowing followed by a zoom"], "sample_ids": ["yaln9y8I7ms", "vr8ZXjEBhMQ"], "start_seconds": ["230", "150"], "properties": ["female, flushes, toilet", "wind, blow, zoom"], "captions_pred_video": ["footage is blurry and out of focus", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a toilet flushes and a man speaks", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a video of a toilet flushing?", "label": 0}, {"captions": ["scraping and female speech with distant music", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yHeVV-xeOxQ", "zl9Dqx-j7q4"], "start_seconds": ["130", "6"], "properties": ["female, speech, music", "engine, laugh, loud"], "captions_pred_video": ["of a girl milking a goat's udder", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "vehicles pass by on a roadway"], "sample_ids": ["xyx6eNVEYRY", "tgbONvsP47Y"], "start_seconds": ["380", "0"], "properties": ["loud, engine, muffles", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "footage of a fire truck entering a garage"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a car is driving on the road "], "question": "which vehicle is moving", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a car speeding up in the distance"], "sample_ids": ["uYT5gxnyMWM", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["a, scream, girl", "distance, car, speed"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a person is whistling", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sIXTftIuUgw", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["person, whistling, person", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person whistling a song", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "people applaud and hoot and chat quietly"], "sample_ids": ["sU53zg9Jp7s", "wwyfGO2J4"], "start_seconds": ["380", "90"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "people, applaud, hoot"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a woman speaks as she rubs two objects together"], "sample_ids": ["yZmhM1HcsyE", "vzxHnu-SFEw"], "start_seconds": ["4", "80"], "properties": ["engine, roar, water", "two objects, woman, speak"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a machine?", "label": 0}, {"captions": ["a man speaks while water drains", "motors rev and run loudly as a person laughs"], "sample_ids": ["vSeGhaZt-aI", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["water, drain, man", "motors rev, laugh, loudly"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a jet engine roars "], "question": "which entity is more quiet", "label": 0}, {"captions": ["people speak softly as food sizzles", "dishes cling together then a man begins to speak"], "sample_ids": ["yhQ2Lg-7qDY", "sQGXqGcwOTc"], "start_seconds": ["130", "3"], "properties": ["food, sizzle, speak", "cling, speak, dishes"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a faucet is running and a man is speaking", "mechanisms are operating and water is splashing "], "question": "which entity is about speaking?", "label": 0}, {"captions": ["a woman speaks as frying food sizzles", "a crowd yells, reacts and applauds"], "sample_ids": ["wTideSjRFS0", "wztCSUxOf8"], "start_seconds": ["30", "130"], "properties": ["food, sizzle, woman", "a crowd, yells, applauds"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "paper folding and crinkling"], "sample_ids": ["yDoT73BWsdA", "zPpG3RD8lSs"], "start_seconds": ["10", "20"], "properties": ["engine, revs, vehicle", "paper, fold, crinkle"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which is not a vehicle", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a clock ticktocks"], "sample_ids": ["wTideSjRFS0", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["food, sizzle, woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "a car accelerates and wind blows"], "sample_ids": ["tMJne1a4AFI", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["wind, buzz, rustling", "accelerates, wind, blows"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "children cheer as a man speaks then an audience screams"], "sample_ids": ["wqZ135Ssz0", "vJvryTwuAV8"], "start_seconds": ["60", "16"], "properties": ["two men, woman, birds", "audience, cheer, man"], "captions_pred_video": [null, "a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking and a crowd is shouting and whooping "], "question": "which entity has more people", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "an engine starts and increases in power"], "sample_ids": ["smDKStoHBJo", "zjTG0gaGCUI"], "start_seconds": ["0", "80"], "properties": ["a, talk, baby, cry", "power, increase, engine"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a jet engine roars as wind blows "], "question": "which entity is a moving object", "label": 1}, {"captions": ["paper folding and crinkling", "water flows and trickles"], "sample_ids": ["zPpG3RD8lSs", "tB7hWb9gTuQ"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "water, flow, trickle"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "water is splashing and gurgling"], "question": "which entity is more likely to flow", "label": 1}, {"captions": ["an emergency siren wails as it passes", "an infant crying as a woman laughs"], "sample_ids": ["vGj1XLJvNrw", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["wails, wails, pass", "a, laugh, infant"], "captions_pred_video": ["footage of a police car driving down a city street", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["un9VQlzgZM", "su6FAOcOA8c"], "start_seconds": ["5", "4"], "properties": ["wind, speak, laugh", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sYITalLZjj4", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["water, rushes, background, birds", "background, frog, croak"], "captions_pred_video": ["two ducks are swimming in the water near each other", "a close up of a frog in the water"], "captions_pred_audio": ["wind blows and birds chirp", "a frog is croaking"], "question": "which entity is a croaking animal?", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["voJh2gJxXhA", "w34HjHr6gAY"], "start_seconds": ["50", "30"], "properties": ["music, frog, croak", "beeps, hit, woman"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["music is playing and crickets are chirping ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "winds blows roughly as a vehicle races past"], "sample_ids": ["wDVMhEdTiVw", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["gun, shoot, water", "wind, blows, vehicle"], "captions_pred_video": ["a blurry image of trees and water in the forest", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man makes an exclamation, then another man speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["xO-Q2BlIIPU", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["two men, exclamation, speak", "beeps, hit, woman"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uiItxDsDMFI", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["wood, piece, saw", "a woman, laughs, animal"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a saw is being used with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "a telephone rings followed by a woman talking"], "sample_ids": ["x9JovgqUcs", "tGcFnX0GHI"], "start_seconds": ["500", "0"], "properties": ["a, man, speaks, keyboard", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a keyboard", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a motorcycle engine is idling", "small dogs yip and bark sharply"], "sample_ids": ["vZAqdHZ81yA", "v-wcQf4BDY0"], "start_seconds": ["180", "120"], "properties": ["engine, motorcycle, idling", "bark, yip, sharply"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["an engine is idling loudly", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sdXV-ylviw", "vJ7JPEFhyLA"], "start_seconds": ["190", "16"], "properties": ["door, toilet, squeaks", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a still image?", "label": 0}, {"captions": ["multiple ducks quack continuously", "dishes cling together then a man begins to speak"], "sample_ids": ["wfHeoPDLMaM", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["multiple, quack, continuously", "cling, speak, dishes"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["ducks are quacking", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "people speak in the background as a clock ticktocks"], "sample_ids": ["wtDqrBygTcU", "vZAw4apG0Es"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "background, clock, ticktocks"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a man is speaking and a motor is running", "a clock is ticking and people are talking"], "question": "which entity has a clock ticking in the background?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "an airplane engine spools and people speak"], "sample_ids": ["uC9dtII1KDI", "wTjoRj1se3U"], "start_seconds": ["150", "390"], "properties": ["wind, gusts, distance", "airplane, engine, spool"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a clock ticktocks continuously", "a man speaks over a running engine and blowing wind"], "sample_ids": ["vlJS7LN2XyM", "ylpYOorfH4o"], "start_seconds": ["30", "410"], "properties": ["ticktocks, clock, ticktocks continuously", "engine, running, wind"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and an engine is revving"], "question": "which entity is not a clock?", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wP8ZKrlx3oA", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["fall, rain, splash", "wind, blow, vehicle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", null], "captions_pred_audio": ["a heavy rain is falling on a surface", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a man makes an exclamation, then another man speaks", "a man speaks as a car is passing by"], "sample_ids": ["xO-Q2BlIIPU", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["two men, exclamation, speak", "a, car, pass"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "an insect buzzes around continuously"], "sample_ids": ["ujMt0-D-x2k", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["snoring, rhythmical, nearby", "buzzes, continuously, insect"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person is snoring loudly", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["rustling with distant murmuring", "an engine runs loudly"], "sample_ids": ["wnNNcxAPwGQ", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["sound, distance, rustling", "loud, engine, run"], "captions_pred_video": ["footage of a yellow truck doing a burnout on a race track", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a crowd of people are talking and laughing while a skateboard rolls by ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp and objects are moved around", "roadway noise occurs and a truck accelerates"], "sample_ids": ["yPUYU6t3rwo", "tgbONvsP47Y"], "start_seconds": ["370", "0"], "properties": ["birds chirp, objects are moved around, birds", "noise, truck, accelerate"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage of a fire truck entering a garage"], "captions_pred_audio": ["insects buzz and a man speaks", "a car is driving on the road "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a weapon fires multiple times", "wind blowing followed by a zoom"], "sample_ids": ["sMC07Ucy7kg", "vr8ZXjEBhMQ"], "start_seconds": ["10", "150"], "properties": ["weapon, fire, multiple", "wind, blow, zoom"], "captions_pred_video": ["footage is from a car's point of view", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a duck quacks several times", "a woman speaks as she rubs two objects together"], "sample_ids": ["vh30P49Po6s", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["quacks, duck, several", "two objects, woman, speak"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is speaking", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "people cheer as a vehicle engine revs"], "sample_ids": ["wAAkbZToh8", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["burp, laugh, speak", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man burps and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "a clock ticktocks"], "sample_ids": ["wudZTNBtVqc", "v-g-j2uTByM"], "start_seconds": ["60", "30"], "properties": ["accelerates, engine, wind", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["frogs croak and vocalize", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yswmmRZFItk", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["croak, vocalize, frog", "stream, water, flow"], "captions_pred_video": ["a close up of a frog in the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a frog is croaking", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vlS6YMeWAPo", "tiDFTC-5vU"], "start_seconds": ["40", "30"], "properties": ["noise, bleat, call", "male, duck, laugh"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["an aircraft engine runs", "a power tool runs and touches a surface"], "sample_ids": ["yLCORCnd35Q", "zfvPRf3chY"], "start_seconds": ["0", "290"], "properties": ["engine, aircraft, runs", "power tool, run, touch"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", null], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a man is speaking while a power tool is being used "], "question": "which entity is a machine", "label": 1}, {"captions": ["a clock ticktocks continuously", "small dogs yip and bark sharply"], "sample_ids": ["vlJS7LN2XyM", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["ticktocks, clock, ticktocks continuously", "bark, yip, sharply"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a ticktock of a clock", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uYT5gxnyMWM", "wDVMhEdTiVw"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "gun, shoot, water"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["an airplane engine runs", "an infant crying as a woman laughs"], "sample_ids": ["yVPZ2MNWpms", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["engine, airplane, runs", "a, laugh, infant"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a car is driving by on the road ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zsLxS-uLJTw", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["horn, blast, train", "a woman, something, fried"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of a woman talking?", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a whistling owl calls out repeatedly and insects screech"], "sample_ids": ["yajyRTUQk3U", "w6RTHR6AeAg"], "start_seconds": ["400", "40"], "properties": ["a woman, something, fried", "call, owl, screech"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "an owl hoots and mechanisms operate "], "question": "which entity is a bird?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a man speaks as a car is passing by"], "sample_ids": ["vs65y4qmyBE", "sK4u5T8hW78"], "start_seconds": ["340", "30"], "properties": ["engine, run, man", "a, car, pass"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking while a machine engine runs?", "label": 0}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "an infant crying frantically"], "sample_ids": ["zY3icUyMdh8", "zwOBqeFTgiU"], "start_seconds": ["20", "30"], "properties": ["dog, bark, engine", "cry, infant, frantically"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of the baby crying in the car seat"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a stream of water runs briefly"], "sample_ids": ["yZmhM1HcsyE", "x-PeY8Yb8M4"], "start_seconds": ["4", "300"], "properties": ["engine, roar, water", "stream, water, run"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "frogs croak and vocalize"], "sample_ids": ["sU53zg9Jp7s", "yswmmRZFItk"], "start_seconds": ["380", "0"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "croak, vocalize, frog"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a close up of a frog in the water"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a frog is croaking"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yVumC9TGknc", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["humming, clock, birds", "water, radio, man"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a clock?", "label": 0}, {"captions": ["a man talks while a clock does ticktock", "a child speaks in closed space"], "sample_ids": ["spYNpeN7rPY", "yW6FWLSLkx4"], "start_seconds": ["1", "40"], "properties": ["a clock, ticktock, man", "child, space, speak"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["humming and rattling of an engine idling as it revs", "a stream of water runs briefly"], "sample_ids": ["xMXvkIcaG0Y", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["sound, humming, rattling", "stream, water, run"], "captions_pred_video": ["footage of a car's hood being opened up to reveal the engine underneath the hood", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["an engine is revving and accelerating ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a child speaks in closed space"], "sample_ids": ["wDVMhEdTiVw", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["gun, shoot, water", "child, space, speak"], "captions_pred_video": ["a blurry image of trees and water in the forest", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "paper folding and crinkling"], "sample_ids": ["xvDdE3zNf8Y", "zPpG3RD8lSs"], "start_seconds": ["120", "20"], "properties": ["A, crumple, paper", "paper, fold, crinkle"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman speaks and crumples paper", "the wind blows and a mouse clicks "], "question": "which entity is crumpling paper", "label": 0}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wjsXBsc7M40", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "wind, blow, vehicle"], "captions_pred_video": ["footage of the baby playing with a toothbrush", null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a baby laughing?", "label": 0}, {"captions": ["a door opens and closes", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vBHyYJ8pL0", "y8WEcpOlT3I"], "start_seconds": ["2", "40"], "properties": ["open, close, door", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking with wind noise in the background "], "question": "which entity is more likely to be a door", "label": 0}, {"captions": ["a machine clanks and thumps and a male speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["sWZzXuWYY", "xZepNM9qcRA"], "start_seconds": ["420", "30"], "properties": ["male, clanks, thumps", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a dog barks and whimpers", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sShpyu2l4YQ", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["barks, whimpers, dog", "a woman, something, fried"], "captions_pred_video": ["the puppies are playing with a toy", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a car speeding up in the distance"], "sample_ids": ["vbZ-0lGPneg", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["a woman, a television program, a bird", "distance, car, speed"], "captions_pred_video": ["of a man holding a baby duck in his hands", null], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["xfudFO976zE", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["animal, bleats, cry", "a woman, laughs, animal"], "captions_pred_video": ["footage is blurry and shaky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "a man speaks while turning a water faucet on"], "sample_ids": ["vZAw4apG0Es", "vf9xf3vMsGM"], "start_seconds": ["30", "540"], "properties": ["background, clock, ticktocks", "A man speaks while turning a water faucet on."], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking while water is running in the background"], "question": "which entity is more active", "label": 1}, {"captions": ["birds vocalize and a man speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["v0wPrLBI3hg", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["vocalize, bird, speak", "multiple, people, yell"], "captions_pred_video": ["footage of the pigeons feeding on the ground", null], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["yajyRTUQk3U", "uZesmtKZGSw"], "start_seconds": ["400", "250"], "properties": ["a woman, something, fried", "men, talk, cars"], "captions_pred_video": ["- a woman cooking in the kitchen", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["a machine runs continuously", "vehicle engines race around a track as a man commentates"], "sample_ids": ["wdXV3Pv0jiY", "sZPuqDgX2V0"], "start_seconds": ["11", "30"], "properties": ["machine, running, continuously", "commentator, race, track"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a man is speaking and a helicopter is flying overhead "], "question": "which machine is running continuously", "label": 0}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "a man speaks as a motor runs in the background"], "sample_ids": ["smDKStoHBJo", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["a, infant, speaking", "background, motor, run"], "captions_pred_video": ["a man holding a crying baby in his arms", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["siJFXfGWgDk", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["man, woman, vehicle", "cling, speak, dishes"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a person uses a saw to cut some wood", "someone snores nearby"], "sample_ids": ["sHbXC6na9hg", "spJCm8tD9Zo"], "start_seconds": ["0", "90"], "properties": ["a person, saw, wood", "someone snores, nearby, someone"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["an engine is idling and vibrating", "a person is snoring loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["a man is snoring loudly and repeatedly", "wind blowing followed by a zoom"], "sample_ids": ["sncRqQ67iJU", "vr8ZXjEBhMQ"], "start_seconds": ["460", "150"], "properties": ["loud, repeatedly, man", "wind, blow, zoom"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a person is snoring", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["s4Uz1Ffgo04", "zj2R0XoFr5k"], "start_seconds": ["100", "50"], "properties": ["water, rushes, motorcycle", "airplane, boy, fly"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a car accelerates and wind blows"], "sample_ids": ["xjhAnI2q6hM", "u0TrcHhkPQ"], "start_seconds": ["6", "20"], "properties": ["engine revs, vehicle, people", "accelerates, wind, blows"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", null], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a door opens and closes", "waves crash against a shoreline and people speak"], "sample_ids": ["vBHyYJ8pL0", "yFB25fqfU8I"], "start_seconds": ["2", "300"], "properties": ["open, close, door", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be a door", "label": 0}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a woman speaks as she rubs two objects together"], "sample_ids": ["tQWGZLItBXk", "vzxHnu-SFEw"], "start_seconds": ["170", "80"], "properties": ["voice, music, whoosh", "two objects, woman, speak"], "captions_pred_video": ["worms revolution screenshots", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vSeGhaZt-aI", "vYkA3cfXp5Q"], "start_seconds": ["50", "30"], "properties": ["water, sink, talk", "engine, accelerate, idle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "an engine is idling"], "question": "which is a vehicle", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "a stream of water runs briefly"], "sample_ids": ["yDoT73BWsdA", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["engine revs, tires squeal, vehicle", "stream, water, run"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["y2bVZ7rz-5M", "wDVMhEdTiVw"], "start_seconds": ["280", "30"], "properties": ["engine, horn, siren", "gun, shoot, water"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a gun", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a toilet flushes and a female speaks"], "sample_ids": ["uZesmtKZGSw", "yaln9y8I7ms"], "start_seconds": ["250", "230"], "properties": ["car, track, man", "female, flushes, toilet"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["some clanking with distant murmuring", "a propeller rotates loudly and intensely"], "sample_ids": ["uMTTDZ2mb4", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["clanking, murmuring, distant", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a clock ticktocks"], "sample_ids": ["vJ7JPEFhyLA", "v-g-j2uTByM"], "start_seconds": ["16", "30"], "properties": ["three men, wind, flow", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as a machine runs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vD6lYD1l0BY", "vb1fPSDI4c"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "multiple, people, yell"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a cat meows as a young woman speaks"], "sample_ids": ["wTjoRj1se3U", "x5cuQjOdM3E"], "start_seconds": ["390", "30"], "properties": ["engine, run, people", "cat, meows, young woman"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a jet engine is running and people are talking", "a cat meows and a woman speaks"], "question": "which entity is more likely to be a pet", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a car speeding up in the distance"], "sample_ids": ["vVhthZ45k3Y", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["cat, purr, hiss", "distance, car, speed"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a person is whistling a tune", "someone is typing on a computer keyboard"], "sample_ids": ["scYRUkrFLiQ", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["a, tune, whistle", "keyboard, type, computer"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "how to make money on youtube in spanish"], "captions_pred_audio": ["a person whistling a song", "a person is typing on a keyboard"], "question": "which is not a musical instrument", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "two women and a man talk while a kid cries"], "sample_ids": ["sHbXC6na9hg", "wyllXV6PjKo"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "a kid, talk, cry"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", null], "captions_pred_audio": ["an engine is idling and vibrating", "a woman speaks and a baby cries"], "question": "which entity is about a person cutting wood?", "label": 0}, {"captions": ["a motor idles, accelerates, then slows down.", "paper is crumpling consistently"], "sample_ids": ["vYkA3cfXp5Q", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["speed, idle, accelerate", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["an engine is idling", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "vehicles pass by on a roadway"], "sample_ids": ["vSeGhaZt-aI", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, run", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a door opens and birds chirp", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yeFvk9x0wWI", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["door, open, birds", "music, gunfire, explosion"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "a woman speaks as she rubs two objects together"], "sample_ids": ["sapQIQUhFc", "vzxHnu-SFEw"], "start_seconds": ["280", "80"], "properties": ["liquid, flow, distance", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is more likely to be a video of a woman speaking?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a car speeding up in the distance"], "sample_ids": ["ugHJF0hfYkg", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["engine, running, continuously", "distance, car, speed"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a duck quacks continuously", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vh30P49Po6s", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["quacks, continuously, duck", "a woman, something, fried"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a goat bleats as a person speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tPJvjq9QePY", "uZesmtKZGSw"], "start_seconds": ["40", "250"], "properties": ["bleats, person, speak", "men, talk, cars"], "captions_pred_video": ["a dog and a sheep in a barn", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a child and woman laughs and the woman speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["uPDn2BFTHk", "wwyfGO2J4"], "start_seconds": ["140", "90"], "properties": ["woman, laughs, speaks", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity shows more people", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["wqN6IIHw3po", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["rain, surface, fall", "two men, woman, birds"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", null], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wP8ZKrlx3oA", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["heavy, rain, fall", "female, spraying, scream"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman and man are speaking", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["vbpKkWvfOu4", "zO-LSSY92ZM"], "start_seconds": ["560", "30"], "properties": ["two people, speaking, woman, man", "liquid, surface, sound"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "steam is hissing and hissing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a rumble grows louder", "a man speaks as a car is passing by"], "sample_ids": ["y4MY9mp8-TA", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["loudness, increase, rumble", "a, car, pass"], "captions_pred_video": ["a helicopter flying in the sky", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a helicopter flies overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a rumble", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "some men converse over an engine running"], "sample_ids": ["yRx9txMcBl0", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["accelerates, tires, squeals", "men, converse, engine"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", null], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a diesel truck engine runs continuously", "a man speaks as a car is passing by"], "sample_ids": ["sZvwOuuPGP0", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "a, car, pass"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a vehicle", "label": 1}, {"captions": ["children speak and play together", "a telephone rings followed by a woman talking"], "sample_ids": ["yVVP8XvWJTo", "tGcFnX0GHI"], "start_seconds": ["260", "0"], "properties": ["children, speak, play", "ring, talk, woman"], "captions_pred_video": ["footage of a playground at a school or daycare center", null], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["paper is crumpling consistently", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["v5cSxLaHADY", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "rustling, ducks, quack"], "captions_pred_video": ["footage of the person holding a pair of scissors", null], "captions_pred_audio": ["paper is crumpled and crinkled", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uqFtmnhuqA8", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "beeps, hit, woman"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a person speaks briefly", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zOZleIRqZm4", "uZesmtKZGSw"], "start_seconds": ["80", "250"], "properties": ["person, talk, brief", "men, talk, cars"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone is snoring while sleeping", "a helicopter engine idles continuously"], "sample_ids": ["ujMt0-D-x2k", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["snore, sleep, someone", "engine, idle, continuously"], "captions_pred_video": ["of the dog playing with a toy on the floor", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person is snoring loudly", "a helicopter is flying overhead "], "question": "which entity is not a person", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vbr9mHKc8WM", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["noise, loudness, engine", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a baby is crying"], "question": "which entity is silent", "label": 0}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "two men speak as a buffeting wind blows"], "sample_ids": ["x5cuQjOdM3E", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["cat, talk, meow", "wind, speak, buffeting"], "captions_pred_video": ["a black background with an airplane flying in the sky", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["slZLHwNbbt4", "uYT5gxnyMWM"], "start_seconds": ["300", "50"], "properties": ["clap, distance, horn", "female, spraying, scream"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a motorcycle engine is idling", "a man speaks as a motor runs in the background"], "sample_ids": ["vZAqdHZ81yA", "xZepNM9qcRA"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "background, motor, run"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an engine is idling loudly", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a duck quacks several times", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vh30P49Po6s", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["quacks, duck, several", "men, talk, cars"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a duck is quacking loudly", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man talks while a clock does ticktock", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["spYNpeN7rPY", "y8WEcpOlT3I"], "start_seconds": ["1", "40"], "properties": ["a clock, ticktock, man", "harsh, wind, blows"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["a woman speaks over sizzling noise", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["yajyRTUQk3U", "tDlysoZiA1I"], "start_seconds": ["400", "0"], "properties": ["noise, woman, speak", "animal, grunts, chirps"], "captions_pred_video": ["- a woman cooking in the kitchen", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["w34HjHr6gAY", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["beeps, hit, woman", "loud, multiple, distance"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "a man speaks while water trickles and flows"], "sample_ids": ["wqZ135Ssz0", "sapQIQUhFc"], "start_seconds": ["60", "280"], "properties": ["two men, woman, birds", "water, trickles, flow"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a man speaks as a motor runs in the background"], "sample_ids": ["wy1eKjR7KC0", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "background, motor, run"], "captions_pred_video": ["two police officers riding motorcycles down the street", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "people applaud and hoot and chat quietly"], "sample_ids": ["sQwlkXjQabo", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["liquid, surface, spray", "people, applaud, hoot"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["x5cuQjOdM3E", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["cat, meows, young woman", "a woman, something, fried"], "captions_pred_video": ["a black background with an airplane flying in the sky", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is about a cat?", "label": 0}, {"captions": ["birds chirp and objects are moved around", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yPUYU6t3rwo", "uEU-Hg5MTN8"], "start_seconds": ["370", "27"], "properties": ["birds chirp, objects are moved around, birds", "a woman, laughs, animal"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["insects buzz and a man speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a video of a person speaking and laughing?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a loud engine muffles a man as he speaks"], "sample_ids": ["vZAw4apG0Es", "xyx6eNVEYRY"], "start_seconds": ["30", "380"], "properties": ["background, tick, repeat", "loud, engine, muffles"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a clock is ticking and people are talking", "an aircraft engine is running and a man is speaking "], "question": "which entity is muffled", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "after a few seconds of silence, a loud bang occurs followed by a softer banging noise"], "sample_ids": ["weDbePuc-Xc", "zkKdxzNC97Y"], "start_seconds": ["40", "27"], "properties": ["cartoon character, music, vocalize", "loud, bang, noise"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a door is opened and closed"], "question": "which entity is more quiet", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "paper folding and crinkling"], "sample_ids": ["wP8ZKrlx3oA", "zPpG3RD8lSs"], "start_seconds": ["40", "20"], "properties": ["rain, storm, thunder", "paper, fold, crinkle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a heavy rain is falling on a surface", "the wind blows and a mouse clicks "], "question": "which entity is not a natural phenomenon", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "water pouring and bubbling"], "sample_ids": ["spYNpeN7rPY", "uyRfq-jKPpo"], "start_seconds": ["1", "50"], "properties": ["a clock, ticktock, man", "water, bubbles, pouring"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["xERFUeZONz8", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["ring, approach, traffic", "music, gunfire, explosion"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an emergency vehicle siren blares", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["a goat bleats as a person speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tPJvjq9QePY", "vb1fPSDI4c"], "start_seconds": ["40", "30"], "properties": ["bleats, person, speak", "multiple, people, yell"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "small dogs yip and bark sharply"], "sample_ids": ["xV7Mg1QucSc", "v-wcQf4BDY0"], "start_seconds": ["14", "120"], "properties": ["alarm, ticktocks, laughs", "bark, yip, sharply"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a duck quacks continuously", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vh30P49Po6s", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["quacks, continuously, duck", "loud, jet engine, roar"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a duck is quacking loudly", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a power tool runs and touches a surface", "a horn rings out as a machine runs by"], "sample_ids": ["zfvPRf3chY", "slZLHwNbbt4"], "start_seconds": ["290", "300"], "properties": ["power tool, run, touch", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man yells and speaks as water splashes", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vimzuGQvdcU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, man, yells", "stream, water, flow"], "captions_pred_video": ["a group of people are rafting down a river", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while water is splashing and a child is speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a man speaks as a car is passing by"], "sample_ids": ["xSKJGCItUWE", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["engine, run, boy", "a, car, pass"], "captions_pred_video": ["footage of the helicopter flying in the room", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a boy speaking?", "label": 0}, {"captions": ["a man speaks as a machine runs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vD6lYD1l0BY", "su6FAOcOA8c"], "start_seconds": ["330", "4"], "properties": ["a, machine, run", "engine, idle, woman"], "captions_pred_video": ["game controller being held in the hands of the person", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["paper folding and crinkling", "winds blows roughly as a vehicle races past"], "sample_ids": ["zPpG3RD8lSs", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["paper, fold, crinkle", "wind, blows, vehicle"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["dishes cling together then a man begins to speak", "some tunes played by whistling"], "sample_ids": ["sQGXqGcwOTc", "u6BnG6YZqJ4"], "start_seconds": ["3", "0"], "properties": ["cling, speak, dishes", "tune, play, whistling"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["an aircraft engine runs", "a car accelerates and wind blows"], "sample_ids": ["yLCORCnd35Q", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["engine, aircraft, runs", "accelerates, wind, blows"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", null], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "wind blowing followed by a zoom"], "sample_ids": ["yLy-WycbVVE", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["background, people, talk", "wind, blow, zoom"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "a car speeding up in the distance"], "sample_ids": ["xyL9F5VrjkE", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["wind, motor, distance", "distance, car, speed"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a race car accelerates and revs its engine "], "question": "which object is moving faster", "label": 0}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["y8WEcpOlT3I", "sQGXqGcwOTc"], "start_seconds": ["40", "3"], "properties": ["harsh, wind, blows", "cling, speak, dishes"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["wind noise makes sound into a microphone", "roadway noise occurs and a truck accelerates"], "sample_ids": ["w8uLijTqtlU", "tgbONvsP47Y"], "start_seconds": ["70", "0"], "properties": ["wind, microphone, noise", "noise, truck, accelerate"], "captions_pred_video": ["footage is blurry and shaky", "footage of a fire truck entering a garage"], "captions_pred_audio": ["the wind is blowing strongly", "a car is driving on the road "], "question": "which noise is caused by a truck", "label": 1}, {"captions": ["material crumbles into a microphone", "an airplane engine runs"], "sample_ids": ["vofpvUo6NAw", "yVPZ2MNWpms"], "start_seconds": ["220", "0"], "properties": ["material, crumbles, microphone", "engine, airplane, runs"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a person whistles and clicks a mouse", "a small engine spits as it runs"], "sample_ids": ["zCrAfDfv6-A", "sZvwOuuPGP0"], "start_seconds": ["30", "50"], "properties": ["person, mouse, click", "spits, engine, runs"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", "of a bulldozer clearing a road in a forest stock footage and royalty-free videos"], "captions_pred_audio": ["a person whistles a song", "a medium engine is running "], "question": "which entity is not a person?", "label": 1}, {"captions": ["birds chirp then an animal grunts", "people applaud and hoot and chat quietly"], "sample_ids": ["tDlysoZiA1I", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["animal, grunt, chirp", "people, applaud, hoot"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "vehicle engines race around a track as a man commentates"], "sample_ids": ["w1mlz3Pe4fU", "sZPuqDgX2V0"], "start_seconds": ["300", "30"], "properties": ["vocalize, chirp, continuously", "commentator, race, track"], "captions_pred_video": ["of a bird in a cage", null], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is a human activity", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "some men converse over an engine running"], "sample_ids": ["uYT5gxnyMWM", "sCiy7QS1U"], "start_seconds": ["50", "300"], "properties": ["female, spraying, scream", "men, converse, engine"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more calm", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "wind blowing followed by a zoom"], "sample_ids": ["s4Uz1Ffgo04", "vr8ZXjEBhMQ"], "start_seconds": ["100", "150"], "properties": ["water, rushes, motorcycle", "wind, blow, zoom"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sd7xVssqlw", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["accelerates, tires, squealing", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a jet engine roars "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a man speaks as a machine runs", "paper is crumpling consistently"], "sample_ids": ["vD6lYD1l0BY", "v5cSxLaHADY"], "start_seconds": ["330", "0"], "properties": ["a, machine, run", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "water splashes and a motorboat passes as people yell"], "sample_ids": ["yeFvk9x0wWI", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["chirp, twitter, clatter", "water, splashes, motorboat"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine is idling", "a car accelerates and wind blows"], "sample_ids": ["vZAqdHZ81yA", "u0TrcHhkPQ"], "start_seconds": ["180", "20"], "properties": ["engine, motorcycle, idling", "accelerates, wind, blows"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a vehicle accelerates and squeals tires"], "sample_ids": ["ugHJF0hfYkg", "yRx9txMcBl0"], "start_seconds": ["10", "40"], "properties": ["engine, running, continuously", "accelerates, tires, squeals"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is revving its engine and skidding "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yNtRmrn0io8", "tiDFTC-5vU"], "start_seconds": ["210", "30"], "properties": ["storm, distance, strike", "male, duck, laugh"], "captions_pred_video": ["footage of a house in the middle of the night", null], "captions_pred_audio": ["rain falls and thunder roars", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["children cry and people talk", "a toilet flushes and a female speaks"], "sample_ids": ["xLwHe825Zs", "yaln9y8I7ms"], "start_seconds": ["18", "230"], "properties": ["people talk, children cry, people talk", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a woman speaks", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a child speaks in closed space"], "sample_ids": ["w-4gHptFNuU", "yW6FWLSLkx4"], "start_seconds": ["21", "40"], "properties": ["engine revs, accelerates, bump", "child, space, speak"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a child and woman laughs and the woman speaks"], "sample_ids": ["sQwlkXjQabo", "uPDn2BFTHk"], "start_seconds": ["10", "140"], "properties": ["water, spray, surface", "woman, laughs, speaks"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a baby laughs and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "several insects fly while two men talk"], "sample_ids": ["w0xsN8X18Y", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["music, surface, rain", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a car speeding up in the distance"], "sample_ids": ["yks4cLgIDMc", "u0TrcHhkPQ"], "start_seconds": ["170", "20"], "properties": ["background, speaking, child", "distance, car, speed"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "a woman and man speak while food is frying"], "sample_ids": ["wTideSjRFS0", "zk-xJGQU8-4"], "start_seconds": ["30", "130"], "properties": ["food, sizzle, woman", "food, man, woman"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity has a man speaking while food is frying?", "label": 1}, {"captions": ["a male speaks over some small clicks", "people speak as gunfire rings out"], "sample_ids": ["uXxVebHsGZ8", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["male, clicks, speak", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sSMl2vc3ek", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["a person, laughs, snores", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person?", "label": 0}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "a car speeding up in the distance"], "sample_ids": ["ukg5L09Wpvo", "u0TrcHhkPQ"], "start_seconds": ["150", "20"], "properties": ["clickety-clack, train, whistle", "distance, car, speed"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wqZ135Ssz0", "tdWhHV3X25Q"], "start_seconds": ["60", "60"], "properties": ["man, woman, squawks", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vlS6YMeWAPo", "su6FAOcOA8c"], "start_seconds": ["40", "4"], "properties": ["noise, bleat, call", "engine, idle, woman"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a goat bleats and birds chirp", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "people applaud and hoot and chat quietly"], "sample_ids": ["slZLHwNbbt4", "wwyfGO2J4"], "start_seconds": ["300", "90"], "properties": ["clap, distance, horn", "people, applaud, hoot"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", null], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yRx9txMcBl0", "tDVADusiIoc"], "start_seconds": ["40", "60"], "properties": ["accelerates, tires, squeals", "water, radio, man"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "some men converse over an engine running"], "sample_ids": ["vlS6YMeWAPo", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["sheep, baa, birds", "men, converse, engine"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation?", "label": 1}, {"captions": ["a toilet flushes and water drains", "some tunes played by whistling"], "sample_ids": ["sfAvvZwdLCY", "u6BnG6YZqJ4"], "start_seconds": ["20", "0"], "properties": ["water drains, flushes, water", "tune, play, whistling"], "captions_pred_video": ["footage of the toilet in the bathroom", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a toilet is flushed", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a telephone rings followed by a woman talking"], "sample_ids": ["tQWGZLItBXk", "tGcFnX0GHI"], "start_seconds": ["170", "0"], "properties": ["music, kid, speak", "ring, talk, woman"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["goats bleat and people speak", "people applaud and hoot and chat quietly"], "sample_ids": ["z5iUE5h0EPs", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["goats bleat, people speak, language", "people, applaud, hoot"], "captions_pred_video": ["of the goat in the barn", null], "captions_pred_audio": ["a goat bleats and a man speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "an insect buzzes around continuously"], "sample_ids": ["w5W5Kqtc8E", "v25l1jef3JY"], "start_seconds": ["100", "0"], "properties": ["wind, blow, vehicle", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "wind blows as people chatter quietly"], "sample_ids": ["sapQIQUhFc", "xBxDz0CFVn0"], "start_seconds": ["280", "30"], "properties": ["liquid, flow, distance", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a machine beeps continuously"], "sample_ids": ["ugHJF0hfYkg", "y682ml90jGw"], "start_seconds": ["10", "11"], "properties": ["engine, running, continuously", "beeps, machine, continuously"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a beeping sound is being made "], "question": "which machine beeps continuously", "label": 1}, {"captions": ["a propeller moves loudly nearby", "an engine runs loudly"], "sample_ids": ["ugHJF0hfYkg", "vqZuVbG6-HI"], "start_seconds": ["10", "130"], "properties": ["loud, propeller, move", "loud, engine, run"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a helicopter is flying overhead ", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "water splashes as an animal walks through"], "sample_ids": ["tDVADusiIoc", "w1ir-sZ3Im8"], "start_seconds": ["60", "90"], "properties": ["man, radio, blows", "animal, water, splashes"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a stream of water runs briefly"], "sample_ids": ["wqZ135Ssz0", "x-PeY8Yb8M4"], "start_seconds": ["60", "300"], "properties": ["man, woman, squawks", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "roadway noise occurs and a truck accelerates"], "sample_ids": ["w5W5Kqtc8E", "tgbONvsP47Y"], "start_seconds": ["100", "0"], "properties": ["wind, blow, vehicle", "noise, truck, accelerate"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zdYdyF9-m8U", "su6FAOcOA8c"], "start_seconds": ["7", "4"], "properties": ["wind, crash, shoreline", "engine, idle, woman"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["waves crash and wind blows ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sAam2NqGhLY", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["snoring, breathing, child", "male, duck, laugh"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "a man is speaking and ducks are quacking"], "question": "which entity is a person", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wDVMhEdTiVw", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["gun, shoot, water", "stream, water, flow"], "captions_pred_video": ["a blurry image of trees and water in the forest", "footage is blurry and out of focus"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a machine beeps continuously"], "sample_ids": ["wsHBIgzs9Fs", "y682ml90jGw"], "start_seconds": ["50", "11"], "properties": ["horn, continuous, buzzing", "beeps, machine, continuously"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", null], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a beeping sound is being made "], "question": "which entity is continuous", "label": 1}, {"captions": ["wind blowing followed by a zoom", "small dogs yip and bark sharply"], "sample_ids": ["vr8ZXjEBhMQ", "v-wcQf4BDY0"], "start_seconds": ["150", "120"], "properties": ["wind, blow, zoom", "bark, yip, sharply"], "captions_pred_video": ["is taken from a motorcycle's point of view", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a cat meows and children speak", "a person snoring several times"], "sample_ids": ["x5cuQjOdM3E", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["cat, speak, children", "snore, person, several"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a cat meows and a woman speaks", "a person is snoring loudly"], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "people cheer as a vehicle engine revs"], "sample_ids": ["zO-LSSY92ZM", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["liquid, surface, sound", "engine revs, vehicle, people"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["steam is hissing and hissing", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["w6RTHR6AeAg", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["call, owl, screech", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "a duck quacks continuously"], "sample_ids": ["xjhAnI2q6hM", "vh30P49Po6s"], "start_seconds": ["6", "30"], "properties": ["wind, blow, loudly", "quacks, continuously, duck"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "people speak softly as food sizzles"], "sample_ids": ["sU53zg9Jp7s", "yhQ2Lg-7qDY"], "start_seconds": ["380", "130"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "food, sizzle, speak"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a faucet is running and a man is speaking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["s4Uz1Ffgo04", "wz7N8YRy74I"], "start_seconds": ["100", "30"], "properties": ["water, rushes, motorcycle", "rooster, crow, background, men"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["w9lpbUn0hPc", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["male, wind, rustling", "rooster, crow, background, men"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a woman speaks and other women and a man talk with her"], "sample_ids": ["se87d6yxEOA", "vbpKkWvfOu4"], "start_seconds": ["10", "560"], "properties": ["run, whistle, pass", "a, woman, man"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a man speaks over a running engine and blowing wind"], "sample_ids": ["zl9Dqx-j7q4", "ylpYOorfH4o"], "start_seconds": ["6", "410"], "properties": ["engine, laugh, loud", "engine, running, wind"], "captions_pred_video": ["footage of a man driving a car in the dark", "for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking and an engine is revving"], "question": "which entity is a man speaking over a running engine and blowing wind?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["slZLHwNbbt4", "yDoT73BWsdA"], "start_seconds": ["300", "10"], "properties": ["train, horn, sound", "engine, revs, vehicle"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["people speak and tapping occurs", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["tFCUUGdREgA", "ziUT9IFTkjg"], "start_seconds": ["70", "10"], "properties": ["people, tap, speak", "background, birds, rustling"], "captions_pred_video": ["a person riding a white horse in an indoor arena", null], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["xyL9F5VrjkE", "wnpJndXuxLc"], "start_seconds": ["20", "50"], "properties": ["wind, motor, distance", "blows, vehicle, train"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is about a train blowing a horn?", "label": 1}, {"captions": ["some clanking with distant murmuring", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["uMTTDZ2mb4", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["clanking, murmuring, distant", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more abrasive", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uC9dtII1KDI", "tdWhHV3X25Q"], "start_seconds": ["150", "60"], "properties": ["wind, gusts, distance", "applause, audience, yells"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a human activity", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "an infant crying as a woman laughs"], "sample_ids": ["vbpKkWvfOu4", "xhmRY9yhC7c"], "start_seconds": ["560", "20"], "properties": ["a, woman, man", "a, laugh, infant"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a baby cries and a woman speaks"], "question": "which woman is laughing", "label": 1}, {"captions": ["someone whistles a tune", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["sIXTftIuUgw", "tDVADusiIoc"], "start_seconds": ["90", "60"], "properties": ["someone, tune, whistle", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person whistling a song", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yJ0TePmaOo", "wz7N8YRy74I"], "start_seconds": ["390", "30"], "properties": ["two hard objects, man, speak", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a toilet flushes and a female speaks"], "sample_ids": ["zhx6hoYrHeI", "yaln9y8I7ms"], "start_seconds": ["160", "230"], "properties": ["engine, sputter, rough", "female, flushes, toilet"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "footage is blurry and out of focus"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "a telephone rings followed by a woman talking"], "sample_ids": ["w0xsN8X18Y", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["music, surface, rain", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a man speaks as crickets sing", "water runs into a sink while men speak"], "sample_ids": ["ryFDPxgDOGc", "vzceMbklWc"], "start_seconds": ["570", "180"], "properties": ["a, crickets, sing", "water, sink, run"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "water is running and a man is speaking"], "question": "which entity is a man speaking as crickets sing?", "label": 0}, {"captions": ["an engine works in idle nearby followed by a man talking", "a man speaks as a car is passing by"], "sample_ids": ["wqADXCzngMw", "sK4u5T8hW78"], "start_seconds": ["340", "30"], "properties": ["engine, idle, man", "a, car, pass"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["wSVhSdj0F0", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["beep, clang, footsteps", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be heard in a car", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "an airplane engine spools and people speak"], "sample_ids": ["tK4VlLsNxak", "wTjoRj1se3U"], "start_seconds": ["120", "390"], "properties": ["a, dial, telephone", "airplane, engine, spool"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tIY7qOV3rEM", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "multiple, people, yell"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a crowd of people are talking and laughing"], "question": "which entity is a human activity", "label": 1}, {"captions": ["a toilet flushes and water drains", "a small engine idles continuously"], "sample_ids": ["sfAvvZwdLCY", "y5WII6cTH7k"], "start_seconds": ["20", "40"], "properties": ["water drains, flushes, water", "engine, idle, continuously"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a toilet is flushed", "an engine is knocking and vibrating "], "question": "which entity is not a machine?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "wind blowing followed by a zoom"], "sample_ids": ["x6ijhqRY38s", "vr8ZXjEBhMQ"], "start_seconds": ["250", "150"], "properties": ["something metal, glass, hit", "wind, blow, zoom"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "small dogs yip and bark sharply"], "sample_ids": ["w5W5Kqtc8E", "v-wcQf4BDY0"], "start_seconds": ["100", "120"], "properties": ["wind, blow, vehicle", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "vehicles pass by on a roadway"], "sample_ids": ["uYT5gxnyMWM", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["person, spray, yell", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a car is driving on the road "], "question": "which entity is more passive", "label": 1}, {"captions": ["a kid speaks followed by music playing", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tQWGZLItBXk", "vbZ-0lGPneg"], "start_seconds": ["170", "30"], "properties": ["music, kid, speak", "a woman, a television program, a bird"], "captions_pred_video": ["worms revolution screenshots", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a dog is whimpering"], "question": "which entity has more birds", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "people speak as gunfire rings out"], "sample_ids": ["w5W5Kqtc8E", "wqTCwqVRDlk"], "start_seconds": ["100", "80"], "properties": ["wind, engine, scream", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["viuTg1M-dqg", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["two men, speak, follow", "a woman, something, fried"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["xl2PIWyXaM", "vzxHnu-SFEw"], "start_seconds": ["160", "80"], "properties": ["chirp, man, younger person", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["birds are chirping and people are talking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vlJS7LN2XyM", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["background, clocks, ticking", "a woman, a television program, a bird"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program in the background?", "label": 1}, {"captions": ["someone is burping continuously", "water is sprayed across a hard surface"], "sample_ids": ["y636gklDioE", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["burps, burps, burps", "water, spray, surface"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a person burps loudly several times", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a door opens and birds chirp", "water pouring and bubbling"], "sample_ids": ["yeFvk9x0wWI", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["door, open, birds", "water, bubbles, pouring"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a child speaks", "water splashes as an animal walks through"], "sample_ids": ["yW6FWLSLkx4", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["a, child, speaks", "animal, water, splashes"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks as several small engines run", "a vehicles accelerate quickly and someone laughs"], "sample_ids": ["u9A6VZQCZpU", "uWPRNLnpy7Y"], "start_seconds": ["30", "10"], "properties": ["a, man, talk", "accelerate, laugh, vehicle"], "captions_pred_video": [null, "is taken from a car driving down the street"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a car accelerates and revs its engine "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["zgUgkpk78xU", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["horn, bells, ring", "female, spraying, scream"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking and a baby is crying"], "question": "which entity is a warning", "label": 0}, {"captions": ["a man speaks while playing a video game on a keyboard", "people applaud and hoot and chat quietly"], "sample_ids": ["tw76HGONaKg", "wwyfGO2J4"], "start_seconds": ["570", "90"], "properties": ["A, game, keyboard", "people, applaud, hoot"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "a person snores loudly multiple times at a close distance"], "sample_ids": ["rwtmaKiCcQU", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["nozzle, depressed, spray can", "loud, multiple, distance"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", null], "captions_pred_audio": ["spraying and people speaking", "a person snoring loudly"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a sleeping person snores and wheezes", "people speak as gunfire rings out"], "sample_ids": ["spJCm8tD9Zo", "wqTCwqVRDlk"], "start_seconds": ["90", "80"], "properties": ["snores, wheezes, sleeps", "gunfire, ring, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "paper is crumpling consistently"], "sample_ids": ["sapQIQUhFc", "v5cSxLaHADY"], "start_seconds": ["280", "0"], "properties": ["liquid, flow, distance", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vb1fPSDI4c", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["multiple, people, yell", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a crowd of people are talking and laughing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 0}, {"captions": ["small dogs growl, bark and yip.", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sShpyu2l4YQ", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["growl, bark, yip", "airplane, boy, fly"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a dog is barking and growling", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uZesmtKZGSw", "vJ7JPEFhyLA"], "start_seconds": ["250", "16"], "properties": ["car, track, man", "three men, wind, flow"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about cars going around a track?", "label": 0}, {"captions": ["an adult man speaks over glass clinking", "water splashes as an animal walks through"], "sample_ids": ["u6jIvCtKarQ", "w1ir-sZ3Im8"], "start_seconds": ["70", "90"], "properties": ["a, man, speaks", "animal, water, splashes"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["w2M4i1mklOA", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "gun, shoot, water"], "captions_pred_video": ["footage of an antique clock", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a small engine spits as it runs", "a infant makes noise and is excited"], "sample_ids": ["sZvwOuuPGP0", "wIJK3-5y0kA"], "start_seconds": ["50", "30"], "properties": ["spits, engine, runs", "noise, excited, infant"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a medium engine is running ", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "paper is crumpling consistently"], "sample_ids": ["xyL9F5VrjkE", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["wind, motor, distance", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a car speeding up in the distance"], "sample_ids": ["vddP56-ogds", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["water, splash, person, laugh", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["un9VQlzgZM", "t97k0cejSQE"], "start_seconds": ["5", "250"], "properties": ["females, talk, laugh", "sound, chirp, buzz"], "captions_pred_video": [null, "a bee on a purple thistle flower"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a bee buzzes and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a small engine idles continuously", "an infant crying as a woman laughs"], "sample_ids": ["y5WII6cTH7k", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["engine, idle, continuously", "a, laugh, infant"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a baby cries and a woman speaks"], "question": "which entity is not a person?", "label": 0}, {"captions": ["some clanking with distant murmuring", "winds blows roughly as a vehicle races past"], "sample_ids": ["uMTTDZ2mb4", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["clanking, murmuring, distant", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a person is snoring while sleeping", "wind blows as people chatter quietly"], "sample_ids": ["vJrjSeP17yE", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["a person is sleeping, snoring, person", "wind, chatter, people"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage is blurry and out of focus"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "dishes cling together then a man begins to speak"], "sample_ids": ["vhJWZheqaE", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["water drains unevenly, toilet flushes, water drains", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a toilet is flushed", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a toilet flushing and water draining unevenly?", "label": 0}, {"captions": ["children speak as a female ask them questions", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wEBlkGWVWwE", "vJ7JPEFhyLA"], "start_seconds": ["260", "16"], "properties": ["female, speak, questions", "three men, wind, flow"], "captions_pred_video": ["shows a person writing on the whiteboard", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a female speaking to children?", "label": 0}, {"captions": ["water gurgles, metal squeaks and the water stops", "some tunes played by whistling"], "sample_ids": ["x4a9YGIw4ok", "u6BnG6YZqJ4"], "start_seconds": ["120", "0"], "properties": ["water, gurgles, stops", "tune, play, whistling"], "captions_pred_video": ["footage is blurry and out of focus", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a toilet flushes and water splashes", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "water runs into a sink while men speak"], "sample_ids": ["zcDwZ6W7E3E", "vzceMbklWc"], "start_seconds": ["180", "180"], "properties": ["a, man, speak", "water, sink, run"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "water is running and a man is speaking"], "question": "which entity is about water running into a sink?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["yajyRTUQk3U", "y8WEcpOlT3I"], "start_seconds": ["400", "40"], "properties": ["noise, woman, speak", "harsh, wind, blows"], "captions_pred_video": ["- a woman cooking in the kitchen", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking over a harsh wind?", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ugHJF0hfYkg", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["engine, running, continuously", "wind, blow, vehicle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a running engine", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tezvROoo4bs", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["audio, throttle, speaking", "female, spraying, scream"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["an aircraft engine runs", "an insect buzzes around continuously"], "sample_ids": ["yLCORCnd35Q", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["engine, aircraft, runs", "buzzes, continuously, insect"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vqZuVbG6-HI", "wDVMhEdTiVw"], "start_seconds": ["130", "30"], "properties": ["background, male, female", "gun, shoot, water"], "captions_pred_video": ["footage is blurry because it's raining outside", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["music plays followed by gunshots and then an explosion", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xKB8O8LTs6s", "uYT5gxnyMWM"], "start_seconds": ["70", "50"], "properties": ["music, gunshots, explosion", "female, spraying, scream"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a woman is speaking and a baby is crying"], "question": "which entity is more calm", "label": 1}, {"captions": ["a helicopter engine idles continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["ugHJF0hfYkg", "yDoT73BWsdA"], "start_seconds": ["10", "10"], "properties": ["engine, idle, continuously", "engine, revs, vehicle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a helicopter is flying overhead ", "a race car accelerates and revs its engine "], "question": "which engine is revving", "label": 1}, {"captions": ["sawing of wood and rustling with leaves blowing in the distance", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["uiItxDsDMFI", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["sound, distance, leaves", "sound, chirp, buzz"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "a bee on a purple thistle flower"], "captions_pred_audio": ["a saw is being used with background noise ", "a bee buzzes and a woman speaks"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a person sniffs and sneezes", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uRlbY6aoBU", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["sneezes, person, sniffs", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is sneezing ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a door slams shut roughly", "a toilet flushes and water drains"], "sample_ids": ["zkKdxzNC97Y", "sfAvvZwdLCY"], "start_seconds": ["27", "20"], "properties": ["a door, slams, shut", "water drains, flushes, water"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a door is opened and closed", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "a vehicle engine accelerating then running on idle"], "sample_ids": ["se87d6yxEOA", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["run, whistle, pass", "engine, accelerate, idle"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "an engine is idling"], "question": "which engine is running on idle", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["vYkA3cfXp5Q", "wyllXV6PjKo"], "start_seconds": ["30", "30"], "properties": ["speed, idle, accelerate", "a baby, a woman, a man"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", null], "captions_pred_audio": ["an engine is idling", "a woman speaks and a baby cries"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "people applaud and hoot and chat quietly"], "sample_ids": ["tw76HGONaKg", "wwyfGO2J4"], "start_seconds": ["570", "90"], "properties": ["music, click, man", "people, applaud, hoot"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "people are clapping and speaking with background noise "], "question": "which entity has more people", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "metal clacking as food and oil sizzles followed by a woman talking"], "sample_ids": ["sTpirNYo8vQ", "vW4x7S1VfQc"], "start_seconds": ["30", "150"], "properties": ["a, tone, fast", "clacking, oil, woman"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a person cooking fish in a frying pan on a stove top"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "food sizzles in a frying pan"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a man woman speak while crickets sing"], "sample_ids": ["xvDdE3zNf8Y", "zTLVJCo4WEE"], "start_seconds": ["120", "30"], "properties": ["a, female, speaks", "a, crickets, sing"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman speaks and crickets chirp"], "question": "which entity has a female speaking softly as paper crinkles?", "label": 0}, {"captions": ["an adult woman and an adult man speak", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zTLVJCo4WEE", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "multiple, people, yell"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a toilet flushes and a female speaks"], "sample_ids": ["vlJS7LN2XyM", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["background, clocks, ticking", "female, flushes, toilet"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage is blurry and out of focus"], "captions_pred_audio": ["a ticktock of a clock", "a toilet flushes and a man speaks"], "question": "which entity is accompanied by a female speaking?", "label": 1}, {"captions": ["water pouring and bubbling", "someone is typing on a computer keyboard"], "sample_ids": ["uyRfq-jKPpo", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["water, bubbles, pouring", "keyboard, type, computer"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "how to make money on youtube in spanish"], "captions_pred_audio": ["water is running from a faucet", "a person is typing on a keyboard"], "question": "which is not a source of bubbles", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["zkKdxzNC97Y", "wSVhSdj0F0"], "start_seconds": ["27", "10"], "properties": ["loud, bang, noise", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["footage of the door opening and closing in slow motion", null], "captions_pred_audio": ["a door is opened and closed", "a car horn honks and keys jangle with background noise "], "question": "which entity is softer", "label": 1}, {"captions": ["a consistent ticking pattern", "loud ringing of a telephone stops followed by a man speaking and a digital beep"], "sample_ids": ["sCeWURVHfOM", "uzQnlJXBbOM"], "start_seconds": ["30", "50"], "properties": ["ticking, pattern, clock", "ringing, beep, stop"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "footage of a person using a cell phone on a table"], "captions_pred_audio": ["ticking of a clock", "a telephone rings and a man speaks"], "question": "which entity is a clock", "label": 0}, {"captions": ["a person snores hilariously while someone laughs", "someone snores nearby"], "sample_ids": ["sSMl2vc3ek", "spJCm8tD9Zo"], "start_seconds": ["20", "90"], "properties": ["a person, laughs, snores", "someone snores, nearby, someone"], "captions_pred_video": [null, "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person snoring loudly", "a person is snoring loudly"], "question": "which entity is a person?", "label": 0}, {"captions": ["a car speeding up in the distance", "a telephone rings followed by a woman talking"], "sample_ids": ["u0TrcHhkPQ", "tGcFnX0GHI"], "start_seconds": ["20", "0"], "properties": ["distance, car, speed", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a motorcycle engine is idling", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["vZAqdHZ81yA", "wSVhSdj0F0"], "start_seconds": ["180", "10"], "properties": ["engine, motorcycle, idling", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a car horn honks and keys jangle with background noise "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a person sniffs and sneezes", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["uRlbY6aoBU", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["sneezes, person, sniffs", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a car accelerates and wind blows"], "sample_ids": ["wIvYjuR3nrg", "u0TrcHhkPQ"], "start_seconds": ["9", "20"], "properties": ["birds, pigeons, vocalize", "accelerates, wind, blows"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", null], "captions_pred_audio": ["birds are chirping and cooing", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks with water running", "a cat meows and children speak"], "sample_ids": ["wTideSjRFS0", "x5cuQjOdM3E"], "start_seconds": ["30", "30"], "properties": ["water, running, woman", "cat, speak, children"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a black background with an airplane flying in the sky"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a cat meows and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["an electronic device bleeps once", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["tHJ6JSa8Y4", "t25U-v4k4ts"], "start_seconds": ["0", "40"], "properties": ["bleeps, electronic, device", "a, chirps, bird"], "captions_pred_video": [null, "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a clock is ticking and beeping", "a man is speaking and bees are buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a woman speaks in a fast tone with a male"], "sample_ids": ["xZepNM9qcRA", "sTpirNYo8vQ"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "a, tone, fast"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking while a car is revving and accelerating "], "question": "which entity is a man speaking?", "label": 0}, {"captions": ["a man talks as something metal hits against and glass is set down", "an engine runs loudly"], "sample_ids": ["x6ijhqRY38s", "vqZuVbG6-HI"], "start_seconds": ["250", "130"], "properties": ["something metal, glass, hit", "loud, engine, run"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a person sniffles and sneezes", "a man speaks, another man speaks, and a small bell dings"], "sample_ids": ["uRlbY6aoBU", "t69a8aRKhmc"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "a, b, c"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and birds are chirping in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tMJne1a4AFI", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["wind, buzz, rustling", "a woman, something, fried"], "captions_pred_video": ["a swarm of bees on the ground", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["vSeGhaZt-aI", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["water, bubbles, speak", "wind, blows, vehicle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a calm environment", "label": 0}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a toilet flushes and a female speaks"], "sample_ids": ["vuUVPzd2FXw", "yaln9y8I7ms"], "start_seconds": ["160", "230"], "properties": ["a, steam, release", "female, flushes, toilet"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a toilet flushes and a man speaks"], "question": "which entity is a video of a person speaking?", "label": 1}, {"captions": ["a horse runs while two women talk", "people cheer as a vehicle engine revs"], "sample_ids": ["sdvI1mHAsc", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["two women, horse, run", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an infant crying frantically", "a man speaks followed by another man speaking outside"], "sample_ids": ["zwOBqeFTgiU", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["cry, infant, frantically", "two men, speak, follow"], "captions_pred_video": ["of the baby crying in the car seat", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a human", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a infant makes noise and is excited"], "sample_ids": ["vYkA3cfXp5Q", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, idle", "noise, excited, infant"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["an engine is idling", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["wind blows strongly", "dishes cling together then a man begins to speak"], "sample_ids": ["w8uLijTqtlU", "sQGXqGcwOTc"], "start_seconds": ["70", "3"], "properties": ["wind, blows, strongly", "cling, speak, dishes"], "captions_pred_video": ["footage is blurry and shaky", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["the wind is blowing strongly", "mechanisms are operating and water is splashing "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a dog barks and whimpers", "some clanking with distant murmuring"], "sample_ids": ["sShpyu2l4YQ", "uMTTDZ2mb4"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "clanking, murmuring, distant"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "people are talking and a car is driving by with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vlJS7LN2XyM", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["background, clocks, ticking", "clickety-clack, train, whistle"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a ticktock of a clock", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["an animal quacks rapidly", "someone whistles a tune"], "sample_ids": ["vh30P49Po6s", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["animal, quacks, rapidly", "someone, tune, whistle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "white noise and snoring with some rustling in the background"], "sample_ids": ["zl9Dqx-j7q4", "xzKKf9bKNUo"], "start_seconds": ["6", "10"], "properties": ["engine, laugh, loud", "background, noise, snoring"], "captions_pred_video": ["footage of a man driving a car in the dark", "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["a jet engine roars ", "a person snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a car accelerates and wind blows"], "sample_ids": ["vXlk0lIQBFo", "u0TrcHhkPQ"], "start_seconds": ["470", "20"], "properties": ["wind, talk, vocalize", "accelerates, wind, blows"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "an infant crying frantically"], "sample_ids": ["x5cuQjOdM3E", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["cat, talk, meow", "cry, infant, frantically"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the baby crying in the car seat"], "captions_pred_audio": ["a cat meows and a woman speaks", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a man speaks as a car is passing by"], "sample_ids": ["sLUnaPT5gM8", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "a, car, pass"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car passing by?", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "an infant crying frantically"], "sample_ids": ["vfYTJq7nU", "zwOBqeFTgiU"], "start_seconds": ["130", "30"], "properties": ["ducks, quack, man", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tOj4tdLRaA", "w5W5Kqtc8E"], "start_seconds": ["70", "100"], "properties": ["woman, laugh, baby", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a baby laughing?", "label": 0}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uqFtmnhuqA8", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "gun, shoot, water"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a movie", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ukxt9I7eMMg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["food, pan, cook", "female, spraying, scream"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sK4u5T8hW78", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "male, duck, laugh"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a car speeding up in the distance"], "sample_ids": ["yZrFNS7GFBQ", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["pigeon, buzzes, insect", "distance, car, speed"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a race car accelerates and revs its engine "], "question": "which object is moving faster", "label": 0}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a child and woman laughs and the woman speaks"], "sample_ids": ["ziUT9IFTkjg", "uPDn2BFTHk"], "start_seconds": ["10", "140"], "properties": ["background, birds, rustling", "woman, laughs, speaks"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a baby laughs and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["food is frying then a woman speaks", "some men converse over an engine running"], "sample_ids": ["ukxt9I7eMMg", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["food, woman, speak", "men, converse, engine"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a person whistles and clicks a mouse", "a car speeding up in the distance"], "sample_ids": ["zCrAfDfv6-A", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["person, mouse, click", "distance, car, speed"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", null], "captions_pred_audio": ["a person whistles a song", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["people speak in a closed space", "a telephone rings followed by a woman talking"], "sample_ids": ["sTpirNYo8vQ", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["people, space, speak", "ring, talk, woman"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a car speeding up in the distance"], "sample_ids": ["t25U-v4k4ts", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["a, chirps, bird", "distance, car, speed"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["small dogs yip and bark sharply", "someone is typing on a computer keyboard"], "sample_ids": ["v-wcQf4BDY0", "v0x1odnXtP0"], "start_seconds": ["120", "210"], "properties": ["bark, yip, sharply", "keyboard, type, computer"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "how to make money on youtube in spanish"], "captions_pred_audio": ["a dog barks and growls", "a person is typing on a keyboard"], "question": "which entity is typing", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["yYEVLuqEytU", "su6FAOcOA8c"], "start_seconds": ["40", "4"], "properties": ["grunt, slurp, background", "engine, idle, woman"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a child speaks in closed space"], "sample_ids": ["uiItxDsDMFI", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["wood, piece, saw", "child, space, speak"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a saw is being used with background noise ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not being sawed", "label": 1}, {"captions": ["a small engine idles continuously", "several insects fly while two men talk"], "sample_ids": ["y5WII6cTH7k", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["engine, idle, continuously", "several, fly, men"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is not stationary", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vzxHnu-SFEw", "uYT5gxnyMWM"], "start_seconds": ["80", "50"], "properties": ["two objects, woman, speak", "a, scream, girl"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a train horn sounds as it passes by", "a child speaks in closed space"], "sample_ids": ["ukg5L09Wpvo", "yW6FWLSLkx4"], "start_seconds": ["150", "40"], "properties": ["sound, train, horn", "child, space, speak"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xBxDz0CFVn0", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["wind, chatter, people", "female, spraying, scream"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wTjoRj1se3U", "w5W5Kqtc8E"], "start_seconds": ["390", "100"], "properties": ["airplane, engine, spool", "wind, blow, vehicle"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sG7TyPnFDR0", "uZesmtKZGSw"], "start_seconds": ["180", "250"], "properties": ["beeps, machine, smoke alarm", "men, talk, cars"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "a woman speaks as she rubs two objects together"], "sample_ids": ["uiS58TNyUiw", "vzxHnu-SFEw"], "start_seconds": ["430", "80"], "properties": ["audio, man, speaking", "two objects, woman, speak"], "captions_pred_video": ["of the pigeon in the cage", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a helicopter engine runs", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["t5ZbXbniOWk", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["engine, helicopter, run", "airplane, boy, fly"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "pigeons vocalize and birds chirp"], "sample_ids": ["wsHBIgzs9Fs", "uiS58TNyUiw"], "start_seconds": ["50", "430"], "properties": ["horn, continuous, buzzing", "vocalize, bird, chirp"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "of the pigeon in the cage"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a clock ticktocks"], "sample_ids": ["zl9Dqx-j7q4", "v-g-j2uTByM"], "start_seconds": ["6", "30"], "properties": ["engine, laugh, loud", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a man driving a car in the dark", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a jet engine roars ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "pigeons vocalize and birds chirp"], "sample_ids": ["sAam2NqGhLY", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["snoring, breathing, child", "vocalize, bird, chirp"], "captions_pred_video": ["of a little girl sleeping on a couch", "of the pigeon in the cage"], "captions_pred_audio": ["a person is snoring", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["dogs barking and whimpering", "water pouring and bubbling"], "sample_ids": ["tIY7qOV3rEM", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["barking, whimpering, dog", "water, bubbles, pouring"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["children speak and play together", "a vehicle engine accelerating then running on idle"], "sample_ids": ["yVVP8XvWJTo", "vYkA3cfXp5Q"], "start_seconds": ["260", "30"], "properties": ["children, speak, play", "engine, accelerate, idle"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "an engine is idling"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "birds chirp in the background while a horse neighs followed by a girl speaking"], "sample_ids": ["sNB8zxXneIM", "s59PfAghdkM"], "start_seconds": ["20", "0"], "properties": ["several, quack, cocks", "bird, chirp, background, horse, neigh"], "captions_pred_video": ["a group of geese in a cage", "is an anime scene featuring two people and a horse in the foreground and a fence in the background"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "birds are chirping a horse is neighing and a woman is speaking "], "question": "which entity has a horse?", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "birds coo incessantly"], "sample_ids": ["y2ZBGpgbhHM", "yZrFNS7GFBQ"], "start_seconds": ["30", "30"], "properties": ["birds, tweet, pant", "coo, bird, incessant"], "captions_pred_video": [null, "of the bird in the cage"], "captions_pred_audio": ["birds chirping and a dog panting", "an owl hoots in the background "], "question": "which bird is incessant", "label": 1}, {"captions": ["a church bell rings several times", "water is sprayed across a hard surface"], "sample_ids": ["sUVVjE3Ucp8", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["ring, bell, several", "water, spray, surface"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a church bell is ringing ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "dishes cling together then a man begins to speak"], "sample_ids": ["voJh2gJxXhA", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["music, frog, croak", "cling, speak, dishes"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["music is playing and crickets are chirping ", "mechanisms are operating and water is splashing "], "question": "which entity is about a frog?", "label": 0}, {"captions": ["a flush is followed by gurgling water, then another flush", "a infant makes noise and is excited"], "sample_ids": ["tqR406bGiE", "wIJK3-5y0kA"], "start_seconds": ["40", "30"], "properties": ["flush, water, gurgle", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a toilet is flushed", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wyllXV6PjKo", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["a kid, talk, cry", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["ugHJF0hfYkg", "uEU-Hg5MTN8"], "start_seconds": ["10", "27"], "properties": ["loud, intense, propeller", "animal, grunts, snorts"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["yLy-WycbVVE", "y2ZBGpgbhHM"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "birds, tweet, pant"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", null], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "birds chirping and a dog panting"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a baby cries and a woman moans", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["smDKStoHBJo", "sapQIQUhFc"], "start_seconds": ["0", "280"], "properties": ["a, cry, woman", "liquid, flow, distance"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more distant", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["xfaoyyzw2WU", "tDlysoZiA1I"], "start_seconds": ["180", "0"], "properties": ["loud, jet engine, roar", "animal, grunts, chirps"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "birds are chirping and a rooster is crowing "], "question": "which entity is quieter", "label": 1}, {"captions": ["male speech with light ticking", "a stream of water runs briefly"], "sample_ids": ["xO-Q2BlIIPU", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["male, speech, ticking", "stream, water, run"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["water flows followed by women screaming", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["w5W5Kqtc8E", "ziUT9IFTkjg"], "start_seconds": ["100", "10"], "properties": ["water, flow, women", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["water splashes as an animal walks through", "some men converse over an engine running"], "sample_ids": ["w1ir-sZ3Im8", "sCiy7QS1U"], "start_seconds": ["90", "300"], "properties": ["animal, water, splashes", "men, converse, engine"], "captions_pred_video": ["footage of a group of people riding horses through a river", null], "captions_pred_audio": ["water splashes and gurgles as people speak", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["multiple people speak then an emergency vehicle siren sounds", "water splashes as an animal walks through"], "sample_ids": ["wy1eKjR7KC0", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["audio, sound, siren", "animal, water, splashes"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and a siren is going off", "water splashes and gurgles as people speak"], "question": "which entity is a video", "label": 1}, {"captions": ["a large crowd cheers and applauds", "water flows and trickles"], "sample_ids": ["rqfQRErjfk8", "tB7hWb9gTuQ"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "water, flow, trickle"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a crowd of people clapping and cheering", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "water flows as men speak and yell"], "sample_ids": ["tZGN5a7ybxo", "vJ7JPEFhyLA"], "start_seconds": ["60", "16"], "properties": ["ring, train, horn", "water, flow, men"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a train horn blowing?", "label": 0}, {"captions": ["race cars go around a track as a man commentates", "paper is crumpling consistently"], "sample_ids": ["uZesmtKZGSw", "v5cSxLaHADY"], "start_seconds": ["250", "0"], "properties": ["car, track, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "water runs into a sink while men speak"], "sample_ids": ["weDbePuc-Xc", "vzceMbklWc"], "start_seconds": ["40", "180"], "properties": ["cartoon character, music, vocalize", "water, sink, run"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "water is running and a man is speaking"], "question": "which entity is a video of a sink?", "label": 1}, {"captions": ["a vehicle engine revs as the vehicle passes", "an airplane engine runs"], "sample_ids": ["yDoT73BWsdA", "yVPZ2MNWpms"], "start_seconds": ["10", "0"], "properties": ["engine, revs, vehicle", "engine, airplane, runs"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "an engine runs loudly"], "sample_ids": ["uJV8NDaHqqk", "vqZuVbG6-HI"], "start_seconds": ["100", "130"], "properties": ["loud, fly, chirp", "loud, engine, run"], "captions_pred_video": ["a bee hive in a wooden box", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a swarm of bees buzzing around", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as a machine runs", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vD6lYD1l0BY", "uEU-Hg5MTN8"], "start_seconds": ["330", "27"], "properties": ["a, machine, run", "a woman, laughs, animal"], "captions_pred_video": ["game controller being held in the hands of the person", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a baby is crying"], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wy1eKjR7KC0", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["people, talk, distance", "rooster, crow, background, men"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a toilet flushes and water drains unevenly"], "sample_ids": ["zl9Dqx-j7q4", "vhJWZheqaE"], "start_seconds": ["6", "0"], "properties": ["engine, laugh, loud", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a toilet is flushed"], "question": "which entity is a toilet?", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a weapon fires multiple times"], "sample_ids": ["wqZ135Ssz0", "sMC07Ucy7kg"], "start_seconds": ["60", "10"], "properties": ["man, woman, squawks", "weapon, fire, multiple"], "captions_pred_video": [null, "footage is from a car's point of view"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["s4Uz1Ffgo04", "y2bVZ7rz-5M"], "start_seconds": ["100", "280"], "properties": ["roars, background, people speaking", "motor noise, horn, siren"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "paper is crumpling consistently"], "sample_ids": ["s59PfAghdkM", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["bird, chirp, background, horse, neigh", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "paper is crumpled and crinkled"], "question": "which entity is more quiet", "label": 1}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "a man speaks as a motor runs in the background"], "sample_ids": ["vfYTJq7nU", "xZepNM9qcRA"], "start_seconds": ["130", "30"], "properties": ["rustling, ducks, quack", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["wqZ135Ssz0", "xV7Mg1QucSc"], "start_seconds": ["60", "14"], "properties": ["man, woman, squawks", "alarm, ticktocks, laughs"], "captions_pred_video": [null, "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "an alarm clock ticks and a woman laughs"], "question": "which entity is accompanied by a man speaking", "label": 0}, {"captions": ["an infant crying frantically", "a motor noise is accompanied by a door opening and closing"], "sample_ids": ["zwOBqeFTgiU", "vBHyYJ8pL0"], "start_seconds": ["30", "2"], "properties": ["cry, infant, frantically", "noise, door, opening"], "captions_pred_video": ["of the baby crying in the car seat", null], "captions_pred_audio": ["a baby cries loudly", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is not a person", "label": 1}, {"captions": ["loud, continuous burping", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["y636gklDioE", "y2bVZ7rz-5M"], "start_seconds": ["20", "280"], "properties": ["loud, continuous, burping", "motor noise, horn, siren"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a person burps loudly several times", "a truck is honking its horn and a siren is blaring "], "question": "which is louder", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "vehicles pass by on a roadway"], "sample_ids": ["sEprKHm8Sj8", "tgbONvsP47Y"], "start_seconds": ["90", "0"], "properties": ["car, tires, slows", "pass, vehicle, roadway"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving on the road "], "question": "which vehicle is moving faster", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sYITalLZjj4", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["water, rushes, background, birds", "female, spraying, scream"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["wind blows and birds chirp", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a speedboat passes quickly on the water"], "sample_ids": ["y2ZBGpgbhHM", "tjmoSi330GM"], "start_seconds": ["30", "23"], "properties": ["birds, tweet, pant", "speed, water, boat"], "captions_pred_video": [null, "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["birds chirping and a dog panting", "a motorboat speeds through water with wind noise "], "question": "which entity is moving faster", "label": 1}, {"captions": ["water rushes by", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["x-PeY8Yb8M4", "wDVMhEdTiVw"], "start_seconds": ["300", "30"], "properties": ["water, rushes, by", "gun, shoot, water"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a car is driving on a wet road ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a video of water moving?", "label": 0}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a child speaks in closed space"], "sample_ids": ["yZrFNS7GFBQ", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["pigeon, buzzes, insect", "child, space, speak"], "captions_pred_video": ["of the bird in the cage", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["an owl hoots in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "water splashes as an animal walks through"], "sample_ids": ["weDbePuc-Xc", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["music, slaps, human", "animal, water, splashes"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video of a person playing music?", "label": 0}, {"captions": ["a horn rings out as a machine runs by", "a train horn blows as it passes by"], "sample_ids": ["slZLHwNbbt4", "zVacuqSb4LI"], "start_seconds": ["300", "30"], "properties": ["a, horn, run", "horn, blows, train"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a toilet flushes and water drains"], "sample_ids": ["sfAvvZwdLCY", "sfAvvZwdLCY"], "start_seconds": ["20", "20"], "properties": ["flushes, drains, water", "water drains, flushes, water"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a toilet is flushed", "a toilet is flushed"], "question": "which entity has more water", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a man speaks as a motor runs in the background"], "sample_ids": ["vddP56-ogds", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a man speaks as a motor runs in the background"], "sample_ids": ["t25U-v4k4ts", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["bees buzz, birds chirp, man speaks", "background, motor, run"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "an insect buzzes around continuously"], "sample_ids": ["vSeGhaZt-aI", "v25l1jef3JY"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, run", "buzzes, continuously, insect"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "vehicles pass by on a roadway"], "sample_ids": ["yJ0TePmaOo", "tgbONvsP47Y"], "start_seconds": ["390", "0"], "properties": ["two hard objects, man, speak", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a infant makes noise and is excited"], "sample_ids": ["ylpYOorfH4o", "wIJK3-5y0kA"], "start_seconds": ["410", "30"], "properties": ["motor, run, steady", "noise, excited, infant"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "some men converse over an engine running"], "sample_ids": ["vddP56-ogds", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["water, splash, person, laugh", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a person speaking?", "label": 0}, {"captions": ["an adult speaks and is typing on a computer keyboard", "several insects fly while two men talk"], "sample_ids": ["x9JovgqUcs", "s-T9OVOiMLo"], "start_seconds": ["500", "330"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a person speaking and typing on a computer keyboard?", "label": 0}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["wP8ZKrlx3oA", "su6FAOcOA8c"], "start_seconds": ["40", "4"], "properties": ["rain, storm, thunder", "engine, idle, woman"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "wind blows and a vehicle blows a hard then a train blows a horn"], "sample_ids": ["wPz6QRAkEb4", "wnpJndXuxLc"], "start_seconds": ["60", "50"], "properties": ["chirps, tweets, song", "blows, vehicle, train"], "captions_pred_video": ["a bird in a cage on top of a pole", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["birds are chirping in the background ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is not a bird?", "label": 1}, {"captions": ["frogs croak and vocalize", "a car speeding up in the distance"], "sample_ids": ["yswmmRZFItk", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["croak, vocalize, frog", "distance, car, speed"], "captions_pred_video": ["a close up of a frog in the water", null], "captions_pred_audio": ["a frog is croaking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks as a machine runs", "an airplane engine spools and people speak"], "sample_ids": ["vD6lYD1l0BY", "wTjoRj1se3U"], "start_seconds": ["330", "390"], "properties": ["a, machine, run", "airplane, engine, spool"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a jet engine is running and people are talking"], "question": "which entity is a machine", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a person is snoring while sleeping"], "sample_ids": ["v7jJS8aAyA", "vJrjSeP17yE"], "start_seconds": ["10", "40"], "properties": ["wind, blows, loudly", "a person is sleeping, snoring, person"], "captions_pred_video": [null, "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a person snoring loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xERFUeZONz8", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "gun, shoot, water"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["an emergency vehicle siren blares", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["scraping and female speech with distant music", "a toilet flushes and a female speaks"], "sample_ids": ["yHeVV-xeOxQ", "yaln9y8I7ms"], "start_seconds": ["130", "230"], "properties": ["female, speech, music", "female, flushes, toilet"], "captions_pred_video": ["of a girl milking a goat's udder", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a man speaks as a car is passing by"], "sample_ids": ["soTOh3zYJfY", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["vehicle, skid, tires", "a, car, pass"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which vehicle is skidding and squealing tires", "label": 0}, {"captions": ["an electronic device bleeps once", "small dogs yip and bark sharply"], "sample_ids": ["tHJ6JSa8Y4", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["bleeps, electronic, device", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a clock is ticking and beeping", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uEU-Hg5MTN8", "su6FAOcOA8c"], "start_seconds": ["27", "4"], "properties": ["a woman, laughs, animal", "engine, idle, woman"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a subway train is moving "], "question": "which woman is speaking", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "an airplane engine runs"], "sample_ids": ["w5W5Kqtc8E", "yVPZ2MNWpms"], "start_seconds": ["100", "0"], "properties": ["wind, blow, vehicle", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "water splashes as an animal walks through"], "sample_ids": ["vW4x7S1VfQc", "w1ir-sZ3Im8"], "start_seconds": ["150", "90"], "properties": ["clacking, oil, woman", "animal, water, splashes"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["food sizzles in a frying pan", "water splashes and gurgles as people speak"], "question": "which entity is more likely to be a video of a person cooking?", "label": 0}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["wyllXV6PjKo", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["a baby, a woman, a man", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman speaks and a baby cries", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tQWGZLItBXk", "zj2R0XoFr5k"], "start_seconds": ["170", "50"], "properties": ["music, kid, speak", "airplane, boy, fly"], "captions_pred_video": ["worms revolution screenshots", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "vehicles pass by on a roadway"], "sample_ids": ["vBslzh7saPw", "tgbONvsP47Y"], "start_seconds": ["90", "0"], "properties": ["power, scream, increase", "pass, vehicle, roadway"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine runs continuously", "small dogs yip and bark sharply"], "sample_ids": ["wdXV3Pv0jiY", "v-wcQf4BDY0"], "start_seconds": ["11", "120"], "properties": ["machine, running, continuously", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry and shaky", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vGj1XLJvNrw", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["wails, wails, pass", "gun, shoot, water"], "captions_pred_video": ["footage of a police car driving down a city street", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not followed by water sloshing?", "label": 0}, {"captions": ["a motor idles, accelerates, then slows down.", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vYkA3cfXp5Q", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["speed, idle, accelerate", "female, spraying, scream"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tDVADusiIoc", "zl9Dqx-j7q4"], "start_seconds": ["60", "6"], "properties": ["water, radio, man", "engine, laugh, loud"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a jet engine roars "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an animal quacks rapidly", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vh30P49Po6s", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["animal, quacks, rapidly", "a woman, a television program, a bird"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a duck is quacking loudly", "a woman is speaking and a dog is whimpering"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a car speeding up in the distance"], "sample_ids": ["sSMl2vc3ek", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["a person, laughs, snores", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["x9JovgqUcs", "tdWhHV3X25Q"], "start_seconds": ["500", "60"], "properties": ["a, man, speaks, keyboard", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "people cheer as a vehicle engine revs"], "sample_ids": ["vfYTJq7nU", "xjhAnI2q6hM"], "start_seconds": ["130", "6"], "properties": ["ducks, quack, man", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an engine runs loudly", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["vqZuVbG6-HI", "uEU-Hg5MTN8"], "start_seconds": ["130", "27"], "properties": ["loud, engine, run", "animal, grunts, snorts"], "captions_pred_video": ["footage is blurry because it's raining outside", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is quieter", "label": 1}, {"captions": ["a motorcycle engine works nearby", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tOSWIURC-4", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zdYdyF9-m8U", "zj2R0XoFr5k"], "start_seconds": ["7", "50"], "properties": ["wind, crash, shoreline", "airplane, boy, fly"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["waves crash and wind blows ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a vehicle engine accelerating then running on idle"], "sample_ids": ["uWPRNLnpy7Y", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "engine, accelerate, idle"], "captions_pred_video": ["is taken from a car driving down the street", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a car accelerates and revs its engine ", "an engine is idling"], "question": "which vehicle is accelerating quickly", "label": 0}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a vehicle engine revs and tires squeal"], "sample_ids": ["wnpJndXuxLc", "yDoT73BWsdA"], "start_seconds": ["50", "10"], "properties": ["blows, vehicle, train", "engine revs, tires squeal, vehicle"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xSKJGCItUWE", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["engine, work, child", "stream, water, flow"], "captions_pred_video": ["footage of the helicopter flying in the room", "footage is blurry and out of focus"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xSKJGCItUWE", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["engine, work, child", "applause, audience, yells"], "captions_pred_video": ["footage of the helicopter flying in the room", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yRx9txMcBl0", "vbZ-0lGPneg"], "start_seconds": ["40", "30"], "properties": ["accelerates, tires, squeals", "a woman, a television program, a bird"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a stream of water runs briefly"], "sample_ids": ["y8WEcpOlT3I", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["harsh, wind, blows", "stream, water, run"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["ylpYOorfH4o", "tiDFTC-5vU"], "start_seconds": ["410", "30"], "properties": ["engine, running, wind", "male, duck, laugh"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking over?", "label": 0}, {"captions": ["an infant crying as a woman laughs", "some men converse over an engine running"], "sample_ids": ["xhmRY9yhC7c", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["a, laugh, infant", "men, converse, engine"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a woman and an infant?", "label": 0}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "a horse runs while two women talk"], "sample_ids": ["ylpYOorfH4o", "sdvI1mHAsc"], "start_seconds": ["410", "20"], "properties": ["motor, run, steady", "two women, horse, run"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "horses clip-clop and a woman speaks"], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a woman speaks as she rubs two objects together"], "sample_ids": ["w0xsN8X18Y", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["rain, thunder, surface", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["a person sniffles and then sneezes in the distance", "paper is crumpling consistently"], "sample_ids": ["uRlbY6aoBU", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["a, distance, sneeze", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is sneezing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["ylpYOorfH4o", "uEU-Hg5MTN8"], "start_seconds": ["410", "27"], "properties": ["engine, run, loud", "a woman, laughs, animal"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a woman is speaking and a baby is crying"], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a large crowd cheers and applauds"], "sample_ids": ["uC9dtII1KDI", "rqfQRErjfk8"], "start_seconds": ["150", "170"], "properties": ["wind, gusts, distance", "crowd, cheers, applauds"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a crowd of people clapping and cheering"], "question": "which entity is more likely to be a natural phenomenon", "label": 0}, {"captions": ["a helicopter engine idles continuously", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["ugHJF0hfYkg", "xfaoyyzw2WU"], "start_seconds": ["10", "180"], "properties": ["engine, idle, continuously", "loud, jet engine, roar"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a helicopter is flying overhead ", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "pigeons vocalize and birds chirp"], "sample_ids": ["sncRqQ67iJU", "uiS58TNyUiw"], "start_seconds": ["460", "430"], "properties": ["loud, repeatedly, man", "vocalize, bird, chirp"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "of the pigeon in the cage"], "captions_pred_audio": ["a person is snoring", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["someone whistles a tune", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sIXTftIuUgw", "wDVMhEdTiVw"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person whistling a song", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["multiple motorcycles pass by as a man speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zcDwZ6W7E3E", "w5W5Kqtc8E"], "start_seconds": ["180", "100"], "properties": ["man, speak, motorcycles", "wind, blow, vehicle"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "dishes cling together then a man begins to speak"], "sample_ids": ["tw76HGONaKg", "sQGXqGcwOTc"], "start_seconds": ["570", "3"], "properties": ["A, game, keyboard", "cling, speak, dishes"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a person snores hilariously while someone laughs", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sSMl2vc3ek", "wqZ135Ssz0"], "start_seconds": ["20", "60"], "properties": ["a person, laughs, snores", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a person snoring loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "a man speaks as a motor runs in the background"], "sample_ids": ["vr8ZXjEBhMQ", "xZepNM9qcRA"], "start_seconds": ["150", "30"], "properties": ["sound, distance, engine", "background, motor, run"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["sjlVMgdGSK0", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["car, revving, loudly", "animal, grunts, chirps"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a car accelerates and revs its engine ", "birds are chirping and a rooster is crowing "], "question": "which entity is quieter", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zl9Dqx-j7q4", "tiDFTC-5vU"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "male, duck, laugh"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a man is speaking and ducks are quacking"], "question": "which entity is a person?", "label": 0}, {"captions": ["a vehicle engine runs as a siren and horn sound", "a man speaks followed by another man speaking outside"], "sample_ids": ["u--KhUW8l1Y", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["sound, vehicle, horn", "two men, speak, follow"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "a mechanical buzzing getting louder"], "sample_ids": ["wwyfGO2J4", "sEprKHm8Sj8"], "start_seconds": ["90", "90"], "properties": ["people, applaud, hoot", "noise, loud, buzzing"], "captions_pred_video": [null, "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is quieter", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "a man speaks as a car is passing by"], "sample_ids": ["sQwlkXjQabo", "sK4u5T8hW78"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "a, car, pass"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "a duck quacks continuously"], "sample_ids": ["ujMt0-D-x2k", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["snoring, rhythmical, nearby", "quacks, continuously, duck"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person is snoring loudly", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["t25U-v4k4ts", "wSVhSdj0F0"], "start_seconds": ["40", "10"], "properties": ["bees buzz, birds chirp, man speaks", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a car horn honks and keys jangle with background noise "], "question": "which entity is more likely to be heard in a car", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a car speeding up in the distance"], "sample_ids": ["smGI3C1NZc", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["water, drain, toilet", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a propeller rotates loudly and intensely"], "sample_ids": ["zTLVJCo4WEE", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["two people, adult, speak", "loud, intense, propeller"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "small dogs yip and bark sharply"], "sample_ids": ["wqADXCzngMw", "v-wcQf4BDY0"], "start_seconds": ["340", "120"], "properties": ["audio, humming, revving", "bark, yip, sharply"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "frogs croak and vocalize"], "sample_ids": ["wwyfGO2J4", "yswmmRZFItk"], "start_seconds": ["90", "0"], "properties": ["people, applaud, hoot", "croak, vocalize, frog"], "captions_pred_video": [null, "a close up of a frog in the water"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a child yells and another yells", "a woman speaks happily and an animal chirps"], "sample_ids": ["vMDHu7Lxcgw", "uWAAAL4CIoc"], "start_seconds": ["410", "0"], "properties": ["two, yell, child", "a woman, chirps, animal"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", null], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a woman is speaking and a dog is barking "], "question": "which entity has a more calming effect", "label": 1}, {"captions": ["a child speaks in closed space", "a woman speaks as she rubs two objects together"], "sample_ids": ["yW6FWLSLkx4", "vzxHnu-SFEw"], "start_seconds": ["40", "80"], "properties": ["child, space, speak", "two objects, woman, speak"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is speaking", "label": 1}, {"captions": ["some tunes played by whistling", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["u6BnG6YZqJ4", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["tune, play, whistling", "animal, grunts, chirps"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a person whistling a song", "birds are chirping and a rooster is crowing "], "question": "which entity is not a musical instrument", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uOpoD0gGXcs", "vfYTJq7nU"], "start_seconds": ["120", "130"], "properties": ["chirps, woman, bird", "rustling, ducks, quack"], "captions_pred_video": ["a herd of cows grazing in the field", null], "captions_pred_audio": ["birds are chirping and a man is speaking", "a duck quacks and a woman speaks"], "question": "which entity is about birds?", "label": 0}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a car speeding up in the distance"], "sample_ids": ["weDbePuc-Xc", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["music, slaps, human", "distance, car, speed"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "here comes the train and it starts to blow the horn and get close"], "sample_ids": ["w0xsN8X18Y", "s7knHCFW82w"], "start_seconds": ["30", "30"], "properties": ["rain, thunder, surface", "blow horn, get close, train"], "captions_pred_video": [null, "footage of the train on the tracks near a building and a car parked on the side of the road"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a train is blowing its horn and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["rain falls heavily on a surface and a storm builds in the background with loud thunder", "water flows as men speak and yell"], "sample_ids": ["wP8ZKrlx3oA", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["rain, storm, thunder", "water, flow, men"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking and yelling?", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["ul60S8TXDA8", "tdWhHV3X25Q"], "start_seconds": ["60", "60"], "properties": ["sound, distance, bell", "applause, audience, yells"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vSeGhaZt-aI", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["water, bubbles, speak", "a woman, something, fried"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["tEE3MpBt1sg", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["drill, something, laugh", "engine, laugh, loud"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a man driving a car in the dark"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a jet engine roars "], "question": "which entity is followed by laughter", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a child speaks in closed space"], "sample_ids": ["zTLVJCo4WEE", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["two people, adult, speak", "child, space, speak"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child speaking?", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yZmhM1HcsyE", "vfYTJq7nU"], "start_seconds": ["4", "130"], "properties": ["engine, roar, water", "rustling, ducks, quack"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a duck quacks and a woman speaks"], "question": "which entity is more likely to be in a lake", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "people applaud and hoot and chat quietly"], "sample_ids": ["ujMt0-D-x2k", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["snoring, rhythmical, nearby", "people, applaud, hoot"], "captions_pred_video": ["of the dog playing with a toy on the floor", null], "captions_pred_audio": ["a person is snoring loudly", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["sHbXC6na9hg", "tDlysoZiA1I"], "start_seconds": ["0", "0"], "properties": ["a person, saw, wood", "animal, grunts, chirps"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["an engine is idling and vibrating", "birds are chirping and a rooster is crowing "], "question": "which entity is not a person?", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a duck quacks continuously"], "sample_ids": ["x5cuQjOdM3E", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["cat, talk, meow", "quacks, continuously, duck"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a cat meows and a woman speaks", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["multiple ducks quack continuously", "a woman speaks as she rubs two objects together"], "sample_ids": ["wfHeoPDLMaM", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["multiple, quack, continuously", "two objects, woman, speak"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["ducks are quacking", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "birds chirp and objects are moved around"], "sample_ids": ["wz7N8YRy74I", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["rooster, crow, background, men", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "an engine revs and a turning noise is made"], "sample_ids": ["wPz6QRAkEb4", "tOSWIURC-4"], "start_seconds": ["60", "0"], "properties": ["chirps, tweets, song", "noise, engine, revs"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "a lawn mower is running "], "question": "which entity is not a bird?", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["sWZzXuWYY", "tDlysoZiA1I"], "start_seconds": ["420", "0"], "properties": ["male, clanks, thumps", "animal, grunts, chirps"], "captions_pred_video": [null, "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "birds are chirping and a rooster is crowing "], "question": "which entity is more animal", "label": 1}, {"captions": ["a goat bleats as a person speaks", "a frog croaks as other frogs croak in the background"], "sample_ids": ["tPJvjq9QePY", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["bleats, person, speak", "background, frog, croak"], "captions_pred_video": ["a dog and a sheep in a barn", "a close up of a frog in the water"], "captions_pred_audio": ["a baby cries and a man speaks", "a frog is croaking"], "question": "which animal is more likely to be a frog", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["w-4gHptFNuU", "ukg5L09Wpvo"], "start_seconds": ["21", "150"], "properties": ["engine revs, accelerates, bump", "clickety-clack, train, whistle"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a train engine runs and a horn blows"], "sample_ids": ["vZAw4apG0Es", "zPX9o1uDiI"], "start_seconds": ["30", "40"], "properties": ["background, tick, repeat", "engine, horn, run"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a train moves with its horn blowing and wheels squealing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "paper is crumpling consistently"], "sample_ids": ["zl9Dqx-j7q4", "v5cSxLaHADY"], "start_seconds": ["6", "0"], "properties": ["engine, laugh, loud", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a jet engine roars ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "birds chirp and objects are moved around"], "sample_ids": ["vBHyYJ8pL0", "yPUYU6t3rwo"], "start_seconds": ["2", "370"], "properties": ["noise, door, opening", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "someone whistles a tune"], "sample_ids": ["tPJvjq9QePY", "sIXTftIuUgw"], "start_seconds": ["40", "90"], "properties": ["animal, bleat, moo", "someone, tune, whistle"], "captions_pred_video": ["a dog and a sheep in a barn", null], "captions_pred_audio": ["a baby cries and a man speaks", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a woman speaks happily and an animal chirps"], "sample_ids": ["xOZfdgAgJ9o", "uWAAAL4CIoc"], "start_seconds": ["40", "0"], "properties": ["woman, whimpering, speaking", "a woman, chirps, animal"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a dog is barking "], "question": "which entity is more cheerful", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "a person is snoring while sleeping"], "sample_ids": ["t8CV69hcvF0", "vJrjSeP17yE"], "start_seconds": ["210", "40"], "properties": ["person, sneeze, follow", "a person is sleeping, snoring, person"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a woman sneezes and speaks", "a person snoring loudly"], "question": "which person is snoring", "label": 1}, {"captions": ["continuous snoring", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["sLkeqCDJIyw", "vlS6YMeWAPo"], "start_seconds": ["120", "40"], "properties": ["loud, snoring, noise", "sheep, baa, birds"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a person is snoring loudly", "a goat bleats and birds chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["a car speeding up in the distance", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u0TrcHhkPQ", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["distance, car, speed", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman speaks while a helicopter flies overhead "], "question": "which object is flying", "label": 0}, {"captions": ["someone is snoring while sleeping", "a car speeding up in the distance"], "sample_ids": ["ujMt0-D-x2k", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["snore, sleep, someone", "distance, car, speed"], "captions_pred_video": ["of the dog playing with a toy on the floor", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "wind blows as people chatter quietly"], "sample_ids": ["u21-Z5gJCB8", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["background, voice, man", "wind, chatter, people"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "an airplane engine spools and people speak"], "sample_ids": ["vzxHnu-SFEw", "wTjoRj1se3U"], "start_seconds": ["80", "390"], "properties": ["two objects, woman, speak", "airplane, engine, spool"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a jet engine is running and people are talking"], "question": "which object is moving", "label": 1}, {"captions": ["wind blowing followed by a zoom", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vr8ZXjEBhMQ", "vfYTJq7nU"], "start_seconds": ["150", "130"], "properties": ["wind, blow, zoom", "rustling, ducks, quack"], "captions_pred_video": ["is taken from a motorcycle's point of view", null], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a clock ticks quietly and rhythmically"], "sample_ids": ["tIY7qOV3rEM", "u7C-AEBQM"], "start_seconds": ["0", "30"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "ticks, rhythmic, quiet"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["wind blows as people chatter quietly", "an infant crying frantically"], "sample_ids": ["xBxDz0CFVn0", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["wind, chatter, people", "cry, infant, frantically"], "captions_pred_video": ["footage is blurry and out of focus", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a baby cries loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w34HjHr6gAY", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["beeps, hit, woman", "airplane, boy, fly"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a person sniffs and sneezes", "motors rev and run loudly as a person laughs"], "sample_ids": ["uRlbY6aoBU", "zl9Dqx-j7q4"], "start_seconds": ["0", "6"], "properties": ["sneezes, person, sniffs", "motors rev, laugh, loudly"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is sneezing ", "a jet engine roars "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["t25U-v4k4ts", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["a, chirps, bird", "airplane, boy, fly"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about flying?", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a toilet flushes and a female speaks"], "sample_ids": ["wEBlkGWVWwE", "yaln9y8I7ms"], "start_seconds": ["260", "230"], "properties": ["a, babble, woman", "female, flushes, toilet"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uWAAAL4CIoc", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["a, dog, vocalize", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a woman is speaking and a baby is crying"], "question": "which entity has a dog vocalize?", "label": 0}, {"captions": ["wind blowing and birds chirping with the distant cooing of a large bird", "frogs croak and vocalize"], "sample_ids": ["wRBHTgrbiwg", "yswmmRZFItk"], "start_seconds": ["50", "0"], "properties": ["birds, chirp, cooing", "croak, vocalize, frog"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "a close up of a frog in the water"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a frog is croaking"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["a person is whistling a tune", "a man speaks as a car is passing by"], "sample_ids": ["scYRUkrFLiQ", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, tune, whistle", "a, car, pass"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 0}, {"captions": ["a baby laughs giddily and a woman laughs then speaks", "a person sneezes followed by another person speaking"], "sample_ids": ["wjsXBsc7M40", "t8CV69hcvF0"], "start_seconds": ["10", "210"], "properties": ["a baby laughs, a woman laughs, a woman speaks", "person, sneeze, follow"], "captions_pred_video": ["footage of the baby playing with a toothbrush", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman sneezes and speaks"], "question": "which entity has a person speaking after a person sneezes?", "label": 1}, {"captions": ["a person is whistling", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sIXTftIuUgw", "yajyRTUQk3U"], "start_seconds": ["90", "400"], "properties": ["person, whistling, person", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["wAAkbZToh8", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man burps and a woman speaks", "a man is speaking and ducks are quacking"], "question": "which entity is a person?", "label": 0}, {"captions": ["a steam engine runs and whistles as it passes by", "a propeller rotates loudly and intensely"], "sample_ids": ["se87d6yxEOA", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["run, whistle, pass", "loud, intense, propeller"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a person snoring several times", "a woman speaks with water running"], "sample_ids": ["spJCm8tD9Zo", "wTideSjRFS0"], "start_seconds": ["90", "30"], "properties": ["snore, person, several", "water, running, woman"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking while water is running in the background"], "question": "which entity is a person", "label": 0}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["w8uLijTqtlU", "su6FAOcOA8c"], "start_seconds": ["70", "4"], "properties": ["wind, microphone, noise", "engine, idle, woman"], "captions_pred_video": ["footage is blurry and shaky", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking and a subway train is moving "], "question": "which entity is a recording", "label": 1}, {"captions": ["a person is burping while a girl speaks", "a man speaks as a car is passing by"], "sample_ids": ["vdoxuJn9lTc", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["person, burp, girl", "a, car, pass"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["someone whistles a tune", "a infant makes noise and is excited"], "sample_ids": ["sIXTftIuUgw", "wIJK3-5y0kA"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a person whistling a song", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "an engine starts and increases in power"], "sample_ids": ["u7C-AEBQM", "zjTG0gaGCUI"], "start_seconds": ["30", "80"], "properties": ["ticks, rhythmic, quiet", "power, increase, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a jet engine roars as wind blows "], "question": "which is more quiet", "label": 0}, {"captions": ["someone is burping continuously", "a motor idles, accelerates, then slows down."], "sample_ids": ["y636gklDioE", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "speed, idle, accelerate"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a person burps loudly several times", "an engine is idling"], "question": "which entity is not a burp", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sQwlkXjQabo", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "stream, water, flow"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage is blurry and out of focus"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a car speeding up in the distance", "a vehicle engine accelerating then running on idle"], "sample_ids": ["u0TrcHhkPQ", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["distance, car, speed", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "an engine is idling"], "question": "which is not a car", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "people speak as gunfire rings out"], "sample_ids": ["uiS58TNyUiw", "wqTCwqVRDlk"], "start_seconds": ["430", "80"], "properties": ["vocalize, bird, chirp", "gunfire, ring, speak"], "captions_pred_video": ["of the pigeon in the cage", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["zF8yoL0rkbI", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["engine, run, someone", "vocalize, bird, chirp"], "captions_pred_video": ["footage of the traffic on the street at night", "of the pigeon in the cage"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "an engine sputters followed by a car zooming by"], "sample_ids": ["wSVhSdj0F0", "u5RmF3c3Aw"], "start_seconds": ["10", "60"], "properties": ["beep, clang, footsteps", "engine, car, zoom"], "captions_pred_video": [null, null], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a race car accelerates and skids with wind noise in the background "], "question": "which entity is a car?", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "waves crash against a shoreline and wind blows"], "sample_ids": ["xBxDz0CFVn0", "zdYdyF9-m8U"], "start_seconds": ["30", "7"], "properties": ["stream, water, flow", "wind, crash, shoreline"], "captions_pred_video": ["footage is blurry and out of focus", "a person kayaking in the ocean near a cliff"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "waves crash and wind blows "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a toilet flushes and a female speaks"], "sample_ids": ["vZAw4apG0Es", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["background, tick, repeat", "female, flushes, toilet"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage is blurry and out of focus"], "captions_pred_audio": ["a clock is ticking and people are talking", "a toilet flushes and a man speaks"], "question": "which entity has a female speaking?", "label": 1}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "water splashes and a door squeaks"], "sample_ids": ["uZesmtKZGSw", "sdXV-ylviw"], "start_seconds": ["250", "190"], "properties": ["men, talk, cars", "sound, splash, door"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", null], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "paper is crumpling consistently"], "sample_ids": ["sOa7g-44Dag", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["background, man, spray", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a whistling owl calls out repeatedly and insects screech", "a man speaks as a car is passing by"], "sample_ids": ["w6RTHR6AeAg", "sK4u5T8hW78"], "start_seconds": ["40", "30"], "properties": ["call, owl, screech", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an owl hoots and mechanisms operate ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["an infant crying frantically", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zwOBqeFTgiU", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["cry, infant, frantically", "applause, audience, yells"], "captions_pred_video": ["of the baby crying in the car seat", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby cries loudly", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "water flows as men speak and yell"], "sample_ids": ["zO-LSSY92ZM", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["liquid, surface, sound", "water, flow, men"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["steam is hissing and hissing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of water flowing?", "label": 1}, {"captions": ["people speak in a closed space", "vehicles pass by on a roadway"], "sample_ids": ["sTpirNYo8vQ", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["people, space, speak", "pass, vehicle, roadway"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["bees buzz and wind blows", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tMJne1a4AFI", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["bees buzz, wind blows, bees", "multiple, people, yell"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a door slams shut roughly", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["zkKdxzNC97Y", "uZesmtKZGSw"], "start_seconds": ["27", "250"], "properties": ["a door, slams, shut", "men, talk, cars"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["heavy rain splashes as it falls", "people cheer as a vehicle engine revs"], "sample_ids": ["wP8ZKrlx3oA", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["fall, rain, splash", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a man speaks as a car is passing by", "people speak as gunfire rings out"], "sample_ids": ["sK4u5T8hW78", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["a, car, pass", "gunfire, ring, speak"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "water splashes as an animal walks through"], "sample_ids": ["rwTERCUno", "w1ir-sZ3Im8"], "start_seconds": ["90", "90"], "properties": ["engine, idle, sputter", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["an engine is idling and vibrating", "water splashes and gurgles as people speak"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "water splashes as an animal walks through"], "sample_ids": ["uiS58TNyUiw", "w1ir-sZ3Im8"], "start_seconds": ["430", "90"], "properties": ["audio, man, speaking", "animal, water, splashes"], "captions_pred_video": ["of the pigeon in the cage", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a man sprays as a scraping occurs in the background"], "sample_ids": ["ylpYOorfH4o", "sOa7g-44Dag"], "start_seconds": ["410", "30"], "properties": ["engine, running, wind", "background, man, spray"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and rubbing his hands together "], "question": "which entity has a man speaking over a running engine and blowing wind?", "label": 0}, {"captions": ["a machine beeps continuously", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["y682ml90jGw", "uYT5gxnyMWM"], "start_seconds": ["11", "50"], "properties": ["beeps, machine, continuously", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uEU-Hg5MTN8", "tdWhHV3X25Q"], "start_seconds": ["27", "60"], "properties": ["animal, grunts, snorts", "applause, audience, yells"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a horn rings out as a machine runs by"], "sample_ids": ["zj2R0XoFr5k", "slZLHwNbbt4"], "start_seconds": ["50", "300"], "properties": ["airplane, boy, fly", "a, horn, run"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["birds chirp as a bell rings", "an electric engine works nearby followed by a child talking"], "sample_ids": ["ziUT9IFTkjg", "xSKJGCItUWE"], "start_seconds": ["10", "10"], "properties": ["chirp, bell, ring", "engine, work, child"], "captions_pred_video": [null, "footage of the helicopter flying in the room"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a high pitched engine is running and a child speaks"], "question": "which entity is a machine", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a man speaks as bees buzz and birds chirp"], "sample_ids": ["sa6TLVbooCc", "t25U-v4k4ts"], "start_seconds": ["240", "40"], "properties": ["people, laugh, child", "bees buzz, birds chirp, man speaks"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking and bees are buzzing"], "question": "which entity has a child speaking?", "label": 0}, {"captions": ["a motor idles, accelerates, then slows down.", "wind blows and people scream while an engine revs"], "sample_ids": ["vYkA3cfXp5Q", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["speed, idle, accelerate", "wind, engine, scream"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", null], "captions_pred_audio": ["an engine is idling", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a video of a car?", "label": 0}, {"captions": ["frogs croak and vocalize", "an infant crying as a woman laughs"], "sample_ids": ["yswmmRZFItk", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["croak, vocalize, frog", "a, laugh, infant"], "captions_pred_video": ["a close up of a frog in the water", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a frog is croaking", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a frog vocalizes as birds chirp"], "sample_ids": ["x6ijhqRY38s", "wqUmIEzuNz4"], "start_seconds": ["250", "30"], "properties": ["something metal, glass, hit", "frog, bird, vocalize"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "a frog sitting in the grass on a sunny day"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a cat meows and rustles"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "vehicles pass by on a roadway"], "sample_ids": ["xZepNM9qcRA", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["background, motor, run", "pass, vehicle, roadway"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "bird squawks are accompanied by a man and woman speaking"], "sample_ids": ["yajyRTUQk3U", "wqZ135Ssz0"], "start_seconds": ["400", "60"], "properties": ["noise, woman, speak", "man, woman, squawks"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a man and woman speaking?", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a woman speaks as she rubs two objects together"], "sample_ids": ["rwTERCUno", "vzxHnu-SFEw"], "start_seconds": ["90", "80"], "properties": ["engine, idle, sputter", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["an engine is idling and vibrating", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["a man speaks as a machine runs", "paper is crumpling consistently"], "sample_ids": ["vD6lYD1l0BY", "v5cSxLaHADY"], "start_seconds": ["330", "0"], "properties": ["a, machine, run", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "three men talk while wind blows and some liquid flows"], "sample_ids": ["x6ijhqRY38s", "vJ7JPEFhyLA"], "start_seconds": ["250", "16"], "properties": ["something metal, glass, hit", "three men, wind, flow"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man talking?", "label": 0}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "a stream of water flows as people talk and wind blows"], "sample_ids": ["xNMovAf3o50", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["rain, thunder, music", "stream, water, flow"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "footage is blurry and out of focus"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is flowing", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a man speaks as insects buzz and a bird chirps"], "sample_ids": ["uZesmtKZGSw", "t25U-v4k4ts"], "start_seconds": ["250", "40"], "properties": ["car, track, man", "a, chirps, bird"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking and bees are buzzing"], "question": "which entity has a bird chirp?", "label": 1}, {"captions": ["a person speaks over rustling leaves", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zOZleIRqZm4", "wqZ135Ssz0"], "start_seconds": ["80", "60"], "properties": ["rustling, leaves, person", "two men, woman, birds"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sQwlkXjQabo", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "engine, accelerate, idle"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["spraying followed by silence", "an engine is idling"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["an aircraft engine runs", "small dogs yip and bark sharply"], "sample_ids": ["yLCORCnd35Q", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["engine, aircraft, runs", "bark, yip, sharply"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "multiple people speak and children yell while water gurgles"], "sample_ids": ["ylpYOorfH4o", "vb1fPSDI4c"], "start_seconds": ["410", "30"], "properties": ["engine, running, wind", "multiple, people, yell"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "water splashes as an animal walks through"], "sample_ids": ["wRBHTgrbiwg", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["bird, owl, speak", "animal, water, splashes"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["wz7N8YRy74I", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["rooster, crow, background, people", "engine, revs, vehicle"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["someone whistles briefly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["uFoga8sHpiw", "su6FAOcOA8c"], "start_seconds": ["90", "4"], "properties": ["sound, duration, pitch", "engine, idle, woman"], "captions_pred_video": ["footage of a bird in a cage", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking and a subway train is moving "], "question": "which entity has a longer duration", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a door opens and birds chirp"], "sample_ids": ["zuua6-5goWw", "yeFvk9x0wWI"], "start_seconds": ["30", "30"], "properties": ["sound, pop, bird", "door, open, birds"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "birds chirp in the background as a car drives by "], "question": "which entity has birds chirp and a pop occurs before a man speaks?", "label": 0}, {"captions": ["a man sprays as a scraping occurs in the background", "an insect buzzes around continuously"], "sample_ids": ["sOa7g-44Dag", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["background, man, spray", "buzzes, continuously, insect"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zl9Dqx-j7q4", "vbZ-0lGPneg"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a man driving a car in the dark", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a jet engine roars ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an insect buzzes around continuously", "an engine runs loudly"], "sample_ids": ["v25l1jef3JY", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["buzzes, continuously, insect", "loud, engine, run"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ukg5L09Wpvo", "uYT5gxnyMWM"], "start_seconds": ["150", "50"], "properties": ["a train, a horn, a bell", "female, spraying, scream"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and spraying?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a child speaks in closed space"], "sample_ids": ["rqfQRErjfk8", "yW6FWLSLkx4"], "start_seconds": ["170", "40"], "properties": ["crowd, cheers, applauds", "child, space, speak"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is more likely to be in a public place", "label": 0}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["y2bVZ7rz-5M", "yLy-WycbVVE"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "background, people, talk"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity has a horn honking?", "label": 0}, {"captions": ["paper is repeatedly crumpled and crinkled", "a child speaks in closed space"], "sample_ids": ["vms5XGTDVQc", "yW6FWLSLkx4"], "start_seconds": ["220", "40"], "properties": ["paper, crumpled, crinkled", "child, space, speak"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not crumpled and crinkled", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a motorcycle engine is idling"], "sample_ids": ["xBxDz0CFVn0", "vZAqdHZ81yA"], "start_seconds": ["30", "180"], "properties": ["wind, chatter, people", "engine, motorcycle, idling"], "captions_pred_video": ["footage is blurry and out of focus", "a motorcycle is parked on the side of the road with its rear end facing the viewer"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "an engine is idling loudly"], "question": "which is quieter", "label": 1}, {"captions": ["food is frying while a woman speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yhQ2Lg-7qDY", "uYT5gxnyMWM"], "start_seconds": ["130", "50"], "properties": ["food, woman, speak", "a, scream, girl"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["a piece of wood is being placed down and sawed", "a motor runs in the distance as a soft wind periodically gusts"], "sample_ids": ["uiItxDsDMFI", "xyL9F5VrjkE"], "start_seconds": ["30", "20"], "properties": ["wood, piece, saw", "wind, motor, distance"], "captions_pred_video": ["a man cutting a log with an axe in the woods", "of a caterpillar truck loading logs into a trailer"], "captions_pred_audio": ["a saw is being used with background noise ", "the wind is blowing and a car is passing by "], "question": "which entity is not a piece of wood?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a clock ticktocks"], "sample_ids": ["x5cuQjOdM3E", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["cat, meows, young woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a black background with an airplane flying in the sky", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a cat meows and a woman speaks", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "paper folding and crinkling"], "sample_ids": ["vddP56-ogds", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["liquid, laughs, man", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling?", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "some men converse over an engine running"], "sample_ids": ["w9lpbUn0hPc", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["male, wind, rustling", "men, converse, engine"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", null], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation between men?", "label": 1}, {"captions": ["a clock ticktocks briefly", "a child speaks in closed space"], "sample_ids": ["u7C-AEBQM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["ticktocks, clock, ticktocks briefly", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a drill runs and two people laugh", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["tEE3MpBt1sg", "uEU-Hg5MTN8"], "start_seconds": ["50", "27"], "properties": ["two people, laugh, drill", "a woman, laughs, animal"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a woman is speaking and a baby is crying"], "question": "which entity has a drill running?", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "an engine revs and a turning noise is made"], "sample_ids": ["wAAkbZToh8", "tOSWIURC-4"], "start_seconds": ["0", "0"], "properties": ["burp, laugh, speak", "noise, engine, revs"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man burps and a woman speaks", "a lawn mower is running "], "question": "which entity is not a noise?", "label": 0}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y2bVZ7rz-5M", "wz7N8YRy74I"], "start_seconds": ["280", "30"], "properties": ["motor noise, horn, siren", "rooster, crow, background, men"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["uYT5gxnyMWM", "xfaoyyzw2WU"], "start_seconds": ["50", "180"], "properties": ["female, spraying, scream", "loud, jet engine, roar"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks briefly", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["u7C-AEBQM", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["ticktocks, clock, ticktocks briefly", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["birds tweet and squawk", "water pouring and bubbling"], "sample_ids": ["w1mlz3Pe4fU", "uyRfq-jKPpo"], "start_seconds": ["300", "50"], "properties": ["squawk, tweet, scream", "water, bubbles, pouring"], "captions_pred_video": ["of a bird in a cage", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["birds are chirping and singing", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vveS8HT7Uog", "uYT5gxnyMWM"], "start_seconds": ["100", "50"], "properties": ["a man, objects, speak", "female, spraying, scream"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yaln9y8I7ms", "yDoT73BWsdA"], "start_seconds": ["230", "10"], "properties": ["female, flushes, toilet", "engine, revs, vehicle"], "captions_pred_video": ["footage is blurry and out of focus", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "paper folding and crinkling"], "sample_ids": ["sYITalLZjj4", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["stream, flow, wind", "paper, fold, crinkle"], "captions_pred_video": ["two ducks are swimming in the water near each other", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["wind blows and birds chirp", "the wind blows and a mouse clicks "], "question": "which entity is not a stream of water", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "an airplane engine runs"], "sample_ids": ["v0x1odnXtP0", "yVPZ2MNWpms"], "start_seconds": ["210", "0"], "properties": ["keyboard, type, computer", "engine, airplane, runs"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a person is typing on a keyboard", "a car is driving by on the road "], "question": "which is a moving object", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "people speak softly as food sizzles"], "sample_ids": ["s4Uz1Ffgo04", "yhQ2Lg-7qDY"], "start_seconds": ["100", "130"], "properties": ["roars, background, people speaking", "food, sizzle, speak"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a faucet is running and a man is speaking"], "question": "which entity is quieter", "label": 1}, {"captions": ["a person snoring several times", "a car speeding up in the distance"], "sample_ids": ["spJCm8tD9Zo", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["snore, person, several", "distance, car, speed"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "some men converse over an engine running"], "sample_ids": ["vlS6YMeWAPo", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["noise, bleat, call", "men, converse, engine"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a conversation?", "label": 1}, {"captions": ["a small engine idles continuously", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["y5WII6cTH7k", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["engine, idle, continuously", "female, spraying, scream"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a woman is speaking and a baby is crying"], "question": "which entity is not spraying?", "label": 0}, {"captions": ["a dog barks and whimpers", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sShpyu2l4YQ", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "a woman, a television program, a bird"], "captions_pred_video": ["the puppies are playing with a toy", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a clock ticktocks"], "sample_ids": ["uWPRNLnpy7Y", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["accelerate, laugh, vehicle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["is taken from a car driving down the street", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "a car accelerates and wind blows"], "sample_ids": ["vbpKkWvfOu4", "u0TrcHhkPQ"], "start_seconds": ["560", "20"], "properties": ["a, woman, man", "accelerates, wind, blows"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "water is sprayed across a hard surface"], "sample_ids": ["tGcFnX0GHI", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["ring, talk, woman", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["several insects fly while two men talk", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["s-T9OVOiMLo", "zj2R0XoFr5k"], "start_seconds": ["330", "50"], "properties": ["several, fly, men", "airplane, boy, fly"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a woman and man are speaking", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vbpKkWvfOu4", "xfaoyyzw2WU"], "start_seconds": ["560", "180"], "properties": ["two people, speaking, woman, man", "loud, jet engine, roar"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["goats bleat and people speak", "a propeller rotates loudly and intensely"], "sample_ids": ["z5iUE5h0EPs", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["goats bleat, people speak, language", "loud, intense, propeller"], "captions_pred_video": ["of the goat in the barn", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a goat bleats and a man speaks", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "long loud burping by a man"], "sample_ids": ["zsLxS-uLJTw", "xmiUIOhtZyQ"], "start_seconds": ["20", "60"], "properties": ["horn, blast, train", "loud, burp, man"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "homer simpson drinking a beer"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a person burps and music plays in the background "], "question": "which is louder", "label": 0}, {"captions": ["water bubbles and gurgles.", "an aircraft engine runs"], "sample_ids": ["tB7hWb9gTuQ", "yLCORCnd35Q"], "start_seconds": ["30", "0"], "properties": ["bubbles, gurgles, water", "engine, aircraft, runs"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "a lufthansa airbus a380 landing at london's heathrow airport"], "captions_pred_audio": ["water is splashing and gurgling", "a train is moving and its wheels are squealing "], "question": "which entity is a moving object", "label": 1}, {"captions": ["people speak as gunfire rings out", "water runs into a sink while men speak"], "sample_ids": ["wqTCwqVRDlk", "vzceMbklWc"], "start_seconds": ["80", "180"], "properties": ["gunfire, ring, speak", "water, sink, run"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", null], "captions_pred_audio": ["a man is speaking and a gun is fired", "water is running and a man is speaking"], "question": "which entity is more calm", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "birds twitter and chirp and clatter"], "sample_ids": ["sWZzXuWYY", "yeFvk9x0wWI"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "chirp, twitter, clatter"], "captions_pred_video": [null, "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "birds chirp in the background as a car drives by "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man talks as several small engines run", "people cheer as a vehicle engine revs"], "sample_ids": ["u9A6VZQCZpU", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["a, man, talk", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a dark barks and whimpers", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sYj4hpDUZDQ", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "a woman, a television program, a bird"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a dog barks and a cat meows", "a woman is speaking and a dog is whimpering"], "question": "which entity is more active", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "people cheer as a vehicle engine revs"], "sample_ids": ["tqR406bGiE", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["flush, water, gurgle", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a toilet is flushed", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a motorcycle engine is idling", "small dogs yip and bark sharply"], "sample_ids": ["vZAqdHZ81yA", "v-wcQf4BDY0"], "start_seconds": ["180", "120"], "properties": ["engine, motorcycle, idling", "bark, yip, sharply"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["an engine is idling loudly", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "an infant crying as a woman laughs"], "sample_ids": ["wtDqrBygTcU", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["man, engine, run", "a, laugh, infant"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a motor is running", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a stream of water runs briefly"], "sample_ids": ["vSeGhaZt-aI", "x-PeY8Yb8M4"], "start_seconds": ["50", "300"], "properties": ["water, sink, talk", "stream, water, run"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a man speaks as a motor runs in the background"], "sample_ids": ["xM4joTqDVp4", "xZepNM9qcRA"], "start_seconds": ["160", "30"], "properties": ["background, chirp, birds", "background, motor, run"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a dog barks and whimpers", "a child speaks in closed space"], "sample_ids": ["sShpyu2l4YQ", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["barks, whimpers, dog", "child, space, speak"], "captions_pred_video": ["the puppies are playing with a toy", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["x5cuQjOdM3E", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["cat, talk, meow", "a woman, laughs, animal"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a cat", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["y8WEcpOlT3I", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["wind, speak, buffeting", "wind, blow, vehicle"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blows before women yell?", "label": 1}, {"captions": ["a man is filing a hard object", "paper folding and crinkling"], "sample_ids": ["vveS8HT7Uog", "zPpG3RD8lSs"], "start_seconds": ["100", "20"], "properties": ["a man, hard, object", "paper, fold, crinkle"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "the wind blows and a mouse clicks "], "question": "which object is being filed", "label": 0}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "a man speaks as a car is passing by"], "sample_ids": ["s59PfAghdkM", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["bird, chirp, background, horse, neigh", "a, car, pass"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a horse in it?", "label": 0}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "people cheer as a vehicle engine revs"], "sample_ids": ["tQWGZLItBXk", "xjhAnI2q6hM"], "start_seconds": ["170", "6"], "properties": ["voice, music, whoosh", "engine revs, vehicle, people"], "captions_pred_video": ["worms revolution screenshots", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a truck is revving its engine and a man is speaking "], "question": "which entity has more people", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "a woman speaks as she rubs two objects together"], "sample_ids": ["zhx6hoYrHeI", "vzxHnu-SFEw"], "start_seconds": ["160", "80"], "properties": ["engine, sputter, rough", "two objects, woman, speak"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is not a person speaking?", "label": 0}, {"captions": ["white noise and birds chirping", "wind blows as people chatter quietly"], "sample_ids": ["wRBHTgrbiwg", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["noise, white, chirping", "wind, chatter, people"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "a man speaks while turning a water faucet on"], "sample_ids": ["xvDdE3zNf8Y", "vf9xf3vMsGM"], "start_seconds": ["120", "540"], "properties": ["a, female, speaks", "A man speaks while turning a water faucet on."], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of the person washing their hands under the faucet"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking while water is running in the background"], "question": "which entity is a man", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "an airplane accelerates briefly"], "sample_ids": ["uiS58TNyUiw", "zjTG0gaGCUI"], "start_seconds": ["430", "80"], "properties": ["audio, man, speaking", "accelerates, airplane, briefly"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a jet engine roars as wind blows "], "question": "which is a moving object", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a man speaks while water trickles and flows"], "sample_ids": ["tDVADusiIoc", "sapQIQUhFc"], "start_seconds": ["60", "280"], "properties": ["wind, radio, waves", "water, trickles, flow"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and a stream is flowing in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["bees buzz and wind blows", "a door opens and closes"], "sample_ids": ["tMJne1a4AFI", "vBHyYJ8pL0"], "start_seconds": ["0", "2"], "properties": ["bees buzz, wind blows, bees", "open, close, door"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is not a door?", "label": 0}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vlS6YMeWAPo", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["sheep, baa, birds", "airplane, boy, fly"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a goat bleats and birds chirp", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a woman speaks with water running", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["wTideSjRFS0", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["water, running, woman", "two men, woman, birds"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["water bubbles and gurgles.", "an infant crying as a woman laughs"], "sample_ids": ["tB7hWb9gTuQ", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["bubbles, gurgles, water", "a, laugh, infant"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["water is splashing and gurgling", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "children speak and play together"], "sample_ids": ["zcDwZ6W7E3E", "yVVP8XvWJTo"], "start_seconds": ["180", "260"], "properties": ["a, man, speak", "children, speak, play"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "children are speaking and breathing with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a stream of water flows as people talk and wind blows", "a woman speaks as she rubs two objects together"], "sample_ids": ["xBxDz0CFVn0", "vzxHnu-SFEw"], "start_seconds": ["30", "80"], "properties": ["stream, water, flow", "two objects, woman, speak"], "captions_pred_video": ["footage is blurry and out of focus", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "someone whistles a tune"], "sample_ids": ["zsLxS-uLJTw", "sIXTftIuUgw"], "start_seconds": ["20", "90"], "properties": ["horn, blast, train", "someone, tune, whistle"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", null], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["zFjIWfSD-4", "w34HjHr6gAY"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a man talks as several small engines run", "a toilet flushes and water drains"], "sample_ids": ["u9A6VZQCZpU", "sfAvvZwdLCY"], "start_seconds": ["30", "20"], "properties": ["a, man, talk", "water drains, flushes, water"], "captions_pred_video": [null, "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["bees buzz and wind blows", "paper is crumpling consistently"], "sample_ids": ["tMJne1a4AFI", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["bees buzz, wind blows, bees", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a swarm of bees on the ground", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a swarm of bees buzzing around", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["wind blows as people chatter quietly", "an airplane accelerates briefly"], "sample_ids": ["xBxDz0CFVn0", "zjTG0gaGCUI"], "start_seconds": ["30", "80"], "properties": ["wind, chatter, people", "accelerates, airplane, briefly"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a jet engine roars as wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["a stream of water flows quickly", "birds chirp and objects are moved around"], "sample_ids": ["wbHTKEJZyhc", "yPUYU6t3rwo"], "start_seconds": ["20", "370"], "properties": ["stream, water, flow", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["yajyRTUQk3U", "yks4cLgIDMc"], "start_seconds": ["400", "170"], "properties": ["a woman, something, fried", "background, speaking, child"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["a machine runs continuously", "frogs croak and vocalize"], "sample_ids": ["wdXV3Pv0jiY", "yswmmRZFItk"], "start_seconds": ["11", "0"], "properties": ["machine, running, continuously", "croak, vocalize, frog"], "captions_pred_video": ["footage is blurry and shaky", "a close up of a frog in the water"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a frog is croaking"], "question": "which entity is not a machine?", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yZrFNS7GFBQ", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["pigeon, buzzes, insect", "People, motor, brakes"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a clock ticktocks"], "sample_ids": ["xM4joTqDVp4", "v-g-j2uTByM"], "start_seconds": ["160", "30"], "properties": ["background, chirp, birds", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "wind blowing followed by a zoom"], "sample_ids": ["slZLHwNbbt4", "vr8ZXjEBhMQ"], "start_seconds": ["300", "150"], "properties": ["clap, distance, horn", "wind, blow, zoom"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["tZGN5a7ybxo", "wz7N8YRy74I"], "start_seconds": ["60", "30"], "properties": ["ring, train, horn", "rooster, crow, background, men"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to a rooster?", "label": 1}, {"captions": ["a goat bleats as a person speaks", "water flows and trickles"], "sample_ids": ["tPJvjq9QePY", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["bleats, person, speak", "water, flow, trickle"], "captions_pred_video": ["a dog and a sheep in a barn", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a baby cries and a man speaks", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["children speak and play together", "multiple people speak and children yell while water gurgles"], "sample_ids": ["yVVP8XvWJTo", "vb1fPSDI4c"], "start_seconds": ["260", "30"], "properties": ["children, speak, play", "multiple, people, yell"], "captions_pred_video": ["footage of a playground at a school or daycare center", null], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "an engine runs loudly"], "sample_ids": ["ukxt9I7eMMg", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["continuous, woman, speaking", "loud, engine, run"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "a man speaks followed by another man speaking outside"], "sample_ids": ["wqUmIEzuNz4", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["frog, bird, vocalize", "two men, speak, follow"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a cat meows and rustles", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single speaker?", "label": 0}, {"captions": ["vehicles pass by on a roadway", "water splashing and a person laughs in the distance then a man speaks nearby"], "sample_ids": ["tgbONvsP47Y", "vddP56-ogds"], "start_seconds": ["0", "30"], "properties": ["pass, vehicle, roadway", "water, splash, person, laugh"], "captions_pred_video": ["footage of a fire truck entering a garage", null], "captions_pred_audio": ["a car is driving on the road ", "water is running and gurgling and a man is speaking"], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["weDbePuc-Xc", "y8WEcpOlT3I"], "start_seconds": ["40", "40"], "properties": ["music, slaps, human", "harsh, wind, blows"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man is speaking with wind noise in the background "], "question": "which entity has a harsh wind blowing?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "wind blowing followed by a zoom"], "sample_ids": ["uJV8NDaHqqk", "vr8ZXjEBhMQ"], "start_seconds": ["100", "150"], "properties": ["loud, fly, chirp", "wind, blow, zoom"], "captions_pred_video": ["a bee hive in a wooden box", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a swarm of bees buzzing around", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not loud", "label": 1}, {"captions": ["children speak and play together", "winds blows roughly as a vehicle races past"], "sample_ids": ["yVVP8XvWJTo", "xjvTpk2Zpr8"], "start_seconds": ["260", "70"], "properties": ["children, speak, play", "wind, blows, vehicle"], "captions_pred_video": ["footage of a playground at a school or daycare center", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["ugHJF0hfYkg", "s4Uz1Ffgo04"], "start_seconds": ["10", "100"], "properties": ["engine, running, continuously", "roars, background, people speaking"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["an adult woman and an adult man speak", "wind noise makes sound into a microphone"], "sample_ids": ["zTLVJCo4WEE", "w8uLijTqtlU"], "start_seconds": ["30", "70"], "properties": ["two people, adult, speak", "wind, microphone, noise"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "footage is blurry and shaky"], "captions_pred_audio": ["a woman speaks and crickets chirp", "the wind is blowing strongly"], "question": "which is not a person", "label": 1}, {"captions": ["an engine runs loudly", "a man speaks then multiple motorcycles pass by"], "sample_ids": ["vqZuVbG6-HI", "zcDwZ6W7E3E"], "start_seconds": ["130", "180"], "properties": ["loud, engine, run", "a, man, speak"], "captions_pred_video": ["footage is blurry because it's raining outside", "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["xfudFO976zE", "xfaoyyzw2WU"], "start_seconds": ["0", "180"], "properties": ["animal, bleats, cry", "loud, jet engine, roar"], "captions_pred_video": ["footage is blurry and shaky", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yVumC9TGknc", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["humming, clock, birds", "female, spraying, scream"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a series of beeps and chirps", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vb1fPSDI4c", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["multiple, people, yell", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["birds chirp as a bell rings", "winds blows roughly as a vehicle races past"], "sample_ids": ["ziUT9IFTkjg", "xjvTpk2Zpr8"], "start_seconds": ["10", "70"], "properties": ["chirp, bell, ring", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a jet engine roars and wind blows "], "question": "which entity is more likely to be a natural occurrence", "label": 0}, {"captions": ["a person is whistling", "pigeons vocalize and birds chirp"], "sample_ids": ["sIXTftIuUgw", "uiS58TNyUiw"], "start_seconds": ["90", "430"], "properties": ["person, whistling, person", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person?", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "dishes cling together then a man begins to speak"], "sample_ids": ["vf9xf3vMsGM", "sQGXqGcwOTc"], "start_seconds": ["540", "3"], "properties": ["A man speaks while turning a water faucet on.", "cling, speak, dishes"], "captions_pred_video": ["of the person washing their hands under the faucet", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking while water is running in the background", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a male speaks over some small clicks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["uXxVebHsGZ8", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["male, clicks, speak", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "water splashes and a door squeaks"], "sample_ids": ["tqR406bGiE", "sdXV-ylviw"], "start_seconds": ["40", "190"], "properties": ["flush, water, gurgle", "sound, splash, door"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a dog barks and taps with background noise "], "question": "which entity has a door that squeaks?", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["zj2R0XoFr5k", "siJFXfGWgDk"], "start_seconds": ["50", "50"], "properties": ["airplane, fly, overhead", "a, bird, vehicle"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking and birds are chirping in the background "], "question": "which entity is flying overhead", "label": 0}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["yLy-WycbVVE", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["background, people, talk", "gun, shoot, water"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["water rushes by", "an insect buzzes around continuously"], "sample_ids": ["x-PeY8Yb8M4", "v25l1jef3JY"], "start_seconds": ["300", "0"], "properties": ["water, rushes, by", "buzzes, continuously, insect"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a car is driving on a wet road ", "a fly is buzzing around a microphone "], "question": "which entity is moving faster", "label": 0}, {"captions": ["a beep repeats multiple times", "a car accelerates and wind blows"], "sample_ids": ["y682ml90jGw", "u0TrcHhkPQ"], "start_seconds": ["11", "20"], "properties": ["beep, repeat, multiple", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a dark barks and whimpers", "a man speaks as a car is passing by"], "sample_ids": ["sYj4hpDUZDQ", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "a, car, pass"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "a person snores loudly multiple times at a close distance"], "sample_ids": ["x4a9YGIw4ok", "sSMl2vc3ek"], "start_seconds": ["120", "20"], "properties": ["water, gurgles, stops", "loud, multiple, distance"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a toilet flushes and water splashes", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "an adult woman speaks over chopping and silverware noises"], "sample_ids": ["xOZfdgAgJ9o", "yYJksgsxx5U"], "start_seconds": ["40", "30"], "properties": ["woman, whimpering, speaking", "audio, woman, silverware"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "of a woman slicing an orange on a cutting board"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and dishes are clanging in the background "], "question": "which woman is speaking", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wAAkbZToh8", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["burp, laugh, speak", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man burps and a woman speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 0}, {"captions": ["a man speaks while a vehicle engine runs and revs loudly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["ylpYOorfH4o", "wz7N8YRy74I"], "start_seconds": ["410", "30"], "properties": ["engine, run, loud", "rooster, crow, background, men"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a man speaking to?", "label": 0}, {"captions": ["several insects fly while two men talk", "water flows as men speak and yell"], "sample_ids": ["s-T9OVOiMLo", "vJ7JPEFhyLA"], "start_seconds": ["330", "16"], "properties": ["several, fly, men", "water, flow, men"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows men speaking and yelling?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "birds chirp and objects are moved around"], "sample_ids": ["wTideSjRFS0", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["food, sizzle, woman", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "insects buzz and a man speaks"], "question": "which entity is about birds?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "some tunes played by whistling"], "sample_ids": ["s4Uz1Ffgo04", "u6BnG6YZqJ4"], "start_seconds": ["100", "0"], "properties": ["roars, background, people speaking", "tune, play, whistling"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xjvTpk2Zpr8", "zFjIWfSD-4"], "start_seconds": ["70", "410"], "properties": ["engine, run, wind", "People, motor, brakes"], "captions_pred_video": ["footage of a dhl plane landing on the runway", null], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is running", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a motor noise is accompanied by a door opening and closing"], "sample_ids": ["xyL9F5VrjkE", "vBHyYJ8pL0"], "start_seconds": ["20", "2"], "properties": ["wind, blows, vehicle", "noise, door, opening"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", null], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is accompanied by a door opening and closing?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "women speak as water runs briefly, children call out, and a man speaks"], "sample_ids": ["wTideSjRFS0", "uRExseg-0XI"], "start_seconds": ["30", "210"], "properties": ["food, sizzle, woman", "woman, man, water"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking while water is running and birds are chirping "], "question": "which entity has a man speaking?", "label": 1}, {"captions": ["male speech with light ticking", "a man speaks with another voice speaking in the background"], "sample_ids": ["xO-Q2BlIIPU", "u21-Z5gJCB8"], "start_seconds": ["30", "30"], "properties": ["male, speech, ticking", "background, voice, man"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "- a person cooking eggs in a pan on the stove"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking with another voice speaking in the background?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "water splashes as an animal walks through"], "sample_ids": ["vZAw4apG0Es", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["background, tick, repeat", "animal, water, splashes"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a clock is ticking and people are talking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a baby laugh at a sputter"], "sample_ids": ["v-wcQf4BDY0", "sLUnaPT5gM8"], "start_seconds": ["120", "0"], "properties": ["bark, yip, sharply", "laugh, sputter, baby"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a dog barks and growls", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more likely to be a child", "label": 1}, {"captions": ["a infant makes noise and is excited", "water pouring and bubbling"], "sample_ids": ["wIJK3-5y0kA", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["noise, excited, infant", "water, bubbles, pouring"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a baby cries and a woman speaks", "water is running from a faucet"], "question": "which entity is bubbling", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "an infant crying frantically"], "sample_ids": ["wAAkbZToh8", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["burp, laugh, speak", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a man burps and a woman speaks", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wsHBIgzs9Fs", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["horn, continuous, buzzing", "three men, wind, flow"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a duck quacks continuously"], "sample_ids": ["tDlysoZiA1I", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, chirp", "quacks, continuously, duck"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["goats bleat and people speak", "a machine beeps continuously"], "sample_ids": ["z5iUE5h0EPs", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["goats bleat, people speak, language", "beeps, machine, continuously"], "captions_pred_video": ["of the goat in the barn", null], "captions_pred_audio": ["a goat bleats and a man speaks", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks as a machine runs", "water flows as men speak and yell"], "sample_ids": ["vD6lYD1l0BY", "vJ7JPEFhyLA"], "start_seconds": ["330", "16"], "properties": ["a, machine, run", "water, flow, men"], "captions_pred_video": ["game controller being held in the hands of the person", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["a horn blasts loudly as a train passes", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zsLxS-uLJTw", "wDVMhEdTiVw"], "start_seconds": ["20", "30"], "properties": ["horn, blast, train", "gun, shoot, water"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause a train to pass", "label": 0}, {"captions": ["a man speaks while turning a water faucet on", "a man speaks over intermittent keyboard taps"], "sample_ids": ["vf9xf3vMsGM", "tw76HGONaKg"], "start_seconds": ["540", "570"], "properties": ["A man speaks while turning a water faucet on.", "audio, man, keyboard"], "captions_pred_video": ["of the person washing their hands under the faucet", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a man speaks and types on a computer keyboard "], "question": "which entity is a video?", "label": 0}, {"captions": ["a vehicle engine revs and tires squeal", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yDoT73BWsdA", "vbZ-0lGPneg"], "start_seconds": ["10", "30"], "properties": ["engine revs, tires squeal, vehicle", "a woman, a television program, a bird"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a man speaks over a running engine and blowing wind", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["ylpYOorfH4o", "ukg5L09Wpvo"], "start_seconds": ["410", "150"], "properties": ["engine, running, wind", "clickety-clack, train, whistle"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "water splashes as an animal walks through"], "sample_ids": ["tPJvjq9QePY", "w1ir-sZ3Im8"], "start_seconds": ["40", "90"], "properties": ["animal, bleat, moo", "animal, water, splashes"], "captions_pred_video": ["a dog and a sheep in a barn", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a baby cries and a man speaks", "water splashes and gurgles as people speak"], "question": "which animal is more active", "label": 1}, {"captions": ["an engine runs and wind blows", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vs65y4qmyBE", "vbZ-0lGPneg"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "a woman, a television program, a bird"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["spJCm8tD9Zo", "uEU-Hg5MTN8"], "start_seconds": ["90", "27"], "properties": ["snores, wheezes, sleeps", "animal, grunts, snorts"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["an animal growls followed by birds chirping", "people cheer as a vehicle engine revs"], "sample_ids": ["y2ZBGpgbhHM", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["animal, growl, bird", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["birds chirping and a dog panting", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["skd2PphS6oI", "zj2R0XoFr5k"], "start_seconds": ["190", "50"], "properties": ["ring, bird, vocalize", "airplane, boy, fly"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a woman and man are speaking", "paper folding and crinkling"], "sample_ids": ["vbpKkWvfOu4", "zPpG3RD8lSs"], "start_seconds": ["560", "20"], "properties": ["two people, speaking, woman, man", "paper, fold, crinkle"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "the wind blows and a mouse clicks "], "question": "which is not a person", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "a duck quacks loudly and continuously"], "sample_ids": ["zuua6-5goWw", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "loud, continuous, quacks"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["a large bell chimes back and forth loudly", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["w2M4i1mklOA", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["loud, chime, bell", "background, birds, rustling"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "birds are chirping and a chime is ringing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["tQWGZLItBXk", "wSVhSdj0F0"], "start_seconds": ["170", "10"], "properties": ["voice, music, whoosh", "horn honks, keys jingle, electronic beep"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a car horn honks and keys jangle with background noise "], "question": "which entity has a horn honk?", "label": 1}, {"captions": ["a man talks as several small engines run", "a woman speaks and other women and a man talk with her"], "sample_ids": ["u9A6VZQCZpU", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["a, man, talk", "a, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a beep repeats multiple times", "people applaud and hoot and chat quietly"], "sample_ids": ["y682ml90jGw", "wwyfGO2J4"], "start_seconds": ["11", "90"], "properties": ["beep, repeat, multiple", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "an engine runs loudly"], "sample_ids": ["wnpJndXuxLc", "vqZuVbG6-HI"], "start_seconds": ["50", "130"], "properties": ["beeps, loud, whistle", "loud, engine, run"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "a man speaks in the background while a slow tick repeats"], "sample_ids": ["rqu8iB22IY", "vZAw4apG0Es"], "start_seconds": ["5", "30"], "properties": ["sound, repeats, laugh", "background, tick, repeat"], "captions_pred_video": [null, "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a clock is ticking and people are talking"], "question": "which entity has a tick repeating in the background?", "label": 1}, {"captions": ["children speak and play together", "people cheer as a vehicle engine revs"], "sample_ids": ["yVVP8XvWJTo", "xjhAnI2q6hM"], "start_seconds": ["260", "6"], "properties": ["children, speak, play", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a playground at a school or daycare center", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a machine beeps continuously", "some men converse over an engine running"], "sample_ids": ["y682ml90jGw", "sCiy7QS1U"], "start_seconds": ["11", "300"], "properties": ["beeps, machine, continuously", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a beeping sound is being made ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "wind blowing followed by a zoom"], "sample_ids": ["wDVMhEdTiVw", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["gun, shoot, water", "wind, blow, zoom"], "captions_pred_video": ["a blurry image of trees and water in the forest", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vuUVPzd2FXw", "uZesmtKZGSw"], "start_seconds": ["160", "250"], "properties": ["a, steam, release", "men, talk, cars"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tDVADusiIoc", "wqZ135Ssz0"], "start_seconds": ["60", "60"], "properties": ["water, radio, man", "two men, woman, birds"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a dark barks and whimpers", "a child speaks in closed space"], "sample_ids": ["sYj4hpDUZDQ", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["barks, whimpers, dark", "child, space, speak"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a dog barks and a cat meows", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zj2R0XoFr5k", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, overhead", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an adult woman and an adult man speak", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zTLVJCo4WEE", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["two people, adult, speak", "two men, woman, birds"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["su6FAOcOA8c", "uEU-Hg5MTN8"], "start_seconds": ["4", "27"], "properties": ["engine, idle, woman", "animal, grunts, snorts"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking to an animal?", "label": 1}, {"captions": ["water running down a sink while a man is talking", "water flows as men speak and yell"], "sample_ids": ["vSeGhaZt-aI", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["water, sink, talk", "water, flow, men"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water flowing", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["s59PfAghdkM", "vfYTJq7nU"], "start_seconds": ["0", "130"], "properties": ["bird, chirp, background, horse, neigh", "rustling, ducks, quack"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", null], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["birds chirp and objects are moved around", "winds blows roughly as a vehicle races past"], "sample_ids": ["yPUYU6t3rwo", "xjvTpk2Zpr8"], "start_seconds": ["370", "70"], "properties": ["birds chirp, objects are moved around, birds", "wind, blows, vehicle"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["insects buzz and a man speaks", "a jet engine roars and wind blows "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wIvYjuR3nrg", "zj2R0XoFr5k"], "start_seconds": ["9", "50"], "properties": ["birds, pigeons, vocalize", "airplane, boy, fly"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["birds are chirping and cooing", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a clock ticktocks"], "sample_ids": ["wfHeoPDLMaM", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "ticktocks, clock, ticktocks"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["ducks are quacking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a jet engine screams, then increases its power"], "sample_ids": ["u21-Z5gJCB8", "vBslzh7saPw"], "start_seconds": ["30", "90"], "properties": ["background, voice, man", "power, scream, increase"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars and accelerates "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["wz7N8YRy74I", "vzceMbklWc"], "start_seconds": ["30", "180"], "properties": ["rooster, crow, background, men", "water, faucet, sink"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "water is running and a man is speaking"], "question": "which entity has a sink?", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a man speaks as bees buzz and birds chirp"], "sample_ids": ["zliInBdC98Y", "t25U-v4k4ts"], "start_seconds": ["30", "40"], "properties": ["a, baby, cries, wails", "bees buzz, birds chirp, man speaks"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "of a beekeeper working on a beehive in the woods"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and bees are buzzing"], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a telephone rings followed by a woman talking"], "sample_ids": ["w2M4i1mklOA", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "ring, talk, woman"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks and dog vocalizes", "a telephone rings followed by a woman talking"], "sample_ids": ["uWAAAL4CIoc", "tGcFnX0GHI"], "start_seconds": ["0", "0"], "properties": ["a, dog, vocalize", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sShpyu2l4YQ", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["growl, bark, yip", "animal, grunts, snorts"], "captions_pred_video": ["the puppies are playing with a toy", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a dog is barking and growling", "a woman is speaking and a baby is crying"], "question": "which entity is more snorts", "label": 1}, {"captions": ["long loud burping by a man", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xmiUIOhtZyQ", "tDVADusiIoc"], "start_seconds": ["60", "60"], "properties": ["loud, burp, man", "water, radio, man"], "captions_pred_video": ["homer simpson drinking a beer", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio?", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["w2JXXIAdUdg", "zl9Dqx-j7q4"], "start_seconds": ["10", "6"], "properties": ["emits, sleeping, person", "engine, laugh, loud"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sjlVMgdGSK0", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["car, revving, loudly", "airplane, boy, fly"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["smDKStoHBJo", "y8WEcpOlT3I"], "start_seconds": ["0", "40"], "properties": ["a, talk, baby, cry", "harsh, wind, blows"], "captions_pred_video": ["a man holding a crying baby in his arms", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking with wind noise in the background "], "question": "which entity has a harsh wind blowing?", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "soft movement is accompanied by clocks ticking in the background"], "sample_ids": ["zdYdyF9-m8U", "vlJS7LN2XyM"], "start_seconds": ["7", "30"], "properties": ["wind, crash, shoreline", "background, clocks, ticking"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video"], "captions_pred_audio": ["waves crash and wind blows ", "a ticktock of a clock"], "question": "which entity is more calm", "label": 1}, {"captions": ["bees buzz as wind blows", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["tMJne1a4AFI", "xV7Mg1QucSc"], "start_seconds": ["0", "14"], "properties": ["bees, buzz, wind", "alarm, ticktocks, laughs"], "captions_pred_video": ["a swarm of bees on the ground", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a swarm of bees buzzing around", "an alarm clock ticks and a woman laughs"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a horn rings out as a machine runs by"], "sample_ids": ["wnpJndXuxLc", "slZLHwNbbt4"], "start_seconds": ["50", "300"], "properties": ["blows, vehicle, train", "a, horn, run"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a toilet flushes and water drains", "an airplane engine spools and people speak"], "sample_ids": ["sfAvvZwdLCY", "wTjoRj1se3U"], "start_seconds": ["20", "390"], "properties": ["water drains, flushes, water", "airplane, engine, spool"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a toilet is flushed", "a jet engine is running and people are talking"], "question": "which entity is a machine", "label": 1}, {"captions": ["a jet engine spools up and takes off", "several insects fly while two men talk"], "sample_ids": ["vBslzh7saPw", "s-T9OVOiMLo"], "start_seconds": ["90", "330"], "properties": ["engine, spools, takes", "several, fly, men"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["some tunes played by whistling", "someone whistles a tune"], "sample_ids": ["u6BnG6YZqJ4", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["tune, play, whistling", "someone, tune, whistle"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", null], "captions_pred_audio": ["a person whistling a song", "a person whistling a song"], "question": "which is a more active way to play a tune", "label": 0}, {"captions": ["a man talks while a clock does ticktock", "an engine runs loudly"], "sample_ids": ["spYNpeN7rPY", "vqZuVbG6-HI"], "start_seconds": ["1", "130"], "properties": ["a clock, ticktock, man", "loud, engine, run"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wSVhSdj0F0", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["beep, clang, footsteps", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more like a movie", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "an insect buzzes around continuously"], "sample_ids": ["sQwlkXjQabo", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["liquid, surface, spray", "buzzes, continuously, insect"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["spraying followed by silence", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["bees buzz as wind blows", "people cheer as a vehicle engine revs"], "sample_ids": ["tMJne1a4AFI", "xjhAnI2q6hM"], "start_seconds": ["0", "6"], "properties": ["bees, buzz, wind", "engine revs, vehicle, people"], "captions_pred_video": ["a swarm of bees on the ground", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a swarm of bees buzzing around", "a truck is revving its engine and a man is speaking "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "wind blows as people chatter quietly"], "sample_ids": ["zgUgkpk78xU", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["clinking, humming, horn", "wind, chatter, people"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage is blurry and out of focus"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "wind blows as people chatter quietly"], "sample_ids": ["ziUT9IFTkjg", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["background, birds, rustling", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "an infant crying as a woman laughs"], "sample_ids": ["s3cTDAj31g", "xhmRY9yhC7c"], "start_seconds": ["80", "20"], "properties": ["man, talk, woman", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks while playing a video game on a keyboard", "a horn rings out as a machine runs by"], "sample_ids": ["tw76HGONaKg", "slZLHwNbbt4"], "start_seconds": ["570", "300"], "properties": ["A, game, keyboard", "a, horn, run"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "water running down a sink while a man is talking"], "sample_ids": ["uWAAAL4CIoc", "vSeGhaZt-aI"], "start_seconds": ["0", "50"], "properties": ["a woman, chirps, animal", "water, sink, talk"], "captions_pred_video": [null, "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a woman and man are speaking", "water splashes as an animal walks through"], "sample_ids": ["vbpKkWvfOu4", "w1ir-sZ3Im8"], "start_seconds": ["560", "90"], "properties": ["two people, speaking, woman, man", "animal, water, splashes"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is a video of an animal walking through water?", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "someone whistles a tune"], "sample_ids": ["wqZ135Ssz0", "sIXTftIuUgw"], "start_seconds": ["60", "90"], "properties": ["man, woman, squawks", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sU53zg9Jp7s", "tiDFTC-5vU"], "start_seconds": ["380", "30"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "male, duck, laugh"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["rain falls onto a hard surface and thunder roars before music plays", "water flows and trickles"], "sample_ids": ["xNMovAf3o50", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["rain, thunder, music", "water, flow, trickle"], "captions_pred_video": ["tieng mua - the falling rain lynk lee", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["thunder and rain with music playing in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "water pouring and bubbling"], "sample_ids": ["x6ijhqRY38s", "uyRfq-jKPpo"], "start_seconds": ["250", "50"], "properties": ["bowl, silverware, man", "water, bubbles, pouring"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a car speeding up in the distance"], "sample_ids": ["u21-Z5gJCB8", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, voice, man", "distance, car, speed"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "someone whistles a tune"], "sample_ids": ["wz7N8YRy74I", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["rooster, crow, background, people", "someone, tune, whistle"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", null], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["sa6TLVbooCc", "w34HjHr6gAY"], "start_seconds": ["240", "30"], "properties": ["people, laugh, child", "beeps, hit, woman"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a clock ticktocks briefly", "people speak as gunfire rings out"], "sample_ids": ["u7C-AEBQM", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["ticktocks, clock, ticktocks briefly", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a toilet flushes and water sputters as it drains"], "sample_ids": ["xfaoyyzw2WU", "smGI3C1NZc"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "water, drain, toilet"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", null], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a toilet is flushed"], "question": "which entity is quieter", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "people speak as gunfire rings out"], "sample_ids": ["yI-KvObbDoY", "wqTCwqVRDlk"], "start_seconds": ["260", "80"], "properties": ["sound, smack, wind", "gunfire, ring, speak"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["yYEVLuqEytU", "yeFvk9x0wWI"], "start_seconds": ["40", "30"], "properties": ["animal, pig, background", "clack, bird, chirp"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["several sheep bleat and a man speaks", "birds chirp in the background as a car drives by "], "question": "which entity has a bird chirping in the background?", "label": 0}, {"captions": ["here comes the train and it starts to blow the horn and get close", "water pouring and bubbling"], "sample_ids": ["s7knHCFW82w", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["blow horn, get close, train", "water, bubbles, pouring"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a car speeding up in the distance"], "sample_ids": ["t25U-v4k4ts", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["bees buzz, birds chirp, man speaks", "distance, car, speed"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["an engine starts and increases in power", "an airplane flies overhead as a woman speaks"], "sample_ids": ["zjTG0gaGCUI", "zj2R0XoFr5k"], "start_seconds": ["80", "50"], "properties": ["power, increase, engine", "airplane, fly, overhead"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a woman speaks while a helicopter flies overhead "], "question": "which object is moving", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "waves crash against a shoreline and people speak"], "sample_ids": ["ujMt0-D-x2k", "yFB25fqfU8I"], "start_seconds": ["0", "300"], "properties": ["snoring, rhythmical, nearby", "wave, crash, shoreline"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sNB8zxXneIM", "yswmmRZFItk"], "start_seconds": ["20", "0"], "properties": ["several, quack, cocks", "background, frog, croak"], "captions_pred_video": ["a group of geese in a cage", "a close up of a frog in the water"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a frog is croaking"], "question": "which animal is more likely to be a frog", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "several insects fly while two men talk"], "sample_ids": ["wAAkbZToh8", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["burp, laugh, speak", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man burps and a woman speaks", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about a person speaking and laughing?", "label": 0}, {"captions": ["water splashes and wind noise is made into a microphone", "water flows as men speak and yell"], "sample_ids": ["sDSppXIlJrs", "vJ7JPEFhyLA"], "start_seconds": ["27", "16"], "properties": ["microphone, water, wind", "water, flow, men"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "some men converse over an engine running"], "sample_ids": ["se87d6yxEOA", "sCiy7QS1U"], "start_seconds": ["10", "300"], "properties": ["run, whistle, pass", "men, converse, engine"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", null], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a steam engine?", "label": 0}, {"captions": ["a woman and man are speaking", "people applaud and hoot and chat quietly"], "sample_ids": ["vbpKkWvfOu4", "wwyfGO2J4"], "start_seconds": ["560", "90"], "properties": ["two people, speaking, woman, man", "people, applaud, hoot"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity shows more people", "label": 1}, {"captions": ["people speak softly as food sizzles", "people applaud and hoot and chat quietly"], "sample_ids": ["yhQ2Lg-7qDY", "wwyfGO2J4"], "start_seconds": ["130", "90"], "properties": ["food, sizzle, speak", "people, applaud, hoot"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["an engine starts and increases in power", "people speak as gunfire rings out"], "sample_ids": ["zjTG0gaGCUI", "wqTCwqVRDlk"], "start_seconds": ["80", "80"], "properties": ["power, increase, engine", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "pigeons vocalize and birds chirp"], "sample_ids": ["y2ZBGpgbhHM", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["animal, growl, bird", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a horn honks and then loudly blares", "a car revs and accelerates loudly and men and women chatter among themselves"], "sample_ids": ["wnpJndXuxLc", "y8dSeubCNI"], "start_seconds": ["50", "4"], "properties": ["horn, honk, loud", "men, women, car"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "an engine revving and people talking in the background"], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a man speaks while water drains"], "sample_ids": ["wP8ZKrlx3oA", "vSeGhaZt-aI"], "start_seconds": ["40", "50"], "properties": ["heavy, rain, fall", "water, drain, man"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a man speaking while water drains?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "goats bleat and people speak"], "sample_ids": ["uEU-Hg5MTN8", "z5iUE5h0EPs"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "goats bleat, people speak, language"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of the goat in the barn"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a goat bleats and a man speaks"], "question": "which entity is a language", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "winds blows roughly as a vehicle races past"], "sample_ids": ["xKB8O8LTs6s", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["music, gunfire, explosion", "wind, blows, vehicle"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a jet engine roars and wind blows "], "question": "which entity is more calm", "label": 1}, {"captions": ["a motorcycle engine is idling", "a woman speaks happily and an animal chirps"], "sample_ids": ["vZAqdHZ81yA", "uWAAAL4CIoc"], "start_seconds": ["180", "0"], "properties": ["engine, motorcycle, idling", "a woman, chirps, animal"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", null], "captions_pred_audio": ["an engine is idling loudly", "a woman is speaking and a dog is barking "], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a vehicle engine accelerating then running on idle"], "sample_ids": ["siJFXfGWgDk", "vYkA3cfXp5Q"], "start_seconds": ["50", "30"], "properties": ["a, bird, vehicle", "engine, accelerate, idle"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "an engine is idling"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a train horn blows as it passes by"], "sample_ids": ["tOSWIURC-4", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["engine, work, nearby", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a lawn mower is running ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vdoxuJn9lTc", "zj2R0XoFr5k"], "start_seconds": ["40", "50"], "properties": ["burp, loud, girl", "airplane, boy, fly"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a child speaks followed by a burp", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "water pouring and bubbling"], "sample_ids": ["wSVhSdj0F0", "uyRfq-jKPpo"], "start_seconds": ["10", "50"], "properties": ["horn honks, keys jingle, slam", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "three men talk while wind blows and some liquid flows"], "sample_ids": ["uJV8NDaHqqk", "vJ7JPEFhyLA"], "start_seconds": ["100", "16"], "properties": ["loud, fly, chirp", "three men, wind, flow"], "captions_pred_video": ["a bee hive in a wooden box", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "birds chirp and an insect buzzes around"], "sample_ids": ["vZAw4apG0Es", "t97k0cejSQE"], "start_seconds": ["30", "250"], "properties": ["background, clock, ticktocks", "bird, chirp, insect"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a bee on a purple thistle flower"], "captions_pred_audio": ["a clock is ticking and people are talking", "a bee buzzes and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a beep occurs briefly", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xtWeJ56-U-g", "ukg5L09Wpvo"], "start_seconds": ["20", "150"], "properties": ["beep, occur, briefly", "clickety-clack, train, whistle"], "captions_pred_video": ["how to create a simple program in python 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["mechanisms are ticking and a beep is heard ", "a train blows its whistle and blows its horn "], "question": "which is continuous", "label": 0}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "people talk quietly in the distance, followed by a police car siren wailing"], "sample_ids": ["uC9dtII1KDI", "wy1eKjR7KC0"], "start_seconds": ["150", "30"], "properties": ["wind, gusts, distance", "people, talk, distance"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "two police officers riding motorcycles down the street"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking and a siren is going off"], "question": "which entity is more distant", "label": 1}, {"captions": ["electronic beeps occur in a short series", "a woman speaks as she rubs two objects together"], "sample_ids": ["y682ml90jGw", "vzxHnu-SFEw"], "start_seconds": ["11", "80"], "properties": ["beeps, series, electronic", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a beeping sound is being made ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a woman speaks in a fast tone with a male"], "sample_ids": ["sYITalLZjj4", "sTpirNYo8vQ"], "start_seconds": ["30", "30"], "properties": ["water, rushes, background, birds", "a, tone, fast"], "captions_pred_video": ["two ducks are swimming in the water near each other", "of a man taking a selfie on a bus"], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking while a car is revving and accelerating "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a infant makes noise and is excited", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wIJK3-5y0kA", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["noise, excited, infant", "men, talk, cars"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person whistles a meandering tune", "pigeons vocalize and birds chirp"], "sample_ids": ["uFoga8sHpiw", "uiS58TNyUiw"], "start_seconds": ["90", "430"], "properties": ["person, tune, whistle", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a bird in a cage", "of the pigeon in the cage"], "captions_pred_audio": ["a person whistles a song", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "small dogs yip and bark sharply"], "sample_ids": ["w1mlz3Pe4fU", "v-wcQf4BDY0"], "start_seconds": ["300", "120"], "properties": ["vocalize, chirp, continuously", "bark, yip, sharply"], "captions_pred_video": ["of a bird in a cage", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["birds are chirping and singing", "a dog barks and growls"], "question": "which entity is more vocal", "label": 1}, {"captions": ["wind blows and people talk while livestock vocalizes", "a clock ticktocks"], "sample_ids": ["vXlk0lIQBFo", "v-g-j2uTByM"], "start_seconds": ["470", "30"], "properties": ["wind, talk, vocalize", "ticktocks, clock, ticktocks"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["someone whistles a song", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["sIXTftIuUgw", "zY3icUyMdh8"], "start_seconds": ["90", "20"], "properties": ["someone, song, whistle", "dog, bark, engine"], "captions_pred_video": [null, "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a person whistling a song", "a car is driving and dogs are barking and squealing "], "question": "which entity is a person", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["vKrYfzleLB8", "yLy-WycbVVE"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "background, people, talk"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity has a man yell?", "label": 0}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "a car accelerates and wind blows"], "sample_ids": ["weDbePuc-Xc", "u0TrcHhkPQ"], "start_seconds": ["40", "20"], "properties": ["cartoon character, music, vocalize", "accelerates, wind, blows"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", null], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person snoring several times", "paper is crumpling consistently"], "sample_ids": ["spJCm8tD9Zo", "v5cSxLaHADY"], "start_seconds": ["90", "0"], "properties": ["snore, person, several", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person is snoring loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["children speak as a female ask them questions", "vehicles pass by on a roadway"], "sample_ids": ["wEBlkGWVWwE", "tgbONvsP47Y"], "start_seconds": ["260", "0"], "properties": ["female, speak, questions", "pass, vehicle, roadway"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["someone whistles a tune", "an infant crying as a woman laughs"], "sample_ids": ["sIXTftIuUgw", "xhmRY9yhC7c"], "start_seconds": ["90", "20"], "properties": ["someone, tune, whistle", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a person whistling a song", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a jet engine spools up and takes off", "people cheer as a vehicle engine revs"], "sample_ids": ["vBslzh7saPw", "xjhAnI2q6hM"], "start_seconds": ["90", "6"], "properties": ["engine, spools, takes", "engine revs, vehicle, people"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man talks while vehicles pass by", "birds chirp and objects are moved around"], "sample_ids": ["sK4u5T8hW78", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["a, man, talk", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a stream of water flows quickly", "paper is crumpling consistently"], "sample_ids": ["wbHTKEJZyhc", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["stream, water, flow", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "water splashes as an animal walks through"], "sample_ids": ["vMf1dLD6Sng", "w1ir-sZ3Im8"], "start_seconds": ["6", "90"], "properties": ["frog, bird, vocalize", "animal, water, splashes"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a frog croaks loudly", "water splashes and gurgles as people speak"], "question": "which entity is not a frog?", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "an adult woman and an adult man speak"], "sample_ids": ["y8WEcpOlT3I", "zTLVJCo4WEE"], "start_seconds": ["40", "30"], "properties": ["wind, speak, buffeting", "two people, adult, speak"], "captions_pred_video": ["on how to use a sewing machine youtube", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman speaks and crickets chirp"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["zofjfKhqLk8", "xBxDz0CFVn0"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "stream, water, flow"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage is blurry and out of focus"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "some tunes played by whistling"], "sample_ids": ["y2ZBGpgbhHM", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["dog, chirp, breathe", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["birds chirping and a dog panting", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "people speak as gunfire rings out"], "sample_ids": ["y1saVTXsKwc", "wqTCwqVRDlk"], "start_seconds": ["80", "80"], "properties": ["a, dog, talk", "gunfire, ring, speak"], "captions_pred_video": ["a dog playing with a pink ball", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tDlysoZiA1I", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["animal, grunt, chirp", "a woman, something, fried"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a child speaks in closed space"], "sample_ids": ["w5W5Kqtc8E", "yW6FWLSLkx4"], "start_seconds": ["100", "40"], "properties": ["water, splashes, motorboat", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "water splashes and a door squeaks"], "sample_ids": ["vZAw4apG0Es", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["background, tick, repeat", "sound, splash, door"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a dog barks and taps with background noise "], "question": "which entity has a door?", "label": 1}, {"captions": ["long loud burping by a man", "birds chirp and objects are moved around"], "sample_ids": ["xmiUIOhtZyQ", "yPUYU6t3rwo"], "start_seconds": ["60", "370"], "properties": ["loud, burp, man", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["homer simpson drinking a beer", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a person burps and music plays in the background ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wvKpEYswXO0", "yajyRTUQk3U"], "start_seconds": ["150", "400"], "properties": ["plastic, tap, speak", "a woman, something, fried"], "captions_pred_video": ["of the person preparing food in the kitchen", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking while food is frying in the background"], "question": "what is being tapped on in the first picture?", "label": 0}, {"captions": ["a man speaks as a vehicle engine idles", "a child speaks in closed space"], "sample_ids": ["shmR4OZtzqA", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["man, engine, idle", "child, space, speak"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man speaks while a motor runs", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a horn beeps twice followed by a clang and then some footsteps and another beep", "a stream of water flows quickly"], "sample_ids": ["wSVhSdj0F0", "wbHTKEJZyhc"], "start_seconds": ["10", "20"], "properties": ["beep, clang, footsteps", "stream, water, flow"], "captions_pred_video": [null, "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a waterfall is flowing and people are speaking "], "question": "which entity is moving", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a motor idles, accelerates, then slows down."], "sample_ids": ["tQWGZLItBXk", "vYkA3cfXp5Q"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "speed, idle, accelerate"], "captions_pred_video": ["worms revolution screenshots", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "an engine is idling"], "question": "which entity is more like a machine", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "an insect buzzes around continuously"], "sample_ids": ["xfaoyyzw2WU", "v25l1jef3JY"], "start_seconds": ["180", "0"], "properties": ["loud, jet engine, roar", "buzzes, continuously, insect"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a fly is buzzing around a microphone "], "question": "which entity is quieter", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "a stream of water runs briefly"], "sample_ids": ["wqZ135Ssz0", "x-PeY8Yb8M4"], "start_seconds": ["60", "300"], "properties": ["two men, woman, birds", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks as crickets sing", "a train horn blows as it passes by"], "sample_ids": ["ryFDPxgDOGc", "zVacuqSb4LI"], "start_seconds": ["570", "30"], "properties": ["a, crickets, sing", "horn, blows, train"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is louder", "label": 0}, {"captions": ["people converse in the distance as a clock ticks", "vehicles pass by on a roadway"], "sample_ids": ["vZAw4apG0Es", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["people, clock, converse", "pass, vehicle, roadway"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a clock is ticking and people are talking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks over intermittent keyboard taps", "a man speaks over intermittent keyboard taps"], "sample_ids": ["tw76HGONaKg", "tw76HGONaKg"], "start_seconds": ["570", "570"], "properties": ["audio, man, keyboard", "audio, man, keyboard"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man speaks and types on a computer keyboard "], "question": "which entity is a video", "label": 1}, {"captions": ["a small engine idles continuously", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["y5WII6cTH7k", "wDVMhEdTiVw"], "start_seconds": ["40", "30"], "properties": ["engine, idle, continuously", "gun, shoot, water"], "captions_pred_video": ["footage of a sewing machine stitching a red and white hat", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["an engine is knocking and vibrating ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a gun?", "label": 0}, {"captions": ["birds twitter and chirp and clatter", "a man speaks while turning a water faucet on"], "sample_ids": ["yeFvk9x0wWI", "vf9xf3vMsGM"], "start_seconds": ["30", "540"], "properties": ["chirp, twitter, clatter", "A man speaks while turning a water faucet on."], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of the person washing their hands under the faucet"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking while water is running in the background"], "question": "which entity is silent", "label": 1}, {"captions": ["a train engine runs and a horn blows", "water flows and trickles"], "sample_ids": ["zPX9o1uDiI", "tB7hWb9gTuQ"], "start_seconds": ["40", "30"], "properties": ["engine, horn, run", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a toilet flushes and a female speaks"], "sample_ids": ["xvDdE3zNf8Y", "yaln9y8I7ms"], "start_seconds": ["120", "230"], "properties": ["A, crumple, paper", "female, flushes, toilet"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman speaks and crumples paper", "a toilet flushes and a man speaks"], "question": "which woman is speaking", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zofjfKhqLk8", "ukg5L09Wpvo"], "start_seconds": ["10", "150"], "properties": ["background, metal, clings", "clickety-clack, train, whistle"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "wind blowing followed by a zoom"], "sample_ids": ["yJ0TePmaOo", "vr8ZXjEBhMQ"], "start_seconds": ["390", "150"], "properties": ["two hard objects, man, speak", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "wind blows as people chatter quietly"], "sample_ids": ["slZLHwNbbt4", "xBxDz0CFVn0"], "start_seconds": ["300", "30"], "properties": ["clap, distance, horn", "wind, chatter, people"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "some tunes played by whistling"], "sample_ids": ["yVumC9TGknc", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["humming, clock, birds", "tune, play, whistling"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a series of beeps and chirps", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a man speaks as a machine runs", "dishes cling together then a man begins to speak"], "sample_ids": ["vD6lYD1l0BY", "sQGXqGcwOTc"], "start_seconds": ["330", "3"], "properties": ["a, machine, run", "cling, speak, dishes"], "captions_pred_video": ["game controller being held in the hands of the person", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking as a machine runs?", "label": 0}, {"captions": ["a man speaks as a motor runs in the background", "an engine sputters followed by a car zooming by"], "sample_ids": ["xZepNM9qcRA", "u5RmF3c3Aw"], "start_seconds": ["30", "60"], "properties": ["background, motor, run", "engine, car, zoom"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a race car accelerates and skids with wind noise in the background "], "question": "which entity has a car zooming by?", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["y2ZBGpgbhHM", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["animal, growl, bird", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["birds chirping and a dog panting", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "an engine runs loudly"], "sample_ids": ["sDSppXIlJrs", "vqZuVbG6-HI"], "start_seconds": ["27", "130"], "properties": ["microphone, water, wind", "loud, engine, run"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "footage is blurry because it's raining outside"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a loud engine muffles a man as he speaks"], "sample_ids": ["tOSWIURC-4", "xyx6eNVEYRY"], "start_seconds": ["0", "380"], "properties": ["engine, work, nearby", "loud, engine, muffles"], "captions_pred_video": [null, "footage of a helicopter landing on a runway at an airport"], "captions_pred_audio": ["a lawn mower is running ", "an aircraft engine is running and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vSeGhaZt-aI", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["water, bubbles, speak", "rooster, crow, background, men"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a propeller rotates loudly and intensely"], "sample_ids": ["w8uLijTqtlU", "ugHJF0hfYkg"], "start_seconds": ["70", "10"], "properties": ["wind, microphone, noise", "loud, intense, propeller"], "captions_pred_video": ["footage is blurry and shaky", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["the wind is blowing strongly", "a helicopter is flying overhead "], "question": "which is louder", "label": 0}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sLUnaPT5gM8", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["loud, laughter, intermittent", "airplane, boy, fly"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a clock ticktocks", "a machine engine runs and a man speaks"], "sample_ids": ["v-g-j2uTByM", "vs65y4qmyBE"], "start_seconds": ["30", "340"], "properties": ["ticktocks, clock, ticktocks", "engine, run, man"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "a car is engulfed in flames on the side of the road"], "captions_pred_audio": ["a clock is ticking loudly", "a heavy engine is running and men are speaking "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a man is snoring loudly and repeatedly", "a woman speaks over sizzling noise"], "sample_ids": ["sncRqQ67iJU", "yajyRTUQk3U"], "start_seconds": ["460", "400"], "properties": ["loud, repeatedly, man", "noise, woman, speak"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is snoring", "a woman is speaking while food is frying in the background"], "question": "which entity is speaking over noise", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["su6FAOcOA8c", "rwtmaKiCcQU"], "start_seconds": ["4", "30"], "properties": ["engine, idle, woman", "nozzle, depressed, spray can"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "spraying and people speaking"], "question": "which entity is about a spray can?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["tQWGZLItBXk", "vlS6YMeWAPo"], "start_seconds": ["170", "40"], "properties": ["voice, music, whoosh", "sheep, baa, birds"], "captions_pred_video": ["worms revolution screenshots", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a goat bleats and birds chirp"], "question": "which entity is more animal", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vddP56-ogds", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["water, flow, laugh", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a child yells and another yells", "a woman and man speak while food is frying"], "sample_ids": ["vMDHu7Lxcgw", "zk-xJGQU8-4"], "start_seconds": ["410", "130"], "properties": ["two, yell, child", "food, man, woman"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a woman speaks with water running", "people speak as gunfire rings out"], "sample_ids": ["wTideSjRFS0", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["water, running, woman", "gunfire, ring, speak"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and a gun is fired"], "question": "which entity is more calm", "label": 0}, {"captions": ["a car accelerates and wind blows", "a propeller rotates loudly and intensely"], "sample_ids": ["u0TrcHhkPQ", "ugHJF0hfYkg"], "start_seconds": ["20", "10"], "properties": ["accelerates, wind, blows", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a helicopter is flying overhead "], "question": "which entity is rotating", "label": 1}, {"captions": ["a small engine spits as it runs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sZvwOuuPGP0", "vbZ-0lGPneg"], "start_seconds": ["50", "30"], "properties": ["spits, engine, runs", "a woman, a television program, a bird"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a medium engine is running ", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a woman speaks and other women and a man talk with her"], "sample_ids": ["vYkA3cfXp5Q", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["engine, accelerate, idle", "a, woman, man"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["an engine is idling", "a woman is speaking and a man is speaking"], "question": "which entity is a group of people", "label": 1}, {"captions": ["a large crowd cheers and applauds", "small dogs yip and bark sharply"], "sample_ids": ["rqfQRErjfk8", "v-wcQf4BDY0"], "start_seconds": ["170", "120"], "properties": ["crowd, cheers, applauds", "bark, yip, sharply"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a dog barks and growls"], "question": "which entity is more likely to be a group of people", "label": 0}, {"captions": ["an electronic device bleeps once", "multiple people speak and children yell while water gurgles"], "sample_ids": ["tHJ6JSa8Y4", "vb1fPSDI4c"], "start_seconds": ["0", "30"], "properties": ["bleeps, electronic, device", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["a clock is ticking and beeping", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["the rumbling of a bus followed by a soft male voice", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vK93VuO0yNc", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["male voice, bus, rumble", "a woman, something, fried"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about a woman talking?", "label": 1}, {"captions": ["a man speaks as crickets sing", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["ryFDPxgDOGc", "y8WEcpOlT3I"], "start_seconds": ["570", "40"], "properties": ["a, crickets, sing", "harsh, wind, blows"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking as crickets sing?", "label": 0}, {"captions": ["a helicopter engine runs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["t5ZbXbniOWk", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["engine, helicopter, run", "engine, laugh, loud"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a helicopter is flying overhead ", "a jet engine roars "], "question": "which entity is not a helicopter?", "label": 1}, {"captions": ["water runs into a sink while men speak", "a telephone rings followed by a woman talking"], "sample_ids": ["vzceMbklWc", "tGcFnX0GHI"], "start_seconds": ["180", "0"], "properties": ["water, sink, run", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and a man is speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "people applaud and hoot and chat quietly"], "sample_ids": ["vh30P49Po6s", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["loud, continuous, quacks", "people, applaud, hoot"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "people are clapping and speaking with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a motor runs steadily as a man speaks, then the motor revs twice", "water flows and trickles"], "sample_ids": ["ylpYOorfH4o", "tB7hWb9gTuQ"], "start_seconds": ["410", "30"], "properties": ["motor, run, steady", "water, flow, trickle"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and an engine is revving", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["u21-Z5gJCB8", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["background, voice, man", "a, scream, girl"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a man talks while metallic objects are rapped and steam is released"], "sample_ids": ["ukxt9I7eMMg", "vuUVPzd2FXw"], "start_seconds": ["30", "160"], "properties": ["continuous, woman, speaking", "a, steam, release"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of the person cooking on the grill with a spatula"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and dishes are clanging"], "question": "which entity has a woman speaking towards the end?", "label": 0}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a car accelerates and wind blows"], "sample_ids": ["ziUT9IFTkjg", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["background, birds, rustling", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a race car accelerates and revs its engine "], "question": "which entity is a car?", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["yks4cLgIDMc", "ziUT9IFTkjg"], "start_seconds": ["170", "10"], "properties": ["background, speaking, child", "background, birds, rustling"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "birds are chirping and a chime is ringing "], "question": "which entity has birds in the background?", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xOZfdgAgJ9o", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["woman, whimpering, speaking", "applause, audience, yells"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["paper folding and crinkling", "wind blows as people chatter quietly"], "sample_ids": ["zPpG3RD8lSs", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["paper, fold, crinkle", "wind, chatter, people"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sU53zg9Jp7s", "su6FAOcOA8c"], "start_seconds": ["380", "4"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "engine, idle, woman"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a woman is speaking and a subway train is moving "], "question": "which entity is a recording of a person speaking?", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yeFvk9x0wWI", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["chirp, twitter, clatter", "male, duck, laugh"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and ducks are quacking"], "question": "which entity is a human speaking?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "winds blows roughly as a vehicle races past"], "sample_ids": ["uYT5gxnyMWM", "xjvTpk2Zpr8"], "start_seconds": ["50", "70"], "properties": ["person, spray, yell", "wind, blows, vehicle"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a jet engine roars and wind blows "], "question": "which entity is more likely to be a person", "label": 0}, {"captions": ["people speak and laugh as a child speaks", "a person whistles a meandering tune"], "sample_ids": ["sa6TLVbooCc", "uFoga8sHpiw"], "start_seconds": ["240", "90"], "properties": ["people, laugh, child", "person, tune, whistle"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of a bird in a cage"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a person whistles a song"], "question": "which entity is a person?", "label": 1}, {"captions": ["continuous sneezing together with speech", "a clock ticks quietly and rhythmically"], "sample_ids": ["x4dZyf9Gbj0", "u7C-AEBQM"], "start_seconds": ["130", "30"], "properties": ["continuous, sneeze, speech", "ticks, rhythmic, quiet"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a group of people chatter and talk as multiple horns honk in the background"], "sample_ids": ["wnpJndXuxLc", "yLy-WycbVVE"], "start_seconds": ["50", "30"], "properties": ["blows, vehicle, train", "background, people, talk"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a soccer field in a stadium with yellow and red seats"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a man is speaking and a church bell is ringing with wind noise in the background "], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "plastic is tapped on while someone speaks"], "sample_ids": ["yJ0TePmaOo", "wvKpEYswXO0"], "start_seconds": ["390", "150"], "properties": ["two hard objects, man, speak", "plastic, tap, speak"], "captions_pred_video": [null, "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a woman is speaking and tapping with background noise and water running "], "question": "which object is being rubbed together", "label": 0}, {"captions": ["a man speaks while turning a water faucet on", "an engine runs loudly"], "sample_ids": ["vf9xf3vMsGM", "vqZuVbG6-HI"], "start_seconds": ["540", "130"], "properties": ["A man speaks while turning a water faucet on.", "loud, engine, run"], "captions_pred_video": ["of the person washing their hands under the faucet", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["a door slams shut and an object moves on a hard surface", "an infant crying as a woman laughs"], "sample_ids": ["zkKdxzNC97Y", "xhmRY9yhC7c"], "start_seconds": ["27", "20"], "properties": ["hard, surface, door", "a, laugh, infant"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a door is opened and closed", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["birds fly and flutter around", "people applaud and hoot and chat quietly"], "sample_ids": ["wGKgwOP3h30", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["fly, flutter, around", "people, applaud, hoot"], "captions_pred_video": ["of the pigeons in the coop", null], "captions_pred_audio": ["pigeons coo and flap their wings", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 0}, {"captions": ["a propeller moves loudly nearby", "a duck quacks loudly and continuously"], "sample_ids": ["ugHJF0hfYkg", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["loud, propeller, move", "loud, continuous, quacks"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a helicopter is flying overhead ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["uYT5gxnyMWM", "wqZ135Ssz0"], "start_seconds": ["50", "60"], "properties": ["person, spray, yell", "two men, woman, birds"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yswmmRZFItk", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["background, frog, croak", "a woman, laughs, animal"], "captions_pred_video": ["a close up of a frog in the water", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a frog is croaking", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "a car speeding up in the distance"], "sample_ids": ["w8uLijTqtlU", "u0TrcHhkPQ"], "start_seconds": ["70", "20"], "properties": ["wind, microphone, noise", "distance, car, speed"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a clock ticktocks continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vlJS7LN2XyM", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["ticktocks, clock, ticktocks continuously", "engine, revs, vehicle"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a ticktock of a clock", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a small engine spits as it runs", "an airplane engine runs"], "sample_ids": ["sZvwOuuPGP0", "yVPZ2MNWpms"], "start_seconds": ["50", "0"], "properties": ["spits, engine, runs", "engine, airplane, runs"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a medium engine is running ", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "a toilet flushes and a female speaks"], "sample_ids": ["sd7xVssqlw", "yaln9y8I7ms"], "start_seconds": ["50", "230"], "properties": ["accelerates, tires, squealing", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a toilet flushes and a man speaks"], "question": "which entity is a toilet?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["vddP56-ogds", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["water, flow, laugh", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "some tunes played by whistling"], "sample_ids": ["x5cuQjOdM3E", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["cat, talk, meow", "tune, play, whistling"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a cat meows and a woman speaks", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a train horn blows as it passes by"], "sample_ids": ["s4Uz1Ffgo04", "zVacuqSb4LI"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "horn, blows, train"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "water pouring and bubbling"], "sample_ids": ["sofxkNWaP0s", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["wind, engine, louder", "water, bubbles, pouring"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an animal quacks rapidly", "wind blowing followed by a zoom"], "sample_ids": ["vh30P49Po6s", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["animal, quacks, rapidly", "wind, blow, zoom"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a duck is quacking loudly", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wRBHTgrbiwg", "y2bVZ7rz-5M"], "start_seconds": ["50", "280"], "properties": ["bird, owl, speak", "motor noise, horn, siren"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a truck is honking its horn and a siren is blaring "], "question": "which entity is more likely to be heard in a car", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "wind blows as people chatter quietly"], "sample_ids": ["uOpoD0gGXcs", "xBxDz0CFVn0"], "start_seconds": ["120", "30"], "properties": ["chirps, woman, bird", "wind, chatter, people"], "captions_pred_video": ["a herd of cows grazing in the field", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tjmoSi330GM", "tDVADusiIoc"], "start_seconds": ["23", "60"], "properties": ["speed, water, boat", "water, radio, man"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which is not a speedboat", "label": 1}, {"captions": ["a motorcycle engine is idling", "a infant makes noise and is excited"], "sample_ids": ["vZAqdHZ81yA", "wIJK3-5y0kA"], "start_seconds": ["180", "30"], "properties": ["engine, motorcycle, idling", "noise, excited, infant"], "captions_pred_video": ["a motorcycle is parked on the side of the road with its rear end facing the viewer", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["an engine is idling loudly", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["a large crowd cheers and applauds", "an airplane engine runs"], "sample_ids": ["rqfQRErjfk8", "yVPZ2MNWpms"], "start_seconds": ["170", "0"], "properties": ["crowd, cheers, applauds", "engine, airplane, runs"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a dog barks and whimpers", "small dogs yip and bark sharply"], "sample_ids": ["sShpyu2l4YQ", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["barks, whimpers, dog", "bark, yip, sharply"], "captions_pred_video": ["the puppies are playing with a toy", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a dog is barking and growling", "a dog barks and growls"], "question": "which dog is more playful", "label": 1}, {"captions": ["a duck quacks continuously", "some tunes played by whistling"], "sample_ids": ["vh30P49Po6s", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["quacks, continuously, duck", "tune, play, whistling"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a duck is quacking loudly", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "some liquid flows while a woman laughs and man talks"], "sample_ids": ["sHbXC6na9hg", "vddP56-ogds"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "liquid, laughs, man"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", null], "captions_pred_audio": ["an engine is idling and vibrating", "water is running and gurgling and a man is speaking"], "question": "which entity is about a person cutting wood?", "label": 0}, {"captions": ["a woman speaks and a baby laughs", "a man speaks as a car is passing by"], "sample_ids": ["tOj4tdLRaA", "sK4u5T8hW78"], "start_seconds": ["70", "30"], "properties": ["woman, laugh, baby", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a baby?", "label": 0}, {"captions": ["a man makes an exclamation, then another man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xO-Q2BlIIPU", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["two men, exclamation, speak", "engine, laugh, loud"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a horn blasts as warning bells ring"], "sample_ids": ["zofjfKhqLk8", "zgUgkpk78xU"], "start_seconds": ["10", "70"], "properties": ["background, metal, clank", "horn, bells, ring"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a warning device", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "a girl talking, laughing and sneezing noise"], "sample_ids": ["yZrFNS7GFBQ", "y4tPJXBKDig"], "start_seconds": ["30", "20"], "properties": ["pigeon, buzzes, insect", "a, noise, talk"], "captions_pred_video": ["of the bird in the cage", "footage of the woman wiping her nose with a tissue"], "captions_pred_audio": ["an owl hoots in the background ", "a woman is speaking and coughing with background noise and breathing "], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a stream of water flows as people talk and wind blows"], "sample_ids": ["t69a8aRKhmc", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "stream, water, flow"], "captions_pred_video": ["footage is blurry and out of focus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and wind blows", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sxIvBMSavMQ", "y8WEcpOlT3I"], "start_seconds": ["210", "40"], "properties": ["birds, chirp, wind", "harsh, wind, blows"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "on how to use a sewing machine youtube"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 0}, {"captions": ["a man speaks over intermittent keyboard taps", "a person uses a saw to cut some wood"], "sample_ids": ["tw76HGONaKg", "sHbXC6na9hg"], "start_seconds": ["570", "0"], "properties": ["audio, man, keyboard", "a person, saw, wood"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "an engine is idling and vibrating"], "question": "which entity is a video of a person cutting wood?", "label": 1}, {"captions": ["a man talks as several small engines run", "a stream of water runs briefly"], "sample_ids": ["u9A6VZQCZpU", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["a, man, talk", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "an small aircraft engine runs and a boy speaks"], "sample_ids": ["xjhAnI2q6hM", "xSKJGCItUWE"], "start_seconds": ["6", "10"], "properties": ["engine revs, vehicle, people", "engine, run, boy"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a high pitched engine is running and a child speaks"], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vr8ZXjEBhMQ", "yDoT73BWsdA"], "start_seconds": ["150", "10"], "properties": ["wind, blow, zoom", "engine, revs, vehicle"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a race car accelerates and revs its engine "], "question": "which entity is not a zoom", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "some men converse over an engine running"], "sample_ids": ["yZrFNS7GFBQ", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["pigeon, buzzes, insect", "men, converse, engine"], "captions_pred_video": ["of the bird in the cage", null], "captions_pred_audio": ["an owl hoots in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a goat bleats as a person speaks", "an infant crying as a woman laughs"], "sample_ids": ["tPJvjq9QePY", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["bleats, person, speak", "a, laugh, infant"], "captions_pred_video": ["a dog and a sheep in a barn", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a baby cries and a man speaks", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "people cheer as a vehicle engine revs"], "sample_ids": ["sQGXqGcwOTc", "xjhAnI2q6hM"], "start_seconds": ["3", "6"], "properties": ["cling, speak, dishes", "engine revs, vehicle, people"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["u21-Z5gJCB8", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["background, voice, man", "harsh, wind, blows"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity has a harsh wind blowing?", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["uZesmtKZGSw", "w34HjHr6gAY"], "start_seconds": ["250", "30"], "properties": ["car, track, man", "beeps, hit, woman"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a beep sounds followed by a child speaking"], "question": "which entity has a man talking?", "label": 0}, {"captions": ["a male speaks and another male speaks", "pigeons vocalize and birds chirp"], "sample_ids": ["viuTg1M-dqg", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["two males, speaking, male", "vocalize, bird, chirp"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["an engine runs and a man speaks", "people speak as gunfire rings out"], "sample_ids": ["yT5WfYMRr-U", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["engine, run, man", "gunfire, ring, speak"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war", "label": 1}, {"captions": ["ticking continues without interruption", "a man speaks as a boat engine runs"], "sample_ids": ["v-g-j2uTByM", "wtDqrBygTcU"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "man, engine, run"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "shows a person riding on the back of a boat as it speeds through the water"], "captions_pred_audio": ["a clock is ticking loudly", "a man is speaking and a motor is running"], "question": "which is not a clock", "label": 1}, {"captions": ["children speak as a female ask them questions", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wEBlkGWVWwE", "uYT5gxnyMWM"], "start_seconds": ["260", "50"], "properties": ["female, speak, questions", "a, scream, girl"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman is speaking and a baby is crying"], "question": "which entity has a girl speaking followed by a scream?", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wvKpEYswXO0", "uYT5gxnyMWM"], "start_seconds": ["150", "50"], "properties": ["water, tap, run", "female, spraying, scream"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person spraying and screaming?", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "a child speaks in closed space"], "sample_ids": ["w5W5Kqtc8E", "yW6FWLSLkx4"], "start_seconds": ["100", "40"], "properties": ["wind, blow, vehicle", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a person is snoring while sleeping", "a frog croaks as other frogs croak in the background"], "sample_ids": ["vJrjSeP17yE", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "background, frog, croak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a close up of a frog in the water"], "captions_pred_audio": ["a person snoring loudly", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "someone snores nearby"], "sample_ids": ["ujMt0-D-x2k", "spJCm8tD9Zo"], "start_seconds": ["0", "90"], "properties": ["snoring, rhythmical, nearby", "someone snores, nearby, someone"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person is snoring loudly", "a person is snoring loudly"], "question": "which entity is more likely to be a person", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "some men converse over an engine running"], "sample_ids": ["y8WEcpOlT3I", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["harsh, wind, blows", "men, converse, engine"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["children cheer as a man speaks then an audience screams", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["vJvryTwuAV8", "wDVMhEdTiVw"], "start_seconds": ["16", "30"], "properties": ["audience, cheer, man", "gun, shoot, water"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "water splashes and a door squeaks"], "sample_ids": ["s4Uz1Ffgo04", "sdXV-ylviw"], "start_seconds": ["100", "190"], "properties": ["roars, background, people speaking", "sound, splash, door"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone whistles a song", "a drill drills through something then people begin laughing"], "sample_ids": ["sIXTftIuUgw", "tEE3MpBt1sg"], "start_seconds": ["90", "50"], "properties": ["someone, song, whistle", "drill, something, laugh"], "captions_pred_video": [null, "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a person whistling a song", "people are laughing breathing and speaking with background noise "], "question": "which entity is a drill?", "label": 1}, {"captions": ["a door slams shut roughly", "a man speaks as a car is passing by"], "sample_ids": ["zkKdxzNC97Y", "sK4u5T8hW78"], "start_seconds": ["27", "30"], "properties": ["a door, slams, shut", "a, car, pass"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a moving object", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "paper folding and crinkling"], "sample_ids": ["s7knHCFW82w", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["blow horn, get close, train", "paper, fold, crinkle"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "the wind blows and a mouse clicks "], "question": "which is not a train", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "water splashes as an animal walks through"], "sample_ids": ["w-4gHptFNuU", "w1ir-sZ3Im8"], "start_seconds": ["21", "90"], "properties": ["engine revs, accelerates, bump", "animal, water, splashes"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a car accelerates and revs its engine ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to cause a splash", "label": 1}, {"captions": ["birds chirp and wind blows", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sxIvBMSavMQ", "zl9Dqx-j7q4"], "start_seconds": ["210", "6"], "properties": ["birds, chirp, wind", "engine, laugh, loud"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage of a man driving a car in the dark"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a telephone rings and a bird vocalizes", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["skd2PphS6oI", "sLUnaPT5gM8"], "start_seconds": ["190", "0"], "properties": ["ring, bird, vocalize", "loud, laughter, intermittent"], "captions_pred_video": ["a vintage telephone on a towel with a pair of scissors and a pair of pliers next to it", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a telephone bell rings repeatedly ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["paper is repeatedly crumpled and crinkled", "wind blowing followed by a zoom"], "sample_ids": ["vms5XGTDVQc", "vr8ZXjEBhMQ"], "start_seconds": ["220", "150"], "properties": ["paper, crumpled, crinkled", "wind, blow, zoom"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["paper is crumpled and crinkled", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "people applaud and hoot and chat quietly"], "sample_ids": ["uiS58TNyUiw", "wwyfGO2J4"], "start_seconds": ["430", "90"], "properties": ["vocalize, bird, chirp", "people, applaud, hoot"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a symphony", "label": 1}, {"captions": ["a baby laugh at a sputter", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sLUnaPT5gM8", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["laugh, sputter, baby", "engine, revs, vehicle"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "wind blows as people chatter quietly"], "sample_ids": ["wtDqrBygTcU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "wind, chatter, people"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a motor is running", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zY3icUyMdh8", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["dog, bark, engine", "a, scream, girl"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water drains", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sfAvvZwdLCY", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["water drains, flushes, water", "applause, audience, yells"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a man speaks as a vehicle engine idles"], "sample_ids": ["s7knHCFW82w", "shmR4OZtzqA"], "start_seconds": ["30", "30"], "properties": ["blow horn, get close, train", "man, engine, idle"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a man speaks while a motor runs"], "question": "which entity is stationary", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "wind blowing followed by a zoom"], "sample_ids": ["ukg5L09Wpvo", "vr8ZXjEBhMQ"], "start_seconds": ["150", "150"], "properties": ["clickety-clack, train, whistle", "wind, blow, zoom"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "people speak as gunfire rings out"], "sample_ids": ["x4a9YGIw4ok", "wqTCwqVRDlk"], "start_seconds": ["120", "80"], "properties": ["water, gurgles, stops", "gunfire, ring, speak"], "captions_pred_video": ["footage is blurry and out of focus", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a toilet flushes and water splashes", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a woman talks while a baby cries and a man whispers", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["smDKStoHBJo", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["a, talk, baby, cry", "engine, idle, woman"], "captions_pred_video": ["a man holding a crying baby in his arms", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["birds chirp and a dog breathes heavily", "water flows and trickles"], "sample_ids": ["y2ZBGpgbhHM", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["dog, chirp, breathe", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["birds chirping and a dog panting", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a stream of water runs briefly"], "sample_ids": ["sOa7g-44Dag", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["audio, scratching, man", "stream, water, run"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "small dogs yip and bark sharply"], "sample_ids": ["wTideSjRFS0", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["food, sizzle, woman", "bark, yip, sharply"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a toilet flushes and a female speaks"], "sample_ids": ["uPDn2BFTHk", "yaln9y8I7ms"], "start_seconds": ["140", "230"], "properties": ["lady, laugh, baby", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a duck quacks continuously"], "sample_ids": ["wsHBIgzs9Fs", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["horn, continuous, buzzing", "quacks, continuously, duck"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an airplane accelerates briefly", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["zjTG0gaGCUI", "wqZ135Ssz0"], "start_seconds": ["80", "60"], "properties": ["accelerates, airplane, briefly", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a jet engine roars as wind blows ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["a vehicle accelerates squealing tires", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sd7xVssqlw", "yajyRTUQk3U"], "start_seconds": ["50", "400"], "properties": ["accelerates, tires, squealing", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vYkA3cfXp5Q", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["engine, accelerate, idle", "men, talk, cars"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["an engine is idling", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a video of a vehicle engine accelerating then running on idle?", "label": 0}, {"captions": ["a frog vocalizes as birds chirp", "three men talk while wind blows and some liquid flows"], "sample_ids": ["wqUmIEzuNz4", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["frog, bird, vocalize", "three men, wind, flow"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a cat meows and rustles", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a frog?", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a man speaks on a radio as wind blows"], "sample_ids": ["y2ZBGpgbhHM", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["birds, tweet, pant", "man, radio, blows"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking on a radio as wind blows?", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "some men converse over an engine running"], "sample_ids": ["vSeGhaZt-aI", "sCiy7QS1U"], "start_seconds": ["50", "300"], "properties": ["water, bubbles, speak", "men, converse, engine"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a child babbles as a woman speaks", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["wEBlkGWVWwE", "wDVMhEdTiVw"], "start_seconds": ["260", "30"], "properties": ["a, babble, woman", "gun, shoot, water"], "captions_pred_video": ["shows a person writing on the whiteboard", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zcDwZ6W7E3E", "zj2R0XoFr5k"], "start_seconds": ["180", "50"], "properties": ["man, speak, motorcycles", "airplane, boy, fly"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a child speaks in closed space"], "sample_ids": ["tDlysoZiA1I", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["animal, grunts, chirps", "child, space, speak"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["w0xsN8X18Y", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["rain, thunder, surface", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "water flows and trickles"], "sample_ids": ["y4tPJXBKDig", "tB7hWb9gTuQ"], "start_seconds": ["20", "30"], "properties": ["a, noise, talk", "water, flow, trickle"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "sucking and grunting followed by slurping with birds in the background"], "sample_ids": ["sEprKHm8Sj8", "yYEVLuqEytU"], "start_seconds": ["90", "40"], "properties": ["car, tires, slows", "grunt, slurp, background"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "a baby goat is being petted by a person's hand"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "several sheep bleat and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a duck quacks loudly and continuously"], "sample_ids": ["zl9Dqx-j7q4", "vh30P49Po6s"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "loud, continuous, quacks"], "captions_pred_video": ["footage of a man driving a car in the dark", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a jet engine roars ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["s4Uz1Ffgo04", "yDoT73BWsdA"], "start_seconds": ["100", "10"], "properties": ["roars, background, people speaking", "engine, revs, vehicle"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a race car accelerates and revs its engine "], "question": "which vehicle is revving its engine", "label": 1}, {"captions": ["a motorcycle engine works nearby", "small dogs growl, bark and yip."], "sample_ids": ["tOSWIURC-4", "sShpyu2l4YQ"], "start_seconds": ["0", "0"], "properties": ["engine, work, nearby", "growl, bark, yip"], "captions_pred_video": [null, "the puppies are playing with a toy"], "captions_pred_audio": ["a lawn mower is running ", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["sQGXqGcwOTc", "rqu8iB22IY"], "start_seconds": ["3", "5"], "properties": ["cling, speak, dishes", "sound, repeats, laugh"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a dog barks and a man speaks while music plays "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a man speaks as a machine runs", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vD6lYD1l0BY", "vbZ-0lGPneg"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "a woman, a television program, a bird"], "captions_pred_video": ["game controller being held in the hands of the person", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "people speak in a closed space"], "sample_ids": ["vYkA3cfXp5Q", "sTpirNYo8vQ"], "start_seconds": ["30", "30"], "properties": ["speed, idle, accelerate", "people, space, speak"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "of a man taking a selfie on a bus"], "captions_pred_audio": ["an engine is idling", "a man is speaking while a car is revving and accelerating "], "question": "which entity is stationary", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a child speaks in closed space"], "sample_ids": ["un9VQlzgZM", "yW6FWLSLkx4"], "start_seconds": ["5", "40"], "properties": ["wind, speak, laugh", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "waves crash against a shoreline and people speak"], "sample_ids": ["s59PfAghdkM", "yFB25fqfU8I"], "start_seconds": ["0", "300"], "properties": ["bird, chirp, background, horse, neigh", "wave, crash, shoreline"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "footage of a person surfing in the ocean"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["loud, continuous burping", "a toilet flushes and a female speaks"], "sample_ids": ["y636gklDioE", "yaln9y8I7ms"], "start_seconds": ["20", "230"], "properties": ["loud, continuous, burping", "female, flushes, toilet"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage is blurry and out of focus"], "captions_pred_audio": ["a person burps loudly several times", "a toilet flushes and a man speaks"], "question": "which entity is silent", "label": 1}, {"captions": ["water rushes by followed by a motorcycle zooming by in the distance", "some tunes played by whistling"], "sample_ids": ["s4Uz1Ffgo04", "u6BnG6YZqJ4"], "start_seconds": ["100", "0"], "properties": ["water, rushes, motorcycle", "tune, play, whistling"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tqR406bGiE", "vYkA3cfXp5Q"], "start_seconds": ["40", "30"], "properties": ["flush, water, gurgle", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a toilet is flushed", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "water is sprayed across a hard surface"], "sample_ids": ["vBHyYJ8pL0", "sQwlkXjQabo"], "start_seconds": ["2", "10"], "properties": ["noise, door, opening", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "an infant crying as a woman laughs"], "sample_ids": ["xjvTpk2Zpr8", "xhmRY9yhC7c"], "start_seconds": ["70", "20"], "properties": ["engine, run, wind", "a, laugh, infant"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "paper is crumpling consistently"], "sample_ids": ["v0x1odnXtP0", "v5cSxLaHADY"], "start_seconds": ["210", "0"], "properties": ["keyboard, type, computer", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a person is typing on a keyboard", "paper is crumpled and crinkled"], "question": "which object is crumpling", "label": 0}, {"captions": ["a few ducks quack and scamper and a man speaks", "a car speeding up in the distance"], "sample_ids": ["w2bYrCVLT60", "u0TrcHhkPQ"], "start_seconds": ["120", "20"], "properties": ["ducks, speak, quack", "distance, car, speed"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "water splashes as an animal walks through"], "sample_ids": ["x5cuQjOdM3E", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["cat, talk, meow", "animal, water, splashes"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a cat meows and a woman speaks", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vs65y4qmyBE", "vb1fPSDI4c"], "start_seconds": ["340", "30"], "properties": ["engine, run, man", "multiple, people, yell"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person whistles a meandering tune", "a duck quacks continuously"], "sample_ids": ["uFoga8sHpiw", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["person, tune, whistle", "quacks, continuously, duck"], "captions_pred_video": ["footage of a bird in a cage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person whistles a song", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["a consistent ticking pattern", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["sCeWURVHfOM", "tIY7qOV3rEM"], "start_seconds": ["30", "0"], "properties": ["ticking, pattern, clock", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["ticking of a clock", "a dog is barking and a cat is meowing"], "question": "which animal is barking", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "the clinking of a train bell with the humming of an engine and a train horn blowing"], "sample_ids": ["zFjIWfSD-4", "zgUgkpk78xU"], "start_seconds": ["410", "70"], "properties": ["People, motor, brakes", "clinking, humming, horn"], "captions_pred_video": [null, "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a train?", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a man speaks as a car is passing by"], "sample_ids": ["sShpyu2l4YQ", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["growl, bark, yip", "a, car, pass"], "captions_pred_video": ["the puppies are playing with a toy", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more passive", "label": 1}, {"captions": ["a male speaks and another male speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["viuTg1M-dqg", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["two males, speaking, male", "stream, water, flow"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane engine spools and people speak", "a person is burping then speaks and laughs"], "sample_ids": ["wTjoRj1se3U", "wAAkbZToh8"], "start_seconds": ["390", "0"], "properties": ["airplane, engine, spool", "burp, laugh, speak"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", null], "captions_pred_audio": ["a jet engine is running and people are talking", "a man burps and a woman speaks"], "question": "which entity is a person?", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "food is frying while a woman speaks"], "sample_ids": ["y4tPJXBKDig", "yhQ2Lg-7qDY"], "start_seconds": ["20", "130"], "properties": ["a, noise, talk", "food, woman, speak"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "a pan filled with meat and sauce being cooked on a stove top"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a faucet is running and a man is speaking"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "people applaud and hoot and chat quietly"], "sample_ids": ["yDoT73BWsdA", "wwyfGO2J4"], "start_seconds": ["10", "90"], "properties": ["engine revs, tires squeal, vehicle", "people, applaud, hoot"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "a vehicle engine accelerating then running on idle"], "sample_ids": ["yDoT73BWsdA", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["engine revs, tires squeal, vehicle", "engine, accelerate, idle"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["multiple people speak and children yell while water gurgles", "birds chirp and an owl hoots before a man speaks briefly"], "sample_ids": ["vb1fPSDI4c", "wRBHTgrbiwg"], "start_seconds": ["30", "50"], "properties": ["multiple, people, yell", "bird, owl, speak"], "captions_pred_video": [null, "of a bee pollinating the flowers in the field"], "captions_pred_audio": ["a crowd of people are talking and laughing", "birds are chirping and insects are buzzing"], "question": "which entity has more animals speaking", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["shmR4OZtzqA", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["man, engine, idle", "music, gunfire, explosion"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man speaks while a motor runs", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vzxHnu-SFEw", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["two objects, woman, speak", "three men, wind, flow"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a man speaks as bees buzz and birds chirp", "vehicles pass by on a roadway"], "sample_ids": ["t25U-v4k4ts", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["bees buzz, birds chirp, man speaks", "pass, vehicle, roadway"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "some men converse over an engine running"], "sample_ids": ["y8dSeubCNI", "sCiy7QS1U"], "start_seconds": ["4", "300"], "properties": ["engine revving, people speaking, motorcycle", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine revving and people talking in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a motorcycle?", "label": 0}, {"captions": ["plastic is tapped on while someone speaks", "a toilet flushes and a female speaks"], "sample_ids": ["wvKpEYswXO0", "yaln9y8I7ms"], "start_seconds": ["150", "230"], "properties": ["plastic, tap, speak", "female, flushes, toilet"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a wooden clack accompanies nearby chirping birds", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yeFvk9x0wWI", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["clack, bird, chirp", "two men, woman, birds"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", null], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uYT5gxnyMWM", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "stream, water, flow"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a child speaks in closed space"], "sample_ids": ["v0x1odnXtP0", "yW6FWLSLkx4"], "start_seconds": ["210", "40"], "properties": ["keyboard, type, computer", "child, space, speak"], "captions_pred_video": ["how to make money on youtube in spanish", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "a helicopter engine runs continuously"], "sample_ids": ["vlS6YMeWAPo", "ugHJF0hfYkg"], "start_seconds": ["40", "10"], "properties": ["noise, bleat, call", "engine, running, continuously"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a goat bleats and birds chirp", "a helicopter is flying overhead "], "question": "which entity is not a noise", "label": 1}, {"captions": ["an engine starts and increases in power", "an airplane engine spools and people speak"], "sample_ids": ["zjTG0gaGCUI", "wTjoRj1se3U"], "start_seconds": ["80", "390"], "properties": ["power, increase, engine", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a jet engine is running and people are talking"], "question": "which entity is a moving object", "label": 1}, {"captions": ["children cry and people talk", "a car speeding up in the distance"], "sample_ids": ["xLwHe825Zs", "u0TrcHhkPQ"], "start_seconds": ["18", "20"], "properties": ["people talk, children cry, people talk", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby cries and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a child speaks", "a toilet door squeaks as it is opened"], "sample_ids": ["yW6FWLSLkx4", "sdXV-ylviw"], "start_seconds": ["40", "190"], "properties": ["a, child, speaks", "door, toilet, squeaks"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", null], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a dog barks and taps with background noise "], "question": "which entity is quieter", "label": 1}, {"captions": ["a stream of water flows quickly", "an engine runs loudly"], "sample_ids": ["wbHTKEJZyhc", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["stream, water, flow", "loud, engine, run"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "dishes cling together then a man begins to speak"], "sample_ids": ["zofjfKhqLk8", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["background, metal, clank", "cling, speak, dishes"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "mechanisms are operating and water is splashing "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["material crumbles into a microphone", "an insect buzzes around continuously"], "sample_ids": ["vofpvUo6NAw", "v25l1jef3JY"], "start_seconds": ["220", "0"], "properties": ["material, crumbles, microphone", "buzzes, continuously, insect"], "captions_pred_video": ["person wrapping a toy car in a plastic bag", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["paper is being crumpled and crinkled", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a car speeding up in the distance"], "sample_ids": ["sfAvvZwdLCY", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["flushes, drains, water", "distance, car, speed"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wTideSjRFS0", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["food, sizzle, woman", "a, scream, girl"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking?", "label": 1}, {"captions": ["someone whistles a tune", "a duck quacks continuously"], "sample_ids": ["sIXTftIuUgw", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person whistling a song", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xvDdE3zNf8Y", "uZesmtKZGSw"], "start_seconds": ["120", "250"], "properties": ["a, female, speaks", "men, talk, cars"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a stream runs then someone speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["wbHTKEJZyhc", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["stream, run, someone", "people, applaud, hoot"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a clock ticktocks briefly", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["u7C-AEBQM", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["ticktocks, clock, ticktocks briefly", "two men, woman, birds"], "captions_pred_video": [null, null], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a clock?", "label": 0}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "people applaud and hoot and chat quietly"], "sample_ids": ["zgUgkpk78xU", "wwyfGO2J4"], "start_seconds": ["70", "90"], "properties": ["clinking, humming, horn", "people, applaud, hoot"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a cat meows as a young woman speaks"], "sample_ids": ["y2ZBGpgbhHM", "x5cuQjOdM3E"], "start_seconds": ["30", "30"], "properties": ["animal, growl, bird", "cat, meows, young woman"], "captions_pred_video": [null, "a black background with an airplane flying in the sky"], "captions_pred_audio": ["birds chirping and a dog panting", "a cat meows and a woman speaks"], "question": "which entity is more likely to be domesticated", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "small dogs yip and bark sharply"], "sample_ids": ["yswmmRZFItk", "v-wcQf4BDY0"], "start_seconds": ["0", "120"], "properties": ["background, frog, croak", "bark, yip, sharply"], "captions_pred_video": ["a close up of a frog in the water", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a frog is croaking", "a dog barks and growls"], "question": "which entity is more likely to be a frog", "label": 0}, {"captions": ["animals bleat and moo as a person speaks", "men speak and a nozzle sprays liquid"], "sample_ids": ["tPJvjq9QePY", "wRV8yMk886E"], "start_seconds": ["40", "0"], "properties": ["animal, bleat, moo", "liquid, spray, nozzle"], "captions_pred_video": ["a dog and a sheep in a barn", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["a baby cries and a man speaks", "a man speaks followed by a loud burst"], "question": "which entity is more likely to be used in a science class", "label": 1}, {"captions": ["a woman sneezes then speaks", "a heavy rain falls endlessly"], "sample_ids": ["x4dZyf9Gbj0", "wP8ZKrlx3oA"], "start_seconds": ["130", "40"], "properties": ["sneezes, speaks, woman", "heavy, rain, fall"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a woman sneezes and speaks", "a heavy rain is falling on a surface"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "wind blows as people chatter quietly"], "sample_ids": ["uYT5gxnyMWM", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["person, spray, yell", "wind, chatter, people"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a man speaks followed by another man speaking outside"], "sample_ids": ["vYkA3cfXp5Q", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, idle", "two men, speak, follow"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["an engine is idling", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of a vehicle engine accelerating then running on idle?", "label": 0}, {"captions": ["the wind blows while a vehicle engine runs", "water is sprayed across a hard surface"], "sample_ids": ["xyL9F5VrjkE", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["wind, blows, vehicle", "water, spray, surface"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sYITalLZjj4", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["water, rushes, background, birds", "music, gunfire, explosion"], "captions_pred_video": ["two ducks are swimming in the water near each other", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["wind blows and birds chirp", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sQGXqGcwOTc", "vJ7JPEFhyLA"], "start_seconds": ["3", "16"], "properties": ["cling, speak, dishes", "three men, wind, flow"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about liquid flowing?", "label": 1}, {"captions": ["a machine beeps continuously", "a dog barks and whimpers"], "sample_ids": ["y682ml90jGw", "sShpyu2l4YQ"], "start_seconds": ["11", "0"], "properties": ["beeps, machine, continuously", "barks, whimpers, dog"], "captions_pred_video": [null, "the puppies are playing with a toy"], "captions_pred_audio": ["a beeping sound is being made ", "a dog is barking and growling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "a child speaks in closed space"], "sample_ids": ["u7C-AEBQM", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["ticks, rhythmic, quiet", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "some men converse over an engine running"], "sample_ids": ["w34HjHr6gAY", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["beeps, squawk, child speaking", "men, converse, engine"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a video of a child speaking?", "label": 0}, {"captions": ["people cheer as a vehicle engine revs", "a child speaks in closed space"], "sample_ids": ["xjhAnI2q6hM", "yW6FWLSLkx4"], "start_seconds": ["6", "40"], "properties": ["engine revs, vehicle, people", "child, space, speak"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "wind blows as people chatter quietly"], "sample_ids": ["wwyfGO2J4", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["people, applaud, hoot", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tOj4tdLRaA", "uZesmtKZGSw"], "start_seconds": ["70", "250"], "properties": ["woman, laugh, baby", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a crowd yells, reacts and applauds", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wztCSUxOf8", "y8WEcpOlT3I"], "start_seconds": ["130", "40"], "properties": ["a crowd, yells, applauds", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man is speaking with wind noise in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["water flows followed by women screaming", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["w5W5Kqtc8E", "vzceMbklWc"], "start_seconds": ["100", "180"], "properties": ["water, flow, women", "water, faucet, sink"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "water is running and a man is speaking"], "question": "which entity shows water flowing?", "label": 0}, {"captions": ["wind blows and people scream while an engine revs", "a duck quacks continuously"], "sample_ids": ["w5W5Kqtc8E", "vh30P49Po6s"], "start_seconds": ["100", "30"], "properties": ["wind, engine, scream", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a man speaks while rain falls onto a hard surface"], "sample_ids": ["w5W5Kqtc8E", "wqN6IIHw3po"], "start_seconds": ["100", "30"], "properties": ["water, splashes, motorboat", "rain, surface, fall"], "captions_pred_video": [null, "in your own words what is happening in this screenshot? blood splattered all over the place"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and water is splashing"], "question": "which entity is a video of rain falling?", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "three men talk while wind blows and some liquid flows"], "sample_ids": ["smGI3C1NZc", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["water, drain, toilet", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 0}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a male speaks and another male speaks"], "sample_ids": ["sLUnaPT5gM8", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "two males, speaking, male"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a pigeon cooing as an insect buzzes by briefly"], "sample_ids": ["zj2R0XoFr5k", "yZrFNS7GFBQ"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, woman", "pigeon, buzzes, insect"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of the bird in the cage"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "an owl hoots in the background "], "question": "which entity is a bird?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "water pouring and bubbling"], "sample_ids": ["yPUYU6t3rwo", "uyRfq-jKPpo"], "start_seconds": ["370", "50"], "properties": ["birds chirp, objects are moved around, birds", "water, bubbles, pouring"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["insects buzz and a man speaks", "water is running from a faucet"], "question": "which entity is more likely to be in a bathroom", "label": 1}, {"captions": ["a infant makes noise and is excited", "an infant crying frantically"], "sample_ids": ["wIJK3-5y0kA", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["noise, excited, infant", "cry, infant, frantically"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of the baby crying in the car seat"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries loudly"], "question": "which infant is crying frantically", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "waves crash against a shoreline and people speak"], "sample_ids": ["yeFvk9x0wWI", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["chirp, twitter, clatter", "wave, crash, shoreline"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "footage of a person surfing in the ocean"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["smGI3C1NZc", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["water, drain, toilet", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "pigeons vocalize and birds chirp"], "sample_ids": ["xfudFO976zE", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["animal, bleats, cry", "vocalize, bird, chirp"], "captions_pred_video": ["footage is blurry and shaky", "of the pigeon in the cage"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a man is speaking and a bee is buzzing"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["a dog barks and whimpers", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sShpyu2l4YQ", "sLUnaPT5gM8"], "start_seconds": ["0", "0"], "properties": ["barks, whimpers, dog", "loud, laughter, intermittent"], "captions_pred_video": ["the puppies are playing with a toy", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a dog is barking and growling", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an aircraft engine runs as people speak", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["wTjoRj1se3U", "rwtmaKiCcQU"], "start_seconds": ["390", "30"], "properties": ["engine, run, people", "nozzle, depressed, spray can"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["a jet engine is running and people are talking", "spraying and people speaking"], "question": "which entity is a spray can?", "label": 1}, {"captions": ["a propeller rotates loudly and intensely", "a vehicle engine accelerating then running on idle"], "sample_ids": ["ugHJF0hfYkg", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["loud, intense, propeller", "engine, accelerate, idle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a helicopter is flying overhead ", "an engine is idling"], "question": "which is a vehicle", "label": 1}, {"captions": ["a person speaks briefly", "several insects fly while two men talk"], "sample_ids": ["zOZleIRqZm4", "s-T9OVOiMLo"], "start_seconds": ["80", "330"], "properties": ["person, talk, brief", "several, fly, men"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be a video", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sLUnaPT5gM8", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["loud, laughter, intermittent", "a woman, something, fried"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "winds blows roughly as a vehicle races past"], "sample_ids": ["w8uLijTqtlU", "xjvTpk2Zpr8"], "start_seconds": ["70", "70"], "properties": ["wind, microphone, noise", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry and shaky", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["the wind is blowing strongly", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["tdWhHV3X25Q", "ukg5L09Wpvo"], "start_seconds": ["60", "150"], "properties": ["applause, audience, yells", "clickety-clack, train, whistle"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yYEVLuqEytU", "ukg5L09Wpvo"], "start_seconds": ["40", "150"], "properties": ["animal, pig, background", "clickety-clack, train, whistle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a train horn sounds and railroad crossing ring", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["s7knHCFW82w", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["horn, sound, train", "engine, idle, woman"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a clock ticktocks"], "sample_ids": ["vs65y4qmyBE", "v-g-j2uTByM"], "start_seconds": ["340", "30"], "properties": ["wind, blows, strongly", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "vehicles pass by on a roadway"], "sample_ids": ["vMf1dLD6Sng", "tgbONvsP47Y"], "start_seconds": ["6", "0"], "properties": ["frog, bird, vocalize", "pass, vehicle, roadway"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a frog croaks loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "paper folding and crinkling"], "sample_ids": ["wudZTNBtVqc", "zPpG3RD8lSs"], "start_seconds": ["60", "20"], "properties": ["accelerates, engine, wind", "paper, fold, crinkle"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a car accelerates and revs its engine ", "the wind blows and a mouse clicks "], "question": "which entity is stationary", "label": 1}, {"captions": ["a goat screams and people speak in the background", "a man speaks as a car is passing by"], "sample_ids": ["xC8kbrKJmco", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["background, goat, scream", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a goat is bleating ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "waves crash against a shoreline and people speak"], "sample_ids": ["yDoT73BWsdA", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["engine revs, tires squeal, vehicle", "wave, crash, shoreline"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["someone snores nearby", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["spJCm8tD9Zo", "vbZ-0lGPneg"], "start_seconds": ["90", "30"], "properties": ["someone snores, nearby, someone", "a woman, a television program, a bird"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "vehicles pass by on a roadway"], "sample_ids": ["wvKpEYswXO0", "tgbONvsP47Y"], "start_seconds": ["150", "0"], "properties": ["plastic, tap, speak", "pass, vehicle, roadway"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["xM4joTqDVp4", "vlS6YMeWAPo"], "start_seconds": ["160", "40"], "properties": ["background, chirp, birds", "sheep, baa, birds"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a goat bleats and birds chirp"], "question": "which entity has more birds", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["y2ZBGpgbhHM", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["birds, tweet, pant", "clickety-clack, train, whistle"], "captions_pred_video": [null, "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["birds chirping and a dog panting", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "an engine runs loudly"], "sample_ids": ["vms5XGTDVQc", "vqZuVbG6-HI"], "start_seconds": ["220", "130"], "properties": ["paper, crumpled, crinkled", "loud, engine, run"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage is blurry because it's raining outside"], "captions_pred_audio": ["paper is crumpled and crinkled", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["u21-Z5gJCB8", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["background, voice, man", "roars, background, people speaking"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yLy-WycbVVE", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["background, people, talk", "female, spraying, scream"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "pigeons vocalize and birds chirp"], "sample_ids": ["u21-Z5gJCB8", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["background, voice, man", "vocalize, bird, chirp"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a stream of water runs briefly"], "sample_ids": ["yYEVLuqEytU", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["animal, pig, background", "stream, water, run"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a helicopter engine runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["t5ZbXbniOWk", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["engine, helicopter, run", "water, radio, man"], "captions_pred_video": ["the image is loading a screenshot of the game flight simulator 2004 on nintendo gamecube", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a helicopter?", "label": 1}, {"captions": ["an insect buzzes around continuously", "some men converse over an engine running"], "sample_ids": ["v25l1jef3JY", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["buzzes, continuously, insect", "men, converse, engine"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is not a person?", "label": 0}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["w2JXXIAdUdg", "w34HjHr6gAY"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "beeps, hit, woman"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "some tunes played by whistling"], "sample_ids": ["se87d6yxEOA", "u6BnG6YZqJ4"], "start_seconds": ["10", "0"], "properties": ["run, whistle, pass", "tune, play, whistling"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vddP56-ogds", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["water, splash, person, laugh", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a consistent ticking pattern", "birds chirp and objects are moved around"], "sample_ids": ["sCeWURVHfOM", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["ticking, pattern, clock", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["- a close-up view of the clock's inner workings", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["ticking of a clock", "insects buzz and a man speaks"], "question": "which entity is more like a clock", "label": 0}, {"captions": ["someone sprays liquid onto a hard surface", "an insect buzzes around continuously"], "sample_ids": ["sQwlkXjQabo", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["liquid, surface, spray", "buzzes, continuously, insect"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["spraying followed by silence", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a stream of water runs briefly", "people speak as gunfire rings out"], "sample_ids": ["x-PeY8Yb8M4", "wqTCwqVRDlk"], "start_seconds": ["300", "80"], "properties": ["stream, water, run", "gunfire, ring, speak"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car is driving on a wet road ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xjhAnI2q6hM", "zl9Dqx-j7q4"], "start_seconds": ["6", "6"], "properties": ["engine revs, vehicle, people", "engine, laugh, loud"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a jet engine roars "], "question": "which entity is about a vehicle engine?", "label": 0}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xKB8O8LTs6s", "wqZ135Ssz0"], "start_seconds": ["70", "60"], "properties": ["music, radio, gunshots", "two men, woman, birds"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "paper is crumpling consistently"], "sample_ids": ["vcmWSmvti8", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["music, man, fire", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "paper is crumpled and crinkled"], "question": "which entity is not a video of a man speaking as music plays before artillery is fired?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sxYkFKFIZD0", "yDoT73BWsdA"], "start_seconds": ["20", "10"], "properties": ["screech, man, door", "engine, revs, vehicle"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a race car accelerates and revs its engine "], "question": "which vehicle is moving", "label": 1}, {"captions": ["birds chirp and objects are moved around", "vehicles pass by on a roadway"], "sample_ids": ["yPUYU6t3rwo", "tgbONvsP47Y"], "start_seconds": ["370", "0"], "properties": ["birds chirp, objects are moved around, birds", "pass, vehicle, roadway"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "footage of a fire truck entering a garage"], "captions_pred_audio": ["insects buzz and a man speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "a man speaks as a car is passing by"], "sample_ids": ["vcmWSmvti8", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a man speaking as a car passes by?", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "dishes cling together then a man begins to speak"], "sample_ids": ["ziUT9IFTkjg", "sQGXqGcwOTc"], "start_seconds": ["10", "3"], "properties": ["background, birds, rustling", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["y4tPJXBKDig", "siJFXfGWgDk"], "start_seconds": ["20", "50"], "properties": ["a, noise, talk", "man, woman, vehicle"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a man and a woman speaking?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "people speak as gunfire rings out"], "sample_ids": ["xV7Mg1QucSc", "wqTCwqVRDlk"], "start_seconds": ["14", "80"], "properties": ["alarm, ticktocks, laughs", "gunfire, ring, speak"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["ul60S8TXDA8", "tiDFTC-5vU"], "start_seconds": ["60", "30"], "properties": ["sound, distance, bell", "male, duck, laugh"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", null], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["a man speaks as a car is passing by", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sK4u5T8hW78", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["a, car, pass", "music, gunfire, explosion"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["yYEVLuqEytU", "xjvTpk2Zpr8"], "start_seconds": ["40", "70"], "properties": ["grunt, slurp, background", "wind, blows, vehicle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a baby laugh at a sputter", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sLUnaPT5gM8", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["laugh, sputter, baby", "animal, grunts, snorts"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "an airplane engine spools and people speak"], "sample_ids": ["slZLHwNbbt4", "wTjoRj1se3U"], "start_seconds": ["300", "390"], "properties": ["a, horn, run", "airplane, engine, spool"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a jet engine is running and people are talking"], "question": "which entity is a machine", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a man speaks as a motor runs in the background"], "sample_ids": ["y2ZBGpgbhHM", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["birds, tweet, pant", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["birds chirping and a dog panting", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "a toilet flushes and a female speaks"], "sample_ids": ["vYkA3cfXp5Q", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["speed, idle, accelerate", "female, flushes, toilet"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage is blurry and out of focus"], "captions_pred_audio": ["an engine is idling", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "water pouring and bubbling"], "sample_ids": ["u--KhUW8l1Y", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["engine, sound, horn", "water, bubbles, pouring"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ukg5L09Wpvo", "w5W5Kqtc8E"], "start_seconds": ["150", "100"], "properties": ["a train, a horn, a bell", "wind, blow, vehicle"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["yajyRTUQk3U", "sapQIQUhFc"], "start_seconds": ["400", "280"], "properties": ["a woman, something, fried", "liquid, flow, distance"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking and a stream is flowing in the background "], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["a person whistles and clicks a mouse", "continuous snoring"], "sample_ids": ["zCrAfDfv6-A", "sLkeqCDJIyw"], "start_seconds": ["30", "120"], "properties": ["person, mouse, click", "loud, snoring, noise"], "captions_pred_video": ["shows a man with glasses and a green shirt sitting on a couch in a living room", ", what is the man doing on the couch? sleeping"], "captions_pred_audio": ["a person whistles a song", "a person is snoring loudly"], "question": "which noise is louder", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a car accelerates and wind blows"], "sample_ids": ["ul60S8TXDA8", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["sound, distance, bell", "accelerates, wind, blows"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", null], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "water rushes and then a vehicle zooms past"], "sample_ids": ["vzxHnu-SFEw", "s4Uz1Ffgo04"], "start_seconds": ["80", "100"], "properties": ["two objects, woman, speak", "water, rushes, vehicle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is more active", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zofjfKhqLk8", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "multiple, people, yell"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a crowd of people are talking and laughing"], "question": "which entity has a lot of noise", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "pigeons vocalize and birds chirp"], "sample_ids": ["smGI3C1NZc", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["water, drain, toilet", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "some light rustling followed by a loud burp and a girl speaking"], "sample_ids": ["wy1eKjR7KC0", "vdoxuJn9lTc"], "start_seconds": ["30", "40"], "properties": ["people, talk, distance", "burp, loud, girl"], "captions_pred_video": ["two police officers riding motorcycles down the street", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a child speaks followed by a burp"], "question": "which entity is quieter", "label": 0}, {"captions": ["a drill drills through something then people begin laughing", "water running down a sink while a man is talking"], "sample_ids": ["tEE3MpBt1sg", "vSeGhaZt-aI"], "start_seconds": ["50", "50"], "properties": ["drill, something, laugh", "water, sink, talk"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a video of water running down a sink?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["sU53zg9Jp7s", "ziUT9IFTkjg"], "start_seconds": ["380", "10"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "background, birds, rustling"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "birds are chirping and a chime is ringing "], "question": "which entity has a doorbell ringing?", "label": 0}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "pigeons vocalize and birds chirp"], "sample_ids": ["uC9dtII1KDI", "uiS58TNyUiw"], "start_seconds": ["150", "430"], "properties": ["wind, gusts, distance", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a saw finishes running as metal clings in the background", "people speak as gunfire rings out"], "sample_ids": ["zofjfKhqLk8", "wqTCwqVRDlk"], "start_seconds": ["10", "80"], "properties": ["background, metal, clings", "gunfire, ring, speak"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wtDqrBygTcU", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["man, engine, run", "multiple, people, yell"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", null], "captions_pred_audio": ["a man is speaking and a motor is running", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "wind blows as people chatter quietly"], "sample_ids": ["yVumC9TGknc", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["humming, clock, birds", "wind, chatter, people"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage is blurry and out of focus"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a stream of water flows as people talk and wind blows"], "sample_ids": ["wqN6IIHw3po", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "stream, water, flow"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking with wind noise in the background "], "question": "which entity is flowing", "label": 1}, {"captions": ["a stream of water flows quickly", "wind blows as people chatter quietly"], "sample_ids": ["wbHTKEJZyhc", "xBxDz0CFVn0"], "start_seconds": ["20", "30"], "properties": ["stream, water, flow", "wind, chatter, people"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage is blurry and out of focus"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is moving more slowly", "label": 1}, {"captions": ["a soft wind underscores a woman laughing", "a duck quacks continuously"], "sample_ids": ["s6DESzUTGjY", "vh30P49Po6s"], "start_seconds": ["16", "30"], "properties": ["wind, laugh, woman", "quacks, continuously, duck"], "captions_pred_video": ["how to set up an aquarium in 10 easy steps youtube youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aquarium in 10 easy steps youtube how to set up an aqu", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a motorboat is moving with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a man speaks as a motor runs in the background"], "sample_ids": ["w2M4i1mklOA", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "background, motor, run"], "captions_pred_video": ["footage of an antique clock", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 1}, {"captions": ["scraping and female speech with distant music", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["yHeVV-xeOxQ", "y2bVZ7rz-5M"], "start_seconds": ["130", "280"], "properties": ["female, speech, music", "motor noise, horn, siren"], "captions_pred_video": ["of a girl milking a goat's udder", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "people applaud and hoot and chat quietly"], "sample_ids": ["zO-LSSY92ZM", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["liquid, surface, sound", "people, applaud, hoot"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", null], "captions_pred_audio": ["steam is hissing and hissing", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an engine runs and a man speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yT5WfYMRr-U", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["engine, run, man", "a woman, a television program, a bird"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["people speak as gunfire rings out", "water flows and trickles"], "sample_ids": ["wqTCwqVRDlk", "tB7hWb9gTuQ"], "start_seconds": ["80", "30"], "properties": ["gunfire, ring, speak", "water, flow, trickle"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a gun is fired", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an infant crying as a woman laughs", "paper is crumpling consistently"], "sample_ids": ["xhmRY9yhC7c", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["a, laugh, infant", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a baby crying in a baby bouncer", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a baby cries and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["someone snores nearby", "someone is burping continuously"], "sample_ids": ["spJCm8tD9Zo", "y636gklDioE"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "burps, burps, burps"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a person is snoring loudly", "a person burps loudly several times"], "question": "which entity is more annoying", "label": 1}, {"captions": ["a person is whistling", "winds blows roughly as a vehicle races past"], "sample_ids": ["sIXTftIuUgw", "xjvTpk2Zpr8"], "start_seconds": ["90", "70"], "properties": ["person, whistling, person", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a person whistling a song", "a jet engine roars and wind blows "], "question": "which entity is a person", "label": 0}, {"captions": ["continuous snoring", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sLkeqCDJIyw", "wDVMhEdTiVw"], "start_seconds": ["120", "30"], "properties": ["loud, snoring, noise", "gun, shoot, water"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a person is snoring loudly", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "dishes cling together then a man begins to speak"], "sample_ids": ["uC9dtII1KDI", "sQGXqGcwOTc"], "start_seconds": ["150", "3"], "properties": ["wind, gusts, distance", "cling, speak, dishes"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman speaking in the distance?", "label": 0}, {"captions": ["paper is repeatedly crumpled and crinkled", "a man speaks followed by another man speaking outside"], "sample_ids": ["vms5XGTDVQc", "viuTg1M-dqg"], "start_seconds": ["220", "30"], "properties": ["paper, crumpled, crinkled", "two men, speak, follow"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["paper is crumpled and crinkled", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "an airplane engine spools and people speak"], "sample_ids": ["vs65y4qmyBE", "wTjoRj1se3U"], "start_seconds": ["340", "390"], "properties": ["engine, run, man", "airplane, engine, spool"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a jet engine is running and people are talking"], "question": "which entity is a machine?", "label": 0}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a horn rings out as a machine runs by"], "sample_ids": ["t69a8aRKhmc", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["a, b, c", "a, horn, run"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity has a horn?", "label": 1}, {"captions": ["birds vocalize and a man speaks", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["v0wPrLBI3hg", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["vocalize, bird, speak", "gun, shoot, water"], "captions_pred_video": ["footage of the pigeons feeding on the ground", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["pigeons coo and flap wings while a man speaks ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "people cheer as a vehicle engine revs"], "sample_ids": ["uYT5gxnyMWM", "xjhAnI2q6hM"], "start_seconds": ["50", "6"], "properties": ["female, spraying, scream", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a person sniffs and sneezes", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["uRlbY6aoBU", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["sneezes, person, sniffs", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a man is speaking and ducks are quacking"], "question": "which entity is a person", "label": 0}, {"captions": ["a man talks while a clock does ticktock", "vehicles pass by on a roadway"], "sample_ids": ["spYNpeN7rPY", "tgbONvsP47Y"], "start_seconds": ["1", "0"], "properties": ["a clock, ticktock, man", "pass, vehicle, roadway"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a man speaks followed by another man speaking outside"], "sample_ids": ["sfAvvZwdLCY", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "two men, speak, follow"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["yYJksgsxx5U", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["audio, woman, silverware", "People, motor, brakes"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", null], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a woman speaking over chopping and silverware noises?", "label": 0}, {"captions": ["someone snores nearby", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["spJCm8tD9Zo", "yajyRTUQk3U"], "start_seconds": ["90", "400"], "properties": ["someone snores, nearby, someone", "a woman, something, fried"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tDlysoZiA1I", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["animal, grunt, multiple", "applause, audience, yells"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "a horse runs while two women talk"], "sample_ids": ["s3cTDAj31g", "sdvI1mHAsc"], "start_seconds": ["80", "20"], "properties": ["man, talk, woman", "two women, horse, run"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a baby is crying", "horses clip-clop and a woman speaks"], "question": "which entity has more people", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "a child speaks in closed space"], "sample_ids": ["vBslzh7saPw", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["engine, roar, louder", "child, space, speak"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["vZAw4apG0Es", "tDlysoZiA1I"], "start_seconds": ["30", "0"], "properties": ["background, clock, ticktocks", "animal, grunts, chirps"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a clock is ticking and people are talking", "birds are chirping and a rooster is crowing "], "question": "which entity is more animal like", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xfudFO976zE", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["animal, bleats, cry", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and shaky", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zdYdyF9-m8U", "yDoT73BWsdA"], "start_seconds": ["7", "10"], "properties": ["wind, crash, shoreline", "engine, revs, vehicle"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["waves crash and wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is stationary", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["y8WEcpOlT3I", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["harsh, wind, blows", "three men, wind, flow"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a man speaks as horns blow", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["tHyNqRyK34A", "wqZ135Ssz0"], "start_seconds": ["24", "60"], "properties": ["a, man, speaks", "two men, woman, birds"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", null], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vddP56-ogds", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["water, flow, laugh", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["w34HjHr6gAY", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["beeps, squawk, child speaking", "motor noise, horn, siren"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["uoGVs9yUqY4", "yDoT73BWsdA"], "start_seconds": ["30", "10"], "properties": ["multiple, vocalize, wind", "engine, revs, vehicle"], "captions_pred_video": ["for how to make a wooden shed door youtube", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["y8WEcpOlT3I", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["harsh, wind, blows", "background, motor, run"], "captions_pred_video": ["on how to use a sewing machine youtube", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["bees buzz and wind blows", "a child speaks in closed space"], "sample_ids": ["tMJne1a4AFI", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["bees buzz, wind blows, bees", "child, space, speak"], "captions_pred_video": ["a swarm of bees on the ground", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["motors runs briefly and tires screech", "wind blowing followed by a zoom"], "sample_ids": ["yRx9txMcBl0", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["motors, tires, screech", "wind, blow, zoom"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a car is revving its engine and skidding ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom?", "label": 1}, {"captions": ["a rumbling clap in the distance followed by a horn and the rumbling grows louder", "a clock ticktocks"], "sample_ids": ["slZLHwNbbt4", "v-g-j2uTByM"], "start_seconds": ["300", "30"], "properties": ["clap, distance, horn", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["birds chirp in the background while a horse neighs followed by a girl speaking", "water flows and trickles"], "sample_ids": ["s59PfAghdkM", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["bird, chirp, background, horse, neigh", "water, flow, trickle"], "captions_pred_video": ["is an anime scene featuring two people and a horse in the foreground and a fence in the background", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["birds are chirping a horse is neighing and a woman is speaking ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a toilet flushes and water sputters as it drains", "a propeller rotates loudly and intensely"], "sample_ids": ["smGI3C1NZc", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["water, drain, toilet", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a toilet is flushed", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["someone is burping continuously", "multiple people speak and children yell while water gurgles"], "sample_ids": ["y636gklDioE", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["burps, burps, burps", "multiple, people, yell"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", null], "captions_pred_audio": ["a person burps loudly several times", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vqZuVbG6-HI", "y8WEcpOlT3I"], "start_seconds": ["130", "40"], "properties": ["background, male, female", "harsh, wind, blows"], "captions_pred_video": ["footage is blurry because it's raining outside", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking with wind noise in the background "], "question": "which entity has a harsh wind blowing?", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "females talk and laugh over gusting wind"], "sample_ids": ["xvDdE3zNf8Y", "un9VQlzgZM"], "start_seconds": ["120", "5"], "properties": ["A, crumple, paper", "females, talk, laugh"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is a group of people", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vlS6YMeWAPo", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["sheep, baa, birds", "applause, audience, yells"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a goat bleats and birds chirp", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a man speaks as a car is passing by"], "sample_ids": ["u--KhUW8l1Y", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["horn, siren, life", "a, car, pass"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["tQWGZLItBXk", "y8WEcpOlT3I"], "start_seconds": ["170", "40"], "properties": ["music, person, ding", "harsh, wind, blows"], "captions_pred_video": ["worms revolution screenshots", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a man is speaking with wind noise in the background "], "question": "which entity has a harsh wind blowing?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "small dogs yip and bark sharply"], "sample_ids": ["sa6TLVbooCc", "v-wcQf4BDY0"], "start_seconds": ["240", "120"], "properties": ["people, laugh, child", "bark, yip, sharply"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["y2ZBGpgbhHM", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["animal, growl, bird", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["birds chirping and a dog panting", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a duck quacks continuously"], "sample_ids": ["xKB8O8LTs6s", "vh30P49Po6s"], "start_seconds": ["70", "30"], "properties": ["music, gunfire, explosion", "quacks, continuously, duck"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a duck is quacking loudly"], "question": "which entity is a duck?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["rqfQRErjfk8", "yajyRTUQk3U"], "start_seconds": ["170", "400"], "properties": ["crowd, cheers, applauds", "a woman, something, fried"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a woman is speaking while food is frying in the background"], "question": "which entity is a demonstration of cooking?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["zl9Dqx-j7q4", "uOpoD0gGXcs"], "start_seconds": ["6", "120"], "properties": ["motors rev, laugh, loudly", "chirps, woman, bird"], "captions_pred_video": ["footage of a man driving a car in the dark", "a herd of cows grazing in the field"], "captions_pred_audio": ["a jet engine roars ", "birds are chirping and a man is speaking"], "question": "which entity is a response to a human action", "label": 1}, {"captions": ["an airplane flies overhead as a woman speaks", "water pouring and bubbling"], "sample_ids": ["zj2R0XoFr5k", "uyRfq-jKPpo"], "start_seconds": ["50", "50"], "properties": ["airplane, fly, overhead", "water, bubbles, pouring"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a clock ticktocks"], "sample_ids": ["zgUgkpk78xU", "v-g-j2uTByM"], "start_seconds": ["70", "30"], "properties": ["clinking, humming, horn", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "vehicles pass by on a roadway"], "sample_ids": ["zY3icUyMdh8", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["dog, bark, engine", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a car is driving on the road "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zTLVJCo4WEE", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "male, duck, laugh"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking?", "label": 1}, {"captions": ["an engine starts and increases in power", "roadway noise occurs and a truck accelerates"], "sample_ids": ["zjTG0gaGCUI", "tgbONvsP47Y"], "start_seconds": ["80", "0"], "properties": ["power, increase, engine", "noise, truck, accelerate"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "a motor slows to a stopover traffic noises"], "sample_ids": ["zcDwZ6W7E3E", "zofjfKhqLk8"], "start_seconds": ["180", "10"], "properties": ["man, speak, motorcycles", "noise, stop, motor"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a large engine is running and a bell is ringing"], "question": "which is a stopover", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a telephone rings followed by a woman talking"], "sample_ids": ["vzxHnu-SFEw", "tGcFnX0GHI"], "start_seconds": ["80", "0"], "properties": ["two objects, woman, speak", "ring, talk, woman"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["a man talks while vehicles pass by", "small dogs yip and bark sharply"], "sample_ids": ["sK4u5T8hW78", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["a, man, talk", "bark, yip, sharply"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uEU-Hg5MTN8", "wDVMhEdTiVw"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "gun, shoot, water"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause injury", "label": 1}, {"captions": ["paper folding and crinkling", "a child speaks in closed space"], "sample_ids": ["zPpG3RD8lSs", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["paper, fold, crinkle", "child, space, speak"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is not a child?", "label": 0}, {"captions": ["some men converse over an engine running", "someone is typing on a computer keyboard"], "sample_ids": ["sCiy7QS1U", "v0x1odnXtP0"], "start_seconds": ["300", "210"], "properties": ["men, converse, engine", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a person is typing on a keyboard"], "question": "which is a more active activity", "label": 0}, {"captions": ["a kid speaks followed by music playing", "a large crowd cheers and applauds"], "sample_ids": ["tQWGZLItBXk", "rqfQRErjfk8"], "start_seconds": ["170", "170"], "properties": ["music, kid, speak", "crowd, cheers, applauds"], "captions_pred_video": ["worms revolution screenshots", "a man hugging another man in front of an orchestra"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a crowd of people clapping and cheering"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tOj4tdLRaA", "su6FAOcOA8c"], "start_seconds": ["70", "4"], "properties": ["woman, laugh, baby", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking and a subway train is moving "], "question": "which woman is speaking", "label": 1}, {"captions": ["a child speaks in closed space", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["yW6FWLSLkx4", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["child, space, speak", "a, scream, girl"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is a girl?", "label": 1}, {"captions": ["children cry and people talk", "music plays, a person speaks, followed by whooshes and a ding"], "sample_ids": ["xLwHe825Zs", "tQWGZLItBXk"], "start_seconds": ["18", "170"], "properties": ["people talk, children cry, people talk", "music, person, ding"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["a baby cries and a woman speaks", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a person speaking?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "wind blows as people chatter quietly"], "sample_ids": ["x6ijhqRY38s", "xBxDz0CFVn0"], "start_seconds": ["250", "30"], "properties": ["bowl, silverware, man", "wind, chatter, people"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["food is frying then a woman speaks", "a man woman speak while crickets sing"], "sample_ids": ["ukxt9I7eMMg", "zTLVJCo4WEE"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "a, crickets, sing"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman speaks and crickets chirp"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a toilet flushes and a female speaks"], "sample_ids": ["tDlfY3nmx1A", "yaln9y8I7ms"], "start_seconds": ["160", "230"], "properties": ["applause, laugh, man", "female, flushes, toilet"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage is blurry and out of focus"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a toilet flushes and a man speaks"], "question": "which entity is a video of a toilet flushing?", "label": 1}, {"captions": ["a rumble grows louder", "a stream of water runs briefly"], "sample_ids": ["y4MY9mp8-TA", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["loudness, increase, rumble", "stream, water, run"], "captions_pred_video": ["a helicopter flying in the sky", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a helicopter flies overhead ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a person whistles a meandering tune"], "sample_ids": ["t25U-v4k4ts", "uFoga8sHpiw"], "start_seconds": ["40", "90"], "properties": ["bees buzz, birds chirp, man speaks", "person, tune, whistle"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a bird in a cage"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a person whistles a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "waves crash against a shoreline and people speak"], "sample_ids": ["tjmoSi330GM", "yFB25fqfU8I"], "start_seconds": ["23", "300"], "properties": ["speed, water, boat", "wave, crash, shoreline"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is moving slower", "label": 0}, {"captions": ["birds chirp and an insect buzzes around", "several insects fly while two men talk"], "sample_ids": ["t97k0cejSQE", "s-T9OVOiMLo"], "start_seconds": ["250", "330"], "properties": ["bird, chirp, insect", "several, fly, men"], "captions_pred_video": ["a bee on a purple thistle flower", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "a man speaks as a motor runs in the background"], "sample_ids": ["sHbXC6na9hg", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["a person, saw, wood", "background, motor, run"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an engine is idling and vibrating", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["an airplane engine runs", "a duck quacks continuously"], "sample_ids": ["yVPZ2MNWpms", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "quacks, continuously, duck"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a car is driving by on the road ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "plastic is tapped on while someone speaks"], "sample_ids": ["xO-Q2BlIIPU", "wvKpEYswXO0"], "start_seconds": ["30", "150"], "properties": ["two men, exclamation, speak", "plastic, tap, speak"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is about a man speaking to another man?", "label": 0}, {"captions": ["a woman speaks in a fast tone with a male", "a stream of water flows as people talk and wind blows"], "sample_ids": ["sTpirNYo8vQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, tone, fast", "stream, water, flow"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a male speaks over some small clicks", "a telephone rings followed by a woman talking"], "sample_ids": ["uXxVebHsGZ8", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["male, clicks, speak", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "some men converse over an engine running"], "sample_ids": ["shmR4OZtzqA", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["man, engine, idle", "men, converse, engine"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", null], "captions_pred_audio": ["a man speaks while a motor runs", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows a man speaking as a vehicle engine idles?", "label": 0}, {"captions": ["a person screams glaringly", "a train horn blows as it passes by"], "sample_ids": ["xC8kbrKJmco", "zVacuqSb4LI"], "start_seconds": ["0", "30"], "properties": ["glaringly, screams, person", "horn, blows, train"], "captions_pred_video": [null, "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a goat is bleating ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows strongly", "waves crash against a shoreline and people speak"], "sample_ids": ["w8uLijTqtlU", "yFB25fqfU8I"], "start_seconds": ["70", "300"], "properties": ["wind, blows, strongly", "wave, crash, shoreline"], "captions_pred_video": ["footage is blurry and shaky", "footage of a person surfing in the ocean"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more powerful", "label": 1}, {"captions": ["bees buzz and wind blows", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tMJne1a4AFI", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["bees buzz, wind blows, bees", "men, talk, cars"], "captions_pred_video": ["a swarm of bees on the ground", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vb1fPSDI4c", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a weapon fires multiple times", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sMC07Ucy7kg", "zFjIWfSD-4"], "start_seconds": ["10", "410"], "properties": ["weapon, fire, multiple", "People, motor, brakes"], "captions_pred_video": ["footage is from a car's point of view", null], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "an engine runs loudly"], "sample_ids": ["wnpJndXuxLc", "vqZuVbG6-HI"], "start_seconds": ["50", "130"], "properties": ["blows, vehicle, train", "loud, engine, run"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a lawn mower is running and men are speaking "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tw76HGONaKg", "uZesmtKZGSw"], "start_seconds": ["570", "250"], "properties": ["music, click, man", "men, talk, cars"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["goats bleat and metal clings", "pigeons vocalize and birds chirp"], "sample_ids": ["tH17JPjDPnc", "uiS58TNyUiw"], "start_seconds": ["260", "430"], "properties": ["bleat, metal, clings", "vocalize, bird, chirp"], "captions_pred_video": ["feed of the goats eating hay in the barn", "of the pigeon in the cage"], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking and a bee is buzzing"], "question": "which animal is vocalizing", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a woman talks while a baby cries and a man whispers"], "sample_ids": ["sG7TyPnFDR0", "smDKStoHBJo"], "start_seconds": ["180", "0"], "properties": ["beeps, machine, smoke alarm", "a, talk, baby, cry"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "a man holding a crying baby in his arms"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a baby is crying and a woman is speaking"], "question": "which entity has a baby?", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a man speaks as a car is passing by"], "sample_ids": ["vZAw4apG0Es", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["background, tick, repeat", "a, car, pass"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a moving object", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "long loud burping by a man"], "sample_ids": ["uzQnlJXBbOM", "xmiUIOhtZyQ"], "start_seconds": ["50", "60"], "properties": ["ringing, beep, stop", "loud, burp, man"], "captions_pred_video": ["footage of a person using a cell phone on a table", "homer simpson drinking a beer"], "captions_pred_audio": ["a telephone rings and a man speaks", "a person burps and music plays in the background "], "question": "which is louder", "label": 1}, {"captions": ["someone sprays a liquid onto a hard surface making a hiss sound", "a person snores loudly multiple times at a close distance"], "sample_ids": ["zO-LSSY92ZM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["liquid, surface, sound", "loud, multiple, distance"], "captions_pred_video": ["youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'", null], "captions_pred_audio": ["steam is hissing and hissing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks continuously", "wind blows as people chatter quietly"], "sample_ids": ["vlJS7LN2XyM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "wind, chatter, people"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage is blurry and out of focus"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a train engine runs and a horn blows", "several insects fly while two men talk"], "sample_ids": ["zPX9o1uDiI", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["engine, horn, run", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["yZmhM1HcsyE", "vbZ-0lGPneg"], "start_seconds": ["4", "30"], "properties": ["engine, roar, water", "a woman, a television program, a bird"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a duck quacks continuously"], "sample_ids": ["sxYkFKFIZD0", "vh30P49Po6s"], "start_seconds": ["20", "30"], "properties": ["screech, man, door", "quacks, continuously, duck"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "birds chirp in the background while a horse neighs followed by a girl speaking"], "sample_ids": ["vs65y4qmyBE", "s59PfAghdkM"], "start_seconds": ["340", "0"], "properties": ["engine, run, man", "bird, chirp, background, horse, neigh"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "is an anime scene featuring two people and a horse in the foreground and a fence in the background"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "birds are chirping a horse is neighing and a woman is speaking "], "question": "which entity has a horse neighing?", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "some men converse over an engine running"], "sample_ids": ["x5cuQjOdM3E", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["cat, meows, young woman", "men, converse, engine"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more active", "label": 1}, {"captions": ["a man talks while vehicles pass by", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sK4u5T8hW78", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["a, man, talk", "gun, shoot, water"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used for hunting", "label": 1}, {"captions": ["a stream runs then someone speaks", "a woman sneezes then speaks"], "sample_ids": ["wbHTKEJZyhc", "x4dZyf9Gbj0"], "start_seconds": ["20", "130"], "properties": ["stream, run, someone", "sneezes, speaks, woman"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage is blurry and out of focus"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a woman sneezes and speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a person sniffles and sneezes", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["uRlbY6aoBU", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["sneezes, sniffles, person", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["s4Uz1Ffgo04", "vbZ-0lGPneg"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "a woman, a television program, a bird"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman is speaking and a dog is whimpering"], "question": "which entity is more quiet", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "paper is crumpling consistently"], "sample_ids": ["w8uLijTqtlU", "v5cSxLaHADY"], "start_seconds": ["70", "0"], "properties": ["wind, microphone, noise", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and shaky", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["the wind is blowing strongly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an insect buzzes around continuously", "three men talk while wind blows and some liquid flows"], "sample_ids": ["v25l1jef3JY", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["buzzes, continuously, insect", "three men, wind, flow"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a person", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "dishes cling together then a man begins to speak"], "sample_ids": ["uYT5gxnyMWM", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["person, spray, yell", "cling, speak, dishes"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "mechanisms are operating and water is splashing "], "question": "which entity is about a person speaking?", "label": 0}, {"captions": ["a vehicle engine runs while a siren and horn sound", "people applaud and hoot and chat quietly"], "sample_ids": ["u--KhUW8l1Y", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["engine, sound, horn", "people, applaud, hoot"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", null], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["uRExseg-0XI", "vfYTJq7nU"], "start_seconds": ["210", "130"], "properties": ["woman, man, water", "rustling, ducks, quack"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", null], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a duck quacks and a woman speaks"], "question": "which entity has more water", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a telephone rings followed by a woman talking"], "sample_ids": ["zY3icUyMdh8", "tGcFnX0GHI"], "start_seconds": ["20", "0"], "properties": ["dog, bark, engine", "ring, talk, woman"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "a clock alarm sounds and gears turn"], "sample_ids": ["zALy31PjDl0", "w2M4i1mklOA"], "start_seconds": ["21", "30"], "properties": ["a man, a vehicle, a horn", "alarm, gears, turn"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage of an antique clock"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a clock is ticking and a bell is ringing "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a machine runs continuously", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["wdXV3Pv0jiY", "tDlysoZiA1I"], "start_seconds": ["11", "0"], "properties": ["machine, running, continuously", "animal, grunts, chirps"], "captions_pred_video": ["footage is blurry and shaky", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "birds are chirping and a rooster is crowing "], "question": "which entity is not a machine?", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["shmR4OZtzqA", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "rooster, crow, background, men"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man speaks while a motor runs", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "animals bleat and moo as a person speaks"], "sample_ids": ["vddP56-ogds", "tPJvjq9QePY"], "start_seconds": ["30", "40"], "properties": ["liquid, laughs, man", "animal, bleat, moo"], "captions_pred_video": [null, "a dog and a sheep in a barn"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a baby cries and a man speaks"], "question": "which entity is more animal-like", "label": 1}, {"captions": ["people speak as gunfire rings out", "a man speaks as a car is passing by"], "sample_ids": ["wqTCwqVRDlk", "sK4u5T8hW78"], "start_seconds": ["80", "30"], "properties": ["gunfire, ring, speak", "a, car, pass"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a man is speaking with background noise and breathing sounds "], "question": "which entity is more calm", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["sa6TLVbooCc", "yDoT73BWsdA"], "start_seconds": ["240", "10"], "properties": ["people, laugh, child", "engine, revs, vehicle"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sDSppXIlJrs", "sSMl2vc3ek"], "start_seconds": ["27", "20"], "properties": ["microphone, water, wind", "loud, multiple, distance"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", null], "captions_pred_audio": ["the wind is blowing and water is splashing", "a person snoring loudly"], "question": "which is louder", "label": 1}, {"captions": ["someone is snoring while sleeping", "a man speaks followed by another man speaking outside"], "sample_ids": ["ujMt0-D-x2k", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["snore, sleep, someone", "two men, speak, follow"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity shows two men speaking?", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "some tunes played by whistling"], "sample_ids": ["xvDdE3zNf8Y", "u6BnG6YZqJ4"], "start_seconds": ["120", "0"], "properties": ["a, female, speaks", "tune, play, whistling"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman speaks and crumples paper", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a stream of water runs briefly"], "sample_ids": ["t25U-v4k4ts", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["bees buzz, birds chirp, man speaks", "stream, water, run"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["t97k0cejSQE", "tDVADusiIoc"], "start_seconds": ["250", "60"], "properties": ["bird, chirp, insect", "water, radio, man"], "captions_pred_video": ["a bee on a purple thistle flower", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["t25U-v4k4ts", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["a, chirps, bird", "sheep, baa, birds"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a goat bleats and birds chirp"], "question": "which entity has more animals", "label": 1}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "birds chirp in the background while a horse neighs followed by a girl speaking"], "sample_ids": ["wvKpEYswXO0", "s59PfAghdkM"], "start_seconds": ["150", "0"], "properties": ["sound, water, running", "bird, chirp, background, horse, neigh"], "captions_pred_video": ["of the person preparing food in the kitchen", "is an anime scene featuring two people and a horse in the foreground and a fence in the background"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "birds are chirping a horse is neighing and a woman is speaking "], "question": "which entity has a horse neighing?", "label": 1}, {"captions": ["continuous sneezing together with speech", "a woman speaks happily and an animal chirps"], "sample_ids": ["x4dZyf9Gbj0", "uWAAAL4CIoc"], "start_seconds": ["130", "0"], "properties": ["continuous, sneeze, speech", "a woman, chirps, animal"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and a dog is barking "], "question": "which entity is more like a bird", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["y8WEcpOlT3I", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["harsh, wind, blows", "rustling, ducks, quack"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a duck quacks and a woman speaks"], "question": "which entity is about a harsh wind blowing?", "label": 0}, {"captions": ["heavy rain splashes as it falls", "vehicles pass by on a roadway"], "sample_ids": ["wP8ZKrlx3oA", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["fall, rain, splash", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["children cry and people talk", "a telephone rings followed by a woman talking"], "sample_ids": ["xLwHe825Zs", "tGcFnX0GHI"], "start_seconds": ["18", "0"], "properties": ["people talk, children cry, people talk", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby cries and a woman speaks", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["a child yells and another yells", "a toilet flushes and water drains"], "sample_ids": ["vMDHu7Lxcgw", "sfAvvZwdLCY"], "start_seconds": ["410", "20"], "properties": ["two, yell, child", "water drains, flushes, water"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["birds chirp as a bell rings", "water flows as men speak and yell"], "sample_ids": ["ziUT9IFTkjg", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["chirp, bell, ring", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["an airplane engine runs", "an insect buzzes around continuously"], "sample_ids": ["yVPZ2MNWpms", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["engine, airplane, runs", "buzzes, continuously, insect"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a car is driving by on the road ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vcmWSmvti8", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["music, man, fire", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more liquid flowing", "label": 1}, {"captions": ["food is frying and sizzles", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zNRChLjqcU", "xKB8O8LTs6s"], "start_seconds": ["220", "70"], "properties": ["food is frying, sizzles, food", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["water is running from a faucet into a sink", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a movie?", "label": 1}, {"captions": ["some tunes played by whistling", "water runs from a faucet while some men speak and the water runs in the sink"], "sample_ids": ["u6BnG6YZqJ4", "vzceMbklWc"], "start_seconds": ["0", "180"], "properties": ["tune, play, whistling", "water, faucet, sink"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", null], "captions_pred_audio": ["a person whistling a song", "water is running and a man is speaking"], "question": "which entity is a video of a person playing a tune?", "label": 0}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "dishes cling together then a man begins to speak"], "sample_ids": ["uqFtmnhuqA8", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["a, b, c", "cling, speak, dishes"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "mechanisms are operating and water is splashing "], "question": "which entity is about a clock?", "label": 0}, {"captions": ["a man speaks as crickets sing", "an adult speaks and is typing on a computer keyboard"], "sample_ids": ["ryFDPxgDOGc", "x9JovgqUcs"], "start_seconds": ["570", "500"], "properties": ["a, crickets, sing", "An adult is speaking, typing, and using a computer keyboard"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man speaks and types on a keyboard"], "question": "which entity is speaking", "label": 1}, {"captions": ["a child speaks", "a man is snoring loudly and repeatedly"], "sample_ids": ["yW6FWLSLkx4", "sncRqQ67iJU"], "start_seconds": ["40", "460"], "properties": ["a, child, speaks", "loud, repeatedly, man"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["a person sniffles and sneezes", "water is sprayed across a hard surface"], "sample_ids": ["uRlbY6aoBU", "sQwlkXjQabo"], "start_seconds": ["0", "10"], "properties": ["sneezes, sniffles, person", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is sneezing ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a person is snoring while sleeping", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vJrjSeP17yE", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["a person is sleeping, snoring, person", "wind, blow, vehicle"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a door slams shut roughly", "water flows as men speak and yell"], "sample_ids": ["zkKdxzNC97Y", "vJ7JPEFhyLA"], "start_seconds": ["27", "16"], "properties": ["a door, slams, shut", "water, flow, men"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 0}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a man speaks while rain falls onto a hard surface"], "sample_ids": ["wvKpEYswXO0", "wqN6IIHw3po"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "rain, surface, fall"], "captions_pred_video": ["of the person preparing food in the kitchen", "in your own words what is happening in this screenshot? blood splattered all over the place"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and water is splashing"], "question": "which entity has a hard surface?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xV7Mg1QucSc", "tdWhHV3X25Q"], "start_seconds": ["14", "60"], "properties": ["alarm, ticktocks, laughs", "applause, audience, yells"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a person screams glaringly", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["xC8kbrKJmco", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["glaringly, screams, person", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a goat is bleating ", "a woman is speaking and a baby is crying"], "question": "which entity is a person?", "label": 0}, {"captions": ["a train horn blows as it passes by", "a car speeding up in the distance"], "sample_ids": ["zVacuqSb4LI", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["horn, blows, train", "distance, car, speed"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", null], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["xjvTpk2Zpr8", "tDVADusiIoc"], "start_seconds": ["70", "60"], "properties": ["wind, blows, vehicle", "water, radio, man"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a vehicle racing past?", "label": 0}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "pigeons vocalize and birds chirp"], "sample_ids": ["xyL9F5VrjkE", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["wind, motor, distance", "vocalize, bird, chirp"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of the pigeon in the cage"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a clock ticktocks continuously", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["vlJS7LN2XyM", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["ticktocks, clock, ticktocks continuously", "background, male, female"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a ticktock of a clock", "a lawn mower is running and men are speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["people speak softly as food sizzles", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yhQ2Lg-7qDY", "zj2R0XoFr5k"], "start_seconds": ["130", "50"], "properties": ["food, sizzle, speak", "airplane, boy, fly"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about to fly", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "someone whistles a tune"], "sample_ids": ["xM4joTqDVp4", "sIXTftIuUgw"], "start_seconds": ["160", "90"], "properties": ["background, chirp, birds", "someone, tune, whistle"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a stream of water flows quickly", "some men converse over an engine running"], "sample_ids": ["wbHTKEJZyhc", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["stream, water, flow", "men, converse, engine"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a still image?", "label": 0}, {"captions": ["a man speaking with light rustling", "waves crash against a shoreline and people speak"], "sample_ids": ["zOZleIRqZm4", "yFB25fqfU8I"], "start_seconds": ["80", "300"], "properties": ["light, rustling, man", "wave, crash, shoreline"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "three men talk while wind blows and some liquid flows"], "sample_ids": ["s3cTDAj31g", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["man, talk, woman", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vzxHnu-SFEw", "y8WEcpOlT3I"], "start_seconds": ["80", "40"], "properties": ["two objects, woman, speak", "harsh, wind, blows"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["an animal growls followed by birds chirping", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["y2ZBGpgbhHM", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["animal, growl, bird", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking and a dog is whimpering"], "question": "which entity is a television program?", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a child speaks in closed space"], "sample_ids": ["vbZ-0lGPneg", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["a woman, a television program, a bird", "child, space, speak"], "captions_pred_video": ["of a man holding a baby duck in his hands", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["an engine idles quietly then gradually becomes louder", "small dogs yip and bark sharply"], "sample_ids": ["vbr9mHKc8WM", "v-wcQf4BDY0"], "start_seconds": ["40", "120"], "properties": ["noise, loudness, engine", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["an engine is idling", "a dog barks and growls"], "question": "which entity is louder", "label": 1}, {"captions": ["an airplane engine runs", "winds blows roughly as a vehicle races past"], "sample_ids": ["yVPZ2MNWpms", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["engine, airplane, runs", "wind, blows, vehicle"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a car is driving by on the road ", "a jet engine roars and wind blows "], "question": "which entity is moving", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a man speaks as a car is passing by"], "sample_ids": ["sLUnaPT5gM8", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["loud, laughter, intermittent", "a, car, pass"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car passing by?", "label": 1}, {"captions": ["birds chirp and wind blows", "goats bleat and people speak"], "sample_ids": ["sxIvBMSavMQ", "z5iUE5h0EPs"], "start_seconds": ["210", "30"], "properties": ["birds, chirp, wind", "goats bleat, people speak, language"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "of the goat in the barn"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a goat bleats and a man speaks"], "question": "which entity is a language", "label": 1}, {"captions": ["a door opens and birds chirp", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["yeFvk9x0wWI", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["door, open, birds", "loud, laughter, intermittent"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["water is sprayed across a hard surface", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sQwlkXjQabo", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "multiple, people, yell"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", null], "captions_pred_audio": ["spraying followed by silence", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["dogs barking and whimpering", "an insect buzzes around continuously"], "sample_ids": ["tIY7qOV3rEM", "v25l1jef3JY"], "start_seconds": ["0", "0"], "properties": ["barking, whimpering, dog", "buzzes, continuously, insect"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a fly is buzzing around a microphone "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sofxkNWaP0s", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["wind, engine, louder", "men, talk, cars"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a man speaking and wind blowing as an aircraft engine becomes louder?", "label": 0}, {"captions": ["a man speaks as a motor runs in the background", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["xZepNM9qcRA", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["background, motor, run", "background, birds, rustling"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "birds are chirping and a chime is ringing "], "question": "which background is quieter", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["wRBHTgrbiwg", "yks4cLgIDMc"], "start_seconds": ["50", "170"], "properties": ["bird, owl, speak", "background, speaking, child"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["there are rhythmical snoring nearby", "plastic is tapped on while someone speaks"], "sample_ids": ["ujMt0-D-x2k", "wvKpEYswXO0"], "start_seconds": ["0", "150"], "properties": ["snoring, rhythmical, nearby", "plastic, tap, speak"], "captions_pred_video": ["of the dog playing with a toy on the floor", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["spYNpeN7rPY", "tDVADusiIoc"], "start_seconds": ["1", "60"], "properties": ["a clock, ticktock, man", "water, radio, man"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a clock?", "label": 0}, {"captions": ["a young woman speaks over spraying and another person yells", "paper folding and crinkling"], "sample_ids": ["uYT5gxnyMWM", "zPpG3RD8lSs"], "start_seconds": ["50", "20"], "properties": ["person, spray, yell", "paper, fold, crinkle"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of a skill", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "several insects fly while two men talk"], "sample_ids": ["wudZTNBtVqc", "s-T9OVOiMLo"], "start_seconds": ["60", "330"], "properties": ["accelerates, engine, wind", "several, fly, men"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vlJS7LN2XyM", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["background, clocks, ticking", "male, duck, laugh"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and ducks are quacking"], "question": "which entity is more active", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "an insect buzzes around continuously"], "sample_ids": ["sZPuqDgX2V0", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["engine, accelerate, intercom", "buzzes, continuously, insect"], "captions_pred_video": [null, "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["an engine runs loudly", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["vqZuVbG6-HI", "ziUT9IFTkjg"], "start_seconds": ["130", "10"], "properties": ["loud, engine, run", "background, birds, rustling"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "birds are chirping and a chime is ringing "], "question": "which is quieter", "label": 1}, {"captions": ["a dark barks and whimpers", "a man talks followed by a woman shouting"], "sample_ids": ["sYj4hpDUZDQ", "s3cTDAj31g"], "start_seconds": ["30", "80"], "properties": ["barks, whimpers, dark", "man, talk, woman"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking and a baby is crying"], "question": "which entity is talking", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wqZ135Ssz0", "wz7N8YRy74I"], "start_seconds": ["60", "30"], "properties": ["man, woman, squawks", "rooster, crow, background, men"], "captions_pred_video": [null, "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a car accelerates and wind blows", "paper is crumpling consistently"], "sample_ids": ["u0TrcHhkPQ", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["accelerates, wind, blows", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "distant men speak as a spray can nozzle is depressed"], "sample_ids": ["tEE3MpBt1sg", "rwtmaKiCcQU"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "nozzle, depressed, spray can"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "shows a man spraying paint on a wall with a spray gun"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "spraying and people speaking"], "question": "which entity is about a drill?", "label": 0}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a duck quacks loudly and continuously"], "sample_ids": ["uqFtmnhuqA8", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "loud, continuous, quacks"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "an airplane engine runs"], "sample_ids": ["xV7Mg1QucSc", "yVPZ2MNWpms"], "start_seconds": ["14", "0"], "properties": ["alarm, ticktocks, laughs", "engine, airplane, runs"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "some tunes played by whistling"], "sample_ids": ["sShpyu2l4YQ", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["growl, bark, yip", "tune, play, whistling"], "captions_pred_video": ["the puppies are playing with a toy", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a dog is barking and growling", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "an airplane engine spools and people speak"], "sample_ids": ["sa6TLVbooCc", "wTjoRj1se3U"], "start_seconds": ["240", "390"], "properties": ["people, laugh, child", "airplane, engine, spool"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a jet engine is running and people are talking"], "question": "which entity is about a child speaking?", "label": 0}, {"captions": ["an animal bleats and cries out and metal bangs", "water flows and trickles"], "sample_ids": ["xfudFO976zE", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["animal, bleats, cry", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and shaky", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["dogs barking and whimpering", "a infant makes noise and is excited"], "sample_ids": ["tIY7qOV3rEM", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["barking, whimpering, dog", "noise, excited, infant"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yks4cLgIDMc", "xBxDz0CFVn0"], "start_seconds": ["170", "30"], "properties": ["background, speaking, child", "stream, water, flow"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a child is crying", "a man is speaking with wind noise in the background "], "question": "which entity is a stream of water flowing?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "wind blowing followed by a zoom"], "sample_ids": ["sQGXqGcwOTc", "vr8ZXjEBhMQ"], "start_seconds": ["3", "150"], "properties": ["cling, speak, dishes", "wind, blow, zoom"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["tOSWIURC-4", "y2bVZ7rz-5M"], "start_seconds": ["0", "280"], "properties": ["noise, engine, revs", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a lawn mower is running ", "a truck is honking its horn and a siren is blaring "], "question": "which noise is made by a motor", "label": 1}, {"captions": ["ticking continues without interruption", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["v-g-j2uTByM", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["ticking, continuous, clock", "a, scream, girl"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a clock is ticking loudly", "a woman is speaking and a baby is crying"], "question": "which entity is not continuous", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "several insects fly while two men talk"], "sample_ids": ["uPDn2BFTHk", "s-T9OVOiMLo"], "start_seconds": ["140", "330"], "properties": ["lady, laugh, baby", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["s4Uz1Ffgo04", "ukg5L09Wpvo"], "start_seconds": ["100", "150"], "properties": ["roars, background, people speaking", "a train, a horn, a bell"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tMbMDvT50j8", "uYT5gxnyMWM"], "start_seconds": ["12", "50"], "properties": ["a, cry, woman", "female, spraying, scream"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["several beeps are followed by a hit and a woman talking", "a child babbles as a woman speaks"], "sample_ids": ["w34HjHr6gAY", "wEBlkGWVWwE"], "start_seconds": ["30", "260"], "properties": ["beeps, hit, woman", "a, babble, woman"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "shows a person writing on the whiteboard"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman is speaking and a child is speaking with background noise and clapping "], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["a train horn sounds and railroad crossing ring", "a child speaks in closed space"], "sample_ids": ["s7knHCFW82w", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["horn, sound, train", "child, space, speak"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "a man speaks as a motor runs in the background"], "sample_ids": ["tqR406bGiE", "xZepNM9qcRA"], "start_seconds": ["40", "30"], "properties": ["flush, water, gurgle", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["birds chirp and wind blows", "birds chirp and objects are moved around"], "sample_ids": ["sxIvBMSavMQ", "yPUYU6t3rwo"], "start_seconds": ["210", "370"], "properties": ["birds, chirp, wind", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "insects buzz and a man speaks"], "question": "which entity is about birds chirping?", "label": 0}, {"captions": ["vehicle engines race around a track as a man commentates", "a man speaks followed by another man speaking outside"], "sample_ids": ["sZPuqDgX2V0", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["commentator, race, track", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a man speaking followed by another man speaking outside?", "label": 1}, {"captions": ["an airplane engine roars increasingly louder", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["vBslzh7saPw", "su6FAOcOA8c"], "start_seconds": ["90", "4"], "properties": ["engine, roar, louder", "engine, idle, woman"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a woman is speaking and a subway train is moving "], "question": "which engine is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sfAvvZwdLCY", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "engine, accelerate, idle"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a toilet is flushed", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["a stream runs then someone speaks", "a car speeding up in the distance"], "sample_ids": ["wbHTKEJZyhc", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["stream, run, someone", "distance, car, speed"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", null], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "wind blowing followed by a zoom"], "sample_ids": ["sOa7g-44Dag", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["audio, scratching, man", "wind, blow, zoom"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a video", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "winds blows roughly as a vehicle races past"], "sample_ids": ["sNB8zxXneIM", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["several, quack, cocks", "wind, blows, vehicle"], "captions_pred_video": ["a group of geese in a cage", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a child speaks in closed space"], "sample_ids": ["zsLxS-uLJTw", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["horn, blast, train", "child, space, speak"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an aircraft engine runs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["yLCORCnd35Q", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["engine, aircraft, runs", "engine, revs, vehicle"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a race car accelerates and revs its engine "], "question": "which entity has a running engine", "label": 0}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["vfYTJq7nU", "vKrYfzleLB8"], "start_seconds": ["130", "110"], "properties": ["ducks, quack, man", "a, ring, gunshots"], "captions_pred_video": [null, "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a machine beeps continuously"], "sample_ids": ["vuUVPzd2FXw", "y682ml90jGw"], "start_seconds": ["160", "11"], "properties": ["a, steam, release", "beeps, machine, continuously"], "captions_pred_video": ["of the person cooking on the grill with a spatula", null], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "an insect buzzes around continuously"], "sample_ids": ["sAam2NqGhLY", "v25l1jef3JY"], "start_seconds": ["20", "0"], "properties": ["snoring, breathing, child", "buzzes, continuously, insect"], "captions_pred_video": ["of a little girl sleeping on a couch", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a person is snoring", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "some tunes played by whistling"], "sample_ids": ["zuua6-5goWw", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["sound, pop, bird", "tune, play, whistling"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a child speaks in closed space"], "sample_ids": ["vSeGhaZt-aI", "yW6FWLSLkx4"], "start_seconds": ["50", "40"], "properties": ["water, bubbles, run", "child, space, speak"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "pigeons vocalize and birds chirp"], "sample_ids": ["xvDdE3zNf8Y", "uiS58TNyUiw"], "start_seconds": ["120", "430"], "properties": ["a, female, speaks", "vocalize, bird, chirp"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "of the pigeon in the cage"], "captions_pred_audio": ["a woman speaks and crumples paper", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["several insects fly while two men talk", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["s-T9OVOiMLo", "uZesmtKZGSw"], "start_seconds": ["330", "250"], "properties": ["several, fly, men", "men, talk, cars"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "an engine runs loudly"], "sample_ids": ["zY3icUyMdh8", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["dog, bark, engine", "loud, engine, run"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a car accelerates and wind blows", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["u0TrcHhkPQ", "su6FAOcOA8c"], "start_seconds": ["20", "4"], "properties": ["accelerates, wind, blows", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a machine runs continuously", "someone is typing on a computer keyboard"], "sample_ids": ["wdXV3Pv0jiY", "v0x1odnXtP0"], "start_seconds": ["11", "210"], "properties": ["machine, running, continuously", "keyboard, type, computer"], "captions_pred_video": ["footage is blurry and shaky", "how to make money on youtube in spanish"], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a person is typing on a keyboard"], "question": "which is not a machine", "label": 1}, {"captions": ["a person speaks over rustling leaves", "people applaud and hoot and chat quietly"], "sample_ids": ["zOZleIRqZm4", "wwyfGO2J4"], "start_seconds": ["80", "90"], "properties": ["rustling, leaves, person", "people, applaud, hoot"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "pigeons vocalize and birds chirp"], "sample_ids": ["ukxt9I7eMMg", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["food, pan, cook", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of the pigeon in the cage"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a person", "label": 1}, {"captions": ["a clock ticktocks continuously", "a infant makes noise and is excited"], "sample_ids": ["vlJS7LN2XyM", "wIJK3-5y0kA"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, ticktocks continuously", "noise, excited, infant"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a ticktock of a clock", "a baby cries and a woman speaks"], "question": "which entity is quieter", "label": 0}, {"captions": ["a person burps loudly for a long time nearby", "an aircraft engine runs as wind blows heavily"], "sample_ids": ["vf44CgrjT0A", "xjvTpk2Zpr8"], "start_seconds": ["20", "70"], "properties": ["loud, long, person", "engine, run, wind"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a loud burp", "a jet engine roars and wind blows "], "question": "which entity is running", "label": 1}, {"captions": ["someone whistles a tune", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sIXTftIuUgw", "vJ7JPEFhyLA"], "start_seconds": ["90", "16"], "properties": ["someone, tune, whistle", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person whistling a song", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be a song", "label": 0}, {"captions": ["a helicopter engine runs continuously", "paper is crumpling consistently"], "sample_ids": ["ugHJF0hfYkg", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["engine, running, continuously", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a helicopter is flying overhead ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["sapQIQUhFc", "uYT5gxnyMWM"], "start_seconds": ["280", "50"], "properties": ["water, trickles, flow", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a machine clanks and thumps and a male speaks", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sWZzXuWYY", "xKB8O8LTs6s"], "start_seconds": ["420", "70"], "properties": ["male, clanks, thumps", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "multiple people speak and children yell while water gurgles"], "sample_ids": ["sa6TLVbooCc", "vb1fPSDI4c"], "start_seconds": ["240", "30"], "properties": ["people, laugh, child", "multiple, people, yell"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", null], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "people speak as gunfire rings out"], "sample_ids": ["yswmmRZFItk", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["background, frog, croak", "gunfire, ring, speak"], "captions_pred_video": ["a close up of a frog in the water", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a frog is croaking", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["zFjIWfSD-4", "sjlVMgdGSK0"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "accelerates, vehicle, race car"], "captions_pred_video": [null, "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a toilet flushes and a female speaks"], "sample_ids": ["s7knHCFW82w", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["blow horn, get close, train", "female, flushes, toilet"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "an electric engine works nearby followed by a child talking"], "sample_ids": ["sOa7g-44Dag", "xSKJGCItUWE"], "start_seconds": ["30", "10"], "properties": ["audio, scratching, man", "engine, work, child"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a high pitched engine is running and a child speaks"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["wind blows as people chatter quietly", "paper is crumpling consistently"], "sample_ids": ["xBxDz0CFVn0", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["wind, chatter, people", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry and out of focus", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "a motor vehicle roars, drowning out people speaking in the background"], "sample_ids": ["vZAw4apG0Es", "s4Uz1Ffgo04"], "start_seconds": ["30", "100"], "properties": ["background, tick, repeat", "roars, background, people speaking"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of an ambulance arriving at the scene of an accident"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking while a boat is moving and wind is blowing "], "question": "which entity is louder", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "a car accelerates and wind blows"], "sample_ids": ["spYNpeN7rPY", "u0TrcHhkPQ"], "start_seconds": ["1", "20"], "properties": ["a clock, ticktock, man", "accelerates, wind, blows"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", null], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["w34HjHr6gAY", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["beeps, squawk, child speaking", "loud, jet engine, roar"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "water flows as men speak and yell"], "sample_ids": ["vqZuVbG6-HI", "vJ7JPEFhyLA"], "start_seconds": ["130", "16"], "properties": ["background, male, female", "water, flow, men"], "captions_pred_video": ["footage is blurry because it's raining outside", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water flowing", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "pigeons vocalize and birds chirp"], "sample_ids": ["ukg5L09Wpvo", "uiS58TNyUiw"], "start_seconds": ["150", "430"], "properties": ["a train, a horn, a bell", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "of the pigeon in the cage"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a duck quacks continuously"], "sample_ids": ["vBHyYJ8pL0", "vh30P49Po6s"], "start_seconds": ["2", "30"], "properties": ["noise, door, opening", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a dark barks and whimpers", "a frog croaks as other frogs croak in the background"], "sample_ids": ["sYj4hpDUZDQ", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["barks, whimpers, dark", "background, frog, croak"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", "a close up of a frog in the water"], "captions_pred_audio": ["a dog barks and a cat meows", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "two women and a man talk while a kid cries"], "sample_ids": ["sWZzXuWYY", "wyllXV6PjKo"], "start_seconds": ["420", "30"], "properties": ["male, speech, banging", "a kid, talk, cry"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman speaks and a baby cries"], "question": "which entity has a kid crying?", "label": 1}, {"captions": ["food is frying and sizzles", "a woman speaks as she rubs two objects together"], "sample_ids": ["zNRChLjqcU", "vzxHnu-SFEw"], "start_seconds": ["220", "80"], "properties": ["food is frying, sizzles, food", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["water is running from a faucet into a sink", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["a man speaks as a machine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vD6lYD1l0BY", "uYT5gxnyMWM"], "start_seconds": ["330", "50"], "properties": ["a, machine, run", "female, spraying, scream"], "captions_pred_video": ["game controller being held in the hands of the person", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a woman is speaking and a baby is crying"], "question": "which entity has a female spraying and screaming?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "water flows and trickles"], "sample_ids": ["x9JovgqUcs", "tB7hWb9gTuQ"], "start_seconds": ["500", "30"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man speaks and types on a keyboard", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "an infant crying as a woman laughs"], "sample_ids": ["y8WEcpOlT3I", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["harsh, wind, blows", "a, laugh, infant"], "captions_pred_video": ["on how to use a sewing machine youtube", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["some men converse over an engine running", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sCiy7QS1U", "zj2R0XoFr5k"], "start_seconds": ["300", "50"], "properties": ["men, converse, engine", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["water flows and trickles", "a stream of water flows as people talk and wind blows"], "sample_ids": ["tB7hWb9gTuQ", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["water, flow, trickle", "stream, water, flow"], "captions_pred_video": ["the rocks on the beach are surrounded by water and the sky is visible in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["water is splashing and gurgling", "a man is speaking with wind noise in the background "], "question": "which entity is flowing", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "a man speaks as a motor runs in the background"], "sample_ids": ["sZPuqDgX2V0", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["engine, accelerate, intercom", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "water pouring and bubbling"], "sample_ids": ["weDbePuc-Xc", "uyRfq-jKPpo"], "start_seconds": ["40", "50"], "properties": ["music, slaps, human", "water, bubbles, pouring"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "a toilet flushes and water drains"], "sample_ids": ["wqADXCzngMw", "sfAvvZwdLCY"], "start_seconds": ["340", "20"], "properties": ["audio, humming, revving", "water drains, flushes, water"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a stream of water flows as people talk and wind blows"], "sample_ids": ["ukxt9I7eMMg", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["continuous, woman, speaking", "stream, water, flow"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a stream of water flowing?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a woman speaks happily and an animal chirps"], "sample_ids": ["sG7TyPnFDR0", "uWAAAL4CIoc"], "start_seconds": ["180", "0"], "properties": ["beeps, machine, smoke alarm", "a woman, chirps, animal"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a woman is speaking and a dog is barking "], "question": "which entity is more likely to be a bird?", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["x9JovgqUcs", "xKB8O8LTs6s"], "start_seconds": ["500", "70"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "music, gunfire, explosion"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man speaks and types on a keyboard", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more calm", "label": 0}, {"captions": ["a door opens and birds chirp", "birds chirp quietly and an adult man speaks"], "sample_ids": ["yeFvk9x0wWI", "zuua6-5goWw"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "birds, chirp, quiet, man, speaks"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "birds are chirping and a man is speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a machine clanks and thumps and a male speaks"], "sample_ids": ["tQWGZLItBXk", "sWZzXuWYY"], "start_seconds": ["170", "420"], "properties": ["voice, music, whoosh", "male, clanks, thumps"], "captions_pred_video": ["worms revolution screenshots", null], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a sewing machine runs and a man speaks"], "question": "which entity has a male speaking?", "label": 1}, {"captions": ["long loud burping by a man", "vehicles pass by on a roadway"], "sample_ids": ["xmiUIOhtZyQ", "tgbONvsP47Y"], "start_seconds": ["60", "0"], "properties": ["loud, burp, man", "pass, vehicle, roadway"], "captions_pred_video": ["homer simpson drinking a beer", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person burps and music plays in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a horn rings out as a machine runs by"], "sample_ids": ["xBxDz0CFVn0", "slZLHwNbbt4"], "start_seconds": ["30", "300"], "properties": ["wind, chatter, people", "a, horn, run"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "dishes cling together then a man begins to speak"], "sample_ids": ["wRV8yMk886E", "sQGXqGcwOTc"], "start_seconds": ["0", "3"], "properties": ["liquid, spray, nozzle", "cling, speak, dishes"], "captions_pred_video": ["two cars are parked in a parking lot at night", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man speaks followed by a loud burst", "mechanisms are operating and water is splashing "], "question": "which entity is about speaking?", "label": 0}, {"captions": ["electronic beeps occur in a short series", "dishes cling together then a man begins to speak"], "sample_ids": ["y682ml90jGw", "sQGXqGcwOTc"], "start_seconds": ["11", "3"], "properties": ["beeps, series, electronic", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a beeping sound is being made ", "mechanisms are operating and water is splashing "], "question": "which entity is a video", "label": 1}, {"captions": ["wind blows and people scream while an engine revs", "a machine beeps continuously"], "sample_ids": ["w5W5Kqtc8E", "y682ml90jGw"], "start_seconds": ["100", "11"], "properties": ["wind, engine, scream", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["people clap and speak in the distance", "a door slams shut roughly"], "sample_ids": ["wwyfGO2J4", "zkKdxzNC97Y"], "start_seconds": ["90", "27"], "properties": ["clap, distance, speak", "a door, slams, shut"], "captions_pred_video": [null, "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a door is opened and closed"], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "an airplane engine runs"], "sample_ids": ["sapQIQUhFc", "yVPZ2MNWpms"], "start_seconds": ["280", "0"], "properties": ["water, stream, trickles", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a clock ticktocks"], "sample_ids": ["tDlysoZiA1I", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, multiple", "ticktocks, clock, ticktocks"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a person is snoring while sleeping"], "sample_ids": ["vSeGhaZt-aI", "vJrjSeP17yE"], "start_seconds": ["50", "40"], "properties": ["water, sink, talk", "a person is sleeping, snoring, person"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a man speaks as a car is passing by"], "sample_ids": ["sSMl2vc3ek", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["loud, multiple, distance", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "someone whistles a tune"], "sample_ids": ["v5P-ThUCINM", "sIXTftIuUgw"], "start_seconds": ["400", "90"], "properties": ["background, chirp, bird", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and birds are chirping", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "wind blowing followed by a zoom"], "sample_ids": ["vBHyYJ8pL0", "vr8ZXjEBhMQ"], "start_seconds": ["2", "150"], "properties": ["noise, door, opening", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is accompanied by a zoom", "label": 1}, {"captions": ["children speak as a female ask them questions", "a machine beeps continuously"], "sample_ids": ["wEBlkGWVWwE", "y682ml90jGw"], "start_seconds": ["260", "11"], "properties": ["female, speak, questions", "beeps, machine, continuously"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a beeping sound is being made "], "question": "which entity is not a machine?", "label": 0}, {"captions": ["roadway noise occurs and a truck accelerates", "roadway noise occurs and a truck accelerates"], "sample_ids": ["tgbONvsP47Y", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["noise, truck, accelerate", "noise, truck, accelerate"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a car is driving on the road ", "a car is driving on the road "], "question": "which truck accelerates", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a toilet flushes and a female speaks"], "sample_ids": ["wz7N8YRy74I", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["rooster, crow, background, men", "female, flushes, toilet"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "some men converse over an engine running"], "sample_ids": ["wRV8yMk886E", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["liquid, spray, nozzle", "men, converse, engine"], "captions_pred_video": ["two cars are parked in a parking lot at night", null], "captions_pred_audio": ["a man speaks followed by a loud burst", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity shows men speaking and a nozzle spraying liquid?", "label": 0}, {"captions": ["a jet engine screams, then increases its power", "a car speeding up in the distance"], "sample_ids": ["vBslzh7saPw", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["power, scream, increase", "distance, car, speed"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["women speak and laugh as wind blows", "a telephone rings followed by a woman talking"], "sample_ids": ["un9VQlzgZM", "tGcFnX0GHI"], "start_seconds": ["5", "0"], "properties": ["wind, speak, laugh", "ring, talk, woman"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["an engine starts and increases in power", "a toilet flushes and a female speaks"], "sample_ids": ["zjTG0gaGCUI", "yaln9y8I7ms"], "start_seconds": ["80", "230"], "properties": ["power, increase, engine", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a toilet flushes and a man speaks"], "question": "which entity is not a toilet?", "label": 0}, {"captions": ["a clock ticktocks continuously", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vlJS7LN2XyM", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["ticktocks, clock, ticktocks continuously", "men, talk, cars"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a person is whistling", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["sIXTftIuUgw", "vbZ-0lGPneg"], "start_seconds": ["90", "30"], "properties": ["person, whistling, person", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and a dog is whimpering"], "question": "which entity has more people", "label": 1}, {"captions": ["a small engine spits as it runs", "water splashes as an animal walks through"], "sample_ids": ["sZvwOuuPGP0", "w1ir-sZ3Im8"], "start_seconds": ["50", "90"], "properties": ["spits, engine, runs", "animal, water, splashes"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a medium engine is running ", "water splashes and gurgles as people speak"], "question": "which entity is not a person?", "label": 0}, {"captions": ["an engine runs loudly", "men speak and a nozzle sprays liquid"], "sample_ids": ["vqZuVbG6-HI", "wRV8yMk886E"], "start_seconds": ["130", "0"], "properties": ["loud, engine, run", "liquid, spray, nozzle"], "captions_pred_video": ["footage is blurry because it's raining outside", "two cars are parked in a parking lot at night"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a man speaks followed by a loud burst"], "question": "which entity is a spray?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "water pouring and bubbling"], "sample_ids": ["xV7Mg1QucSc", "uyRfq-jKPpo"], "start_seconds": ["14", "50"], "properties": ["alarm, ticktocks, laughs", "water, bubbles, pouring"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a woman talking as an infant is crying", "someone is typing on a computer keyboard"], "sample_ids": ["tMbMDvT50j8", "v0x1odnXtP0"], "start_seconds": ["12", "210"], "properties": ["a, talk, infant", "keyboard, type, computer"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby cries and a woman speaks", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["wyllXV6PjKo", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["a baby, a woman, a man", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a car accelerates and wind blows"], "sample_ids": ["sapQIQUhFc", "u0TrcHhkPQ"], "start_seconds": ["280", "20"], "properties": ["water, stream, trickles", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a man speaks while water drains"], "sample_ids": ["xSKJGCItUWE", "vSeGhaZt-aI"], "start_seconds": ["10", "50"], "properties": ["engine, run, boy", "water, drain, man"], "captions_pred_video": ["footage of the helicopter flying in the room", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a man speaking while water drains?", "label": 1}, {"captions": ["an audience gives applause as a man yells and a group sings", "an infant crying as a woman laughs"], "sample_ids": ["tdWhHV3X25Q", "xhmRY9yhC7c"], "start_seconds": ["60", "20"], "properties": ["applause, audience, yells", "a, laugh, infant"], "captions_pred_video": ["a man is talking to another man on a stage in front of a microphone", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "water flows and trickles"], "sample_ids": ["w0xsN8X18Y", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["music, surface, rain", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks and is crumpling paper", "a telephone rings followed by a woman talking"], "sample_ids": ["xvDdE3zNf8Y", "tGcFnX0GHI"], "start_seconds": ["120", "0"], "properties": ["A, crumple, paper", "ring, talk, woman"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", null], "captions_pred_audio": ["a woman speaks and crumples paper", "a dial tone sounds followed by a woman speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "wind blows as people chatter quietly"], "sample_ids": ["ukg5L09Wpvo", "xBxDz0CFVn0"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "wind, chatter, people"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage is blurry and out of focus"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "an infant crying as a woman laughs"], "sample_ids": ["wIvYjuR3nrg", "xhmRY9yhC7c"], "start_seconds": ["9", "20"], "properties": ["birds, pigeons, vocalize", "a, laugh, infant"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds are chirping and cooing", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a propeller rotates loudly and intensely"], "sample_ids": ["w34HjHr6gAY", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["beeps, hit, woman", "loud, intense, propeller"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a person snoring several times", "a stream of water runs briefly"], "sample_ids": ["spJCm8tD9Zo", "x-PeY8Yb8M4"], "start_seconds": ["90", "300"], "properties": ["snore, person, several", "stream, water, run"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person is snoring loudly", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sZPuqDgX2V0", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["commentator, race, track", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "an airplane engine runs"], "sample_ids": ["uoGVs9yUqY4", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["multiple, vocalize, wind", "engine, airplane, runs"], "captions_pred_video": ["for how to make a wooden shed door youtube", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a horn honks and then loudly blares", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["wnpJndXuxLc", "ziUT9IFTkjg"], "start_seconds": ["50", "10"], "properties": ["horn, honk, loud", "background, birds, rustling"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "birds are chirping and a chime is ringing "], "question": "which is quieter", "label": 1}, {"captions": ["sirens ring and approach with humming of distant traffic", "a man speaks followed by another man speaking outside"], "sample_ids": ["xERFUeZONz8", "viuTg1M-dqg"], "start_seconds": ["0", "30"], "properties": ["ring, approach, traffic", "two men, speak, follow"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["an emergency vehicle siren blares", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "an airplane accelerates briefly"], "sample_ids": ["xZepNM9qcRA", "zjTG0gaGCUI"], "start_seconds": ["30", "80"], "properties": ["background, motor, run", "accelerates, airplane, briefly"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", null], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a jet engine roars as wind blows "], "question": "which is a moving object", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zFjIWfSD-4", "wDVMhEdTiVw"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tOSWIURC-4", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["noise, engine, revs", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking and a crowd is clapping"], "question": "which entity is a response to a performance", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "a man is snoring loudly and repeatedly"], "sample_ids": ["vmrxwuAMb2I", "sncRqQ67iJU"], "start_seconds": ["40", "460"], "properties": ["a dog, inhales, exhales", "loud, repeatedly, man"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "of an airplane flying in the dark sky at night"], "captions_pred_audio": ["a dog barks and growls", "a person is snoring"], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "a clock ticktocks"], "sample_ids": ["vbpKkWvfOu4", "v-g-j2uTByM"], "start_seconds": ["560", "30"], "properties": ["a, woman, man", "ticktocks, clock, ticktocks"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "people cheer as a vehicle engine revs"], "sample_ids": ["spJCm8tD9Zo", "xjhAnI2q6hM"], "start_seconds": ["90", "6"], "properties": ["snores, wheezes, sleeps", "engine revs, vehicle, people"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person is snoring loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is a person", "label": 0}, {"captions": ["a train horn blows as it passes by", "a woman speaks with water running"], "sample_ids": ["zVacuqSb4LI", "wTideSjRFS0"], "start_seconds": ["30", "30"], "properties": ["horn, blows, train", "water, running, woman"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of a woman cooking in a kitchen with a microwave oven"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a woman is speaking while water is running in the background"], "question": "which entity is a moving object", "label": 0}, {"captions": ["birds tweet and squawk", "birds chirp as a man speaks and a younger person speaks"], "sample_ids": ["w1mlz3Pe4fU", "xl2PIWyXaM"], "start_seconds": ["300", "160"], "properties": ["squawk, tweet, scream", "chirp, man, younger person"], "captions_pred_video": ["of a bird in a cage", null], "captions_pred_audio": ["birds are chirping and singing", "birds are chirping and people are talking"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a man speaks as a motor runs in the background"], "sample_ids": ["shmR4OZtzqA", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "background, motor, run"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man speaks while a motor runs", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["bees buzz and wind blows", "a stream of water flows quickly"], "sample_ids": ["tMJne1a4AFI", "wbHTKEJZyhc"], "start_seconds": ["0", "20"], "properties": ["bees buzz, wind blows, bees", "stream, water, flow"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and"], "captions_pred_audio": ["a swarm of bees buzzing around", "a waterfall is flowing and people are speaking "], "question": "which entity is moving faster", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "some tunes played by whistling"], "sample_ids": ["vddP56-ogds", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["water, flow, laugh", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a toilet door squeaks as it is opened", "speaking following by laughing and clapping"], "sample_ids": ["sdXV-ylviw", "u2f5NpsoHBg"], "start_seconds": ["190", "30"], "properties": ["door, toilet, squeaks", "person, laugh, clap"], "captions_pred_video": [null, "is being projected on a screen at the front of the stage"], "captions_pred_audio": ["a dog barks and taps with background noise ", "a woman is speaking and a crowd is clapping"], "question": "which entity is a person", "label": 1}, {"captions": ["some tunes played by whistling", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["u6BnG6YZqJ4", "vbZ-0lGPneg"], "start_seconds": ["0", "30"], "properties": ["tune, play, whistling", "a woman, a television program, a bird"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and a dog is whimpering"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks as he moves silverware in a bowl", "some men converse over an engine running"], "sample_ids": ["x6ijhqRY38s", "sCiy7QS1U"], "start_seconds": ["250", "300"], "properties": ["bowl, silverware, man", "men, converse, engine"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", null], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "people speak as gunfire rings out"], "sample_ids": ["xKB8O8LTs6s", "wqTCwqVRDlk"], "start_seconds": ["70", "80"], "properties": ["music, gunfire, explosion", "gunfire, ring, speak"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man is speaking and a gun is fired"], "question": "which entity has more gunfire", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "a clock ticktocks"], "sample_ids": ["tK4VlLsNxak", "v-g-j2uTByM"], "start_seconds": ["120", "30"], "properties": ["a, dial, telephone", "ticktocks, clock, ticktocks"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vzxHnu-SFEw", "w34HjHr6gAY"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "beeps, hit, woman"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a beep sounds followed by a child speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tOj4tdLRaA", "wDVMhEdTiVw"], "start_seconds": ["70", "30"], "properties": ["woman, laugh, baby", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause harm", "label": 1}, {"captions": ["wind blows and a stream of water flows nearby", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sYITalLZjj4", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["stream, flow, wind", "loud, jet engine, roar"], "captions_pred_video": ["two ducks are swimming in the water near each other", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["wind blows and birds chirp", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["tQWGZLItBXk", "vbZ-0lGPneg"], "start_seconds": ["170", "30"], "properties": ["music, person, ding", "a woman, a television program, a bird"], "captions_pred_video": ["worms revolution screenshots", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "water flows as men speak and yell"], "sample_ids": ["yPUYU6t3rwo", "vJ7JPEFhyLA"], "start_seconds": ["370", "16"], "properties": ["birds chirp, objects are moved around, birds", "water, flow, men"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["insects buzz and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["su6FAOcOA8c", "y8WEcpOlT3I"], "start_seconds": ["4", "40"], "properties": ["engine, run, woman", "harsh, wind, blows"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking to another man?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["zofjfKhqLk8", "w34HjHr6gAY"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "beeps, hit, woman"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "winds blows roughly as a vehicle races past"], "sample_ids": ["yajyRTUQk3U", "xjvTpk2Zpr8"], "start_seconds": ["400", "70"], "properties": ["noise, woman, speak", "wind, blows, vehicle"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "an airplane engine runs"], "sample_ids": ["wqN6IIHw3po", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["rain, surface, fall", "engine, airplane, runs"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and water is splashing", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a male speaks over some small clicks", "children speak and play together"], "sample_ids": ["uXxVebHsGZ8", "yVVP8XvWJTo"], "start_seconds": ["30", "260"], "properties": ["male, clicks, speak", "children, speak, play"], "captions_pred_video": [null, "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "children are speaking and breathing with background noise "], "question": "which entity is more social", "label": 1}, {"captions": ["birds chirp and objects are moved around", "rain falls onto a hard surface and thunder roars before music plays"], "sample_ids": ["yPUYU6t3rwo", "xNMovAf3o50"], "start_seconds": ["370", "0"], "properties": ["birds chirp, objects are moved around, birds", "rain, thunder, music"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "tieng mua - the falling rain lynk lee"], "captions_pred_audio": ["insects buzz and a man speaks", "thunder and rain with music playing in the background "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["someone whistles a tune", "wind blows as people chatter quietly"], "sample_ids": ["sIXTftIuUgw", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["someone, tune, whistle", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a person whistling a song", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["small dogs yip and bark sharply", "birds chirp and a dog breathes heavily"], "sample_ids": ["v-wcQf4BDY0", "y2ZBGpgbhHM"], "start_seconds": ["120", "30"], "properties": ["bark, yip, sharply", "dog, chirp, breathe"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", null], "captions_pred_audio": ["a dog barks and growls", "birds chirping and a dog panting"], "question": "which entity is a dog", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["zsLxS-uLJTw", "siJFXfGWgDk"], "start_seconds": ["20", "50"], "properties": ["horn, blast, train", "a, bird, vehicle"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a man is speaking and birds are chirping in the background "], "question": "which entity is a vehicle passing nearby?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "a car speeding up in the distance"], "sample_ids": ["uC9dtII1KDI", "u0TrcHhkPQ"], "start_seconds": ["150", "20"], "properties": ["wind, gusts, distance", "distance, car, speed"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", null], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a horse runs while two women talk", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sdvI1mHAsc", "vJ7JPEFhyLA"], "start_seconds": ["20", "16"], "properties": ["two women, horse, run", "three men, wind, flow"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 0}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yYJksgsxx5U", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["audio, woman, silverware", "female, spraying, scream"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a video?", "label": 1}, {"captions": ["motors runs briefly and tires screech", "a man speaks followed by another man speaking outside"], "sample_ids": ["yRx9txMcBl0", "viuTg1M-dqg"], "start_seconds": ["40", "30"], "properties": ["motors, tires, screech", "two men, speak, follow"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker?", "label": 1}, {"captions": ["an engine runs and wind blows", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vs65y4qmyBE", "xfaoyyzw2WU"], "start_seconds": ["340", "180"], "properties": ["engine, run, wind", "loud, jet engine, roar"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "an airplane engine runs"], "sample_ids": ["u--KhUW8l1Y", "yVPZ2MNWpms"], "start_seconds": ["0", "0"], "properties": ["horn, siren, life", "engine, airplane, runs"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a car is driving by on the road "], "question": "which entity is a machine", "label": 1}, {"captions": ["a door slams shut roughly", "birds chirp and wind blows"], "sample_ids": ["zkKdxzNC97Y", "sxIvBMSavMQ"], "start_seconds": ["27", "210"], "properties": ["a door, slams, shut", "birds, chirp, wind"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a"], "captions_pred_audio": ["a door is opened and closed", "birds are chirping and insects are buzzing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks as a motor runs in the background", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xZepNM9qcRA", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["background, motor, run", "clickety-clack, train, whistle"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yks4cLgIDMc", "sSMl2vc3ek"], "start_seconds": ["170", "20"], "properties": ["background, speaking, child", "loud, multiple, distance"], "captions_pred_video": ["footage of two kids wrestling on the floor", null], "captions_pred_audio": ["a man is speaking and a child is crying", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "some men converse over an engine running"], "sample_ids": ["tqR406bGiE", "sCiy7QS1U"], "start_seconds": ["40", "300"], "properties": ["flush, water, gurgle", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a toilet?", "label": 0}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a car accelerates and wind blows"], "sample_ids": ["y8dSeubCNI", "u0TrcHhkPQ"], "start_seconds": ["4", "20"], "properties": ["men, women, car", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine revving and people talking in the background", "a race car accelerates and revs its engine "], "question": "which car is moving faster", "label": 1}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a vehicle is skidding and squealing tires"], "sample_ids": ["u--KhUW8l1Y", "soTOh3zYJfY"], "start_seconds": ["0", "40"], "properties": ["engine, sound, horn", "vehicle, skid, tires"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a red car drifting on a winding road with smoke coming out of it"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a race car accelerates and revs its engine "], "question": "which vehicle is skidding", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "an infant crying frantically"], "sample_ids": ["sofxkNWaP0s", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["wind, engine, louder", "cry, infant, frantically"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "several insects fly while two men talk"], "sample_ids": ["uC9dtII1KDI", "s-T9OVOiMLo"], "start_seconds": ["150", "330"], "properties": ["wind, gusts, distance", "several, fly, men"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a person uses a saw to cut some wood"], "sample_ids": ["vhJWZheqaE", "sHbXC6na9hg"], "start_seconds": ["0", "0"], "properties": ["water drains unevenly, toilet flushes, water drains", "a person, saw, wood"], "captions_pred_video": [null, "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a toilet is flushed", "an engine is idling and vibrating"], "question": "which entity is a person?", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "bees buzz as wind blows"], "sample_ids": ["xV7Mg1QucSc", "tMJne1a4AFI"], "start_seconds": ["14", "0"], "properties": ["alarm, ticktocks, laughs", "bees, buzz, wind"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "a swarm of bees on the ground"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a swarm of bees buzzing around"], "question": "which entity is not a clock?", "label": 1}, {"captions": ["a man speaks uses a drill", "a person snores loudly multiple times at a close distance"], "sample_ids": ["x5eIC7S0fbg", "sSMl2vc3ek"], "start_seconds": ["60", "20"], "properties": ["A man is speaking, uses a drill, and is a tool", "loud, multiple, distance"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", null], "captions_pred_audio": ["a man is speaking and using a power tool ", "a person snoring loudly"], "question": "which entity is a tool", "label": 0}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["siJFXfGWgDk", "uYT5gxnyMWM"], "start_seconds": ["50", "50"], "properties": ["man, woman, vehicle", "a, scream, girl"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "water is sprayed across a hard surface"], "sample_ids": ["y8WEcpOlT3I", "sQwlkXjQabo"], "start_seconds": ["40", "10"], "properties": ["wind, speak, buffeting", "water, spray, surface"], "captions_pred_video": ["on how to use a sewing machine youtube", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a person is snoring while sleeping", "some tunes played by whistling"], "sample_ids": ["vJrjSeP17yE", "u6BnG6YZqJ4"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "tune, play, whistling"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person snoring loudly", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["a man woman speak while crickets sing", "multiple people speak and children yell while water gurgles"], "sample_ids": ["zTLVJCo4WEE", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "multiple, people, yell"], "captions_pred_video": ["- a boy with a rifle aiming at a target", null], "captions_pred_audio": ["a woman speaks and crickets chirp", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a woman speaks and other women and a man talk with her"], "sample_ids": ["vbZ-0lGPneg", "vbpKkWvfOu4"], "start_seconds": ["30", "560"], "properties": ["a woman, a television program, a bird", "a, woman, man"], "captions_pred_video": ["of a man holding a baby duck in his hands", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["distant humming of an engine", "pigeons vocalize and birds chirp"], "sample_ids": ["yVPZ2MNWpms", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["sound, distance, engine", "vocalize, bird, chirp"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "of the pigeon in the cage"], "captions_pred_audio": ["a car is driving by on the road ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["an airplane accelerates briefly", "water is sprayed across a hard surface"], "sample_ids": ["zjTG0gaGCUI", "sQwlkXjQabo"], "start_seconds": ["80", "10"], "properties": ["accelerates, airplane, briefly", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a jet engine roars as wind blows ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a vehicle accelerates squealing tires"], "sample_ids": ["ukxt9I7eMMg", "sd7xVssqlw"], "start_seconds": ["30", "50"], "properties": ["food, pan, cook", "accelerates, tires, squealing"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person is snoring while sleeping", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vJrjSeP17yE", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["a person is sleeping, snoring, person", "People, motor, brakes"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person?", "label": 0}, {"captions": ["a woman speaks and is crumpling paper", "paper is crumpling consistently"], "sample_ids": ["xvDdE3zNf8Y", "v5cSxLaHADY"], "start_seconds": ["120", "0"], "properties": ["A, crumple, paper", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman speaks and crumples paper", "paper is crumpled and crinkled"], "question": "which entity is crumpling paper", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["tDVADusiIoc", "uEU-Hg5MTN8"], "start_seconds": ["60", "27"], "properties": ["water, radio, man", "animal, grunts, snorts"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking and an animal grunting and snorting?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "people speak as gunfire rings out"], "sample_ids": ["s4Uz1Ffgo04", "wqTCwqVRDlk"], "start_seconds": ["100", "80"], "properties": ["roars, background, people speaking", "gunfire, ring, speak"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a man speaks as a motor runs in the background"], "sample_ids": ["vf44CgrjT0A", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["loud, long, person", "background, motor, run"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a loud burp", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a woman speaks happily and an animal chirps"], "sample_ids": ["sapQIQUhFc", "uWAAAL4CIoc"], "start_seconds": ["280", "0"], "properties": ["water, stream, trickles", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["xzKKf9bKNUo", "yajyRTUQk3U"], "start_seconds": ["10", "400"], "properties": ["background, noise, snoring", "a woman, something, fried"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a child yells and another yells", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vMDHu7Lxcgw", "y8WEcpOlT3I"], "start_seconds": ["410", "40"], "properties": ["two, yell, child", "harsh, wind, blows"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking with wind noise in the background "], "question": "which entity has two people speaking?", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["w34HjHr6gAY", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["beeps, hit, woman", "a woman, a television program, a bird"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman is speaking and a dog is whimpering"], "question": "which entity has a woman talking?", "label": 0}, {"captions": ["food is frying then a woman speaks", "three men talk while wind blows and some liquid flows"], "sample_ids": ["ukxt9I7eMMg", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["food, woman, speak", "three men, wind, flow"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a frog vocalizes while birds chirp", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["vMf1dLD6Sng", "wqZ135Ssz0"], "start_seconds": ["6", "60"], "properties": ["frog, bird, vocalize", "two men, woman, birds"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", null], "captions_pred_audio": ["a frog croaks loudly", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity is a human activity", "label": 1}, {"captions": ["food is frying then a woman speaks", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ukxt9I7eMMg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["food, woman, speak", "female, spraying, scream"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["water flows as men speak and yell", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vJ7JPEFhyLA", "vlS6YMeWAPo"], "start_seconds": ["16", "40"], "properties": ["water, flow, men", "sheep, baa, birds"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "people speak as gunfire rings out"], "sample_ids": ["ylpYOorfH4o", "wqTCwqVRDlk"], "start_seconds": ["410", "80"], "properties": ["engine, running, wind", "gunfire, ring, speak"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a war zone", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a man speaks followed by another man speaking outside"], "sample_ids": ["sK4u5T8hW78", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "two men, speak, follow"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uYT5gxnyMWM", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["a, scream, girl", "engine, laugh, loud"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a jet engine roars "], "question": "which entity is followed by a scream", "label": 0}, {"captions": ["food is frying then a woman speaks", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["ukxt9I7eMMg", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["food, woman, speak", "animal, grunts, snorts"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking?", "label": 0}, {"captions": ["a train horn blows as it passes by", "people applaud and hoot and chat quietly"], "sample_ids": ["zVacuqSb4LI", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["horn, blows, train", "people, applaud, hoot"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", null], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sQwlkXjQabo", "wDVMhEdTiVw"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "gun, shoot, water"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["spraying followed by silence", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a diesel truck engine runs while wind blows", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xyL9F5VrjkE", "ukg5L09Wpvo"], "start_seconds": ["20", "150"], "properties": ["engine, run, wind", "clickety-clack, train, whistle"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "people speak in the background as a clock ticktocks"], "sample_ids": ["vz8868znkVQ", "vZAw4apG0Es"], "start_seconds": ["60", "30"], "properties": ["audio, click, kid speaking", "background, clock, ticktocks"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a clock is ticking and people are talking"], "question": "which entity has a clock ticking in the background?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "an insect buzzes around continuously"], "sample_ids": ["uRExseg-0XI", "v25l1jef3JY"], "start_seconds": ["210", "0"], "properties": ["woman, man, water", "buzzes, continuously, insect"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["u7C-AEBQM", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["ticks, rhythmic, quiet", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a ticktock of a clock", "a truck is honking its horn and a siren is blaring "], "question": "which entity is louder", "label": 1}, {"captions": ["an engine runs and wind blows", "dishes cling together then a man begins to speak"], "sample_ids": ["vs65y4qmyBE", "sQGXqGcwOTc"], "start_seconds": ["340", "3"], "properties": ["engine, run, wind", "cling, speak, dishes"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a vehicle engine runs as a siren and horn sound", "wind blows as people chatter quietly"], "sample_ids": ["u--KhUW8l1Y", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["sound, vehicle, horn", "wind, chatter, people"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a horse runs while two women talk", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sdvI1mHAsc", "zFjIWfSD-4"], "start_seconds": ["20", "410"], "properties": ["two women, horse, run", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a stable?", "label": 0}, {"captions": ["a man speaks while water trickles and flows", "an infant crying as a woman laughs"], "sample_ids": ["sapQIQUhFc", "xhmRY9yhC7c"], "start_seconds": ["280", "20"], "properties": ["water, trickles, flow", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "the clinking of a train bell with the humming of an engine and a train horn blowing"], "sample_ids": ["wSVhSdj0F0", "zgUgkpk78xU"], "start_seconds": ["10", "70"], "properties": ["horn honks, keys jingle, slam", "clinking, humming, horn"], "captions_pred_video": [null, "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a train?", "label": 1}, {"captions": ["birds vocalize and chirp continuously", "a man speaking with light rustling"], "sample_ids": ["w1mlz3Pe4fU", "zOZleIRqZm4"], "start_seconds": ["300", "80"], "properties": ["vocalize, chirp, continuously", "light, rustling, man"], "captions_pred_video": ["of a bird in a cage", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking with crickets chirping in the background"], "question": "which entity is speaking", "label": 1}, {"captions": ["someone snores nearby", "paper folding and crinkling"], "sample_ids": ["spJCm8tD9Zo", "zPpG3RD8lSs"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "paper, fold, crinkle"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a person is snoring loudly", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vMf1dLD6Sng", "tiDFTC-5vU"], "start_seconds": ["6", "30"], "properties": ["frog, bird, vocalize", "male, duck, laugh"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", null], "captions_pred_audio": ["a frog croaks loudly", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["animals bleat and moo as a person speaks", "water flows as men speak and yell"], "sample_ids": ["tPJvjq9QePY", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["animal, bleat, moo", "water, flow, men"], "captions_pred_video": ["a dog and a sheep in a barn", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a toilet flushes and water sputters as it drains", "water splashes as an animal walks through"], "sample_ids": ["smGI3C1NZc", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["water, drain, toilet", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a toilet is flushed", "water splashes and gurgles as people speak"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "people speak as gunfire rings out"], "sample_ids": ["wz7N8YRy74I", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["rooster, crow, background, people", "gunfire, ring, speak"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["children speak and play together", "people speak as gunfire rings out"], "sample_ids": ["yVVP8XvWJTo", "wqTCwqVRDlk"], "start_seconds": ["260", "80"], "properties": ["children, speak, play", "gunfire, ring, speak"], "captions_pred_video": ["footage of a playground at a school or daycare center", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a clock ticktocks briefly", "a woman and man speak while food is frying"], "sample_ids": ["u7C-AEBQM", "zk-xJGQU8-4"], "start_seconds": ["30", "130"], "properties": ["ticktocks, clock, ticktocks briefly", "food, man, woman"], "captions_pred_video": [null, "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a ticktock of a clock", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "some tunes played by whistling"], "sample_ids": ["ylpYOorfH4o", "u6BnG6YZqJ4"], "start_seconds": ["410", "0"], "properties": ["engine, running, wind", "tune, play, whistling"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["uiS58TNyUiw", "tdWhHV3X25Q"], "start_seconds": ["430", "60"], "properties": ["vocalize, bird, chirp", "applause, audience, yells"], "captions_pred_video": ["of the pigeon in the cage", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking and a crowd is clapping"], "question": "which entity is a response to a performance", "label": 1}, {"captions": ["a woman talking as an infant is crying", "dishes cling together then a man begins to speak"], "sample_ids": ["tMbMDvT50j8", "sQGXqGcwOTc"], "start_seconds": ["12", "3"], "properties": ["a, talk, infant", "cling, speak, dishes"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a baby cries and a woman speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman talking to an infant?", "label": 0}, {"captions": ["several ducks are quacking and squawking", "an engine idles quietly then gradually becomes louder"], "sample_ids": ["wfHeoPDLMaM", "vbr9mHKc8WM"], "start_seconds": ["30", "40"], "properties": ["quacking, squawking, ducks", "noise, loudness, engine"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", null], "captions_pred_audio": ["ducks are quacking", "an engine is idling"], "question": "which entity is quieter", "label": 1}, {"captions": ["a series of light horn beeps is followed by a loud steam whistle", "people cheer as a vehicle engine revs"], "sample_ids": ["wnpJndXuxLc", "xjhAnI2q6hM"], "start_seconds": ["50", "6"], "properties": ["beeps, loud, whistle", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["w5W5Kqtc8E", "uYT5gxnyMWM"], "start_seconds": ["100", "50"], "properties": ["water, splashes, motorboat", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman is speaking and a baby is crying"], "question": "which entity is about a girl speaking followed by a scream?", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["sZPuqDgX2V0", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["engine, accelerate, intercom", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "a woman speaks as she rubs two objects together"], "sample_ids": ["w8uLijTqtlU", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["wind, microphone, noise", "two objects, woman, speak"], "captions_pred_video": ["footage is blurry and shaky", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "a car speeding up in the distance"], "sample_ids": ["y2bVZ7rz-5M", "u0TrcHhkPQ"], "start_seconds": ["280", "20"], "properties": ["engine, horn, siren", "distance, car, speed"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", null], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "wind blowing followed by a zoom"], "sample_ids": ["tDVADusiIoc", "vr8ZXjEBhMQ"], "start_seconds": ["60", "150"], "properties": ["water, radio, man", "wind, blow, zoom"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 1}, {"captions": ["engines sputter roughly and tires squeal", "wind blowing followed by a zoom"], "sample_ids": ["zhx6hoYrHeI", "vr8ZXjEBhMQ"], "start_seconds": ["160", "150"], "properties": ["engine, sputter, rough", "wind, blow, zoom"], "captions_pred_video": ["footage of a man working on a motorcycle's tire", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a car accelerates and revs its engine ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["an insect buzzes around continuously", "a duck quacks several times"], "sample_ids": ["v25l1jef3JY", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["buzzes, continuously, insect", "quacks, duck, several"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "wind blowing followed by a zoom"], "sample_ids": ["tqR406bGiE", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["flush, water, gurgle", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a toilet is flushed", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sxYkFKFIZD0", "tiDFTC-5vU"], "start_seconds": ["20", "30"], "properties": ["screech, man, door", "male, duck, laugh"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has a door open?", "label": 0}, {"captions": ["people converse in the distance as a clock ticks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vZAw4apG0Es", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["people, clock, converse", "men, talk, cars"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an engine runs and a man speaks", "a small engine idles continuously"], "sample_ids": ["yT5WfYMRr-U", "y5WII6cTH7k"], "start_seconds": ["30", "40"], "properties": ["engine, run, man", "engine, idle, continuously"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", "footage of a sewing machine stitching a red and white hat"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "an engine is knocking and vibrating "], "question": "which engine is running", "label": 0}, {"captions": ["someone whistles a tune", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sIXTftIuUgw", "sLUnaPT5gM8"], "start_seconds": ["90", "0"], "properties": ["someone, tune, whistle", "loud, laughter, intermittent"], "captions_pred_video": [null, "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a person whistling a song", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zgUgkpk78xU", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["horn, bell, train", "airplane, boy, fly"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a stream of water runs briefly"], "sample_ids": ["viuTg1M-dqg", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["two men, speak, follow", "stream, water, run"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a stream of water runs briefly"], "sample_ids": ["v7jJS8aAyA", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["wind, blows, loudly", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a stream of water runs briefly"], "sample_ids": ["vuUVPzd2FXw", "x-PeY8Yb8M4"], "start_seconds": ["160", "300"], "properties": ["a, steam, release", "stream, water, run"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "some men converse over an engine running"], "sample_ids": ["zgUgkpk78xU", "sCiy7QS1U"], "start_seconds": ["70", "300"], "properties": ["horn, bells, ring", "men, converse, engine"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a car accelerates and wind blows"], "sample_ids": ["x5cuQjOdM3E", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["cat, meows, young woman", "accelerates, wind, blows"], "captions_pred_video": ["a black background with an airplane flying in the sky", null], "captions_pred_audio": ["a cat meows and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "wind blows as people chatter quietly"], "sample_ids": ["yajyRTUQk3U", "xBxDz0CFVn0"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "wind, chatter, people"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["food is frying while a woman speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yhQ2Lg-7qDY", "w5W5Kqtc8E"], "start_seconds": ["130", "100"], "properties": ["food, woman, speak", "wind, blow, vehicle"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "water pouring and bubbling"], "sample_ids": ["s4Uz1Ffgo04", "uyRfq-jKPpo"], "start_seconds": ["100", "50"], "properties": ["roars, background, people speaking", "water, bubbles, pouring"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "an infant crying as a woman laughs"], "sample_ids": ["sZvwOuuPGP0", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["engine, diesel, truck", "a, laugh, infant"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a medium engine is running ", "a baby cries and a woman speaks"], "question": "which is not a person", "label": 0}, {"captions": ["an engine idles quietly then gradually becomes louder", "vehicles pass by on a roadway"], "sample_ids": ["vbr9mHKc8WM", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["noise, loudness, engine", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["an engine is idling", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["someone snores nearby", "a car accelerates and wind blows"], "sample_ids": ["spJCm8tD9Zo", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["someone snores, nearby, someone", "accelerates, wind, blows"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a clock ticktocks"], "sample_ids": ["wz7N8YRy74I", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, people", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["yVumC9TGknc", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["humming, clock, birds", "beeps, hit, woman"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a series of beeps and chirps", "a beep sounds followed by a child speaking"], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["a sleeping person snores and wheezes", "someone snores nearby"], "sample_ids": ["spJCm8tD9Zo", "spJCm8tD9Zo"], "start_seconds": ["90", "90"], "properties": ["snores, wheezes, sleeps", "someone snores, nearby, someone"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person is snoring loudly", "a person is snoring loudly"], "question": "which entity is a person?", "label": 0}, {"captions": ["a woman sneezes then speaks", "paper folding and crinkling"], "sample_ids": ["x4dZyf9Gbj0", "zPpG3RD8lSs"], "start_seconds": ["130", "20"], "properties": ["sneezes, speaks, woman", "paper, fold, crinkle"], "captions_pred_video": ["footage is blurry and out of focus", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman sneezes and speaks", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling?", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "an infant crying as a woman laughs"], "sample_ids": ["ukxt9I7eMMg", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["food, pan, cook", "a, laugh, infant"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["t97k0cejSQE", "ukg5L09Wpvo"], "start_seconds": ["250", "150"], "properties": ["bird, chirp, insect", "a train, a horn, a bell"], "captions_pred_video": ["a bee on a purple thistle flower", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "birds tweet and squawk"], "sample_ids": ["uEU-Hg5MTN8", "w1mlz3Pe4fU"], "start_seconds": ["27", "300"], "properties": ["a woman, laughs, animal", "squawk, tweet, scream"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of a bird in a cage"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "birds are chirping and singing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["vs65y4qmyBE", "sQGXqGcwOTc"], "start_seconds": ["340", "3"], "properties": ["engine, run, man", "cling, speak, dishes"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "water pouring and bubbling"], "sample_ids": ["xKB8O8LTs6s", "uyRfq-jKPpo"], "start_seconds": ["70", "50"], "properties": ["music, radio, gunshots", "water, bubbles, pouring"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "wind blows as people chatter quietly"], "sample_ids": ["v0x1odnXtP0", "xBxDz0CFVn0"], "start_seconds": ["210", "30"], "properties": ["keyboard, type, computer", "wind, chatter, people"], "captions_pred_video": ["how to make money on youtube in spanish", "footage is blurry and out of focus"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking with wind noise in the background "], "question": "which is quieter", "label": 0}, {"captions": ["white noise and snoring with some rustling in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["xzKKf9bKNUo", "y8WEcpOlT3I"], "start_seconds": ["10", "40"], "properties": ["background, noise, snoring", "harsh, wind, blows"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking with wind noise in the background "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a car speeding up in the distance"], "sample_ids": ["sU53zg9Jp7s", "u0TrcHhkPQ"], "start_seconds": ["380", "20"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "distance, car, speed"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "wind blows as people chatter quietly"], "sample_ids": ["sQGXqGcwOTc", "xBxDz0CFVn0"], "start_seconds": ["3", "30"], "properties": ["audio, kid, giggles", "wind, chatter, people"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage is blurry and out of focus"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a machine runs continuously", "a car speeding up in the distance"], "sample_ids": ["wdXV3Pv0jiY", "u0TrcHhkPQ"], "start_seconds": ["11", "20"], "properties": ["machine, running, continuously", "distance, car, speed"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["mechanisms are operating and a bell is ringing ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["some clanking with distant murmuring", "some men converse over an engine running"], "sample_ids": ["uMTTDZ2mb4", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["clanking, murmuring, distant", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "wind blows as people chatter quietly"], "sample_ids": ["uqFtmnhuqA8", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "wind, chatter, people"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage is blurry and out of focus"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks uses a drill", "water is sprayed across a hard surface"], "sample_ids": ["x5eIC7S0fbg", "sQwlkXjQabo"], "start_seconds": ["60", "10"], "properties": ["A man is speaking, uses a drill, and is a tool", "water, spray, surface"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and using a power tool ", "spraying followed by silence"], "question": "which entity is a tool", "label": 0}, {"captions": ["several ducks are quacking and squawking", "several insects fly while two men talk"], "sample_ids": ["wfHeoPDLMaM", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["quacking, squawking, ducks", "several, fly, men"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["ducks are quacking", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a group of animals?", "label": 0}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "an airplane engine spools and people speak"], "sample_ids": ["vqZuVbG6-HI", "wTjoRj1se3U"], "start_seconds": ["130", "390"], "properties": ["background, male, female", "airplane, engine, spool"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a jet engine is running and people are talking"], "question": "which entity is about an airplane?", "label": 1}, {"captions": ["a clock ticktocks", "paper is crumpling consistently"], "sample_ids": ["v-g-j2uTByM", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["ticktocks, clock, ticktocks", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a clock is ticking loudly", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["wEBlkGWVWwE", "zj2R0XoFr5k"], "start_seconds": ["260", "50"], "properties": ["a, babble, woman", "airplane, boy, fly"], "captions_pred_video": ["shows a person writing on the whiteboard", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "people applaud and hoot and chat quietly"], "sample_ids": ["wqN6IIHw3po", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["rain, surface, fall", "people, applaud, hoot"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", null], "captions_pred_audio": ["a man is speaking and water is splashing", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be in a theater", "label": 1}, {"captions": ["a female speaks softly as paper crinkles", "water pouring and bubbling"], "sample_ids": ["xvDdE3zNf8Y", "uyRfq-jKPpo"], "start_seconds": ["120", "50"], "properties": ["a, female, speaks", "water, bubbles, pouring"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman speaks and crumples paper", "water is running from a faucet"], "question": "which entity is more likely to be a video of a person speaking?", "label": 0}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a horn honks and then loudly blares"], "sample_ids": ["wsHBIgzs9Fs", "wnpJndXuxLc"], "start_seconds": ["50", "50"], "properties": ["horn, continuous, buzzing", "horn, honk, loud"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["an electronic device bleeps once", "crowd applause while a guy laughs followed by another man speaking"], "sample_ids": ["tHJ6JSa8Y4", "tDlfY3nmx1A"], "start_seconds": ["0", "160"], "properties": ["bleeps, electronic, device", "applause, laugh, man"], "captions_pred_video": [null, "a man in a suit and tie is talking to another man in a suit and tie"], "captions_pred_audio": ["a clock is ticking and beeping", "a crowd is clapping and laughing and a man is speaking "], "question": "which entity is a man speaking?", "label": 1}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "vehicle engines race around a track as a man commentates"], "sample_ids": ["sapQIQUhFc", "sZPuqDgX2V0"], "start_seconds": ["280", "30"], "properties": ["liquid, flow, distance", "commentator, race, track"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a man is speaking and a helicopter is flying overhead "], "question": "which entity is about a race", "label": 1}, {"captions": ["a man speaks while rain falls onto a hard surface", "a man sprays as a scraping occurs in the background"], "sample_ids": ["wqN6IIHw3po", "sOa7g-44Dag"], "start_seconds": ["30", "30"], "properties": ["rain, surface, fall", "background, man, spray"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic"], "captions_pred_audio": ["a man is speaking and water is splashing", "a man is speaking and rubbing his hands together "], "question": "which entity is a man speaking?", "label": 0}, {"captions": ["a car accelerates and wind blows", "a woman speaks as she rubs two objects together"], "sample_ids": ["u0TrcHhkPQ", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["accelerates, wind, blows", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a process", "label": 1}, {"captions": ["a person speaks over rustling leaves", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zOZleIRqZm4", "tdWhHV3X25Q"], "start_seconds": ["80", "60"], "properties": ["rustling, leaves, person", "applause, audience, yells"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["an aircraft engine runs", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yLCORCnd35Q", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["engine, aircraft, runs", "three men, wind, flow"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a moving object", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "paper is crumpling consistently"], "sample_ids": ["vlS6YMeWAPo", "v5cSxLaHADY"], "start_seconds": ["40", "0"], "properties": ["sheep, baa, birds", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a goat bleats and birds chirp", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["multiple birds vocalize and wind blows", "a duck quacks continuously"], "sample_ids": ["uoGVs9yUqY4", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["multiple, vocalize, wind", "quacks, continuously, duck"], "captions_pred_video": ["for how to make a wooden shed door youtube", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["birds are chirping and flapping their wings with wind noise in the background ", "a duck is quacking loudly"], "question": "which entity is a single animal", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a propeller rotates loudly and intensely"], "sample_ids": ["rwTERCUno", "ugHJF0hfYkg"], "start_seconds": ["90", "10"], "properties": ["engine, idle, sputter", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["an engine is idling and vibrating", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "an airplane engine runs"], "sample_ids": ["vSeGhaZt-aI", "yVPZ2MNWpms"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, run", "engine, airplane, runs"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tGcFnX0GHI", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["ring, talk, woman", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["some people speak", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vbZ-0lGPneg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "a, scream, girl"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking and a baby is crying"], "question": "which entity has a scream?", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wqADXCzngMw", "uYT5gxnyMWM"], "start_seconds": ["340", "50"], "properties": ["audio, humming, revving", "female, spraying, scream"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a woman is speaking and a baby is crying"], "question": "which entity is a video", "label": 1}, {"captions": ["a man speaking with light rustling", "water flows as men speak and yell"], "sample_ids": ["zOZleIRqZm4", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["light, rustling, man", "water, flow, men"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 0}, {"captions": ["a man speaks while water trickles and flows", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["sapQIQUhFc", "w34HjHr6gAY"], "start_seconds": ["280", "30"], "properties": ["water, trickles, flow", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["tapping occurs then a baby cries", "a person snores loudly multiple times at a close distance"], "sample_ids": ["wIJK3-5y0kA", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["a, cry, baby", "loud, multiple, distance"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a person snores loudly multiple times at a close distance"], "sample_ids": ["tDlysoZiA1I", "sSMl2vc3ek"], "start_seconds": ["0", "20"], "properties": ["animal, grunts, chirps", "loud, multiple, distance"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a stream of water flows as people talk and wind blows"], "sample_ids": ["tEE3MpBt1sg", "xBxDz0CFVn0"], "start_seconds": ["50", "30"], "properties": ["drill, something, laugh", "stream, water, flow"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage is blurry and out of focus"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["food is frying then a woman speaks", "waves crash against a shoreline and people speak"], "sample_ids": ["ukxt9I7eMMg", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["food, woman, speak", "wave, crash, shoreline"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a video of a woman speaking?", "label": 0}, {"captions": ["a baby laugh at a sputter", "someone is typing on a computer keyboard"], "sample_ids": ["sLUnaPT5gM8", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["laugh, sputter, baby", "keyboard, type, computer"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "how to make money on youtube in spanish"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a horse runs while two women talk", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sdvI1mHAsc", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["two women, horse, run", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["w0xsN8X18Y", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["music, surface, rain", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "an engine runs loudly"], "sample_ids": ["zALy31PjDl0", "vqZuVbG6-HI"], "start_seconds": ["21", "130"], "properties": ["a man, a vehicle, a horn", "loud, engine, run"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "white noise and snoring with some rustling in the background"], "sample_ids": ["vqZuVbG6-HI", "xzKKf9bKNUo"], "start_seconds": ["130", "10"], "properties": ["background, male, female", "background, noise, snoring"], "captions_pred_video": ["footage is blurry because it's raining outside", "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a person snoring loudly"], "question": "which entity has a background of noise?", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "waves crash against a shoreline and people speak"], "sample_ids": ["sQGXqGcwOTc", "yFB25fqfU8I"], "start_seconds": ["3", "300"], "properties": ["audio, kid, giggles", "wave, crash, shoreline"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a person surfing in the ocean"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a video", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a man speaks as a car is passing by"], "sample_ids": ["wyllXV6PjKo", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a kid, talk, cry", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a car passing by?", "label": 1}, {"captions": ["multiple adults speaking, and a child shouting in the background", "an emergency vehicle engine runs then a horn blows and siren sounds"], "sample_ids": ["yks4cLgIDMc", "y2bVZ7rz-5M"], "start_seconds": ["170", "280"], "properties": ["background, speaking, child", "engine, horn, siren"], "captions_pred_video": ["footage of two kids wrestling on the floor", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking and a child is crying", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn?", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["tDVADusiIoc", "uqFtmnhuqA8"], "start_seconds": ["60", "30"], "properties": ["wind, radio, waves", "a, b, c"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["vBslzh7saPw", "sLUnaPT5gM8"], "start_seconds": ["90", "0"], "properties": ["power, scream, increase", "loud, laughter, intermittent"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "loud, continuous burping"], "sample_ids": ["vlJS7LN2XyM", "y636gklDioE"], "start_seconds": ["30", "20"], "properties": ["background, clocks, ticking", "loud, continuous, burping"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "a dog sitting on a red chair in front of an old telephone"], "captions_pred_audio": ["a ticktock of a clock", "a person burps loudly several times"], "question": "which entity is louder", "label": 1}, {"captions": ["a male speaks over some small clicks", "a man speaks followed by another man speaking outside"], "sample_ids": ["uXxVebHsGZ8", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["male, clicks, speak", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a person snoring several times", "people speaking indiscriminately in the distance with a person snoring loudly nearby"], "sample_ids": ["spJCm8tD9Zo", "w2JXXIAdUdg"], "start_seconds": ["90", "10"], "properties": ["snore, person, several", "snoring, distance, person"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a close up shot of a person's mouth with a toothbrush in it"], "captions_pred_audio": ["a person is snoring loudly", "a person snoring and a dog whimpering"], "question": "which person is snoring", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a propeller rotates loudly and intensely"], "sample_ids": ["sQGXqGcwOTc", "ugHJF0hfYkg"], "start_seconds": ["3", "10"], "properties": ["cling, speak, dishes", "loud, intense, propeller"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "winds blows roughly as a vehicle races past"], "sample_ids": ["wz7N8YRy74I", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["rooster, crow, background, people", "wind, blows, vehicle"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a jet engine roars and wind blows "], "question": "which entity is about a vehicle racing past?", "label": 1}, {"captions": ["two frogs croak at each other", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["zg0X6BnhOLQ", "tdWhHV3X25Q"], "start_seconds": ["410", "60"], "properties": ["two frogs, croak, at each other", "applause, audience, yells"], "captions_pred_video": ["footage of lightning in the sky at night", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a frog is croaking", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "a car accelerates and wind blows"], "sample_ids": ["xSKJGCItUWE", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["engine, work, child", "accelerates, wind, blows"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["zF8yoL0rkbI", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["engine, run, someone", "a woman, laughs, animal"], "captions_pred_video": ["footage of the traffic on the street at night", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["an infant crying as a woman laughs", "multiple people speak and children yell while water gurgles"], "sample_ids": ["xhmRY9yhC7c", "vb1fPSDI4c"], "start_seconds": ["20", "30"], "properties": ["a, laugh, infant", "multiple, people, yell"], "captions_pred_video": ["of a baby crying in a baby bouncer", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["water rushes by", "heavy rain splashes as it falls"], "sample_ids": ["x-PeY8Yb8M4", "wP8ZKrlx3oA"], "start_seconds": ["300", "40"], "properties": ["water, rushes, by", "fall, rain, splash"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a car is driving on a wet road ", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["children cry and people talk", "a man speaks as a car is passing by"], "sample_ids": ["xLwHe825Zs", "sK4u5T8hW78"], "start_seconds": ["18", "30"], "properties": ["people talk, children cry, people talk", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["vehicles pass by on a roadway", "wind blows as people chatter quietly"], "sample_ids": ["tgbONvsP47Y", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["pass, vehicle, roadway", "wind, chatter, people"], "captions_pred_video": ["footage of a fire truck entering a garage", "footage is blurry and out of focus"], "captions_pred_audio": ["a car is driving on the road ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "a vehicle engine accelerating then running on idle"], "sample_ids": ["vSeGhaZt-aI", "vYkA3cfXp5Q"], "start_seconds": ["50", "30"], "properties": ["water, bubbles, speak", "engine, accelerate, idle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "an engine is idling"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["w2M4i1mklOA", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["loud, chime, bell", "A, game, keyboard"], "captions_pred_video": ["footage of an antique clock", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a man speaks and types on a computer keyboard "], "question": "which entity is playing a game", "label": 1}, {"captions": ["a horn honks and then loudly blares", "someone whistles a tune"], "sample_ids": ["wnpJndXuxLc", "sIXTftIuUgw"], "start_seconds": ["50", "90"], "properties": ["horn, honk, loud", "someone, tune, whistle"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "water flows and trickles"], "sample_ids": ["wSVhSdj0F0", "tB7hWb9gTuQ"], "start_seconds": ["10", "30"], "properties": ["horn honks, keys jingle, slam", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "people applaud and hoot and chat quietly"], "sample_ids": ["vlS6YMeWAPo", "wwyfGO2J4"], "start_seconds": ["40", "90"], "properties": ["sheep, baa, birds", "people, applaud, hoot"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", null], "captions_pred_audio": ["a goat bleats and birds chirp", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a woman speaks as she rubs two objects together"], "sample_ids": ["xyL9F5VrjkE", "vzxHnu-SFEw"], "start_seconds": ["20", "80"], "properties": ["wind, blows, vehicle", "two objects, woman, speak"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a physical action", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "frogs croak and vocalize"], "sample_ids": ["tK4VlLsNxak", "yswmmRZFItk"], "start_seconds": ["120", "0"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "croak, vocalize, frog"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a close up of a frog in the water"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a frog is croaking"], "question": "which entity is a frog", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "birds chirp and a dog breathes heavily"], "sample_ids": ["zuua6-5goWw", "y2ZBGpgbhHM"], "start_seconds": ["30", "30"], "properties": ["sound, pop, bird", "dog, chirp, breathe"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", null], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "birds chirping and a dog panting"], "question": "which entity is about a dog?", "label": 1}, {"captions": ["an infant crying frantically", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zwOBqeFTgiU", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["cry, infant, frantically", "engine, idle, woman"], "captions_pred_video": ["of the baby crying in the car seat", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a baby cries loudly", "a woman is speaking and a subway train is moving "], "question": "which entity is a human", "label": 1}, {"captions": ["an engine starts and increases in power", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["zjTG0gaGCUI", "yDoT73BWsdA"], "start_seconds": ["80", "10"], "properties": ["power, increase, engine", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["food is frying then a woman speaks", "water flows and trickles"], "sample_ids": ["ukxt9I7eMMg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["food, woman, speak", "water, flow, trickle"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a man speaks as a car is passing by"], "sample_ids": ["sZvwOuuPGP0", "sK4u5T8hW78"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "a, car, pass"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a vehicle", "label": 1}, {"captions": ["people speak then an engine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uMTTDZ2mb4", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["engine, run, people", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["people are talking and a car is driving by with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a person speaking and then an engine runs?", "label": 0}, {"captions": ["a railroad crossing bell rings as a train horn blows", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["tZGN5a7ybxo", "yDoT73BWsdA"], "start_seconds": ["60", "10"], "properties": ["ring, train, horn", "engine, revs, vehicle"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a train is moving and blowing its horn ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a person whistles a meandering tune", "people cheer as a vehicle engine revs"], "sample_ids": ["uFoga8sHpiw", "xjhAnI2q6hM"], "start_seconds": ["90", "6"], "properties": ["person, tune, whistle", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a bird in a cage", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person whistles a song", "a truck is revving its engine and a man is speaking "], "question": "which entity is more likely to be in a vehicle", "label": 1}, {"captions": ["a vehicle engine runs and someone speaks", "some men converse over an engine running"], "sample_ids": ["zF8yoL0rkbI", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["engine, run, someone", "men, converse, engine"], "captions_pred_video": ["footage of the traffic on the street at night", null], "captions_pred_audio": ["the wind is blowing hard and water is splashing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["v5P-ThUCINM", "w34HjHr6gAY"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "beeps, hit, woman"], "captions_pred_video": [null, "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "some men converse over an engine running"], "sample_ids": ["tDVADusiIoc", "sCiy7QS1U"], "start_seconds": ["60", "300"], "properties": ["water, radio, man", "men, converse, engine"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking over a radio as wind blows and water splashes?", "label": 0}, {"captions": ["someone is typing on a computer keyboard", "a woman speaks as she rubs two objects together"], "sample_ids": ["v0x1odnXtP0", "vzxHnu-SFEw"], "start_seconds": ["210", "80"], "properties": ["keyboard, type, computer", "two objects, woman, speak"], "captions_pred_video": ["how to make money on youtube in spanish", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking and breathing with mechanisms in the background "], "question": "which object is being rubbed together", "label": 0}, {"captions": ["a woman talks while something is fried and objects are tapped", "water is sprayed across a hard surface"], "sample_ids": ["yajyRTUQk3U", "sQwlkXjQabo"], "start_seconds": ["400", "10"], "properties": ["a woman, something, fried", "water, spray, surface"], "captions_pred_video": ["- a woman cooking in the kitchen", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a man speaks as a car is passing by"], "sample_ids": ["xV7Mg1QucSc", "sK4u5T8hW78"], "start_seconds": ["14", "30"], "properties": ["alarm, ticktocks, laughs", "a, car, pass"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["an airplane engine runs", "wind blowing followed by a zoom"], "sample_ids": ["yVPZ2MNWpms", "vr8ZXjEBhMQ"], "start_seconds": ["0", "150"], "properties": ["engine, airplane, runs", "wind, blow, zoom"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a car is driving by on the road ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is not a zoom?", "label": 0}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a woman speaks happily and an animal chirps"], "sample_ids": ["wqZ135Ssz0", "uWAAAL4CIoc"], "start_seconds": ["60", "0"], "properties": ["man, woman, squawks", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a woman is speaking and a dog is barking "], "question": "which entity has a bird squawks accompanied by a man and woman speaking?", "label": 0}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "paper is crumpling consistently"], "sample_ids": ["tDlfY3nmx1A", "v5cSxLaHADY"], "start_seconds": ["160", "0"], "properties": ["applause, laugh, man", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "paper is crumpled and crinkled"], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a man speaks over intermittent keyboard taps"], "sample_ids": ["weDbePuc-Xc", "tw76HGONaKg"], "start_seconds": ["40", "570"], "properties": ["music, slaps, human", "audio, man, keyboard"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a woman speaks as she rubs two objects together"], "sample_ids": ["yPUYU6t3rwo", "vzxHnu-SFEw"], "start_seconds": ["370", "80"], "properties": ["birds chirp, objects are moved around, birds", "two objects, woman, speak"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["insects buzz and a man speaks", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["humming of idling and revving engine with a man speaking", "a man speaks over intermittent keyboard taps"], "sample_ids": ["wqADXCzngMw", "tw76HGONaKg"], "start_seconds": ["340", "570"], "properties": ["audio, humming, revving", "audio, man, keyboard"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over it?", "label": 0}, {"captions": ["birds tweet and squawk", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["w1mlz3Pe4fU", "tdWhHV3X25Q"], "start_seconds": ["300", "60"], "properties": ["squawk, tweet, scream", "applause, audience, yells"], "captions_pred_video": ["of a bird in a cage", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking and a crowd is clapping"], "question": "which entity is a human activity", "label": 1}, {"captions": ["birds chirp and wind blows", "a man speaks uses a drill"], "sample_ids": ["sxIvBMSavMQ", "x5eIC7S0fbg"], "start_seconds": ["210", "60"], "properties": ["birds, chirp, wind", "A man is speaking, uses a drill, and is a tool"], "captions_pred_video": ["beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a", "a person in surgical gloves is using a needle to remove a small object from a tooth"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a man is speaking and using a power tool "], "question": "which entity is a tool", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a power tool runs and touches a surface"], "sample_ids": ["xfudFO976zE", "zfvPRf3chY"], "start_seconds": ["0", "290"], "properties": ["animal, bleats, cry", "power tool, run, touch"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a man is speaking while a power tool is being used "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a airplane flies overhead as a woman speaks"], "sample_ids": ["tQWGZLItBXk", "zj2R0XoFr5k"], "start_seconds": ["170", "50"], "properties": ["voice, music, whoosh", "airplane, fly, woman"], "captions_pred_video": ["worms revolution screenshots", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a person is snoring while sleeping", "water flows as men speak and yell"], "sample_ids": ["vJrjSeP17yE", "vJ7JPEFhyLA"], "start_seconds": ["40", "16"], "properties": ["a person is sleeping, snoring, person", "water, flow, men"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a person speaking and yelling?", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "waves crash against a shoreline and people speak"], "sample_ids": ["yYJksgsxx5U", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["audio, woman, silverware", "wave, crash, shoreline"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a video", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y2ZBGpgbhHM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["birds, tweet, pant", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds chirping and a dog panting", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "vehicles pass by on a roadway"], "sample_ids": ["uPDn2BFTHk", "tgbONvsP47Y"], "start_seconds": ["140", "0"], "properties": ["woman, laughs, speaks", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a telephone rings followed by a woman talking"], "sample_ids": ["uYT5gxnyMWM", "tGcFnX0GHI"], "start_seconds": ["50", "0"], "properties": ["female, spraying, scream", "ring, talk, woman"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a conversation", "label": 1}, {"captions": ["continuous snoring", "someone whistles a tune"], "sample_ids": ["sLkeqCDJIyw", "sIXTftIuUgw"], "start_seconds": ["120", "90"], "properties": ["loud, snoring, noise", "someone, tune, whistle"], "captions_pred_video": [", what is the man doing on the couch? sleeping", null], "captions_pred_audio": ["a person is snoring loudly", "a person whistling a song"], "question": "which noise is quieter", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "someone snores nearby"], "sample_ids": ["w2JXXIAdUdg", "spJCm8tD9Zo"], "start_seconds": ["10", "90"], "properties": ["snoring, distance, person", "someone snores, nearby, someone"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a person is snoring loudly"], "question": "which entity is a person?", "label": 0}, {"captions": ["leaves rustle while man speaks", "small dogs yip and bark sharply"], "sample_ids": ["zOZleIRqZm4", "v-wcQf4BDY0"], "start_seconds": ["80", "120"], "properties": ["leaves, rustle, speak", "bark, yip, sharply"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a dog barks and growls"], "question": "which entity is more quiet", "label": 0}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a man speaks and is typing on a keyboard"], "sample_ids": ["xKB8O8LTs6s", "x9JovgqUcs"], "start_seconds": ["70", "500"], "properties": ["music, radio, gunshots", "a, man, speaks, keyboard"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", null], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a man speaks and types on a keyboard"], "question": "which entity is typing on a keyboard?", "label": 1}, {"captions": ["a man is filing a hard object", "a propeller rotates loudly and intensely"], "sample_ids": ["vveS8HT7Uog", "ugHJF0hfYkg"], "start_seconds": ["100", "10"], "properties": ["a man, hard, object", "loud, intense, propeller"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a helicopter is flying overhead "], "question": "which object is rotating loudly", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sSMl2vc3ek", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["loud, multiple, distance", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vzceMbklWc", "yDoT73BWsdA"], "start_seconds": ["180", "10"], "properties": ["water, faucet, sink", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["water is running and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a toilet flushes and a female speaks"], "sample_ids": ["t25U-v4k4ts", "yaln9y8I7ms"], "start_seconds": ["40", "230"], "properties": ["bees buzz, birds chirp, man speaks", "female, flushes, toilet"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a toilet flushes and a man speaks"], "question": "which entity is a man speaking?", "label": 0}, {"captions": ["vehicle engines race around a track as a man commentates", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sZPuqDgX2V0", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["commentator, race, track", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is speaking with wind noise in the background "], "question": "which entity is a video of a race?", "label": 0}, {"captions": ["a heavy rain falls endlessly", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wP8ZKrlx3oA", "yajyRTUQk3U"], "start_seconds": ["40", "400"], "properties": ["heavy, rain, fall", "a woman, something, fried"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman is speaking while food is frying in the background"], "question": "which entity is a video of something being fried?", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["un9VQlzgZM", "y8WEcpOlT3I"], "start_seconds": ["5", "40"], "properties": ["females, talk, laugh", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is about a harsh wind blowing?", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a child speaks in closed space"], "sample_ids": ["rwTERCUno", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["engine, idle, sputter", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["an engine is idling and vibrating", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["tDlfY3nmx1A", "vlS6YMeWAPo"], "start_seconds": ["160", "40"], "properties": ["applause, laugh, man", "sheep, baa, birds"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a telephone rings followed by a woman talking"], "sample_ids": ["uRExseg-0XI", "tGcFnX0GHI"], "start_seconds": ["210", "0"], "properties": ["woman, man, water", "ring, talk, woman"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", null], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "several insects fly while two men talk"], "sample_ids": ["wRV8yMk886E", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["liquid, spray, nozzle", "several, fly, men"], "captions_pred_video": ["two cars are parked in a parking lot at night", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more insects", "label": 1}, {"captions": ["a door opens and closes", "a man speaks while playing a video game on a keyboard"], "sample_ids": ["vBHyYJ8pL0", "tw76HGONaKg"], "start_seconds": ["2", "570"], "properties": ["open, close, door", "A, game, keyboard"], "captions_pred_video": [null, "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man speaks and types on a computer keyboard "], "question": "which entity is a person", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["sQGXqGcwOTc", "wqZ135Ssz0"], "start_seconds": ["3", "60"], "properties": ["cling, speak, dishes", "two men, woman, birds"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", null], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["people applaud and hoot and chat quietly", "wind blowing followed by a zoom"], "sample_ids": ["wwyfGO2J4", "vr8ZXjEBhMQ"], "start_seconds": ["90", "150"], "properties": ["people, applaud, hoot", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["wind blows strongly and a young man speaks", "a duck quacks continuously"], "sample_ids": ["vs65y4qmyBE", "vh30P49Po6s"], "start_seconds": ["340", "30"], "properties": ["wind, blows, strongly", "quacks, continuously, duck"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a car accelerates and wind blows"], "sample_ids": ["vlJS7LN2XyM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["background, clocks, ticking", "accelerates, wind, blows"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a race car accelerates and revs its engine "], "question": "which entity is more active", "label": 1}, {"captions": ["a motorcycle engine works nearby", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tOSWIURC-4", "w5W5Kqtc8E"], "start_seconds": ["0", "100"], "properties": ["engine, work, nearby", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a lawn mower is running ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine?", "label": 1}, {"captions": ["a clang followed by a toilet flushing", "a car accelerates and wind blows"], "sample_ids": ["wNZ5thZM7XU", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["sound, flush, toilet", "accelerates, wind, blows"], "captions_pred_video": ["footage of a toilet in a bathroom stall", null], "captions_pred_audio": ["a toilet flushes", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a person speaks over rustling leaves", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zOZleIRqZm4", "vfYTJq7nU"], "start_seconds": ["80", "130"], "properties": ["rustling, leaves, person", "rustling, ducks, quack"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a duck quacks and a woman speaks"], "question": "which entity has a person speaking over rustling leaves?", "label": 0}, {"captions": ["wind blows strongly", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["w8uLijTqtlU", "vbZ-0lGPneg"], "start_seconds": ["70", "30"], "properties": ["wind, blows, strongly", "a woman, a television program, a bird"], "captions_pred_video": ["footage is blurry and shaky", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["the wind is blowing strongly", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["uJV8NDaHqqk", "y8WEcpOlT3I"], "start_seconds": ["100", "40"], "properties": ["loud, fly, chirp", "harsh, wind, blows"], "captions_pred_video": ["a bee hive in a wooden box", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["continuous sneezing together with speech", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["x4dZyf9Gbj0", "uYT5gxnyMWM"], "start_seconds": ["130", "50"], "properties": ["continuous, sneeze, speech", "female, spraying, scream"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman sneezes and speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["an airplane engine runs", "a toilet flushes and water sputters as it drains"], "sample_ids": ["yVPZ2MNWpms", "smGI3C1NZc"], "start_seconds": ["0", "30"], "properties": ["engine, airplane, runs", "water, drain, toilet"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a woman speaks happily and an animal chirps"], "sample_ids": ["xzKKf9bKNUo", "uWAAAL4CIoc"], "start_seconds": ["10", "0"], "properties": ["background, noise, snoring", "a woman, chirps, animal"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", null], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tDVADusiIoc", "vYkA3cfXp5Q"], "start_seconds": ["60", "30"], "properties": ["water, radio, man", "engine, accelerate, idle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a machine beeps continuously"], "sample_ids": ["y8dSeubCNI", "y682ml90jGw"], "start_seconds": ["4", "11"], "properties": ["men, women, car", "beeps, machine, continuously"], "captions_pred_video": [null, null], "captions_pred_audio": ["an engine revving and people talking in the background", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vlS6YMeWAPo", "xKB8O8LTs6s"], "start_seconds": ["40", "70"], "properties": ["noise, bleat, call", "music, gunfire, explosion"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a goat bleats and birds chirp", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["zj2R0XoFr5k", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["airplane, fly, woman", "water, radio, man"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a train horn sounds as the train approaches", "a horn rings out as a machine runs by"], "sample_ids": ["slZLHwNbbt4", "slZLHwNbbt4"], "start_seconds": ["300", "300"], "properties": ["train, horn, sound", "a, horn, run"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a clock alarm sounds and gears turn", "a duck quacks continuously"], "sample_ids": ["w2M4i1mklOA", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["alarm, gears, turn", "quacks, continuously, duck"], "captions_pred_video": ["footage of an antique clock", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["the revving of an engine throttle followed by a man speaking", "wind blowing followed by a zoom"], "sample_ids": ["tezvROoo4bs", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["audio, throttle, speaking", "wind, blow, zoom"], "captions_pred_video": ["footage of a busy city street with cars parked on both sides of the road", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a car accelerates and revs while a man speaks ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a video", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vzxHnu-SFEw", "vb1fPSDI4c"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "multiple, people, yell"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a crowd of people are talking and laughing"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "birds chirp and objects are moved around"], "sample_ids": ["uiS58TNyUiw", "yPUYU6t3rwo"], "start_seconds": ["430", "370"], "properties": ["vocalize, bird, chirp", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of the pigeon in the cage", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "insects buzz and a man speaks"], "question": "which entity is a video of birds chirping?", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "water drips and bubbles as a man speaks"], "sample_ids": ["wvKpEYswXO0", "vSeGhaZt-aI"], "start_seconds": ["150", "50"], "properties": ["plastic, tap, speak", "water, bubbles, speak"], "captions_pred_video": ["of the person preparing food in the kitchen", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is a liquid", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "an engine runs loudly"], "sample_ids": ["wDVMhEdTiVw", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["gun, shoot, water", "loud, engine, run"], "captions_pred_video": ["a blurry image of trees and water in the forest", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "an airplane engine spools and people speak"], "sample_ids": ["wyllXV6PjKo", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["a kid, talk, cry", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a woman speaks and a baby cries", "a jet engine is running and people are talking"], "question": "which entity is about a kid?", "label": 0}, {"captions": ["someone snores nearby", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["spJCm8tD9Zo", "tdWhHV3X25Q"], "start_seconds": ["90", "60"], "properties": ["someone snores, nearby, someone", "applause, audience, yells"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "vehicles pass by on a roadway"], "sample_ids": ["yswmmRZFItk", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["background, frog, croak", "pass, vehicle, roadway"], "captions_pred_video": ["a close up of a frog in the water", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a frog is croaking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a stream runs then someone speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wbHTKEJZyhc", "wz7N8YRy74I"], "start_seconds": ["20", "30"], "properties": ["stream, run, someone", "rooster, crow, background, men"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vf9xf3vMsGM", "xfaoyyzw2WU"], "start_seconds": ["540", "180"], "properties": ["A man speaks while turning a water faucet on.", "loud, jet engine, roar"], "captions_pred_video": ["of the person washing their hands under the faucet", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking while water is running in the background", "an aircraft engine roars and a man speaks "], "question": "which entity is quieter", "label": 0}, {"captions": ["a woman speaks and is crumpling paper", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["xvDdE3zNf8Y", "zj2R0XoFr5k"], "start_seconds": ["120", "50"], "properties": ["A, crumple, paper", "airplane, boy, fly"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman speaks and crumples paper", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a car accelerates and wind blows"], "sample_ids": ["sDSppXIlJrs", "u0TrcHhkPQ"], "start_seconds": ["27", "20"], "properties": ["microphone, water, wind", "accelerates, wind, blows"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", null], "captions_pred_audio": ["the wind is blowing and water is splashing", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zsLxS-uLJTw", "w5W5Kqtc8E"], "start_seconds": ["20", "100"], "properties": ["horn, blast, train", "wind, blow, vehicle"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", null], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a vehicles accelerate quickly and someone laughs", "a person whistles a meandering tune"], "sample_ids": ["uWPRNLnpy7Y", "uFoga8sHpiw"], "start_seconds": ["10", "90"], "properties": ["accelerate, laugh, vehicle", "person, tune, whistle"], "captions_pred_video": ["is taken from a car driving down the street", "footage of a bird in a cage"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a person whistles a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a woman speaks and a baby laughs", "paper folding and crinkling"], "sample_ids": ["tOj4tdLRaA", "zPpG3RD8lSs"], "start_seconds": ["70", "20"], "properties": ["woman, laugh, baby", "paper, fold, crinkle"], "captions_pred_video": [null, "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a baby laughs and a woman speaks", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["zTLVJCo4WEE", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["two people, adult, speak", "animal, grunts, snorts"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a woman is speaking and a baby is crying"], "question": "which entity has a more snorts", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "waves crash against a shoreline and people speak"], "sample_ids": ["uRExseg-0XI", "yFB25fqfU8I"], "start_seconds": ["210", "300"], "properties": ["woman, man, water", "wave, crash, shoreline"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more active", "label": 1}, {"captions": ["male speech with light ticking", "water is sprayed across a hard surface"], "sample_ids": ["xO-Q2BlIIPU", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["male, speech, ticking", "water, spray, surface"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "water is sprayed across a hard surface"], "sample_ids": ["rwTERCUno", "sQwlkXjQabo"], "start_seconds": ["90", "10"], "properties": ["engine, idle, sputter", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["an engine is idling and vibrating", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a clock ticktocks"], "sample_ids": ["w2M4i1mklOA", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["loud, chime, bell", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of an antique clock", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a clock is ticking loudly"], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks and other women and a man talk with her", "long loud burping by a man"], "sample_ids": ["vbpKkWvfOu4", "xmiUIOhtZyQ"], "start_seconds": ["560", "60"], "properties": ["a, woman, man", "loud, burp, man"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "homer simpson drinking a beer"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a person burps and music plays in the background "], "question": "which entity is a burp", "label": 1}, {"captions": ["women speak and laugh as wind blows", "someone whistles a tune"], "sample_ids": ["un9VQlzgZM", "sIXTftIuUgw"], "start_seconds": ["5", "90"], "properties": ["wind, speak, laugh", "someone, tune, whistle"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a duck quacks continuously"], "sample_ids": ["yPUYU6t3rwo", "vh30P49Po6s"], "start_seconds": ["370", "30"], "properties": ["birds chirp, objects are moved around, birds", "quacks, continuously, duck"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["insects buzz and a man speaks", "a duck is quacking loudly"], "question": "which entity is a bird", "label": 0}, {"captions": ["a woman and man are speaking", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["vbpKkWvfOu4", "uYT5gxnyMWM"], "start_seconds": ["560", "50"], "properties": ["two people, speaking, woman, man", "a, scream, girl"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a wooden clack accompanies nearby chirping birds"], "sample_ids": ["sWZzXuWYY", "yeFvk9x0wWI"], "start_seconds": ["420", "30"], "properties": ["male, clanks, thumps", "clack, bird, chirp"], "captions_pred_video": [null, "a mouse in a cage on the sidewalk in front of a fence"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "birds chirp in the background as a car drives by "], "question": "which entity is accompanied by birds", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a vehicle engine accelerating then running on idle"], "sample_ids": ["zgUgkpk78xU", "vYkA3cfXp5Q"], "start_seconds": ["70", "30"], "properties": ["clinking, humming, horn", "engine, accelerate, idle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a vehicle accelerates and squeals tires"], "sample_ids": ["xjvTpk2Zpr8", "yRx9txMcBl0"], "start_seconds": ["70", "40"], "properties": ["engine, run, wind", "accelerates, tires, squeals"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a car is revving its engine and skidding "], "question": "which entity is moving", "label": 1}, {"captions": ["an airplane accelerates briefly", "someone sprays a liquid onto a hard surface making a hiss sound"], "sample_ids": ["zjTG0gaGCUI", "zO-LSSY92ZM"], "start_seconds": ["80", "30"], "properties": ["accelerates, airplane, briefly", "liquid, surface, sound"], "captions_pred_video": [null, "youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car's air filter youtube how to clean your car'"], "captions_pred_audio": ["a jet engine roars as wind blows ", "steam is hissing and hissing"], "question": "which entity is not a liquid?", "label": 0}, {"captions": ["speaking following by laughing and clapping", "several insects fly while two men talk"], "sample_ids": ["u2f5NpsoHBg", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["person, laugh, clap", "several, fly, men"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a person speaking and laughing and clapping?", "label": 0}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a child speaks in closed space"], "sample_ids": ["uEU-Hg5MTN8", "yW6FWLSLkx4"], "start_seconds": ["27", "40"], "properties": ["a woman, laughs, animal", "child, space, speak"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a baby cries and a woman speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tMbMDvT50j8", "zj2R0XoFr5k"], "start_seconds": ["12", "50"], "properties": ["a, cry, woman", "airplane, boy, fly"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a baby crying and a woman speaking?", "label": 0}, {"captions": ["dishes cling together then a man begins to speak", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sQGXqGcwOTc", "xKB8O8LTs6s"], "start_seconds": ["3", "70"], "properties": ["cling, speak, dishes", "music, gunfire, explosion"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "a stream of water runs briefly"], "sample_ids": ["wTjoRj1se3U", "x-PeY8Yb8M4"], "start_seconds": ["390", "300"], "properties": ["engine, run, people", "stream, water, run"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vYkA3cfXp5Q", "xfaoyyzw2WU"], "start_seconds": ["30", "180"], "properties": ["engine, accelerate, idle", "loud, jet engine, roar"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["an engine is idling", "an aircraft engine roars and a man speaks "], "question": "which engine is louder", "label": 1}, {"captions": ["ducks quack as a man speaks and makes a duck sound", "water pouring and bubbling"], "sample_ids": ["vfYTJq7nU", "uyRfq-jKPpo"], "start_seconds": ["130", "50"], "properties": ["ducks, quack, man", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a duck quacks and a woman speaks", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "people applaud and hoot and chat quietly"], "sample_ids": ["vlJS7LN2XyM", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["background, clocks, ticking", "people, applaud, hoot"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "people speak as gunfire rings out"], "sample_ids": ["yRx9txMcBl0", "wqTCwqVRDlk"], "start_seconds": ["40", "80"], "properties": ["accelerates, tires, squeals", "gunfire, ring, speak"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["wind blows as people chatter quietly", "water flows and trickles"], "sample_ids": ["xBxDz0CFVn0", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["wind, chatter, people", "water, flow, trickle"], "captions_pred_video": ["footage is blurry and out of focus", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a vehicle engine accelerating then running on idle", "a clock ticktocks and sounds an alarm then a man laughs"], "sample_ids": ["vYkA3cfXp5Q", "xV7Mg1QucSc"], "start_seconds": ["30", "14"], "properties": ["engine, accelerate, idle", "alarm, ticktocks, laughs"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "a cuckoo clock hanging on the wall"], "captions_pred_audio": ["an engine is idling", "an alarm clock ticks and a woman laughs"], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["an engine runs and wind blows", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["vs65y4qmyBE", "xKB8O8LTs6s"], "start_seconds": ["340", "70"], "properties": ["engine, run, wind", "music, gunfire, explosion"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "an airplane engine spools and people speak"], "sample_ids": ["v7jJS8aAyA", "wTjoRj1se3U"], "start_seconds": ["10", "390"], "properties": ["wind, blows, loudly", "airplane, engine, spool"], "captions_pred_video": [null, "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a jet engine is running and people are talking"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["water gurgles, metal squeaks and the water stops", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["x4a9YGIw4ok", "yajyRTUQk3U"], "start_seconds": ["120", "400"], "properties": ["water, gurgles, stops", "a woman, something, fried"], "captions_pred_video": ["footage is blurry and out of focus", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a toilet flushes and water splashes", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a man speaks over intermittent keyboard taps", "a duck quacks loudly and continuously"], "sample_ids": ["tw76HGONaKg", "vh30P49Po6s"], "start_seconds": ["570", "30"], "properties": ["audio, man, keyboard", "loud, continuous, quacks"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tDlysoZiA1I", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["animal, grunts, chirps", "a woman, something, fried"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "some tunes played by whistling"], "sample_ids": ["wAAkbZToh8", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["burp, laugh, speak", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man burps and a woman speaks", "a person whistling a song"], "question": "which entity is playing a tune", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "people applaud and hoot and chat quietly"], "sample_ids": ["wvKpEYswXO0", "wwyfGO2J4"], "start_seconds": ["150", "90"], "properties": ["plastic, tap, speak", "people, applaud, hoot"], "captions_pred_video": ["of the person preparing food in the kitchen", null], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "people are clapping and speaking with background noise "], "question": "which entity is a group of people", "label": 1}, {"captions": ["a person snoring", "water flows and trickles"], "sample_ids": ["t8tv5YRMJUg", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["a person, snore, loud", "water, flow, trickle"], "captions_pred_video": ["of a man getting his face licked by another man", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a person sniffs and breathes heavily", "water is splashing and gurgling"], "question": "which entity is not loud", "label": 1}, {"captions": ["water flows followed by women screaming", "winds blows roughly as a vehicle races past"], "sample_ids": ["w5W5Kqtc8E", "xjvTpk2Zpr8"], "start_seconds": ["100", "70"], "properties": ["water, flow, women", "wind, blows, vehicle"], "captions_pred_video": [null, "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a jet engine roars and wind blows "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "a toilet flushes and water drains"], "sample_ids": ["wtDqrBygTcU", "sfAvvZwdLCY"], "start_seconds": ["30", "20"], "properties": ["man, engine, run", "water drains, flushes, water"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and a motor is running", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vbZ-0lGPneg", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["a woman, a television program, a bird", "airplane, boy, fly"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "a car accelerates and wind blows"], "sample_ids": ["wTideSjRFS0", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["food, sizzle, woman", "accelerates, wind, blows"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["someone snores nearby", "a woman speaks happily and an animal chirps"], "sample_ids": ["spJCm8tD9Zo", "uWAAAL4CIoc"], "start_seconds": ["90", "0"], "properties": ["someone snores, nearby, someone", "a woman, chirps, animal"], "captions_pred_video": ["of a man laying on the ground with his mouth open", null], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking and a dog is barking "], "question": "which entity is more active", "label": 1}, {"captions": ["a stream of water flows quickly", "pigeons vocalize and birds chirp"], "sample_ids": ["wbHTKEJZyhc", "uiS58TNyUiw"], "start_seconds": ["20", "430"], "properties": ["stream, water, flow", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of the pigeon in the cage"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a stream of water?", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sU53zg9Jp7s", "yajyRTUQk3U"], "start_seconds": ["380", "400"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "a woman, something, fried"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", "- a woman cooking in the kitchen"], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["vms5XGTDVQc", "zj2R0XoFr5k"], "start_seconds": ["220", "50"], "properties": ["paper, crumpled, crinkled", "airplane, boy, fly"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["paper is crumpled and crinkled", "a woman speaks while a helicopter flies overhead "], "question": "which entity is not flying?", "label": 0}, {"captions": ["an audience gives applause", "women speak and laugh as wind blows"], "sample_ids": ["x6iCUDmRpKQ", "un9VQlzgZM"], "start_seconds": ["38", "5"], "properties": ["applause, audience, give", "wind, speak, laugh"], "captions_pred_video": ["a black background with the moon and stars in the sky", null], "captions_pred_audio": ["a group of people are clapping and cheering", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a weapon fires multiple times"], "sample_ids": ["tDlysoZiA1I", "sMC07Ucy7kg"], "start_seconds": ["0", "10"], "properties": ["animal, grunts, chirps", "weapon, fire, multiple"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage is from a car's point of view"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["women speak and laugh as wind blows", "wind blowing followed by a zoom"], "sample_ids": ["un9VQlzgZM", "vr8ZXjEBhMQ"], "start_seconds": ["5", "150"], "properties": ["wind, speak, laugh", "wind, blow, zoom"], "captions_pred_video": [null, "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more likely to be a video of a wind blowing?", "label": 1}, {"captions": ["a person sniffles and sneezes", "a clock ticks quietly and rhythmically"], "sample_ids": ["uRlbY6aoBU", "u7C-AEBQM"], "start_seconds": ["0", "30"], "properties": ["sneezes, sniffles, person", "ticks, rhythmic, quiet"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is sneezing ", "a ticktock of a clock"], "question": "which entity is silent", "label": 1}, {"captions": ["a small musical boom and then birds tweet and a few dogs pant", "a stream of water runs briefly"], "sample_ids": ["y2ZBGpgbhHM", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["birds, tweet, pant", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["birds chirping and a dog panting", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a child speaks in closed space", "vehicles pass by on a roadway"], "sample_ids": ["yW6FWLSLkx4", "tgbONvsP47Y"], "start_seconds": ["40", "0"], "properties": ["child, space, speak", "pass, vehicle, roadway"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a person uses a saw to cut some wood", "some men converse over an engine running"], "sample_ids": ["sHbXC6na9hg", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["a person, saw, wood", "men, converse, engine"], "captions_pred_video": ["a man using a tractor to cut a log into firewood youtube", null], "captions_pred_audio": ["an engine is idling and vibrating", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a person cutting wood?", "label": 0}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "wind loudly blowing while people speak in the background followed by a horn blowing"], "sample_ids": ["vdoxuJn9lTc", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["burp, loud, girl", "wind, blow, loudly"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a child speaks followed by a burp", "a truck is revving its engine and a man is speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "a woman speaks happily and an animal chirps"], "sample_ids": ["w2M4i1mklOA", "uWAAAL4CIoc"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "a woman, chirps, animal"], "captions_pred_video": ["footage of an antique clock", null], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a woman is speaking and a dog is barking "], "question": "which entity is quieter", "label": 1}, {"captions": ["a drill runs and two people laugh", "people speak as gunfire rings out"], "sample_ids": ["tEE3MpBt1sg", "wqTCwqVRDlk"], "start_seconds": ["50", "80"], "properties": ["two people, laugh, drill", "gunfire, ring, speak"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "water flows and trickles"], "sample_ids": ["uZesmtKZGSw", "tB7hWb9gTuQ"], "start_seconds": ["250", "30"], "properties": ["car, track, man", "water, flow, trickle"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a person sniffs and sneezes"], "sample_ids": ["sZPuqDgX2V0", "uRlbY6aoBU"], "start_seconds": ["30", "0"], "properties": ["commentator, race, track", "sneezes, person, sniffs"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a man is sneezing "], "question": "which entity is not a person?", "label": 0}, {"captions": ["two men speak as a buffeting wind blows", "a female speaks softly as paper crinkles"], "sample_ids": ["y8WEcpOlT3I", "xvDdE3zNf8Y"], "start_seconds": ["40", "120"], "properties": ["wind, speak, buffeting", "a, female, speaks"], "captions_pred_video": ["on how to use a sewing machine youtube", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman speaks and crumples paper"], "question": "which entity is speaking softly", "label": 1}, {"captions": ["a person speaks over rustling leaves", "paper is crumpling consistently"], "sample_ids": ["zOZleIRqZm4", "v5cSxLaHADY"], "start_seconds": ["80", "0"], "properties": ["rustling, leaves, person", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vddP56-ogds", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["water, flow, laugh", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "a infant makes noise and is excited"], "sample_ids": ["tDVADusiIoc", "wIJK3-5y0kA"], "start_seconds": ["60", "30"], "properties": ["man, radio, blows", "noise, excited, infant"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a baby cries and wails as an adult female speaks", "water pouring and bubbling"], "sample_ids": ["zliInBdC98Y", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["a, baby, cries, wails", "water, bubbles, pouring"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a baby cries and a woman speaks", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a woman speaks as she rubs two objects together"], "sample_ids": ["vSeGhaZt-aI", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["water, sink, talk", "two objects, woman, speak"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a man talking?", "label": 0}, {"captions": ["wind blows and people talk while livestock vocalizes", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vXlk0lIQBFo", "vb1fPSDI4c"], "start_seconds": ["470", "30"], "properties": ["wind, talk, vocalize", "multiple, people, yell"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", null], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a crowd of people are talking and laughing"], "question": "which entity has more people", "label": 1}, {"captions": ["a person is snoring while sleeping", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["vJrjSeP17yE", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["a person is sleeping, snoring, person", "a woman, laughs, animal"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["some men converse over an engine running", "a man speaks as a car is passing by"], "sample_ids": ["sCiy7QS1U", "sK4u5T8hW78"], "start_seconds": ["300", "30"], "properties": ["men, converse, engine", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a goat screams and people speak in the background", "some tunes played by whistling"], "sample_ids": ["xC8kbrKJmco", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["background, goat, scream", "tune, play, whistling"], "captions_pred_video": [null, "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a goat is bleating ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a male speaks over some small clicks", "a clock ticktocks"], "sample_ids": ["uXxVebHsGZ8", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["male, clicks, speak", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["tapping occurs then a baby cries", "an infant crying frantically"], "sample_ids": ["wIJK3-5y0kA", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["a, cry, baby", "cry, infant, frantically"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "of the baby crying in the car seat"], "captions_pred_audio": ["a baby cries and a woman speaks", "a baby cries loudly"], "question": "which entity is crying frantically", "label": 1}, {"captions": ["a clock ticktocks in wind", "waves crash against a shoreline and people speak"], "sample_ids": ["yVumC9TGknc", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["ticktocks, clock, wind", "wave, crash, shoreline"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["a person snoring", "a man talks as something metal hits against and glass is set down"], "sample_ids": ["t8tv5YRMJUg", "x6ijhqRY38s"], "start_seconds": ["0", "250"], "properties": ["a person, snore, loud", "something metal, glass, hit"], "captions_pred_video": ["of a man getting his face licked by another man", "a chef preparing a dish with a bottle of wine and a plate of food on a table"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a man is speaking and dishes are clanging "], "question": "which entity is not a person?", "label": 1}, {"captions": ["a heavy rain falls endlessly", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wP8ZKrlx3oA", "vYkA3cfXp5Q"], "start_seconds": ["40", "30"], "properties": ["heavy, rain, fall", "engine, accelerate, idle"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a heavy rain is falling on a surface", "an engine is idling"], "question": "which entity is a moving object", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["yNtRmrn0io8", "uEU-Hg5MTN8"], "start_seconds": ["210", "27"], "properties": ["storm, distance, strike", "a woman, laughs, animal"], "captions_pred_video": ["footage of a house in the middle of the night", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["rain falls and thunder roars", "a woman is speaking and a baby is crying"], "question": "which entity is more likely to be a natural occurrence", "label": 0}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["su6FAOcOA8c", "wqZ135Ssz0"], "start_seconds": ["4", "60"], "properties": ["engine, run, woman", "two men, woman, birds"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", null], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has a woman making an announcement?", "label": 0}, {"captions": ["a woman speaks and a baby laughs", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tOj4tdLRaA", "vfYTJq7nU"], "start_seconds": ["70", "130"], "properties": ["woman, laugh, baby", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby laughs and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a baby?", "label": 0}, {"captions": ["a man speaks as a car is passing by", "a man speaks as a car is passing by"], "sample_ids": ["sK4u5T8hW78", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "a, car, pass"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a photograph", "label": 1}, {"captions": ["water runs into a sink while men speak", "dishes cling together then a man begins to speak"], "sample_ids": ["vzceMbklWc", "sQGXqGcwOTc"], "start_seconds": ["180", "3"], "properties": ["water, sink, run", "cling, speak, dishes"], "captions_pred_video": [null, "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["water is running and a man is speaking", "mechanisms are operating and water is splashing "], "question": "which entity is about a sink?", "label": 0}, {"captions": ["birds coo incessantly", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["yZrFNS7GFBQ", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["coo, bird, incessant", "music, gunfire, explosion"], "captions_pred_video": ["of the bird in the cage", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["an owl hoots in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "water flows as men speak and yell"], "sample_ids": ["vzxHnu-SFEw", "vJ7JPEFhyLA"], "start_seconds": ["80", "16"], "properties": ["two objects, woman, speak", "water, flow, men"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing?", "label": 1}, {"captions": ["a person is snoring while sleeping", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["vJrjSeP17yE", "vlS6YMeWAPo"], "start_seconds": ["40", "40"], "properties": ["a person is sleeping, snoring, person", "sheep, baa, birds"], "captions_pred_video": ["a black background with a small plane flying in the sky", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a person snoring loudly", "a goat bleats and birds chirp"], "question": "which entity is a person", "label": 0}, {"captions": ["an engine idles quietly then gradually becomes louder", "humming and rattling of an engine idling as it revs"], "sample_ids": ["vbr9mHKc8WM", "xMXvkIcaG0Y"], "start_seconds": ["40", "30"], "properties": ["noise, loudness, engine", "sound, humming, rattling"], "captions_pred_video": [null, "footage of a car's hood being opened up to reveal the engine underneath the hood"], "captions_pred_audio": ["an engine is idling", "an engine is revving and accelerating "], "question": "which entity is quieter", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["vbpKkWvfOu4", "wz7N8YRy74I"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "rooster, crow, background, men"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a person is whistling a tune", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["scYRUkrFLiQ", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["a, tune, whistle", "a woman, a television program, a bird"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person?", "label": 0}, {"captions": ["repeated tapping is accompanied by water running and a woman speaking softly", "a infant makes noise and is excited"], "sample_ids": ["wvKpEYswXO0", "wIJK3-5y0kA"], "start_seconds": ["150", "30"], "properties": ["sound, water, running", "noise, excited, infant"], "captions_pred_video": ["of the person preparing food in the kitchen", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a baby cries and a woman speaks"], "question": "which entity is making noise", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wRBHTgrbiwg", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["bird, owl, speak", "loud, laughter, intermittent"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a jet engine roars, almost making a man inaudible", "a vehicle engine runs and someone speaks"], "sample_ids": ["xfaoyyzw2WU", "zF8yoL0rkbI"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "engine, run, someone"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "footage of the traffic on the street at night"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "the wind is blowing hard and water is splashing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["v5P-ThUCINM", "y2bVZ7rz-5M"], "start_seconds": ["400", "280"], "properties": ["background, chirp, bird", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a truck is honking its horn and a siren is blaring "], "question": "which entity has a horn honking?", "label": 1}, {"captions": ["wind noise takes place into a microphone while rustling occurs", "rain falls on a surface as men speak and thunder roars"], "sample_ids": ["w8uLijTqtlU", "w0xsN8X18Y"], "start_seconds": ["70", "30"], "properties": ["wind, microphone, noise", "rain, thunder, surface"], "captions_pred_video": ["footage is blurry and shaky", null], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking while a motorboat is moving in the background "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["ylpYOorfH4o", "sLUnaPT5gM8"], "start_seconds": ["410", "0"], "properties": ["engine, running, wind", "loud, laughter, intermittent"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking and an engine is revving", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "paper is crumpling consistently"], "sample_ids": ["sjlVMgdGSK0", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["accelerates, vehicle, race car", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an engine runs and wind blows", "a vehicle engine accelerates and wind blows"], "sample_ids": ["vs65y4qmyBE", "wudZTNBtVqc"], "start_seconds": ["340", "60"], "properties": ["engine, run, wind", "accelerates, engine, wind"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage is of a parking lot with cars parked in it"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a woman sneezes then speaks", "vehicles pass by on a roadway"], "sample_ids": ["x4dZyf9Gbj0", "tgbONvsP47Y"], "start_seconds": ["130", "0"], "properties": ["sneezes, speaks, woman", "pass, vehicle, roadway"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a woman sneezes and speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks uses a drill", "a car accelerates and wind blows"], "sample_ids": ["x5eIC7S0fbg", "u0TrcHhkPQ"], "start_seconds": ["60", "20"], "properties": ["A man is speaking, uses a drill, and is a tool", "accelerates, wind, blows"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", null], "captions_pred_audio": ["a man is speaking and using a power tool ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "a man speaks as a motor runs in the background"], "sample_ids": ["wqZ135Ssz0", "xZepNM9qcRA"], "start_seconds": ["60", "30"], "properties": ["two men, woman, birds", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "someone whistles a tune"], "sample_ids": ["viuTg1M-dqg", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["two men, speak, follow", "someone, tune, whistle"], "captions_pred_video": ["footage of water coming out of a hole in the ground", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["birds chirp then an animal grunts", "women speak as water runs briefly, children call out, and a man speaks"], "sample_ids": ["tDlysoZiA1I", "uRExseg-0XI"], "start_seconds": ["0", "210"], "properties": ["animal, grunt, chirp", "woman, man, water"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking while water is running and birds are chirping "], "question": "which entity has more people", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "multiple people speak and children yell while water gurgles"], "sample_ids": ["t97k0cejSQE", "vb1fPSDI4c"], "start_seconds": ["250", "30"], "properties": ["bird, chirp, insect", "multiple, people, yell"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["females talk and laugh over gusting wind", "a stream of water flows as people talk and wind blows"], "sample_ids": ["un9VQlzgZM", "xBxDz0CFVn0"], "start_seconds": ["5", "30"], "properties": ["females, talk, laugh", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a heavy rain falls endlessly"], "sample_ids": ["tiDFTC-5vU", "wP8ZKrlx3oA"], "start_seconds": ["30", "40"], "properties": ["male, duck, laugh", "heavy, rain, fall"], "captions_pred_video": [null, "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a heavy rain is falling on a surface"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["an insect buzzes around continuously", "a car speeding up in the distance"], "sample_ids": ["v25l1jef3JY", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["buzzes, continuously, insect", "distance, car, speed"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["low humming with a clock ticking and birds chirping", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yVumC9TGknc", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["humming, clock, birds", "rustling, ducks, quack"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", null], "captions_pred_audio": ["a series of beeps and chirps", "a duck quacks and a woman speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a guy speaks with birds chirping in the background", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["v5P-ThUCINM", "wDVMhEdTiVw"], "start_seconds": ["400", "30"], "properties": ["background, chirp, bird", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and birds are chirping", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xyL9F5VrjkE", "uZesmtKZGSw"], "start_seconds": ["20", "250"], "properties": ["wind, motor, distance", "men, talk, cars"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["scraping and female speech with distant music", "a drill runs and two people laugh"], "sample_ids": ["yHeVV-xeOxQ", "tEE3MpBt1sg"], "start_seconds": ["130", "50"], "properties": ["female, speech, music", "two people, laugh, drill"], "captions_pred_video": ["of a girl milking a goat's udder", "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["a woman is speaking and scraping sounds are heard in the background ", "people are laughing breathing and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sOa7g-44Dag", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["audio, scratching, man", "a woman, something, fried"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "an engine sputters followed by a car zooming by"], "sample_ids": ["zl9Dqx-j7q4", "u5RmF3c3Aw"], "start_seconds": ["6", "60"], "properties": ["motors rev, laugh, loudly", "engine, car, zoom"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a race car accelerates and skids with wind noise in the background "], "question": "which entity is a car?", "label": 1}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vmrxwuAMb2I", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["a dog, inhales, exhales", "applause, audience, yells"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a dog barks and growls", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "small dogs yip and bark sharply"], "sample_ids": ["sEprKHm8Sj8", "v-wcQf4BDY0"], "start_seconds": ["90", "120"], "properties": ["car, tires, slows", "bark, yip, sharply"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "a person is snoring while sleeping"], "sample_ids": ["tK4VlLsNxak", "vJrjSeP17yE"], "start_seconds": ["120", "40"], "properties": ["a, dial, telephone", "a person is sleeping, snoring, person"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a man rubs two objects together then speaks", "a motorcycle engine works nearby"], "sample_ids": ["vveS8HT7Uog", "tOSWIURC-4"], "start_seconds": ["100", "0"], "properties": ["a man, objects, speak", "engine, work, nearby"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a lawn mower is running "], "question": "which object is moving", "label": 1}, {"captions": ["a person snoring", "vehicles pass by on a roadway"], "sample_ids": ["t8tv5YRMJUg", "tgbONvsP47Y"], "start_seconds": ["0", "0"], "properties": ["a person, snore, loud", "pass, vehicle, roadway"], "captions_pred_video": ["of a man getting his face licked by another man", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["someone whistles a tune", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sIXTftIuUgw", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["someone, tune, whistle", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person whistling a song", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "someone whistles a tune"], "sample_ids": ["wy1eKjR7KC0", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["people, talk, distance", "someone, tune, whistle"], "captions_pred_video": ["two police officers riding motorcycles down the street", null], "captions_pred_audio": ["a man is speaking and a siren is going off", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["a man speaks, then dials a rotary telephone", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["tK4VlLsNxak", "uZesmtKZGSw"], "start_seconds": ["120", "250"], "properties": ["a, dial, telephone", "men, talk, cars"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about a man speaking and dialing a rotary telephone?", "label": 0}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sofxkNWaP0s", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["wind, engine, louder", "People, motor, brakes"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", null], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a man speaks while water drains", "a muffled toilet flushes and the water drains"], "sample_ids": ["vSeGhaZt-aI", "sfAvvZwdLCY"], "start_seconds": ["50", "20"], "properties": ["water, drain, man", "flushes, drains, water"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a toilet is flushed"], "question": "which entity has more water", "label": 1}, {"captions": ["a bus engine idles while a woman speaks making an announcement", "a saw finishes running as metal clings in the background"], "sample_ids": ["su6FAOcOA8c", "zofjfKhqLk8"], "start_seconds": ["4", "10"], "properties": ["engine, idle, woman", "background, metal, clings"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a large engine is running and a bell is ringing"], "question": "which entity is about a saw?", "label": 1}, {"captions": ["a woman speaks as frying food sizzles", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wTideSjRFS0", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["food, sizzle, woman", "applause, audience, yells"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "birds chirp in the background while a horse neighs followed by a girl speaking"], "sample_ids": ["vSeGhaZt-aI", "s59PfAghdkM"], "start_seconds": ["50", "0"], "properties": ["water, bubbles, speak", "bird, chirp, background, horse, neigh"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "is an anime scene featuring two people and a horse in the foreground and a fence in the background"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "birds are chirping a horse is neighing and a woman is speaking "], "question": "which entity has a horse in it?", "label": 1}, {"captions": ["birds chirp as a bell rings", "bees buzz and wind blows"], "sample_ids": ["ziUT9IFTkjg", "tMJne1a4AFI"], "start_seconds": ["10", "0"], "properties": ["chirp, bell, ring", "bees buzz, wind blows, bees"], "captions_pred_video": [null, "a swarm of bees on the ground"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a swarm of bees buzzing around"], "question": "which entity is buzzing", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "an infant crying frantically"], "sample_ids": ["yYEVLuqEytU", "zwOBqeFTgiU"], "start_seconds": ["40", "30"], "properties": ["grunt, slurp, background", "cry, infant, frantically"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "of the baby crying in the car seat"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a baby cries loudly"], "question": "which entity is a baby", "label": 1}, {"captions": ["people speak and tapping occurs", "a man speaking with light rustling"], "sample_ids": ["tFCUUGdREgA", "zOZleIRqZm4"], "start_seconds": ["70", "80"], "properties": ["people, tap, speak", "light, rustling, man"], "captions_pred_video": ["a person riding a white horse in an indoor arena", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a man is speaking and walking with wind noise in the background ", "a man is speaking with crickets chirping in the background"], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs bark as an engine runs and a person whistles", "a woman speaks happily and an animal chirps"], "sample_ids": ["zY3icUyMdh8", "uWAAAL4CIoc"], "start_seconds": ["20", "0"], "properties": ["dog, bark, engine", "a woman, chirps, animal"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "birds chirp and objects are moved around"], "sample_ids": ["yZrFNS7GFBQ", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["pigeon, buzzes, insect", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["of the bird in the cage", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["an owl hoots in the background ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "music plays and a woman speaks on a radio before gunshots are fired"], "sample_ids": ["wqZ135Ssz0", "xKB8O8LTs6s"], "start_seconds": ["60", "70"], "properties": ["two men, woman, birds", "music, radio, gunshots"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has a woman speaking on a radio?", "label": 1}, {"captions": ["a man speaks as a boat engine runs", "vehicles pass by on a roadway"], "sample_ids": ["wtDqrBygTcU", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["man, engine, run", "pass, vehicle, roadway"], "captions_pred_video": ["shows a person riding on the back of a boat as it speeds through the water", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a motor is running", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["someone whistles a song", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sIXTftIuUgw", "uZesmtKZGSw"], "start_seconds": ["90", "250"], "properties": ["someone, song, whistle", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["someone is typing on a computer keyboard", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["v0x1odnXtP0", "su6FAOcOA8c"], "start_seconds": ["210", "4"], "properties": ["keyboard, type, computer", "engine, idle, woman"], "captions_pred_video": ["how to make money on youtube in spanish", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a person is typing on a keyboard", "a woman is speaking and a subway train is moving "], "question": "which is not a person", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "paper is crumpling consistently"], "sample_ids": ["y8dSeubCNI", "v5cSxLaHADY"], "start_seconds": ["4", "0"], "properties": ["men, women, car", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["an engine revving and people talking in the background", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an audience gives applause", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["x6iCUDmRpKQ", "tDVADusiIoc"], "start_seconds": ["38", "60"], "properties": ["applause, audience, give", "water, radio, man"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a group of people are clapping and cheering", "a man is speaking while the wind is blowing and water is splashing"], "question": "which is not a person", "label": 0}, {"captions": ["waves crash against a shoreline and people speak", "a clock ticktocks"], "sample_ids": ["yFB25fqfU8I", "v-g-j2uTByM"], "start_seconds": ["300", "30"], "properties": ["wave, crash, shoreline", "ticktocks, clock, ticktocks"], "captions_pred_video": ["footage of a person surfing in the ocean", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and laughing while water is splashing and gurgling", "a clock is ticking loudly"], "question": "which entity is a clock?", "label": 1}, {"captions": ["children cry and people talk", "paper is crumpling consistently"], "sample_ids": ["xLwHe825Zs", "v5cSxLaHADY"], "start_seconds": ["18", "0"], "properties": ["people talk, children cry, people talk", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a baby cries and a woman speaks", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sK4u5T8hW78", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["a, car, pass", "wind, blow, vehicle"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a sleeping person snores and wheezes"], "sample_ids": ["sfAvvZwdLCY", "spJCm8tD9Zo"], "start_seconds": ["20", "90"], "properties": ["water drains, flushes, water", "snores, wheezes, sleeps"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a toilet is flushed", "a person is snoring loudly"], "question": "which entity is a source of noise", "label": 1}, {"captions": ["a machine beeps continuously", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["y682ml90jGw", "yDoT73BWsdA"], "start_seconds": ["11", "10"], "properties": ["beeps, machine, continuously", "engine, revs, vehicle"], "captions_pred_video": [null, "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a beeping sound is being made ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "pigeons vocalize and birds chirp"], "sample_ids": ["yJ0TePmaOo", "uiS58TNyUiw"], "start_seconds": ["390", "430"], "properties": ["two hard objects, man, speak", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a infant makes noise and is excited", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wIJK3-5y0kA", "vb1fPSDI4c"], "start_seconds": ["30", "30"], "properties": ["noise, excited, infant", "multiple, people, yell"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a dog whimpers as someone inhales/exhales briefly", "an insect buzzes around continuously"], "sample_ids": ["vmrxwuAMb2I", "v25l1jef3JY"], "start_seconds": ["40", "0"], "properties": ["a dog, inhales, exhales", "buzzes, continuously, insect"], "captions_pred_video": ["of the dog laying on the bed with his head out of the blanket", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a dog barks and growls", "a fly is buzzing around a microphone "], "question": "which entity is not a dog?", "label": 1}, {"captions": ["a helicopter engine idles continuously", "vehicles pass by on a roadway"], "sample_ids": ["ugHJF0hfYkg", "tgbONvsP47Y"], "start_seconds": ["10", "0"], "properties": ["engine, idle, continuously", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a helicopter is flying overhead ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "people speak as gunfire rings out"], "sample_ids": ["tIY7qOV3rEM", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "gunfire, ring, speak"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a flush is followed by gurgling water, then another flush", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["tqR406bGiE", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["flush, water, gurgle", "People, motor, brakes"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about water?", "label": 0}, {"captions": ["water flows as men speak and yell", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vJ7JPEFhyLA", "w5W5Kqtc8E"], "start_seconds": ["16", "100"], "properties": ["water, flow, men", "wind, blow, vehicle"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a toilet flushes and water drains", "a motor noise is accompanied by a door opening and closing"], "sample_ids": ["sfAvvZwdLCY", "vBHyYJ8pL0"], "start_seconds": ["20", "2"], "properties": ["water drains, flushes, water", "noise, door, opening"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is accompanied by a door opening and closing?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a duck quacks continuously"], "sample_ids": ["uRExseg-0XI", "vh30P49Po6s"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "quacks, continuously, duck"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man is filing a hard object", "an infant crying as a woman laughs"], "sample_ids": ["vveS8HT7Uog", "xhmRY9yhC7c"], "start_seconds": ["100", "20"], "properties": ["a man, hard, object", "a, laugh, infant"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a baby cries and a woman speaks"], "question": "which object is harder to file", "label": 0}, {"captions": ["an aircraft engine runs as people speak", "a man speaks as a motor runs in the background"], "sample_ids": ["wTjoRj1se3U", "xZepNM9qcRA"], "start_seconds": ["390", "30"], "properties": ["engine, run, people", "background, motor, run"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a jet engine is running and people are talking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["zofjfKhqLk8", "sLUnaPT5gM8"], "start_seconds": ["10", "0"], "properties": ["noise, stop, motor", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yaln9y8I7ms", "tDVADusiIoc"], "start_seconds": ["230", "60"], "properties": ["female, flushes, toilet", "water, radio, man"], "captions_pred_video": ["footage is blurry and out of focus", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has a female speaking?", "label": 0}, {"captions": ["a person is snoring while sleeping", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vJrjSeP17yE", "vfYTJq7nU"], "start_seconds": ["40", "130"], "properties": ["a person is sleeping, snoring, person", "rustling, ducks, quack"], "captions_pred_video": ["a black background with a small plane flying in the sky", null], "captions_pred_audio": ["a person snoring loudly", "a duck quacks and a woman speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["tQWGZLItBXk", "uYT5gxnyMWM"], "start_seconds": ["170", "50"], "properties": ["music, kid, speak", "a, scream, girl"], "captions_pred_video": ["worms revolution screenshots", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman is speaking and a baby is crying"], "question": "which entity is followed by a scream", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xzKKf9bKNUo", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["background, noise, snoring", "wind, blow, vehicle"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", null], "captions_pred_audio": ["a person snoring loudly", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "water splashes as an animal walks through"], "sample_ids": ["vddP56-ogds", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["water, flow, laugh", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["water running down a sink while a man is talking", "birds chirp and objects are moved around"], "sample_ids": ["vSeGhaZt-aI", "yPUYU6t3rwo"], "start_seconds": ["50", "370"], "properties": ["water, sink, talk", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["an animal hissing followed by a man mumbling then a pig oinking while birds chirp in the background", "a helicopter engine idles continuously"], "sample_ids": ["yYEVLuqEytU", "ugHJF0hfYkg"], "start_seconds": ["40", "10"], "properties": ["animal, pig, background", "engine, idle, continuously"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["several sheep bleat and a man speaks", "a helicopter is flying overhead "], "question": "which entity is silent", "label": 1}, {"captions": ["a person screams glaringly", "a stream of water runs briefly"], "sample_ids": ["xC8kbrKJmco", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["glaringly, screams, person", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a goat is bleating ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "a man speaks as crickets sing"], "sample_ids": ["sLUnaPT5gM8", "ryFDPxgDOGc"], "start_seconds": ["0", "570"], "properties": ["loud, laughter, intermittent", "a, crickets, sing"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "a group of people dressed in camouflage and hunting gear in the dark"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a man is speaking with crickets chirping in the background"], "question": "which entity is quieter", "label": 1}, {"captions": ["an aircraft engine runs", "water flows and trickles"], "sample_ids": ["yLCORCnd35Q", "tB7hWb9gTuQ"], "start_seconds": ["0", "30"], "properties": ["engine, aircraft, runs", "water, flow, trickle"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "some men converse over an engine running"], "sample_ids": ["u--KhUW8l1Y", "sCiy7QS1U"], "start_seconds": ["0", "300"], "properties": ["horn, siren, life", "men, converse, engine"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", null], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "a few ducks quack and scamper and a man speaks"], "sample_ids": ["zliInBdC98Y", "w2bYrCVLT60"], "start_seconds": ["30", "120"], "properties": ["a, baby, cries, wails", "ducks, speak, quack"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "of the ducks drinking from a pink pool in the grass"], "captions_pred_audio": ["a baby cries and a woman speaks", "ducks are quacking and a man is speaking"], "question": "which entity is speaking", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a clock ticktocks"], "sample_ids": ["sa6TLVbooCc", "v-g-j2uTByM"], "start_seconds": ["240", "30"], "properties": ["people, laugh, child", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["someone whistles a tune", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sIXTftIuUgw", "zj2R0XoFr5k"], "start_seconds": ["90", "50"], "properties": ["someone, tune, whistle", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a person whistling a song", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["a door opens and birds chirp", "a man speaks as a car is passing by"], "sample_ids": ["yeFvk9x0wWI", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "a, car, pass"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["people cheer as a vehicle engine revs", "someone snores nearby"], "sample_ids": ["xjhAnI2q6hM", "spJCm8tD9Zo"], "start_seconds": ["6", "90"], "properties": ["engine revs, vehicle, people", "someone snores, nearby, someone"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a person is snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "waves crash against a shoreline and people speak"], "sample_ids": ["v0x1odnXtP0", "yFB25fqfU8I"], "start_seconds": ["210", "300"], "properties": ["keyboard, type, computer", "wave, crash, shoreline"], "captions_pred_video": ["how to make money on youtube in spanish", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person is typing on a keyboard", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which is a natural phenomenon", "label": 1}, {"captions": ["rustling leaves with some light squeaking and wind blowing hard followed by a light smack", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yI-KvObbDoY", "xBxDz0CFVn0"], "start_seconds": ["260", "30"], "properties": ["sound, smack, wind", "stream, water, flow"], "captions_pred_video": ["of a man hanging clothes on a clothesline in the backyard", "footage is blurry and out of focus"], "captions_pred_audio": ["the wind is blowing and footsteps are walking ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "people speak in a closed space"], "sample_ids": ["sYITalLZjj4", "sTpirNYo8vQ"], "start_seconds": ["30", "30"], "properties": ["water, rushes, background, birds", "people, space, speak"], "captions_pred_video": ["two ducks are swimming in the water near each other", "of a man taking a selfie on a bus"], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking while a car is revving and accelerating "], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "water flows and trickles"], "sample_ids": ["uC9dtII1KDI", "tB7hWb9gTuQ"], "start_seconds": ["150", "30"], "properties": ["wind, gusts, distance", "water, flow, trickle"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "water is splashing and gurgling"], "question": "which entity is more likely to be a natural phenomenon", "label": 1}, {"captions": ["paper folding and crinkling", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zPpG3RD8lSs", "yajyRTUQk3U"], "start_seconds": ["20", "400"], "properties": ["paper, fold, crinkle", "a woman, something, fried"], "captions_pred_video": ["how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's", "- a woman cooking in the kitchen"], "captions_pred_audio": ["the wind blows and a mouse clicks ", "a woman is speaking while food is frying in the background"], "question": "which entity is about food?", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "someone is typing on a computer keyboard"], "sample_ids": ["vYkA3cfXp5Q", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["speed, idle, accelerate", "keyboard, type, computer"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "how to make money on youtube in spanish"], "captions_pred_audio": ["an engine is idling", "a person is typing on a keyboard"], "question": "which is a person", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a toilet flushes and a female speaks"], "sample_ids": ["vddP56-ogds", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["water, splash, person, laugh", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["v7jJS8aAyA", "wDVMhEdTiVw"], "start_seconds": ["10", "30"], "properties": ["wind, blows, loudly", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not followed by water sloshing nearby?", "label": 0}, {"captions": ["a vehicle engine accelerates and wind blows", "a toilet flushes and a female speaks"], "sample_ids": ["wudZTNBtVqc", "yaln9y8I7ms"], "start_seconds": ["60", "230"], "properties": ["accelerates, engine, wind", "female, flushes, toilet"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", "footage is blurry and out of focus"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a toilet flushes and a man speaks"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["sQwlkXjQabo", "sLUnaPT5gM8"], "start_seconds": ["10", "0"], "properties": ["liquid, surface, spray", "loud, laughter, intermittent"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["spraying followed by silence", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["an adult male speaks and dials a rotary phone", "an airplane engine runs"], "sample_ids": ["tK4VlLsNxak", "yVPZ2MNWpms"], "start_seconds": ["120", "0"], "properties": ["An adult male speaks, dials, and speaks into a rotary phone", "engine, airplane, runs"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a car is driving by on the road "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man woman speak while crickets sing", "a clock ticktocks"], "sample_ids": ["zTLVJCo4WEE", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["a, crickets, sing", "ticktocks, clock, ticktocks"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["women speak and laugh as wind blows", "water flows and trickles"], "sample_ids": ["un9VQlzgZM", "tB7hWb9gTuQ"], "start_seconds": ["5", "30"], "properties": ["wind, speak, laugh", "water, flow, trickle"], "captions_pred_video": [null, "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "water is splashing and gurgling"], "question": "which entity is moving", "label": 1}, {"captions": ["water runs from a faucet while some men speak and the water runs in the sink", "vehicles pass by on a roadway"], "sample_ids": ["vzceMbklWc", "tgbONvsP47Y"], "start_seconds": ["180", "0"], "properties": ["water, faucet, sink", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["water is running and a man is speaking", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks as something metal hits against and glass is set down", "a child speaks in closed space"], "sample_ids": ["x6ijhqRY38s", "yW6FWLSLkx4"], "start_seconds": ["250", "40"], "properties": ["something metal, glass, hit", "child, space, speak"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["an insect buzzes around continuously", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["v25l1jef3JY", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["buzzes, continuously, insect", "animal, grunts, snorts"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 0}, {"captions": ["an audience gives applause", "dishes cling together then a man begins to speak"], "sample_ids": ["x6iCUDmRpKQ", "sQGXqGcwOTc"], "start_seconds": ["38", "3"], "properties": ["applause, audience, give", "cling, speak, dishes"], "captions_pred_video": ["a black background with the moon and stars in the sky", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a group of people are clapping and cheering", "mechanisms are operating and water is splashing "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a jet engine roars, almost making a man inaudible", "a man speaks followed by another man speaking outside"], "sample_ids": ["xfaoyyzw2WU", "viuTg1M-dqg"], "start_seconds": ["180", "30"], "properties": ["loud, jet engine, roar", "two men, speak, follow"], "captions_pred_video": ["footage of an airplane on the tarmac at an airport", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["an aircraft engine roars and a man speaks ", "a man is speaking with background noise and breathing sounds "], "question": "which is not a pair of men speaking?", "label": 0}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["zY3icUyMdh8", "ziUT9IFTkjg"], "start_seconds": ["20", "10"], "properties": ["dog, bark, engine", "background, birds, rustling"], "captions_pred_video": ["footage of a bus driving through a residential street at night", null], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "birds are chirping and a chime is ringing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["vehicle engines accelerate as a man commentates on an intercom", "an airplane engine runs"], "sample_ids": ["sZPuqDgX2V0", "yVPZ2MNWpms"], "start_seconds": ["30", "0"], "properties": ["engine, accelerate, intercom", "engine, airplane, runs"], "captions_pred_video": [null, "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a car is driving by on the road "], "question": "which engine is running", "label": 0}, {"captions": ["loud clanking and banging with brief male speech", "a toilet flushes and a female speaks"], "sample_ids": ["sWZzXuWYY", "yaln9y8I7ms"], "start_seconds": ["420", "230"], "properties": ["male, speech, banging", "female, flushes, toilet"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a toilet flushes and a man speaks"], "question": "which entity is silent", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "wind blows and people scream while an engine revs"], "sample_ids": ["wqUmIEzuNz4", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["frog, bird, vocalize", "wind, engine, scream"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", null], "captions_pred_audio": ["a cat meows and rustles", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is not a frog?", "label": 1}, {"captions": ["wind blows in gusts as a woman speaks in the distance", "multiple motorcycles pass by as a man speaks"], "sample_ids": ["uC9dtII1KDI", "zcDwZ6W7E3E"], "start_seconds": ["150", "180"], "properties": ["wind, gusts, distance", "man, speak, motorcycles"], "captions_pred_video": ["footage of a person riding a horse in a riding arena", "2 people riding motorcycles down a mountain road with trees lining the sides of the road"], "captions_pred_audio": ["a woman is speaking with wind noise and breathing in the background ", "a man is speaking while a car accelerates and revs its engine "], "question": "which entity is more likely to be in a city", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "a man speaks as a motor runs in the background"], "sample_ids": ["vKrYfzleLB8", "xZepNM9qcRA"], "start_seconds": ["110", "30"], "properties": ["a, ring, gunshots", "background, motor, run"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a man yell?", "label": 0}, {"captions": ["a train horn blows as it passes by", "a duck quacks continuously"], "sample_ids": ["zVacuqSb4LI", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["horn, blows, train", "quacks, continuously, duck"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "water flows as men speak and yell"], "sample_ids": ["zcDwZ6W7E3E", "vJ7JPEFhyLA"], "start_seconds": ["180", "16"], "properties": ["man, speak, motorcycles", "water, flow, men"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing as men speak and yell?", "label": 1}, {"captions": ["a car speeding up in the distance", "a woman speaks happily and an animal chirps"], "sample_ids": ["u0TrcHhkPQ", "uWAAAL4CIoc"], "start_seconds": ["20", "0"], "properties": ["distance, car, speed", "a woman, chirps, animal"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a woman is speaking and a dog is barking "], "question": "which entity is not moving", "label": 1}, {"captions": ["a duck quacks continuously", "a machine beeps continuously"], "sample_ids": ["vh30P49Po6s", "y682ml90jGw"], "start_seconds": ["30", "11"], "properties": ["quacks, continuously, duck", "beeps, machine, continuously"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "an engine runs loudly"], "sample_ids": ["v0x1odnXtP0", "vqZuVbG6-HI"], "start_seconds": ["210", "130"], "properties": ["keyboard, type, computer", "loud, engine, run"], "captions_pred_video": ["how to make money on youtube in spanish", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a person is typing on a keyboard", "a lawn mower is running and men are speaking "], "question": "which is quieter", "label": 0}, {"captions": ["a person is snoring while sleeping", "someone snores nearby"], "sample_ids": ["vJrjSeP17yE", "spJCm8tD9Zo"], "start_seconds": ["40", "90"], "properties": ["a person is sleeping, snoring, person", "someone snores, nearby, someone"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a person snoring loudly", "a person is snoring loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["birds coo incessantly", "a horn blows as a train chugs along and warning bells ring"], "sample_ids": ["yZrFNS7GFBQ", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["coo, bird, incessant", "a train, a horn, a bell"], "captions_pred_video": ["of the bird in the cage", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["an owl hoots in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a warning", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["vs65y4qmyBE", "yajyRTUQk3U"], "start_seconds": ["340", "400"], "properties": ["engine, run, man", "a woman, something, fried"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an electronic device bleeps once", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["tHJ6JSa8Y4", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["bleeps, electronic, device", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a clock is ticking and beeping", "a woman is speaking and a subway train is moving "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a kid speaks followed by music playing", "a stream of water runs briefly"], "sample_ids": ["tQWGZLItBXk", "x-PeY8Yb8M4"], "start_seconds": ["170", "300"], "properties": ["music, kid, speak", "stream, water, run"], "captions_pred_video": ["worms revolution screenshots", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["people speak in a closed space", "an insect buzzes around continuously"], "sample_ids": ["sTpirNYo8vQ", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["people, space, speak", "buzzes, continuously, insect"], "captions_pred_video": ["of a man taking a selfie on a bus", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "vehicles pass by on a roadway"], "sample_ids": ["yZrFNS7GFBQ", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["pigeon, buzzes, insect", "pass, vehicle, roadway"], "captions_pred_video": ["of the bird in the cage", "footage of a fire truck entering a garage"], "captions_pred_audio": ["an owl hoots in the background ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["wnpJndXuxLc", "w5W5Kqtc8E"], "start_seconds": ["50", "100"], "properties": ["blows, vehicle, train", "wind, blow, vehicle"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a train blowing a horn?", "label": 0}, {"captions": ["wind blows and women speak as livestock vocalizes", "several insects fly while two men talk"], "sample_ids": ["vXlk0lIQBFo", "s-T9OVOiMLo"], "start_seconds": ["470", "330"], "properties": ["wind, speak, vocalize", "several, fly, men"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is about animals?", "label": 0}, {"captions": ["a toilet flushes and a female speaks", "people speak and tapping occurs"], "sample_ids": ["yaln9y8I7ms", "tFCUUGdREgA"], "start_seconds": ["230", "70"], "properties": ["female, flushes, toilet", "people, tap, speak"], "captions_pred_video": ["footage is blurry and out of focus", "a person riding a white horse in an indoor arena"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking and walking with wind noise in the background "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["an engine idles consistently before sputtering some", "a stream of water flows as people talk and wind blows"], "sample_ids": ["rwTERCUno", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["engine, idle, sputter", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["zl9Dqx-j7q4", "y2bVZ7rz-5M"], "start_seconds": ["6", "280"], "properties": ["engine, laugh, loud", "motor noise, horn, siren"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a jet engine roars ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["w8uLijTqtlU", "y8WEcpOlT3I"], "start_seconds": ["70", "40"], "properties": ["wind, microphone, noise", "harsh, wind, blows"], "captions_pred_video": ["footage is blurry and shaky", "on how to use a sewing machine youtube"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking with wind noise in the background "], "question": "which entity is a recording of a harsh wind blowing?", "label": 1}, {"captions": ["male speech with light ticking", "several ducks quack and cocks crow far away"], "sample_ids": ["xO-Q2BlIIPU", "sNB8zxXneIM"], "start_seconds": ["30", "20"], "properties": ["male, speech, ticking", "several, quack, cocks"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a group of geese in a cage"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a rooster is crowing and wind is blowing "], "question": "which entity is a bird", "label": 1}, {"captions": ["heavy rain splashes as it falls", "wind blows as people chatter quietly"], "sample_ids": ["wP8ZKrlx3oA", "xBxDz0CFVn0"], "start_seconds": ["40", "30"], "properties": ["fall, rain, splash", "wind, chatter, people"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a music is played followed by a frog croaking and then music is played again", "someone whistles a tune"], "sample_ids": ["voJh2gJxXhA", "sIXTftIuUgw"], "start_seconds": ["50", "90"], "properties": ["music, frog, croak", "someone, tune, whistle"], "captions_pred_video": ["a frog on a black background with a red diamond in the center", null], "captions_pred_audio": ["music is playing and crickets are chirping ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a pigeon cooing as an insect buzzes by briefly", "paper is crumpling consistently"], "sample_ids": ["yZrFNS7GFBQ", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["pigeon, buzzes, insect", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of the bird in the cage", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["an owl hoots in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["an aircraft engine runs", "winds blows roughly as a vehicle races past"], "sample_ids": ["yLCORCnd35Q", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["engine, aircraft, runs", "wind, blows, vehicle"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["a vehicle is skidding and squealing tires", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["soTOh3zYJfY", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["vehicle, skid, tires", "applause, audience, yells"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["uWAAAL4CIoc", "uEU-Hg5MTN8"], "start_seconds": ["0", "27"], "properties": ["a woman, chirps, animal", "a woman, laughs, animal"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking happily and an animal chirps?", "label": 0}, {"captions": ["a man speaks as he moves silverware in a bowl", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["x6ijhqRY38s", "uEU-Hg5MTN8"], "start_seconds": ["250", "27"], "properties": ["bowl, silverware, man", "animal, grunts, snorts"], "captions_pred_video": ["a chef preparing a dish with a bottle of wine and a plate of food on a table", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and dishes are clanging ", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a horn honks and then loudly blares"], "sample_ids": ["sG7TyPnFDR0", "wnpJndXuxLc"], "start_seconds": ["180", "50"], "properties": ["beeps, machine, smoke alarm", "horn, honk, loud"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["a sheep baa followed by birds chirping and then more sheep baaing", "an infant crying as a woman laughs"], "sample_ids": ["vlS6YMeWAPo", "xhmRY9yhC7c"], "start_seconds": ["40", "20"], "properties": ["sheep, baa, birds", "a, laugh, infant"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a goat bleats and birds chirp", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["wyllXV6PjKo", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["a kid, talk, cry", "harsh, wind, blows"], "captions_pred_video": [null, "on how to use a sewing machine youtube"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking with wind noise in the background "], "question": "which entity has a harsh wind blowing?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a person speaks over rustling leaves"], "sample_ids": ["uYT5gxnyMWM", "zOZleIRqZm4"], "start_seconds": ["50", "80"], "properties": ["person, spray, yell", "rustling, leaves, person"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a person picking berries from the bushes in the garden"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking with crickets chirping in the background"], "question": "which entity has a person speaking over a background of rustling leaves?", "label": 1}, {"captions": ["water splashes as an animal walks through", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["w1ir-sZ3Im8", "zl9Dqx-j7q4"], "start_seconds": ["90", "6"], "properties": ["animal, water, splashes", "engine, laugh, loud"], "captions_pred_video": ["footage of a group of people riding horses through a river", "footage of a man driving a car in the dark"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["ul60S8TXDA8", "uYT5gxnyMWM"], "start_seconds": ["60", "50"], "properties": ["sound, distance, bell", "female, spraying, scream"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "multiple people speak and children yell while water gurgles"], "sample_ids": ["vBslzh7saPw", "vb1fPSDI4c"], "start_seconds": ["90", "30"], "properties": ["power, scream, increase", "multiple, people, yell"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["uYT5gxnyMWM", "sLUnaPT5gM8"], "start_seconds": ["50", "0"], "properties": ["female, spraying, scream", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more calming", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["y8WEcpOlT3I", "uYT5gxnyMWM"], "start_seconds": ["40", "50"], "properties": ["wind, speak, buffeting", "a, scream, girl"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a woman is speaking and a baby is crying"], "question": "which entity is a recording of a girl speaking?", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["zofjfKhqLk8", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["noise, stop, motor", "music, gunfire, explosion"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a clock ticktocks"], "sample_ids": ["sQwlkXjQabo", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["liquid, surface, spray", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["spraying followed by silence", "a clock is ticking loudly"], "question": "which entity is not a clock?", "label": 0}, {"captions": ["an engine runs loudly", "a telephone rings followed by a woman talking"], "sample_ids": ["vqZuVbG6-HI", "tGcFnX0GHI"], "start_seconds": ["130", "0"], "properties": ["loud, engine, run", "ring, talk, woman"], "captions_pred_video": ["footage is blurry because it's raining outside", null], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a dial tone sounds followed by a woman speaking"], "question": "which is quieter", "label": 1}, {"captions": ["water running down a sink while a man is talking", "a machine beeps continuously"], "sample_ids": ["vSeGhaZt-aI", "y682ml90jGw"], "start_seconds": ["50", "11"], "properties": ["water, sink, talk", "beeps, machine, continuously"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a beeping sound is being made "], "question": "which entity is silent", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "people speak as gunfire rings out"], "sample_ids": ["zY3icUyMdh8", "wqTCwqVRDlk"], "start_seconds": ["20", "80"], "properties": ["dog, bark, engine", "gunfire, ring, speak"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["zgUgkpk78xU", "xfaoyyzw2WU"], "start_seconds": ["70", "180"], "properties": ["clinking, humming, horn", "loud, jet engine, roar"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "several insects fly while two men talk"], "sample_ids": ["vz8868znkVQ", "s-T9OVOiMLo"], "start_seconds": ["60", "330"], "properties": ["audio, click, kid speaking", "several, fly, men"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video", "label": 1}, {"captions": ["a woman and man are speaking", "popping and crackling repeats as men yell and laugh"], "sample_ids": ["vbpKkWvfOu4", "rqu8iB22IY"], "start_seconds": ["560", "5"], "properties": ["two people, speaking, woman, man", "sound, repeats, laugh"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", null], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a dog barks and a man speaks while music plays "], "question": "which entity has more people speaking", "label": 0}, {"captions": ["a man is snoring loudly and repeatedly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sncRqQ67iJU", "tdWhHV3X25Q"], "start_seconds": ["460", "60"], "properties": ["loud, repeatedly, man", "applause, audience, yells"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a person is snoring", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a infant makes noise and is excited"], "sample_ids": ["sfAvvZwdLCY", "wIJK3-5y0kA"], "start_seconds": ["20", "30"], "properties": ["flushes, drains, water", "noise, excited, infant"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a toilet is flushed", "a baby cries and a woman speaks"], "question": "which entity is quieter", "label": 0}, {"captions": ["someone snores nearby", "water pouring and bubbling"], "sample_ids": ["spJCm8tD9Zo", "uyRfq-jKPpo"], "start_seconds": ["90", "50"], "properties": ["someone snores, nearby, someone", "water, bubbles, pouring"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a person is snoring loudly", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a car speeding up in the distance", "some men converse over an engine running"], "sample_ids": ["u0TrcHhkPQ", "sCiy7QS1U"], "start_seconds": ["20", "300"], "properties": ["distance, car, speed", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man speaks while a motorcycle revs and accelerates "], "question": "which is a static image", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "people speak as gunfire rings out"], "sample_ids": ["sWZzXuWYY", "wqTCwqVRDlk"], "start_seconds": ["420", "80"], "properties": ["male, speech, banging", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a clock ticktocks"], "sample_ids": ["soTOh3zYJfY", "v-g-j2uTByM"], "start_seconds": ["40", "30"], "properties": ["vehicle, skid, tires", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["people speak as gunfire rings out", "dogs bark as an engine runs and a person whistles"], "sample_ids": ["wqTCwqVRDlk", "zY3icUyMdh8"], "start_seconds": ["80", "20"], "properties": ["gunfire, ring, speak", "dog, bark, engine"], "captions_pred_video": ["of a woman shooting a gun at a target on the beach", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a man is speaking and a gun is fired", "a car is driving and dogs are barking and squealing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person is whistling a tune", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["scYRUkrFLiQ", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["a, tune, whistle", "animal, grunts, snorts"], "captions_pred_video": ["of the man wearing a bow tie and a suit jacket in front of a red door", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and a baby is crying"], "question": "which entity is not a person?", "label": 1}, {"captions": ["water rushes by", "a woman speaks and other women and a man talk with her"], "sample_ids": ["x-PeY8Yb8M4", "vbpKkWvfOu4"], "start_seconds": ["300", "560"], "properties": ["water, rushes, by", "a, woman, man"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a car is driving on a wet road ", "a woman is speaking and a man is speaking"], "question": "which entity is a group of people", "label": 1}, {"captions": ["after a few seconds of silence, a loud bang occurs followed by a softer banging noise", "a man speaks followed by another man speaking outside"], "sample_ids": ["zkKdxzNC97Y", "viuTg1M-dqg"], "start_seconds": ["27", "30"], "properties": ["loud, bang, noise", "two men, speak, follow"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a loud bang followed by a softer banging noise?", "label": 0}, {"captions": ["a dark barks and whimpers", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sYj4hpDUZDQ", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["barks, whimpers, dark", "male, duck, laugh"], "captions_pred_video": ["a brown and white dog standing in front of a wall with its mouth open", null], "captions_pred_audio": ["a dog barks and a cat meows", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a man speaks as a car is passing by"], "sample_ids": ["vW4x7S1VfQc", "sK4u5T8hW78"], "start_seconds": ["150", "30"], "properties": ["clacking, oil, woman", "a, car, pass"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["food sizzles in a frying pan", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a horse runs while two women talk", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sdvI1mHAsc", "tdWhHV3X25Q"], "start_seconds": ["20", "60"], "properties": ["two women, horse, run", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["someone is snoring while sleeping", "a stream of water flows as people talk and wind blows"], "sample_ids": ["ujMt0-D-x2k", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["snore, sleep, someone", "stream, water, flow"], "captions_pred_video": ["of the dog playing with a toy on the floor", "footage is blurry and out of focus"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sEprKHm8Sj8", "uZesmtKZGSw"], "start_seconds": ["90", "250"], "properties": ["car, tires, slows", "men, talk, cars"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking and a car is revving with laughter in the background "], "question": "which car is going faster", "label": 1}, {"captions": ["a infant makes noise and is excited", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wIJK3-5y0kA", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["noise, excited, infant", "applause, audience, yells"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a motorcycle engine is revving while people are speaking"], "sample_ids": ["zgUgkpk78xU", "y8dSeubCNI"], "start_seconds": ["70", "4"], "properties": ["horn, bell, train", "engine revving, people speaking, motorcycle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "an engine revving and people talking in the background"], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "wind blows as people chatter quietly"], "sample_ids": ["tiDFTC-5vU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a frog vocalizes as birds chirp", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["wqUmIEzuNz4", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["frog, bird, vocalize", "a woman, a television program, a bird"], "captions_pred_video": ["a frog sitting in the grass on a sunny day", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a cat meows and rustles", "a woman is speaking and a dog is whimpering"], "question": "which entity is a frog", "label": 0}, {"captions": ["someone snores nearby", "a child speaks in closed space"], "sample_ids": ["spJCm8tD9Zo", "yW6FWLSLkx4"], "start_seconds": ["90", "40"], "properties": ["someone snores, nearby, someone", "child, space, speak"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "a toilet flushes and water drains"], "sample_ids": ["wvKpEYswXO0", "sfAvvZwdLCY"], "start_seconds": ["150", "20"], "properties": ["plastic, tap, speak", "water drains, flushes, water"], "captions_pred_video": ["of the person preparing food in the kitchen", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a vehicle accelerates and squeals tires", "an electric engine works nearby followed by a child talking"], "sample_ids": ["yRx9txMcBl0", "xSKJGCItUWE"], "start_seconds": ["40", "10"], "properties": ["accelerates, tires, squeals", "engine, work, child"], "captions_pred_video": ["in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta", "footage of the helicopter flying in the room"], "captions_pred_audio": ["a car is revving its engine and skidding ", "a high pitched engine is running and a child speaks"], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["white noise and snoring with some rustling in the background", "people cheer as a vehicle engine revs"], "sample_ids": ["xzKKf9bKNUo", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["background, noise, snoring", "engine revs, vehicle, people"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a person snoring loudly", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["females talk and laugh over gusting wind", "paper is crumpling consistently"], "sample_ids": ["un9VQlzgZM", "v5cSxLaHADY"], "start_seconds": ["5", "0"], "properties": ["females, talk, laugh", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": [null, "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a person is whistling", "a stream of water runs briefly"], "sample_ids": ["sIXTftIuUgw", "x-PeY8Yb8M4"], "start_seconds": ["90", "300"], "properties": ["person, whistling, person", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a person whistling a song", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks while water drains", "vehicles pass by on a roadway"], "sample_ids": ["vSeGhaZt-aI", "tgbONvsP47Y"], "start_seconds": ["50", "0"], "properties": ["water, drain, man", "pass, vehicle, roadway"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["water splashes and wind noise is made into a microphone", "a propeller rotates loudly and intensely"], "sample_ids": ["sDSppXIlJrs", "ugHJF0hfYkg"], "start_seconds": ["27", "10"], "properties": ["microphone, water, wind", "loud, intense, propeller"], "captions_pred_video": ["a man is paddling a small wooden boat in the water", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["the wind is blowing and water is splashing", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "water flows as men speak and yell"], "sample_ids": ["uWAAAL4CIoc", "vJ7JPEFhyLA"], "start_seconds": ["0", "16"], "properties": ["a woman, chirps, animal", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["loud intermittent buzzing with intermittent laughter", "water pouring and bubbling"], "sample_ids": ["sLUnaPT5gM8", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["loud, laughter, intermittent", "water, bubbles, pouring"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "water is running from a faucet"], "question": "which entity is more quiet", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "winds blows roughly as a vehicle races past"], "sample_ids": ["vZAw4apG0Es", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["background, clock, ticktocks", "wind, blows, vehicle"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a clock is ticking and people are talking", "a jet engine roars and wind blows "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a helicopter engine idles continuously"], "sample_ids": ["su6FAOcOA8c", "ugHJF0hfYkg"], "start_seconds": ["4", "10"], "properties": ["engine, run, woman", "engine, idle, continuously"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a helicopter is flying overhead "], "question": "which entity has a running engine", "label": 0}, {"captions": ["water is sprayed across a hard surface", "an aircraft engine runs"], "sample_ids": ["sQwlkXjQabo", "yLCORCnd35Q"], "start_seconds": ["10", "0"], "properties": ["water, spray, surface", "engine, aircraft, runs"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a lufthansa airbus a380 landing at london's heathrow airport"], "captions_pred_audio": ["spraying followed by silence", "a train is moving and its wheels are squealing "], "question": "which entity is moving", "label": 1}, {"captions": ["several insects fly while two men talk", "pigeons vocalize and birds chirp"], "sample_ids": ["s-T9OVOiMLo", "uiS58TNyUiw"], "start_seconds": ["330", "430"], "properties": ["several, fly, men", "vocalize, bird, chirp"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a man speaks, then dials a rotary telephone", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tK4VlLsNxak", "zj2R0XoFr5k"], "start_seconds": ["120", "50"], "properties": ["a, dial, telephone", "airplane, boy, fly"], "captions_pred_video": ["person is wearing a headset and holding a remote control in his hand", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and using a sewing machine", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a boy speaking?", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["w5W5Kqtc8E", "zj2R0XoFr5k"], "start_seconds": ["100", "50"], "properties": ["water, splashes, motorboat", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tQWGZLItBXk", "zj2R0XoFr5k"], "start_seconds": ["170", "50"], "properties": ["music, person, ding", "airplane, boy, fly"], "captions_pred_video": ["worms revolution screenshots", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["small dogs yip and bark sharply", "a motor slows to a stopover traffic noises"], "sample_ids": ["v-wcQf4BDY0", "zofjfKhqLk8"], "start_seconds": ["120", "10"], "properties": ["bark, yip, sharply", "noise, stop, motor"], "captions_pred_video": ["footage is blurry and shaky, making it difficult to see what is happening", "footage of a man using a machine to cut a piece of wood"], "captions_pred_audio": ["a dog barks and growls", "a large engine is running and a bell is ringing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a train horn blows as it passes by", "a man speaks followed by another man speaking outside"], "sample_ids": ["zVacuqSb4LI", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["horn, blows, train", "two men, speak, follow"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a single person speaking?", "label": 0}, {"captions": ["women speak and laugh as wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["un9VQlzgZM", "yajyRTUQk3U"], "start_seconds": ["5", "400"], "properties": ["wind, speak, laugh", "a woman, something, fried"], "captions_pred_video": [null, "- a woman cooking in the kitchen"], "captions_pred_audio": ["a woman is speaking and laughing with wind noise and breathing in the background ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["an small aircraft engine runs and a boy speaks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["xSKJGCItUWE", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["engine, run, boy", "wind, blow, vehicle"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a boy speaking?", "label": 0}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "someone is typing on a computer keyboard"], "sample_ids": ["sofxkNWaP0s", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["wind, engine, louder", "keyboard, type, computer"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a person is typing on a keyboard"], "question": "which is a type of computer", "label": 1}, {"captions": ["a man speaks on a radio as wind blows", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["tDVADusiIoc", "sLUnaPT5gM8"], "start_seconds": ["60", "0"], "properties": ["man, radio, blows", "loud, laughter, intermittent"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["wind blows and a stream of water flows nearby", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sYITalLZjj4", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["stream, flow, wind", "male, duck, laugh"], "captions_pred_video": ["two ducks are swimming in the water near each other", null], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["vh30P49Po6s", "ukg5L09Wpvo"], "start_seconds": ["30", "150"], "properties": ["loud, continuous, quacks", "clickety-clack, train, whistle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a duck is quacking loudly", "a train blows its whistle and blows its horn "], "question": "which entity is quieter", "label": 1}, {"captions": ["a woman speaks followed by another woman whimpering and speaking", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["xOZfdgAgJ9o", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["woman, whimpering, speaking", "animal, grunts, snorts"], "captions_pred_video": ["footage of a woman talking to a man in a doctor's office", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["continuous chugging with birds chirping in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xM4joTqDVp4", "zFjIWfSD-4"], "start_seconds": ["160", "410"], "properties": ["background, chirp, birds", "People, motor, brakes"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running and air brakes hissing?", "label": 1}, {"captions": ["a toilet flushes and a female speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yaln9y8I7ms", "wz7N8YRy74I"], "start_seconds": ["230", "30"], "properties": ["female, flushes, toilet", "rooster, crow, background, men"], "captions_pred_video": ["footage is blurry and out of focus", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a toilet flushes and a man speaks", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster?", "label": 1}, {"captions": ["a saw finishes running as metal clings in the background", "a train horn blows as it passes by"], "sample_ids": ["zofjfKhqLk8", "zVacuqSb4LI"], "start_seconds": ["10", "30"], "properties": ["background, metal, clings", "horn, blows, train"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["a child yells and another yells", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vMDHu7Lxcgw", "uZesmtKZGSw"], "start_seconds": ["410", "250"], "properties": ["two, yell, child", "men, talk, cars"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has more cars", "label": 1}, {"captions": ["an electric engine works nearby followed by a child talking", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["xSKJGCItUWE", "wqZ135Ssz0"], "start_seconds": ["10", "60"], "properties": ["engine, work, child", "two men, woman, birds"], "captions_pred_video": ["footage of the helicopter flying in the room", null], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["some tunes played by whistling", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["u6BnG6YZqJ4", "uZesmtKZGSw"], "start_seconds": ["0", "250"], "properties": ["tune, play, whistling", "men, talk, cars"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a infant makes noise and is excited", "people applaud and hoot and chat quietly"], "sample_ids": ["wIJK3-5y0kA", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["noise, excited, infant", "people, applaud, hoot"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a frog croaks as other frogs croak in the background", "a child speaks in closed space"], "sample_ids": ["yswmmRZFItk", "yW6FWLSLkx4"], "start_seconds": ["0", "40"], "properties": ["background, frog, croak", "child, space, speak"], "captions_pred_video": ["a close up of a frog in the water", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a frog is croaking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["someone is burping continuously", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["y636gklDioE", "zl9Dqx-j7q4"], "start_seconds": ["20", "6"], "properties": ["burps, burps, burps", "engine, laugh, loud"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a person burps loudly several times", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a helicopter engine idles continuously", "waves crash against a shoreline and people speak"], "sample_ids": ["ugHJF0hfYkg", "yFB25fqfU8I"], "start_seconds": ["10", "300"], "properties": ["engine, idle, continuously", "wave, crash, shoreline"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a helicopter is flying overhead ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["several ducks are quacking and squawking", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wfHeoPDLMaM", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["quacking, squawking, ducks", "female, spraying, scream"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["ducks are quacking", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["u--KhUW8l1Y", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["horn, siren, life", "applause, audience, yells"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a person snores loudly multiple times at a close distance"], "sample_ids": ["vBHyYJ8pL0", "sSMl2vc3ek"], "start_seconds": ["2", "20"], "properties": ["noise, door, opening", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a heavy rain falls endlessly"], "sample_ids": ["vGj1XLJvNrw", "wP8ZKrlx3oA"], "start_seconds": ["0", "40"], "properties": ["wails, wails, pass", "heavy, rain, fall"], "captions_pred_video": ["footage of a police car driving down a city street", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "pigeons vocalize and birds chirp"], "sample_ids": ["tOSWIURC-4", "uiS58TNyUiw"], "start_seconds": ["0", "430"], "properties": ["noise, engine, revs", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["some men talk among st themselves as cars speed and race loudly", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uZesmtKZGSw", "xBxDz0CFVn0"], "start_seconds": ["250", "30"], "properties": ["men, talk, cars", "stream, water, flow"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman speaks as she rubs two objects together", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vzxHnu-SFEw", "vbZ-0lGPneg"], "start_seconds": ["80", "30"], "properties": ["two objects, woman, speak", "a woman, a television program, a bird"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a woman is speaking and a dog is whimpering"], "question": "which woman is speaking", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a stream of water runs briefly"], "sample_ids": ["sZPuqDgX2V0", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["commentator, race, track", "stream, water, run"], "captions_pred_video": [null, "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "a child speaks in closed space"], "sample_ids": ["uYT5gxnyMWM", "yW6FWLSLkx4"], "start_seconds": ["50", "40"], "properties": ["person, spray, yell", "child, space, speak"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["wAAkbZToh8", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["burp, laugh, speak", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man burps and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["the wind blows while a vehicle engine runs", "a clock ticktocks"], "sample_ids": ["xyL9F5VrjkE", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["wind, blows, vehicle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an animal quacks rapidly", "water is sprayed across a hard surface"], "sample_ids": ["vh30P49Po6s", "sQwlkXjQabo"], "start_seconds": ["30", "10"], "properties": ["animal, quacks, rapidly", "water, spray, surface"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a duck is quacking loudly", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "pigeons vocalize and birds chirp"], "sample_ids": ["y2bVZ7rz-5M", "uiS58TNyUiw"], "start_seconds": ["280", "430"], "properties": ["engine, horn, siren", "vocalize, bird, chirp"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "of the pigeon in the cage"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a vehicle?", "label": 1}, {"captions": ["a man speaks over intermittent keyboard taps", "paper is crumpling consistently"], "sample_ids": ["tw76HGONaKg", "v5cSxLaHADY"], "start_seconds": ["570", "0"], "properties": ["audio, man, keyboard", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "paper is crumpled and crinkled"], "question": "which entity is a video", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["uEU-Hg5MTN8", "xfaoyyzw2WU"], "start_seconds": ["27", "180"], "properties": ["animal, grunts, snorts", "loud, jet engine, roar"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and women speak as livestock vocalizes", "a baby laughs giddily and a woman laughs then speaks"], "sample_ids": ["vXlk0lIQBFo", "wjsXBsc7M40"], "start_seconds": ["470", "10"], "properties": ["wind, speak, vocalize", "a baby laughs, a woman laughs, a woman speaks"], "captions_pred_video": ["- a woman and two donkeys in a fenced in area", "footage of the baby playing with a toothbrush"], "captions_pred_audio": ["wind chimes are ringing and people are speaking and laughing ", "a baby laughs and a woman speaks"], "question": "which entity is about a baby and a woman?", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a car speeding up in the distance"], "sample_ids": ["vf9xf3vMsGM", "u0TrcHhkPQ"], "start_seconds": ["540", "20"], "properties": ["A man speaks while turning a water faucet on.", "distance, car, speed"], "captions_pred_video": ["of the person washing their hands under the faucet", null], "captions_pred_audio": ["a man is speaking while water is running in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["water flows followed by women screaming", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["w5W5Kqtc8E", "tDVADusiIoc"], "start_seconds": ["100", "60"], "properties": ["water, flow, women", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows water flowing?", "label": 0}, {"captions": ["an emergency siren wails as it passes", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vGj1XLJvNrw", "yDoT73BWsdA"], "start_seconds": ["0", "10"], "properties": ["wails, wails, pass", "engine, revs, vehicle"], "captions_pred_video": ["footage of a police car driving down a city street", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["food fries in a pan as someone talks and cooks", "a speedboat passes quickly on the water"], "sample_ids": ["ukxt9I7eMMg", "tjmoSi330GM"], "start_seconds": ["30", "23"], "properties": ["food, pan, cook", "speed, water, boat"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a person riding a jet ski on a lake with trees in the background"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a motorboat speeds through water with wind noise "], "question": "which is moving faster", "label": 0}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["wqZ135Ssz0", "y2bVZ7rz-5M"], "start_seconds": ["60", "280"], "properties": ["man, woman, squawks", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is accompanied by a horn", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["w9lpbUn0hPc", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["male, wind, rustling", "beeps, hit, woman"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["continuous snoring", "waves crash against a shoreline and people speak"], "sample_ids": ["sLkeqCDJIyw", "yFB25fqfU8I"], "start_seconds": ["120", "300"], "properties": ["loud, snoring, noise", "wave, crash, shoreline"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is louder", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "insects humming with a dog barking and small goat bleating"], "sample_ids": ["uJV8NDaHqqk", "tIY7qOV3rEM"], "start_seconds": ["100", "0"], "properties": ["loud, fly, chirp", "animal, bark, dog, barking, small, goat, bleating"], "captions_pred_video": ["a bee hive in a wooden box", "a dog is standing in the middle of a dirt road in the woods"], "captions_pred_audio": ["a swarm of bees buzzing around", "a dog is barking and a cat is meowing"], "question": "which animal is barking", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "a man speaks over intermittent keyboard taps"], "sample_ids": ["sYITalLZjj4", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["water, rushes, background, birds", "audio, man, keyboard"], "captions_pred_video": ["two ducks are swimming in the water near each other", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["wind blows and birds chirp", "a man speaks and types on a computer keyboard "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "wind blows as people chatter quietly"], "sample_ids": ["s4Uz1Ffgo04", "xBxDz0CFVn0"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "wind, chatter, people"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["food is frying then a woman speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["ukxt9I7eMMg", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["food, woman, speak", "men, talk, cars"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["an insect buzzes around continuously", "people speak as gunfire rings out"], "sample_ids": ["v25l1jef3JY", "wqTCwqVRDlk"], "start_seconds": ["0", "80"], "properties": ["buzzes, continuously, insect", "gunfire, ring, speak"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["waves of water rumble", "a car accelerates and wind blows"], "sample_ids": ["vwqaIHKxLvM", "u0TrcHhkPQ"], "start_seconds": ["20", "20"], "properties": ["sound, wave, water", "accelerates, wind, blows"], "captions_pred_video": ["of a surfer riding a big wave in the ocean", null], "captions_pred_audio": ["waves crash and wind blows ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["an engine runs and wind blows", "a child speaks in closed space"], "sample_ids": ["vs65y4qmyBE", "yW6FWLSLkx4"], "start_seconds": ["340", "40"], "properties": ["engine, run, wind", "child, space, speak"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "water splashes as an animal walks through"], "sample_ids": ["x9JovgqUcs", "w1ir-sZ3Im8"], "start_seconds": ["500", "90"], "properties": ["a, man, speaks, keyboard", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man speaks and types on a keyboard", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["birds chirp and an owl hoots before a man speaks briefly", "someone is typing on a computer keyboard"], "sample_ids": ["wRBHTgrbiwg", "v0x1odnXtP0"], "start_seconds": ["50", "210"], "properties": ["bird, owl, speak", "keyboard, type, computer"], "captions_pred_video": ["of a bee pollinating the flowers in the field", "how to make money on youtube in spanish"], "captions_pred_audio": ["birds are chirping and insects are buzzing", "a person is typing on a keyboard"], "question": "which entity is a person", "label": 1}, {"captions": ["a person is burping then speaks and laughs", "someone is typing on a computer keyboard"], "sample_ids": ["wAAkbZToh8", "v0x1odnXtP0"], "start_seconds": ["0", "210"], "properties": ["burp, laugh, speak", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man burps and a woman speaks", "a person is typing on a keyboard"], "question": "which person is typing on a computer keyboard", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "three men talk while wind blows and some liquid flows"], "sample_ids": ["vz8868znkVQ", "vJ7JPEFhyLA"], "start_seconds": ["60", "16"], "properties": ["audio, click, kid speaking", "three men, wind, flow"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video", "label": 1}, {"captions": ["water splashes as an animal walks through", "water pouring and bubbling"], "sample_ids": ["w1ir-sZ3Im8", "uyRfq-jKPpo"], "start_seconds": ["90", "50"], "properties": ["animal, water, splashes", "water, bubbles, pouring"], "captions_pred_video": ["footage of a group of people riding horses through a river", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["water splashes and gurgles as people speak", "water is running from a faucet"], "question": "which entity is more calm", "label": 1}, {"captions": ["an airplane engine runs", "a person screams glaringly"], "sample_ids": ["yVPZ2MNWpms", "xC8kbrKJmco"], "start_seconds": ["0", "0"], "properties": ["engine, airplane, runs", "glaringly, screams, person"], "captions_pred_video": ["footage of an airport with planes parked on the tarmac", null], "captions_pred_audio": ["a car is driving by on the road ", "a goat is bleating "], "question": "which entity is louder", "label": 1}, {"captions": ["a man laughs and speaks as cats purr and hiss", "a propeller rotates loudly and intensely"], "sample_ids": ["vVhthZ45k3Y", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["cat, purr, hiss", "loud, intense, propeller"], "captions_pred_video": ["footage is blurry and out of focus", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sjlVMgdGSK0", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["accelerates, vehicle, race car", "applause, audience, yells"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "people applaud and hoot and chat quietly"], "sample_ids": ["uEU-Hg5MTN8", "wwyfGO2J4"], "start_seconds": ["27", "90"], "properties": ["animal, grunts, snorts", "people, applaud, hoot"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as horns blow", "dog barking and vehicle engine idling followed shortly by vehicle engine revving"], "sample_ids": ["tHyNqRyK34A", "zY3icUyMdh8"], "start_seconds": ["24", "20"], "properties": ["a, man, speaks", "dog, bark, engine"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a bus driving through a residential street at night"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a car is driving and dogs are barking and squealing "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an engine starts and increases in power", "a woman speaks and other women and a man talk with her"], "sample_ids": ["zjTG0gaGCUI", "vbpKkWvfOu4"], "start_seconds": ["80", "560"], "properties": ["power, increase, engine", "a, woman, man"], "captions_pred_video": [null, "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a jet engine roars as wind blows ", "a woman is speaking and a man is speaking"], "question": "which entity is a group of people", "label": 1}, {"captions": ["a child babbles as a woman speaks", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["wEBlkGWVWwE", "uZesmtKZGSw"], "start_seconds": ["260", "250"], "properties": ["a, babble, woman", "men, talk, cars"], "captions_pred_video": ["shows a person writing on the whiteboard", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a man speaks as water trickles down a stream", "a duck quacks continuously"], "sample_ids": ["sapQIQUhFc", "vh30P49Po6s"], "start_seconds": ["280", "30"], "properties": ["water, stream, trickles", "quacks, continuously, duck"], "captions_pred_video": [null, "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "someone whistles a tune"], "sample_ids": ["vh30P49Po6s", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["loud, continuous, quacks", "someone, tune, whistle"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a person whistling a song"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a small musical boom and then birds tweet and a few dogs pant"], "sample_ids": ["sK4u5T8hW78", "y2ZBGpgbhHM"], "start_seconds": ["30", "30"], "properties": ["a, car, pass", "birds, tweet, pant"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "birds chirping and a dog panting"], "question": "which entity has more animals", "label": 1}, {"captions": ["male speech followed by light wind, rustling, distant speech and brief hissing", "frogs croak and vocalize"], "sample_ids": ["w9lpbUn0hPc", "yswmmRZFItk"], "start_seconds": ["30", "0"], "properties": ["male, wind, rustling", "croak, vocalize, frog"], "captions_pred_video": ["footage of a man in a black shirt standing in front of a white truck in a parking lot", "a close up of a frog in the water"], "captions_pred_audio": ["a man is speaking with wind noise and breathing sounds in the background ", "a frog is croaking"], "question": "which entity is a frog?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "multiple people speak and children yell while water gurgles"], "sample_ids": ["uJV8NDaHqqk", "vb1fPSDI4c"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "multiple, people, yell"], "captions_pred_video": ["a bee hive in a wooden box", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as horns blow", "vehicles pass by on a roadway"], "sample_ids": ["tHyNqRyK34A", "tgbONvsP47Y"], "start_seconds": ["24", "0"], "properties": ["a, man, speaks", "pass, vehicle, roadway"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "a car is driving on the road "], "question": "which entity is more active", "label": 1}, {"captions": ["heavy rain splashes as it falls", "a motor idles, accelerates, then slows down."], "sample_ids": ["wP8ZKrlx3oA", "vYkA3cfXp5Q"], "start_seconds": ["40", "30"], "properties": ["fall, rain, splash", "speed, idle, accelerate"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a heavy rain is falling on a surface", "an engine is idling"], "question": "which entity is not a motor?", "label": 0}, {"captions": ["a horn honks twice and keys jingle, followed by a slam and an electronic beep", "a vehicle engine accelerating then running on idle"], "sample_ids": ["wSVhSdj0F0", "vYkA3cfXp5Q"], "start_seconds": ["10", "30"], "properties": ["horn honks, keys jingle, slam", "engine, accelerate, idle"], "captions_pred_video": [null, "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vf44CgrjT0A", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["loud, long, person", "female, spraying, scream"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a loud burp", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["a dog barks and whimpers", "an airplane flies overhead as a woman speaks"], "sample_ids": ["sShpyu2l4YQ", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["barks, whimpers, dog", "airplane, fly, overhead"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a dog is barking and growling", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying overhead", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "people applaud and hoot and chat quietly"], "sample_ids": ["tEE3MpBt1sg", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["drill, something, laugh", "people, applaud, hoot"], "captions_pred_video": ["footage is blurry due to the smoke in the air", null], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "people are clapping and speaking with background noise "], "question": "which entity is more likely to be a performance", "label": 1}, {"captions": ["an insect buzzes around continuously", "an engine runs loudly"], "sample_ids": ["v25l1jef3JY", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["buzzes, continuously, insect", "loud, engine, run"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["birds chirp as a bell rings", "a car accelerates and wind blows"], "sample_ids": ["ziUT9IFTkjg", "u0TrcHhkPQ"], "start_seconds": ["10", "20"], "properties": ["chirp, bell, ring", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a frog vocalizes while birds chirp", "a car accelerates and wind blows"], "sample_ids": ["vMf1dLD6Sng", "u0TrcHhkPQ"], "start_seconds": ["6", "20"], "properties": ["frog, bird, vocalize", "accelerates, wind, blows"], "captions_pred_video": ["a frog in a pond with pink flowers in the background", null], "captions_pred_audio": ["a frog croaks loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a drill drills through something then people begin laughing", "a woman speaks as she rubs two objects together"], "sample_ids": ["tEE3MpBt1sg", "vzxHnu-SFEw"], "start_seconds": ["50", "80"], "properties": ["drill, something, laugh", "two objects, woman, speak"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a demonstration of a tool?", "label": 0}, {"captions": ["a man speaks while a rooster crows and other people speak in the background", "a man speaks as a car is passing by"], "sample_ids": ["wz7N8YRy74I", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, people", "a, car, pass"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has a rooster in it?", "label": 0}, {"captions": ["birds vocalize and chirp continuously", "three men talk while wind blows and some liquid flows"], "sample_ids": ["w1mlz3Pe4fU", "vJ7JPEFhyLA"], "start_seconds": ["300", "16"], "properties": ["vocalize, chirp, continuously", "three men, wind, flow"], "captions_pred_video": ["of a bird in a cage", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a bird?", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "wind blowing followed by a zoom"], "sample_ids": ["sYITalLZjj4", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["water, rushes, background, birds", "wind, blow, zoom"], "captions_pred_video": ["two ducks are swimming in the water near each other", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["wind blows and birds chirp", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more calm", "label": 0}, {"captions": ["children cry and people talk", "a person snores loudly multiple times at a close distance"], "sample_ids": ["xLwHe825Zs", "sSMl2vc3ek"], "start_seconds": ["18", "20"], "properties": ["people talk, children cry, people talk", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby cries and a woman speaks", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a baby cries and a woman moans", "birds chirp, a woman speaks, and insects buzz"], "sample_ids": ["smDKStoHBJo", "t97k0cejSQE"], "start_seconds": ["0", "250"], "properties": ["a, cry, woman", "sound, chirp, buzz"], "captions_pred_video": ["a man holding a crying baby in his arms", "a bee on a purple thistle flower"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a bee buzzes and a woman speaks"], "question": "which entity has a higher pitch", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["t69a8aRKhmc", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["a, b, c", "background, birds, rustling"], "captions_pred_video": ["footage is blurry and out of focus", null], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "birds are chirping and a chime is ringing "], "question": "which entity has a bird in the background?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["vZAw4apG0Es", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["background, clock, ticktocks", "beeps, hit, woman"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a clock is ticking and people are talking", "a beep sounds followed by a child speaking"], "question": "which entity has a clock ticking in the background?", "label": 0}, {"captions": ["a man speaks then multiple motorcycles pass by", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["zcDwZ6W7E3E", "ukg5L09Wpvo"], "start_seconds": ["180", "150"], "properties": ["a, man, speak", "clickety-clack, train, whistle"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a infant makes noise and is excited"], "sample_ids": ["s4Uz1Ffgo04", "wIJK3-5y0kA"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "noise, excited, infant"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a baby cries and a woman speaks"], "question": "which entity is quieter", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "water splashes as an animal walks through"], "sample_ids": ["zl9Dqx-j7q4", "w1ir-sZ3Im8"], "start_seconds": ["6", "90"], "properties": ["engine, laugh, loud", "animal, water, splashes"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a jet engine roars ", "water splashes and gurgles as people speak"], "question": "which entity is more quiet", "label": 1}, {"captions": ["birds twitter and chirp and clatter", "a clock ticktocks"], "sample_ids": ["yeFvk9x0wWI", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["chirp, twitter, clatter", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a chime of a clock followed by various tones of ticking with come clinking", "a man speaks, another man speaks, and a small bell dings"], "sample_ids": ["uqFtmnhuqA8", "t69a8aRKhmc"], "start_seconds": ["30", "30"], "properties": ["a, b, c", "a, b, c"], "captions_pred_video": ["shows a clock on the wall of a room with a person standing in front of it", "footage is blurry and out of focus"], "captions_pred_audio": ["mechanisms are ticking and a hammer is striking ", "a man is speaking and birds are chirping in the background "], "question": "which entity has a ding?", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "small dogs yip and bark sharply"], "sample_ids": ["vqZuVbG6-HI", "v-wcQf4BDY0"], "start_seconds": ["130", "120"], "properties": ["background, male, female", "bark, yip, sharply"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a dog barks and growls"], "question": "which entity is more aggressive", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "an insect buzzes around continuously"], "sample_ids": ["vms5XGTDVQc", "v25l1jef3JY"], "start_seconds": ["220", "0"], "properties": ["paper, crumpled, crinkled", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["paper is crumpled and crinkled", "a fly is buzzing around a microphone "], "question": "which entity is a living thing", "label": 1}, {"captions": ["a motorcycle engine works nearby", "several insects fly while two men talk"], "sample_ids": ["tOSWIURC-4", "s-T9OVOiMLo"], "start_seconds": ["0", "330"], "properties": ["engine, work, nearby", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a lawn mower is running ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a living thing", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "vehicles pass by on a roadway"], "sample_ids": ["y2bVZ7rz-5M", "tgbONvsP47Y"], "start_seconds": ["280", "0"], "properties": ["motor noise, horn, siren", "pass, vehicle, roadway"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "some tunes played by whistling"], "sample_ids": ["tQWGZLItBXk", "u6BnG6YZqJ4"], "start_seconds": ["170", "0"], "properties": ["voice, music, whoosh", "tune, play, whistling"], "captions_pred_video": ["worms revolution screenshots", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a vehicle engine runs and wind blows before women yell", "waves crash against a shoreline and people speak"], "sample_ids": ["w5W5Kqtc8E", "yFB25fqfU8I"], "start_seconds": ["100", "300"], "properties": ["wind, blow, vehicle", "wave, crash, shoreline"], "captions_pred_video": [null, "footage of a person surfing in the ocean"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more likely to be in a storm", "label": 1}, {"captions": ["a man speaks as a car is passing by", "someone is typing on a computer keyboard"], "sample_ids": ["sK4u5T8hW78", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["a, car, pass", "keyboard, type, computer"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["birds chirp as a bell rings", "music plays and a woman speaks on a radio before gunshots are fired"], "sample_ids": ["ziUT9IFTkjg", "xKB8O8LTs6s"], "start_seconds": ["10", "70"], "properties": ["chirp, bell, ring", "music, radio, gunshots"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["vBHyYJ8pL0", "uZesmtKZGSw"], "start_seconds": ["2", "250"], "properties": ["noise, door, opening", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is about cars?", "label": 1}, {"captions": ["a man speaks while water trickles and flows", "people cheer as a vehicle engine revs"], "sample_ids": ["sapQIQUhFc", "xjhAnI2q6hM"], "start_seconds": ["280", "6"], "properties": ["water, trickles, flow", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["an infant crying and a woman speaking with some distant murmuring", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["smDKStoHBJo", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["a, infant, speaking", "two men, woman, birds"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a male speaks over some small clicks", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["uXxVebHsGZ8", "ziUT9IFTkjg"], "start_seconds": ["30", "10"], "properties": ["male, clicks, speak", "background, birds, rustling"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man speaks and types on a computer keyboard", "birds are chirping and a chime is ringing "], "question": "which entity has a background of birds chirping", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "a toilet flushes and water drains"], "sample_ids": ["yNtRmrn0io8", "sfAvvZwdLCY"], "start_seconds": ["210", "20"], "properties": ["storm, distance, strike", "water drains, flushes, water"], "captions_pred_video": ["footage of a house in the middle of the night", "footage of the toilet in the bathroom"], "captions_pred_audio": ["rain falls and thunder roars", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["an aircraft engine runs", "a horn rings out as a machine runs by"], "sample_ids": ["yLCORCnd35Q", "slZLHwNbbt4"], "start_seconds": ["0", "300"], "properties": ["engine, aircraft, runs", "a, horn, run"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a machine?", "label": 1}, {"captions": ["a duck quacks continuously", "vehicles pass by on a roadway"], "sample_ids": ["vh30P49Po6s", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["quacks, continuously, duck", "pass, vehicle, roadway"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a duck is quacking loudly", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a person snores loudly multiple times at a close distance"], "sample_ids": ["yYJksgsxx5U", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["audio, woman, silverware", "loud, multiple, distance"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", null], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sSMl2vc3ek", "uEU-Hg5MTN8"], "start_seconds": ["20", "27"], "properties": ["a person, laughs, snores", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and a baby is crying"], "question": "which entity is a person?", "label": 0}, {"captions": ["pigeons vocalize and birds chirp", "a person snores loudly multiple times at a close distance"], "sample_ids": ["uiS58TNyUiw", "sSMl2vc3ek"], "start_seconds": ["430", "20"], "properties": ["vocalize, bird, chirp", "loud, multiple, distance"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["rwTERCUno", "su6FAOcOA8c"], "start_seconds": ["90", "4"], "properties": ["engine, idle, sputter", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["an engine is idling and vibrating", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "race cars go around a track as a man commentates"], "sample_ids": ["wz7N8YRy74I", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["rooster, crow, background, men", "car, track, man"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["a man speaks in the background while a slow tick repeats", "vehicles pass by on a roadway"], "sample_ids": ["vZAw4apG0Es", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["background, tick, repeat", "pass, vehicle, roadway"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a clock is ticking and people are talking", "a car is driving on the road "], "question": "which entity has a lot of vehicles passing by on a roadway?", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "people speak as gunfire rings out"], "sample_ids": ["t8CV69hcvF0", "wqTCwqVRDlk"], "start_seconds": ["210", "80"], "properties": ["person, sneeze, follow", "gunfire, ring, speak"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman sneezes and speaks", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "an infant crying as a woman laughs"], "sample_ids": ["zcDwZ6W7E3E", "xhmRY9yhC7c"], "start_seconds": ["180", "20"], "properties": ["man, speak, motorcycles", "a, laugh, infant"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a siren comes to life as a horn blares"], "sample_ids": ["y2bVZ7rz-5M", "u--KhUW8l1Y"], "start_seconds": ["280", "0"], "properties": ["motor noise, horn, siren", "horn, siren, life"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a firefighter spraying water from a fire hydrant at night"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a fire truck siren blares and a horn blows "], "question": "which entity has a horn that is blaring?", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "water is sprayed across a hard surface"], "sample_ids": ["uEU-Hg5MTN8", "sQwlkXjQabo"], "start_seconds": ["27", "10"], "properties": ["a woman, laughs, animal", "water, spray, surface"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "an airplane engine runs"], "sample_ids": ["soTOh3zYJfY", "yVPZ2MNWpms"], "start_seconds": ["40", "0"], "properties": ["vehicle, skid, tires", "engine, airplane, runs"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a car is driving by on the road "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["some liquid flows while a woman laughs and man talks", "a race car approaches quickly and slows down squealing tires"], "sample_ids": ["vddP56-ogds", "sEprKHm8Sj8"], "start_seconds": ["30", "90"], "properties": ["liquid, laughs, man", "car, tires, slows"], "captions_pred_video": [null, "rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "a male speaks and another male speaks"], "sample_ids": ["xV7Mg1QucSc", "viuTg1M-dqg"], "start_seconds": ["14", "30"], "properties": ["alarm, ticktocks, laughs", "two males, speaking, male"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more males speaking", "label": 1}, {"captions": ["an animal growls followed by birds chirping", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y2ZBGpgbhHM", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["animal, growl, bird", "men, talk, cars"], "captions_pred_video": [null, "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["birds chirping and a dog panting", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["food is frying while a woman speaks", "someone snores nearby"], "sample_ids": ["yhQ2Lg-7qDY", "spJCm8tD9Zo"], "start_seconds": ["130", "90"], "properties": ["food, woman, speak", "someone snores, nearby, someone"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a person is snoring loudly"], "question": "what is a person doing in the first picture?", "label": 0}, {"captions": ["a child and woman laughs and the woman speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["uPDn2BFTHk", "zj2R0XoFr5k"], "start_seconds": ["140", "50"], "properties": ["woman, laughs, speaks", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman speaks while a helicopter flies overhead "], "question": "which entity shows a child and woman laughs and the woman speaks?", "label": 0}, {"captions": ["a girl talking, laughing and sneezing noise", "an engine runs loudly"], "sample_ids": ["y4tPJXBKDig", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["a, noise, talk", "loud, engine, run"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a lawn mower is running and men are speaking "], "question": "which noise is louder", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a woman speaks and is crumpling paper"], "sample_ids": ["uEU-Hg5MTN8", "xvDdE3zNf8Y"], "start_seconds": ["27", "120"], "properties": ["a woman, laughs, animal", "A, crumple, paper"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of a woman in a white shirt and glasses holding a purple tie"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman speaks and crumples paper"], "question": "which woman is crumpling paper", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a vehicle engine runs and someone speaks"], "sample_ids": ["xKB8O8LTs6s", "zF8yoL0rkbI"], "start_seconds": ["70", "30"], "properties": ["music, radio, gunshots", "engine, run, someone"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of the traffic on the street at night"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "the wind is blowing hard and water is splashing"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a woman speaks with water running", "propeller rearing loudly with some male and female voices interspersed in the background"], "sample_ids": ["wTideSjRFS0", "vqZuVbG6-HI"], "start_seconds": ["30", "130"], "properties": ["water, running, woman", "background, male, female"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a lawn mower is running and men are speaking "], "question": "which entity has a woman speaking with water running in the background?", "label": 0}, {"captions": ["a train horn blares as a train passes, then fades", "people speak as gunfire rings out"], "sample_ids": ["zVacuqSb4LI", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["blares, fades, train", "gunfire, ring, speak"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["dogs barking and whimpering", "someone whistles a tune"], "sample_ids": ["tIY7qOV3rEM", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["barking, whimpering, dog", "someone, tune, whistle"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", null], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a person whistling a song"], "question": "which entity is a human", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "birds chirp and objects are moved around"], "sample_ids": ["vBslzh7saPw", "yPUYU6t3rwo"], "start_seconds": ["90", "370"], "properties": ["power, scream, increase", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a jet engine roars and accelerates ", "insects buzz and a man speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "motors runs briefly and tires screech"], "sample_ids": ["sZvwOuuPGP0", "yRx9txMcBl0"], "start_seconds": ["50", "40"], "properties": ["engine, diesel, truck", "motors, tires, screech"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "in 10 words or less the video is about a red mustang driving down a street at night in grand theft auto 5 gta 5, gta 5 mods, gta 5 cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta 5 mods cars, gta"], "captions_pred_audio": ["a medium engine is running ", "a car is revving its engine and skidding "], "question": "which entity has a continuous running engine", "label": 0}, {"captions": ["a clock ticktocks in wind", "a duck quacks loudly and continuously"], "sample_ids": ["yVumC9TGknc", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, wind", "loud, continuous, quacks"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a series of beeps and chirps", "a duck is quacking loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["yZp6xizR0yU", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["animal, bleat, cry", "stream, water, flow"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "footage is blurry and out of focus"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a man is speaking with wind noise in the background "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a man talks as several small engines run", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u9A6VZQCZpU", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["a, man, talk", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking while a race car is revving and accelerating ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is about a boy flying an airplane?", "label": 1}, {"captions": ["a bird is chirping and tweeting a bird song", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["wPz6QRAkEb4", "zFjIWfSD-4"], "start_seconds": ["60", "410"], "properties": ["chirps, tweets, song", "People, motor, brakes"], "captions_pred_video": ["a bird in a cage on top of a pole", null], "captions_pred_audio": ["birds are chirping in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is not a bird?", "label": 1}, {"captions": ["pigeons vocalize and birds chirp", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uiS58TNyUiw", "zFjIWfSD-4"], "start_seconds": ["430", "410"], "properties": ["vocalize, bird, chirp", "People, motor, brakes"], "captions_pred_video": ["of the pigeon in the cage", null], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is not a symphony", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "an airplane engine spools and people speak"], "sample_ids": ["xKB8O8LTs6s", "wTjoRj1se3U"], "start_seconds": ["70", "390"], "properties": ["music, gunfire, explosion", "airplane, engine, spool"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a jet engine is running and people are talking"], "question": "which entity is a video of an airplane engine spooling?", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a machine beeps continuously"], "sample_ids": ["wnpJndXuxLc", "y682ml90jGw"], "start_seconds": ["50", "11"], "properties": ["blows, vehicle, train", "beeps, machine, continuously"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["speaking following by laughing and clapping", "water pouring and bubbling"], "sample_ids": ["u2f5NpsoHBg", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["person, laugh, clap", "water, bubbles, pouring"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a baby cries and wails as an adult female speaks", "wind blows as people chatter quietly"], "sample_ids": ["zliInBdC98Y", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["a, baby, cries, wails", "wind, chatter, people"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "footage is blurry and out of focus"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a small engine spits as it runs", "paper is crumpling consistently"], "sample_ids": ["sZvwOuuPGP0", "v5cSxLaHADY"], "start_seconds": ["50", "0"], "properties": ["spits, engine, runs", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a medium engine is running ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yZmhM1HcsyE", "w5W5Kqtc8E"], "start_seconds": ["4", "100"], "properties": ["engine, roar, water", "wind, blow, vehicle"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", null], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a girl talking, laughing and sneezing noise", "a person snores loudly multiple times at a close distance"], "sample_ids": ["y4tPJXBKDig", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["a, noise, talk", "loud, multiple, distance"], "captions_pred_video": ["footage of the woman wiping her nose with a tissue", null], "captions_pred_audio": ["a woman is speaking and coughing with background noise and breathing ", "a person snoring loudly"], "question": "which noise is louder", "label": 1}, {"captions": ["a dog barks and whimpers", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["sShpyu2l4YQ", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "male, duck, laugh"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a car speeding up in the distance", "people applaud and hoot and chat quietly"], "sample_ids": ["u0TrcHhkPQ", "wwyfGO2J4"], "start_seconds": ["20", "90"], "properties": ["distance, car, speed", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "people are clapping and speaking with background noise "], "question": "which entity is moving faster", "label": 0}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "a woman speaks happily and an animal chirps"], "sample_ids": ["ul60S8TXDA8", "uWAAAL4CIoc"], "start_seconds": ["60", "0"], "properties": ["sound, distance, bell", "a woman, chirps, animal"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", null], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a woman is speaking and a dog is barking "], "question": "which entity is more quiet", "label": 1}, {"captions": ["long loud burping by a man", "water flows as men speak and yell"], "sample_ids": ["xmiUIOhtZyQ", "vJ7JPEFhyLA"], "start_seconds": ["60", "16"], "properties": ["loud, burp, man", "water, flow, men"], "captions_pred_video": ["homer simpson drinking a beer", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a person burps and music plays in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a man speaking and yelling?", "label": 1}, {"captions": ["a motor noise is accompanied by a door opening and closing", "a woman speaks as she rubs two objects together"], "sample_ids": ["vBHyYJ8pL0", "vzxHnu-SFEw"], "start_seconds": ["2", "80"], "properties": ["noise, door, opening", "two objects, woman, speak"], "captions_pred_video": [null, "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["mechanisms are ticking and a sliding door is opening and closing ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["an engine sputters followed by a car zooming by", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["u5RmF3c3Aw", "y2bVZ7rz-5M"], "start_seconds": ["60", "280"], "properties": ["engine, car, zoom", "motor noise, horn, siren"], "captions_pred_video": [null, "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a race car accelerates and skids with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a car zooming by", "label": 0}, {"captions": ["people converse in the distance as a clock ticks", "a person is whistling"], "sample_ids": ["vZAw4apG0Es", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["people, clock, converse", "person, whistling, person"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a person whistling a song"], "question": "which person is whistling", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["zofjfKhqLk8", "uYT5gxnyMWM"], "start_seconds": ["10", "50"], "properties": ["noise, stop, motor", "a, scream, girl"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and a baby is crying"], "question": "which entity has more noise", "label": 1}, {"captions": ["bird squawks are accompanied by a man and woman speaking", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["wqZ135Ssz0", "vlS6YMeWAPo"], "start_seconds": ["60", "40"], "properties": ["man, woman, squawks", "sheep, baa, birds"], "captions_pred_video": [null, "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a goat bleats and birds chirp"], "question": "which entity has more animals", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vlJS7LN2XyM", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["background, clocks, ticking", "harsh, wind, blows"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with wind noise in the background "], "question": "which entity is more calm", "label": 0}, {"captions": ["men speak and a nozzle sprays liquid", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["wRV8yMk886E", "w34HjHr6gAY"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "beeps, hit, woman"], "captions_pred_video": ["two cars are parked in a parking lot at night", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a man speaks as a motor runs in the background"], "sample_ids": ["xhmRY9yhC7c", "xZepNM9qcRA"], "start_seconds": ["20", "30"], "properties": ["a, laugh, infant", "background, motor, run"], "captions_pred_video": ["of a baby crying in a baby bouncer", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is a person", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a child speaks in closed space"], "sample_ids": ["sK4u5T8hW78", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["a, car, pass", "child, space, speak"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a woman speaks and taps on a hard surface before running tap water"], "sample_ids": ["sQwlkXjQabo", "wvKpEYswXO0"], "start_seconds": ["10", "150"], "properties": ["water, spray, surface", "water, tap, run"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "of the person preparing food in the kitchen"], "captions_pred_audio": ["spraying followed by silence", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a source of water", "label": 1}, {"captions": ["a cat meows and children speak", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["x5cuQjOdM3E", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["cat, speak, children", "animal, grunts, snorts"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a cat meows and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is more active", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a horn blasts as warning bells ring"], "sample_ids": ["w34HjHr6gAY", "zgUgkpk78xU"], "start_seconds": ["30", "70"], "properties": ["beeps, squawk, child speaking", "horn, bells, ring"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a warning", "label": 1}, {"captions": ["a woman speaks and laughs and an animal grunts and snorts", "a duck quacks continuously"], "sample_ids": ["uEU-Hg5MTN8", "vh30P49Po6s"], "start_seconds": ["27", "30"], "properties": ["animal, grunts, snorts", "quacks, continuously, duck"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a duck is quacking loudly"], "question": "which animal is speaking", "label": 1}, {"captions": ["a vehicle engine runs as a siren and horn sound", "an infant crying as a woman laughs"], "sample_ids": ["u--KhUW8l1Y", "xhmRY9yhC7c"], "start_seconds": ["0", "20"], "properties": ["sound, vehicle, horn", "a, laugh, infant"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a helicopter engine runs continuously"], "sample_ids": ["vhJWZheqaE", "ugHJF0hfYkg"], "start_seconds": ["0", "10"], "properties": ["water drains unevenly, toilet flushes, water drains", "engine, running, continuously"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a toilet is flushed", "a helicopter is flying overhead "], "question": "which entity is not running continuously?", "label": 0}, {"captions": ["a person is burping then speaks and laughs", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["wAAkbZToh8", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["burp, laugh, speak", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man burps and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity is a person?", "label": 0}, {"captions": ["a woman speaks as frying food sizzles", "a telephone rings followed by a woman talking"], "sample_ids": ["wTideSjRFS0", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["food, sizzle, woman", "ring, talk, woman"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a dial tone sounds followed by a woman speaking"], "question": "which woman is talking", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "people speak as gunfire rings out"], "sample_ids": ["u7C-AEBQM", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["ticks, rhythmic, quiet", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["a jet engine spools up and takes off", "a man speaks while water trickles and flows"], "sample_ids": ["vBslzh7saPw", "sapQIQUhFc"], "start_seconds": ["90", "280"], "properties": ["engine, spools, takes", "water, trickles, flow"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a man is speaking and a stream is flowing in the background "], "question": "which entity is a moving object", "label": 0}, {"captions": ["animals bleat and cry out and then a woman speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yZp6xizR0yU", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["animal, bleat, cry", "rustling, ducks, quack"], "captions_pred_video": ["footage of a woman feeding goats in a barn", null], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 0}, {"captions": ["an airplane flies overhead as a woman speaks", "a few ducks quack and scamper and a man speaks"], "sample_ids": ["zj2R0XoFr5k", "w2bYrCVLT60"], "start_seconds": ["50", "120"], "properties": ["airplane, fly, overhead", "ducks, speak, quack"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of the ducks drinking from a pink pool in the grass"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "ducks are quacking and a man is speaking"], "question": "which entity is speaking", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["y8WEcpOlT3I", "wz7N8YRy74I"], "start_seconds": ["40", "30"], "properties": ["harsh, wind, blows", "rooster, crow, background, men"], "captions_pred_video": ["on how to use a sewing machine youtube", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a stream of water flows as people talk and wind blows"], "sample_ids": ["rqfQRErjfk8", "xBxDz0CFVn0"], "start_seconds": ["170", "30"], "properties": ["crowd, cheers, applauds", "stream, water, flow"], "captions_pred_video": ["a man hugging another man in front of an orchestra", "footage is blurry and out of focus"], "captions_pred_audio": ["a crowd of people clapping and cheering", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a clock ticktocks and sounds an alarm then a man laughs", "someone is typing on a computer keyboard"], "sample_ids": ["xV7Mg1QucSc", "v0x1odnXtP0"], "start_seconds": ["14", "210"], "properties": ["alarm, ticktocks, laughs", "keyboard, type, computer"], "captions_pred_video": ["a cuckoo clock hanging on the wall", "how to make money on youtube in spanish"], "captions_pred_audio": ["an alarm clock ticks and a woman laughs", "a person is typing on a keyboard"], "question": "which object is used to type on a computer", "label": 1}, {"captions": ["a vehicle accelerates squealing tires", "a horn rings out as a machine runs by"], "sample_ids": ["sd7xVssqlw", "slZLHwNbbt4"], "start_seconds": ["50", "300"], "properties": ["accelerates, tires, squealing", "a, horn, run"], "captions_pred_video": [null, "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "an infant crying as a woman laughs"], "sample_ids": ["zj2R0XoFr5k", "xhmRY9yhC7c"], "start_seconds": ["50", "20"], "properties": ["airplane, boy, fly", "a, laugh, infant"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["continuous chugging with birds chirping in the background", "a door opens and closes"], "sample_ids": ["xM4joTqDVp4", "vBHyYJ8pL0"], "start_seconds": ["160", "2"], "properties": ["background, chirp, birds", "open, close, door"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", null], "captions_pred_audio": ["birds are chirping and a train is moving ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which door is opening and closing", "label": 1}, {"captions": ["an adult man speaks over glass clinking", "a stream of water flows as people talk and wind blows"], "sample_ids": ["u6jIvCtKarQ", "xBxDz0CFVn0"], "start_seconds": ["70", "30"], "properties": ["a, man, speaks", "stream, water, flow"], "captions_pred_video": ["footage of a person using a blender on a stove top", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and dishes are being moved with background noise ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["speaking following by laughing and clapping", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["u2f5NpsoHBg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["person, laugh, clap", "female, spraying, scream"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a woman is speaking and a baby is crying"], "question": "which entity shows a person speaking", "label": 0}, {"captions": ["a man speaks on a radio as wind blows", "a motorcycle engine works nearby"], "sample_ids": ["tDVADusiIoc", "tOSWIURC-4"], "start_seconds": ["60", "0"], "properties": ["man, radio, blows", "engine, work, nearby"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a lawn mower is running "], "question": "which entity is working", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["ukxt9I7eMMg", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["continuous, woman, speaking", "male, duck, laugh"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck quacking as others laugh?", "label": 1}, {"captions": ["plastic is tapped on while someone speaks", "wind blowing followed by a zoom"], "sample_ids": ["wvKpEYswXO0", "vr8ZXjEBhMQ"], "start_seconds": ["150", "150"], "properties": ["plastic, tap, speak", "wind, blow, zoom"], "captions_pred_video": ["of the person preparing food in the kitchen", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["a toilet flushes and water drains", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["sfAvvZwdLCY", "xKB8O8LTs6s"], "start_seconds": ["20", "70"], "properties": ["water drains, flushes, water", "music, gunfire, explosion"], "captions_pred_video": ["footage of the toilet in the bathroom", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a toilet is flushed", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is a scene of a toilet flushing and water draining?", "label": 0}, {"captions": ["people converse in the distance as a clock ticks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vZAw4apG0Es", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["people, clock, converse", "applause, audience, yells"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["an insect buzzes around continuously", "people applaud and hoot and chat quietly"], "sample_ids": ["v25l1jef3JY", "wwyfGO2J4"], "start_seconds": ["0", "90"], "properties": ["buzzes, continuously, insect", "people, applaud, hoot"], "captions_pred_video": ["a black background with a cartoon character in the foreground", null], "captions_pred_audio": ["a fly is buzzing around a microphone ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays"], "sample_ids": ["xKB8O8LTs6s", "sU53zg9Jp7s"], "start_seconds": ["70", "380"], "properties": ["music, radio, gunshots", "a bird chirps, a door bell ringing, a woman gasps"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "a cartoon girl is standing in front of a blue couch"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "birds chirp and a doorbell rings with breathing and music in the background "], "question": "which entity is more calm", "label": 1}, {"captions": ["a dog barks and whimpers", "an infant crying frantically"], "sample_ids": ["sShpyu2l4YQ", "zwOBqeFTgiU"], "start_seconds": ["0", "30"], "properties": ["barks, whimpers, dog", "cry, infant, frantically"], "captions_pred_video": ["the puppies are playing with a toy", "of the baby crying in the car seat"], "captions_pred_audio": ["a dog is barking and growling", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a man speaks as music plays before artillery is fired", "some men converse over an engine running"], "sample_ids": ["vcmWSmvti8", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["music, man, fire", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking as music plays before artillery is fired?", "label": 0}, {"captions": ["a woman speaks over sizzling noise", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["yajyRTUQk3U", "wz7N8YRy74I"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "rooster, crow, background, men"], "captions_pred_video": ["- a woman cooking in the kitchen", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "plastic is tapped on while someone speaks"], "sample_ids": ["uYT5gxnyMWM", "wvKpEYswXO0"], "start_seconds": ["50", "150"], "properties": ["person, spray, yell", "plastic, tap, speak"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a person speaking over?", "label": 0}, {"captions": ["a man speaks as music plays before artillery is fired", "a man speaks followed by another man speaking outside"], "sample_ids": ["vcmWSmvti8", "viuTg1M-dqg"], "start_seconds": ["30", "30"], "properties": ["music, man, fire", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking music is playing and an explosion is heard ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more people speaking", "label": 1}, {"captions": ["gunshots ring out, a man yells, and more shots follow", "someone is typing on a computer keyboard"], "sample_ids": ["vKrYfzleLB8", "v0x1odnXtP0"], "start_seconds": ["110", "210"], "properties": ["a, ring, gunshots", "keyboard, type, computer"], "captions_pred_video": ["stock footage of a person holding a gun in their hand", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking with background noise and a cap gun is fired ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["winds blows roughly as a vehicle races past", "several insects fly while two men talk"], "sample_ids": ["xjvTpk2Zpr8", "s-T9OVOiMLo"], "start_seconds": ["70", "330"], "properties": ["wind, blows, vehicle", "several, fly, men"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a man is speaking while insects are buzzing in the background "], "question": "which entity is more likely to be in a garden", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "a man speaks followed by another man speaking outside"], "sample_ids": ["tDlfY3nmx1A", "viuTg1M-dqg"], "start_seconds": ["160", "30"], "properties": ["applause, laugh, man", "two men, speak, follow"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has two men speaking to each other?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["wy1eKjR7KC0", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["people, talk, distance", "a woman, something, fried"], "captions_pred_video": ["two police officers riding motorcycles down the street", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a harsh wind blows as a man speaks and another man speaks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["y8WEcpOlT3I", "tiDFTC-5vU"], "start_seconds": ["40", "30"], "properties": ["harsh, wind, blows", "male, duck, laugh"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a man speaks as a motor runs in the background"], "sample_ids": ["ukg5L09Wpvo", "xZepNM9qcRA"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "background, motor, run"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["wyllXV6PjKo", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["a kid, talk, cry", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a woman speaks and a baby cries", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a clock ticktocks in wind", "wind blows as people chatter quietly"], "sample_ids": ["yVumC9TGknc", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticktocks, clock, wind", "wind, chatter, people"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", "footage is blurry and out of focus"], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a motorcycle engine works nearby", "water pouring and bubbling"], "sample_ids": ["tOSWIURC-4", "uyRfq-jKPpo"], "start_seconds": ["0", "50"], "properties": ["engine, work, nearby", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a lawn mower is running ", "water is running from a faucet"], "question": "which is a liquid", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["sTpirNYo8vQ", "w34HjHr6gAY"], "start_seconds": ["30", "30"], "properties": ["a, tone, fast", "beeps, hit, woman"], "captions_pred_video": ["of a man taking a selfie on a bus", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a beep sounds followed by a child speaking"], "question": "which entity has a woman talking?", "label": 1}, {"captions": ["multiple birds chirp and an animal grunts", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tDlysoZiA1I", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["animal, grunt, multiple", "female, spraying, scream"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["young female child snoring and breathing deeply", "a person sniffs and sneezes"], "sample_ids": ["sAam2NqGhLY", "uRlbY6aoBU"], "start_seconds": ["20", "0"], "properties": ["snoring, breathing, child", "sneezes, person, sniffs"], "captions_pred_video": ["of a little girl sleeping on a couch", null], "captions_pred_audio": ["a person is snoring", "a man is sneezing "], "question": "which entity is a person", "label": 1}, {"captions": ["a person snoring", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["t8tv5YRMJUg", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["a person, snore, loud", "a, scream, girl"], "captions_pred_video": ["of a man getting his face licked by another man", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person sniffs and breathes heavily", "a woman is speaking and a baby is crying"], "question": "which entity is louder", "label": 1}, {"captions": ["a clicking followed by some people laughing and a kid speaking", "an infant crying as a woman laughs"], "sample_ids": ["vz8868znkVQ", "xhmRY9yhC7c"], "start_seconds": ["60", "20"], "properties": ["audio, click, kid speaking", "a, laugh, infant"], "captions_pred_video": ["a video of a plane flying over a cloudy sky", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a baby is laughing and breathing with background noise ", "a baby cries and a woman speaks"], "question": "which entity is a video", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zgUgkpk78xU", "yajyRTUQk3U"], "start_seconds": ["70", "400"], "properties": ["clinking, humming, horn", "a woman, something, fried"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking while food is frying in the background"], "question": "which entity is about cooking?", "label": 1}, {"captions": ["a large crowd cheers and applauds", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["rqfQRErjfk8", "w5W5Kqtc8E"], "start_seconds": ["170", "100"], "properties": ["crowd, cheers, applauds", "wind, blow, vehicle"], "captions_pred_video": ["a man hugging another man in front of an orchestra", null], "captions_pred_audio": ["a crowd of people clapping and cheering", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more likely to be at a sporting event", "label": 0}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "dishes cling together then a man begins to speak"], "sample_ids": ["vbZ-0lGPneg", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["a woman, a television program, a bird", "cling, speak, dishes"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "mechanisms are operating and water is splashing "], "question": "which entity has a bird?", "label": 0}, {"captions": ["a church bell rings several times", "a car speeding up in the distance"], "sample_ids": ["sUVVjE3Ucp8", "u0TrcHhkPQ"], "start_seconds": ["0", "20"], "properties": ["ring, bell, several", "distance, car, speed"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", null], "captions_pred_audio": ["a church bell is ringing ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a jet engine spools up and takes off"], "sample_ids": ["tIY7qOV3rEM", "vBslzh7saPw"], "start_seconds": ["0", "90"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "engine, spools, takes"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a pickup truck carrying a large object down the road"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a jet engine roars and accelerates "], "question": "which entity is not a living thing", "label": 1}, {"captions": ["a telephone rings followed by a woman talking", "a man speaks as a car is passing by"], "sample_ids": ["tGcFnX0GHI", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["ring, talk, woman", "a, car, pass"], "captions_pred_video": [null, "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a dial tone sounds followed by a woman speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["a vehicle engine revs as the vehicle passes", "people cheer as a vehicle engine revs"], "sample_ids": ["yDoT73BWsdA", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["engine, revs, vehicle", "engine revs, vehicle, people"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a truck is revving its engine and a man is speaking "], "question": "which vehicle is revving its engine", "label": 1}, {"captions": ["an infant crying as a woman laughs", "dishes cling together then a man begins to speak"], "sample_ids": ["xhmRY9yhC7c", "sQGXqGcwOTc"], "start_seconds": ["20", "3"], "properties": ["a, laugh, infant", "cling, speak, dishes"], "captions_pred_video": ["of a baby crying in a baby bouncer", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a baby cries and a woman speaks", "mechanisms are operating and water is splashing "], "question": "which entity is about a woman and an infant?", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "people speak as gunfire rings out"], "sample_ids": ["vzxHnu-SFEw", "wqTCwqVRDlk"], "start_seconds": ["80", "80"], "properties": ["two objects, woman, speak", "gunfire, ring, speak"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["an engine runs and a man speaks", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["yT5WfYMRr-U", "wqZ135Ssz0"], "start_seconds": ["30", "60"], "properties": ["engine, run, man", "two men, woman, birds"], "captions_pred_video": ["a man in a red jacket and sunglasses driving a boat", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a infant makes noise and is excited"], "sample_ids": ["zPX9o1uDiI", "wIJK3-5y0kA"], "start_seconds": ["40", "30"], "properties": ["engine, horn, run", "noise, excited, infant"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["multiple ducks quack continuously", "several insects fly while two men talk"], "sample_ids": ["wfHeoPDLMaM", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["multiple, quack, continuously", "several, fly, men"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["ducks are quacking", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a video of a single event", "label": 1}, {"captions": ["a person speaks briefly", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["zOZleIRqZm4", "wDVMhEdTiVw"], "start_seconds": ["80", "30"], "properties": ["person, talk, brief", "gun, shoot, water"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause injury", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "someone is typing on a computer keyboard"], "sample_ids": ["wvKpEYswXO0", "v0x1odnXtP0"], "start_seconds": ["150", "210"], "properties": ["water, tap, run", "keyboard, type, computer"], "captions_pred_video": ["of the person preparing food in the kitchen", "how to make money on youtube in spanish"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a person is typing on a keyboard"], "question": "which action is performed on a computer", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["y1saVTXsKwc", "xBxDz0CFVn0"], "start_seconds": ["80", "30"], "properties": ["a, dog, talk", "stream, water, flow"], "captions_pred_video": ["a dog playing with a pink ball", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog barks and a man speaks", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["tIY7qOV3rEM", "tDVADusiIoc"], "start_seconds": ["0", "60"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "water, radio, man"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a power tool runs and touches a surface", "a man speaks as a motor runs in the background"], "sample_ids": ["zfvPRf3chY", "xZepNM9qcRA"], "start_seconds": ["290", "30"], "properties": ["power tool, run, touch", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is not touching a surface", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "roadway noise occurs and a truck accelerates"], "sample_ids": ["wTjoRj1se3U", "tgbONvsP47Y"], "start_seconds": ["390", "0"], "properties": ["engine, run, people", "noise, truck, accelerate"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car is driving on the road "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "paper is crumpling consistently"], "sample_ids": ["w2M4i1mklOA", "v5cSxLaHADY"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of an antique clock", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a clock ticks quietly and rhythmically"], "sample_ids": ["y8WEcpOlT3I", "u7C-AEBQM"], "start_seconds": ["40", "30"], "properties": ["wind, speak, buffeting", "ticks, rhythmic, quiet"], "captions_pred_video": ["on how to use a sewing machine youtube", null], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a ticktock of a clock"], "question": "which entity is quieter", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "music plays and a woman speaks on a radio before gunshots are fired"], "sample_ids": ["vddP56-ogds", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["liquid, laughs, man", "music, radio, gunshots"], "captions_pred_video": [null, "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vs65y4qmyBE", "vbZ-0lGPneg"], "start_seconds": ["340", "30"], "properties": ["engine, run, man", "a woman, a television program, a bird"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["wind blows strongly and a young man speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["vs65y4qmyBE", "xBxDz0CFVn0"], "start_seconds": ["340", "30"], "properties": ["wind, blows, strongly", "stream, water, flow"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["multiple motorcycles pass by as a man speaks", "leaves rustling followed by a small bell chiming as birds chirp in the background"], "sample_ids": ["zcDwZ6W7E3E", "ziUT9IFTkjg"], "start_seconds": ["180", "10"], "properties": ["man, speak, motorcycles", "background, birds, rustling"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", null], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "birds are chirping and a chime is ringing "], "question": "which entity is a video of a man speaking?", "label": 0}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "someone is typing on a computer keyboard"], "sample_ids": ["sG7TyPnFDR0", "v0x1odnXtP0"], "start_seconds": ["180", "210"], "properties": ["beeps, machine, smoke alarm", "keyboard, type, computer"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a person is typing on a keyboard"], "question": "which entity is typing on a computer keyboard?", "label": 1}, {"captions": ["a door slams shut and an object moves on a hard surface", "wind blows as people chatter quietly"], "sample_ids": ["zkKdxzNC97Y", "xBxDz0CFVn0"], "start_seconds": ["27", "30"], "properties": ["hard, surface, door", "wind, chatter, people"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "footage is blurry and out of focus"], "captions_pred_audio": ["a door is opened and closed", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a car accelerates and wind blows", "a man speaks followed by another man speaking outside"], "sample_ids": ["u0TrcHhkPQ", "viuTg1M-dqg"], "start_seconds": ["20", "30"], "properties": ["accelerates, wind, blows", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["an audience gives applause", "paper is crumpling consistently"], "sample_ids": ["x6iCUDmRpKQ", "v5cSxLaHADY"], "start_seconds": ["38", "0"], "properties": ["applause, audience, give", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a black background with the moon and stars in the sky", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a group of people are clapping and cheering", "paper is crumpled and crinkled"], "question": "which is not a person", "label": 0}, {"captions": ["a woman speaks and then a man speaks", "a train horn blows as it passes by"], "sample_ids": ["vbpKkWvfOu4", "zVacuqSb4LI"], "start_seconds": ["560", "30"], "properties": ["a, man, speaks", "horn, blows, train"], "captions_pred_video": ["2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a woman is speaking and a man is speaking", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which is not a person speaking", "label": 1}, {"captions": ["birds chirp as a train approaches", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xM4joTqDVp4", "yDoT73BWsdA"], "start_seconds": ["160", "10"], "properties": ["bird, chirp, train", "engine, revs, vehicle"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["birds chirp quietly and an adult man speaks", "an infant crying frantically"], "sample_ids": ["zuua6-5goWw", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["birds, chirp, quiet, man, speaks", "cry, infant, frantically"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "of the baby crying in the car seat"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a baby cries loudly"], "question": "which entity is quieter", "label": 0}, {"captions": ["a baby cries and wails as an adult female speaks", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["zliInBdC98Y", "yajyRTUQk3U"], "start_seconds": ["30", "400"], "properties": ["a, baby, cries, wails", "a woman, something, fried"], "captions_pred_video": ["of a cute little girl playing with her hair in the bathroom", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a baby cries and a woman speaks", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["an emergency siren wails as it passes", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vGj1XLJvNrw", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["wails, wails, pass", "female, spraying, scream"], "captions_pred_video": ["footage of a police car driving down a city street", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a sleeping person snores and wheezes", "a infant makes noise and is excited"], "sample_ids": ["spJCm8tD9Zo", "wIJK3-5y0kA"], "start_seconds": ["90", "30"], "properties": ["snores, wheezes, sleeps", "noise, excited, infant"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a person is snoring loudly", "a baby cries and a woman speaks"], "question": "which entity is more quiet", "label": 0}, {"captions": ["animals bleat and moo as a person speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["tPJvjq9QePY", "tdWhHV3X25Q"], "start_seconds": ["40", "60"], "properties": ["animal, bleat, moo", "applause, audience, yells"], "captions_pred_video": ["a dog and a sheep in a barn", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a baby cries and a man speaks", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["someone sprays liquid onto a hard surface", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sQwlkXjQabo", "y8WEcpOlT3I"], "start_seconds": ["10", "40"], "properties": ["liquid, surface, spray", "harsh, wind, blows"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "on how to use a sewing machine youtube"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with wind noise in the background "], "question": "which entity is not a liquid", "label": 1}, {"captions": ["children cry and people talk", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["xLwHe825Zs", "vfYTJq7nU"], "start_seconds": ["18", "130"], "properties": ["people talk, children cry, people talk", "rustling, ducks, quack"], "captions_pred_video": [null, null], "captions_pred_audio": ["a baby cries and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about animals?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "a car speeding up in the distance"], "sample_ids": ["tiDFTC-5vU", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["male, duck, laugh", "distance, car, speed"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a race car accelerates and revs its engine "], "question": "which is moving faster", "label": 0}, {"captions": ["a vehicle engine revs as the vehicle passes", "paper is crumpling consistently"], "sample_ids": ["yDoT73BWsdA", "v5cSxLaHADY"], "start_seconds": ["10", "0"], "properties": ["engine, revs, vehicle", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["water quietly rushes by while birds chirp in the background", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["sYITalLZjj4", "uZesmtKZGSw"], "start_seconds": ["30", "250"], "properties": ["water, rushes, background, birds", "men, talk, cars"], "captions_pred_video": ["two ducks are swimming in the water near each other", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["wind blows and birds chirp", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["an engine idles quietly then gradually becomes louder", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vbr9mHKc8WM", "zl9Dqx-j7q4"], "start_seconds": ["40", "6"], "properties": ["noise, loudness, engine", "engine, laugh, loud"], "captions_pred_video": [null, "footage of a man driving a car in the dark"], "captions_pred_audio": ["an engine is idling", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as crickets sing", "a car accelerates and wind blows"], "sample_ids": ["ryFDPxgDOGc", "u0TrcHhkPQ"], "start_seconds": ["570", "20"], "properties": ["a, crickets, sing", "accelerates, wind, blows"], "captions_pred_video": ["a group of people dressed in camouflage and hunting gear in the dark", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine beeps continuously", "rustling with distant murmuring"], "sample_ids": ["y682ml90jGw", "wnNNcxAPwGQ"], "start_seconds": ["11", "0"], "properties": ["beeps, machine, continuously", "sound, distance, rustling"], "captions_pred_video": [null, "footage of a yellow truck doing a burnout on a race track"], "captions_pred_audio": ["a beeping sound is being made ", "a crowd of people are talking and laughing while a skateboard rolls by "], "question": "which entity is quieter", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ugHJF0hfYkg", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["engine, running, continuously", "wind, blow, vehicle"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", null], "captions_pred_audio": ["a helicopter is flying overhead ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a duck quacks continuously", "a stream of water runs briefly"], "sample_ids": ["vh30P49Po6s", "x-PeY8Yb8M4"], "start_seconds": ["30", "300"], "properties": ["quacks, continuously, duck", "stream, water, run"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a duck is quacking loudly", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a heavy rain falls endlessly"], "sample_ids": ["zofjfKhqLk8", "wP8ZKrlx3oA"], "start_seconds": ["10", "40"], "properties": ["noise, stop, motor", "heavy, rain, fall"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "winds blows roughly as a vehicle races past"], "sample_ids": ["sTpirNYo8vQ", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["a, tone, fast", "wind, blows, vehicle"], "captions_pred_video": ["of a man taking a selfie on a bus", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a jet engine roars and wind blows "], "question": "which entity is not a vehicle?", "label": 0}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["uRExseg-0XI", "zl9Dqx-j7q4"], "start_seconds": ["210", "6"], "properties": ["woman, man, water", "engine, laugh, loud"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["people clap and speak in the distance", "people speak as gunfire rings out"], "sample_ids": ["wwyfGO2J4", "wqTCwqVRDlk"], "start_seconds": ["90", "80"], "properties": ["clap, distance, speak", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vddP56-ogds", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "a man speaks as a car is passing by"], "sample_ids": ["vJ7JPEFhyLA", "sK4u5T8hW78"], "start_seconds": ["16", "30"], "properties": ["three men, wind, flow", "a, car, pass"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "food is frying then a woman speaks"], "sample_ids": ["w34HjHr6gAY", "ukxt9I7eMMg"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "food, woman, speak"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman is speaking while food is frying in the background "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["people speak softly as food sizzles", "a woman speaks happily and an animal chirps"], "sample_ids": ["yhQ2Lg-7qDY", "uWAAAL4CIoc"], "start_seconds": ["130", "0"], "properties": ["food, sizzle, speak", "a woman, chirps, animal"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", null], "captions_pred_audio": ["a faucet is running and a man is speaking", "a woman is speaking and a dog is barking "], "question": "which entity has a more active animal", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "plastic is tapped on while someone speaks"], "sample_ids": ["vf9xf3vMsGM", "wvKpEYswXO0"], "start_seconds": ["540", "150"], "properties": ["A man speaks while turning a water faucet on.", "plastic, tap, speak"], "captions_pred_video": ["of the person washing their hands under the faucet", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a man speaks in the background while a slow tick repeats", "birds chirp and objects are moved around"], "sample_ids": ["vZAw4apG0Es", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["background, tick, repeat", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a clock is ticking and people are talking", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "water is sprayed across a hard surface"], "sample_ids": ["uPDn2BFTHk", "sQwlkXjQabo"], "start_seconds": ["140", "10"], "properties": ["woman, laughs, speaks", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a baby laughs and a woman speaks", "spraying followed by silence"], "question": "which entity is a video of a person speaking?", "label": 0}, {"captions": ["a man speaks as a motor runs in the background", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["xZepNM9qcRA", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["background, motor, run", "gun, shoot, water"], "captions_pred_video": ["a close-up view of the motorcycle's engine and exhaust system", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man speaks while a motorcycle revs and accelerates ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "bees buzz and wind blows"], "sample_ids": ["yJ0TePmaOo", "tMJne1a4AFI"], "start_seconds": ["390", "0"], "properties": ["two hard objects, man, speak", "bees buzz, wind blows, bees"], "captions_pred_video": [null, "a swarm of bees on the ground"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "a swarm of bees buzzing around"], "question": "which entity is moving", "label": 1}, {"captions": ["food is frying while a woman speaks", "people speak in the background as a clock ticktocks"], "sample_ids": ["yhQ2Lg-7qDY", "vZAw4apG0Es"], "start_seconds": ["130", "30"], "properties": ["food, woman, speak", "background, clock, ticktocks"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "a clock made out of wood and gears with birds on top of it"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a clock is ticking and people are talking"], "question": "which entity has a clock ticktocking in the background?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a chime of a clock followed by various tones of ticking with come clinking"], "sample_ids": ["wz7N8YRy74I", "uqFtmnhuqA8"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "a, b, c"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "shows a clock on the wall of a room with a person standing in front of it"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "mechanisms are ticking and a hammer is striking "], "question": "which entity is a clock?", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["tIY7qOV3rEM", "xKB8O8LTs6s"], "start_seconds": ["0", "70"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "music, gunfire, explosion"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["an infant crying as a woman laughs", "a stream of water runs briefly"], "sample_ids": ["xhmRY9yhC7c", "x-PeY8Yb8M4"], "start_seconds": ["20", "300"], "properties": ["a, laugh, infant", "stream, water, run"], "captions_pred_video": ["of a baby crying in a baby bouncer", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby cries and a woman speaks", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["someone whistles briefly", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["uFoga8sHpiw", "wz7N8YRy74I"], "start_seconds": ["90", "30"], "properties": ["sound, duration, pitch", "rooster, crow, background, men"], "captions_pred_video": ["footage of a bird in a cage", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a person whistles a song", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a longer duration", "label": 1}, {"captions": ["propeller rearing loudly with some male and female voices interspersed in the background", "a duck quacks continuously"], "sample_ids": ["vqZuVbG6-HI", "vh30P49Po6s"], "start_seconds": ["130", "30"], "properties": ["background, male, female", "quacks, continuously, duck"], "captions_pred_video": ["footage is blurry because it's raining outside", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "a duck is quacking loudly"], "question": "which entity is a duck?", "label": 1}, {"captions": ["a person is snoring while sleeping", "plastic is tapped on while someone speaks"], "sample_ids": ["vJrjSeP17yE", "wvKpEYswXO0"], "start_seconds": ["40", "150"], "properties": ["a person is sleeping, snoring, person", "plastic, tap, speak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a person snoring loudly", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["a clock ticktocks", "a car speeding up in the distance"], "sample_ids": ["v-g-j2uTByM", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["ticktocks, clock, ticktocks", "distance, car, speed"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", null], "captions_pred_audio": ["a clock is ticking loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a jet engine screams, then increases its power", "winds blows roughly as a vehicle races past"], "sample_ids": ["vBslzh7saPw", "xjvTpk2Zpr8"], "start_seconds": ["90", "70"], "properties": ["power, scream, increase", "wind, blows, vehicle"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a jet engine roars and accelerates ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["a storm rolls by as thunder and lighting strike in the distance", "a woman speaks happily and an animal chirps"], "sample_ids": ["yNtRmrn0io8", "uWAAAL4CIoc"], "start_seconds": ["210", "0"], "properties": ["storm, distance, strike", "a woman, chirps, animal"], "captions_pred_video": ["footage of a house in the middle of the night", null], "captions_pred_audio": ["rain falls and thunder roars", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["a toilet flushes and water drains unevenly", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vhJWZheqaE", "tiDFTC-5vU"], "start_seconds": ["0", "30"], "properties": ["water drains unevenly, toilet flushes, water drains", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["a toilet is flushed", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking to a duck?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "an infant crying as a woman laughs"], "sample_ids": ["zcDwZ6W7E3E", "xhmRY9yhC7c"], "start_seconds": ["180", "20"], "properties": ["a, man, speak", "a, laugh, infant"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a gun shoots, followed by water sloshing nearby", "wind blows as people chatter quietly"], "sample_ids": ["wDVMhEdTiVw", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["gun, shoot, water", "wind, chatter, people"], "captions_pred_video": ["a blurry image of trees and water in the forest", "footage is blurry and out of focus"], "captions_pred_audio": ["a gun is fired followed by splashing and a person sneezing", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a duck quacks continuously"], "sample_ids": ["wRV8yMk886E", "vh30P49Po6s"], "start_seconds": ["0", "30"], "properties": ["liquid, spray, nozzle", "quacks, continuously, duck"], "captions_pred_video": ["two cars are parked in a parking lot at night", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["continuous sizzling with a woman speaking towards the end", "people cheer as a vehicle engine revs"], "sample_ids": ["ukxt9I7eMMg", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["continuous, woman, speaking", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a stream runs then someone speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["wbHTKEJZyhc", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["stream, run, someone", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a child and woman laughs and the woman speaks", "a child speaks in closed space"], "sample_ids": ["uPDn2BFTHk", "yW6FWLSLkx4"], "start_seconds": ["140", "40"], "properties": ["woman, laughs, speaks", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["a duck quacks continuously", "wind blowing followed by a zoom"], "sample_ids": ["vh30P49Po6s", "vr8ZXjEBhMQ"], "start_seconds": ["30", "150"], "properties": ["quacks, continuously, duck", "wind, blow, zoom"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a duck is quacking loudly", "wind blows and a chainsaw cuts through wood "], "question": "which entity is a zoom", "label": 1}, {"captions": ["birds chirp as a train approaches", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["xM4joTqDVp4", "uZesmtKZGSw"], "start_seconds": ["160", "250"], "properties": ["bird, chirp, train", "men, talk, cars"], "captions_pred_video": ["footage is of a train station with a train on the tracks and smoke coming out of the train's smokestack", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["birds are chirping and a train is moving ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a drill runs and two people laugh", "a vehicle engine accelerating then running on idle"], "sample_ids": ["tEE3MpBt1sg", "vYkA3cfXp5Q"], "start_seconds": ["50", "30"], "properties": ["two people, laugh, drill", "engine, accelerate, idle"], "captions_pred_video": ["footage is blurry due to the smoke in the air", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["people are laughing breathing and speaking with background noise ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["loud, continuous burping", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["y636gklDioE", "y8WEcpOlT3I"], "start_seconds": ["20", "40"], "properties": ["loud, continuous, burping", "harsh, wind, blows"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a person burps loudly several times", "a man is speaking with wind noise in the background "], "question": "which entity is not continuous", "label": 1}, {"captions": ["birds chirp as a bell rings", "a child speaks in closed space"], "sample_ids": ["ziUT9IFTkjg", "yW6FWLSLkx4"], "start_seconds": ["10", "40"], "properties": ["chirp, bell, ring", "child, space, speak"], "captions_pred_video": [null, "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is in a closed space", "label": 1}, {"captions": ["some people speak", "a propeller rotates loudly and intensely"], "sample_ids": ["vbZ-0lGPneg", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "loud, intense, propeller"], "captions_pred_video": ["of a man holding a baby duck in his hands", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["a clock ticktocks continuously", "water splashes and a motorboat passes as people yell"], "sample_ids": ["vlJS7LN2XyM", "w5W5Kqtc8E"], "start_seconds": ["30", "100"], "properties": ["ticktocks, clock, ticktocks continuously", "water, splashes, motorboat"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", null], "captions_pred_audio": ["a ticktock of a clock", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is more active", "label": 1}, {"captions": ["some light rustling followed by a loud burp and a girl speaking", "people cheer as a vehicle engine revs"], "sample_ids": ["vdoxuJn9lTc", "xjhAnI2q6hM"], "start_seconds": ["40", "6"], "properties": ["burp, loud, girl", "engine revs, vehicle, people"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a child speaks followed by a burp", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["yZp6xizR0yU", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["animal, bleat, cry", "engine, laugh, loud"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "a vehicle engine runs while a siren and horn sound"], "sample_ids": ["slZLHwNbbt4", "u--KhUW8l1Y"], "start_seconds": ["300", "0"], "properties": ["a, horn, run", "engine, sound, horn"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "a firefighter spraying water from a fire hydrant at night"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a fire truck siren blares and a horn blows "], "question": "which entity has a horn that rings out as a machine runs by?", "label": 0}, {"captions": ["a baby cries and a woman speaks", "a car accelerates and wind blows"], "sample_ids": ["tMbMDvT50j8", "u0TrcHhkPQ"], "start_seconds": ["12", "20"], "properties": ["a, cry, woman", "accelerates, wind, blows"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sU53zg9Jp7s", "zFjIWfSD-4"], "start_seconds": ["380", "410"], "properties": ["a bird chirps, a door bell ringing, a woman gasps", "People, motor, brakes"], "captions_pred_video": ["a cartoon girl is standing in front of a blue couch", null], "captions_pred_audio": ["birds chirp and a doorbell rings with breathing and music in the background ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["paper is repeatedly crumpled and crinkled", "birds chirp and objects are moved around"], "sample_ids": ["vms5XGTDVQc", "yPUYU6t3rwo"], "start_seconds": ["220", "370"], "properties": ["paper, crumpled, crinkled", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["footage of a woman opening a black bag on a table", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["paper is crumpled and crinkled", "insects buzz and a man speaks"], "question": "which entity is more likely to be a video of a person's hands?", "label": 0}, {"captions": ["children speak as a female ask them questions", "a person sniffs and sneezes"], "sample_ids": ["wEBlkGWVWwE", "uRlbY6aoBU"], "start_seconds": ["260", "0"], "properties": ["female, speak, questions", "sneezes, person, sniffs"], "captions_pred_video": ["shows a person writing on the whiteboard", null], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is sneezing "], "question": "which entity is a person", "label": 1}, {"captions": ["a man is filing a hard object", "a telephone rings followed by a woman talking"], "sample_ids": ["vveS8HT7Uog", "tGcFnX0GHI"], "start_seconds": ["100", "0"], "properties": ["a man, hard, object", "ring, talk, woman"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", null], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a dial tone sounds followed by a woman speaking"], "question": "which entity is talking", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "paper folding and crinkling"], "sample_ids": ["vZAw4apG0Es", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["background, tick, repeat", "paper, fold, crinkle"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a clock is ticking and people are talking", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling paper?", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a toilet flushes and a female speaks"], "sample_ids": ["u--KhUW8l1Y", "yaln9y8I7ms"], "start_seconds": ["0", "230"], "properties": ["horn, siren, life", "female, flushes, toilet"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage is blurry and out of focus"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a toilet flushes and a man speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["a infant makes noise and is excited", "paper folding and crinkling"], "sample_ids": ["wIJK3-5y0kA", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["noise, excited, infant", "paper, fold, crinkle"], "captions_pred_video": ["of a baby playing with a cat in a dark room", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a baby cries and a woman speaks", "the wind blows and a mouse clicks "], "question": "which entity is not a person", "label": 1}, {"captions": ["children cry and people talk", "pigeons vocalize and birds chirp"], "sample_ids": ["xLwHe825Zs", "uiS58TNyUiw"], "start_seconds": ["18", "430"], "properties": ["people talk, children cry, people talk", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a train horn blows as it passes by"], "sample_ids": ["uRExseg-0XI", "zVacuqSb4LI"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "horn, blows, train"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a train?", "label": 1}, {"captions": ["birds fly and flutter around", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["wGKgwOP3h30", "xKB8O8LTs6s"], "start_seconds": ["30", "70"], "properties": ["fly, flutter, around", "music, gunfire, explosion"], "captions_pred_video": ["of the pigeons in the coop", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["pigeons coo and flap their wings", "music plays while a woman speaks and gunshots are fired "], "question": "which entity is more active", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["uYT5gxnyMWM", "zFjIWfSD-4"], "start_seconds": ["50", "410"], "properties": ["person, spray, yell", "People, motor, brakes"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person speaking over spraying and another person yelling?", "label": 0}, {"captions": ["a vehicle engine runs while a siren and horn sound", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["u--KhUW8l1Y", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["engine, sound, horn", "airplane, boy, fly"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a propeller rotates loudly and intensely"], "sample_ids": ["wSVhSdj0F0", "ugHJF0hfYkg"], "start_seconds": ["10", "10"], "properties": ["horn honks, keys jingle, electronic beep", "loud, intense, propeller"], "captions_pred_video": [null, "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["wind loudly blowing while people speak in the background followed by a horn blowing", "people speak as gunfire rings out"], "sample_ids": ["xjhAnI2q6hM", "wqTCwqVRDlk"], "start_seconds": ["6", "80"], "properties": ["wind, blow, loudly", "gunfire, ring, speak"], "captions_pred_video": ["a school bus decorated with christmas lights is floating in the water", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a truck is revving its engine and a man is speaking ", "a man is speaking and a gun is fired"], "question": "which entity is more violent", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "a toilet flushes and a female speaks"], "sample_ids": ["sOa7g-44Dag", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["background, man, spray", "female, flushes, toilet"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "the revving of an engine throttle followed by a man speaking"], "sample_ids": ["wTjoRj1se3U", "tezvROoo4bs"], "start_seconds": ["390", "40"], "properties": ["engine, run, people", "audio, throttle, speaking"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of a busy city street with cars parked on both sides of the road"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car accelerates and revs while a man speaks "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "white noise and snoring with some rustling in the background"], "sample_ids": ["xKB8O8LTs6s", "xzKKf9bKNUo"], "start_seconds": ["70", "10"], "properties": ["music, radio, gunshots", "background, noise, snoring"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "shows a woman laying on a bed with her eyes closed and her mouth open"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a person snoring loudly"], "question": "which entity has a woman speaking on a radio?", "label": 0}, {"captions": ["low humming with a clock ticking and birds chirping", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["yVumC9TGknc", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["humming, clock, birds", "male, duck, laugh"], "captions_pred_video": ["game title screen of the game shadow of the colossus on sony playstation 2", null], "captions_pred_audio": ["a series of beeps and chirps", "a man is speaking and ducks are quacking"], "question": "which entity has a clock ticking?", "label": 0}, {"captions": ["an adult woman speaks over chopping and silverware noises", "a child speaks in closed space"], "sample_ids": ["yYJksgsxx5U", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["audio, woman, silverware", "child, space, speak"], "captions_pred_video": ["of a woman slicing an orange on a cutting board", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a woman is speaking and dishes are clanging in the background ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child speaking?", "label": 1}, {"captions": ["children speak as a female ask them questions", "water flows as men speak and yell"], "sample_ids": ["wEBlkGWVWwE", "vJ7JPEFhyLA"], "start_seconds": ["260", "16"], "properties": ["female, speak, questions", "water, flow, men"], "captions_pred_video": ["shows a person writing on the whiteboard", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more calm", "label": 0}, {"captions": ["two frogs croak at each other", "a man speaks as a car is passing by"], "sample_ids": ["zg0X6BnhOLQ", "sK4u5T8hW78"], "start_seconds": ["410", "30"], "properties": ["two frogs, croak, at each other", "a, car, pass"], "captions_pred_video": ["footage of lightning in the sky at night", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a frog is croaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["wind blows as people chatter quietly", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["xBxDz0CFVn0", "zl9Dqx-j7q4"], "start_seconds": ["30", "6"], "properties": ["wind, chatter, people", "engine, laugh, loud"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows as people chatter quietly", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["xBxDz0CFVn0", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["wind, chatter, people", "applause, audience, yells"], "captions_pred_video": ["footage is blurry and out of focus", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a horn honks and then loudly blares", "multiple people speak and children yell while water gurgles"], "sample_ids": ["wnpJndXuxLc", "vb1fPSDI4c"], "start_seconds": ["50", "30"], "properties": ["horn, honk, loud", "multiple, people, yell"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a crowd of people are talking and laughing"], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks then rubs two hard objects together", "water splashes as an animal walks through"], "sample_ids": ["yJ0TePmaOo", "w1ir-sZ3Im8"], "start_seconds": ["390", "90"], "properties": ["two hard objects, man, speak", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking with background noise and filing sounds ", "water splashes and gurgles as people speak"], "question": "which entity is more likely to cause water to splash", "label": 1}, {"captions": ["a train horn blows as it passes by", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zVacuqSb4LI", "su6FAOcOA8c"], "start_seconds": ["30", "4"], "properties": ["horn, blows, train", "engine, idle, woman"], "captions_pred_video": ["by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a train whistle blows and a train passes by with a whistle blowing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["rain falls on a surface as men speak and thunder roars", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["w0xsN8X18Y", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["rain, thunder, surface", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an aircraft engine runs as wind blows heavily", "a woman and man speak while food is frying"], "sample_ids": ["xjvTpk2Zpr8", "zk-xJGQU8-4"], "start_seconds": ["70", "130"], "properties": ["engine, run, wind", "food, man, woman"], "captions_pred_video": ["footage of a dhl plane landing on the runway", "a man and a woman cooking in a wok on the stove"], "captions_pred_audio": ["a jet engine roars and wind blows ", "a woman is speaking while dishes are clanging and music is playing in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "a clock ticktocks"], "sample_ids": ["tDlysoZiA1I", "v-g-j2uTByM"], "start_seconds": ["0", "30"], "properties": ["animal, grunts, chirps", "ticktocks, clock, ticktocks"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["bees buzz and wind blows", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["tMJne1a4AFI", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["bees buzz, wind blows, bees", "female, spraying, scream"], "captions_pred_video": ["a swarm of bees on the ground", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "a man woman speak while crickets sing"], "sample_ids": ["s4Uz1Ffgo04", "zTLVJCo4WEE"], "start_seconds": ["100", "30"], "properties": ["roars, background, people speaking", "a, crickets, sing"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "- a boy with a rifle aiming at a target"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a woman speaks and crickets chirp"], "question": "which entity is quieter", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "continuous sizzling with a woman speaking towards the end"], "sample_ids": ["zofjfKhqLk8", "ukxt9I7eMMg"], "start_seconds": ["10", "30"], "properties": ["background, metal, clank", "continuous, woman, speaking"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking while food is frying in the background "], "question": "which entity is a video of a woman speaking?", "label": 1}, {"captions": ["a church bell rings several times", "some tunes played by whistling"], "sample_ids": ["sUVVjE3Ucp8", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["ring, bell, several", "tune, play, whistling"], "captions_pred_video": ["the video shows a stone wall with a clock on top of it and a bench in front of it", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a church bell is ringing ", "a person whistling a song"], "question": "which is a musical instrument", "label": 1}, {"captions": ["water flows as a woman laughs and a man speaks", "people speak as gunfire rings out"], "sample_ids": ["vddP56-ogds", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["water, flow, laugh", "gunfire, ring, speak"], "captions_pred_video": [null, "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and a gun is fired"], "question": "which entity is more active", "label": 1}, {"captions": ["a person is burping while a girl speaks", "plastic is tapped on while someone speaks"], "sample_ids": ["vdoxuJn9lTc", "wvKpEYswXO0"], "start_seconds": ["40", "150"], "properties": ["person, burp, girl", "plastic, tap, speak"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", "of the person preparing food in the kitchen"], "captions_pred_audio": ["a child speaks followed by a burp", "a woman is speaking and tapping with background noise and water running "], "question": "which entity is tapped on while someone speaks", "label": 1}, {"captions": ["birds chirp and pigeons vocalize while walking around", "a man speaks followed by another man speaking outside"], "sample_ids": ["wIvYjuR3nrg", "viuTg1M-dqg"], "start_seconds": ["9", "30"], "properties": ["birds, pigeons, vocalize", "two men, speak, follow"], "captions_pred_video": ["footage of a pigeon sitting on a roof with trees in the background", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["birds are chirping and cooing", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a group of animals", "label": 0}, {"captions": ["a man speaks in the background while a slow tick repeats", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["vZAw4apG0Es", "tdWhHV3X25Q"], "start_seconds": ["30", "60"], "properties": ["background, tick, repeat", "applause, audience, yells"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a clock is ticking and people are talking", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["crowd applause while a guy laughs followed by another man speaking", "winds blows roughly as a vehicle races past"], "sample_ids": ["tDlfY3nmx1A", "xjvTpk2Zpr8"], "start_seconds": ["160", "70"], "properties": ["applause, laugh, man", "wind, blows, vehicle"], "captions_pred_video": ["a man in a suit and tie is talking to another man in a suit and tie", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["a crowd is clapping and laughing and a man is speaking ", "a jet engine roars and wind blows "], "question": "which entity is a vehicle racing past?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a stream of water flows as people talk and wind blows"], "sample_ids": ["uRExseg-0XI", "xBxDz0CFVn0"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "stream, water, flow"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "a man is speaking with wind noise in the background "], "question": "which entity has more water", "label": 1}, {"captions": ["a heavy rain falls endlessly", "an airplane engine runs"], "sample_ids": ["wP8ZKrlx3oA", "yVPZ2MNWpms"], "start_seconds": ["40", "0"], "properties": ["heavy, rain, fall", "engine, airplane, runs"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a car is driving by on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a sleeping person emits a gravely snore", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["w2JXXIAdUdg", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["emits, sleeping, person", "applause, audience, yells"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["someone is snoring while sleeping", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["ujMt0-D-x2k", "zFjIWfSD-4"], "start_seconds": ["0", "410"], "properties": ["snore, sleep, someone", "People, motor, brakes"], "captions_pred_video": ["of the dog playing with a toy on the floor", null], "captions_pred_audio": ["a person is snoring loudly", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a person", "label": 1}, {"captions": ["a crowd yells, reacts and applauds", "a car accelerates and wind blows"], "sample_ids": ["wztCSUxOf8", "u0TrcHhkPQ"], "start_seconds": ["130", "20"], "properties": ["a crowd, yells, applauds", "accelerates, wind, blows"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["wind blowing followed by a zoom", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vr8ZXjEBhMQ", "tDVADusiIoc"], "start_seconds": ["150", "60"], "properties": ["wind, blow, zoom", "water, radio, man"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about a man speaking over a radio as wind blows and water splashes?", "label": 1}, {"captions": ["several insects fly while two men talk", "a door opens and closes"], "sample_ids": ["s-T9OVOiMLo", "vBHyYJ8pL0"], "start_seconds": ["330", "2"], "properties": ["several, fly, men", "open, close, door"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", null], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "mechanisms are ticking and a sliding door is opening and closing "], "question": "which entity is more passive", "label": 1}, {"captions": ["a steam engine runs and whistles as it passes by", "people cheer as a vehicle engine revs"], "sample_ids": ["se87d6yxEOA", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["run, whistle, pass", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a train passing by a train station with smoke billowing out of the train's smokestack", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a train is moving and blowing its whistle ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a toilet flushes and water drains", "people cheer as a vehicle engine revs"], "sample_ids": ["sfAvvZwdLCY", "xjhAnI2q6hM"], "start_seconds": ["20", "6"], "properties": ["water drains, flushes, water", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the toilet in the bathroom", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a toilet is flushed", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sQGXqGcwOTc", "su6FAOcOA8c"], "start_seconds": ["3", "4"], "properties": ["cling, speak, dishes", "engine, idle, woman"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a woman is speaking and a subway train is moving "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["an emergency siren wails as it passes", "paper is crumpling consistently"], "sample_ids": ["vGj1XLJvNrw", "v5cSxLaHADY"], "start_seconds": ["0", "0"], "properties": ["wails, wails, pass", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of a police car driving down a city street", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["an emergency vehicle with a siren is passing by", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a person snoring several times", "a horn rings out as a machine runs by"], "sample_ids": ["spJCm8tD9Zo", "slZLHwNbbt4"], "start_seconds": ["90", "300"], "properties": ["snore, person, several", "a, horn, run"], "captions_pred_video": ["of a man laying on the ground with his mouth open", "footage of a train coming down the tracks on a sunny day"], "captions_pred_audio": ["a person is snoring loudly", "a train is moving and blowing its horn with a clickety-clack sound "], "question": "which entity is not a person?", "label": 1}, {"captions": ["an engine runs and wind blows", "an aircraft engine runs"], "sample_ids": ["vs65y4qmyBE", "yLCORCnd35Q"], "start_seconds": ["340", "0"], "properties": ["engine, run, wind", "engine, aircraft, runs"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a lufthansa airbus a380 landing at london's heathrow airport"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a train is moving and its wheels are squealing "], "question": "which entity is running", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a child speaks in closed space"], "sample_ids": ["w34HjHr6gAY", "yW6FWLSLkx4"], "start_seconds": ["30", "40"], "properties": ["beeps, hit, woman", "child, space, speak"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is a child speaking in a closed space?", "label": 1}, {"captions": ["a man speaks as a machine runs", "a man talks as several small engines run"], "sample_ids": ["vD6lYD1l0BY", "u9A6VZQCZpU"], "start_seconds": ["330", "30"], "properties": ["a, machine, run", "a, man, talk"], "captions_pred_video": ["game controller being held in the hands of the person", null], "captions_pred_audio": ["a man is speaking and dishes are being washed ", "a man is speaking while a race car is revving and accelerating "], "question": "which entity has a man speaking as a machine runs?", "label": 0}, {"captions": ["a woman speaks and food sizzles while frying", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wTideSjRFS0", "vfYTJq7nU"], "start_seconds": ["30", "130"], "properties": ["food, sizzle, woman", "rustling, ducks, quack"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", null], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a duck quacks and a woman speaks"], "question": "which entity is about a woman speaking and food sizzling while frying?", "label": 0}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "birds chirp and objects are moved around"], "sample_ids": ["wy1eKjR7KC0", "yPUYU6t3rwo"], "start_seconds": ["30", "370"], "properties": ["people, talk, distance", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a man is speaking and a siren is going off", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["soft movement is accompanied by clocks ticking in the background", "a man speaks over intermittent keyboard taps"], "sample_ids": ["vlJS7LN2XyM", "tw76HGONaKg"], "start_seconds": ["30", "570"], "properties": ["background, clocks, ticking", "audio, man, keyboard"], "captions_pred_video": ["of the clock in the video is blurry and hard to make out the numbers on the face of the clock are hard to see due to the blurriness of the video", "game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda"], "captions_pred_audio": ["a ticktock of a clock", "a man speaks and types on a computer keyboard "], "question": "which entity has a man speaking over intermittent keyboard taps?", "label": 1}, {"captions": ["a man speaks then multiple motorcycles pass by", "vehicles pass by on a roadway"], "sample_ids": ["zcDwZ6W7E3E", "tgbONvsP47Y"], "start_seconds": ["180", "0"], "properties": ["a, man, speak", "pass, vehicle, roadway"], "captions_pred_video": ["2 people riding motorcycles down a mountain road with trees lining the sides of the road", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking while a car accelerates and revs its engine ", "a car is driving on the road "], "question": "which entity has more vehicles", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "women speak and laugh as wind blows"], "sample_ids": ["y1saVTXsKwc", "un9VQlzgZM"], "start_seconds": ["80", "5"], "properties": ["a, dog, talk", "wind, speak, laugh"], "captions_pred_video": ["a dog playing with a pink ball", null], "captions_pred_audio": ["a dog barks and a man speaks", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is about a woman talking to a dog?", "label": 0}, {"captions": ["continuous sizzling with a woman speaking towards the end", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["ukxt9I7eMMg", "sLUnaPT5gM8"], "start_seconds": ["30", "0"], "properties": ["continuous, woman, speaking", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a person preparing food on a stool in a kitchen", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a woman is speaking while food is frying in the background ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more like a scream", "label": 1}, {"captions": ["wind blows as people chatter quietly", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["xBxDz0CFVn0", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["wind, chatter, people", "motor noise, horn, siren"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is louder", "label": 1}, {"captions": ["a person is snoring while sleeping", "some tunes played by whistling"], "sample_ids": ["vJrjSeP17yE", "u6BnG6YZqJ4"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "tune, play, whistling"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a person snoring loudly", "a person whistling a song"], "question": "which entity is playing tunes", "label": 1}, {"captions": ["a man is filing a hard object", "people cheer as a vehicle engine revs"], "sample_ids": ["vveS8HT7Uog", "xjhAnI2q6hM"], "start_seconds": ["100", "6"], "properties": ["a man, hard, object", "engine revs, vehicle, people"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a truck is revving its engine and a man is speaking "], "question": "which object is harder to file", "label": 0}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["zofjfKhqLk8", "vfYTJq7nU"], "start_seconds": ["10", "130"], "properties": ["background, metal, clank", "rustling, ducks, quack"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", null], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["dog barking and vehicle engine idling followed shortly by vehicle engine revving", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zY3icUyMdh8", "su6FAOcOA8c"], "start_seconds": ["20", "4"], "properties": ["dog, bark, engine", "engine, idle, woman"], "captions_pred_video": ["footage of a bus driving through a residential street at night", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a car is driving and dogs are barking and squealing ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "some tunes played by whistling"], "sample_ids": ["sEprKHm8Sj8", "u6BnG6YZqJ4"], "start_seconds": ["90", "0"], "properties": ["car, tires, slows", "tune, play, whistling"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a person whistling a song"], "question": "which entity is not a car?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sQwlkXjQabo", "vJ7JPEFhyLA"], "start_seconds": ["10", "16"], "properties": ["water, spray, surface", "three men, wind, flow"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a video of a liquid flowing?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "water flows and trickles"], "sample_ids": ["zl9Dqx-j7q4", "tB7hWb9gTuQ"], "start_seconds": ["6", "30"], "properties": ["motors rev, laugh, loudly", "water, flow, trickle"], "captions_pred_video": ["footage of a man driving a car in the dark", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a jet engine roars ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["two men and a woman talk while wind blows and birds tweet", "food is frying then a woman speaks"], "sample_ids": ["wqZ135Ssz0", "ukxt9I7eMMg"], "start_seconds": ["60", "30"], "properties": ["two men, woman, birds", "food, woman, speak"], "captions_pred_video": [null, "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a man is speaking and ducks are quacking with wind noise in the background ", "a woman is speaking while food is frying in the background "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["wRV8yMk886E", "tdWhHV3X25Q"], "start_seconds": ["0", "60"], "properties": ["liquid, spray, nozzle", "applause, audience, yells"], "captions_pred_video": ["two cars are parked in a parking lot at night", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["an infant crying frantically", "water flows and trickles"], "sample_ids": ["zwOBqeFTgiU", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["cry, infant, frantically", "water, flow, trickle"], "captions_pred_video": ["of the baby crying in the car seat", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a baby cries loudly", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an engine works in idle nearby followed by a man talking", "vehicles pass by on a roadway"], "sample_ids": ["wqADXCzngMw", "tgbONvsP47Y"], "start_seconds": ["340", "0"], "properties": ["engine, idle, man", "pass, vehicle, roadway"], "captions_pred_video": ["of a man working on a vintage volkswagen beetle", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a lawn mower is running and a man is speaking ", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "people applaud and hoot and chat quietly"], "sample_ids": ["vK93VuO0yNc", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["male voice, bus, rumble", "people, applaud, hoot"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", null], "captions_pred_audio": ["a car drives by with wind noise in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["an adult speaks and is typing on a computer keyboard", "a clock ticktocks"], "sample_ids": ["x9JovgqUcs", "v-g-j2uTByM"], "start_seconds": ["500", "30"], "properties": ["An adult is speaking, typing, and using a computer keyboard", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "dishes cling together then a man begins to speak"], "sample_ids": ["sG7TyPnFDR0", "sQGXqGcwOTc"], "start_seconds": ["180", "3"], "properties": ["beeps, machine, smoke alarm", "cling, speak, dishes"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "mechanisms are operating and water is splashing "], "question": "which entity has a man speaking while a machine runs?", "label": 0}, {"captions": ["water drips and bubbles as a man speaks", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["vSeGhaZt-aI", "zl9Dqx-j7q4"], "start_seconds": ["50", "6"], "properties": ["water, bubbles, speak", "engine, laugh, loud"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a horn blows as a train chugs along and warning bells ring", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["ukg5L09Wpvo", "tiDFTC-5vU"], "start_seconds": ["150", "30"], "properties": ["a train, a horn, a bell", "male, duck, laugh"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", null], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["a motor runs and stops, and animals squawk and croak", "someone is typing on a computer keyboard"], "sample_ids": ["s4tUs779vBA", "v0x1odnXtP0"], "start_seconds": ["160", "210"], "properties": ["a, sound, stop", "keyboard, type, computer"], "captions_pred_video": ["game in 10 words or less - screenshot 1", "how to make money on youtube in spanish"], "captions_pred_audio": ["a car is revving and a man is speaking ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["an aircraft engine runs", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["yLCORCnd35Q", "uYT5gxnyMWM"], "start_seconds": ["0", "50"], "properties": ["engine, aircraft, runs", "female, spraying, scream"], "captions_pred_video": ["a lufthansa airbus a380 landing at london's heathrow airport", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a train is moving and its wheels are squealing ", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "wind blows as people chatter quietly"], "sample_ids": ["w0xsN8X18Y", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["music, surface, rain", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "male speech with light ticking"], "sample_ids": ["s3cTDAj31g", "xO-Q2BlIIPU"], "start_seconds": ["80", "30"], "properties": ["man, talk, woman", "male, speech, ticking"], "captions_pred_video": [null, "a clock with a green glowing display showing the time 09 07 2016 12 31 2016"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a speech?", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "a sheep baa followed by birds chirping and then more sheep baaing"], "sample_ids": ["x5cuQjOdM3E", "vlS6YMeWAPo"], "start_seconds": ["30", "40"], "properties": ["cat, talk, meow", "sheep, baa, birds"], "captions_pred_video": ["a black background with an airplane flying in the sky", "footage of a goat in a pen behind a wooden fence"], "captions_pred_audio": ["a cat meows and a woman speaks", "a goat bleats and birds chirp"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a vehicle engine accelerates and wind blows", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["wudZTNBtVqc", "vfYTJq7nU"], "start_seconds": ["60", "130"], "properties": ["accelerates, engine, wind", "rustling, ducks, quack"], "captions_pred_video": ["footage is of a parking lot with cars parked in it", null], "captions_pred_audio": ["a car accelerates and revs its engine ", "a duck quacks and a woman speaks"], "question": "which entity is a video of a vehicle?", "label": 0}, {"captions": ["a small voice speaks, music plays followed by a double whoosh, and then a bell dings", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["tQWGZLItBXk", "wDVMhEdTiVw"], "start_seconds": ["170", "30"], "properties": ["voice, music, whoosh", "gun, shoot, water"], "captions_pred_video": ["worms revolution screenshots", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a movie", "label": 1}, {"captions": ["a beep repeats multiple times", "someone is typing on a computer keyboard"], "sample_ids": ["y682ml90jGw", "v0x1odnXtP0"], "start_seconds": ["11", "210"], "properties": ["beep, repeat, multiple", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a beeping sound is being made ", "a person is typing on a keyboard"], "question": "which is not a type of computer", "label": 0}, {"captions": ["a low rumbling in the distance followed by a motorcycle engine revving up", "a propeller rotates loudly and intensely"], "sample_ids": ["vr8ZXjEBhMQ", "ugHJF0hfYkg"], "start_seconds": ["150", "10"], "properties": ["sound, distance, engine", "loud, intense, propeller"], "captions_pred_video": ["is taken from a motorcycle's point of view", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a clock ticktocks"], "sample_ids": ["sZPuqDgX2V0", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["commentator, race, track", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a dog barks and whimpers", "birds chirp and objects are moved around"], "sample_ids": ["sShpyu2l4YQ", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["barks, whimpers, dog", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["the puppies are playing with a toy", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a dog is barking and growling", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby cries and a woman moans", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["smDKStoHBJo", "wqZ135Ssz0"], "start_seconds": ["0", "60"], "properties": ["a, cry, woman", "two men, woman, birds"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more people", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "people cheer as a vehicle engine revs"], "sample_ids": ["zj2R0XoFr5k", "xjhAnI2q6hM"], "start_seconds": ["50", "6"], "properties": ["airplane, fly, woman", "engine revs, vehicle, people"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a truck is revving its engine and a man is speaking "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a young woman speaks and laughs and an animal snorts"], "sample_ids": ["weDbePuc-Xc", "uEU-Hg5MTN8"], "start_seconds": ["40", "27"], "properties": ["music, slaps, human", "a woman, laughs, animal"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has a woman speaking and laughing and an animal snorts?", "label": 1}, {"captions": ["a man makes an exclamation, then another man speaks", "a bird chirps followed by a door bell ringing that causes a woman to gasp and the music plays"], "sample_ids": ["xO-Q2BlIIPU", "sU53zg9Jp7s"], "start_seconds": ["30", "380"], "properties": ["two men, exclamation, speak", "a bird chirps, a door bell ringing, a woman gasps"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", "a cartoon girl is standing in front of a blue couch"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "birds chirp and a doorbell rings with breathing and music in the background "], "question": "which entity has a doorbell ringing?", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "a machine beeps continuously"], "sample_ids": ["uJV8NDaHqqk", "y682ml90jGw"], "start_seconds": ["100", "11"], "properties": ["loud, fly, chirp", "beeps, machine, continuously"], "captions_pred_video": ["a bee hive in a wooden box", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "wind blowing followed by a zoom"], "sample_ids": ["t25U-v4k4ts", "vr8ZXjEBhMQ"], "start_seconds": ["40", "150"], "properties": ["bees buzz, birds chirp, man speaks", "wind, blow, zoom"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "is taken from a motorcycle's point of view"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "wind blows and a chainsaw cuts through wood "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks and food sizzles while frying", "small dogs yip and bark sharply"], "sample_ids": ["wTideSjRFS0", "v-wcQf4BDY0"], "start_seconds": ["30", "120"], "properties": ["food, sizzle, woman", "bark, yip, sharply"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a dog barks and growls"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks in the background while a slow tick repeats", "some tunes played by whistling"], "sample_ids": ["vZAw4apG0Es", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["background, tick, repeat", "tune, play, whistling"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a clock is ticking and people are talking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a man speaks as insects buzz and a bird chirps", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["t25U-v4k4ts", "y8WEcpOlT3I"], "start_seconds": ["40", "40"], "properties": ["a, chirps, bird", "harsh, wind, blows"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a man is speaking with wind noise in the background "], "question": "which entity is more active", "label": 1}, {"captions": ["music plays and someone speaks before gunfire and an explosion occurs", "a horn blasts as warning bells ring"], "sample_ids": ["xKB8O8LTs6s", "zgUgkpk78xU"], "start_seconds": ["70", "70"], "properties": ["music, gunfire, explosion", "horn, bells, ring"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a warning", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["yYEVLuqEytU", "xfaoyyzw2WU"], "start_seconds": ["40", "180"], "properties": ["grunt, slurp, background", "loud, jet engine, roar"], "captions_pred_video": ["a baby goat is being petted by a person's hand", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["several sheep bleat and a man speaks", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "someone is typing on a computer keyboard"], "sample_ids": ["w0xsN8X18Y", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["music, surface, rain", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a man sprays as a scraping occurs in the background", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["sOa7g-44Dag", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["background, man, spray", "People, motor, brakes"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", null], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has a motor running?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a man speaks as a car is passing by"], "sample_ids": ["zgUgkpk78xU", "sK4u5T8hW78"], "start_seconds": ["70", "30"], "properties": ["horn, bells, ring", "a, car, pass"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a warning", "label": 0}, {"captions": ["a door slams shut roughly", "dishes cling together then a man begins to speak"], "sample_ids": ["zkKdxzNC97Y", "sQGXqGcwOTc"], "start_seconds": ["27", "3"], "properties": ["a door, slams, shut", "cling, speak, dishes"], "captions_pred_video": ["footage of the door opening and closing in slow motion", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a door is opened and closed", "mechanisms are operating and water is splashing "], "question": "which entity is more likely to be a door", "label": 0}, {"captions": ["water running down a sink while a man is talking", "a woman speaks and other women and a man talk with her"], "sample_ids": ["vSeGhaZt-aI", "vbpKkWvfOu4"], "start_seconds": ["50", "560"], "properties": ["water, sink, talk", "a, woman, man"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a woman is speaking and a man is speaking"], "question": "which entity has a man talking to a sink?", "label": 0}, {"captions": ["a woman speaks and food sizzles while frying", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["wTideSjRFS0", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["food, sizzle, woman", "animal, grunts, snorts"], "captions_pred_video": ["footage of a woman cooking in a kitchen with a microwave oven", "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a woman is speaking while water is running in the background", "a woman is speaking and a baby is crying"], "question": "which entity is about a woman speaking and food sizzling while frying?", "label": 0}, {"captions": ["a woman speaks as she rubs two objects together", "someone whistles a tune"], "sample_ids": ["vzxHnu-SFEw", "sIXTftIuUgw"], "start_seconds": ["80", "90"], "properties": ["two objects, woman, speak", "someone, tune, whistle"], "captions_pred_video": ["how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to", null], "captions_pred_audio": ["a woman is speaking and breathing with mechanisms in the background ", "a person whistling a song"], "question": "which is not a musical instrument", "label": 0}, {"captions": ["plastic is tapped on while someone speaks", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wvKpEYswXO0", "tDVADusiIoc"], "start_seconds": ["150", "60"], "properties": ["plastic, tap, speak", "water, radio, man"], "captions_pred_video": ["of the person preparing food in the kitchen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a toilet flushes and water drains"], "sample_ids": ["sG7TyPnFDR0", "sfAvvZwdLCY"], "start_seconds": ["180", "20"], "properties": ["beeps, machine, smoke alarm", "water drains, flushes, water"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", "footage of the toilet in the bathroom"], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a toilet is flushed"], "question": "which entity is a source of water", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "an airplane engine runs"], "sample_ids": ["zj2R0XoFr5k", "yVPZ2MNWpms"], "start_seconds": ["50", "0"], "properties": ["airplane, boy, fly", "engine, airplane, runs"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a car is driving by on the road "], "question": "which airplane is flying", "label": 0}, {"captions": ["here comes the train and it starts to blow the horn and get close", "a dog barks and whimpers"], "sample_ids": ["s7knHCFW82w", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["blow horn, get close, train", "barks, whimpers, dog"], "captions_pred_video": ["footage of the train on the tracks near a building and a car parked on the side of the road", "the puppies are playing with a toy"], "captions_pred_audio": ["a train is blowing its horn and its wheels are squealing ", "a dog is barking and growling"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a person snores hilariously while someone laughs", "water splashes as an animal walks through"], "sample_ids": ["sSMl2vc3ek", "w1ir-sZ3Im8"], "start_seconds": ["20", "90"], "properties": ["a person, laughs, snores", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a person snoring loudly", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "water flows as men speak and yell"], "sample_ids": ["w0xsN8X18Y", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["music, surface, rain", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["speaking following by laughing and clapping", "after a few seconds of silence, a loud bang occurs followed by a softer banging noise"], "sample_ids": ["u2f5NpsoHBg", "zkKdxzNC97Y"], "start_seconds": ["30", "27"], "properties": ["person, laugh, clap", "loud, bang, noise"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a door is opened and closed"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a weapon fires multiple times", "pigeons vocalize and birds chirp"], "sample_ids": ["sMC07Ucy7kg", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["weapon, fire, multiple", "vocalize, bird, chirp"], "captions_pred_video": ["footage is from a car's point of view", "of the pigeon in the cage"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking and a bee is buzzing"], "question": "which entity is not a weapon", "label": 1}, {"captions": ["a motorcycle engine revs then accelerates before hitting a bump", "paper is crumpling consistently"], "sample_ids": ["w-4gHptFNuU", "v5cSxLaHADY"], "start_seconds": ["21", "0"], "properties": ["engine revs, accelerates, bump", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["is taken from a motorcycle rider's point of view", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a car accelerates and revs its engine ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "a woman speaks happily and an animal chirps"], "sample_ids": ["uYT5gxnyMWM", "uWAAAL4CIoc"], "start_seconds": ["50", "0"], "properties": ["a, scream, girl", "a woman, chirps, animal"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a woman is speaking and a dog is barking "], "question": "which entity is more calm", "label": 1}, {"captions": ["a woman talking as an infant is crying", "a car accelerates and wind blows"], "sample_ids": ["tMbMDvT50j8", "u0TrcHhkPQ"], "start_seconds": ["12", "20"], "properties": ["a, talk, infant", "accelerates, wind, blows"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a race car accelerates and revs its engine "], "question": "which is not a person", "label": 1}, {"captions": ["some people speak", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["vbZ-0lGPneg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["some people speak English, some people speak Spanish, some people speak French", "female, spraying, scream"], "captions_pred_video": ["of a man holding a baby duck in his hands", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a woman is speaking and a baby is crying"], "question": "which entity is more violent", "label": 1}, {"captions": ["a weapon fires multiple times", "an insect buzzes around continuously"], "sample_ids": ["sMC07Ucy7kg", "v25l1jef3JY"], "start_seconds": ["10", "0"], "properties": ["weapon, fire, multiple", "buzzes, continuously, insect"], "captions_pred_video": ["footage is from a car's point of view", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is not a weapon", "label": 1}, {"captions": ["white noise and snoring with some rustling in the background", "children speak and play together"], "sample_ids": ["xzKKf9bKNUo", "yVVP8XvWJTo"], "start_seconds": ["10", "260"], "properties": ["background, noise, snoring", "children, speak, play"], "captions_pred_video": ["shows a woman laying on a bed with her eyes closed and her mouth open", "footage of a playground at a school or daycare center"], "captions_pred_audio": ["a person snoring loudly", "children are speaking and breathing with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "a person uses a saw to cut some wood"], "sample_ids": ["soTOh3zYJfY", "sHbXC6na9hg"], "start_seconds": ["40", "0"], "properties": ["vehicle, skid, tires", "a person, saw, wood"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", "a man using a tractor to cut a log into firewood youtube"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "an engine is idling and vibrating"], "question": "which entity is stationary", "label": 1}, {"captions": ["a cat meows and children speak", "birds chirp and wind blows"], "sample_ids": ["x5cuQjOdM3E", "sxIvBMSavMQ"], "start_seconds": ["30", "210"], "properties": ["cat, speak, children", "birds, chirp, wind"], "captions_pred_video": ["a black background with an airplane flying in the sky", "beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a"], "captions_pred_audio": ["a cat meows and a woman speaks", "birds are chirping and insects are buzzing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["an engine runs loudly", "paper is crumpling consistently"], "sample_ids": ["vqZuVbG6-HI", "v5cSxLaHADY"], "start_seconds": ["130", "0"], "properties": ["loud, engine, run", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage is blurry because it's raining outside", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a motor idles, accelerates, then slows down.", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["vYkA3cfXp5Q", "y8WEcpOlT3I"], "start_seconds": ["30", "40"], "properties": ["speed, idle, accelerate", "harsh, wind, blows"], "captions_pred_video": ["footage of a car driving down the street on a sunny day", "on how to use a sewing machine youtube"], "captions_pred_audio": ["an engine is idling", "a man is speaking with wind noise in the background "], "question": "which entity is a natural phenomenon", "label": 1}, {"captions": ["water splashes and a motorboat passes as people yell", "birds vocalize and chirp continuously"], "sample_ids": ["w5W5Kqtc8E", "w1mlz3Pe4fU"], "start_seconds": ["100", "300"], "properties": ["water, splashes, motorboat", "vocalize, chirp, continuously"], "captions_pred_video": [null, "of a bird in a cage"], "captions_pred_audio": ["a motorboat is moving and people are shouting and cheering ", "birds are chirping and singing"], "question": "which entity is quieter", "label": 1}, {"captions": ["three men talk while wind blows and some liquid flows", "dishes cling together then a man begins to speak"], "sample_ids": ["vJ7JPEFhyLA", "sQGXqGcwOTc"], "start_seconds": ["16", "3"], "properties": ["three men, wind, flow", "cling, speak, dishes"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 1}, {"captions": ["an insect buzzes around continuously", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["v25l1jef3JY", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["buzzes, continuously, insect", "engine, idle, woman"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a subway train is moving "], "question": "which entity is not a person?", "label": 0}, {"captions": ["birds chirp as a man speaks and a younger person speaks", "some men converse over an engine running"], "sample_ids": ["xl2PIWyXaM", "sCiy7QS1U"], "start_seconds": ["160", "300"], "properties": ["chirp, man, younger person", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and people are talking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking to a younger person?", "label": 0}, {"captions": ["ticking continues without interruption", "a duck quacks continuously"], "sample_ids": ["v-g-j2uTByM", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["ticking, continuous, clock", "quacks, continuously, duck"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a clock is ticking loudly", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "a car accelerates and wind blows"], "sample_ids": ["yPUYU6t3rwo", "u0TrcHhkPQ"], "start_seconds": ["370", "20"], "properties": ["birds chirp, objects are moved around, birds", "accelerates, wind, blows"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", null], "captions_pred_audio": ["insects buzz and a man speaks", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["a man speaks with another voice speaking in the background", "water splashes as an animal walks through"], "sample_ids": ["u21-Z5gJCB8", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["background, voice, man", "animal, water, splashes"], "captions_pred_video": ["- a person cooking eggs in a pan on the stove", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["popping and crackling repeats as men yell and laugh", "water flows as men speak and yell"], "sample_ids": ["rqu8iB22IY", "vJ7JPEFhyLA"], "start_seconds": ["5", "16"], "properties": ["sound, repeats, laugh", "water, flow, men"], "captions_pred_video": [null, "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a dog barks and a man speaks while music plays ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about water flowing as men speak and yell?", "label": 1}, {"captions": ["a male is speaking and a duck quacks as others laugh", "an infant crying frantically"], "sample_ids": ["tiDFTC-5vU", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["male, duck, laugh", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and ducks are quacking", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a clock ticktocks"], "sample_ids": ["w34HjHr6gAY", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["beeps, hit, woman", "ticktocks, clock, ticktocks"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a young woman speaks over spraying and another person yells", "someone whistles a tune"], "sample_ids": ["uYT5gxnyMWM", "sIXTftIuUgw"], "start_seconds": ["50", "90"], "properties": ["person, spray, yell", "someone, tune, whistle"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", null], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["several ducks are quacking and squawking", "wind blows as people chatter quietly"], "sample_ids": ["wfHeoPDLMaM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["quacking, squawking, ducks", "wind, chatter, people"], "captions_pred_video": ["ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire in the middle of the barn ducks in a barn with a fire", "footage is blurry and out of focus"], "captions_pred_audio": ["ducks are quacking", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a crowd yells, reacts and applauds"], "sample_ids": ["shmR4OZtzqA", "wztCSUxOf8"], "start_seconds": ["30", "130"], "properties": ["man, engine, idle", "a crowd, yells, applauds"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", null], "captions_pred_audio": ["a man speaks while a motor runs", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a baby cries and a woman moans", "a person screams glaringly"], "sample_ids": ["smDKStoHBJo", "xC8kbrKJmco"], "start_seconds": ["0", "0"], "properties": ["a, cry, woman", "glaringly, screams, person"], "captions_pred_video": ["a man holding a crying baby in his arms", null], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a goat is bleating "], "question": "which entity is a person?", "label": 1}, {"captions": ["a man speaks over a running engine and blowing wind", "a machine beeps continuously"], "sample_ids": ["ylpYOorfH4o", "y682ml90jGw"], "start_seconds": ["410", "11"], "properties": ["engine, running, wind", "beeps, machine, continuously"], "captions_pred_video": ["for youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 1500 youtube how to replace the fuel pump on a 1999 dodge ram 15", null], "captions_pred_audio": ["a man is speaking and an engine is revving", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a vehicle engine idles", "a clock ticktocks"], "sample_ids": ["shmR4OZtzqA", "v-g-j2uTByM"], "start_seconds": ["30", "30"], "properties": ["man, engine, idle", "ticktocks, clock, ticktocks"], "captions_pred_video": ["shows how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche youtube how to replace a fog light bulb on a 2005 chevrolet avalanche you", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a man speaks while a motor runs", "a clock is ticking loudly"], "question": "which entity is ticktocks", "label": 1}, {"captions": ["a man talks while vehicles pass by", "an airplane engine spools and people speak"], "sample_ids": ["sK4u5T8hW78", "wTjoRj1se3U"], "start_seconds": ["30", "390"], "properties": ["a, man, talk", "airplane, engine, spool"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a jet engine is running and people are talking"], "question": "which entity is a video of a man talking?", "label": 0}, {"captions": ["a man speaks while a machine runs before a smoke alarm beeps", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["sG7TyPnFDR0", "w5W5Kqtc8E"], "start_seconds": ["180", "100"], "properties": ["beeps, machine, smoke alarm", "wind, blow, vehicle"], "captions_pred_video": ["a person is using an espresso machine in a restaurant", null], "captions_pred_audio": ["a man is speaking and a microwave oven is beeping ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["a power tool runs and touches a surface", "male speech with light ticking"], "sample_ids": ["zfvPRf3chY", "xO-Q2BlIIPU"], "start_seconds": ["290", "30"], "properties": ["power tool, run, touch", "male, speech, ticking"], "captions_pred_video": [null, "a clock with a green glowing display showing the time 09 07 2016 12 31 2016"], "captions_pred_audio": ["a man is speaking while a power tool is being used ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is not a power tool", "label": 1}, {"captions": ["a toilet flushes and water drains", "an engine works in idle nearby followed by a man talking"], "sample_ids": ["sfAvvZwdLCY", "wqADXCzngMw"], "start_seconds": ["20", "340"], "properties": ["water drains, flushes, water", "engine, idle, man"], "captions_pred_video": ["footage of the toilet in the bathroom", "of a man working on a vintage volkswagen beetle"], "captions_pred_audio": ["a toilet is flushed", "a lawn mower is running and a man is speaking "], "question": "which entity is a machine?", "label": 0}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "someone whistles a tune"], "sample_ids": ["w2JXXIAdUdg", "sIXTftIuUgw"], "start_seconds": ["10", "90"], "properties": ["snoring, distance, person", "someone, tune, whistle"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", null], "captions_pred_audio": ["a person snoring and a dog whimpering", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["some liquid flows while a woman laughs and man talks", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["vddP56-ogds", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["liquid, laughs, man", "male, duck, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a man is speaking and ducks are quacking"], "question": "which entity has a duck?", "label": 1}, {"captions": ["a man speaks as a scratching occurs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sOa7g-44Dag", "wDVMhEdTiVw"], "start_seconds": ["30", "30"], "properties": ["audio, scratching, man", "gun, shoot, water"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["long loud burping by a man", "wind blows strongly"], "sample_ids": ["xmiUIOhtZyQ", "w8uLijTqtlU"], "start_seconds": ["60", "70"], "properties": ["loud, burp, man", "wind, blows, strongly"], "captions_pred_video": ["homer simpson drinking a beer", "footage is blurry and shaky"], "captions_pred_audio": ["a person burps and music plays in the background ", "the wind is blowing strongly"], "question": "which is louder", "label": 1}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a man speaks as a car is passing by"], "sample_ids": ["w34HjHr6gAY", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "a, car, pass"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car?", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "a telephone rings followed by a woman talking"], "sample_ids": ["w34HjHr6gAY", "tGcFnX0GHI"], "start_seconds": ["30", "0"], "properties": ["beeps, hit, woman", "ring, talk, woman"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", null], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a dial tone sounds followed by a woman speaking"], "question": "which entity has a woman talking", "label": 1}, {"captions": ["a woman talking as an infant is crying", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["tMbMDvT50j8", "vfYTJq7nU"], "start_seconds": ["12", "130"], "properties": ["a, talk, infant", "rustling, ducks, quack"], "captions_pred_video": ["shows a little girl covering her face with her hands while sitting at a table", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a duck quacks and a woman speaks"], "question": "which entity is about a woman talking to an infant?", "label": 0}, {"captions": ["loud, continuous burping", "a clock ticktocks"], "sample_ids": ["y636gklDioE", "v-g-j2uTByM"], "start_seconds": ["20", "30"], "properties": ["loud, continuous, burping", "ticktocks, clock, ticktocks"], "captions_pred_video": ["a dog sitting on a red chair in front of an old telephone", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a person burps loudly several times", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a helicopter engine runs continuously", "a woman speaks and other women and a man talk with her"], "sample_ids": ["ugHJF0hfYkg", "vbpKkWvfOu4"], "start_seconds": ["10", "560"], "properties": ["engine, running, continuously", "a, woman, man"], "captions_pred_video": ["a man in a helicopter cockpit wearing headphones", "2012-07-20 17 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20"], "captions_pred_audio": ["a helicopter is flying overhead ", "a woman is speaking and a man is speaking"], "question": "which entity has more people", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "some tunes played by whistling"], "sample_ids": ["vuUVPzd2FXw", "u6BnG6YZqJ4"], "start_seconds": ["160", "0"], "properties": ["a, steam, release", "tune, play, whistling"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a large bell chimes back and forth loudly", "some tunes played by whistling"], "sample_ids": ["w2M4i1mklOA", "u6BnG6YZqJ4"], "start_seconds": ["30", "0"], "properties": ["loud, chime, bell", "tune, play, whistling"], "captions_pred_video": ["footage of an antique clock", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a clock is ticking and a bell is ringing ", "a person whistling a song"], "question": "which entity is played by whistling", "label": 1}, {"captions": ["a person is burping while a girl speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["vdoxuJn9lTc", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["person, burp, girl", "People, motor, brakes"], "captions_pred_video": ["a group of young girls playing a video game together in a living room", null], "captions_pred_audio": ["a child speaks followed by a burp", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is about a person speaking to a girl?", "label": 0}, {"captions": ["rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown", "people cheer as a vehicle engine revs"], "sample_ids": ["vfYTJq7nU", "xjhAnI2q6hM"], "start_seconds": ["130", "6"], "properties": ["rustling, ducks, quack", "engine revs, vehicle, people"], "captions_pred_video": [null, "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a duck quacks and a woman speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a boat travels through the waves as the wind blows loudly and a man speaks over a radio", "paper is crumpling consistently"], "sample_ids": ["tDVADusiIoc", "v5cSxLaHADY"], "start_seconds": ["60", "0"], "properties": ["wind, radio, waves", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a man speaks as a car is passing by", "dishes cling together then a man begins to speak"], "sample_ids": ["sK4u5T8hW78", "sQGXqGcwOTc"], "start_seconds": ["30", "3"], "properties": ["a, car, pass", "cling, speak, dishes"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a man makes an exclamation, then another man speaks", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["xO-Q2BlIIPU", "zFjIWfSD-4"], "start_seconds": ["30", "410"], "properties": ["two men, exclamation, speak", "People, motor, brakes"], "captions_pred_video": ["a clock with a green glowing display showing the time 09 07 2016 12 31 2016", null], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity has more people", "label": 1}, {"captions": ["water flows as men speak and yell", "a telephone rings followed by a woman talking"], "sample_ids": ["vJ7JPEFhyLA", "tGcFnX0GHI"], "start_seconds": ["16", "0"], "properties": ["water, flow, men", "ring, talk, woman"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a dial tone sounds followed by a woman speaking"], "question": "which entity is a recording", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a clock ticktocks"], "sample_ids": ["uEU-Hg5MTN8", "v-g-j2uTByM"], "start_seconds": ["27", "30"], "properties": ["a woman, laughs, animal", "ticktocks, clock, ticktocks"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["an aircraft engine runs as people speak", "an airplane engine runs"], "sample_ids": ["wTjoRj1se3U", "yVPZ2MNWpms"], "start_seconds": ["390", "0"], "properties": ["engine, run, people", "engine, airplane, runs"], "captions_pred_video": ["footage of a man playing with a remote control airplane in a field", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a jet engine is running and people are talking", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "a horn honks twice and keys jingle, followed by an electronic beep"], "sample_ids": ["uWAAAL4CIoc", "wSVhSdj0F0"], "start_seconds": ["0", "10"], "properties": ["a woman, chirps, animal", "horn honks, keys jingle, electronic beep"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a car horn honks and keys jangle with background noise "], "question": "which entity is more likely to be heard in a car", "label": 1}, {"captions": ["an audience gives applause", "a horn blasts as warning bells ring"], "sample_ids": ["x6iCUDmRpKQ", "zgUgkpk78xU"], "start_seconds": ["38", "70"], "properties": ["applause, audience, give", "horn, bells, ring"], "captions_pred_video": ["a black background with the moon and stars in the sky", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a group of people are clapping and cheering", "a train blows its horn as it speeds down the tracks "], "question": "which is a warning", "label": 1}, {"captions": ["water drips and bubbles as a man speaks", "dishes cling together then a man begins to speak"], "sample_ids": ["vSeGhaZt-aI", "sQGXqGcwOTc"], "start_seconds": ["50", "3"], "properties": ["water, bubbles, speak", "cling, speak, dishes"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["water rushes and then a vehicle zooms past", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["s4Uz1Ffgo04", "xfaoyyzw2WU"], "start_seconds": ["100", "180"], "properties": ["water, rushes, vehicle", "loud, jet engine, roar"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["men speak and a nozzle sprays liquid", "a horn blasts as warning bells ring"], "sample_ids": ["wRV8yMk886E", "zgUgkpk78xU"], "start_seconds": ["0", "70"], "properties": ["liquid, spray, nozzle", "horn, bells, ring"], "captions_pred_video": ["two cars are parked in a parking lot at night", "of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108"], "captions_pred_audio": ["a man speaks followed by a loud burst", "a train blows its horn as it speeds down the tracks "], "question": "which entity is a warning device", "label": 1}, {"captions": ["a man speaks uses a drill", "a door slams shut and an object moves on a hard surface"], "sample_ids": ["x5eIC7S0fbg", "zkKdxzNC97Y"], "start_seconds": ["60", "27"], "properties": ["A man is speaking, uses a drill, and is a tool", "hard, surface, door"], "captions_pred_video": ["a person in surgical gloves is using a needle to remove a small object from a tooth", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a man is speaking and using a power tool ", "a door is opened and closed"], "question": "which entity is a tool", "label": 0}, {"captions": ["a horse runs while two women talk", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["sdvI1mHAsc", "uYT5gxnyMWM"], "start_seconds": ["20", "50"], "properties": ["two women, horse, run", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["horses clip-clop and a woman speaks", "a woman is speaking and a baby is crying"], "question": "which entity has more people", "label": 1}, {"captions": ["a motorcycle engine is revving while people are speaking", "small dogs yip and bark sharply"], "sample_ids": ["y8dSeubCNI", "v-wcQf4BDY0"], "start_seconds": ["4", "120"], "properties": ["engine revving, people speaking, motorcycle", "bark, yip, sharply"], "captions_pred_video": [null, "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["an engine revving and people talking in the background", "a dog barks and growls"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a woman speaks happily and an animal chirps", "an engine runs loudly"], "sample_ids": ["uWAAAL4CIoc", "vqZuVbG6-HI"], "start_seconds": ["0", "130"], "properties": ["a woman, chirps, animal", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a woman is speaking and a dog is barking ", "a lawn mower is running and men are speaking "], "question": "which entity is quieter", "label": 0}, {"captions": ["wind blows as people chatter quietly", "waves crash against a shoreline and people speak"], "sample_ids": ["xBxDz0CFVn0", "yFB25fqfU8I"], "start_seconds": ["30", "300"], "properties": ["wind, chatter, people", "wave, crash, shoreline"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person surfing in the ocean"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a man is speaking and laughing while water is splashing and gurgling"], "question": "which entity is more calm", "label": 0}, {"captions": ["a man speaks while rain falls onto a hard surface", "an insect buzzes around continuously"], "sample_ids": ["wqN6IIHw3po", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["rain, surface, fall", "buzzes, continuously, insect"], "captions_pred_video": ["in your own words what is happening in this screenshot? blood splattered all over the place", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and water is splashing", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a machine clanks and thumps and a male speaks", "a man talks nearby and another man talks far away while some liquid flows"], "sample_ids": ["sWZzXuWYY", "sapQIQUhFc"], "start_seconds": ["420", "280"], "properties": ["male, clanks, thumps", "liquid, flow, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a man is speaking and a stream is flowing in the background "], "question": "which entity has a man speaking?", "label": 0}, {"captions": ["speaking following by laughing and clapping", "an animal quacks rapidly"], "sample_ids": ["u2f5NpsoHBg", "vh30P49Po6s"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "animal, quacks, rapidly"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "a duck is quacking loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["music plays and animals vocalize as a cartoon character makes sounds", "an infant crying frantically"], "sample_ids": ["weDbePuc-Xc", "zwOBqeFTgiU"], "start_seconds": ["40", "30"], "properties": ["cartoon character, music, vocalize", "cry, infant, frantically"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "of the baby crying in the car seat"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["a infant makes noise and is excited", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["wIJK3-5y0kA", "tiDFTC-5vU"], "start_seconds": ["30", "30"], "properties": ["noise, excited, infant", "male, duck, laugh"], "captions_pred_video": ["of a baby playing with a cat in a dark room", null], "captions_pred_audio": ["a baby cries and a woman speaks", "a man is speaking and ducks are quacking"], "question": "which entity is speaking", "label": 1}, {"captions": ["two women and a man talk while a kid cries", "people applaud and hoot and chat quietly"], "sample_ids": ["wyllXV6PjKo", "wwyfGO2J4"], "start_seconds": ["30", "90"], "properties": ["a kid, talk, cry", "people, applaud, hoot"], "captions_pred_video": [null, null], "captions_pred_audio": ["a woman speaks and a baby cries", "people are clapping and speaking with background noise "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a child babbles as a woman speaks", "a woman speaks as she rubs two objects together"], "sample_ids": ["wEBlkGWVWwE", "vzxHnu-SFEw"], "start_seconds": ["260", "80"], "properties": ["a, babble, woman", "two objects, woman, speak"], "captions_pred_video": ["shows a person writing on the whiteboard", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a woman is speaking and a child is speaking with background noise and clapping ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which woman speaks as she rubs two objects together?", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["vSeGhaZt-aI", "tDVADusiIoc"], "start_seconds": ["50", "60"], "properties": ["water, bubbles, run", "water, radio, man"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity shows a man speaking over a radio?", "label": 1}, {"captions": ["a baby coos and fidgets as a lady speaks and laughs", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uPDn2BFTHk", "wDVMhEdTiVw"], "start_seconds": ["140", "30"], "properties": ["lady, laugh, baby", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a baby laughs and a woman speaks", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to cause harm", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["t69a8aRKhmc", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["a, b, c", "a, scream, girl"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "people speak as gunfire rings out"], "sample_ids": ["slZLHwNbbt4", "wqTCwqVRDlk"], "start_seconds": ["300", "80"], "properties": ["a, horn, run", "gunfire, ring, speak"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "a man is speaking and a gun is fired"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a dog whimpers and a woman briefly talks", "vehicles pass by on a roadway"], "sample_ids": ["y1saVTXsKwc", "tgbONvsP47Y"], "start_seconds": ["80", "0"], "properties": ["a, dog, talk", "pass, vehicle, roadway"], "captions_pred_video": ["a dog playing with a pink ball", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a dog barks and a man speaks", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "people applaud and hoot and chat quietly"], "sample_ids": ["vSeGhaZt-aI", "wwyfGO2J4"], "start_seconds": ["50", "90"], "properties": ["water, bubbles, run", "people, applaud, hoot"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", null], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "people are clapping and speaking with background noise "], "question": "which entity has more people", "label": 1}, {"captions": ["a train whistle keeps going off while the clickety-clack of the train on the rails are continuous", "birds chirp and pigeons vocalize while walking around"], "sample_ids": ["ukg5L09Wpvo", "wIvYjuR3nrg"], "start_seconds": ["150", "9"], "properties": ["clickety-clack, train, whistle", "birds, pigeons, vocalize"], "captions_pred_video": ["footage of a train passing through a forest on a dirt road", "footage of a pigeon sitting on a roof with trees in the background"], "captions_pred_audio": ["a train blows its whistle and blows its horn ", "birds are chirping and cooing"], "question": "which entity is a bird?", "label": 1}, {"captions": ["ticking continues without interruption", "an infant crying as a woman laughs"], "sample_ids": ["v-g-j2uTByM", "xhmRY9yhC7c"], "start_seconds": ["30", "20"], "properties": ["ticking, continuous, clock", "a, laugh, infant"], "captions_pred_video": ["in your own words a cuckoo clock hanging on the wall", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a clock is ticking loudly", "a baby cries and a woman speaks"], "question": "which entity is not continuous", "label": 1}, {"captions": ["a man speaks and is typing on a keyboard", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["x9JovgqUcs", "uYT5gxnyMWM"], "start_seconds": ["500", "50"], "properties": ["a, man, speaks, keyboard", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man speaks and types on a keyboard", "a woman is speaking and a baby is crying"], "question": "which entity is a person speaking?", "label": 0}, {"captions": ["a man speaks over a radio as wind blows and water splashes", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["tDVADusiIoc", "w5W5Kqtc8E"], "start_seconds": ["60", "100"], "properties": ["water, radio, man", "wind, blow, vehicle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", null], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has a vehicle engine running?", "label": 1}, {"captions": ["someone is typing on a computer keyboard", "a helicopter engine runs continuously"], "sample_ids": ["v0x1odnXtP0", "ugHJF0hfYkg"], "start_seconds": ["210", "10"], "properties": ["keyboard, type, computer", "engine, running, continuously"], "captions_pred_video": ["how to make money on youtube in spanish", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a person is typing on a keyboard", "a helicopter is flying overhead "], "question": "which entity is running continuously", "label": 1}, {"captions": ["several ducks quack and cocks crow far away", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sNB8zxXneIM", "zj2R0XoFr5k"], "start_seconds": ["20", "50"], "properties": ["several, quack, cocks", "airplane, boy, fly"], "captions_pred_video": ["a group of geese in a cage", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["birds chirp and a pop occurs before a man speaks", "a propeller rotates loudly and intensely"], "sample_ids": ["zuua6-5goWw", "ugHJF0hfYkg"], "start_seconds": ["30", "10"], "properties": ["sound, pop, bird", "loud, intense, propeller"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a helicopter is flying overhead "], "question": "which entity is louder", "label": 1}, {"captions": ["motor noise is followed by a horn honking and a siren wailing", "a propeller rotates loudly and intensely"], "sample_ids": ["y2bVZ7rz-5M", "ugHJF0hfYkg"], "start_seconds": ["280", "10"], "properties": ["motor noise, horn, siren", "loud, intense, propeller"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a helicopter is flying overhead "], "question": "which is louder", "label": 1}, {"captions": ["birds tweet and squawk", "an infant crying as a woman laughs"], "sample_ids": ["w1mlz3Pe4fU", "xhmRY9yhC7c"], "start_seconds": ["300", "20"], "properties": ["squawk, tweet, scream", "a, laugh, infant"], "captions_pred_video": ["of a bird in a cage", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["birds are chirping and singing", "a baby cries and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a person snores loudly multiple times at a close distance", "someone is typing on a computer keyboard"], "sample_ids": ["sSMl2vc3ek", "v0x1odnXtP0"], "start_seconds": ["20", "210"], "properties": ["loud, multiple, distance", "keyboard, type, computer"], "captions_pred_video": [null, "how to make money on youtube in spanish"], "captions_pred_audio": ["a person snoring loudly", "a person is typing on a keyboard"], "question": "which is not a person", "label": 1}, {"captions": ["the wind blows while a vehicle engine runs", "a child speaks in closed space"], "sample_ids": ["xyL9F5VrjkE", "yW6FWLSLkx4"], "start_seconds": ["20", "40"], "properties": ["wind, blows, vehicle", "child, space, speak"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of the doll sitting on the bed with her hand outstretched towards the viewer"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking with background noise and breathing sounds "], "question": "which entity is speaking", "label": 1}, {"captions": ["some tunes played by whistling", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["u6BnG6YZqJ4", "su6FAOcOA8c"], "start_seconds": ["0", "4"], "properties": ["tune, play, whistling", "engine, idle, woman"], "captions_pred_video": ["a young boy standing in front of a group of kids in a classroom", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a person whistling a song", "a woman is speaking and a subway train is moving "], "question": "which is not a musical instrument", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a machine beeps continuously"], "sample_ids": ["sShpyu2l4YQ", "y682ml90jGw"], "start_seconds": ["0", "11"], "properties": ["growl, bark, yip", "beeps, machine, continuously"], "captions_pred_video": ["the puppies are playing with a toy", null], "captions_pred_audio": ["a dog is barking and growling", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "water flows as men speak and yell"], "sample_ids": ["siJFXfGWgDk", "vJ7JPEFhyLA"], "start_seconds": ["50", "16"], "properties": ["a, bird, vehicle", "water, flow, men"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more water flowing", "label": 1}, {"captions": ["goats bleat and people speak", "a person is whistling"], "sample_ids": ["z5iUE5h0EPs", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["goats bleat, people speak, language", "person, whistling, person"], "captions_pred_video": ["of the goat in the barn", null], "captions_pred_audio": ["a goat bleats and a man speaks", "a person whistling a song"], "question": "which entity is a person", "label": 1}, {"captions": ["the rumbling of a bus followed by a soft male voice", "motor noise is followed by a horn honking and a siren wailing"], "sample_ids": ["vK93VuO0yNc", "y2bVZ7rz-5M"], "start_seconds": ["30", "280"], "properties": ["male voice, bus, rumble", "motor noise, horn, siren"], "captions_pred_video": ["footage is blurry due to the movement of the bus as it drives through the city at night", "footage of a parade of fire trucks driving down the street"], "captions_pred_audio": ["a car drives by with wind noise in the background ", "a truck is honking its horn and a siren is blaring "], "question": "which entity is followed by a horn honking and a siren wailing?", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["u--KhUW8l1Y", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["horn, siren, life", "a woman, something, fried"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["vehicle engines race around a track as a man commentates", "a woman speaks and laughs and an animal grunts and snorts"], "sample_ids": ["sZPuqDgX2V0", "uEU-Hg5MTN8"], "start_seconds": ["30", "27"], "properties": ["commentator, race, track", "animal, grunts, snorts"], "captions_pred_video": [null, "of a girl wearing a pig mask and a boy hugging her"], "captions_pred_audio": ["a man is speaking and a helicopter is flying overhead ", "a woman is speaking and a baby is crying"], "question": "which entity is a video of a race?", "label": 0}, {"captions": ["sirens ring and approach with humming of distant traffic", "winds blows roughly as a vehicle races past"], "sample_ids": ["xERFUeZONz8", "xjvTpk2Zpr8"], "start_seconds": ["0", "70"], "properties": ["ring, approach, traffic", "wind, blows, vehicle"], "captions_pred_video": ["footage is blurry due to camera shake or motion blur", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["an emergency vehicle siren blares", "a jet engine roars and wind blows "], "question": "which entity is more likely to be heard", "label": 0}, {"captions": ["wind blowing followed by a zoom", "a motorcycle engine works nearby"], "sample_ids": ["vr8ZXjEBhMQ", "tOSWIURC-4"], "start_seconds": ["150", "0"], "properties": ["wind, blow, zoom", "engine, work, nearby"], "captions_pred_video": ["is taken from a motorcycle's point of view", null], "captions_pred_audio": ["wind blows and a chainsaw cuts through wood ", "a lawn mower is running "], "question": "which entity is a zoom of", "label": 0}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "someone snores nearby"], "sample_ids": ["vbZ-0lGPneg", "spJCm8tD9Zo"], "start_seconds": ["30", "90"], "properties": ["a woman, a television program, a bird", "someone snores, nearby, someone"], "captions_pred_video": ["of a man holding a baby duck in his hands", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "a person is snoring loudly"], "question": "which entity is playing a television program", "label": 0}, {"captions": ["speaking following by laughing and clapping", "water flows and trickles"], "sample_ids": ["u2f5NpsoHBg", "tB7hWb9gTuQ"], "start_seconds": ["30", "30"], "properties": ["person, laugh, clap", "water, flow, trickle"], "captions_pred_video": ["is being projected on a screen at the front of the stage", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a woman is speaking and a crowd is clapping", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "a man speaks as a motor runs in the background"], "sample_ids": ["x5cuQjOdM3E", "xZepNM9qcRA"], "start_seconds": ["30", "30"], "properties": ["cat, meows, young woman", "background, motor, run"], "captions_pred_video": ["a black background with an airplane flying in the sky", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is quieter", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "an engine runs loudly"], "sample_ids": ["vf44CgrjT0A", "vqZuVbG6-HI"], "start_seconds": ["20", "130"], "properties": ["loud, long, person", "loud, engine, run"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "footage is blurry because it's raining outside"], "captions_pred_audio": ["a loud burp", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["sucking and grunting followed by slurping with birds in the background", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["yYEVLuqEytU", "w5W5Kqtc8E"], "start_seconds": ["40", "100"], "properties": ["grunt, slurp, background", "wind, blow, vehicle"], "captions_pred_video": ["a baby goat is being petted by a person's hand", null], "captions_pred_audio": ["several sheep bleat and a man speaks", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks while video game music plays with some clicking", "a woman speaks and dog vocalizes"], "sample_ids": ["tw76HGONaKg", "uWAAAL4CIoc"], "start_seconds": ["570", "0"], "properties": ["music, click, man", "a, dog, vocalize"], "captions_pred_video": ["game you are currently playing on microsoft xbox 360 the legend of zelda ocarina of time the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda ocarina of time secrets, the legend of zelda ocarina of time wiki, the legend of zelda ocarina of time walkthrough, the legend of zelda ocarina of time guide, the legend of zelda ocarina of time tips, the legend of zelda ocarina of time cheats, the legend of zelda", null], "captions_pred_audio": ["a man speaks and types on a computer keyboard ", "a woman is speaking and a dog is barking "], "question": "which entity is a dog?", "label": 1}, {"captions": ["multiple insects buzz over rustling wind", "a person is burping then speaks and laughs"], "sample_ids": ["tMJne1a4AFI", "wAAkbZToh8"], "start_seconds": ["0", "0"], "properties": ["wind, buzz, rustling", "burp, laugh, speak"], "captions_pred_video": ["a swarm of bees on the ground", null], "captions_pred_audio": ["a swarm of bees buzzing around", "a man burps and a woman speaks"], "question": "which entity is not a person?", "label": 0}, {"captions": ["a man sprays as a scraping occurs in the background", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sOa7g-44Dag", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["background, man, spray", "airplane, boy, fly"], "captions_pred_video": ["footage and stock-footage/b-roll of a man in a hazmat suit spraying insulation in an attic", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and rubbing his hands together ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["a fly buzzes around loudly as birds chirp", "people speak in a closed space"], "sample_ids": ["uJV8NDaHqqk", "sTpirNYo8vQ"], "start_seconds": ["100", "30"], "properties": ["loud, fly, chirp", "people, space, speak"], "captions_pred_video": ["a bee hive in a wooden box", "of a man taking a selfie on a bus"], "captions_pred_audio": ["a swarm of bees buzzing around", "a man is speaking while a car is revving and accelerating "], "question": "which entity is quieter", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "food is frying then a woman speaks"], "sample_ids": ["siJFXfGWgDk", "ukxt9I7eMMg"], "start_seconds": ["50", "30"], "properties": ["man, woman, vehicle", "food, woman, speak"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of a person preparing food on a stool in a kitchen"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman is speaking while food is frying in the background "], "question": "which entity has a woman speaking?", "label": 0}, {"captions": ["a toilet flushes and water drains", "paper is crumpling consistently"], "sample_ids": ["sfAvvZwdLCY", "v5cSxLaHADY"], "start_seconds": ["20", "0"], "properties": ["water drains, flushes, water", "paper is crumpling, paper is white, paper is crumpling"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of the person holding a pair of scissors"], "captions_pred_audio": ["a toilet is flushed", "paper is crumpled and crinkled"], "question": "which entity is crumpling", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["vSeGhaZt-aI", "yDoT73BWsdA"], "start_seconds": ["50", "10"], "properties": ["water, bubbles, run", "engine, revs, vehicle"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle", "label": 1}, {"captions": ["several insects fly while two men talk", "people applaud and hoot and chat quietly"], "sample_ids": ["s-T9OVOiMLo", "wwyfGO2J4"], "start_seconds": ["330", "90"], "properties": ["several, fly, men", "people, applaud, hoot"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", null], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "people are clapping and speaking with background noise "], "question": "which entity is more active", "label": 1}, {"captions": ["water splashing and a person laughs in the distance then a man speaks nearby", "a drill drills through something then people begin laughing"], "sample_ids": ["vddP56-ogds", "tEE3MpBt1sg"], "start_seconds": ["30", "50"], "properties": ["water, splash, person, laugh", "drill, something, laugh"], "captions_pred_video": [null, "footage is blurry due to the smoke in the air"], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "people are laughing breathing and speaking with background noise "], "question": "which entity is about a drill?", "label": 1}, {"captions": ["people speak in the background as a clock ticktocks", "water splashes and a door squeaks"], "sample_ids": ["vZAw4apG0Es", "sdXV-ylviw"], "start_seconds": ["30", "190"], "properties": ["background, clock, ticktocks", "sound, splash, door"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", null], "captions_pred_audio": ["a clock is ticking and people are talking", "a dog barks and taps with background noise "], "question": "which entity has a clock in the background?", "label": 0}, {"captions": ["a young female speaks, followed by spraying and a female screaming", "a man speaks as a motor runs in the background"], "sample_ids": ["uYT5gxnyMWM", "xZepNM9qcRA"], "start_seconds": ["50", "30"], "properties": ["female, spraying, scream", "background, motor, run"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a person burps loudly for a long time nearby", "a heavy rain falls endlessly"], "sample_ids": ["vf44CgrjT0A", "wP8ZKrlx3oA"], "start_seconds": ["20", "40"], "properties": ["loud, long, person", "heavy, rain, fall"], "captions_pred_video": ["a man in a striped shirt with his mouth open in front of a bookshelf", "footage of a flooded street in the middle of a desert with mountains in the background"], "captions_pred_audio": ["a loud burp", "a heavy rain is falling on a surface"], "question": "which entity is falling", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a duck quacks continuously"], "sample_ids": ["yajyRTUQk3U", "vh30P49Po6s"], "start_seconds": ["400", "30"], "properties": ["noise, woman, speak", "quacks, continuously, duck"], "captions_pred_video": ["- a woman cooking in the kitchen", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a man speaks as bees buzz and birds chirp", "a baby cries and fusses, a woman speaks, and a man speaks"], "sample_ids": ["t25U-v4k4ts", "wyllXV6PjKo"], "start_seconds": ["40", "30"], "properties": ["bees buzz, birds chirp, man speaks", "a baby, a woman, a man"], "captions_pred_video": ["of a beekeeper working on a beehive in the woods", null], "captions_pred_audio": ["a man is speaking and bees are buzzing", "a woman speaks and a baby cries"], "question": "which entity has a baby?", "label": 1}, {"captions": ["a man speaks followed by another man speaking outside", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["viuTg1M-dqg", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["two men, speak, follow", "a, scream, girl"], "captions_pred_video": ["footage of water coming out of a hole in the ground", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a woman is speaking and a baby is crying"], "question": "which entity has a scream followed by more girls talking?", "label": 1}, {"captions": ["a baby cries and a woman moans", "a man speaks as a motor runs in the background"], "sample_ids": ["smDKStoHBJo", "xZepNM9qcRA"], "start_seconds": ["0", "30"], "properties": ["a, cry, woman", "background, motor, run"], "captions_pred_video": ["a man holding a crying baby in his arms", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a man speaks as a vehicles passes by then a woman speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["siJFXfGWgDk", "zj2R0XoFr5k"], "start_seconds": ["50", "50"], "properties": ["man, woman, vehicle", "airplane, boy, fly"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a woman speaks while a helicopter flies overhead "], "question": "which entity has a boy speaking?", "label": 1}, {"captions": ["a man speaks, another man speaks, and a small bell dings", "water splashes as an animal walks through"], "sample_ids": ["t69a8aRKhmc", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["a, b, c", "animal, water, splashes"], "captions_pred_video": ["footage is blurry and out of focus", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a train horn sounds as a railroad passing bell rings", "a woman speaks as she rubs two objects together"], "sample_ids": ["zgUgkpk78xU", "vzxHnu-SFEw"], "start_seconds": ["70", "80"], "properties": ["horn, bell, train", "two objects, woman, speak"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["distant men speak as a spray can nozzle is depressed", "multiple adults speaking, and a child shouting in the background"], "sample_ids": ["rwtmaKiCcQU", "yks4cLgIDMc"], "start_seconds": ["30", "170"], "properties": ["nozzle, depressed, spray can", "background, speaking, child"], "captions_pred_video": ["shows a man spraying paint on a wall with a spray gun", "footage of two kids wrestling on the floor"], "captions_pred_audio": ["spraying and people speaking", "a man is speaking and a child is crying"], "question": "which entity has a child shouting in the background?", "label": 1}, {"captions": ["metal clacking as food and oil sizzles followed by a woman talking", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["vW4x7S1VfQc", "xfaoyyzw2WU"], "start_seconds": ["150", "180"], "properties": ["clacking, oil, woman", "loud, jet engine, roar"], "captions_pred_video": ["footage of a person cooking fish in a frying pan on a stove top", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["food sizzles in a frying pan", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a clock ticks quietly and rhythmically", "an infant crying frantically"], "sample_ids": ["u7C-AEBQM", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["ticks, rhythmic, quiet", "cry, infant, frantically"], "captions_pred_video": [null, "of the baby crying in the car seat"], "captions_pred_audio": ["a ticktock of a clock", "a baby cries loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["a horn honks twice and keys jingle, followed by an electronic beep", "a man speaks as a motor runs in the background"], "sample_ids": ["wSVhSdj0F0", "xZepNM9qcRA"], "start_seconds": ["10", "30"], "properties": ["horn honks, keys jingle, electronic beep", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a car horn honks and keys jangle with background noise ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a motorcycle idles loudly as wind blows", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["v7jJS8aAyA", "tdWhHV3X25Q"], "start_seconds": ["10", "60"], "properties": ["wind, blows, loudly", "applause, audience, yells"], "captions_pred_video": [null, "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a motorcycle engine is idling and vibrating", "a man is speaking and a crowd is clapping"], "question": "which entity is a performance", "label": 1}, {"captions": ["a jet engine spools up and takes off", "water is sprayed across a hard surface"], "sample_ids": ["vBslzh7saPw", "sQwlkXjQabo"], "start_seconds": ["90", "10"], "properties": ["engine, spools, takes", "water, spray, surface"], "captions_pred_video": ["a pickup truck carrying a large object down the road", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a jet engine roars and accelerates ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a bell rings multiple times before a siren sounds in the distance", "people cheer as a vehicle engine revs"], "sample_ids": ["ul60S8TXDA8", "xjhAnI2q6hM"], "start_seconds": ["60", "6"], "properties": ["sound, distance, bell", "engine revs, vehicle, people"], "captions_pred_video": ["game the legend of zelda ocarina of time on nintendo 64", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a bell rings and mechanisms make ticking sounds ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["frogs croak and vocalize", "birds chirp and objects are moved around"], "sample_ids": ["yswmmRZFItk", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["croak, vocalize, frog", "birds chirp, objects are moved around, birds"], "captions_pred_video": ["a close up of a frog in the water", "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a frog is croaking", "insects buzz and a man speaks"], "question": "which entity is a bird", "label": 1}, {"captions": ["an animal bleats and cries out and metal bangs", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["xfudFO976zE", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["animal, bleats, cry", "clickety-clack, train, whistle"], "captions_pred_video": ["footage is blurry and shaky", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a goat bleats and birds chirp in the background ", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["vehicle tires screech and a man speaks before a car door opens", "a man speaks as a car is passing by"], "sample_ids": ["sxYkFKFIZD0", "sK4u5T8hW78"], "start_seconds": ["20", "30"], "properties": ["screech, man, door", "a, car, pass"], "captions_pred_video": ["2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2005 audi a4 1 8t 2", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating with a squeal in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is about a car passing by?", "label": 1}, {"captions": ["a car revs and accelerates loudly and men and women chatter among themselves", "a man speaks as a motor runs in the background"], "sample_ids": ["y8dSeubCNI", "xZepNM9qcRA"], "start_seconds": ["4", "30"], "properties": ["men, women, car", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["an engine revving and people talking in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["a person whistles a meandering tune", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["uFoga8sHpiw", "uYT5gxnyMWM"], "start_seconds": ["90", "50"], "properties": ["person, tune, whistle", "female, spraying, scream"], "captions_pred_video": ["footage of a bird in a cage", "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a person whistles a song", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 0}, {"captions": ["a man laughs and speaks as cats purr and hiss", "people speak as gunfire rings out"], "sample_ids": ["vVhthZ45k3Y", "wqTCwqVRDlk"], "start_seconds": ["30", "80"], "properties": ["cat, purr, hiss", "gunfire, ring, speak"], "captions_pred_video": ["footage is blurry and out of focus", "of a woman shooting a gun at a target on the beach"], "captions_pred_audio": ["a man is speaking and a cat is meowing", "a man is speaking and a gun is fired"], "question": "which entity is more quiet", "label": 0}, {"captions": ["rain falls on a surface as men speak and music plays", "a girl speaks followed by a scream and more girls talking"], "sample_ids": ["w0xsN8X18Y", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["music, surface, rain", "a, scream, girl"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a woman is speaking and a baby is crying"], "question": "which entity has more people speaking", "label": 1}, {"captions": ["birds chirp, a woman speaks, and insects buzz", "two men and a woman talk while wind blows and birds tweet"], "sample_ids": ["t97k0cejSQE", "wqZ135Ssz0"], "start_seconds": ["250", "60"], "properties": ["sound, chirp, buzz", "two men, woman, birds"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking and ducks are quacking with wind noise in the background "], "question": "which entity has more birds", "label": 1}, {"captions": ["a toilet flushes and water drains", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["sfAvvZwdLCY", "wDVMhEdTiVw"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "gun, shoot, water"], "captions_pred_video": ["footage of the toilet in the bathroom", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a toilet is flushed", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is a source of water", "label": 1}, {"captions": ["music plays, a person speaks, followed by whooshes and a ding", "small dogs growl, bark and yip."], "sample_ids": ["tQWGZLItBXk", "sShpyu2l4YQ"], "start_seconds": ["170", "0"], "properties": ["music, person, ding", "growl, bark, yip"], "captions_pred_video": ["worms revolution screenshots", "the puppies are playing with a toy"], "captions_pred_audio": ["a child speaks music plays video game sounds sound effects and sound effects play ", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["children speak and play together", "a man talks while a clock does ticktock"], "sample_ids": ["yVVP8XvWJTo", "spYNpeN7rPY"], "start_seconds": ["260", "1"], "properties": ["children, speak, play", "a clock, ticktock, man"], "captions_pred_video": ["footage of a playground at a school or daycare center", "in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a man is speaking and breathing with background noise "], "question": "which entity is a clock?", "label": 1}, {"captions": ["an infant crying frantically", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zwOBqeFTgiU", "vbZ-0lGPneg"], "start_seconds": ["30", "30"], "properties": ["cry, infant, frantically", "a woman, a television program, a bird"], "captions_pred_video": ["of the baby crying in the car seat", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a baby cries loudly", "a woman is speaking and a dog is whimpering"], "question": "which entity is a person", "label": 1}, {"captions": ["race cars go around a track as a man commentates", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["uZesmtKZGSw", "wDVMhEdTiVw"], "start_seconds": ["250", "30"], "properties": ["car, track, man", "gun, shoot, water"], "captions_pred_video": ["1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a man is speaking and a car is revving with laughter in the background ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["waves crash against a shoreline and wind blows", "an airplane engine spools and people speak"], "sample_ids": ["zdYdyF9-m8U", "wTjoRj1se3U"], "start_seconds": ["7", "390"], "properties": ["wind, crash, shoreline", "airplane, engine, spool"], "captions_pred_video": ["a person kayaking in the ocean near a cliff", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["waves crash and wind blows ", "a jet engine is running and people are talking"], "question": "which entity is stationary", "label": 1}, {"captions": ["birds tweet and squawk", "wind blows as people chatter quietly"], "sample_ids": ["w1mlz3Pe4fU", "xBxDz0CFVn0"], "start_seconds": ["300", "30"], "properties": ["squawk, tweet, scream", "wind, chatter, people"], "captions_pred_video": ["of a bird in a cage", "footage is blurry and out of focus"], "captions_pred_audio": ["birds are chirping and singing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a group of people chatter and talk as multiple horns honk in the background", "someone is typing on a computer keyboard"], "sample_ids": ["yLy-WycbVVE", "v0x1odnXtP0"], "start_seconds": ["30", "210"], "properties": ["background, people, talk", "keyboard, type, computer"], "captions_pred_video": ["a soccer field in a stadium with yellow and red seats", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking and a church bell is ringing with wind noise in the background ", "a person is typing on a keyboard"], "question": "which entity is typing on a keyboard", "label": 1}, {"captions": ["a man speaks while turning a water faucet on", "a propeller rotates loudly and intensely"], "sample_ids": ["vf9xf3vMsGM", "ugHJF0hfYkg"], "start_seconds": ["540", "10"], "properties": ["A man speaks while turning a water faucet on.", "loud, intense, propeller"], "captions_pred_video": ["of the person washing their hands under the faucet", "a man in a helicopter cockpit wearing headphones"], "captions_pred_audio": ["a man is speaking while water is running in the background", "a helicopter is flying overhead "], "question": "which entity is quieter", "label": 0}, {"captions": ["a toilet flushes and water drains", "a vehicle engine accelerating then running on idle"], "sample_ids": ["sfAvvZwdLCY", "vYkA3cfXp5Q"], "start_seconds": ["20", "30"], "properties": ["water drains, flushes, water", "engine, accelerate, idle"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a toilet is flushed", "an engine is idling"], "question": "which entity is a machine", "label": 1}, {"captions": ["water splashes as an animal walks through", "wind blows as people chatter quietly"], "sample_ids": ["w1ir-sZ3Im8", "xBxDz0CFVn0"], "start_seconds": ["90", "30"], "properties": ["animal, water, splashes", "wind, chatter, people"], "captions_pred_video": ["footage of a group of people riding horses through a river", "footage is blurry and out of focus"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a man is speaking with wind noise in the background "], "question": "which entity is more quiet", "label": 1}, {"captions": ["a machine beeps continuously", "an engine runs loudly"], "sample_ids": ["y682ml90jGw", "vqZuVbG6-HI"], "start_seconds": ["11", "130"], "properties": ["beeps, machine, continuously", "loud, engine, run"], "captions_pred_video": [null, "footage is blurry because it's raining outside"], "captions_pred_audio": ["a beeping sound is being made ", "a lawn mower is running and men are speaking "], "question": "which entity is louder", "label": 1}, {"captions": ["a man is filing a hard object", "an airplane engine runs"], "sample_ids": ["vveS8HT7Uog", "yVPZ2MNWpms"], "start_seconds": ["100", "0"], "properties": ["a man, hard, object", "engine, airplane, runs"], "captions_pred_video": ["footage is of a workbench with various tools on it including a hammer and a screwdriver", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a man is filing and speaking with background noise and breathing ", "a car is driving by on the road "], "question": "which object is moving", "label": 1}, {"captions": ["a woman speaks and taps on a hard surface before running tap water", "some tunes played by whistling"], "sample_ids": ["wvKpEYswXO0", "u6BnG6YZqJ4"], "start_seconds": ["150", "0"], "properties": ["water, tap, run", "tune, play, whistling"], "captions_pred_video": ["of the person preparing food in the kitchen", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a woman is speaking and tapping with background noise and water running ", "a person whistling a song"], "question": "which entity is not a musical instrument?", "label": 0}, {"captions": ["a woman talks while a baby cries and a man whispers", "a stream of water runs briefly"], "sample_ids": ["smDKStoHBJo", "x-PeY8Yb8M4"], "start_seconds": ["0", "300"], "properties": ["a, talk, baby, cry", "stream, water, run"], "captions_pred_video": ["a man holding a crying baby in his arms", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a baby is crying and a woman is speaking", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a heavy rain falls endlessly", "continuous sneezing together with speech"], "sample_ids": ["wP8ZKrlx3oA", "x4dZyf9Gbj0"], "start_seconds": ["40", "130"], "properties": ["heavy, rain, fall", "continuous, sneeze, speech"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "footage is blurry and out of focus"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a woman sneezes and speaks"], "question": "which entity is more likely to be heard", "label": 1}, {"captions": ["a duck quacks several times", "a clock alarm sounds and gears turn"], "sample_ids": ["vh30P49Po6s", "w2M4i1mklOA"], "start_seconds": ["30", "30"], "properties": ["quacks, duck, several", "alarm, gears, turn"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "footage of an antique clock"], "captions_pred_audio": ["a duck is quacking loudly", "a clock is ticking and a bell is ringing "], "question": "which entity is a clock?", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "vehicles pass by on a roadway"], "sample_ids": ["vb1fPSDI4c", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["multiple, people, yell", "pass, vehicle, roadway"], "captions_pred_video": [null, "footage of a fire truck entering a garage"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "three men talk while wind blows and some liquid flows"], "sample_ids": ["zALy31PjDl0", "vJ7JPEFhyLA"], "start_seconds": ["21", "16"], "properties": ["a man, a vehicle, a horn", "three men, wind, flow"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity has more people", "label": 1}, {"captions": ["a railroad crossing bell rings as a train horn blows", "some men converse over an engine running"], "sample_ids": ["tZGN5a7ybxo", "sCiy7QS1U"], "start_seconds": ["60", "300"], "properties": ["ring, train, horn", "men, converse, engine"], "captions_pred_video": ["is taken from a moving vehicle on the train tracks", null], "captions_pred_audio": ["a train is moving and blowing its horn ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a train?", "label": 0}, {"captions": ["two women and a man talk while a kid cries", "water splashes as an animal walks through"], "sample_ids": ["wyllXV6PjKo", "w1ir-sZ3Im8"], "start_seconds": ["30", "90"], "properties": ["a kid, talk, cry", "animal, water, splashes"], "captions_pred_video": [null, "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman speaks and a baby cries", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks as horns blow", "water splashes as an animal walks through"], "sample_ids": ["tHyNqRyK34A", "w1ir-sZ3Im8"], "start_seconds": ["24", "90"], "properties": ["a, man, speaks", "animal, water, splashes"], "captions_pred_video": ["being taken from inside a vehicle on the street at night", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a man is speaking and a car is honking with background noise ", "water splashes and gurgles as people speak"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking with light rustling", "some men converse over an engine running"], "sample_ids": ["zOZleIRqZm4", "sCiy7QS1U"], "start_seconds": ["80", "300"], "properties": ["light, rustling, man", "men, converse, engine"], "captions_pred_video": ["a person picking berries from the bushes in the garden", null], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking with light rustling?", "label": 0}, {"captions": ["a man talks followed by a woman shouting", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["s3cTDAj31g", "su6FAOcOA8c"], "start_seconds": ["80", "4"], "properties": ["man, talk, woman", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a man is speaking and a baby is crying", "a woman is speaking and a subway train is moving "], "question": "which entity has a woman speaking?", "label": 1}, {"captions": ["a horn blasts as warning bells ring", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["zgUgkpk78xU", "zj2R0XoFr5k"], "start_seconds": ["70", "50"], "properties": ["horn, bells, ring", "airplane, boy, fly"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is flying", "label": 1}, {"captions": ["multiple people speak and children yell while water gurgles", "wind blows as people chatter quietly"], "sample_ids": ["vb1fPSDI4c", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["multiple, people, yell", "wind, chatter, people"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a crowd of people are talking and laughing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["sa6TLVbooCc", "tdWhHV3X25Q"], "start_seconds": ["240", "60"], "properties": ["people, laugh, child", "applause, audience, yells"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a grown man speaks and water bubbles and runs", "several insects fly while two men talk"], "sample_ids": ["vSeGhaZt-aI", "s-T9OVOiMLo"], "start_seconds": ["50", "330"], "properties": ["water, bubbles, run", "several, fly, men"], "captions_pred_video": ["a man in a kitchen preparing a smoothie with a blender", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and pouring liquid with background noise ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a machine beeps continuously"], "sample_ids": ["xyx6eNVEYRY", "y682ml90jGw"], "start_seconds": ["380", "11"], "properties": ["loud, engine, muffles", "beeps, machine, continuously"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", null], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a beeping sound is being made "], "question": "which entity is quieter", "label": 1}, {"captions": ["a rumble grows louder", "wind blows as people chatter quietly"], "sample_ids": ["y4MY9mp8-TA", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["loudness, increase, rumble", "wind, chatter, people"], "captions_pred_video": ["a helicopter flying in the sky", "footage is blurry and out of focus"], "captions_pred_audio": ["a helicopter flies overhead ", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a vehicle is skidding and squealing tires", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["soTOh3zYJfY", "zFjIWfSD-4"], "start_seconds": ["40", "410"], "properties": ["vehicle, skid, tires", "People, motor, brakes"], "captions_pred_video": ["a red car drifting on a winding road with smoke coming out of it", null], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["children cheer as a man speaks then an audience screams", "an infant crying as a woman laughs"], "sample_ids": ["vJvryTwuAV8", "xhmRY9yhC7c"], "start_seconds": ["16", "20"], "properties": ["audience, cheer, man", "a, laugh, infant"], "captions_pred_video": ["a crowd of people are gathered in a mall, watching a man take a selfie in front of the crowd", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking and a crowd is shouting and whooping ", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["rain falls on a surface as men speak and music plays", "some men converse over an engine running"], "sample_ids": ["w0xsN8X18Y", "sCiy7QS1U"], "start_seconds": ["30", "300"], "properties": ["music, surface, rain", "men, converse, engine"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking while a motorboat is moving in the background ", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is about a man speaking and music playing?", "label": 0}, {"captions": ["someone whistles a song", "pigeons vocalize and birds chirp"], "sample_ids": ["sIXTftIuUgw", "uiS58TNyUiw"], "start_seconds": ["90", "430"], "properties": ["someone, song, whistle", "vocalize, bird, chirp"], "captions_pred_video": [null, "of the pigeon in the cage"], "captions_pred_audio": ["a person whistling a song", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a loud engine muffles a man as he speaks", "a vehicle engine revs as the vehicle passes"], "sample_ids": ["xyx6eNVEYRY", "yDoT73BWsdA"], "start_seconds": ["380", "10"], "properties": ["loud, engine, muffles", "engine, revs, vehicle"], "captions_pred_video": ["footage of a helicopter landing on a runway at an airport", "a man driving a race car with a helmet on the steering wheel"], "captions_pred_audio": ["an aircraft engine is running and a man is speaking ", "a race car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a person sneezes followed by another person speaking", "someone snores nearby"], "sample_ids": ["t8CV69hcvF0", "spJCm8tD9Zo"], "start_seconds": ["210", "90"], "properties": ["person, sneeze, follow", "someone snores, nearby, someone"], "captions_pred_video": ["of an airplane flying in the dark sky at night", "of a man laying on the ground with his mouth open"], "captions_pred_audio": ["a woman sneezes and speaks", "a person is snoring loudly"], "question": "which entity is a person", "label": 0}, {"captions": ["children speak and play together", "an insect buzzes around continuously"], "sample_ids": ["yVVP8XvWJTo", "v25l1jef3JY"], "start_seconds": ["260", "0"], "properties": ["children, speak, play", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a playground at a school or daycare center", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["children are speaking and breathing with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is not a person", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "pigeons vocalize and birds chirp"], "sample_ids": ["sofxkNWaP0s", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["wind, engine, louder", "vocalize, bird, chirp"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "of the pigeon in the cage"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a toilet flushes and water drains", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["sfAvvZwdLCY", "vKrYfzleLB8"], "start_seconds": ["20", "110"], "properties": ["water drains, flushes, water", "a, ring, gunshots"], "captions_pred_video": ["footage of the toilet in the bathroom", "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["a toilet is flushed", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more likely to be in a movie", "label": 1}, {"captions": ["a young woman speaks and laughs and an animal snorts", "a man speaks as birds chirp and a vehicle passes nearby"], "sample_ids": ["uEU-Hg5MTN8", "siJFXfGWgDk"], "start_seconds": ["27", "50"], "properties": ["a woman, laughs, animal", "a, bird, vehicle"], "captions_pred_video": ["of a girl wearing a pig mask and a boy hugging her", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "a man is speaking and birds are chirping in the background "], "question": "which entity has a vehicle passing nearby?", "label": 1}, {"captions": ["cutting machine running then powering down followed by a series of metal clanking in the background", "a stream of water runs briefly"], "sample_ids": ["zofjfKhqLk8", "x-PeY8Yb8M4"], "start_seconds": ["10", "300"], "properties": ["background, metal, clank", "stream, water, run"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a car is driving on a wet road "], "question": "which entity is a stream of water?", "label": 1}, {"captions": ["a diesel truck engine runs continuously", "a duck quacks continuously"], "sample_ids": ["sZvwOuuPGP0", "vh30P49Po6s"], "start_seconds": ["50", "30"], "properties": ["engine, diesel, truck", "quacks, continuously, duck"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a medium engine is running ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an engine idles consistently before sputtering some", "water pouring and bubbling"], "sample_ids": ["rwTERCUno", "uyRfq-jKPpo"], "start_seconds": ["90", "50"], "properties": ["engine, idle, sputter", "water, bubbles, pouring"], "captions_pred_video": [null, "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["an engine is idling and vibrating", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a man speaks as a car is passing by", "a bird chirps in response to a woman chirping for the birds"], "sample_ids": ["sK4u5T8hW78", "uOpoD0gGXcs"], "start_seconds": ["30", "120"], "properties": ["a, car, pass", "chirps, woman, bird"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a herd of cows grazing in the field"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "birds are chirping and a man is speaking"], "question": "which entity is a response to a chirps", "label": 1}, {"captions": ["an engine revs and a turning noise is made", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["tOSWIURC-4", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["noise, engine, revs", "airplane, boy, fly"], "captions_pred_video": [null, "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a lawn mower is running ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a moving object", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "vehicles pass by on a roadway"], "sample_ids": ["sfAvvZwdLCY", "tgbONvsP47Y"], "start_seconds": ["20", "0"], "properties": ["flushes, drains, water", "pass, vehicle, roadway"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a toilet is flushed", "a car is driving on the road "], "question": "which entity is moving", "label": 1}, {"captions": ["music plays and repeated slaps accompany human sniveling, then insect buzz", "a man speaks followed by another man speaking outside"], "sample_ids": ["weDbePuc-Xc", "viuTg1M-dqg"], "start_seconds": ["40", "30"], "properties": ["music, slaps, human", "two men, speak, follow"], "captions_pred_video": ["a cartoon frog and a butterfly are sitting on the ground next to each other", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a man is speaking and birds are chirping with a frog croaking in the background ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has two men speaking?", "label": 1}, {"captions": ["animals bleat and cry out and then a woman speaks", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["yZp6xizR0yU", "zj2R0XoFr5k"], "start_seconds": ["30", "50"], "properties": ["animal, bleat, cry", "airplane, boy, fly"], "captions_pred_video": ["footage of a woman feeding goats in a barn", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a woman is speaking and a goat is bleating", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video of a plane flying by?", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a door slams shut and an object moves on a hard surface"], "sample_ids": ["vuUVPzd2FXw", "zkKdxzNC97Y"], "start_seconds": ["160", "27"], "properties": ["a, steam, release", "hard, surface, door"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "footage of the door opening and closing in slow motion"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a door is opened and closed"], "question": "which entity is a door?", "label": 1}, {"captions": ["people speak and laugh as a child speaks", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["sa6TLVbooCc", "xfaoyyzw2WU"], "start_seconds": ["240", "180"], "properties": ["people, laugh, child", "loud, jet engine, roar"], "captions_pred_video": ["a video of a little boy trying to get a toy from a shelf in a store", "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a woman is speaking and a child is coughing", "an aircraft engine roars and a man speaks "], "question": "which is louder", "label": 1}, {"captions": ["a duck quacks several times", "an audience gives applause"], "sample_ids": ["vh30P49Po6s", "x6iCUDmRpKQ"], "start_seconds": ["30", "38"], "properties": ["quacks, duck, several", "applause, audience, give"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a black background with the moon and stars in the sky"], "captions_pred_audio": ["a duck is quacking loudly", "a group of people are clapping and cheering"], "question": "which is not a verb", "label": 0}, {"captions": ["water runs into a sink while men speak", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["vzceMbklWc", "vbZ-0lGPneg"], "start_seconds": ["180", "30"], "properties": ["water, sink, run", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["water is running and a man is speaking", "a woman is speaking and a dog is whimpering"], "question": "which entity has more moving parts", "label": 1}, {"captions": ["a child speaks in closed space", "a stream of water runs briefly"], "sample_ids": ["yW6FWLSLkx4", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["child, space, speak", "stream, water, run"], "captions_pred_video": ["of the doll sitting on the bed with her hand outstretched towards the viewer", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a woman is speaking with background noise and breathing sounds ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["water pouring and bubbling", "pigeons vocalize and birds chirp"], "sample_ids": ["uyRfq-jKPpo", "uiS58TNyUiw"], "start_seconds": ["50", "430"], "properties": ["water, bubbles, pouring", "vocalize, bird, chirp"], "captions_pred_video": ["on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu", "of the pigeon in the cage"], "captions_pred_audio": ["water is running from a faucet", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a person screams glaringly", "birds chirp and objects are moved around"], "sample_ids": ["xC8kbrKJmco", "yPUYU6t3rwo"], "start_seconds": ["0", "370"], "properties": ["glaringly, screams, person", "birds chirp, objects are moved around, birds"], "captions_pred_video": [null, "footage and stock-footage/b-roll of a beekeeper opening a beehive"], "captions_pred_audio": ["a goat is bleating ", "insects buzz and a man speaks"], "question": "which entity is more active", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "people cheer as a vehicle engine revs"], "sample_ids": ["sTpirNYo8vQ", "xjhAnI2q6hM"], "start_seconds": ["30", "6"], "properties": ["a, tone, fast", "engine revs, vehicle, people"], "captions_pred_video": ["of a man taking a selfie on a bus", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle?", "label": 1}, {"captions": ["a horn blasts loudly as a train passes", "water is sprayed across a hard surface"], "sample_ids": ["zsLxS-uLJTw", "sQwlkXjQabo"], "start_seconds": ["20", "10"], "properties": ["horn, blast, train", "water, spray, surface"], "captions_pred_video": ["footage of the train on the tracks at sunrise or sunset", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a train blows its horn and moves on the tracks ", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a duck quacks continuously", "a car speeding up in the distance"], "sample_ids": ["vh30P49Po6s", "u0TrcHhkPQ"], "start_seconds": ["30", "20"], "properties": ["quacks, continuously, duck", "distance, car, speed"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", null], "captions_pred_audio": ["a duck is quacking loudly", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a goat bleats and someone makes a calling noise", "an insect buzzes around continuously"], "sample_ids": ["vlS6YMeWAPo", "v25l1jef3JY"], "start_seconds": ["40", "0"], "properties": ["noise, bleat, call", "buzzes, continuously, insect"], "captions_pred_video": ["footage of a goat in a pen behind a wooden fence", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a goat bleats and birds chirp", "a fly is buzzing around a microphone "], "question": "which entity is not a noise", "label": 1}, {"captions": ["a cat meows and children speak", "an infant crying frantically"], "sample_ids": ["x5cuQjOdM3E", "zwOBqeFTgiU"], "start_seconds": ["30", "30"], "properties": ["cat, speak, children", "cry, infant, frantically"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the baby crying in the car seat"], "captions_pred_audio": ["a cat meows and a woman speaks", "a baby cries loudly"], "question": "which entity is crying", "label": 1}, {"captions": ["someone whistles briefly", "a man speaks as a motor runs in the background"], "sample_ids": ["uFoga8sHpiw", "xZepNM9qcRA"], "start_seconds": ["90", "30"], "properties": ["sound, duration, pitch", "background, motor, run"], "captions_pred_video": ["footage of a bird in a cage", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a person whistles a song", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a longer duration", "label": 1}, {"captions": ["several beeps are followed by a hit and a woman talking", "water pouring and bubbling"], "sample_ids": ["w34HjHr6gAY", "uyRfq-jKPpo"], "start_seconds": ["30", "50"], "properties": ["beeps, hit, woman", "water, bubbles, pouring"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "water is running from a faucet"], "question": "which entity is a video of a liquid flowing and bubbling?", "label": 1}, {"captions": ["an emergency vehicle engine runs then a horn blows and siren sounds", "some men talk among st themselves as cars speed and race loudly"], "sample_ids": ["y2bVZ7rz-5M", "uZesmtKZGSw"], "start_seconds": ["280", "250"], "properties": ["engine, horn, siren", "men, talk, cars"], "captions_pred_video": ["footage of a parade of fire trucks driving down the street", "1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet holden monaro gts 1970 chevrolet"], "captions_pred_audio": ["a truck is honking its horn and a siren is blaring ", "a man is speaking and a car is revving with laughter in the background "], "question": "which entity is a vehicle", "label": 0}, {"captions": ["water flows as men speak and yell", "someone is typing on a computer keyboard"], "sample_ids": ["vJ7JPEFhyLA", "v0x1odnXtP0"], "start_seconds": ["16", "210"], "properties": ["water, flow, men", "keyboard, type, computer"], "captions_pred_video": ["a man in a red shirt paddling a kayak in the water", "how to make money on youtube in spanish"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a person is typing on a keyboard"], "question": "which is a still image", "label": 1}, {"captions": ["continuous snoring", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["sLkeqCDJIyw", "yajyRTUQk3U"], "start_seconds": ["120", "400"], "properties": ["loud, snoring, noise", "a woman, something, fried"], "captions_pred_video": [", what is the man doing on the couch? sleeping", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a person is snoring loudly", "a woman is speaking while food is frying in the background"], "question": "which entity is a video", "label": 1}, {"captions": ["two men speak as a buffeting wind blows", "a stream of water runs briefly"], "sample_ids": ["y8WEcpOlT3I", "x-PeY8Yb8M4"], "start_seconds": ["40", "300"], "properties": ["wind, speak, buffeting", "stream, water, run"], "captions_pred_video": ["on how to use a sewing machine youtube", "a man sitting on a rock in the middle of a river"], "captions_pred_audio": ["a man is speaking with wind noise in the background ", "a car is driving on a wet road "], "question": "which entity is moving", "label": 1}, {"captions": ["a horn rings out as a machine runs by", "water pouring and bubbling"], "sample_ids": ["slZLHwNbbt4", "uyRfq-jKPpo"], "start_seconds": ["300", "50"], "properties": ["a, horn, run", "water, bubbles, pouring"], "captions_pred_video": ["footage of a train coming down the tracks on a sunny day", "on youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro puff hairstyle youtube how to do an afro pu"], "captions_pred_audio": ["a train is moving and blowing its horn with a clickety-clack sound ", "water is running from a faucet"], "question": "which entity is a liquid", "label": 1}, {"captions": ["an adult woman and an adult man speak", "a frog vocalizes as birds chirp"], "sample_ids": ["zTLVJCo4WEE", "wqUmIEzuNz4"], "start_seconds": ["30", "30"], "properties": ["two people, adult, speak", "frog, bird, vocalize"], "captions_pred_video": ["- a boy with a rifle aiming at a target", "a frog sitting in the grass on a sunny day"], "captions_pred_audio": ["a woman speaks and crickets chirp", "a cat meows and rustles"], "question": "which entity is a single entity", "label": 1}, {"captions": ["children cry and people talk", "a jet engine roars, almost making a man inaudible"], "sample_ids": ["xLwHe825Zs", "xfaoyyzw2WU"], "start_seconds": ["18", "180"], "properties": ["people talk, children cry, people talk", "loud, jet engine, roar"], "captions_pred_video": [null, "footage of an airplane on the tarmac at an airport"], "captions_pred_audio": ["a baby cries and a woman speaks", "an aircraft engine roars and a man speaks "], "question": "which entity is louder", "label": 1}, {"captions": ["a man speaks as water trickles down a stream", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sapQIQUhFc", "sSMl2vc3ek"], "start_seconds": ["280", "20"], "properties": ["water, stream, trickles", "loud, multiple, distance"], "captions_pred_video": [null, null], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["the clinking of a train bell with the humming of an engine and a train horn blowing", "a man speaks as a vehicles passes by then a woman speaks"], "sample_ids": ["zgUgkpk78xU", "siJFXfGWgDk"], "start_seconds": ["70", "50"], "properties": ["clinking, humming, horn", "man, woman, vehicle"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", "footage of a beekeeper working with bees in a beehive"], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking and birds are chirping in the background "], "question": "which entity is a video of a man speaking?", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "an airplane engine runs"], "sample_ids": ["vs65y4qmyBE", "yVPZ2MNWpms"], "start_seconds": ["340", "0"], "properties": ["engine, run, man", "engine, airplane, runs"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "footage of an airport with planes parked on the tarmac"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a car is driving by on the road "], "question": "which entity has a running engine", "label": 1}, {"captions": ["a machine engine runs and a man speaks", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["vs65y4qmyBE", "vfYTJq7nU"], "start_seconds": ["340", "130"], "properties": ["engine, run, man", "rustling, ducks, quack"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", null], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a duck quacks and a woman speaks"], "question": "which entity is about a machine?", "label": 0}, {"captions": ["a man talks nearby and another man talks far away while some liquid flows", "continuous sneezing together with speech"], "sample_ids": ["sapQIQUhFc", "x4dZyf9Gbj0"], "start_seconds": ["280", "130"], "properties": ["liquid, flow, distance", "continuous, sneeze, speech"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking and a stream is flowing in the background ", "a woman sneezes and speaks"], "question": "which entity is more like a sneeze", "label": 1}, {"captions": ["a child yells and another yells", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["vMDHu7Lxcgw", "w5W5Kqtc8E"], "start_seconds": ["410", "100"], "properties": ["two, yell, child", "wind, blow, vehicle"], "captions_pred_video": ["a boy playing on a trampoline in the backyard", null], "captions_pred_audio": ["a woman is speaking and a child is shouting", "a motorboat is moving and people are shouting and cheering "], "question": "which entity has more than one person yelling?", "label": 0}, {"captions": ["an engine idles consistently before sputtering some", "gunshots ring out, a man yells, and more shots follow"], "sample_ids": ["rwTERCUno", "vKrYfzleLB8"], "start_seconds": ["90", "110"], "properties": ["engine, idle, sputter", "a, ring, gunshots"], "captions_pred_video": [null, "stock footage of a person holding a gun in their hand"], "captions_pred_audio": ["an engine is idling and vibrating", "a man is speaking with background noise and a cap gun is fired "], "question": "which entity is more violent", "label": 1}, {"captions": ["a airplane flies overhead as a woman speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zj2R0XoFr5k", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["airplane, fly, woman", "rooster, crow, background, men"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster in the background?", "label": 1}, {"captions": ["metal rumbles followed by a kid giggles then more metal rumbling followed by a guy speaking", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sQGXqGcwOTc", "zj2R0XoFr5k"], "start_seconds": ["3", "50"], "properties": ["audio, kid, giggles", "airplane, boy, fly"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video?", "label": 1}, {"captions": ["people speak softly as food sizzles", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["yhQ2Lg-7qDY", "ukg5L09Wpvo"], "start_seconds": ["130", "150"], "properties": ["food, sizzle, speak", "clickety-clack, train, whistle"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a train blows its whistle and blows its horn "], "question": "which entity is a train?", "label": 1}, {"captions": ["heavy rain splashes as it falls", "multiple insects buzz over rustling wind"], "sample_ids": ["wP8ZKrlx3oA", "tMJne1a4AFI"], "start_seconds": ["40", "0"], "properties": ["fall, rain, splash", "wind, buzz, rustling"], "captions_pred_video": ["footage of a flooded street in the middle of a desert with mountains in the background", "a swarm of bees on the ground"], "captions_pred_audio": ["a heavy rain is falling on a surface", "a swarm of bees buzzing around"], "question": "which entity is not a splash", "label": 1}, {"captions": ["an engine runs loudly", "water flows and trickles"], "sample_ids": ["vqZuVbG6-HI", "tB7hWb9gTuQ"], "start_seconds": ["130", "30"], "properties": ["loud, engine, run", "water, flow, trickle"], "captions_pred_video": ["footage is blurry because it's raining outside", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["a lawn mower is running and men are speaking ", "water is splashing and gurgling"], "question": "which entity is quieter", "label": 1}, {"captions": ["birds chirp and a dog breathes heavily", "a young female speaks, followed by spraying and a female screaming"], "sample_ids": ["y2ZBGpgbhHM", "uYT5gxnyMWM"], "start_seconds": ["30", "50"], "properties": ["dog, chirp, breathe", "female, spraying, scream"], "captions_pred_video": [null, "footage of a person spraying paint on the ceiling"], "captions_pred_audio": ["birds chirping and a dog panting", "a woman is speaking and a baby is crying"], "question": "which entity is a person", "label": 1}, {"captions": ["a motor runs in the distance as a soft wind periodically gusts", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["xyL9F5VrjkE", "vbZ-0lGPneg"], "start_seconds": ["20", "30"], "properties": ["wind, motor, distance", "a woman, a television program, a bird"], "captions_pred_video": ["of a caterpillar truck loading logs into a trailer", "of a man holding a baby duck in his hands"], "captions_pred_audio": ["the wind is blowing and a car is passing by ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a television program?", "label": 1}, {"captions": ["loud ringing of a telephone stops followed by a man speaking and a digital beep", "someone whistles a tune"], "sample_ids": ["uzQnlJXBbOM", "sIXTftIuUgw"], "start_seconds": ["50", "90"], "properties": ["ringing, beep, stop", "someone, tune, whistle"], "captions_pred_video": ["footage of a person using a cell phone on a table", null], "captions_pred_audio": ["a telephone rings and a man speaks", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a cat meows as a young woman speaks", "birds chirp and wind blows"], "sample_ids": ["x5cuQjOdM3E", "sxIvBMSavMQ"], "start_seconds": ["30", "210"], "properties": ["cat, meows, young woman", "birds, chirp, wind"], "captions_pred_video": ["a black background with an airplane flying in the sky", "beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a beehive beekeeping 101 how to extract honey from a"], "captions_pred_audio": ["a cat meows and a woman speaks", "birds are chirping and insects are buzzing"], "question": "which entity is more quiet", "label": 1}, {"captions": ["a toilet flushes and water drains", "females talk and laugh over gusting wind"], "sample_ids": ["sfAvvZwdLCY", "un9VQlzgZM"], "start_seconds": ["20", "5"], "properties": ["water drains, flushes, water", "females, talk, laugh"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["birds fly and flutter around", "winds blows roughly as a vehicle races past"], "sample_ids": ["wGKgwOP3h30", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["fly, flutter, around", "wind, blows, vehicle"], "captions_pred_video": ["of the pigeons in the coop", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["pigeons coo and flap their wings", "a jet engine roars and wind blows "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a race car approaches quickly and slows down squealing tires", "a duck quacks continuously"], "sample_ids": ["sEprKHm8Sj8", "vh30P49Po6s"], "start_seconds": ["90", "30"], "properties": ["car, tires, slows", "quacks, continuously, duck"], "captions_pred_video": ["rally 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a duck is quacking loudly"], "question": "which entity is a bird?", "label": 1}, {"captions": ["an engine runs and wind blows", "a vehicle accelerates before a race car idles then accelerates quickly"], "sample_ids": ["vs65y4qmyBE", "sjlVMgdGSK0"], "start_seconds": ["340", "30"], "properties": ["engine, run, wind", "accelerates, vehicle, race car"], "captions_pred_video": ["a car is engulfed in flames on the side of the road", "a 1965 ford falcon drag racing at 100mph on a 1/8 mile track"], "captions_pred_audio": ["a heavy engine is running and men are speaking ", "a car accelerates and revs its engine "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a siren comes to life as a horn blares", "some tunes played by whistling"], "sample_ids": ["u--KhUW8l1Y", "u6BnG6YZqJ4"], "start_seconds": ["0", "0"], "properties": ["horn, siren, life", "tune, play, whistling"], "captions_pred_video": ["a firefighter spraying water from a fire hydrant at night", "a young boy standing in front of a group of kids in a classroom"], "captions_pred_audio": ["a fire truck siren blares and a horn blows ", "a person whistling a song"], "question": "which entity is a musical instrument", "label": 1}, {"captions": ["a duck quacks loudly and continuously", "an insect buzzes around continuously"], "sample_ids": ["vh30P49Po6s", "v25l1jef3JY"], "start_seconds": ["30", "0"], "properties": ["loud, continuous, quacks", "buzzes, continuously, insect"], "captions_pred_video": ["of a man brushing his teeth with a toothbrush in his mouth", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a duck is quacking loudly", "a fly is buzzing around a microphone "], "question": "which entity is quieter", "label": 1}, {"captions": ["a horn honks followed by a loud continuous buzzing while men speak", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["wsHBIgzs9Fs", "ukg5L09Wpvo"], "start_seconds": ["50", "150"], "properties": ["horn, continuous, buzzing", "clickety-clack, train, whistle"], "captions_pred_video": ["shows a motorcycle riding down a country road with a motorcycle in the foreground", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a car accelerates and revs its engine while a man speaks ", "a train blows its whistle and blows its horn "], "question": "which entity is continuous", "label": 1}, {"captions": ["a man talks while a clock does ticktock", "an insect buzzes around continuously"], "sample_ids": ["spYNpeN7rPY", "v25l1jef3JY"], "start_seconds": ["1", "0"], "properties": ["a clock, ticktock, man", "buzzes, continuously, insect"], "captions_pred_video": ["in 10 words or less what is the name of the song in the maybank advertisement? maybank advertisement, maybank, advertisement, advertisements, advertisement video, advertisements video, advertisements, advertisement, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertisement video, advertis", "a black background with a cartoon character in the foreground"], "captions_pred_audio": ["a man is speaking and breathing with background noise ", "a fly is buzzing around a microphone "], "question": "which entity is moving", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "an audience gives applause as a man yells and a group sings"], "sample_ids": ["w2bYrCVLT60", "tdWhHV3X25Q"], "start_seconds": ["120", "60"], "properties": ["ducks, speak, quack", "applause, audience, yells"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", "a man is talking to another man on a stage in front of a microphone"], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a man is speaking and a crowd is clapping"], "question": "which entity is more active", "label": 1}, {"captions": ["a goat screams and people speak in the background", "tapping occurs then a baby cries"], "sample_ids": ["xC8kbrKJmco", "wIJK3-5y0kA"], "start_seconds": ["0", "30"], "properties": ["background, goat, scream", "a, cry, baby"], "captions_pred_video": [null, "of a baby playing with a cat in a dark room"], "captions_pred_audio": ["a goat is bleating ", "a baby cries and a woman speaks"], "question": "which entity is crying", "label": 1}, {"captions": ["a few ducks quack and scamper and a man speaks", "someone whistles a tune"], "sample_ids": ["w2bYrCVLT60", "sIXTftIuUgw"], "start_seconds": ["120", "90"], "properties": ["ducks, speak, quack", "someone, tune, whistle"], "captions_pred_video": ["of the ducks drinking from a pink pool in the grass", null], "captions_pred_audio": ["ducks are quacking and a man is speaking", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["a person is snoring while sleeping", "several insects fly while two men talk"], "sample_ids": ["vJrjSeP17yE", "s-T9OVOiMLo"], "start_seconds": ["40", "330"], "properties": ["a person is sleeping, snoring, person", "several, fly, men"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a person snoring loudly", "a man is speaking while insects are buzzing in the background "], "question": "which entity is a person", "label": 0}, {"captions": ["a woman speaks and is crumpling paper", "several beeps are followed by a hit and a woman talking"], "sample_ids": ["xvDdE3zNf8Y", "w34HjHr6gAY"], "start_seconds": ["120", "30"], "properties": ["A, crumple, paper", "beeps, hit, woman"], "captions_pred_video": ["of a woman in a white shirt and glasses holding a purple tie", "the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz"], "captions_pred_audio": ["a woman speaks and crumples paper", "a beep sounds followed by a child speaking"], "question": "which entity is a video of a woman speaking and crumpling paper?", "label": 0}, {"captions": ["birds chirp quietly and an adult man speaks", "winds blows roughly as a vehicle races past"], "sample_ids": ["zuua6-5goWw", "xjvTpk2Zpr8"], "start_seconds": ["30", "70"], "properties": ["birds, chirp, quiet, man, speaks", "wind, blows, vehicle"], "captions_pred_video": ["in your own words screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot 10 of 10] screenshot", "footage of a dhl plane landing on the runway"], "captions_pred_audio": ["birds are chirping and a man is speaking with background noise ", "a jet engine roars and wind blows "], "question": "which entity is more calm", "label": 0}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "a man speaks as a motor runs in the background"], "sample_ids": ["vuUVPzd2FXw", "xZepNM9qcRA"], "start_seconds": ["160", "30"], "properties": ["a, steam, release", "background, motor, run"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity has a motor running in the background?", "label": 1}, {"captions": ["wind noise makes sound into a microphone", "pigeons vocalize and birds chirp"], "sample_ids": ["w8uLijTqtlU", "uiS58TNyUiw"], "start_seconds": ["70", "430"], "properties": ["wind, microphone, noise", "vocalize, bird, chirp"], "captions_pred_video": ["footage is blurry and shaky", "of the pigeon in the cage"], "captions_pred_audio": ["the wind is blowing strongly", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a speedboat passes quickly on the water", "water is sprayed across a hard surface"], "sample_ids": ["tjmoSi330GM", "sQwlkXjQabo"], "start_seconds": ["23", "10"], "properties": ["speed, water, boat", "water, spray, surface"], "captions_pred_video": ["a person riding a jet ski on a lake with trees in the background", "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a motorboat speeds through water with wind noise ", "spraying followed by silence"], "question": "which entity is moving across a hard surface", "label": 1}, {"captions": ["paper is crumpling consistently", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["v5cSxLaHADY", "wDVMhEdTiVw"], "start_seconds": ["0", "30"], "properties": ["paper is crumpling, paper is white, paper is crumpling", "gun, shoot, water"], "captions_pred_video": ["footage of the person holding a pair of scissors", "a blurry image of trees and water in the forest"], "captions_pred_audio": ["paper is crumpled and crinkled", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is not a video of a gun shooting?", "label": 0}, {"captions": ["an electric engine works nearby followed by a child talking", "people cheer as a vehicle engine revs"], "sample_ids": ["xSKJGCItUWE", "xjhAnI2q6hM"], "start_seconds": ["10", "6"], "properties": ["engine, work, child", "engine revs, vehicle, people"], "captions_pred_video": ["footage of the helicopter flying in the room", "a school bus decorated with christmas lights is floating in the water"], "captions_pred_audio": ["a high pitched engine is running and a child speaks", "a truck is revving its engine and a man is speaking "], "question": "which entity is about a vehicle engine?", "label": 1}, {"captions": ["water is sprayed across a hard surface", "a man speaks followed by another man speaking outside"], "sample_ids": ["sQwlkXjQabo", "viuTg1M-dqg"], "start_seconds": ["10", "30"], "properties": ["water, spray, surface", "two men, speak, follow"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a vehicle accelerates before a race car idles then accelerates quickly", "pigeons vocalize and birds chirp"], "sample_ids": ["sjlVMgdGSK0", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["accelerates, vehicle, race car", "vocalize, bird, chirp"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "of the pigeon in the cage"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["a stream of water flows quickly", "loud intermittent buzzing with intermittent laughter"], "sample_ids": ["wbHTKEJZyhc", "sLUnaPT5gM8"], "start_seconds": ["20", "0"], "properties": ["stream, water, flow", "loud, laughter, intermittent"], "captions_pred_video": ["footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and a bridge in the background video footage of a river in autumn with trees and", "of a baby laying on his stomach in a blue shirt and diaper"], "captions_pred_audio": ["a waterfall is flowing and people are speaking ", "a baby is laughing and breathing while a man is speaking "], "question": "which entity is more quiet", "label": 0}, {"captions": ["a clock ticks quietly and rhythmically", "a stream of water flows as people talk and wind blows"], "sample_ids": ["u7C-AEBQM", "xBxDz0CFVn0"], "start_seconds": ["30", "30"], "properties": ["ticks, rhythmic, quiet", "stream, water, flow"], "captions_pred_video": [null, "footage is blurry and out of focus"], "captions_pred_audio": ["a ticktock of a clock", "a man is speaking with wind noise in the background "], "question": "which entity is moving", "label": 1}, {"captions": ["a man talks followed by a woman shouting", "water is sprayed across a hard surface"], "sample_ids": ["s3cTDAj31g", "sQwlkXjQabo"], "start_seconds": ["80", "10"], "properties": ["man, talk, woman", "water, spray, surface"], "captions_pred_video": [null, "a close-up of a red car with water droplets on the hood"], "captions_pred_audio": ["a man is speaking and a baby is crying", "spraying followed by silence"], "question": "which entity is a liquid", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "a loud snarling engine is followed by a man laughing"], "sample_ids": ["sfAvvZwdLCY", "zl9Dqx-j7q4"], "start_seconds": ["20", "6"], "properties": ["flushes, drains, water", "engine, laugh, loud"], "captions_pred_video": ["footage of the toilet in the bathroom", "footage of a man driving a car in the dark"], "captions_pred_audio": ["a toilet is flushed", "a jet engine roars "], "question": "which entity is louder", "label": 1}, {"captions": ["a woman speaks in a fast tone with a male", "someone whistles a tune"], "sample_ids": ["sTpirNYo8vQ", "sIXTftIuUgw"], "start_seconds": ["30", "90"], "properties": ["a, tone, fast", "someone, tune, whistle"], "captions_pred_video": ["of a man taking a selfie on a bus", null], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a person whistling a song"], "question": "which entity is a musical performance", "label": 1}, {"captions": ["people clap and speak in the distance", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["wwyfGO2J4", "tDVADusiIoc"], "start_seconds": ["90", "60"], "properties": ["clap, distance, speak", "water, radio, man"], "captions_pred_video": [null, "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaking together with birds chirping and distant murmuring", "water splashes and wind noise is made into a microphone"], "sample_ids": ["uiS58TNyUiw", "sDSppXIlJrs"], "start_seconds": ["430", "27"], "properties": ["audio, man, speaking", "microphone, water, wind"], "captions_pred_video": ["of the pigeon in the cage", "a man is paddling a small wooden boat in the water"], "captions_pred_audio": ["a man is speaking and a bee is buzzing", "the wind is blowing and water is splashing"], "question": "which entity is a recording of a man speaking?", "label": 0}, {"captions": ["water is sprayed across a hard surface", "pigeons vocalize and birds chirp"], "sample_ids": ["sQwlkXjQabo", "uiS58TNyUiw"], "start_seconds": ["10", "430"], "properties": ["water, spray, surface", "vocalize, bird, chirp"], "captions_pred_video": ["a close-up of a red car with water droplets on the hood", "of the pigeon in the cage"], "captions_pred_audio": ["spraying followed by silence", "a man is speaking and a bee is buzzing"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["birds chirp as a bell rings", "multiple people speak and children yell while water gurgles"], "sample_ids": ["ziUT9IFTkjg", "vb1fPSDI4c"], "start_seconds": ["10", "30"], "properties": ["chirp, bell, ring", "multiple, people, yell"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a crowd of people are talking and laughing"], "question": "which entity is more quiet", "label": 0}, {"captions": ["water flows as a woman laughs and a man speaks", "females talk and laugh over gusting wind"], "sample_ids": ["vddP56-ogds", "un9VQlzgZM"], "start_seconds": ["30", "5"], "properties": ["water, flow, laugh", "females, talk, laugh"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running and gurgling and a man is speaking", "a woman is speaking and laughing with wind noise and breathing in the background "], "question": "which entity has more people laughing", "label": 1}, {"captions": ["an insect buzzes around continuously", "a woman speaks followed by another woman whimpering and speaking"], "sample_ids": ["v25l1jef3JY", "xOZfdgAgJ9o"], "start_seconds": ["0", "40"], "properties": ["buzzes, continuously, insect", "woman, whimpering, speaking"], "captions_pred_video": ["a black background with a cartoon character in the foreground", "footage of a woman talking to a man in a doctor's office"], "captions_pred_audio": ["a fly is buzzing around a microphone ", "a woman is speaking and a baby is crying"], "question": "which entity is speaking", "label": 1}, {"captions": ["birds chirp then an animal grunts", "a man speaks as a car is passing by"], "sample_ids": ["tDlysoZiA1I", "sK4u5T8hW78"], "start_seconds": ["0", "30"], "properties": ["animal, grunt, chirp", "a, car, pass"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a moving object", "label": 1}, {"captions": ["water splashes as an animal walks through", "small dogs yip and bark sharply"], "sample_ids": ["w1ir-sZ3Im8", "v-wcQf4BDY0"], "start_seconds": ["90", "120"], "properties": ["animal, water, splashes", "bark, yip, sharply"], "captions_pred_video": ["footage of a group of people riding horses through a river", "footage is blurry and shaky, making it difficult to see what is happening"], "captions_pred_audio": ["water splashes and gurgles as people speak", "a dog barks and growls"], "question": "which animal is more active", "label": 1}, {"captions": ["a woman speaks over sizzling noise", "a man speaks over a radio as wind blows and water splashes"], "sample_ids": ["yajyRTUQk3U", "tDVADusiIoc"], "start_seconds": ["400", "60"], "properties": ["noise, woman, speak", "water, radio, man"], "captions_pred_video": ["- a woman cooking in the kitchen", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking over a radio?", "label": 1}, {"captions": ["people talk quietly in the distance, followed by a police car siren wailing", "vehicles pass by on a roadway"], "sample_ids": ["wy1eKjR7KC0", "tgbONvsP47Y"], "start_seconds": ["30", "0"], "properties": ["people, talk, distance", "pass, vehicle, roadway"], "captions_pred_video": ["two police officers riding motorcycles down the street", "footage of a fire truck entering a garage"], "captions_pred_audio": ["a man is speaking and a siren is going off", "a car is driving on the road "], "question": "which entity is more likely to be in motion", "label": 1}, {"captions": ["cats meow and then a person begins to talk while the cats continue to meow", "pigeons vocalize and birds chirp"], "sample_ids": ["x5cuQjOdM3E", "uiS58TNyUiw"], "start_seconds": ["30", "430"], "properties": ["cat, talk, meow", "vocalize, bird, chirp"], "captions_pred_video": ["a black background with an airplane flying in the sky", "of the pigeon in the cage"], "captions_pred_audio": ["a cat meows and a woman speaks", "a man is speaking and a bee is buzzing"], "question": "which entity is a bird", "label": 1}, {"captions": ["loud clanking and banging with brief male speech", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["sWZzXuWYY", "su6FAOcOA8c"], "start_seconds": ["420", "4"], "properties": ["male, speech, banging", "engine, idle, woman"], "captions_pred_video": [null, "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a sewing machine runs and a man speaks", "a woman is speaking and a subway train is moving "], "question": "which entity is a bus?", "label": 1}, {"captions": ["a woman and man speak while food is frying", "water splashes as an animal walks through"], "sample_ids": ["zk-xJGQU8-4", "w1ir-sZ3Im8"], "start_seconds": ["130", "90"], "properties": ["food, man, woman", "animal, water, splashes"], "captions_pred_video": ["a man and a woman cooking in a wok on the stove", "footage of a group of people riding horses through a river"], "captions_pred_audio": ["a woman is speaking while dishes are clanging and music is playing in the background ", "water splashes and gurgles as people speak"], "question": "which entity is about a person", "label": 0}, {"captions": ["a consistent ticking pattern", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sCeWURVHfOM", "sSMl2vc3ek"], "start_seconds": ["30", "20"], "properties": ["ticking, pattern, clock", "loud, multiple, distance"], "captions_pred_video": ["- a close-up view of the clock's inner workings", null], "captions_pred_audio": ["ticking of a clock", "a person snoring loudly"], "question": "which entity is not a clock?", "label": 1}, {"captions": ["people converse in the distance as a clock ticks", "small dogs growl, bark and yip."], "sample_ids": ["vZAw4apG0Es", "sShpyu2l4YQ"], "start_seconds": ["30", "0"], "properties": ["people, clock, converse", "growl, bark, yip"], "captions_pred_video": ["a clock made out of wood and gears with birds on top of it", "the puppies are playing with a toy"], "captions_pred_audio": ["a clock is ticking and people are talking", "a dog is barking and growling"], "question": "which entity is more active", "label": 1}, {"captions": ["a man speaks and wind blows as an aircraft engine becomes louder", "a toilet flushes and a female speaks"], "sample_ids": ["sofxkNWaP0s", "yaln9y8I7ms"], "start_seconds": ["30", "230"], "properties": ["wind, engine, louder", "female, flushes, toilet"], "captions_pred_video": ["of the airplane taking off from the runway with the speed limit sign in the foreground", "footage is blurry and out of focus"], "captions_pred_audio": ["a man is speaking while a jet engine roars in the background ", "a toilet flushes and a man speaks"], "question": "which entity is a bathroom?", "label": 1}, {"captions": ["a car speeds away loudly followed by a car revving loudly and driving away while outside", "three men talk while wind blows and some liquid flows"], "sample_ids": ["sjlVMgdGSK0", "vJ7JPEFhyLA"], "start_seconds": ["30", "16"], "properties": ["car, revving, loudly", "three men, wind, flow"], "captions_pred_video": ["a 1965 ford falcon drag racing at 100mph on a 1/8 mile track", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["a car accelerates and revs its engine ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is not a car?", "label": 1}, {"captions": ["a small airplane approaches and then flies by, after and during which a boy speaks", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["zj2R0XoFr5k", "su6FAOcOA8c"], "start_seconds": ["50", "4"], "properties": ["airplane, boy, fly", "engine, idle, woman"], "captions_pred_video": ["footage of a small airplane flying in the sky stock videos and royalty-free footage", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a woman speaks while a helicopter flies overhead ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["a person is snoring while sleeping", "a frog croaks as other frogs croak in the background"], "sample_ids": ["vJrjSeP17yE", "yswmmRZFItk"], "start_seconds": ["40", "0"], "properties": ["a person is sleeping, snoring, person", "background, frog, croak"], "captions_pred_video": ["a black background with a small plane flying in the sky", "a close up of a frog in the water"], "captions_pred_audio": ["a person snoring loudly", "a frog is croaking"], "question": "which entity is a croaker", "label": 1}, {"captions": ["a vehicle engine revs and tires squeal", "an airplane engine spools and people speak"], "sample_ids": ["yDoT73BWsdA", "wTjoRj1se3U"], "start_seconds": ["10", "390"], "properties": ["engine revs, tires squeal, vehicle", "airplane, engine, spool"], "captions_pred_video": ["a man driving a race car with a helmet on the steering wheel", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a race car accelerates and revs its engine ", "a jet engine is running and people are talking"], "question": "which entity is a vehicle", "label": 0}, {"captions": ["multiple beeps are followed by a squawk and a child speaking", "a man speaks as a car is passing by"], "sample_ids": ["w34HjHr6gAY", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["beeps, squawk, child speaking", "a, car, pass"], "captions_pred_video": ["the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz 1995 the wizard of oz", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["a beep sounds followed by a child speaking", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a man speaking to a car?", "label": 1}, {"captions": ["birds chirp and objects are moved around", "three men talk while wind blows and some liquid flows"], "sample_ids": ["yPUYU6t3rwo", "vJ7JPEFhyLA"], "start_seconds": ["370", "16"], "properties": ["birds chirp, objects are moved around, birds", "three men, wind, flow"], "captions_pred_video": ["footage and stock-footage/b-roll of a beekeeper opening a beehive", "a man in a red shirt paddling a kayak in the water"], "captions_pred_audio": ["insects buzz and a man speaks", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is about moving objects around", "label": 0}, {"captions": ["a machine beeps continuously", "a gun shoots, followed by water sloshing nearby"], "sample_ids": ["y682ml90jGw", "wDVMhEdTiVw"], "start_seconds": ["11", "30"], "properties": ["beeps, machine, continuously", "gun, shoot, water"], "captions_pred_video": [null, "a blurry image of trees and water in the forest"], "captions_pred_audio": ["a beeping sound is being made ", "a gun is fired followed by splashing and a person sneezing"], "question": "which entity is more likely to be used in a war", "label": 1}, {"captions": ["people speaking indiscriminately in the distance with a person snoring loudly nearby", "a duck quacks loudly and continuously"], "sample_ids": ["w2JXXIAdUdg", "vh30P49Po6s"], "start_seconds": ["10", "30"], "properties": ["snoring, distance, person", "loud, continuous, quacks"], "captions_pred_video": ["a close up shot of a person's mouth with a toothbrush in it", "of a man brushing his teeth with a toothbrush in his mouth"], "captions_pred_audio": ["a person snoring and a dog whimpering", "a duck is quacking loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a man speaks followed by another man speaking outside"], "sample_ids": ["zNRChLjqcU", "viuTg1M-dqg"], "start_seconds": ["220", "30"], "properties": ["water, faucet, run", "two men, speak, follow"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["water is running from a faucet into a sink", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a video of two men speaking?", "label": 1}, {"captions": ["a vehicle engine runs while a woman makes an announcement", "a train horn blows as it passes by"], "sample_ids": ["su6FAOcOA8c", "zVacuqSb4LI"], "start_seconds": ["4", "30"], "properties": ["engine, run, woman", "horn, blows, train"], "captions_pred_video": ["shows a group of people riding on a crowded subway train", "by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by mike amstong a video by"], "captions_pred_audio": ["a woman is speaking and a subway train is moving ", "a train whistle blows and a train passes by with a whistle blowing "], "question": "which entity is a vehicle?", "label": 0}, {"captions": ["a baby cries and fusses, a woman speaks, and a man speaks", "several insects fly while two men talk"], "sample_ids": ["wyllXV6PjKo", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["a baby, a woman, a man", "several, fly, men"], "captions_pred_video": [null, "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a woman speaks and a baby cries", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more people", "label": 0}, {"captions": ["a man speaks as a car is passing by", "several insects fly while two men talk"], "sample_ids": ["sK4u5T8hW78", "s-T9OVOiMLo"], "start_seconds": ["30", "330"], "properties": ["a, car, pass", "several, fly, men"], "captions_pred_video": ["for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking with background noise and breathing sounds ", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more moving parts", "label": 1}, {"captions": ["people speak in a closed space", "a man speaks on a radio as wind blows"], "sample_ids": ["sTpirNYo8vQ", "tDVADusiIoc"], "start_seconds": ["30", "60"], "properties": ["people, space, speak", "man, radio, blows"], "captions_pred_video": ["of a man taking a selfie on a bus", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a man is speaking while a car is revving and accelerating ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is in a closed space", "label": 0}, {"captions": ["a man speaks as birds chirp and a vehicle passes nearby", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["siJFXfGWgDk", "wz7N8YRy74I"], "start_seconds": ["50", "30"], "properties": ["a, bird, vehicle", "rooster, crow, background, men"], "captions_pred_video": ["footage of a beekeeper working with bees in a beehive", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking and birds are chirping in the background ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a bird in it?", "label": 0}, {"captions": ["a horn blasts as warning bells ring", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["zgUgkpk78xU", "tiDFTC-5vU"], "start_seconds": ["70", "30"], "properties": ["horn, bells, ring", "male, duck, laugh"], "captions_pred_video": ["of a train passing through a small town on a sunny day at 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 1080p 60fps 108", null], "captions_pred_audio": ["a train blows its horn as it speeds down the tracks ", "a man is speaking and ducks are quacking"], "question": "which entity is a warning", "label": 0}, {"captions": ["water splashing and wind blowing as a powerful engine roars", "water drips and bubbles as a man speaks"], "sample_ids": ["yZmhM1HcsyE", "vSeGhaZt-aI"], "start_seconds": ["4", "50"], "properties": ["engine, roar, water", "water, bubbles, speak"], "captions_pred_video": ["footage of a speedboat on a lake with water spraying from the back of the boat", "a man in a kitchen preparing a smoothie with a blender"], "captions_pred_audio": ["a motorboat speeds through water with wind noise in the background ", "a man is speaking and pouring liquid with background noise "], "question": "which entity is more calm", "label": 1}, {"captions": ["a man talks while metallic objects are rapped and steam is released", "several insects fly while two men talk"], "sample_ids": ["vuUVPzd2FXw", "s-T9OVOiMLo"], "start_seconds": ["160", "330"], "properties": ["a, steam, release", "several, fly, men"], "captions_pred_video": ["of the person cooking on the grill with a spatula", "a man climbing up a tree using a rope to reach the top of the tree"], "captions_pred_audio": ["a man is speaking and dishes are clanging", "a man is speaking while insects are buzzing in the background "], "question": "which entity has more flying insects", "label": 1}, {"captions": ["a loud snarling engine is followed by a man laughing", "a baby laughs giddily and a woman laughs then speaks"], "sample_ids": ["zl9Dqx-j7q4", "wjsXBsc7M40"], "start_seconds": ["6", "10"], "properties": ["engine, laugh, loud", "a baby laughs, a woman laughs, a woman speaks"], "captions_pred_video": ["footage of a man driving a car in the dark", "footage of the baby playing with a toothbrush"], "captions_pred_audio": ["a jet engine roars ", "a baby laughs and a woman speaks"], "question": "which entity is a human", "label": 1}, {"captions": ["a door opens and birds chirp", "a man speaks as a car is passing by"], "sample_ids": ["yeFvk9x0wWI", "sK4u5T8hW78"], "start_seconds": ["30", "30"], "properties": ["door, open, birds", "a, car, pass"], "captions_pred_video": ["a mouse in a cage on the sidewalk in front of a fence", "for 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai accent 1 6l 2007 hyundai"], "captions_pred_audio": ["birds chirp in the background as a car drives by ", "a man is speaking with background noise and breathing sounds "], "question": "which entity is a person", "label": 1}, {"captions": ["people converse as a motor runs and air brakes hiss", "television program is played far away while a woman talks and birds tweet nearby"], "sample_ids": ["zFjIWfSD-4", "vbZ-0lGPneg"], "start_seconds": ["410", "30"], "properties": ["People, motor, brakes", "a woman, a television program, a bird"], "captions_pred_video": [null, "of a man holding a baby duck in his hands"], "captions_pred_audio": ["a man is speaking while a car is driving and a ticking sound is heard ", "a woman is speaking and a dog is whimpering"], "question": "which entity has a bird?", "label": 1}, {"captions": ["bees buzz as wind blows", "a woman talks while something is fried and objects are tapped"], "sample_ids": ["tMJne1a4AFI", "yajyRTUQk3U"], "start_seconds": ["0", "400"], "properties": ["bees, buzz, wind", "a woman, something, fried"], "captions_pred_video": ["a swarm of bees on the ground", "- a woman cooking in the kitchen"], "captions_pred_audio": ["a swarm of bees buzzing around", "a woman is speaking while food is frying in the background"], "question": "which entity is a person", "label": 1}, {"captions": ["people speak softly as food sizzles", "an airplane engine spools and people speak"], "sample_ids": ["yhQ2Lg-7qDY", "wTjoRj1se3U"], "start_seconds": ["130", "390"], "properties": ["food, sizzle, speak", "airplane, engine, spool"], "captions_pred_video": ["a pan filled with meat and sauce being cooked on a stove top", "footage of a man playing with a remote control airplane in a field"], "captions_pred_audio": ["a faucet is running and a man is speaking", "a jet engine is running and people are talking"], "question": "which entity is about a plane?", "label": 1}, {"captions": ["music plays and a woman speaks on a radio before gunshots are fired", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["xKB8O8LTs6s", "tDlysoZiA1I"], "start_seconds": ["70", "0"], "properties": ["music, radio, gunshots", "animal, grunts, chirps"], "captions_pred_video": ["in your own words a screenshot of the game's loading screen", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["music plays while a woman speaks and gunshots are fired ", "birds are chirping and a rooster is crowing "], "question": "which entity is more quiet", "label": 1}, {"captions": ["dogs barking and whimpering", "a person is snoring while sleeping"], "sample_ids": ["tIY7qOV3rEM", "vJrjSeP17yE"], "start_seconds": ["0", "40"], "properties": ["barking, whimpering, dog", "a person is sleeping, snoring, person"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "a black background with a small plane flying in the sky"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a person snoring loudly"], "question": "which entity is a person", "label": 1}, {"captions": ["a girl speaks followed by a scream and more girls talking", "music plays and someone speaks before gunfire and an explosion occurs"], "sample_ids": ["uYT5gxnyMWM", "xKB8O8LTs6s"], "start_seconds": ["50", "70"], "properties": ["a, scream, girl", "music, gunfire, explosion"], "captions_pred_video": ["footage of a person spraying paint on the ceiling", "in your own words a screenshot of the game's loading screen"], "captions_pred_audio": ["a woman is speaking and a baby is crying", "music plays while a woman speaks and gunshots are fired "], "question": "which entity has more gunfire", "label": 1}, {"captions": ["birds chirp and an insect buzzes around", "people converse as a motor runs and air brakes hiss"], "sample_ids": ["t97k0cejSQE", "zFjIWfSD-4"], "start_seconds": ["250", "410"], "properties": ["bird, chirp, insect", "People, motor, brakes"], "captions_pred_video": ["a bee on a purple thistle flower", null], "captions_pred_audio": ["a bee buzzes and a woman speaks", "a man is speaking while a car is driving and a ticking sound is heard "], "question": "which entity is more likely to be in a car", "label": 1}, {"captions": ["a motor slows to a stopover traffic noises", "a woman speaks as she rubs two objects together"], "sample_ids": ["zofjfKhqLk8", "vzxHnu-SFEw"], "start_seconds": ["10", "80"], "properties": ["noise, stop, motor", "two objects, woman, speak"], "captions_pred_video": ["footage of a man using a machine to cut a piece of wood", "how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to make a paper cup with scissors youtube how to"], "captions_pred_audio": ["a large engine is running and a bell is ringing", "a woman is speaking and breathing with mechanisms in the background "], "question": "which entity is a person", "label": 1}, {"captions": ["a muffled toilet flushes and the water drains", "dishes cling together then a man begins to speak"], "sample_ids": ["sfAvvZwdLCY", "sQGXqGcwOTc"], "start_seconds": ["20", "3"], "properties": ["flushes, drains, water", "cling, speak, dishes"], "captions_pred_video": ["footage of the toilet in the bathroom", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a toilet is flushed", "mechanisms are operating and water is splashing "], "question": "which entity is about water?", "label": 0}, {"captions": ["a man speaks on a radio as wind blows", "a series of light horn beeps is followed by a loud steam whistle"], "sample_ids": ["tDVADusiIoc", "wnpJndXuxLc"], "start_seconds": ["60", "50"], "properties": ["man, radio, blows", "beeps, loud, whistle"], "captions_pred_video": ["a person riding on the back of a sailboat in rough seas", "footage of the train coming down the tracks on a snowy day"], "captions_pred_audio": ["a man is speaking while the wind is blowing and water is splashing", "a steam whistle blows and a train moves with wind noise in the background "], "question": "which entity is louder", "label": 1}, {"captions": ["wind blows and a vehicle blows a hard then a train blows a horn", "a car accelerates and wind blows"], "sample_ids": ["wnpJndXuxLc", "u0TrcHhkPQ"], "start_seconds": ["50", "20"], "properties": ["blows, vehicle, train", "accelerates, wind, blows"], "captions_pred_video": ["footage of the train coming down the tracks on a snowy day", null], "captions_pred_audio": ["a steam whistle blows and a train moves with wind noise in the background ", "a race car accelerates and revs its engine "], "question": "which entity is moving", "label": 1}, {"captions": ["goats bleat and metal clings", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["tH17JPjDPnc", "tiDFTC-5vU"], "start_seconds": ["260", "30"], "properties": ["bleat, metal, clings", "male, duck, laugh"], "captions_pred_video": ["feed of the goats eating hay in the barn", null], "captions_pred_audio": ["a cow is mooing and mechanisms are ticking ", "a man is speaking and ducks are quacking"], "question": "which entity is a person speaking?", "label": 1}, {"captions": ["a man speaks and a rooster crows while men talk in the background", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["wz7N8YRy74I", "wz7N8YRy74I"], "start_seconds": ["30", "30"], "properties": ["rooster, crow, background, men", "rooster, crow, background, men"], "captions_pred_video": ["footage of the sun shining through the clouds on a cloudy day", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking birds are chirping and a rooster is crowing ", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity has a rooster crow while men talk in the background?", "label": 0}, {"captions": ["a crowd yells, reacts and applauds", "a man speaks as a motor runs in the background"], "sample_ids": ["wztCSUxOf8", "xZepNM9qcRA"], "start_seconds": ["130", "30"], "properties": ["a crowd, yells, applauds", "background, motor, run"], "captions_pred_video": [null, "a close-up view of the motorcycle's engine and exhaust system"], "captions_pred_audio": ["a man is speaking and a crowd is clapping", "a man speaks while a motorcycle revs and accelerates "], "question": "which entity is silent", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a man speaks on a radio as wind blows"], "sample_ids": ["zl9Dqx-j7q4", "tDVADusiIoc"], "start_seconds": ["6", "60"], "properties": ["motors rev, laugh, loudly", "man, radio, blows"], "captions_pred_video": ["footage of a man driving a car in the dark", "a person riding on the back of a sailboat in rough seas"], "captions_pred_audio": ["a jet engine roars ", "a man is speaking while the wind is blowing and water is splashing"], "question": "which entity is a man speaking on a radio?", "label": 1}, {"captions": ["women speak as water runs briefly, children call out, and a man speaks", "a vehicle engine accelerating then running on idle"], "sample_ids": ["uRExseg-0XI", "vYkA3cfXp5Q"], "start_seconds": ["210", "30"], "properties": ["woman, man, water", "engine, accelerate, idle"], "captions_pred_video": ["stock footage or video footage of a person stirring a pot on a stove with a long-handled wooden spoon", "footage of a car driving down the street on a sunny day"], "captions_pred_audio": ["a man is speaking while water is running and birds are chirping ", "an engine is idling"], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a bird chirps in response to a woman chirping for the birds", "a person is burping while a girl speaks"], "sample_ids": ["uOpoD0gGXcs", "vdoxuJn9lTc"], "start_seconds": ["120", "40"], "properties": ["chirps, woman, bird", "person, burp, girl"], "captions_pred_video": ["a herd of cows grazing in the field", "a group of young girls playing a video game together in a living room"], "captions_pred_audio": ["birds are chirping and a man is speaking", "a child speaks followed by a burp"], "question": "which entity is a person?", "label": 1}, {"captions": ["birds chirp as a bell rings", "a clock ticktocks"], "sample_ids": ["ziUT9IFTkjg", "v-g-j2uTByM"], "start_seconds": ["10", "30"], "properties": ["chirp, bell, ring", "ticktocks, clock, ticktocks"], "captions_pred_video": [null, "in your own words a cuckoo clock hanging on the wall"], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a clock is ticking loudly"], "question": "which entity is silent", "label": 1}, {"captions": ["a stream of water runs briefly", "a bus engine idles while a woman speaks making an announcement"], "sample_ids": ["x-PeY8Yb8M4", "su6FAOcOA8c"], "start_seconds": ["300", "4"], "properties": ["stream, water, run", "engine, idle, woman"], "captions_pred_video": ["a man sitting on a rock in the middle of a river", "shows a group of people riding on a crowded subway train"], "captions_pred_audio": ["a car is driving on a wet road ", "a woman is speaking and a subway train is moving "], "question": "which entity is stationary", "label": 1}, {"captions": ["someone whistles a song", "an infant crying as a woman laughs"], "sample_ids": ["sIXTftIuUgw", "xhmRY9yhC7c"], "start_seconds": ["90", "20"], "properties": ["someone, song, whistle", "a, laugh, infant"], "captions_pred_video": [null, "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a person whistling a song", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["dishes cling together then a man begins to speak", "water flows and trickles"], "sample_ids": ["sQGXqGcwOTc", "tB7hWb9gTuQ"], "start_seconds": ["3", "30"], "properties": ["cling, speak, dishes", "water, flow, trickle"], "captions_pred_video": ["a man washing dishes in a commercial kitchen", "the rocks on the beach are surrounded by water and the sky is visible in the background"], "captions_pred_audio": ["mechanisms are operating and water is splashing ", "water is splashing and gurgling"], "question": "which entity is a liquid", "label": 1}, {"captions": ["small dogs growl, bark and yip.", "a train whistle keeps going off while the clickety-clack of the train on the rails are continuous"], "sample_ids": ["sShpyu2l4YQ", "ukg5L09Wpvo"], "start_seconds": ["0", "150"], "properties": ["growl, bark, yip", "clickety-clack, train, whistle"], "captions_pred_video": ["the puppies are playing with a toy", "footage of a train passing through a forest on a dirt road"], "captions_pred_audio": ["a dog is barking and growling", "a train blows its whistle and blows its horn "], "question": "which entity is a train", "label": 1}, {"captions": ["a small engine spits as it runs", "a harsh wind blows as a man speaks and another man speaks"], "sample_ids": ["sZvwOuuPGP0", "y8WEcpOlT3I"], "start_seconds": ["50", "40"], "properties": ["spits, engine, runs", "harsh, wind, blows"], "captions_pred_video": ["of a bulldozer clearing a road in a forest stock footage and royalty-free videos", "on how to use a sewing machine youtube"], "captions_pred_audio": ["a medium engine is running ", "a man is speaking with wind noise in the background "], "question": "which entity is not a person?", "label": 0}, {"captions": ["a baby laugh at a sputter", "a small airplane approaches and then flies by, after and during which a boy speaks"], "sample_ids": ["sLUnaPT5gM8", "zj2R0XoFr5k"], "start_seconds": ["0", "50"], "properties": ["laugh, sputter, baby", "airplane, boy, fly"], "captions_pred_video": ["of a baby laying on his stomach in a blue shirt and diaper", "footage of a small airplane flying in the sky stock videos and royalty-free footage"], "captions_pred_audio": ["a baby is laughing and breathing while a man is speaking ", "a woman speaks while a helicopter flies overhead "], "question": "which entity is a video", "label": 1}, {"captions": ["a train engine runs and a horn blows", "a male speaks and another male speaks"], "sample_ids": ["zPX9o1uDiI", "viuTg1M-dqg"], "start_seconds": ["40", "30"], "properties": ["engine, horn, run", "two males, speaking, male"], "captions_pred_video": [null, "footage of water coming out of a hole in the ground"], "captions_pred_audio": ["a train moves with its horn blowing and wheels squealing ", "a man is speaking with background noise and breathing sounds "], "question": "which entity has more than one speaker", "label": 1}, {"captions": ["leaves rustle while man speaks", "an infant crying as a woman laughs"], "sample_ids": ["zOZleIRqZm4", "xhmRY9yhC7c"], "start_seconds": ["80", "20"], "properties": ["leaves, rustle, speak", "a, laugh, infant"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "of a baby crying in a baby bouncer"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a baby cries and a woman speaks"], "question": "which entity is a person", "label": 1}, {"captions": ["television program is played far away while a woman talks and birds tweet nearby", "paper folding and crinkling"], "sample_ids": ["vbZ-0lGPneg", "zPpG3RD8lSs"], "start_seconds": ["30", "20"], "properties": ["a woman, a television program, a bird", "paper, fold, crinkle"], "captions_pred_video": ["of a man holding a baby duck in his hands", "how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's day card out of a piece of paper youtube how to make a valentine's"], "captions_pred_audio": ["a woman is speaking and a dog is whimpering", "the wind blows and a mouse clicks "], "question": "which entity is a demonstration of folding and crinkling?", "label": 1}, {"captions": ["motors rev and run loudly as a person laughs", "a toilet flushes and water drains unevenly"], "sample_ids": ["zl9Dqx-j7q4", "vhJWZheqaE"], "start_seconds": ["6", "0"], "properties": ["motors rev, laugh, loudly", "water drains unevenly, toilet flushes, water drains"], "captions_pred_video": ["footage of a man driving a car in the dark", null], "captions_pred_audio": ["a jet engine roars ", "a toilet is flushed"], "question": "which entity is a toilet?", "label": 1}, {"captions": ["running water in a faucet with some clinks", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["zNRChLjqcU", "w5W5Kqtc8E"], "start_seconds": ["220", "100"], "properties": ["water, faucet, run", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["water is running from a faucet into a sink", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is a vehicle?", "label": 1}, {"captions": ["a man speaks then blows a vehicle horn as wind blows", "dishes cling together then a man begins to speak"], "sample_ids": ["zALy31PjDl0", "sQGXqGcwOTc"], "start_seconds": ["21", "3"], "properties": ["a man, a vehicle, a horn", "cling, speak, dishes"], "captions_pred_video": ["a motorcycle is parked on the side of a brick walkway", "a man washing dishes in a commercial kitchen"], "captions_pred_audio": ["a man is speaking and a car horn is honking", "mechanisms are operating and water is splashing "], "question": "which entity is about a man speaking?", "label": 0}, {"captions": ["a jet engine screams, then increases its power", "a car accelerates and wind blows"], "sample_ids": ["vBslzh7saPw", "u0TrcHhkPQ"], "start_seconds": ["90", "20"], "properties": ["power, scream, increase", "accelerates, wind, blows"], "captions_pred_video": ["a pickup truck carrying a large object down the road", null], "captions_pred_audio": ["a jet engine roars and accelerates ", "a race car accelerates and revs its engine "], "question": "which entity is moving faster", "label": 1}, {"captions": ["a motor vehicle roars, drowning out people speaking in the background", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["s4Uz1Ffgo04", "vfYTJq7nU"], "start_seconds": ["100", "130"], "properties": ["roars, background, people speaking", "rustling, ducks, quack"], "captions_pred_video": ["footage of an ambulance arriving at the scene of an accident", null], "captions_pred_audio": ["a man is speaking while a boat is moving and wind is blowing ", "a duck quacks and a woman speaks"], "question": "which entity is more quiet", "label": 1}, {"captions": ["leaves rustling followed by a small bell chiming as birds chirp in the background", "a vehicle engine runs and wind blows before women yell"], "sample_ids": ["ziUT9IFTkjg", "w5W5Kqtc8E"], "start_seconds": ["10", "100"], "properties": ["background, birds, rustling", "wind, blow, vehicle"], "captions_pred_video": [null, null], "captions_pred_audio": ["birds are chirping and a chime is ringing ", "a motorboat is moving and people are shouting and cheering "], "question": "which entity is about a vehicle engine running and wind blowing?", "label": 1}, {"captions": ["insects humming with a dog barking and small goat bleating", "wind blows as people chatter quietly"], "sample_ids": ["tIY7qOV3rEM", "xBxDz0CFVn0"], "start_seconds": ["0", "30"], "properties": ["animal, bark, dog, barking, small, goat, bleating", "wind, chatter, people"], "captions_pred_video": ["a dog is standing in the middle of a dirt road in the woods", "footage is blurry and out of focus"], "captions_pred_audio": ["a dog is barking and a cat is meowing", "a man is speaking with wind noise in the background "], "question": "which entity is quieter", "label": 1}, {"captions": ["a toilet flushes and water drains", "a person snores loudly multiple times at a close distance"], "sample_ids": ["sfAvvZwdLCY", "sSMl2vc3ek"], "start_seconds": ["20", "20"], "properties": ["water drains, flushes, water", "loud, multiple, distance"], "captions_pred_video": ["footage of the toilet in the bathroom", null], "captions_pred_audio": ["a toilet is flushed", "a person snoring loudly"], "question": "which entity is louder", "label": 1}, {"captions": ["people clap and speak in the distance", "music plays, a person speaks, followed by whooshes and a ding"], "sample_ids": ["wwyfGO2J4", "tQWGZLItBXk"], "start_seconds": ["90", "170"], "properties": ["clap, distance, speak", "music, person, ding"], "captions_pred_video": [null, "worms revolution screenshots"], "captions_pred_audio": ["people are clapping and speaking with background noise ", "a child speaks music plays video game sounds sound effects and sound effects play "], "question": "which entity has a person speaking?", "label": 1}, {"captions": ["a woman talks while something is fried and objects are tapped", "rustling occurs, ducks quack and water splashes, followed by an adult female and adult male speaking and duck calls being blown"], "sample_ids": ["yajyRTUQk3U", "vfYTJq7nU"], "start_seconds": ["400", "130"], "properties": ["a woman, something, fried", "rustling, ducks, quack"], "captions_pred_video": ["- a woman cooking in the kitchen", null], "captions_pred_audio": ["a woman is speaking while food is frying in the background", "a duck quacks and a woman speaks"], "question": "which entity is about a woman talking?", "label": 0}, {"captions": ["several ducks quack and cocks crow far away", "various birds chirp and squeal, and an animal grunts"], "sample_ids": ["sNB8zxXneIM", "tDlysoZiA1I"], "start_seconds": ["20", "0"], "properties": ["several, quack, cocks", "animal, grunts, chirps"], "captions_pred_video": ["a group of geese in a cage", "'s main subject is a dog standing on top of a laptop"], "captions_pred_audio": ["a rooster is crowing and wind is blowing ", "birds are chirping and a rooster is crowing "], "question": "which entity is more animal-like", "label": 1}, {"captions": ["leaves rustle while man speaks", "a man speaks and a rooster crows while men talk in the background"], "sample_ids": ["zOZleIRqZm4", "wz7N8YRy74I"], "start_seconds": ["80", "30"], "properties": ["leaves, rustle, speak", "rooster, crow, background, men"], "captions_pred_video": ["a person picking berries from the bushes in the garden", "footage of the sun shining through the clouds on a cloudy day"], "captions_pred_audio": ["a man is speaking with crickets chirping in the background", "a man is speaking birds are chirping and a rooster is crowing "], "question": "which entity is more likely to be in a farm setting", "label": 1}, {"captions": ["several insects fly while two men talk", "a male is speaking and a duck quacks as others laugh"], "sample_ids": ["s-T9OVOiMLo", "tiDFTC-5vU"], "start_seconds": ["330", "30"], "properties": ["several, fly, men", "male, duck, laugh"], "captions_pred_video": ["a man climbing up a tree using a rope to reach the top of the tree", null], "captions_pred_audio": ["a man is speaking while insects are buzzing in the background ", "a man is speaking and ducks are quacking"], "question": "which entity has more people", "label": 1}, {"captions": ["various birds chirp and squeal, and an animal grunts", "someone whistles a tune"], "sample_ids": ["tDlysoZiA1I", "sIXTftIuUgw"], "start_seconds": ["0", "90"], "properties": ["animal, grunts, chirps", "someone, tune, whistle"], "captions_pred_video": ["'s main subject is a dog standing on top of a laptop", null], "captions_pred_audio": ["birds are chirping and a rooster is crowing ", "a person whistling a song"], "question": "which entity is a human", "label": 1}] \ No newline at end of file diff --git a/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/objaverse_discrn.json b/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/objaverse_discrn.json new file mode 100644 index 000000000..66dcb5bfe --- /dev/null +++ b/lavis/configs/datasets/discriminatory_reasoning/discriminatory_dataset/objaverse_discrn.json @@ -0,0 +1 @@ +[{"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["house, tree, pool", "image, city, spoon"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, stairs, house", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["base material is wood, color is red, message is welcome to northwich", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, base, warning", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a small wooden house with a green roof."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["roof truss, insulation, suspended ceiling", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c8936ace72954650b4e2d84246964849"], "properties": ["yellow, table, roof", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with a roof"], "question": "which roof is the color of the house", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, number", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["red, mouse, handwriting", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["building, stairs, shelves", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, material, structure", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "f1b557775310478893242180defa4d80"], "properties": ["color, bench, rack", "shack, roof, door"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a house with a wooden-framed roof structure."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, material, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small wooden house with a green roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["fireplace, bench, log", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["background, color, white", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["55b26130f1514032be078e13fd982905", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, material", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a black and white image of a door with a crack in it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, base, slanted", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "20a02705a66f460492e07345e84a62ed"], "properties": ["chest of drawers, cabinet, white", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["white, top, writing", "grass, plants, rocks"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["two white 3d egg-shaped spheres.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["922b10ec49fa4b2eb43e257ff5b2b1ef", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["shape is egg-shaped, color is white, number is two", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white image of a pair of earrings", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white object on a grey background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building with many pillars"], "question": "which entity has a wooden structure", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Object, Table, Oranges", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a barrel and a cube together.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, barrel, cube", "s, laptop, printer"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a black and white image of an electronic device"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["floor, table, light", "throne, chair, building"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a house with a green, wooden-structured roof."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["structure, building, archway", "roof, color, green"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a house with a triangular roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small wooden house with a green roof."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["turrets, flags, towers", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, roof, tray", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a knife, blade, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["floor plan, bathroom, pool", "roof, air conditioner, house"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["building, fence, snowy", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a, booth, bed", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["white korean word on a gray background.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, background, font", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small white house with a roof."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["room, house, windows", "roof, color, white"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white?", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "f1b557775310478893242180defa4d80"], "properties": ["a, color, case", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e694d53545d449319a64cceb0280c3c6"], "properties": ["red, mouse, handwriting", "3d, slide, swing"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, structure, truss", "house, roof, green"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["flower, rock, tree stump", "lamp, harp, bowl"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of a harp in a white room"], "question": "which entity has a white bowl?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "402601779d1d4146b4cde106dfff1b27"], "properties": ["house, table, chair", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["building, skyscraper, city", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of an airplane", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- color is red, blue, pink", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a large metal building with a roof and truss structure."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "b85a99699ccd4bcba213322113bb253d"], "properties": ["paper, hole, mouse", "roof, truss, structure"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "of a metal grate on a white background"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- material is wood, metal, metal", "Headstock, Guitar, Head"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["image, building, painting", "house, tree, pool"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which image shows a house with a pool?", "label": 1}, {"captions": [" a white wall in an empty room.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3f6239bdb440449aba5a8eab6134dda1", "b896a0898efe4059a776193c02132129"], "properties": ["room, wall, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a fishing rod", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white wall in a room", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, material, texture", "color, background, white"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, tan, brown, orange", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, white, red, pink", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" of a house with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, house, roof", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with a blue roof.", " a small white barn with a metal roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, color, blue", "roof, metal, white"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, white, black, white", "building, floorplan, gym"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white building with two floors"], "question": "which entity is a floor plan of a gym?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, background, white", "wood, board, shelf"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a tv stand/shelf", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, text", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a building with dots"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["roof truss, insulation, suspended ceiling", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "e44009d33258425e8efedfbc6823bf70"], "properties": ["- color is white - shape is box - material is plastic", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white square with dots all over it", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["ceiling, light, desks", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small white building with stairs and a white table."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof trusses, beams, suspended ceiling", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " of a white plastic tube or metal bar, resembling a knife."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "8fd3836862a44a8d8b4d224bfc30c2c3"], "properties": ["a, hole, rock", "a knife, blade, handle"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a shelf with a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a piece of white plastic on a gray background"], "question": "which object is not a knife?", "label": 0}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["rusty, sink, graffiti", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["tiers, building, stairs", "apse, roof, floor plan"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a building in the shape of a pyramid"], "question": "which building has a flat roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["3D, toothpick, skateboard", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white map of the island of malta"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["color, white, red, pink", "room, staircase, bus"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d image of a building with a lot of debris"], "question": "which entity has more staircases", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["black, white, laptop", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "18e392c5360146eda498c5edab25b15c"], "properties": ["headboard, wall, strip", "frame, beams, trusses"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a building under construction"], "question": "which entity has a frame", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["structure, columns, roof", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a window", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["resembles, octopus, squid, spider, robot", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small house with a red roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["085db9059b744673b5623b5338e02196", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, red, house", "house, roof, green"], "captions_pred_pc": ["a black and white dotted square on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a four-legged metal workbench with shelves."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["red, eyes, rocket", "Four legs, Metal, Shelf"], "captions_pred_pc": ["of a black and white image of a clock", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, size", "table, stairs, ladder"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a table with a stool on top"], "question": "which object has a black base", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a white motorcycle with wings."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["shape is cube, color is black, white", "color, white, wings"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "6b745457e06840119058883b35f78f58"], "properties": ["metal, laptop, light fixture", "roof, color, blue"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, height", "image, color, white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["roof, ceiling, hole", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, roof, wall", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a building", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a house with a wooden-framed roof structure."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, poles", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with a roof"], "question": "which structure has a roof made of wood", "label": 1}, {"captions": [" a white cylinder with a blue light and ring around it.", " of two rocks with ice elements."], "sample_ids": ["f91e2e3340604001bd6ea2ab25886e46", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, light, ring", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a plastic sponge on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a clear plastic tube", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "096e42b466ec438d95c5d89a85191534"], "properties": ["shape is cylinder, color is white, material is plastic", "white, rock, shell"], "captions_pred_pc": ["of a spike on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["arm, jacket, mannequin", "meat, bread, sausage"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white barn with a metal roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "4ca3342a96824684845f7d0e062ab176"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a barn"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a person breaking through a brick wall."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, screen, drawer", "image, brick, wall"], "captions_pred_pc": ["above a black and white image of a brush", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a 3d printed model of a human skeleton foot and leg.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6eea1e2ab3f645f6a4670cccbc85c908", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white illustration of an owl in the shape of a heart", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the foot and ankle bones royalty free 3d model preview no.", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a white castle composed of small cubes."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["room, bed, desk", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, horns, features", "Eye color, Black, Purple"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "c8936ace72954650b4e2d84246964849"], "properties": ["chest of drawers, cabinet, white", "roof, color, pink"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["roof, truss, structure", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house with a blue roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, shape, and size", "roof, color, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of a barrel and a cube together."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["house, hill, forest", "a, barrel, cube"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", "a white of a house with a hole in the ceiling."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["bedroom, bathroom, bed", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, light, jewels", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, metal, white", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, material, shape", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a white 3d model of a city skyline"], "question": "which entity is a still image?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of a white tiled floor with a ceiling light and small holes."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "9906caefe141465990aacb312e1025f0"], "properties": ["floor, table, light", "light, floor, ceiling"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a white tile floor"], "question": "which floor is not tiled?", "label": 0}, {"captions": [" of a white chair with arms and legs.", "a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "e65de9c4ec9242679a45e74733f7d61d"], "properties": ["Arms, Legs, Color", "rusty, sink, graffiti"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a stainless steel toilet bowl on a pedestal"], "question": "which entity has more rusty elements", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a robotic warrior with a sword."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["backrest, curved, yes", "weapon, sword, robot"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small house on a hill in a field."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, staircase, table", "house, hill, field"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a brick wall with grass.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "a17477b445b3443189dad22f768b888b"], "properties": ["brick, grass, wall", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, platform, house", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, white, containers", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a small wooden house with a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["apse, roof, floor plan", "roof, house, wooden"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a small white building with stairs and a white table."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "e30374c614f54fdb90f35b96b071349d"], "properties": ["light, floor, ceiling", "building, stairs, table"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, base, slanted", "striped, white, black"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a clay pot with holes in it."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["hair, legs, wings", "hole, material, clay"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small white house with a roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["meat, bread, sausage", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a stone wall with a window and a clock."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["shape is hot dog, design is dragon, color is black", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a brick wall"], "question": "which object has a window?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["wall, stairs, castle", "stair, table, chair"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a staircase in a room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["roof, truss, lamp", "stair, table, chair"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a spiral staircase with railings."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["a box, a cup, a bottle, a jar", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a staircase in a room"], "question": "which object has railings", "label": 1}, {"captions": ["white wall lamp with a leaf design", " a white building with a red roof."], "sample_ids": ["7afad3ca209c4a91b5457d28bdc2b916", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["design, leaf, white", "color, white, roof, red"], "captions_pred_pc": ["above a black and white image of a circular object", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white wall sconce with a leaf design and a light bulb", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "b896a0898efe4059a776193c02132129"], "properties": ["color, light, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, holes", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, material is plastic, shape is bottle", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black circular object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a house with wooden framing and trusses."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, table, chairs", "frame, trusses, wood"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a purple chair with holes in it."], "sample_ids": ["b5afccae993346079483507296fbb029", "833151c8e0f4489a9fa966635a948452"], "properties": ["shape is square, material is metal, color is rusty", "color, purple, holes"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a white chair"], "question": "which object is made of holes", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["image is rock formation with a white cliff and a rock", "house, tree, hill"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house with a wooden-framed roof structure."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "c3a82df41875402285608ef13a55df57"], "properties": ["house, fence, dog", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["desk, chair, table", "a, building, coin, ball"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": ["a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1c389c8f46b345838e515b9747c1f982", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["plate, fruit, knife", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a hedgehog", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a person riding a skateboard on a wooden surface", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a bench and lamp post.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["A, bench, lamp post", "color, yellow, black"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white illustration of an airplane"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["building, roof, white, cubes", "building, plane, city"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a city in black and white"], "question": "which building has a white roof", "label": 0}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["polygonal, helmet, triangular details", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a four-legged metal workbench with shelves."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["text, material, shape", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["shape is sphere, color is white, material is plastic", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "an image of a white background with a few small cubes on it"], "question": "which object is whiter", "label": 0}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, red, blue, structure", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" a house with a green roof and lawn.", " a spiral staircase with a railing in a small building."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["roof, green, lawn", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, red, blue, green", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "c3a82df41875402285608ef13a55df57"], "properties": ["image, house, ceiling", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a balcony", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "a17477b445b3443189dad22f768b888b"], "properties": ["plane, ship, bird", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, red, blue, green", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "12093c89a60941e7884b252bdc05104c"], "properties": ["image is a sculpture of an angel on a wall", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a wooden staircase with a railing and table."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "956247bea850458199c651037d4b1d7f"], "properties": ["room, bed, desk", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small wooden house."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, color, pink", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a toilet", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "c3a82df41875402285608ef13a55df57"], "properties": ["house, roof, wooden", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small barn", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["two-story, roof, building", "roof, material, wood"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a building with a roof"], "question": "which building has a roof made of wood", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small house on a hill in a field."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, shape, texture", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["image, color, pink", "table, bench, deer"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a black and white image of a bench and table with a deer's head on the table"], "question": "which image has a deer head on it?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small white house with windows and a black lid."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "4b40af369c1149949f5ccb68becd8430"], "properties": ["a box, a cup, a bottle, a jar", "white, windows, lid"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a white house with three windows"], "question": "which object has a lid", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a building with yellow lines."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, red, pink", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house with a flat roof structure."], "sample_ids": ["d6087023095446fbadef1721478373b2", "abc52d210d71415296730bb00352ce6f"], "properties": ["door, roof, window", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a house with a roof"], "question": "which building has a flat roof", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a four-legged metal workbench with shelves."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["metal, rusted, paper", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["graffiti, chinese writing, door", "building, balcony, street"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" a small house with a blue roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, fence, snowy", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a table and chairs on a white background"], "question": "which building has a roof that is the color of yellow", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["rocky, rug, puddle", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a black and white image of an object on top of a pedestal"], "question": "which island has a fountain?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, base, warning", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a house with a wooden-framed roof structure."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, booth, bed", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a train, a ship, a boat", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" of a sword with a wooden handle.", " of a hammer with a long metal handle."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["handle, material, wood", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a black and white image of a sword with two blades", "a hammer with a wooden handle and metal head"], "question": "which handle is made of metal", "label": 1}, {"captions": [" of a house with a pink roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "6b745457e06840119058883b35f78f58"], "properties": ["color, roof, pink", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a house with a roof and beams."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "roof, beams, house"], "captions_pred_pc": ["a black mascara brush on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, bowl, green", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a clay pot with holes in it."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["shape is hot dog, design is dragon, color is black", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["resembles, toy, bookshelf", "color, shape, color"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a large orange pumpkin."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["black, white, laptop", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": ["3d white geometric shapes and paper clip.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8760487af6c748ac8111f09113a77b16", "c3a82df41875402285608ef13a55df57"], "properties": ["3D, white, paper clip", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed diamond shaped object on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, shape, material", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is white, material is plastic, shape is tube", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a broom on a stand", "of a black candle on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["bed, desk, window", "hat, skull, bread"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, roof, tray", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a white ornate airplane design.", " a house with a green, wooden-structured roof."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", " of an egyptian sarcophagus."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a, character, person", "sarcophagus, material, wood"], "captions_pred_pc": ["a 3d model of a person", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "modern tan leather lounge chair."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["color, shape, and size", "color, tan, leather"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a gray leather lounge chair with a metal base"], "question": "which entity is made of leather", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "e44009d33258425e8efedfbc6823bf70"], "properties": ["shape is cube, color is black, white", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "40022305eaf44442915c9db03e25f781"], "properties": ["- color is white- shape is cubes- number is 1", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 0}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, color, blue", "house, table, chair"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a large metal building with a roof and truss structure."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["red, mouse, handwriting", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a metal grate on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a small house on a hill in a field."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, framing, material", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a barn structure", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a large metal building with a roof and truss structure."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, black, white, handle, armrest", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["moss, mushroom, grass", "paper, hole, sign"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " of two rocks with ice elements."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, roof, yellow", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", "a pixelated-textured purple sphere ."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, poles", "texture, color, shape"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["building, color, yellow-green", "house, plane, town"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a house with a purple roof and glass block structure."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["water, river, island", "roof, color, purple"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building with a glass roof"], "question": "which entity has a roof that is the color purple", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a wooden staircase with a railing and table."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "956247bea850458199c651037d4b1d7f"], "properties": ["balcony, stairs, house", "railing, table, staircase"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a table with a staircase"], "question": "which staircase has a table", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a white of a man with arms outstretched."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["resembles, toy, bookshelf", "image, color, white"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house with a roof and beams."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor, wall, roof", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["screen, monitor, stand", "color, head, white and brown"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["earbuds, light, ring", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", "two white spheres in a ."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, chair, table, light", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a white ball on a gray background"], "question": "which object has a glass top", "label": 0}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, room, table", "island, terrain, water"], "captions_pred_pc": ["a black square on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["building, tree, plane", "building, roof, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building with a clock tower"], "question": "which building has a roof", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, green, squirt gun", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["- building is white, table is white, piles of paper are white", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 1}, {"captions": ["a 3d lego character wearing a black helmet, gloves, and holding a gun.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["f71842519d2f44ceb9fa57e0c0db4aa0", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- color is black- material is plastic- shape is 3d", "rusty, warning, metal"], "captions_pred_pc": ["a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a lego ninja turtle wearing a black helmet and gloves", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a four-legged metal workbench with shelves."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["mossy, rock, rocky", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with a green, wooden-structured roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, white, black, white", "roof, color, green"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house with a triangular roof"], "question": "which object has a green roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, material, texture", "wing, knife, boat"], "captions_pred_pc": ["a black and white image of a spider's head", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, table, ceiling", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, metal, white", "structure, columns, roof"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a green roof and lawn."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "84adcf124ee742a49f7b1fe2104e072d"], "properties": ["roof, purple, suspended", "roof, green, lawn"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a knife on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small apartment building royalty free 3d model preview no.2"], "question": "which roof is green", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, green, tiled", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, structure, wall", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a house with a roof structure and toothbrushes."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["resembles, octopus, squid, spider, robot", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof trusses, beams, suspended ceiling", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a wooden billiard table with legs."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a, booth, bed", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, gazebo, table", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a yellow bird with black eyes.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, height", "door, roof, pool"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a small white building with stairs and a lid."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof structure, truss, ceiling", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["a lamp, a syringe, a light pole", "building, color, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a bookshelf on a white background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, tree, rock", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, plane, small plane", "island, mountain, grass"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a white glass beer mug."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, number", "color, white, glass"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", " a small wooden house with a green roof."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["description, material, shape", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large building with a roof and windows.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, windows, building", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small white house with windows and a black lid."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "4b40af369c1149949f5ccb68becd8430"], "properties": ["shape is box, color is white, door is present", "white, windows, lid"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a white house with three windows"], "question": "which house has a black lid", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "d49d8ed244094349a99e4faca05e0690"], "properties": ["lighthouse, fountain, crater", "low poly, plant, white"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of a character wearing glasses and a hat."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["sandbox, sand bucket, wooden blocks", "hat, glasses, character"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["wood, board, shelf", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a table with a stool on top"], "question": "which object has more stairs", "label": 1}, {"captions": [" of a house with a roof.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["roof, house, roof", "image size, image, royalty"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" of a large gray sphere", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["size, color, shape", "a room, a cake, a table"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, model, luggage", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["color, shape, and size", "house, plane, town"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a damaged building"], "question": "which entity is a building?", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, blue", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "bf18bfd89efd43389781050230467d58"], "properties": ["shattered, resembles, broken phone", "Lights, number, five"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "bb01282cb8b64470866260455b0b46fa"], "properties": ["liquid, ice, lid", "liquid, ice, lid"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a plastic bottle on a white background"], "question": "which entity has a lid?", "label": 0}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", "a white of a man with arms outstretched."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["red, sphere, resembles", "image, color, white"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, light", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a black and gold pistol.", "a white of a gun."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "d7c12235efd1471db5b7145b63dbd11a"], "properties": ["color, black, gold", "color, white, gun"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a white object on a white background"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a white 3d model of a rifle on a gray background"], "question": "which gun is white", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof truss, insulation, suspended ceiling", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small house with a red roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "085db9059b744673b5623b5338e02196"], "properties": ["yellow, table, roof", "roof, red, house"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": [" of green circles with white dots on a gray background.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["af000148afb545819c8895a4a22f9afe", "c3a82df41875402285608ef13a55df57"], "properties": ["color, background, foreground", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a group of hats", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a group of white circles on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small orange piano with legs.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is orange, size is small, legs", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["screen, monitor, stand", "room, door, shelf"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a green, wooden-structured roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, grass, moss", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes.", " a wooden table with a plant on it."], "sample_ids": ["fa06167d83e54b05bdfbeeae2ca7c8a6", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, structure, roof", "table, plant, wood"], "captions_pred_pc": ["a black and white image of a map with dots", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many pillars", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, box, wall", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d rendering of a house on a rock"], "question": "which object has a boat?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["frame, trusses, wood", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a wooden windmill with a red roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["background, color, white", "roof, color, red"], "captions_pred_pc": ["a black line on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["background, color, white", "roof, structure, wall"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "c3a82df41875402285608ef13a55df57"], "properties": ["chair, table, refrigerator", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "c8936ace72954650b4e2d84246964849"], "properties": ["color, blue, green, yellow, blue", "roof, color, pink"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " of two rocks with ice elements."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["arm, jacket, mannequin", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small white building with a floor plan and ceiling light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "1df55bb7035941cc9829aa904e2af065"], "properties": ["color, table, ceiling", "floor plan, ceiling light, color"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a line of dots on a white background a line of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a white 3d model of a house"], "question": "which building has a floor plan?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, material", "resembles, toy, castle"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["lighthouse, fountain, crater", "lion, statue, fountain"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d image of a lion statue on a wall"], "question": "which fountain has a statue", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a house with a roof and beams."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["background, color, white", "roof, beams, house"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["room, door, shelf", "house, table, chair"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["a room, a cake, a table", "a, building, coin, ball"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["frame, truss, roof", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, pink, eyes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["white wall lamp with a leaf design", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7afad3ca209c4a91b5457d28bdc2b916", "a17477b445b3443189dad22f768b888b"], "properties": ["design, leaf, white", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a circular object", "a black and white image of a square with dots"], "captions_pred_image": ["a white wall sconce with a leaf design and a light bulb", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a building with blue metal framing and structure."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["frame, beams, trusses", "color, blue, structure"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building under construction"], "question": "which building has a blue metal framing and structure?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["resembles, octopus, squid, spider, robot", "ring, material, gold"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a white wedding band with the words strength in weakness engraved on it"], "question": "which object is made of gold", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a large steel building with a pool."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, stairs, house", "building material, pool, steel"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "e694d53545d449319a64cceb0280c3c6"], "properties": ["light switch, electrical outlet, furniture", "3d, slide, swing"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a white glass beer mug."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "1d686cbd3e9a4c629a43088658989286"], "properties": ["castle, island, house", "color, white, glass"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a white building with a red roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, green, lawn", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["moss, mushroom, grass", "house, rock, bird"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["screen, monitor, stand", "tv, chair, laptop"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["throne, chair, building", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof truss, beams, structure", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a wooden roof"], "question": "which entity has a wooden roof truss structure and ceiling with wood beams?", "label": 0}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, black, blue", "building, room, sky"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a wooden shed with a gray roof."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["- material is wood - color is white - height is 1.8 m", "roof, color, gray"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which is not made of wood", "label": 1}, {"captions": [" of a numbered rock.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["number, color, shape", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " of a white human skull with broken bone elements."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, material, shape", "color, white, skull"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a metal building with a purple roof and cage structure."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, air conditioner, house", "roof, purple, structure"], "captions_pred_pc": ["a black and white illustration of a window", "for a black and white image of a bench"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with a metal roof"], "question": "which building has a cage structure?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "c3a82df41875402285608ef13a55df57"], "properties": ["color, yellow, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a large metal building with a roof and truss structure."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, pier, stairway", "roof, truss, structure"], "captions_pred_pc": ["above a black and white illustration of an open door", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a long metal fence"], "question": "which structure has a roof and truss structure", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, background", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of a metal rod", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a small white building with stairs and a white table."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["light source, fixture, color", "building, stairs, table"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a building with a staircase"], "question": "which entity is whiter", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " of two rocks with ice elements."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bedside table, wheels, white", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a house with a flat roof structure."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, shape, and material", "roof, flat, structure"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a house with a roof"], "question": "which entity is made of a material that is not food", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white sofa, chair, and box."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "4c59733ebd634594a921b7ace60e4142"], "properties": ["room, door, shelf", "sofa, chair, box"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a white and blue building with a black roof.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, blue, roof, black", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a pixelated-textured purple sphere ."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "fb68393941804e769d5c9b372864a642"], "properties": ["color, material, texture", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a gray sphere on a white background"], "question": "which entity has a texture that is pixelated?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "bf18bfd89efd43389781050230467d58"], "properties": ["low poly, llama, kangaroo", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small, snow-covered house."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, metal, white", "house, snow, cover"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a piece of broken glass on a white background"], "question": "which building is covered in snow", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["size, color, shape", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, white, logo", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, material, shape", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", "a white of a woman with her arms outstretched."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, yellow, roof, metal", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a large white and metal building with a metal roof structure."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, color, white", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a bench", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, green, handle", "axe, handle, wood"], "captions_pred_pc": ["of a small black object on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a knife on a white background"], "question": "which object has a handle", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a brick building with a roof structure and roof truss."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "84e8acad28664a738df69d719df9e263"], "properties": ["screen, keyboard, box", "roof, structure, truss"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a white of a city with buildings and a gold spoon.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["2351471a2d2145c59fec5f68ffae4816", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["image, city, spoon", "image, city, spoon"], "captions_pred_pc": ["a black and white image of a diamond shaped piece of fabric", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a city skyline in white", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 0}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["box, paper clip, lock", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, truss, lamp", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a green circuit board."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, light", "color, green, circuit board"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "of the item in the image"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large metal building with a roof and truss structure."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "b85a99699ccd4bcba213322113bb253d"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a house", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a long metal fence"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["rusty, sink, graffiti", "paper, hole, sign"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["Drawer, Handle, Wood", "glass, metal, balls"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a clear acrylic foosball table"], "question": "which table has more metal", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " of two rocks with ice elements."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, bowl, green", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a small white building with stairs and a lid."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["background, color, white", "building, stairs, lid"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a pink, ear-shaped object."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["- material is plastic- shape is dice- color is white", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a purple and green sphere.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["house, roof, green", "metal, cross, clock"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, roof, wooden", "house, fence, dog"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, roof, balcony", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a large metal building with a roof and truss structure."], "sample_ids": ["40921ffd69db479294554d261daf3035", "b85a99699ccd4bcba213322113bb253d"], "properties": ["floor, railing, staircase", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a computer screen", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a robot head with a helmet.", "a pixelated eagle with a yellow and white head and yellow beak."], "sample_ids": ["55ccc07cea0640788d42448bc6559087", "9ce77b4cc05c4060a74b8f2568e6bbe8"], "properties": ["helmet, head, robot", "eagle, head, beak"], "captions_pred_pc": ["of a silver ring with black crystals", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d model of a bust of a robot head royalty free 3d model preview no 2", "a 3d image of a penguin in a pixelated world"], "question": "which entity has a yellow beak", "label": 1}, {"captions": [" of a white van with a logo on the side.", "a 3d white cube with windows resembling a building."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, logo, side", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a cube"], "question": "which is not a building", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["base material is wood, color is red, message is welcome to northwich", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a white human skull with broken bone elements."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, skyline, buildings", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a metal-framed wall with red and blue bars in a steel structure."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "fefc99453e2d4406a9668d5697224c0f"], "properties": ["color, red, blue, structure", "color, red, blue, structure"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a person holding a toothbrush"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d rendering of a metal frame structure"], "question": "which entity has a red and blue structure?", "label": 0}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["building, color, black and white", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "5414d75e47104589837f3df8b6de6d22"], "properties": ["floor, wall, roof", "beige, white, round"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small triangular-shaped object.", " of two rocks with ice elements."], "sample_ids": ["2d02985030804209a26c2c53b96a06f9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["shape, triangle, small", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of metal", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black piece of furniture on a white background", "a 3d image of two rocks on a gray surface"], "question": "which object is a rock?", "label": 1}, {"captions": [" a large house with a roof on a platform.", "star wars stormtrooper "], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof, platform, house", "a, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a wooden shed with a gray roof."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, material, shape", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, food, bowl", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " of a wine corkscrew"], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": ["smiley-faced banana .", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, yellow, black", "box, handle, gun"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, table, ceiling", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a roof"], "question": "which structure has a wooden-framed roof", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "402601779d1d4146b4cde106dfff1b27"], "properties": ["stacked, racks, toy train", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " of a crab holding a rubik's cube."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["floor, ceiling, poles", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" of a white round table with a red accent.", " a large metal building with a roof and truss structure."], "sample_ids": ["fea62a865b4e40899d95785533818329", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, red", "roof, truss, structure"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "of a metal grate on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["house, roof, wooden", "roof, structure, suspended"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a metal roof"], "question": "which house has a roof that is suspended?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white teapot with pink flowers and a handle."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "f6c5e8931d164979a71914127c7e5438"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, white, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a white tea kettle with a black handle and floral design"], "question": "which object is whiter", "label": 1}, {"captions": [" a red and white robot.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, red, white", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a white of a spaceship and building."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, white, material, ceramic", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of a tree"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a white object on a gray background"], "question": "which is not a building", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof truss, insulation, suspended ceiling", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, material, shape", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a green box with four compartments", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, number", "- material is stone, metal, concrete"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small purple plastic chair with four legs."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["earbud, earpiece, earpiece", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "of a black and white image of a baby carrier"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", "a white glass beer mug."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "1d686cbd3e9a4c629a43088658989286"], "properties": ["lighthouse, building, tower", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["floor, staircase, railings", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a bench on a wooden floor"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", "a white of a man with arms outstretched."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["structure, columns, roof", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a window", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a white and blue building with a black roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, structure, wall", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["arrow, mountain, area", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a line with a square on it", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, white, containers", "roof, structure, wall"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small white barn with a metal roof."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "4ca3342a96824684845f7d0e062ab176"], "properties": ["screen, keyboard, box", "roof, metal, white"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a barn"], "question": "which object has a white roof", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["frame, roof, trusses", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a metal grate", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a white castle composed of small cubes."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "composed of, white, cubes"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, hole, shelf", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "46903bf029934b1989bc062dcb0a5531"], "properties": ["s, plane, house", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white silhouette of a map", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "674a36147ffb47059e48abc9fa19d923"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, tan, brown, orange", "glass, metal, balls"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a wine glass"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, door, window", "roof, material, wood"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["frame, truss, roof", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["a box, a cup, a bottle, a jar", "house, lake, pool"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, gun", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "e694d53545d449319a64cceb0280c3c6"], "properties": ["table, bench, deer", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small building with windows and a roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["face, handle, spout", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, roof, structure", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a roof structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a two-story small apartment building with a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["apse, roof, floor plan", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "be1376023c274bdda995d54f3694157f"], "properties": ["color, roof, green, frame, red", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house with a roof"], "question": "which house has a chimney?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["A, a, a", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white photograph of a birdhouse"], "question": "which object has a roof", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color, base, warning", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a white plastic tray"], "question": "which box is made of plastic", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a wooden shed with a gray roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, skyline, buildings", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a shed with a gray roof"], "question": "which building is gray", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, ceiling, hole", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": ["a pair of yellow pliers.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, yellow, pliers", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a white castle composed of small cubes."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["building, color, black and white", "composed of, white, cubes"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a castle made of white cubes"], "question": "which building is composed of small cubes", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "bded33af34104b9686b845dfd18309a9"], "properties": ["resembles, toy, bookshelf", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["door, roof, pool", "structure, columns, roof"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["graffiti, bench, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of a boat", "for a black and white image of an object on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["color, material, structure", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a machine gun with additional items."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["bed, desk, window", "gun, type, machine gun"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a submachine gun"], "question": "which object is more likely to be used for hunting", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a machine gun with additional items."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["painting, door, wall", "gun, type, machine gun"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a submachine gun"], "question": "which object is a type of gun", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, mouth, eyes", "grass, plants, rocks"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, texture", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a house with a blue roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a group of people standing together in a line."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "96c9da7f3c2d4f4b90485f899ec5d605"], "properties": ["roof, air conditioner, house", "group, people, line"], "captions_pred_pc": ["a black and white illustration of a window", "a group of people walking in a line on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a group of people standing next to each other"], "question": "which entity is a group of people standing together in a line?", "label": 1}, {"captions": [" a green skull and sphere.", " a small purple plastic chair with holes."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, skull, sphere", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a skull on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a black and white of a knife/sword with a handle."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["a, rock, paper", "image, color, black and white"], "captions_pred_pc": ["for a flock of birds in the sky", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["wall, stairs, castle", "floor, staircase, balcony"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "bf18bfd89efd43389781050230467d58"], "properties": ["color is white, material is plastic, shape is tube", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white object on a gray background", "a white chandelier with five white shades"], "question": "which object is made of glass?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a metal building with a purple roof and cage structure."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, house, wooden", "roof, purple, structure"], "captions_pred_pc": ["a black and white drawing of a house with dots", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a metal roof"], "question": "which building has a cage structure", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor, table, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["meat, bread, sausage", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a brush on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a roof structure"], "question": "which entity has more trusses", "label": 1}, {"captions": ["a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["62fb765ff1a64152b7721a2dd3a19736", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["ring, helmet, bowl", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a circle made up of tiny dots", "above a black and white image of a shark"], "captions_pred_image": ["a 3d printed ring in white 3d printed material", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring has animal designs", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "4806b382466247ad9265fc8240a22d3d"], "properties": ["building, roof, balcony", "rocky, rug, puddle"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity is not a building?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "be1376023c274bdda995d54f3694157f"], "properties": ["color, white, red, pink", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["d6087023095446fbadef1721478373b2", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["door, roof, window", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", "a white teapot with pink flowers and a handle."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "f6c5e8931d164979a71914127c7e5438"], "properties": ["color, white, handle", "color, white, handle"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white dots on a white background"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a white tea kettle with a black handle and floral design"], "question": "which teapot has a white handle?", "label": 0}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["runner, bed, bench", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses?", "label": 1}, {"captions": [" of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a72700696c3b44ef8101d1e71e914bc9", "b896a0898efe4059a776193c02132129"], "properties": ["lion, statue, fountain", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a metal object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of a lion statue on a wall", "a 3d model of an ancient statue"], "question": "which statue is made of stone", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "f57ae66555d34349aeadc38b33f8f267"], "properties": ["A, a, a", "a, bird, hook"], "captions_pred_pc": ["a black and white illustration of a bench", "of a 3d scan of a person's torso and limbs"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white photo of a kite flying in the sky"], "question": "which entity has a hook?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, truss, suspended ceiling", "structure, material, pool"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a robotic warrior with a sword.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["weapon, sword, robot", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "bded33af34104b9686b845dfd18309a9"], "properties": ["yellow, table, roof", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small wooden house with a green roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["frame, roof, trusses", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a small wooden house with a green roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, red, blue, structure", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house with a ladder"], "question": "which structure has a green roof", "label": 1}, {"captions": [" of a house with a pink roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, roof, pink", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "a2354f13774340d392fbf33564934aab"], "properties": ["building, color, yellow-green", "building, roof, yellow"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a chessboard on a beige ceiling tile."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "7dccc542a68f470a947bf5f698c27bbd"], "properties": ["chair, table, refrigerator", "beige, tile, chessboard"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a leopard print banner"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "3d chess board royalty free 3d model preview no 2"], "question": "which entity is a chessboard on?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["food, leaves, shredded paper, rocks", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a group of trees"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, red, apples, tree, cactus, dots", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, pink, green", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "bf18bfd89efd43389781050230467d58"], "properties": ["house, tree, rock", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["candle, color, shape", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a shower head", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["orange, forklift, parking lot", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white photograph of a forklift", "a white kite flying in the air against a gray background"], "question": "which image shows a boat", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small building with windows and a roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["image, building, painting", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["white 3d tank model", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color is white, model is 3d, name is tank", "building, plane, room"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, screen, drawer", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a small wooden house with a roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["bed, desk, window", "roof, house, wooden"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, material, stone", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, mouth, eyes", "roof, pillar, stairs"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "b896a0898efe4059a776193c02132129"], "properties": ["color, awning, cover", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a celtic stone cross.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is stone- shape is cross- color is black", "rusty, warning, metal"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["image, color, pink", "hat, color, tan"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of an object with a hole in it"], "question": "which entity is not a hat?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house with wooden framing and trusses."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof, metal, white", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a house under construction"], "question": "which building has a wooden frame?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "white of a rhino head with horns."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8481aade84de47cab1a9accf8067e678"], "properties": ["roof truss, insulation, suspended ceiling", "image, rhino, head"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["resembles, octopus, squid, spider, robot", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["table, stairs, ladder", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", "white ceramic urn with a red lid."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["blue, lid, handle", "color, white, lid, red"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a white ceramic vase sitting on top of a gray surface"], "question": "which object has a red lid", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a city, train, dragon", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a toy car", "a close up of a black object on a white background"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a still life?", "label": 1}, {"captions": [" a large house with a roof on a platform.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, platform, house", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a piece of paper", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["boat, table, chairs, umbrella, solar panel", "a, building, coin, ball"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "1d1328346a464d2482463d6d5288e934"], "properties": ["painting, door, wall", "painting, door, wall"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a painting", "label": 0}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["room, bed, desk", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, air conditioner, house", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, rock, paper", "island, mountain, grass"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" various fruits and vegetables.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, size", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white drawing of a wallet"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a building with a metal and wooden pole structure."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, trusses, beams", "structure, material, pole"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a box, a cup, a bottle, a jar", "arrow, red, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "c3a82df41875402285608ef13a55df57"], "properties": ["hat, candy, strawberry", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a red and black drone with wheels and propellers.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1cd3d0db9ec744549124443e6dd0a9f8", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, wheel, propeller", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a toy car on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["the image is displayed at 1000x1000 pixels", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a camera", "label": 1}, {"captions": [" a pig with an open mouth and a knife.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d2d3b56c704341198aebd3601a6bb624", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["mouth, open, knife", "door, lock, handle"], "captions_pred_pc": ["a black and white photo of a hippopotamus", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a pig with a knife in its mouth royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "be1376023c274bdda995d54f3694157f"], "properties": ["color, mattress, pillows", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, roof, tray", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["mossy, rock, grass", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of an old metal locker"], "question": "which object has legs", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, yellow, black", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["bird, resembles, crow, pigeon", "plane, ship, bird"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a bird in flight", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is a wrecked plane", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a wooden staircase with a railing and table."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "956247bea850458199c651037d4b1d7f"], "properties": ["a, dress, flower", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " a house with a roof and beams."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, purple, structure", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of a bench", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building with a roof"], "question": "which entity has a roof with beams", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a white castle composed of small cubes."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, pattern", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a clay pot with holes in it."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["boat, table, chairs, umbrella, solar panel", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["white space shuttle model.", "a black and white of a knife/sword with a handle."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color is white, model is space shuttle, size is small", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white knife on a white background"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a gray, metal pillar/cylinder."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is wood, rusty, horned", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "of a black candle on a white background"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a potted christmas pine tree."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["floor plan, heating system, ceiling light fixture", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof structure, truss, ceiling", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a wooden base?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["bed, desk, window", "paint, rust, concrete"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a concrete wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" an old castle in a grassy field.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["field, grass, castle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a spider-like creature with long arms and legs."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, windows, building", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color is white, yellow, plastic", "a, material, clay"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white plastic container with a label on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, roof, wooden", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["giraffe, bench, flower", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, material", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["color, shape, material", "spiked, baseball bat, hammer"], "captions_pred_pc": ["of a black and white drawing of a purse", "for a black star on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a baseball bat"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white of a spaceship and building.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["image, building, spaceship", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a tree", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a building with a black roof"], "question": "which building is greener", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["black, laptop, shelf", "box, paper clip, lock"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a wooden-handled axe .", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["handle material is wood, head material is metal, overall length is long", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a small house and a tree in the foreground"], "question": "which object has a hole in the ceiling", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, texture", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a wooden shed with a gray roof."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["stacked, racks, toy train", "roof, color, gray"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a wooden roof structure with a pink roof."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, black, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", "a low-poly of a white, shattered sphere."], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, color", "sphere, color, texture"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a piece of fabric", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "7407a108e0354925b83b750339bc03df"], "properties": ["hill, field, castle", "platform, color, orange"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a motorcycle on a pedestal"], "question": "which object is on a platform?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["- color is red, blue, pink", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a, bird, hook", "box, cylinder, bottle"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white dots pattern on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "096e42b466ec438d95c5d89a85191534"], "properties": ["- material is stone - color is blue - shape is arrowhead", "white, rock, shell"], "captions_pred_pc": ["above a black and white drawing of an arrow", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a house with a roof"], "question": "which building has a roof that is yellow?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["s of, snowboard, shoes, mask", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["boxing gloves, heart, hand", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with a roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["balcony, stairs, house", "roof, house, small"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["building, plane, room", "a, building, roof"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["door, roof, pool", "island, mountain, grass"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "d81d13362ae04371bb2cba46e4939665"], "properties": ["floor, wall, roof", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a wooden base?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["fireplace, bench, log", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a concrete wall"], "question": "which entity is made of concrete", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, blue, rim, blue", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a white of a small archway gate."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["roof, room, ceiling", "image, color, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white illustration of an arch"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": ["a 3d cartoon cat model wearing a blue outfit.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0d8373961c804794a74971b946ebad8d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, outfit, cat", "a, material, clay"], "captions_pred_pc": ["a 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a cat wearing a jacket", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "black, screen, blank"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity is a billboard?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small white house with a roof."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, color, white"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a metal building with a purple roof and cage structure."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, purple, beams", "roof, purple, structure"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, color, pink", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a toilet", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of a greenhouse", "label": 1}, {"captions": [" a black building.", " a large steel building with a pool."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, black, building", "building material, pool, steel"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a large orange keg with a white lid."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["Drawer, Handle, Wood", "color, lid, orange"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a gray keg with a white lid sits on top of a gray surface"], "question": "which object is made of wood", "label": 0}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["turrets, flags, towers", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a concrete wall"], "question": "which entity is made of concrete", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a wooden roof structure with a pink roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, lake, pool", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a small white box with a green light.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, white, light", "earbuds, light, ring"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d rendering of a small white box", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a light", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["desk, chair, lamp", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, rock, pond", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, stairs, house", "black, roof, green"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "12093c89a60941e7884b252bdc05104c"], "properties": ["image, building, stairs", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a sculpture made of sticks"], "question": "which image has a bench with flowers?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "7adf9de5fb734455a3a3a7f084e3d628"], "properties": ["cup, bottle, chessboard", "cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of a flying saucer"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white image of a fighter plane flying upside down"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["shape is turtle, color is green, white", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, green, lawn", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["base material is wood, color is red, message is welcome to northwich", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a tree stump and rock with flowers on them."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["yellow, table, roof", "flower, rock, tree stump"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has a rock with flowers on it?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small house on a hill in a field."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, truss system, framing", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a house", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, handle, zipper", "roof, color, blue"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of two rocks with ice elements."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["black, white, coffee table", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["house, table, chair", "a, material, steel"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " of two rocks with ice elements."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["staircase, railing, building", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a building with a roof"], "question": "which roof structure has a greenhouse", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a house with a roof structure and toothbrushes."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["hat, sword, gun", "house, roof, toothbrushes"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "white plastic cone-shaped hat, 3d printed."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "5cfd092fb5c44c9f8ae62c6e4c62903d"], "properties": ["color, material, shape", "shape is cone, material is plastic, color is white"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white illustration of a dome shaped object made of dots"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a toilet paper holder"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, pink", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a toilet", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large building with a roof and windows.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, windows, building", "island, terrain, water"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, hill, forest", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a house with a pink roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "6162909df6294848a8eea83c3aa9585b"], "properties": ["house, roof, toothbrushes", "color, roof, pink"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a roof that is a different color than the house?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", "a 3d white cube with windows resembling a building."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, leg, tail", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, rock, paper", "water, boat, rock"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d image of an animal laying on the ground"], "question": "which object is in the water?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["windmills, silhouette, city model", "door, lock, handle"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a green and black robot with cube-like features.", "a white of a man with arms outstretched."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["floor, table, light", "building, material, stone"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a large white and metal building with a metal roof structure."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["size, material, color", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a small square with black dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a large white box"], "question": "which is larger", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, material", "a, material, steel"], "captions_pred_pc": ["a black and white image of a metal structure", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a large metal structure"], "question": "which is made of metal", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a lamp, a syringe, a light pole", "house, pool, balcony"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a wooden roof structure with a pink roof."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a lamp, a syringe, a light pole", "roof, color, pink"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, black, shade, black", "earbuds, light, ring"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a light?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "402601779d1d4146b4cde106dfff1b27"], "properties": ["3D, toothpick, skateboard", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a snowflake in the air on a cloudy day"], "question": "which entity has a toothpick?", "label": 0}, {"captions": [" featuring a chair, table, and refrigerator.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["chair, table, refrigerator", "island, terrain, water"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["- material is wood, metal, metal", "color, silver, white"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " of two rocks with ice elements."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, material, shape", "image is a rock with ice elements"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["ruined building, stone floor, small stone structure", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a robot with a blue, purple, and white body."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, table, ceiling", "body, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a robot"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["background, color, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["s, chimpanzee, human, wolf", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d image of a white tray with an intricate design"], "question": "which object is not a tray?", "label": 0}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a wooden house with a roof and framing."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "4634a9bdf54549a99f68be77f1464b0a"], "properties": ["roof, truss, suspended ceiling", "roof, framing, material"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of an abstract pattern"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a barn structure"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, house, small", "roof, metal, white"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "9968e06a62e8487ea33460e640abc573"], "properties": ["floor plan, bathroom, pool", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a small house", "a white object on a gray background"], "question": "which object is not a house?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a stone wall with a window and a clock."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["image is rock formation with a white cliff and a rock", "window, clock, wall"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a brick wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a chair with a yellow seat.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a4de5f2055154465968f33d6289c64e6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, yellow, seat", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a square with small dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair on a white background royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, yellow, black", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a building"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow metal", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " of a white human skull with broken bone elements."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, table, blocks", "color, white, skull"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a white chest of drawers with legs."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["ceiling, light, desks", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "6b745457e06840119058883b35f78f58"], "properties": ["backrest, curved, yes", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "5414d75e47104589837f3df8b6de6d22"], "properties": ["a, b, c", "beige, white, round"], "captions_pred_pc": ["for a black square tile on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a line of white cubes with various insects on them", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white?", "label": 1}, {"captions": [" a small house with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, house, small", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["hat, sword, gun", "ring, material, gold"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a white wedding band with the words strength in weakness engraved on it"], "question": "which object is made of yellow gold", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " of two rocks with ice elements."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["axe, hammer, spoon", "image is a rock with ice elements"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a large steel building with many columns and a pool."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["floor, wall, roof", "building material, pool, steel"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a building with yellow lines."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, line, gray", "color, yellow, lines"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white drawing of a map"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a, eagle, wood", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, material, structure", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity is not a building structure?", "label": 0}, {"captions": [" a small building with a staircase in a room.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["room, staircase, building", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of the letter l", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["s, stick, leaf", "house, lake, pool"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, structure, truss", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a small house with a roof.", " a wooden roof structure with a pink roof."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, house, small", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a house with a roof and beams."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["Wheels, laptop, robot", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a cell phone", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "205251e4277e41d1aae6b2358267ad56"], "properties": ["room, bed, desk", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a submarine with a person on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ab3cef03ce384d5e9175ecf664d5d536", "b896a0898efe4059a776193c02132129"], "properties": ["person, submarine, surface", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white mushroom on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a person riding a surfboard royalty free 3d model", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, yellow, black", "island, terrain, water"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "4e82177059204292899fa7415164a05e"], "properties": ["a, desk, laptop", "yellow, tires, load"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["floor, ceiling, poles", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, white, black, white", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "096e42b466ec438d95c5d89a85191534"], "properties": ["- color is white- shape is cube- material is plastic", "white, rock, shell"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["small 3d white boat model", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b06d2d878ad2429498baa5c157dc6080", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size is small, color is white, model is boat", "roof, color, yellow"], "captions_pred_pc": ["the product in the image", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white rowing boat on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a wooden shed with a gray roof."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a box, a cup, a bottle, a jar", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a person breaking through a brick wall."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof truss, insulation, suspended ceiling", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, white, red, pink", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, hat, glasses", "axe, handle, wood"], "captions_pred_pc": ["a black and white image of a brake pad", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " of two rocks with ice elements."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["design, poles, table", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d image of two rocks on a gray surface"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a small house with stairs and a roof."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["bread, knife, board", "roof, stairs, house"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["stair, table, chair", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a blue security booth featuring a locked door and a \"clean way\" inscription.", " of two rocks with ice elements."], "sample_ids": ["d2ba0001656f477787b7df4567346a2f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, inscription, booth", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free stock illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a gray metal box with an open door", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "46903bf029934b1989bc062dcb0a5531"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a close up of a black object on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton", "label": 0}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a wooden roof structure with a pink roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["stair, table, chair", "roof, color, pink"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white crocodile", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, shape, size", "face, mask, tail"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of white paper", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["- material is plastic- shape is dice- color is white", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a white kite flying in the air against a gray background"], "question": "which entity is not a kite?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "b896a0898efe4059a776193c02132129"], "properties": ["color, lake, boat", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["throne, chair, building", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, material, structure", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a white origami bird with silver wings.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["d9574287572c47f7a2b712cf1d919374", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, white, wings", "Eye color, Black, Purple"], "captions_pred_pc": ["a 3d model of the human body", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a futuristic bird in flight on a gray background", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black and purple?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, blue, components", "island, fish, ice"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d map of the country of israel"], "question": "which entity is not a circuit board?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "9968e06a62e8487ea33460e640abc573"], "properties": ["railing, glass, table", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " of a small white building with stairs and a lid."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, stairs, lid", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 0}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "6b745457e06840119058883b35f78f58"], "properties": ["building, roof, balcony", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a house with a steeple on top"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a clay pot with holes in it."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image is rock formation with a white cliff and a rock", "hole, material, clay"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, yellow, black", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of an airplane", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["red, mouse, handwriting", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white drawing of a building"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a four-legged metal workbench with shelves."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["base material is wood, color is red, message is welcome to northwich", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["dial, face, band", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["smiley-faced banana .", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a white bunk bed with a ladder.", " of two rocks with ice elements."], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bed, ladder, color, white", "image is a rock with ice elements"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "a black and white image of two rocks on a white background"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "c3a82df41875402285608ef13a55df57"], "properties": ["a train, a ship, a boat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a submarine", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["light, toilet, faucet", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, grass, moss", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a table with a staircase"], "question": "which object is in a room?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a large metal building with a roof and truss structure."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "b85a99699ccd4bcba213322113bb253d"], "properties": ["hat, food, bowl", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a celtic stone cross.", " a pink, ear-shaped object."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["- material is stone- shape is cross- color is black", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["a train, a ship, a boat", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a city with buildings, houses, trees, and grass."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["image, color, pink", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["house, lake, pool", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["Drawer, Pattern, White", "door, roof, pool"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color is white, material is plastic, shape is bottle", "hat, candy, strawberry"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["floor, staircase, railings", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a four-legged metal workbench with shelves."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, sphere, molecule", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, green, orange, star", "frame, beams, trusses"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a metal grate"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["apse, roof, floor plan", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large house with a roof on a platform."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, blue", "roof, platform, house"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "46903bf029934b1989bc062dcb0a5531"], "properties": ["variation, bread, pot", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white drawing of an object", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a tree with leaves and roots.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "6b745457e06840119058883b35f78f58"], "properties": ["leaf, root, trunk", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["floor plan, bathroom, pool", "shape is box, color is white, door is present"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a damaged desert house with an open door and a cross, surrounded by sand and dirt."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "95e9d8f8ba3849feba93c2a7c7932a8c"], "properties": ["color, orange, leather", "house, door, cross"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white image of a map"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a black and white drawing of a house"], "question": "which object has a door", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["roof trusses, beams, suspended ceiling", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have rusted metal", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small house with stairs and a roof."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["door, white, structure", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d rendering of a podium on a wooden floor"], "question": "which structure has a roof?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " of two rocks with ice elements."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["white, windows, lid", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, pink, blue", "house, roof, wooden"], "captions_pred_pc": ["a black and white square with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is red, blue, pink", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a chessboard on a beige ceiling tile.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["beige, tile, chessboard", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a leopard print banner", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["shape is sphere, color is white, material is plastic", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["floor plan, heating system, ceiling light fixture", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a white bunk bed with a ladder."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "379f488d0624482694bbe150b7bc1059"], "properties": ["bed, desk, window", "bed, ladder, color, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "for a white square on a white background with a black square in the center"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "the bunk bed royalty free 3d model no. 3"], "question": "which bed has a ladder", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a clay pot with holes in it."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image is a sculpture of an angel on a wall", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " of a stone wall with a window and a clock."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color is white, material is plastic, shape is tube", "window, clock, wall"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a brick wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["e098706085a44898abbd549693d12a64", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["color is black, white, orange", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, white, black, white", "hat, color, tan"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["house, tree, pool", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, background, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "bded33af34104b9686b845dfd18309a9"], "properties": ["- color is white- shape is cubes- number is 1", "table, staircase, light"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["- color is white - shape is box - material is plastic", "metal, rusted, paper"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a tree with green leaves."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "1a902b67735845198efb1b84f434b580"], "properties": ["texture, spikes, eyes", "leaf, color, green"], "captions_pred_pc": ["a black and white drawing of a flower", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a tree with a lot of foliage"], "question": "which entity has green leaves", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, red, apples, tree, cactus, dots", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "a2354f13774340d392fbf33564934aab"], "properties": ["ceiling, light, desks", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small house with stairs and a roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, text", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a black and white striped fly in the air."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, skyline, buildings", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "c3a82df41875402285608ef13a55df57"], "properties": ["house, roof, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house and barn", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a green mountain with trees and grass."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["screen, keyboard, box", "mountain, grass, tree"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a large house with a roof on a platform."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, building, people", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "b896a0898efe4059a776193c02132129"], "properties": ["text, material, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a house with a roof and beams."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["water, river, island", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["earbuds, light, ring", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a train, a ship, a boat", "box, handle, gun"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["tv, chair, laptop", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a large white and metal building with a metal roof structure."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, shape, height", "roof, metal, white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a two-story small apartment building with a roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["bed, desk, window", "two-story, roof, building"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which entity is a building?", "label": 1}, {"captions": [" an old castle in a grassy field.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["field, grass, castle", "lighthouse, fountain, crater"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, roof, soup", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, visor", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "a17477b445b3443189dad22f768b888b"], "properties": ["compartments, wall-mounted, vents", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["room, bed, desk", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, yellow, black", "roof, trusses, beams"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "12093c89a60941e7884b252bdc05104c"], "properties": ["location, field, gravestone", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, shape, texture", "mossy, rock, grass"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a piece of wood on a white background"], "question": "which entity is more mossy", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["a knife, blade, handle", "Black, Shelf, Metal"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a black shelf with square tiles"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house with wooden framing and trusses."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["lighthouse, fountain, crater", "frame, trusses, wood"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["d6087023095446fbadef1721478373b2", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["door, roof, window", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, staircase, window", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["white, rock, shell", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small house with stairs and a roof."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["building, floor, columns", "roof, stairs, house"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, yellow, white, wheels", "house, pool, balcony"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e098706085a44898abbd549693d12a64", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color is black, white, orange", "house, roof, wooden"], "captions_pred_pc": ["of a white and black clutch with a flower design", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a gnome toy wearing a striped hat."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "72f220d616de466fa1315c1c9bbb5c4c"], "properties": ["A, a, a", "hat, toy, gnome"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white photograph of a crocodile"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a stuffed gnome wearing a striped hat"], "question": "which toy is a gnome?", "label": 1}, {"captions": ["a green cube with white numbers 3 and 5 on it, and a black and blue dice with the number 2 on it.", "a green cube with white numbers 3 and 5 on it, and a black and blue dice with the number 2 on it."], "sample_ids": ["ec245f2665754c0ca59c69f7db590fe0", "ec245f2665754c0ca59c69f7db590fe0"], "properties": ["Numbers on cube are 3, 5, and 2; Color of cube is green; Color of dice is black and blue", "Numbers on cube are 3, 5, and 2; Color of cube is green; Color of dice is black and blue"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a black cube with the number 3 on it", "a 3d model of a black cube with the number 3 on it"], "question": "which cube has the number 2 on it?", "label": 0}, {"captions": ["a white of a building with columns, stairs, and railings.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "bf18bfd89efd43389781050230467d58"], "properties": ["image, building, stairs", "Lights, number, five"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["yellow metal barricade ", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color is yellow, material is metal, height is 0.5 m", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a white barrier on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["chocolate, mushroom, cake", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which mushroom is in the grass", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, suit, cell, phone, gun", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- color is red, blue, pink", "box, handle, gun"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a toy motorcycle, car, and robot on an orange platform.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7407a108e0354925b83b750339bc03df", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["platform, color, orange", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a bicycle", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a motorcycle on a pedestal", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["shape is cylinder, color is white, material is plastic", "metal, legs, wheels"], "captions_pred_pc": ["of a spike on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["s, plane, house", "house, roof, blue"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, windows, building", "roof, truss system, framing"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, bowl, cup", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a wooden box with a lid"], "question": "which object has a drawer", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, building, staircase", "plane, ship, bird"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e694d53545d449319a64cceb0280c3c6"], "properties": ["room, bed, desk", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a door", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a playground slide"], "question": "which entity has a slide?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a broken human skull and stone bowl."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["hat, food, bowl", "skull, bowl, human"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a ceramic bowl with a large crack in the middle"], "question": "which object is not a skull", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, white, black, white", "black, roof, green"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a small black building"], "question": "which object has a green roof", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a small house with a blue roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, umbrella, coat", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["room, bed, desk", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a door", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small house"], "question": "which house has a door?", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["building material, pool, steel", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete structure", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "40921ffd69db479294554d261daf3035"], "properties": ["roof, stairs, house", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, table, ceiling", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof truss, insulation, suspended ceiling", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["floor plan, ceiling light, color", "house, hill, forest"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a white 3d model of a house", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["floor, table, light", "table, structure, roof"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white image of a map with dots"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a building with many pillars"], "question": "which table has a glass roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, light, jewels", "ashtray, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, background, white", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d sculpture of an apple on a white background"], "question": "which object is whiter", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring white and red cubes, and a pink and white chair."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "f2c44a82ba744ba8b93e9a1c2272c117"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, white, red, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a house made of dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white structure with stairs"], "question": "which entity is a chair?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["building, roof, yellow", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": ["a small chicken figurine on a green base.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a8abd4ab2a6943bfa4ac1e01caa109ef", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["base color, chicken, figurine", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a fish in the shape of a butterfly", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "402601779d1d4146b4cde106dfff1b27"], "properties": ["cup, bottle, chessboard", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a snowflake in the air on a cloudy day"], "question": "which entity has a pig in a swimsuit?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, orange, leather", "metal, legs, wheels"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["s of, snowboard, shoes, mask", "paper, hole, sign"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a hole in it?", "label": 0}, {"captions": [" a small house with stairs and a balcony.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["balcony, stairs, house", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a flat roof structure."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "abc52d210d71415296730bb00352ce6f"], "properties": ["apse, roof, floor plan", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small white box with a shelf and a hole in it."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["door, roof, pool", "a, hole, shelf"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white box on a gray background"], "question": "which entity has a hole in it", "label": 1}, {"captions": ["a sword with a yellow handle and white blade.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["ee82fbc66d39467b8f34b91493053e66", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, handle, blade", "floor, staircase, balcony"], "captions_pred_pc": ["of a black and white image of a pen on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "f1b557775310478893242180defa4d80"], "properties": ["a, roof, soup", "shack, roof, door"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["wheeled, cart, cannon", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a house with a roof and beams."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, table, chair", "roof, beams, house"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["door, white, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a table and chairs on a white background"], "question": "which structure has a yellow roof", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["acropolis, city, building", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof truss, chimney, suspended ceiling", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a wooden shed with a gray roof."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, light", "roof, color, gray"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "12093c89a60941e7884b252bdc05104c"], "properties": ["3d model, color, lights", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a house with a green, wooden-structured roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, yard, surrounding buildings", "roof, color, green"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["color, roof, tray", "frame, truss, roof"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is white- color is white- texture is textured", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, black, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, white, blue", "a, color, white"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a desk and chair"], "question": "which entity has a white box with a blue lid?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["red, mouse, handwriting", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "red swivel chair with a white base ."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "7b78fb47a2684906bcc22ac6e848999a"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, red, base, white"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a sphere made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a modern chair"], "question": "which object has a white base?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, ceiling, hole", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- color is red, blue, pink", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a small white building with stairs and a lid."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["earbud, earpiece, earpiece", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["shattered, resembles, broken phone", "house, plane, town"], "captions_pred_pc": ["for black ink brush strokes on a white background", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a damaged building"], "question": "which entity is a destroyed house?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "7e7272f3ddc24551905eccb63f3da42e"], "properties": ["color, black, shade, black", "hat, bag, blanket"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a cell with dots"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d printed sculpture of a baseball player holding a bat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a colorful sunburst with pink, blue, and purple hues.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["46946704a6344eb18718fc5710782f6b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, hue, saturation", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white photo of a ceiling light fixture", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunbur", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, building, people", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small white airplane flying in the air."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "747fb98f64794cdd96486debaf20a02c"], "properties": ["s, plane, house", "airplane, color, white"], "captions_pred_pc": ["a black and white silhouette of a map", "of a black and white image of a clock"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small airplane"], "question": "which airplane is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, purple", "roof, color, green"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "09f2cf267e954c958828325067bcc36a"], "properties": ["arm, light, sign", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a skateboard", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " of a wooden windmill with a red roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["building, material, steel", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a windmill on a gray background"], "question": "which building has a red roof", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, handle, orange, rake, knife", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a spider-like creature with long arms and legs."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["runner, bed, bench", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["color, roof, tray", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["mossy, rock, grass", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d image of a room with a person in it"], "question": "which entity is more likely to have a window", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "white ceramic urn with a red lid."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["- material is plastic- color is white- shape is cube", "color, white, lid, red"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a large house with a roof on a platform."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "cb3e09a301b746918a682a595037c7f7"], "properties": ["a knife, blade, handle", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a small house"], "question": "which object has a roof", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "b896a0898efe4059a776193c02132129"], "properties": ["color, green, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a small black object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, staircase, window", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["yellow metal barricade ", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color is yellow, material is metal, height is 0.5 m", "metal, cross, clock"], "captions_pred_pc": ["a white barrier on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["white, rock, shell", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which object is on a rock", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["shape is turtle, color is green, white", "lighthouse, fountain, crater"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a black and white image of an object on top of a pedestal"], "question": "which is not a lighthouse", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a red roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "085db9059b744673b5623b5338e02196"], "properties": ["roof, green, lawn", "roof, red, house"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, blue", "roof, trusses, beams"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["floor, wall, roof", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["color, head, white and brown", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a black and white image of a rock formation on a gray background"], "question": "which entity is a rock formation?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["room, house, windows", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["Steel, Color, Yellow", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a grayscale of a mountain.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, grayscale, mountain", "color, black, blue"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is a black and blue color scheme?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["color, white, base, slanted", "Headstock, Guitar, Head"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a wooden roof structure with a pink roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, structure, truss", "roof, color, pink"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of the roof of a building"], "question": "which roof structure is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["yellow, table, roof", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", " a wooden roof structure with a pink roof."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a clay sculpture of a man's head on a wooden block.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["52b7f2034d0044bb82cd714d6f7651d5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, material, clay", "a, material, clay"], "captions_pred_pc": ["a black and white image of a man's head made up of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a sculpture of a man's head on a pedestal", "a sculpture of a man's head on a pedestal"], "question": "which entity is a clay sculpture of a man's head on a wooden block?", "label": 0}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a small white building with stairs and a lid."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, table, chair", "building, stairs, lid"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["compartments, wall-mounted, vents", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", "a white glass beer mug."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "1d686cbd3e9a4c629a43088658989286"], "properties": ["yellow, shape, wingspan", "color, white, glass"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a small wooden house with a green roof."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, tower", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["cylinder, marble, pillar", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a wooden windmill with a red roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, structure, house", "roof, color, red"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a windmill on a gray background"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of an egyptian sarcophagus.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["70aa484af2ab44149a608dd81a6ff459", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["sarcophagus, material, wood", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white photograph of a sphere with egyptian hieroglyphics on it", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small flying airplane or fighter jet."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "2b121bdd0edc468db67f161b840451c6"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "aircraft, jet, fighter"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of an airplane on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an airplane flying in the air"], "question": "which object is not a fighter jet?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["green, hat, cream", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["house, lake, pool", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "three white paper windmills and a city model with a nativity scene silhouette."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "fa5ee6165f31465d9d75d046818f4006"], "properties": ["color, temperature, england", "windmills, silhouette, city model"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white photo of a pair of sunglasses"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a cityscape on a white background"], "question": "which entity has a silhouette?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, and size", "resembles, toy, castle"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a tower made out of blocks"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, light, jewels", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of a lion statue on a wall"], "question": "which entity is more like a fountain", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, white, black, white", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a small wooden log cabin.", " a large steel building with many columns and a pool."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["size, material, log", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", "red swivel chair with a white base ."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "7b78fb47a2684906bcc22ac6e848999a"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "color, red, base, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a sphere made up of many small dots on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a modern chair"], "question": "which entity is a chair?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a small white building with stairs and a lid."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, material", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a metal structure", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small purple plastic chair with holes."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "f1b557775310478893242180defa4d80"], "properties": ["color, logo, handle", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a purse with a chain", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["- color is red, blue, pink", "house, fence, dog"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, material", "door, lock, handle"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a black and white image of a door with a crack in it"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["blue, lid, handle", "black, roof, green"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small white house with a staircase and a window."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "9eb88d17310d42dda9e17883e9922525"], "properties": ["image, building, painting", "house, staircase, window"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d rendering of a small room with a staircase"], "question": "which image shows a house with a staircase and a window?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small white building with stairs and a white table."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "e30374c614f54fdb90f35b96b071349d"], "properties": ["light, toilet, faucet", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a building with a staircase"], "question": "which entity has stairs", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["s, plane, house", "room, furniture, window"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "766a075b4760433bafdbe88bee546796"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wheelbarrow?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a house with a green, wooden-structured roof."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["books, paper, lamp", "roof, color, green"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, lake, pool", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "832a022cdcc74763b0571e04af4e592b"], "properties": ["pattern, color, shape", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black circle on a white background", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is wood, metal, metal", "box, handle, gun"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "c8936ace72954650b4e2d84246964849"], "properties": ["container, powder, white", "roof, color, pink"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a clear plastic container with a white label on it", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["stacked, racks, toy train", "a, material, steel"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, truss, lamp", "structure, roof, pitch"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a small wooden house with two roofs."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["color, background, white", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a small barn"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a purple and green sphere.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, size", "cover, black, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, table, ceiling", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small house and barn"], "question": "which structure has a blue roof", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a spider-like creature with long arms and legs."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, trusses, beams", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a roof structure", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a green box with four compartments", " of a white chest of drawers with legs."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, shape, number", "chest of drawers, legs, white"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a red roof.", " a wooden roof structure with a pink roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, red, house", "roof, color, pink"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " of a small white building with stairs and a lid."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, material, steel", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["resembles, toy, castle", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a castle with two towers"], "question": "which toy castle has a red roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large house/building structure with a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["roof, green, lawn", "roof, structure, house"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a large white structure"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["water, boat, rock", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a potted plant on a wooden table or shelf."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["castle, island, house", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["metal, legs, wheels", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, roof, blue", "house, fence, dog"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, texture", "box, handle, gun"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["44723e86bdd14071b0544745879604de", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["resembles, bar, soap", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["metal, laptop, light fixture", "hat, skull, bread"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, background, gray", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, grass, moss", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a cake with a black and white design on the top of the cake"], "question": "which object is whiter", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a small wooden house with a roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["frame, roof, trusses", "roof, house, wooden"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a human bone", " a large orange keg with a white lid."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["a, b, c", "color, lid, orange"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a gray keg with a white lid sits on top of a gray surface"], "question": "which entity is not orange?", "label": 0}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "red heart-shaped object."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is stone - color is blue - shape is arrowhead", "shape, heart, red"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, tree, rock", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a white rocking chair with a curved backrest."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, line, gray", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a wooden shed with a gray roof."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, plane, small plane", "roof, color, gray"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a shed with a gray roof"], "question": "which object has a roof that is the color of gray", "label": 1}, {"captions": ["a white 3d-printed skull model.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["10fb0de0bec64ec8a424e0b404670ba5", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, model", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a fish", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an animal's head on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small building with windows and a roof.", " a white and blue building with a black roof."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, windows, building", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a roof that is black?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["two-story, roof, building", "building, color, black and white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " of a wooden table with metal legs and frame."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["top, color, wood", "metal, legs, frame"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d rendering of a white wooden table"], "question": "which table has metal legs and frame", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["97f487941d26472294e005fa97c403be", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, white, green", "house, tree, hill"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a wooden staircase with a door and square ceiling panel."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "3fe7e366bf924a00bf4b06ded35fd392"], "properties": ["door, stairs, color", "door, panel, staircase"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a staircase on a wooden floor"], "question": "which staircase has a door", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, white, black, white", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small house with a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "6b745457e06840119058883b35f78f58"], "properties": ["roof, house, small", "roof, color, blue"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof truss, insulation, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a building with yellow lines."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, containers", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a flying saucer", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["room, door, shelf", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "cb840159fea7436d81eb33bdccad3596"], "properties": ["shattered, resembles, broken phone", "A, a, a"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d rendering of a white and gray wall mounted shelf"], "question": "which entity is not a shattered piece of paper?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a gray, metal pillar/cylinder."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a black candle on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small black box on a purple square.", " a white motorcycle with wings."], "sample_ids": ["75f209e543c046669099190953616acc", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, size", "color, white, wings"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a wooden shed with a gray roof."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["cup, bottle, chessboard", "roof, color, gray"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a shed with a gray roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d red toy character with glasses and a black hat.", "a low-poly of a white, shattered sphere."], "sample_ids": ["335049efca5c45c4b89f594b8366b3cc", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, hat, glasses", "sphere, color, texture"], "captions_pred_pc": ["of a sphere made of dots on a white background a sphere made of dots on a white background vector illustration of a sphere made of dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["the wizard of oz 3d model royalty free 3d model preview no 3", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a house with a wooden-framed roof structure."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["frame, trusses, wood", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["water, boat, rock", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d image of a white tray with an intricate design"], "question": "which object is not a tray?", "label": 0}, {"captions": [" a child's room in a small house with windows.", " a molecule with two pink and blue spheres."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "926fb2e23c56440a86287e98c1440336"], "properties": ["room, house, windows", "color, shape, size"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of three spheres on a white background"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "096e42b466ec438d95c5d89a85191534"], "properties": ["black, white, coffee table", "white, rock, shell"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " of a wooden windmill with a red roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["picture, plaque, person", "roof, color, red"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is the color of red", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white house with windows and a black lid."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, shape, and size", "white, windows, lid"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white house with three windows"], "question": "which entity is a house?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["arm, light, sign", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a skateboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a four-legged metal workbench with shelves."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["Arms, Legs, Color", "Four legs, Metal, Shelf"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["black, roof, green", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small black building", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a wooden roof structure with a pink roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, roof, green", "roof, color, pink"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["house, color, white", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with various objects", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, yellow, black", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "96d127abd21049689918e671ec613ef8"], "properties": ["texture, spikes, eyes", "axe, hammer, spoon"], "captions_pred_pc": ["a black and white drawing of a flower", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is white?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, material, frame", "house, lake, pool"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d white ring adorned with flowers and leaves.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house with a wooden-framed roof structure."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, ceiling, hole", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a wooden table and chair."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["houses, trees, road", "table, chair, wood"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small wooden table"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " of a wooden windmill with a red roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["castle, island, house", "roof, color, red"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is the color red", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, beams, chimney", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small white barn with a metal roof."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, black, shade, black", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a black and white striped box."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, shape, material", "color, black, white"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a large building with a roof and windows."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "32d1fbd3ee91426882290305f70021e6"], "properties": ["s, plane, house", "roof, windows, building"], "captions_pred_pc": ["a black and white silhouette of a map", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "6b745457e06840119058883b35f78f58"], "properties": ["color, material, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house with a steeple on top"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, grass, moss", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a spiral staircase with a railing in a small building."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["door, panel, staircase", "staircase, railing, building"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a black and white of a knife/sword with a handle."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, pen, logo", "image, color, black and white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a black and white knife on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a knife"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a house with wooden framing and trusses."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["door, stairs, color", "frame, trusses, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, house, small", "house, fence, playground"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, red, blue, green", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["- material is wood, metal, metal", "buildings, houses, grass"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c7ad04db657c42d8a3de4d90aaed0cd5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["size, color, shape", "house, fence, playground"], "captions_pred_pc": ["a black and white image of two pieces of plastic", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small white house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "1ee3df6f94ea4c329a9c5245634e34d5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "graffiti, chinese writing, door"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a bridge with dots"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white image of a bathroom with a sink and a toilet"], "question": "which entity has a door?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["- material is wood - color is white - height is 1.8 m", "roof, brown, flat"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, helmet, airplane wing", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " of a stone wall with a window and a clock."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["roof, wall, color", "window, clock, wall"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a brick wall"], "question": "which wall is made of stone", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", "a white of a house with a hole in the ceiling."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, trusses, beams", "image, house, ceiling"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "4a889132cc444d10bfcbf6c760984416"], "properties": ["a, color, red", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a castle with two towers", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color is white, material is plastic, shape is tube", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a broom on a stand", "of a black and white image of a skateboard"], "captions_pred_image": ["a white object on a gray background", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "411c164757fc4de68dfecb35fa858223"], "properties": ["roof, color, pink", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, light, jewels", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a house with a blue roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["building, material, steel", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a house with a roof"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a wooden billiard table with legs."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["roof truss, insulation, suspended ceiling", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house with a wooden-framed roof structure."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["runner, bed, bench", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "house, tree, hill"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small orange piano with legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "a17477b445b3443189dad22f768b888b"], "properties": ["color is orange, size is small, legs", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a house with a flat roof structure."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "abc52d210d71415296730bb00352ce6f"], "properties": ["door, roof, pool", "roof, flat, structure"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a roof that is not flat?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small, snow-covered house."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, white, furniture, black", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["a, bird, hook", "table, staircase, light"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white photo of the letter g"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "97e000ff41094665afd94ea565da8b13"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "97e000ff41094665afd94ea565da8b13"], "properties": ["s of, snowboard, shoes, mask", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a large building with a roof and windows."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "32d1fbd3ee91426882290305f70021e6"], "properties": ["balcony, stairs, house", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a wooden billiard table with legs."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["frame, trusses, wood", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a house under construction", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a white glass beer mug."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "1d686cbd3e9a4c629a43088658989286"], "properties": ["hat, cup, bowl", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["resembles, toy, bookshelf", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a brick wall with grass.", " a stone wall featuring carvings and statues."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["brick, grass, wall", "carving, statue, wall"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d image of a group of statues on a wall"], "question": "which wall is made of stone", "label": 1}, {"captions": [" a green skull and sphere.", " a clay pot with holes in it."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, skull, sphere", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, grass, moss", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a, roof, soup", "broom, shovel, fireplace"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house on a hill in a field."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["shape is box, color is white, door is present", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a small house"], "question": "which house has a pool", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a blue roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, structure, house", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a roof"], "question": "which structure has a roof", "label": 1}, {"captions": [" a building with blue lines and structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, structure", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["Headstock, Guitar, Head", "color, black, visor"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of an axe head", "a black motorcycle helmet with a visor on top"], "question": "which object has a visor", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, size", "color, frame, shape"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["house, roof, wooden", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a large axe with a cross on top."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, and size", "axe, cross, top"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for an axe on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a purple chair with holes in it."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "833151c8e0f4489a9fa966635a948452"], "properties": ["color, white, red, pink", "color, purple, holes"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white chair"], "question": "which chair has holes in it", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small house with stairs and a roof."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["buildings, houses, grass", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["room, bed, desk", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white drawing of a door", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small house on a hill in a field."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["sandbox, sand bucket, wooden blocks", "house, hill, field"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of a small house"], "question": "which object is in a field?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["house, yard, surrounding buildings", "table, bench, deer"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity is a table?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "star wars stormtrooper "], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a, booth, bed", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white house with a staircase and a window."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "9eb88d17310d42dda9e17883e9922525"], "properties": ["house, roof, wooden", "house, staircase, window"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, island, resembles, hawaii", "plane, ship, bird"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, stairs, house", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of the roof of a building"], "question": "which house has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a white castle composed of small cubes."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["house, fence, dog", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a stone wall featuring carvings and statues."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- color is white- shape is cubes- number is 1", "carving, statue, wall"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d image of a group of statues on a wall"], "question": "which entity has more statues", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["- color is red, blue, pink", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small house with a pond and situated on a rock."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "92859eb82a344134806b37cc209927c6"], "properties": ["a lamp, a syringe, a light pole", "house, rock, pond"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["- material is stone - color is blue - shape is arrowhead", "arrow, red, white"], "captions_pred_pc": ["above a black and white drawing of an arrow", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a spiral staircase"], "question": "which arrow is red", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["texture, spikes, eyes", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "an image of a pile of trash on the ground"], "question": "which entity has grass", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, green, lawn", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a four-legged metal workbench with shelves."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["shape is sphere, color is white, material is plastic", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, pen, logo", "island, mountain, grass"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white map of the island of malta"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["3d white geometric shapes and paper clip.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["8760487af6c748ac8111f09113a77b16", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["3D, white, paper clip", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white knife on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed diamond shaped object on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "s of a rock, boat, plane, and leaf on a stick."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "be0884a7ced34b3d92687b6087798a1e"], "properties": ["s, stick, leaf", "s, stick, leaf"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white drawing of an object floating in the sky"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a black and white photograph of a rock on a sandy surface"], "question": "which entity has a rock", "label": 0}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a metal building with a purple roof and cage structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, color, pink", "roof, purple, structure"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a metal roof"], "question": "which roof is made of metal", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a small house with stairs and a roof."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["chest of drawers, cabinet, white", "roof, stairs, house"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["bedroom, bathroom, bed", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a purple and green sphere.", " of two rocks with ice elements."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "d49d8ed244094349a99e4faca05e0690"], "properties": ["liquid, ice, lid", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a plant growing out of a rock"], "question": "which entity is a low poly of a plant on a white object?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["color, horns, features", "Headstock, Guitar, Head"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an axe head"], "question": "which entity has a headstock", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a large house with a roof on a platform."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, white, logo", "roof, platform, house"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "plane, ship, bird"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is a wrecked plane", "label": 1}, {"captions": [" a small white box with a green light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, light", "roof, material, wood"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a roof, featuring roof truss, insulation, and a suspended ceiling."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "c1462fda08db4a769f68adae5c88cd43"], "properties": ["roof, purple, suspended", "roof truss, insulation, suspended ceiling"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of an arrow pointing to the right"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a white bench with a grid pattern"], "question": "which house has a roof truss", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white of a man with arms outstretched."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["red, mouse, handwriting", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain?", "label": 1}, {"captions": ["a 3d printed green robot with two arms and two legs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["04e3e8ce541e487b9e342570fe1b4eb2", "c3a82df41875402285608ef13a55df57"], "properties": ["color is green, material is 3d printed, number of limbs is 2", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a robot in the shape of a snowflake", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a futuristic robot standing on its hind legs", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["boat, table, chairs, umbrella, solar panel", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, material", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a staircase in a room"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a white glass beer mug.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, white, glass", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a glass pitcher", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["apse, roof, floor plan", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "d81d13362ae04371bb2cba46e4939665"], "properties": ["water, river, island", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, height", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a small white airplane flying in the air."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "747fb98f64794cdd96486debaf20a02c"], "properties": ["shape is cylinder, color is white, material is plastic", "airplane, color, white"], "captions_pred_pc": ["of a spike on a white background", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a small airplane"], "question": "which object is white", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a white human skull with broken bone elements."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, pink, green", "color, white, skull"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a sword with a wooden handle.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["handle, material, wood", "color, head, white and brown"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a black and white image of a sword with two blades", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a clay pot with holes in it."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, size", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a blue ford escort car.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, blue, ford escort", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, line, gray", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "above a black and white photograph of a sculpture"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small building with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, building, small", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a small house", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, material, wood", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": [" of white spheres resembling a molecule.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, number", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, truss, lamp", "low poly, plant, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a four-legged metal workbench with shelves."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["a, hole, shelf", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a table with four legs"], "question": "which object has more shelves", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "e2645ac544844f3c981203134a99c30c"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["black, white, laptop", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a wooden-cased radio.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["case, material, wood", "table, stairs, ladder"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a broken bowl with a hole in it."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "55e883c09dbf4f22bee0da608128f4f8"], "properties": ["painting, door, wall", "a, material, bowl"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a bowl on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d image of a white bowl on a gray background"], "question": "which object is made of a material that can be broken?", "label": 0}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a green mountain with trees and grass."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, tan, brown, orange", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, staircase, window", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "c3a82df41875402285608ef13a55df57"], "properties": ["color, roof, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a barn structure", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a large metal building with a roof and truss structure."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "b85a99699ccd4bcba213322113bb253d"], "properties": ["door, lock, handle", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, tree, pool", "building, plane, city"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a wooden table with two barrels.", " of a wooden table and chair."], "sample_ids": ["8bba7567253040d88973320107e48055", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["table, barrels, wood", "table, chair, wood"], "captions_pred_pc": ["in 15 words or less a black circle on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a barrel table royalty free 3d model preview no.2", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a bee and a rubik's cube next to each other."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "83a27b2b104e4f7f8b42c3c8654153db"], "properties": ["roof, stairs, house", "bee, color, black and white"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black and white image of a bee next to a cube"], "question": "which entity is black and white", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "d81d13362ae04371bb2cba46e4939665"], "properties": ["earbud, earpiece, earpiece", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a white object on a grey background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a clay pot with holes in it."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is wood, rusty, horned", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["3d model of a plague doctor's mask", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, ball, mushroom", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, material, texture", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a skull", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white rocket ship.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white illustration of a planet", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, roof, tray", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "c3a82df41875402285608ef13a55df57"], "properties": ["meat, bread, sausage", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an image of a small white object on a gray background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f1b557775310478893242180defa4d80"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["building, material, steel", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a building with many windows"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a large steel building with a pool."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, yard, surrounding buildings", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a roof structure and toothbrushes."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["roof, purple, suspended", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a white box with a lot of blades"], "question": "which house has a roof structure", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a, dress, flower", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a white of a man with arms outstretched."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["frame, beams, trusses", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a 3d printed green robot with two arms and two legs.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["04e3e8ce541e487b9e342570fe1b4eb2", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is green, material is 3d printed, number of limbs is 2", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a robot in the shape of a snowflake", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a futuristic robot standing on its hind legs", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "09f2cf267e954c958828325067bcc36a"], "properties": ["building, fence, snowy", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a clay pot with holes in it."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image, building, stairs", "hole, material, clay"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, table, chairs", "house, rock, bird"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["chair, table, refrigerator", "house, tree, hill"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " of a small white building with stairs and a lid."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["glass, metal, balls", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a wine glass", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a large house with a roof on a platform."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, shape, texture", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, red, blue, structure", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " of a wine corkscrew"], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["size, material, color", "a, type, corkscrew"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " of a white chest of drawers with legs."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["3D, toothpick, skateboard", "a, material, steel"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["hat, sword, gun", "house, table, chair"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a set of ladders.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["5152e8c6dd094e49b02b54ef1cd2fabc", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, set, ladders", "house, tree, hill"], "captions_pred_pc": ["above a white wall with a black square on it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a shelving unit with multiple shelves", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, desk, laptop", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["a, hole, shelf", "a, desk, laptop"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an office desk on a white background"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "c3a82df41875402285608ef13a55df57"], "properties": ["a, eagle, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["roof, structure, house", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with many windows"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a large metal building with a roof and truss structure."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, screen, drawer", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a brush", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["white of a small stool and toilet paper holder.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["b7b32b690a2942878e3bd386de75d29d", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, stool", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of an object in the shape of an open umbrella", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a toilet paper holder royalty free 3d model preview no. 1", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " of a character wearing glasses and a hat."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["floor, table, wall", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["Cabinet, Drawers, Filing", "building, room, sky"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house with a flat roof structure."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "abc52d210d71415296730bb00352ce6f"], "properties": ["painting, door, wall", "roof, flat, structure"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a house with a roof and beams."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["stacked, racks, toy train", "roof, beams, house"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a building with a roof"], "question": "which object has a roof?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, black, white", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- color is white - shape is box - material is plastic", "roof, trusses, beams"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["mannequin head, plague mask, straps", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, hand, flowers", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a hand", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a pile of mint green soap cubes.", " a small white house with windows and a black lid."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, mint, soap", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white image of dots on a white background"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a 3d model of a white house with three windows"], "question": "which object has a lid", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a black building."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["building, roof, balcony", "color, black, building"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is metal - weight is 0 - height is 0", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a house with a green, wooden-structured roof."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["blue tarp, flower, small island", "roof, color, green"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a child's room in a small house with windows."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "88847a6445044bcbab9611e6028a19b9"], "properties": ["building, fence, snowy", "room, house, windows"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity has more windows", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a house with wooden framing and trusses."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, furniture, black", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a house under construction"], "question": "which house is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a building with a metal and wooden pole structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["yellow, table, roof", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of two rocks with ice elements."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, tree, rock", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["roof, trusses, beams", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a potted christmas pine tree."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["roof, structure, truss", "a, color, green"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a large house with a roof on a platform."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "cb3e09a301b746918a682a595037c7f7"], "properties": ["a, roof, soup", "roof, platform, house"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["- material is plastic- color is green- shape is box", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a concrete wall"], "question": "which object is made of rust", "label": 1}, {"captions": [" of a white round table with a red accent.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fea62a865b4e40899d95785533818329", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, red", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["lighthouse, fountain, crater", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "276699bb0f974c47b4e2954cfcd1651c"], "properties": ["structure, building, archway", "a, color, white"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a skull in the shape of a butterfly"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of an animal with a long nose"], "question": "which entity is not a building?", "label": 0}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house with a flat roof structure."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "abc52d210d71415296730bb00352ce6f"], "properties": ["turrets, flags, towers", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a concrete wall with peeling paint and rusted metal features.", " of two rocks with ice elements."], "sample_ids": ["4376831ff557462dbacc4cce88a8cc86", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["paint, rust, concrete", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a shelf on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a concrete wall", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a red mushroom on top of various piles, including dirt, leaves, wood, and garbage."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "21d3bd3978f74308a312b4379e665dbd"], "properties": ["mossy, rock, grass", "red, pile, garbage"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white illustration of a triangle"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white image of a mushroom in a pile of leaves"], "question": "which entity has a mushroom on top of various piles", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a white of a spaceship and building."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, metal, white", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small purple plastic chair with holes."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["Arms, Legs, Color", "color, plastic, purple"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which chair is made of plastic", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "a small white bowl with a light blue glaze and blue rim."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "6f7201fbb58649379398a8d1d5c0cc7a"], "properties": ["color is white, material is plastic, shape is bottle", "color, blue, rim, blue"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white drawing of a dotted circle on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a white bowl on a gray background"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "db74ee1621464be1b164be26a1af050e"], "properties": ["image is rock formation with a white cliff and a rock", "window, arches, wall"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of an old brick wall"], "question": "which entity is a building?", "label": 1}, {"captions": [" a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it.", " a house with a roof and beams."], "sample_ids": ["4389909667db472ea9a57a70eb940fa4", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["building, window, skeleton", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a piece of paper", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white photo of a person's reflection in a mirror", "a 3d model of a building with a roof"], "question": "which building has a roof and beams", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a white building with a red roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, red", "color, white, roof, red"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, texture", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, material, shape", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["cup, bottle, chessboard", "cup, bottle, chessboard"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which entity has a chessboard?", "label": 0}, {"captions": ["3d stone sculpture of a bat", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "9968e06a62e8487ea33460e640abc573"], "properties": ["- material is stone - shape is bat", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["color, white, background, gray", "paper, hole, sign"], "captions_pred_pc": ["above a black and white photograph of an object", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d49d8ed244094349a99e4faca05e0690"], "properties": ["yellow, table, roof", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["water, river, island", "color, sphere, molecule"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["pattern, color, shape", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black circle on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black rock with writing on it.", " a house with a green, wooden-structured roof."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, black, writing", "roof, color, green"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, ball, mushroom", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "46903bf029934b1989bc062dcb0a5531"], "properties": ["arm, jacket, mannequin", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a woman's torso", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, size", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d rendering of a small white table with a chair"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "c3a82df41875402285608ef13a55df57"], "properties": ["color, bench, rack", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["color is purple, material is plastic, number of legs is four", "a, character, mario"], "captions_pred_pc": ["of a black and white image of a baby carrier", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["shape is box, color is white, door is present", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "flower, color, pink"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a, character, person", "costume, color, black"], "captions_pred_pc": ["a 3d model of a person", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a collection of black and red pens and pipes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8a272b7ee0c14a2c98fae74024bf3e93", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, pen, red", "a, material, clay"], "captions_pred_pc": ["of a black leather belt with a silver buckle", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d illustration of a group of pens on a white background royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " of a small white building with stairs and a lid."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["stacked, racks, toy train", "building, stairs, lid"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, shape, and size", "house, lake, pool"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a large building"], "question": "which entity has a lake", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small, snow-covered house."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, light, jewels", "house, snow, cover"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a white glass beer mug."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, holes", "color, white, glass"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small building with windows and a roof."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["low poly, llama, kangaroo", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, white, logo", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "be1376023c274bdda995d54f3694157f"], "properties": ["color, white, yellow, roof, metal", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["boxing gloves, heart, hand", "hat, watch, clock"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, color, white", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a black and white photograph of a birdhouse"], "question": "which house is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a white sheet of paper or box on a gray background."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "7b0c1e02d9b14f2fae4f1f7040661cc7"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, white, background, gray"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white photograph of an object"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["variation, bread, pot", "room, furniture, window"], "captions_pred_pc": ["above a black and white drawing of an object", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["white floor lamp with a white shade and base, resembling a white plastic stick or column, featuring a camera on top.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["f1230cbf5653463bbda1bdf55543ba4d", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["shade, base, height", "shade, white, bead"], "captions_pred_pc": ["for a black square on a white background", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a white plastic toothbrush on a gray background", "a wall lamp with a white shade and a butterfly design"], "question": "which lamp has a white shade", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hat, sword, gun", "box, paper clip, lock"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "5414d75e47104589837f3df8b6de6d22"], "properties": ["glass, metal, balls", "beige, white, round"], "captions_pred_pc": ["a black and white image of a wine glass", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a clear acrylic foosball table", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, pattern, wall", "house, pool, balcony"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["houses, trees, road", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "e602ac60041f4b4f84c044161e478781"], "properties": ["ruined building, stone floor, small stone structure", "floor, wall, roof"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, desk, laptop", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "46903bf029934b1989bc062dcb0a5531"], "properties": ["pos machine, credit card machine, cash register", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a close up of a black object on a white background"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a house with a wooden-framed roof structure."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["desk, chair, lamp", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["house, fence, playground", "color, shape, color"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["room, door, shelf", "table, bench, deer"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of an empty room", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, style, pixel", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "for a black and white image of an object on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has fewer speakers", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "aef9b23a78a7450286a961cc13448d00"], "properties": ["mossy, rock, grass", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is white- color is white- texture is textured", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, roof, balcony", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["box, cylinder, bottle", "house, tree, pool"], "captions_pred_pc": ["a black and white dots pattern on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["color, roof, structure", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a building with a roof"], "question": "which building has a roof made of glass?", "label": 1}, {"captions": [" of a large rock or stone.", "a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "dd5849aced0443b1b4b38d413f7e06c4"], "properties": ["boulder size, color, shape", "background, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white image of a cat's head"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d model of an animal skull in white on a gray background"], "question": "which entity is not a boulder?", "label": 0}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "832a022cdcc74763b0571e04af4e592b"], "properties": ["a, island, resembles, hawaii", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["graffiti, bench, wall", "roof, brown, flat"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "a17477b445b3443189dad22f768b888b"], "properties": ["a, hole, rock", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["hat, food, bowl", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white statue of a woman holding a baby.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7cf1c30a98fc4ae796e040c2ce18c03a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, statue", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a heart", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d printed figurine of a woman holding a cat", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house with a wooden-framed roof structure."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, windows, building", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which building has a roof made of wood", "label": 1}, {"captions": ["two white spheres in a .", " of two rocks with ice elements."], "sample_ids": ["1c02212a35134545ab63ab180d629c31", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["two, spheres, white, in, a", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white ball on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", "a 3d white cube with windows resembling a building."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, white, railing, black", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", "red swivel chair with a white base ."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "7b78fb47a2684906bcc22ac6e848999a"], "properties": ["color, red, black", "color, red, base, white"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white image of a sphere made up of many small dots on a white background"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d model of a modern chair"], "question": "which object has a white base?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small white building with stairs and a white table."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "e30374c614f54fdb90f35b96b071349d"], "properties": ["bedroom, bathroom, bed", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a building with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a white rocking chair with a curved backrest."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["base, speaker, light", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "b896a0898efe4059a776193c02132129"], "properties": ["graffiti, wall, wheelbarrow", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["white 3d triangular object", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, shape is triangular, material is plastic", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small purple plastic chair with four legs."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a black and white image of a baby carrier"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["house, lake, pool", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a spiral staircase with a railing in a small building."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, shape, material", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "832a022cdcc74763b0571e04af4e592b"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a small house with a red roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["085db9059b744673b5623b5338e02196", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, red, house", "house, fence, playground"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "bea8441c08d94366b96b53775391d8e6"], "properties": ["size, color, design", "color, white, logo"], "captions_pred_pc": ["a black and white pattern on a white background", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a white t-shirt with a supreme logo"], "question": "which is a t-shirt", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["building, floor, columns", "structure, columns, roof"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of a barrel and a cube together."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["furniture, staircase, torn-apart", "a, barrel, cube"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["red, sphere, resembles", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a spike on a white background"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a paper airplane"], "question": "which object is more likely to be made of plastic", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["bread, knife, board", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white map of the island of malta"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white cube.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["94fbd38f3f9c454eafc09bf4d7544146", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house with a wooden-framed roof structure."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["chair, table, refrigerator", "roof, material, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a sword and knife.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, sword, knife", "building, plane, room"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, shape, texture", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small purple plastic chair with holes."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, hole, shelf", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white box on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["hair, legs, wings", "house, lake, pool"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, door, window", "building, window, skeleton"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window with a skeleton on it?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "26c47880756b4876b4f263373c3c5303"], "properties": ["roof, structure, house", "building, material, steel"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a large structure with multiple levels"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, roof, tray", "earbuds, light, ring"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ceiling light?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, light", "platform, color, orange"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a motorcycle on a pedestal"], "question": "which object is a toy?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small wooden house with a green roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, roof, balcony", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["graffiti, chinese writing, door", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, texture", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["Steel, Color, Yellow", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a chair with a yellow seat."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, skyline, buildings", "color, yellow, seat"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity has a yellow seat", "label": 1}, {"captions": ["a piece of rock with a blue stick.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, rock, stick", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a rock formation", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "bded33af34104b9686b845dfd18309a9"], "properties": ["hat, shirt, bearded", "table, staircase, light"], "captions_pred_pc": ["of a black and white bracelet on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small white building with stairs and shelves."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "9e1f64d4fd514059be934077717536dc"], "properties": ["house, tree, rock", "building, stairs, shelves"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a white 3d model of a building with stairs"], "question": "which building has stairs?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["boxing gloves, heart, hand", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, plane, small plane", "a, material, steel"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a large metal structure"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["- material is wood, rusty, horned", "cover, black, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "of a black and white image of a skateboard"], "captions_pred_image": ["3d model of a plague doctor's mask", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["ceiling, light, desks", "desk, chair, lamp"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a desk and chair in a room"], "question": "which entity has a desk", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, staircase, table", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "6813afb531d041e48532088d01b00db9"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- color is blue- shape is pear-like- structure is flame-like"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a low poly 3d model of a rock"], "question": "which entity is a sphere?", "label": 0}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, material, structure", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "a, material, clay"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, bowl, green", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "an image of a white background with a few small cubes on it"], "question": "which object has a white background?", "label": 0}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["wood, board, shelf", "nut, bowl, ring"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d rendering of a white object on a gray background"], "question": "which object has more rings", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, truss, lamp", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pink", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, blue, green, yellow, blue", "roof, color, yellow"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, roof, soup", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, shape, and material", "building, plane, city"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, light, jewels", "water, boat, rock"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a clay pot with holes in it."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["location, field, gravestone", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["- color is white- shape is cube- material is plastic", "metal, legs, wheels"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a hammer with a long metal handle."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, leg, tail", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a large orange keg with a white lid.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, lid, orange", "roof, material, wood"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a box, a cup, a bottle, a jar", "grass, plants, rocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof truss, insulation, suspended ceiling", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["d6087023095446fbadef1721478373b2", "d81d13362ae04371bb2cba46e4939665"], "properties": ["door, roof, window", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of an apartment building", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "5850d5c7223447db816081d50292fec0"], "properties": ["house, fence, playground", "structure, material, pool"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, roof, green", "house, fence, playground"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, color, white", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small off-road toy vehicle with wheels.", " a small white building with stairs and shelves."], "sample_ids": ["7ef2589539b84054b2185633112825cc", "9e1f64d4fd514059be934077717536dc"], "properties": ["wheel, toy, vehicle", "building, stairs, shelves"], "captions_pred_pc": ["of a black and white photo of a cross on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a dune buggy royalty free 3d model preview no 3", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a red roof.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["085db9059b744673b5623b5338e02196", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["roof, red, house", "houses, trees, road"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a sea urchin"], "question": "which entity is made of a shell", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "7f8942ef51dd4246993a587a12df168c"], "properties": ["floor, staircase, railings", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["yellow, table, roof", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with stairs and a roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, color, white", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["Parts, Luggage, Truck", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a green circuit board."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, red, blue, structure", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "of the item in the image"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["throne, stairs, tree", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white toy cannon.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["a414258c6bf149708404913a89ab8dbc", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, white, toy", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a cannon on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small wooden house."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["room, house, windows", "house, material, wood"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a wooden billiard table with legs."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["chair, table, refrigerator", "legs, material, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " of a white sculpture, resembling a horse and paper plane, on a gray background."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "179b4438edfc4a43a27a83784f38ff4b"], "properties": ["bread, knife, board", "color, background, white"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "above a black and white image of a sculpture in the shape of a bird"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d printed sculpture of a horse's head on a gray background"], "question": "which entity is not white?", "label": 0}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["moss, mushroom, grass", "blue, yellow, frog"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["houses, trees, road", "table, bench, deer"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small building with windows and a roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, tree, rock", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a loaf of bread and a piece of cake.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["e9a56b5d4f344d5699ddb629f4b94ef8", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["bread, cake, loaf", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a piece of fabric with dots", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a loaf of bread royalty free 3d model preview no 3", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small house with a road in front of it.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, front, road", "house, roof, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a wooden shed with a gray roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["bed, desk, window", "roof, color, gray"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a wooden shed with a gray roof."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["painting, door, wall", "roof, color, gray"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a wooden roof structure with a pink roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, temperature, england", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": ["a white of a spaceship and building.", " a wooden roof structure with a pink roof."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["image, building, spaceship", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a tree", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of the roof of a building"], "question": "which building has a pink roof", "label": 1}, {"captions": [" a small house with a red roof.", " a small house with a pond and situated on a rock."], "sample_ids": ["085db9059b744673b5623b5338e02196", "92859eb82a344134806b37cc209927c6"], "properties": ["roof, red, house", "house, rock, pond"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["house, roof, toothbrushes", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["b5afccae993346079483507296fbb029", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["shape is square, material is metal, color is rusty", "bowl, pottery, headpiece"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a piece of ancient pottery"], "question": "which object is made of stone", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["color, temperature, england", "bread, knife, board"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a loaf of bread and a knife on a cutting board"], "question": "which object is on a cutting board?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house with wooden framing and trusses."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, light, jewels", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a black and white striped box."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, plane, sky", "color, black, white"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, purple, suspended", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "7f8942ef51dd4246993a587a12df168c"], "properties": ["liquid, ice, lid", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, text", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white map of the island of malta"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a wooden shed with a gray roof."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, ceiling, hole", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["roof truss, insulation, suspended ceiling", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "d81d13362ae04371bb2cba46e4939665"], "properties": ["wing, silver, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "e098706085a44898abbd549693d12a64"], "properties": ["location, area, material", "color is black, white, orange"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is made of black", "label": 1}, {"captions": [" a robot head with a helmet.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["55ccc07cea0640788d42448bc6559087", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["helmet, head, robot", "a, material, clay"], "captions_pred_pc": ["of a silver ring with black crystals", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a bust of a robot head royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, bowl, cup", "house, tree, hill"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, hole, rock", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "f1b557775310478893242180defa4d80"], "properties": ["metal, legs, frame", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small house on a hill in a field."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, shape, material", "house, hill, field"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a black and white image of a small house"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c8936ace72954650b4e2d84246964849"], "properties": ["house, plane, town", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color pink", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["orange, forklift, parking lot", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, red, blue, green", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a small house and barn"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a 3d printed model of a small white house.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d62a9376f8be4c7585d15ccf68c51239", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["a black and white image of a building with a lot of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small white birdhouse", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "c3a82df41875402285608ef13a55df57"], "properties": ["floor, ceiling, poles", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["house, lake, pool", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a harp in a white room"], "question": "which entity has a white curved wall?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, white, material, ceramic", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "be1376023c274bdda995d54f3694157f"], "properties": ["ceiling, beams, light", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "7f8942ef51dd4246993a587a12df168c"], "properties": ["wall, stairs, castle", "house, yard, surrounding buildings"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["lighthouse, fountain, crater", "roof, color, yellow"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["house, roof, toothbrushes", "a, building, roof"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, floor, columns", "island, mountain, grass"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a small triangular-shaped object."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "2d02985030804209a26c2c53b96a06f9"], "properties": ["shape is turtle, color is green, white", "shape, triangle, small"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white image of a piece of metal"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a brick building with a roof structure and roof truss."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "84e8acad28664a738df69d719df9e263"], "properties": ["roof, metal, white", "roof, structure, truss"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss?", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["image is royalty-free, beaver, skateboard", "color, white, gold"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, white, containers", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a wine corkscrew"], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["image is rock formation with a white cliff and a rock", "a, type, corkscrew"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["water, river, island", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a small house with a covered porch"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["metal, laptop, light fixture", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, height", "a room, a cake, a table"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, balcony, street", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an old building", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a white chest of drawers with legs."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["- material is plastic- color is green- shape is box", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d rendering of a white dresser"], "question": "which object is made of wood", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, poles", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small building with a roof.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, building, small", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a small house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["candle, color, shape", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a shower head", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " of two rocks with ice elements."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, roof, wooden", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " of a small white building with stairs and a lid."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, blue, structure", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of dots on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, head, body", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d model of a concrete wall"], "question": "which entity is more likely to have rust", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is white, material is plastic, shape is box", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a house with a roof and beams."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor, staircase, table", "roof, beams, house"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, door, window", "color, head, white and brown"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a white castle composed of small cubes."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["a, island, water", "a city, train, dragon"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, red", "roof, metal, white"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, umbrella, coat", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a tree made of dots", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["Steel, Color, Yellow", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a building", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["table, staircase, light", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a house with a ladder"], "question": "which object has a roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a wooden truck with a load of snow and crates, driving on a pile of wood."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "ac1e2dcbe71945d58204f95d16d658b1"], "properties": ["color, shape, material", "load, crates, snow"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a 3d image of a bench with a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a truck with a pile of snow on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large steel building with many columns and a pool."], "sample_ids": ["d6087023095446fbadef1721478373b2", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["door, roof, window", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["brown, paint, tape", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["c27b018330da406680e58b94266c310b", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["frame, material, wood", "wood, board, shelf"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a bench", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a large steel building with a pool."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["houses, trees, road", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with a roof structure and toothbrushes."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["background, color, white", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " of a hammer with a long metal handle."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, material, shape", "handle, metal, long"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small wooden house."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["floor plan, heating system, ceiling light fixture", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a house", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a large white and metal building with a metal roof structure."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["a box, a cup, a bottle, a jar", "roof, metal, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, bird, lake", "a, material, steel"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a sword with a wooden handle."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["a knife, blade, handle", "handle, material, wood"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a knife on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a black and white image of a sword"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a spider-like creature with long arms and legs."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["liquid, ice, lid", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, stairs, house", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of a white human skull with broken bone elements."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["size, color, shape", "color, white, skull"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a small wooden house."], "sample_ids": ["40921ffd69db479294554d261daf3035", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["floor, railing, staircase", "house, material, wood"], "captions_pred_pc": ["above a black and white image of a computer screen", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a white of a gun.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, gun", "a, material, clay"], "captions_pred_pc": ["of a white object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a stone wall featuring carvings and statues."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["water, boat, rock", "carving, statue, wall"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a small house on a hill in a field."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, plane, sky", "house, hill, field"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "dd3a9323ed514ccab330973ff9588015"], "properties": ["yellow, table, roof", "room, bed, desk"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["backrest, curved, yes", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, table, chair", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a window"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, poles", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a white fox."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["resembles, toy, bookshelf", "color, white, fox"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a fish"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["resembles, sea urchin, shell", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a sea urchin", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "b896a0898efe4059a776193c02132129"], "properties": ["color is white, yellow, plastic", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["black, white, laptop", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with roof trusses"], "question": "which entity has a ceiling structure", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["earbuds, light, ring", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a castle with two towers"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "f1b557775310478893242180defa4d80"], "properties": ["color, alternator, fan", "shack, roof, door"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["staircase, railing, building", "arrow, red, white"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, tan, brown, orange", "door, lock, handle"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a white of a spaceship and building."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["lighthouse, fountain, crater", "image, building, spaceship"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["low poly, plant, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a house with a roof"], "question": "which object is white", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " of a small white building with stairs and a lid."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["floor, staircase, table", "building, stairs, lid"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, door, window", "room, door, shelf"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of an empty room"], "question": "which building has a room with a door and a white shelf?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a spider-like creature with long arms and legs."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, truss, lamp", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "832a022cdcc74763b0571e04af4e592b"], "properties": ["light source, fixture, color", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, shape, and size", "color, white, material, ceramic"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white vase on a grey background"], "question": "which object is white", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a white building with a red roof."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["lighthouse, building, tower", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a box, a cup, a bottle, a jar", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small white house with a roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "f1b557775310478893242180defa4d80"], "properties": ["color, white, red, pink", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "c8936ace72954650b4e2d84246964849"], "properties": ["roof, color, red", "roof, color, pink"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a roof"], "question": "which roof is pink", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["structure, columns, roof", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["floor, wall, roof", "room, staircase, bus"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d image of a building with a lot of debris"], "question": "which entity has a damaged bus?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["resembles, octopus, squid, spider, robot", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has pink flowers", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "bf18bfd89efd43389781050230467d58"], "properties": ["shape is sphere, color is white, material is plastic", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a white motorcycle with wings.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, wings", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small white house with a roof."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["frame, trusses, wood", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["metal, laptop, light fixture", "water, boat, rock"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "c3a82df41875402285608ef13a55df57"], "properties": ["pattern, color, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black circle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["hat, sword, gun", "broom, shovel, fireplace"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, number", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["collection, color, black, handle, wooden", "door, lock, handle"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", "a white of a spaceship and building."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, white, railing, black", "image, building, spaceship"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["purple speech bubble and circle", " a white motorcycle with wings."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, size", "color, white, wings"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, pier, railings", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["ceiling, beams, light", "ceiling, beams, light"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a floor heating system?", "label": 0}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white and blue building with a black roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, red, pink", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a black roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "96d127abd21049689918e671ec613ef8"], "properties": ["house, yard, surrounding buildings", "axe, hammer, spoon"], "captions_pred_pc": ["a black and white image of a truck on a white background", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a house?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["size, color, design", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a clay pot with holes in it."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, sphere, molecule", "hole, material, clay"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small white house with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["frame, truss, roof", "roof, color, white"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["a white of a spaceship and building.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["image, building, spaceship", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a tree", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a small house with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, house, small", "house, roof, wooden"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, material, logo", "a, color, white"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- material is metal- color is silver- texture is textured", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a black and white striped box.", " a white building with a red roof."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, black, white", "color, white, roof, red"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of an office building"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "b896a0898efe4059a776193c02132129"], "properties": ["shape is turtle, color is green, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a tree stump with roots.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["fa6e88ba438f4597a7230789124c8147", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["root, tree, stump", "desk, chair, lamp"], "captions_pred_pc": ["above a black and white illustration of a galaxy", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a tree stump in the middle of a field", "a 3d rendering of a desk and chair in a room"], "question": "which object has more chairs", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small white house with a roof."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, ceiling, hole", "roof, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white?", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " of two rocks with ice elements."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a person in a green outfit, resembling a cartoon character.", " of two rocks with ice elements."], "sample_ids": ["839a873262a544c9906f3f5799ca4648", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, outfit, green", "image is a rock with ice elements"], "captions_pred_pc": ["a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a person jumping on a trampoline in slow motion", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "a, building, coin, ball"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a box with a coin next to it"], "question": "which object is not a ball?", "label": 0}, {"captions": ["a 3d-printed blue ring with holes in it.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, material, shape", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, bench, rack", "island, terrain, water"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "44be138ae8e2409bbbca44a96fc67d45"], "properties": ["color, tan, brown, orange", "color, tan, brown, orange"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white illustration of an office chair"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a grey leather lounge chair with ottoman and footstool"], "question": "which set has a brown ottoman?", "label": 0}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["shape is box, color is white, door is present", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "9968e06a62e8487ea33460e640abc573"], "properties": ["background, color, white", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, shape, text", "broom, shovel, fireplace"], "captions_pred_pc": ["the logo for carl meyer", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", "a white of a house with a hole in the ceiling."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["location, highway, train station", "image, house, ceiling"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a person breaking through a brick wall."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, white, black, white", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "6b745457e06840119058883b35f78f58"], "properties": ["Drawer, Pattern, White", "roof, color, blue"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, pattern", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small white house with a roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["runner, bed, bench", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", "white of a rhino head with horns."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "8481aade84de47cab1a9accf8067e678"], "properties": ["color, shape, material", "image, rhino, head"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which entity is a white image of a rhino head?", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", " of two rocks with ice elements."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bird, resembles, crow, pigeon", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a bird in flight", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with many windows", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["Arms, Legs, Color", "roof, structure, greenhouse"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a white of a spaceship and building."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["building, fence, snowy", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a snowy mountain island."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "fe8520ec650248fa92ba07bb95712b09"], "properties": ["roof, room, ceiling", "mountain, island, snowy"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a black cross on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white photograph of a volcanic eruption"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "wood, board, shelf"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small, snow-covered house."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["yellow, table, roof", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["water, river, island", "throne, chair, building"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, hat, flower", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["hat, food, bowl", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["houses, trees, road", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "db74ee1621464be1b164be26a1af050e"], "properties": ["roof, wall, color", "window, arches, wall"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of an old brick wall"], "question": "which wall is made of stone", "label": 1}, {"captions": [" a small house with a blue roof.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["roof, color, blue", "mossy, rock, grass"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a piece of wood on a white background"], "question": "which entity has a mossy rock?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, tan, leather", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a red, blue, and green striped tower building."], "sample_ids": ["d6087023095446fbadef1721478373b2", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["door, roof, window", "color, red, blue, green"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building has a green roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "7f8942ef51dd4246993a587a12df168c"], "properties": ["floor plan, bathroom, pool", "house, yard, surrounding buildings"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, door, window", "house, roof, green"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a blue pickup truck", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "c3a82df41875402285608ef13a55df57"], "properties": ["color is blue, make is ford, model is f150", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["face, handle, spout", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a small, circular object", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["graffiti, chinese writing, door", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["house, fence, dog", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["yellow, table, roof", "house, color, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b896a0898efe4059a776193c02132129"], "properties": ["Arms, Legs, Color", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["screen, monitor, stand", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a pair of yellow pliers.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, yellow, pliers", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a pair of scissors on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- color is red, blue, pink", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with a pink roof.", " a two-story small apartment building with a roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, roof, pink", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, tower, color", "table, staircase, light"], "captions_pred_pc": ["for a black square on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a large metal building with a roof and truss structure."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, red, blue, green", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small building with a staircase in a room."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["door, roof, pool", "room, staircase, building"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["screen, keyboard, box", "room, door, shelf"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "3d object featuring a blue and white tile, mattress, book with a sign, and a hanging notice sign, all representing god's family faith in action."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "4b1d361630b949889282755fb6fb46bc"], "properties": ["ring, material, gold", "Object, color, white"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a black and white image of a line of dots on a white background"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "god's family faith in action"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["Cabinet, Drawers, Filing", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a house with wooden framing and trusses."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["wall, stairs, castle", "frame, trusses, wood"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "a17477b445b3443189dad22f768b888b"], "properties": ["s, stick, leaf", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a mouse wearing a top hat and a teddy bear holding a spoon.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["887e410d07854396b563325ae1929583", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, mouse, bear", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mouse wearing a top hat and bow tie", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "bf18bfd89efd43389781050230467d58"], "properties": ["light source, fixture, color", "Lights, number, five"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white chandelier with five white shades"], "question": "which light source is more powerful", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a large house with a roof on a platform."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, staircase, window", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a gun with a blue handle."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["color, eye, handle", "color, handle, blue"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a gun on a gray background"], "question": "which object has a blue handle", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of an egyptian sarcophagus."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["color, roof, tray", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["structure, columns, roof", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 0}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "6b745457e06840119058883b35f78f58"], "properties": ["mossy, rock, grass", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, stairs, house", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "c3a82df41875402285608ef13a55df57"], "properties": ["Steel, Color, Yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden cube.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["shape is cube, material is wood, color is brown", "metal, legs, wheels"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a large metal building with a roof and truss structure."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, base, warning", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["house, fence, dog", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is wood, rusty, horned", "window, arches, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, size", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "an image of a white background with a few small cubes on it"], "question": "which entity is a sphere?", "label": 0}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a metal-framed wall with red and blue bars in a steel structure."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "fefc99453e2d4406a9668d5697224c0f"], "properties": ["color, shape, height", "color, red, blue, structure"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a person holding a toothbrush"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d rendering of a metal frame structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["backrest, curved, yes", "hat, pants, shirt"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["house, table, chair", "throne, chair, building"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, color, black and white", "roof, metal, white"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a large white box"], "question": "which building is white", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small wooden house with a green roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, material, structure", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house with a ladder"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a futuristic white sports racing car.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, white, futuristic", "metal, legs, wheels"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, orange, white", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "7f8942ef51dd4246993a587a12df168c"], "properties": ["railing, glass, table", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["house, plane, town", "stair, table, chair"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a tree with a blue ball and a mushroom."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "4bb8528bd042471f8865cce122a03924"], "properties": ["a, bird, lake", "a, ball, mushroom"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of an airplane flying over a tree"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2"], "question": "which entity has a ball and a mushroom?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a green, wooden-structured roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, rock, pond", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, horns, features", "color, silver, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a silver ball on a gray background"], "question": "which entity is not a ring?", "label": 0}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, yellow, white, wheels", "metal, rusted, paper"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have rusted metal", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "c3a82df41875402285608ef13a55df57"], "properties": ["room, door, shelf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an empty room", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "a17477b445b3443189dad22f768b888b"], "properties": ["furniture, staircase, torn-apart", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a house with a flat roof structure."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "abc52d210d71415296730bb00352ce6f"], "properties": ["A, a, a", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "e2645ac544844f3c981203134a99c30c"], "properties": ["- material is plastic- color is white- shape is cylinder", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d printed white dice with a mickey mouse face"], "question": "which object is whiter", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", "star wars stormtrooper "], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof, metal, white", "a, color, white"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a star wars stormtrooper"], "question": "which is not a white color", "label": 0}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", "a green and red toy gun with a scope and yellow accents."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "4b7263b58a6647c3a03226b39c42108a"], "properties": ["a, material, steel", "color, red, green, yellow"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of an assault rifle on a gray background"], "question": "which object is made of red", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, bowl, cup", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a roof and beams."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["apse, roof, floor plan", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with a roof"], "question": "which entity has a roof with beams", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, green, lawn", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": ["smiley-faced banana .", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a wooden staircase with a railing and table."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "956247bea850458199c651037d4b1d7f"], "properties": ["a train, a ship, a boat", "railing, table, staircase"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", "a white of a man with arms outstretched."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, image, subject", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, light, jewels", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["lighthouse, fountain, crater", "paper, hole, sign"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["computer desk, laptop, monitor", "house, pool, balcony"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, eye, handle", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a black and white object on a gray background"], "question": "which object has a handle", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["face, handle, spout", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["door, lock, handle", "a, material, clay"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a potted christmas pine tree."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, temperature, england", "a, color, green"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a christmas tree in a vase"], "question": "which entity is not green?", "label": 0}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a pink, ear-shaped object."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["color, shape, and size", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white object on a gray background"], "question": "which object is pink", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, background, white", "color, background, white"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["a white of a building with columns, stairs, and railings.", " a small building with windows and a roof."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["image, building, stairs", "roof, windows, building"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a house with a roof and beams."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, table, chairs", "building, plane, room"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["yellow, table, roof", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a black and white striped box.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, white", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c4c09479570943e2845fbd4c6a450568"], "properties": ["yellow, table, roof", "castle, island, house"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small house on an island"], "question": "which entity has a castle on an island?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a wooden staircase with a railing and table."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "956247bea850458199c651037d4b1d7f"], "properties": ["- color is red, blue, pink", "railing, table, staircase"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a table with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a white of a woman with her arms outstretched."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, tan, brown, orange", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a woman with her arms outstretched"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a wooden table with a plant on it."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["house, building, people", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a side table with a potted plant sitting on top of it"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["background, color, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, black, white", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, alternator, fan", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of an object on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "a2354f13774340d392fbf33564934aab"], "properties": ["color, shape, structure", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, pier, stairway", "a, color, white"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a desk and chair"], "question": "which entity has a pier?", "label": 0}, {"captions": [" of a green bush with tree-like leaves.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["leaf, color, shape", "a, desk, laptop"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small house with stairs and a roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, material, structure", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d rendering of a podium on a wooden floor"], "question": "which structure has a roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of two rocks with ice elements."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["location, field, gravestone", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a white of a gun.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, gun", "throne, stairs, tree"], "captions_pred_pc": ["of a white object on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d model of a throne with a tree on it"], "question": "which object has more stairs", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["size, color, design", "lion, statue, fountain"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d image of a lion statue on a wall"], "question": "which is not a fountain", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, black, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, roof, white, cubes", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, red, green, yellow", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, purple, suspended", "house, table, chair"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, roof, tray", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "c3a82df41875402285608ef13a55df57"], "properties": ["a knife, blade, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a piece of white plastic on a gray background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, skyline, buildings", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a window"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "770e577c9795435898209fd24191635b"], "properties": ["color, white, logo", "image, color, light"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a white 3d model of a small town"], "question": "which image is white", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, green", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["a, bird, hook", "books, paper, lamp"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": ["white candle with a yellow flame in a candle holder.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c3d85aaabddf4585b2468a5bca9f51d5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, flame, white", "a, material, clay"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white candle in the shape of a teapot", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, blue", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["s, batman, batman character", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["hat, bag, blanket", "house, fence, dog"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, yellow, black", "mountainous, landmass, state"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["chair, table, refrigerator", "hat, candy, strawberry"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["color, hat, flower", "hat, dress, racket"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "star wars stormtrooper "], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, size", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["s, stick, leaf", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with a green, wooden-structured roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a triangular roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["3d superman logo in red and yellow", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "7407a108e0354925b83b750339bc03df"], "properties": ["color, red, yellow", "platform, color, orange"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is wood, metal, metal", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a tree with green leaves."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "1a902b67735845198efb1b84f434b580"], "properties": ["color, horns, features", "leaf, color, green"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a room, a cake, a table", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["wing, knife, boat", "house, pool, balcony"], "captions_pred_pc": ["a black umbrella on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, roof, wooden", "house, roof, blue"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["door, lock, handle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a spider-like creature with long arms and legs."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, truss, suspended ceiling", "arachnid, leg, arm"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building with blue metal framing and structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, shape, and size", "color, blue, structure"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building under construction"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, shape, texture", "house, tree, hill"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["house, rock, pond", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["Parts, Luggage, Truck", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, color, blue", "house, fence, dog"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a house with a wooden-framed roof structure."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- color is red, blue, pink", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a clay pot with holes in it."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- color is white - shape is box - material is plastic", "hole, material, clay"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of a metal tool with a yellow handle, a laptop, and a ceiling light fixture."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "b714bf13e9e54acb867c2c1b3ccf8ae8"], "properties": ["Steel, Color, Yellow", "metal, laptop, light fixture"], "captions_pred_pc": ["a black and white illustration of a building", "for a black and white image of a corner shelf"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a telescope on a stand"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a house with a pink roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "6162909df6294848a8eea83c3aa9585b"], "properties": ["frame, roof, trusses", "color, roof, pink"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a roof that is pink", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small triangular-shaped object."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "2d02985030804209a26c2c53b96a06f9"], "properties": ["floor plan, heating system, ceiling light fixture", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["screen, keyboard, box", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a 3d rendered coffee table with a black and brown base and a square ceiling light."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "27a365f067004d9c9c58e40c12827ce0"], "properties": ["black, white, laptop", "baseColor, black, brown, tableTopColor, brown, black"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a patterned square on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a coffee table"], "question": "which table has a brown and black top", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, shape", "building, plane, room"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "a white of a woman with her arms outstretched."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, material, shape", "image, color, white"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "c8936ace72954650b4e2d84246964849"], "properties": ["s, stick, leaf", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, text", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["black, laptop, shelf", "black, roof, green"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["roof, air conditioner, house", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " of two rocks with ice elements."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["pattern, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black circle on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["pos machine, credit card machine, cash register", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, truss, lamp", "roof, truss system, framing"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, material, texture", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a spider's head", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a knife, blade, handle", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["resembles, octopus, squid, spider, robot", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity is a table?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a large metal building with a roof and truss structure."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "b85a99699ccd4bcba213322113bb253d"], "properties": ["runner, bed, bench", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " of a small wooden house with a roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, color, white", "roof, house, wooden"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a small house"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, color, white", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["face, mask, tail", "a, material, clay"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a goat's head", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " of a white human skull with broken bone elements."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, red, blue, structure", "color, white, skull"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", "a white of a man with arms outstretched."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["throne, stairs, tree", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", "two white spheres in a ."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of a white ball on a gray background"], "question": "which object is in a?", "label": 0}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small wooden house with a green roof."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["light switch, electrical outlet, furniture", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", " a house with a wooden-framed roof structure."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, black, visor", "roof, material, wood"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["house, tree, rock", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a small wooden house with a green roof."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["level, stairs, columns", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a large steel building with a pool."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof truss, chimney, suspended ceiling", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a woman in a white dress", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["64d0c9f538204632b5c2b3e4fe959248", "aae2c42740a04fd68068f5707111d26f"], "properties": ["dress, color, white", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a silhouette of a girl in a dress", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d sculpture of a woman in a dress walking", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": ["a white 3d mannequin human head.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, mannequin", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, structure, greenhouse", "building, roof, yellow"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a machine with a conveyor belt"], "question": "which roof is yellow", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["white, top, writing", "island, mountain, grass"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["background, color, white", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small white house with a roof."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["desk, chair, lamp", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, temperature, england", "houses, trees, road"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a white sofa, chair, and box."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "4c59733ebd634594a921b7ace60e4142"], "properties": ["floor, table, light", "sofa, chair, box"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a wooden roof structure with a pink roof."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["resembles, toy, castle", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a blue roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["apse, roof, floor plan", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a robot with a blue, purple, and white body."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, yellow, black", "body, color, white"], "captions_pred_pc": ["a black and white illustration of an airplane", "above a black and white image of a robot"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body?", "label": 1}, {"captions": ["3d snowman model with a wooden stick.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["44f41039246a4df59027c38023d5a576", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is wood - color is white - shape is 3d", "a, material, clay"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d snowman royalty-free 3d model preview", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["Steel, Color, Yellow", "house, fence, dog"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a potted plant on a wooden table or shelf."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["ceiling, light, desks", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, shape, text", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a rocky island?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a white of a woman with her arms outstretched."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, skyline, buildings", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a black keyboard and ceiling light fixture.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["2378a9b64c054ddcaea234990a3bdba4", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["Black, keyboard, fixture", "black, white, coffee table"], "captions_pred_pc": ["a black and white image of a train on a white background", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["3d model of a keyboard royalty free 3d model preview no.2", "a black and white 3d model of a building"], "question": "which object is black and white?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, texture", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a table with a staircase"], "question": "which entity has a square light?", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", "a white of a woman with her arms outstretched."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["wing, silver, white", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, containers", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- color is red, blue, pink", "color is white, yellow, plastic"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", "a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "3cbdd3ff48804f9a8041b890838613ec"], "properties": ["acropolis, city, building", "acropolis, city, building"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview"], "question": "which entity has a desert building?", "label": 0}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a large building with a roof and windows."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "32d1fbd3ee91426882290305f70021e6"], "properties": ["image, building, painting", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a building", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["floor, wall, roof", "table, structure, roof"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a building with many pillars"], "question": "which entity has a wooden structure", "label": 1}, {"captions": [" an old castle in a grassy field.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "18e392c5360146eda498c5edab25b15c"], "properties": ["field, grass, castle", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a building under construction"], "question": "which structure has more beams", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a white castle composed of small cubes."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, pattern", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a large building with a roof and windows.", " a small white house with a roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, windows, building", "roof, color, white"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which building has a roof that is white?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, shape, material", "lion, statue, fountain"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["- building is white, table is white, piles of paper are white", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d model of a snowy landscape"], "question": "which entity has a white building", "label": 0}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a large orange pumpkin."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["- color is white- shape is cube- material is plastic", "orange, large, pumpkin"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, pier, stairway", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white illustration of an open door", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which structure has a roof structure", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a machine gun with additional items."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["graffiti, chinese writing, door", "gun, type, machine gun"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a submachine gun"], "question": "which object is more likely to be used in a war", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, bird, green, yellow, blue", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a bird in flight", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["mug, color, brown, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a knife, blade, handle", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a white pendant floor lamp.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["073a3fb2e9bd42d1affed98ed2d64794", "b896a0898efe4059a776193c02132129"], "properties": ["height, lamp, shade", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black circle on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a light bulb on a pedestal royalty free 3d model preview no.", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a green mountain with trees and grass."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, metal, white", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["d6087023095446fbadef1721478373b2", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["door, roof, window", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "09f2cf267e954c958828325067bcc36a"], "properties": ["building, floor, columns", "island, terrain, rocks"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["apse, roof, floor plan", "building, plane, city"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, structure, wall", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which structure is more complex", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a wooden shed with a gray roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["frame, roof, trusses", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is gray", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, structure, suspended", "roof, beams, frames"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a wooden shed with a gray roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, red, blue, structure", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a shed with a gray roof"], "question": "which structure has a roof that is gray?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a large white and metal building with a metal roof structure."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof truss, beams, structure", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["white pendant light fixture ()", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "832a022cdcc74763b0571e04af4e592b"], "properties": ["color is white, material is metal, light source is incandescent", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a lego model of a futuristic airplane"], "question": "which entity is not a spaceship?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small white house with a roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["chair, table, refrigerator", "roof, color, white"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["building, tree, plane", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, pink, green", "roof, brown, flat"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a machine gun.", " of a clear glass display case with a square light fixture."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "980ded888795417f94b46750105e1597"], "properties": ["gun, barrel, caliber", "light, fixture, square"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a clear plastic box"], "question": "which object has a square light fixture", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["- material is plastic- shape is dice- color is white", "house, roof, wooden"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a house", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, material, structure", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["hat, sword, gun", "flower, color, pink"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["potted plant, table, shelf", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, pattern", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a knife on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "b896a0898efe4059a776193c02132129"], "properties": ["color, pier, stairway", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white illustration of an open door", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small white house with a roof."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, white, pink, eyes", "roof, color, white"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a brick wall with grass."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, shape, and size", "brick, grass, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["d795985a8bbe480282e349ff85fb1ef2", "bf18bfd89efd43389781050230467d58"], "properties": ["Contains, Objects, Various", "Lights, number, five"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person sitting on a chair", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, light, jewels", "a, outfit, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with a wooden-framed roof structure."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, black, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["house, roof, toothbrushes", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house with a blue roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, blue", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a pink and green cube and chair.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c6faf508072b4d0ea014bd9c748b79c3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, chair, pink, green", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a curved line made up of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a simple white chair", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, glasses, character", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, bird, hook", "plane, ship, bird"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a bird on a pile of rocks?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a wooden-cased radio."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["texture, spikes, eyes", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden log cabin.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["size, material, log", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["low poly, llama, kangaroo", "house, lake, pool"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["flower, color, pink", "roof, color, yellow"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, handle, gray", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d image of a white tray with an intricate design"], "question": "which object has a tray?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["apse, roof, floor plan", "color, frame, shape"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building structure"], "question": "which building structure has a frame?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "be1376023c274bdda995d54f3694157f"], "properties": ["floor, wall, roof", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "b896a0898efe4059a776193c02132129"], "properties": ["floor plan, heating system, ceiling light fixture", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a house", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "6b745457e06840119058883b35f78f58"], "properties": ["shape is box, color is white, door is present", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["houses, trees, road", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small wooden house."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, material, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a black building.", " a house with a wooden-framed roof structure."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, black, building", "roof, material, wood"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" a small white box with a green light.", " a small house on a hill in a field."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, white, light", "house, hill, field"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small white box", "a black and white image of a small house"], "question": "which object is in a field?", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a large orange pumpkin."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["bedside table, wheels, white", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a yellow boat/submarine with a red arrow and light."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "9b9c31fe4e6b4004a4cb34176f329c04"], "properties": ["roof, windows, building", "color, shape, light"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of a letter 'l' on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d rendering of a table with an object on it"], "question": "which entity is a boat?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "1d1328346a464d2482463d6d5288e934"], "properties": ["graffiti, chinese writing, door", "painting, door, wall"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door with a painting on it?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a potted christmas pine tree."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["roof truss, insulation, suspended ceiling", "a, color, green"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of an egyptian sarcophagus."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white circular pattern on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "b896a0898efe4059a776193c02132129"], "properties": ["black, roof, green", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, temperature, england", "house, staircase, table"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a house with a wooden-framed roof structure."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, texture", "roof, material, wood"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "f3edc84dc71649c1a11270437279255b"], "properties": ["texture, spikes, eyes", "hippo, hind, legs"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity has hind legs", "label": 1}, {"captions": [" of a soldier with outstretched arms", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4982a7018e6f4503b5708c714b733ab4", "c3a82df41875402285608ef13a55df57"], "properties": ["arms, outstretched, soldier", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bird's wing", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a soldier with his arms outstretched royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white ornate airplane design.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["frame, roof, trusses", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a spider-like creature with long arms and legs."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- color is white- shape is cubes- number is 1", "arachnid, leg, arm"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", "a wooden-cased radio."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["blue, lid, handle", "case, material, wood"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a wooden staircase with a railing and table."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "956247bea850458199c651037d4b1d7f"], "properties": ["house, tree, rock", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a futuristic white sports racing car."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["fireplace, bench, log", "color, white, futuristic"], "captions_pred_pc": ["a black and white illustration of a snowflake", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a futuristic sports car"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "92498f398e244020a867686729633610"], "properties": ["a, laptop, teddy bear", "a, house, cat, dog"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d model of a person standing in front of a wall"], "question": "which entity has a house?", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small white house with a roof."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["throne, chair, building", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a wooden-framed roof structure."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, grass, moss", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "c3a82df41875402285608ef13a55df57"], "properties": ["Cabinet, Drawers, Filing", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a piece of ancient pottery"], "question": "which object is made of stone", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "bded33af34104b9686b845dfd18309a9"], "properties": ["door, panel, staircase", "table, staircase, light"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a small table with a staircase"], "question": "which staircase is integrated into a table?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, red, blue, green", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a set of stainless steel shelves"], "question": "which building has a green roof", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["lamp, harp, bowl", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["island, mountain, grass", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white illustration of a window"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d rendering of a small house with a covered porch"], "question": "which entity is not a floating small island with trees", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "411c164757fc4de68dfecb35fa858223"], "properties": ["color is white, yellow, plastic", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, model, white house", "table, stairs, ladder"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fee48e4d25934ebb85ef6888d517d398", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["red, rock, ceiling", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a circular object with dots on it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " an old lantern with moss on it."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color, style, pixel", "moss, lantern, old"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a black and white image of an old lantern"], "question": "which object has moss on it", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["graffiti, chinese writing, door", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a concrete wall"], "question": "which entity is more likely to have a door", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, color, purple", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of the roof of a building"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" of a white round table with a red accent.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fea62a865b4e40899d95785533818329", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, red", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "of a white candle in the shape of a buddha"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, structure, house", "structure, material, pool"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["black, laptop, shelf", "torso, breasts, pattern"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" of a human skull", " a house with a wooden-framed roof structure."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a large metal building with a roof and truss structure."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "b85a99699ccd4bcba213322113bb253d"], "properties": ["house, fence, dog", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white box with a green light."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["roof, purple, suspended", "color, white, light"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a small white box"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["a, island, resembles, hawaii", "meat, bread, sausage"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " a large building with a roof and windows."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "32d1fbd3ee91426882290305f70021e6"], "properties": ["3ds max, obj, fbx, c", "roof, windows, building"], "captions_pred_pc": ["a black and white insect on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a sword with a wooden handle."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["resembles, octopus, squid, spider, robot", "handle, material, wood"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a sword"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, containers", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "d81d13362ae04371bb2cba46e4939665"], "properties": ["cup, bottle, chessboard", "hat, bow, arrow"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, yellow, roof, metal", "striped, white, black"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a black and white of a knife/sword with a handle."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["house, color, white", "image, color, black and white"], "captions_pred_pc": ["above a black and white drawing of a bench", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["castle, island, house", "color, shape, color"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a lamp, a syringe, a light pole", "house, tree, hill"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["door, roof, pool", "roof, brown, flat"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a table and stool"], "question": "which house has a brown roof?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["a, b, c", "building, color, black and white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a circular fence with black and white stripes"], "question": "which entity is a building?", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, pink, green", "beige, white, round"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["boat, table, chairs, umbrella, solar panel", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["a, roof, soup", "hat, color, tan"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of an object with a hole in it"], "question": "which object has a hole in it", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a spiral staircase with railings."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["mossy, rock, rocky", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a wooden billiard table with legs."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is wood, metal, metal", "legs, material, wood"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a white of a small archway gate."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["roof, color, purple", "image, color, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white illustration of an arch"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["rusty, sink, graffiti", "metal, cross, clock"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white image of an object on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wheeled hospital bed", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "c3a82df41875402285608ef13a55df57"], "properties": ["wheeled, bed, hospital", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, and size", "resembles, sculpture, rock"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, candy, strawberry", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 0}, {"captions": ["modern tan leather lounge chair.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, tan, leather", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a large steel building with a pool."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, rock, pond", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a black and white striped box."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["house, roof, toothbrushes", "color, black, white"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["house, staircase, window", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a potted christmas pine tree."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["runner, bed, bench", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, style, pixel", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white drawing of a floor plan"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of the roof of a building"], "question": "which entity is not made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a large building with a roof and windows."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "32d1fbd3ee91426882290305f70021e6"], "properties": ["house, roof, wooden", "roof, windows, building"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["color, light, jewels", "hat, dress, racket"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity is a woman?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a white glass beer mug."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, green, handle", "color, white, glass"], "captions_pred_pc": ["of a small black object on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a wooden billiard table with legs."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, texture", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "5850d5c7223447db816081d50292fec0"], "properties": ["house, tree, pool", "structure, material, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a wooden billiard table with legs."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, texture", "legs, material, wood"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "cafc467aff2643e8b70149c4944263ee"], "properties": ["texture, spikes, eyes", "wing, knife, boat"], "captions_pred_pc": ["a black and white drawing of a flower", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a white castle composed of small cubes."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of cubes", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, color, red", "table, staircase, light"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small white building with stairs and shelves."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "9e1f64d4fd514059be934077717536dc"], "properties": ["roof, color, blue", "building, stairs, shelves"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["castle, island, house", "stair, table, chair"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "star wars stormtrooper "], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, wheel, helmet", "a, color, white"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a black and white striped box."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, table, blocks", "color, black, white"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, green, lawn", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "a2354f13774340d392fbf33564934aab"], "properties": ["base material is wood, color is red, message is welcome to northwich", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a sword and knife.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["a, sword, knife", "room, door, shelf"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "6b745457e06840119058883b35f78f58"], "properties": ["building, color, black and white", "roof, color, blue"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a house with a green, wooden-structured roof."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a house with a triangular roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", "white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "92052c493bf141a08b56f30f9c5e2d61"], "properties": ["a, bowl, cup", "light, toilet, faucet"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a white plastic toilet paper holder on a gray background"], "question": "which entity has a light", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["Black, Shelf, Metal", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house with a roof.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "06a1c233fb444830b577aa06e2c01294"], "properties": ["roof, house, small", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a black shark", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "c3a82df41875402285608ef13a55df57"], "properties": ["black, mouth, teeth", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is not a shark?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, trusses, beams", "house, pool, balcony"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["smiley-faced banana .", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "c3a82df41875402285608ef13a55df57"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "5414d75e47104589837f3df8b6de6d22"], "properties": ["a, rock, paper", "beige, white, round"], "captions_pred_pc": ["for a flock of birds in the sky", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small, snow-covered house.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "5414d75e47104589837f3df8b6de6d22"], "properties": ["house, snow, cover", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a piece of broken glass on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["Cabinet, Drawers, Filing", "meat, bread, sausage"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, truss, structure", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["of a metal grate on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a white rocket ship.", " of a black tray with three green rings on it."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, shape, size", "color, black, rings"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d rendering of a tray with three rings on it"], "question": "which object is black?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "97e000ff41094665afd94ea565da8b13"], "properties": ["low poly, plant, white", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["room, bed, desk", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with a cake?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white rocking chair with a curved backrest."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["background, color, white", "backrest, curved, yes"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a green mountain with trees and grass."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, rock, paper", "mountain, grass, tree"], "captions_pred_pc": ["for a flock of birds in the sky", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "96d127abd21049689918e671ec613ef8"], "properties": ["color, horns, features", "axe, hammer, spoon"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object has a hammer?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a white of a man with arms outstretched."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a clay pot with holes in it."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["light source, fixture, color", "hole, material, clay"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["room, door, shelf", "island, terrain, water"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an empty room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small house with a pond and situated on a rock."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "92859eb82a344134806b37cc209927c6"], "properties": ["color, background, white", "house, rock, pond"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a rock", "label": 1}, {"captions": ["a baseball card in a clear plastic case.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5046b4bb61e4480a8c0e8911c2053a04", "c3a82df41875402285608ef13a55df57"], "properties": ["case, baseball, card", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a pencil on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photo of a hockey player's autographed jersey hanging on a wall", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a lantern on a table.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "f1b557775310478893242180defa4d80"], "properties": ["a, table, lantern", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a lantern on a table", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, material", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a decorative tile", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["resembles, octopus, squid, spider, robot", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a table with a staircase"], "question": "which entity has a light?", "label": 1}, {"captions": [" a purple chair with holes in it.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, purple, holes", "roof, ceiling, hole"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof and a square ceiling with a hole?", "label": 1}, {"captions": [" a robotic warrior with a sword.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["weapon, sword, robot", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white image of a map with dots"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof trusses, beams, suspended ceiling", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["above a black and white drawing of a building", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a building with a roof"], "question": "which building has a purple roof?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "d81d13362ae04371bb2cba46e4939665"], "properties": ["apse, roof, floor plan", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, shape, material", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white image of a metal structure", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which entity is a wire sculpture?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a wooden billiard table with legs."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["texture, spikes, eyes", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": ["white cylindrical 3d object resembling a roll of soap or tube of cream.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d8d6903a2dd54b8e9aa12fad2155b372", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["cylinder, white, roll", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white pillow on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white bunny head", "star wars stormtrooper "], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, head", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a star wars stormtrooper"], "question": "which is not a white color", "label": 0}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a character wearing glasses and a hat."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["low poly, plant, white", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", "star wars stormtrooper "], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, pier, railings", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["food, leaves, shredded paper, rocks", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["shape is hot dog, design is dragon, color is black", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a large house with a roof on a platform."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "cb3e09a301b746918a682a595037c7f7"], "properties": ["a, desk, laptop", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["mug, color, brown, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house with a roof and beams."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["painting, door, wall", "roof, beams, house"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, texture", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d rendering of a small white table with a chair"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "c3a82df41875402285608ef13a55df57"], "properties": ["color, helmet, airplane wing", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a large metal building with a roof and truss structure."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["desk, chair, lamp", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["house, roof, green", "books, paper, lamp"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a building with a black roof", "a black and white photograph of a toilet paper holder"], "question": "which object is not a pile of paper?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, truss, suspended ceiling", "roof, truss system, framing"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, material, frame", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity is not a building structure?", "label": 0}, {"captions": ["a 3d white ring adorned with flowers and leaves.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["a small 3d purple teapot and elephant.", "a white glass beer mug."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, white, material, ceramic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a house with a roof and beams."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a person's face", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " a house with a roof and beams."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor, stairs, bathroom", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small table", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a white table.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["19a580515406462d9e73213276a8e12d", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, material, shape", "face, mask, tail"], "captions_pred_pc": ["a black and white image of a patterned surface", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a white bench on a white background", "a 3d model of a goat's head"], "question": "which entity is a mask?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a house with wooden framing and trusses."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- color is white- shape is cubes- number is 1", "frame, trusses, wood"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a window"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, bird, hook", "house, tree, hill"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["ceiling, light, desks", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["green, hat, cream", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a pair of earrings", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house with a roof and beams."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["fireplace, bench, log", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a snowflake", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a building with a roof"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a white building with a red roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, air conditioner, house", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a window", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "06a1c233fb444830b577aa06e2c01294"], "properties": ["light, toilet, faucet", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, truss, lamp", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "c3a82df41875402285608ef13a55df57"], "properties": ["a, roof, soup", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, and material", "gold, ring, animal"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is made of gold", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, blue, components", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, green, squirt gun", "blue, curved, resembles"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " of a black tray with three green rings on it."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, yellow, black", "color, black, rings"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d rendering of a tray with three rings on it"], "question": "which object is black", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["color, table, ceiling", "building, ceiling, kitchen"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, gold", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, bird, lake", "hat, bow, arrow"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["- color is white - shape is box - material is plastic", "house, fence, dog"], "captions_pred_pc": ["a black and white square with dots all over it", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house with a roof and beams."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["turrets, flags, towers", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white building with a red roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, and size", "color, white, roof, red"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a white of a woman with her arms outstretched."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["color, white, material, ceramic", "building, fence, snowy"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which is not a building", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a wooden chair."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b2fc4bd184944704ad43d3a31817a676"], "properties": ["Arms, Legs, Color", "wood, chair, seat"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a close-up view of the bristle brush on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a chair"], "question": "which chair has a seat made of wood", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, material, frame", "roof, metal, white"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "4a889132cc444d10bfcbf6c760984416"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "a, color, white"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a desk and chair"], "question": "which entity has a white bird with black eyes?", "label": 0}, {"captions": [" a white rock with green grass and moss on it.", "three white paper windmills and a city model with a nativity scene silhouette."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "fa5ee6165f31465d9d75d046818f4006"], "properties": ["color, grass, moss", "windmills, silhouette, city model"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white photo of a pair of sunglasses"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a cityscape on a white background"], "question": "which entity is a silhouette?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a barrel and a cube together."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["roof, brown, flat", "a, barrel, cube"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" an old lantern with moss on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["62925f26fd624310bd6b31136fe8e706", "c3a82df41875402285608ef13a55df57"], "properties": ["moss, lantern, old", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of an old lantern", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a large metal building with a roof and truss structure."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["chair, table, refrigerator", "roof, truss, structure"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a yellow and blue toy submarine."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, material, structure", "color, yellow, blue"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a small white building with stairs and a lid."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["bed, desk, window", "building, stairs, lid"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a small white building with stairs and a lid."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["painting, door, wall", "building, stairs, lid"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "bf18bfd89efd43389781050230467d58"], "properties": ["house, lake, pool", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["computer desk, laptop, monitor", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, helmet, airplane wing", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor plan, ceiling light, color", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, shape, and size", "sphere, pedestal, statue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a wooden shed with a gray roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, text", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small triangular-shaped object."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "2d02985030804209a26c2c53b96a06f9"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "window, arches, wall"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, green, lawn", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a barrel and a cube together."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["ceiling, light, desks", "a, barrel, cube"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a pink-framed building structure with beams and trusses.", " a building with a metal and wooden pole structure."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["frame, beams, trusses", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of two rocks with ice elements."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof trusses, beams, suspended ceiling", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, staircase, light", "house, pool, balcony"], "captions_pred_pc": ["a black and white photo of the letter g", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["axe, hammer, spoon", "room, furniture, window"], "captions_pred_pc": ["of a black lace belt on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a white building."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "4decc6a3d12c47888f8fec543153a985"], "properties": ["background, color, white", "color, white, building"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a bottle"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building on a white background"], "question": "which building is white", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "bf18bfd89efd43389781050230467d58"], "properties": ["leaf, color, shape", "Lights, number, five"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["roof, structure, truss", "house, building, people"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a, roof, soup", "box, handle, gun"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a multicolored metal building structure with a roof."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, truss, structure", "color, roof, structure"], "captions_pred_pc": ["of a metal grate on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a barn structure"], "question": "which building has a roof", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a wooden house with a roof and framing."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "4634a9bdf54549a99f68be77f1464b0a"], "properties": ["roof, structure, house", "roof, framing, material"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of an abstract pattern"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a barn structure"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "c3a82df41875402285608ef13a55df57"], "properties": ["roof truss, chimney, suspended ceiling", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a large metal building with a roof and truss structure."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, yellow, black", "roof, truss, structure"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a 3d white cube with windows resembling a building."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "4a07a5293f024bb0a353954a056ef626"], "properties": ["wall, stairs, castle", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a cube"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white of a spaceship and building."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, light, jewels", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a robot with a blue, purple, and white body."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, white, black, white", "body, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a robot"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a robot standing in the middle of a white background"], "question": "which object has a white body", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a sword with a wooden handle."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "bf448dbb4b6a43d89b2514929e8f7c43"], "properties": ["color, background, white", "handle, material, wood"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a sword on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a black and white image of a sword with two blades"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a wooden shed with a gray roof."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["building, floor, columns", "roof, color, gray"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is gray", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " of a small white building with stairs and a lid."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["turrets, flags, towers", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof truss, insulation, suspended ceiling", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with a green, wooden-structured roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, white, red, pink", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a white of a man with arms outstretched."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["floor, staircase, balcony", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a wallet", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a white building with a red roof."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, yellow, chimney", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "887e410d07854396b563325ae1929583"], "properties": ["color, hat, glasses", "hat, mouse, bear"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "c8936ace72954650b4e2d84246964849"], "properties": ["color, material, frame", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of two rocks with ice elements."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, island, resembles, hawaii", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, texture", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["house, table, chair", "room, staircase, bus"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a group of ponies in a row."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["light switch, electrical outlet, furniture", "group, row, pony"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "bf18bfd89efd43389781050230467d58"], "properties": ["a lamp, a syringe, a light pole", "Lights, number, five"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "46903bf029934b1989bc062dcb0a5531"], "properties": ["house, tree, rock", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a small building with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, building, small", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a building with a roof"], "question": "which building has a roof made of wood", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "97f487941d26472294e005fa97c403be"], "properties": ["color, table, blocks", "color, white, green"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", "a featuring a staircase, small red and white building, red box, table, and ceiling light."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "11e2e8ca1f8849e394dfbf532c6d7ae0"], "properties": ["stair, table, chair", "a, building, staircase"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "for a black and white photograph of a piece of metal"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a staircase in the middle of a floor"], "question": "which staircase is in a building?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["resembles, toy, bookshelf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["bread, chocolate, cake", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a loaf of bread", "a black and white photograph of a small town"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["55b26130f1514032be078e13fd982905", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, material", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box is white", "label": 1}, {"captions": [" of a green pickle", " a clear glass table with metal legs and balls on top."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is green, shape is cylinder, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["of a black object on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " of two rocks with ice elements."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, material, texture", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, helmet, airplane wing", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["stacked, racks, toy train", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, roof, structure", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a building with a roof"], "question": "which structure has a roof made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, shape, and material", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d image of a white tray with an intricate design"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "3d snowman model with a wooden stick."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "44f41039246a4df59027c38023d5a576"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "- material is wood - color is white - shape is 3d"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d snowman royalty-free 3d model preview"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- color is white- shape is cube- material is plastic", "roof, metal, white"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a large white box"], "question": "which is not a building", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["house, roof, toothbrushes", "roof, structure, wall"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a building with a roof"], "question": "which house has a brick wall?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a small blue robot with a windmill."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, hat, handle", "color, blue, robot"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": [" a small house with a red roof.", "red swivel chair with a white base ."], "sample_ids": ["085db9059b744673b5623b5338e02196", "7b78fb47a2684906bcc22ac6e848999a"], "properties": ["roof, red, house", "color, red, base, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a sphere made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a modern chair"], "question": "which object has a white base?", "label": 1}, {"captions": ["white pendant light fixture ()", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, material is metal, light source is incandescent", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "18e392c5360146eda498c5edab25b15c"], "properties": ["red, mouse, handwriting", "frame, beams, trusses"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small wooden house."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["balcony, stairs, house", "house, material, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a white castle composed of small cubes."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is wood, rusty, horned", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, black, white, handle, armrest", "frame, beams, trusses"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a spiral staircase with a railing in a small building."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["ceiling, light, desks", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, b, c", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, white, containers", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "bded33af34104b9686b845dfd18309a9"], "properties": ["frame, screen, color", "table, staircase, light"], "captions_pred_pc": ["of a black and white cross on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["yellow, table, roof", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, wheel, helmet", "houses, trees, road"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["size, material, lighthouse", "metal, rusted, paper"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "white of a rhino head with horns."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "8481aade84de47cab1a9accf8067e678"], "properties": ["house, building, people", "image, rhino, head"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " of two rocks with ice elements."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["light, floor, ceiling", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "c1536f68727947ff9e7810799fac583a"], "properties": ["floor, wall, roof", "level, stairs, columns"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of an apartment building"], "question": "which entity has more levels", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "97e000ff41094665afd94ea565da8b13"], "properties": ["shape, color, material", "roof, material, wood"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "a17477b445b3443189dad22f768b888b"], "properties": ["yellow, shape, wingspan", "roof, pillar, stairs"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a train, a ship, a boat", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a blue roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["bed, desk, window", "roof, color, blue"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a, roof, soup", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a woman's chest"], "question": "which entity has a shirt with a hexagonal pattern?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, desk, laptop", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["854757ca755240f8b04576d899349151", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["cabinet, room, shelf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a two-story small apartment building with a roof."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["graffiti, chinese writing, door", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small blue and red blimp.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, shape, size", "color, silver, white"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a 3d model of a silver ball on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, staircase, window", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a house with a green, wooden-structured roof."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["shape, bathroom, refrigerator", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a house with a triangular roof"], "question": "which structure has a green roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["runner, bed, bench", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a white and blue building with a black roof."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, truss, suspended ceiling", "color, white, blue, roof, black"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["base, speaker, light", "house, table, chair"], "captions_pred_pc": ["above a black and white illustration of a clock", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["white, windows, lid", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of dots on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house with a blue roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["fireplace, bench, log", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small, snow-covered house."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, green, lawn", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, blue, green", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, logo, handle", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a purse with a chain", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a house with a wooden-framed roof structure."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, eagle, wood", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["black, white, coffee table", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white 3d model of a building", "a white kite flying in the air against a gray background"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["bed, desk, window", "building, plane, city"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring multiple animal heads, including a fox, chihuahua, and cat with ears."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "f37b1515c52248d887b9b415576f5253"], "properties": ["color, grass, moss", "animal, head, fox, chihuahua, cat"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a butterfly shaped object"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a fox's head"], "question": "which entity is a painting?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "e2645ac544844f3c981203134a99c30c"], "properties": ["color, orange, white", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, air conditioner, house", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small white building with stairs and a white table."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, trusses, beams", "building, stairs, table"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "97e000ff41094665afd94ea565da8b13"], "properties": ["wood, board, shelf", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " of a small white building with stairs and a lid."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["furniture, room, kitchen", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["house, tree, pool", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a bench on a wooden floor"], "question": "which house has a staircase", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a multicolored metal building structure with a roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, table, ceiling", "color, roof, structure"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "building, plane, city"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["light source, fixture, color", "cover, black, plastic"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a small house with a blue roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, blue", "house, pool, balcony"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, and size", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, green, lawn", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["hat, candy, strawberry", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["roof truss, insulation, suspended ceiling", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a black and white of a knife/sword with a handle."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["size, material, color", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a small square with black dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, base, warning", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "bf18bfd89efd43389781050230467d58"], "properties": ["a, bird, hook", "Lights, number, five"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["roof, green, lawn", "house, color, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a tree stump and rock with flowers on them."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["building, tree, plane", "flower, rock, tree stump"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, color, white", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a box with a lot of items inside"], "question": "which building has a room?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["earbuds, light, ring", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white dots pattern on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, structure, suspended", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a piece of lace", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a lidded trash can."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b166e9a1c5d540c19a1075b7f064f42f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "lidded, trash can, color black"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a circle of dots on a white background a circle of dots on a white background vector illustration of a circle of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a trash can"], "question": "which trash can is black", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a house with a roof and beams."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, orange, white", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a wooden roof structure with a pink roof."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["image, color, pink", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "a24872444e5c468a9264d503a9ca7276"], "properties": ["shape is hot dog, design is dragon, color is black", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "09f2cf267e954c958828325067bcc36a"], "properties": ["white, top, writing", "island, terrain, rocks"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "bded33af34104b9686b845dfd18309a9"], "properties": ["s, stick, leaf", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, pool, balcony", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a paper clip and a lock?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, pink", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which structure has a chimney", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, gun", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "7f8942ef51dd4246993a587a12df168c"], "properties": ["cover, torn, open", "house, yard, surrounding buildings"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["room, bed, desk", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["s, cat, fish, person, pig, bird", "plane, ship, bird"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a wooden staircase with a railing and table."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "956247bea850458199c651037d4b1d7f"], "properties": ["box, cylinder, bottle", "railing, table, staircase"], "captions_pred_pc": ["a black and white dots pattern on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a table with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is white- color is white- texture is textured", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a cube", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["house, tree, pool", "room, staircase, bus"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large house with a roof on a platform."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, purple, suspended", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a small black box on a purple square.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["75f209e543c046669099190953616acc", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["a black and white image of the letter l", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["resembles, octopus, squid, spider, robot", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "411c164757fc4de68dfecb35fa858223"], "properties": ["a, material, steel", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a sea urchin"], "question": "which entity is not a shell?", "label": 0}, {"captions": [" a yellow and white structure with yellow poles.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, shape, poles", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a desk and chair"], "question": "which entity is not a building?", "label": 0}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["food, leaves, shredded paper, rocks", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", "a white teapot with pink flowers and a handle."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "f6c5e8931d164979a71914127c7e5438"], "properties": ["color, black, white, handle, armrest", "color, white, handle"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white dots on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a white tea kettle with a black handle and floral design"], "question": "which object has a handle", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, skyline, buildings", "floor, wall, roof"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, logo, handle", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a purse with a chain", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, room, ceiling", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Cabinet, Drawers, Filing", "island, terrain, water"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["a, plane, small plane", "mossy, rock, rocky"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which object is not a plane?", "label": 0}, {"captions": [" a two-story building with stairs and a three-tier display.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "e694d53545d449319a64cceb0280c3c6"], "properties": ["tiers, building, stairs", "3d, slide, swing"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a building surrounded by various structures, including a skyscraper, in a city setting."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "3b780ced7a814f86b3ee67f3596dddce"], "properties": ["building, tree, plane", "building, skyscraper, city"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of an airplane"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a knife with a building on top of it"], "question": "which entity is in a city setting?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color is white, material is plastic, shape is tube", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a white object on a gray background", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["low poly of a christmas tree", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "7f8942ef51dd4246993a587a12df168c"], "properties": ["low poly, christmas, tree", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a small, round object", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, black, white", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a house with a blue roof.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, color, blue", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small wooden house."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, table, ceiling", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, leg, tail", "color, head, white and brown"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["metal, rusted, paper", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["adec10493e06436c967d5797f7085225", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, material, shape", "a, color, red"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a gray, metal pillar/cylinder."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a, color, white", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "white of a rhino head with horns."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "8481aade84de47cab1a9accf8067e678"], "properties": ["a knife, blade, handle", "image, rhino, head"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a penguin skull in black and white"], "captions_pred_image": ["a piece of white plastic on a gray background", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "096e42b466ec438d95c5d89a85191534"], "properties": ["base material is wood, color is red, message is welcome to northwich", "white, rock, shell"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["frame, beams, trusses", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small house with stairs and a roof."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["Drawer, Pattern, White", "roof, stairs, house"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6b745457e06840119058883b35f78f58", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, color, blue", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a white cube-shaped shelf", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1fc0969de9bf47cab82cae4cc8fe6c2f", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["shape is cube, color is white, material is wood", "grass, plants, rocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, orange, leather", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, base, warning", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": [" a silver vintage racing car.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, silver, vintage", "color, white, gold"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["island, terrain, water", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a house with a wooden-framed roof structure."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, color, case", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a small house on a hill in a field."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["tv, chair, laptop", "house, hill, field"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a black and white image of a small house"], "question": "which entity is outside?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["stair, table, chair", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, shape, texture", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a bee and a rubik's cube next to each other."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "83a27b2b104e4f7f8b42c3c8654153db"], "properties": ["houses, trees, road", "bee, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a bee next to a cube"], "question": "which entity is black and white", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white map of germany on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["chair, table, refrigerator", "table lamp, ceiling light, table"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "an oval table with a mouse on top of it"], "question": "which entity has a table lamp", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " of a hammer with a long metal handle."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["shape, color, material", "handle, metal, long"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, plane, town", "house, hill, forest"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a black and white of a knife/sword with a handle."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, material, structure", "image, color, black and white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, pattern", "a, color, red"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a castle with two towers"], "question": "which object is red?", "label": 0}, {"captions": ["an orange and white striped rocket model.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, orange, white", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small wooden house with a green roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["room, bed, desk", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["windmills, silhouette, city model", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, roof, green", "giraffe, bench, flower"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a red and white robot."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, shape, and size", "color, red, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is red and white?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, white, black, white", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a spider-like creature with long arms and legs."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, roof, white, cubes", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house with a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, house, small", "island, mountain, grass"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "9b6a637ead444bd28452178c74697653"], "properties": ["image is royalty-free, beaver, skateboard", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which image shows a beaver on a skateboard?", "label": 0}, {"captions": [" of a green-leafed plant in a white hanging pot.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, green, leaf", "color, black, visor"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a black motorcycle helmet with a visor on top"], "question": "which entity has a visor", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "97f487941d26472294e005fa97c403be"], "properties": ["color, white, background, gray", "color, white, green"], "captions_pred_pc": ["above a black and white photograph of an object", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, bird, hook", "moss, mushroom, grass"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["c27b018330da406680e58b94266c310b", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["frame, material, wood", "metal, cross, clock"], "captions_pred_pc": ["a black line on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a large steel building with many columns and a pool."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["door, roof, pool", "building material, pool, steel"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, stairs, shelves", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a building with stairs", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, furniture, black", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of the roof of a building"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "1c389c8f46b345838e515b9747c1f982"], "properties": ["shape, color, material", "plate, fruit, knife"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a person riding a skateboard on a wooden surface"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green skull and sphere.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, skull, sphere", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a train, a ship, a boat", "3d, slide, swing"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["light, toilet, faucet", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small white building with stairs and shelves."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "9e1f64d4fd514059be934077717536dc"], "properties": ["Cabinet, Drawers, Filing", "building, stairs, shelves"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small wooden house with a green roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["s, plane, house", "roof, color, green"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, hill, forest", "water, boat, rock"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small triangular-shaped object."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "2d02985030804209a26c2c53b96a06f9"], "properties": ["roof, color, yellow", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a brick building with a roof structure and roof truss."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "84e8acad28664a738df69d719df9e263"], "properties": ["color, light, jewels", "roof, structure, truss"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["small airplane flying in the air.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["903dd2d9d2b7499580a0c1645df88a22", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["airplane, fly, air", "color, white, gold"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a panda holding a light bulb", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of an airplane royalty-free 3d model", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, roof, green", "house, tree, hill"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill", "label": 0}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, temperature, england", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, color, white", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small white house with a roof."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, roof, blue", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["lighthouse, fountain, crater", "building, plane, room"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "e80eca95874c4bffb8aec54044824d87"], "properties": ["floor plan, bathroom, pool", "arrow, mountain, area"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a line with a square on it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity has a mountain range?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["apse, roof, floor plan", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " of a house with a roof."], "sample_ids": ["f1b557775310478893242180defa4d80", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["shack, roof, door", "roof, house, roof"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a bench and lamp post.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["A, bench, lamp post", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a spider-like creature with long arms and legs."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["water, boat, rock", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["texture, spikes, eyes", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, texture", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "92498f398e244020a867686729633610"], "properties": ["color, material, structure", "a, house, cat, dog"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a person standing in front of a wall"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["building, ceiling, kitchen", "building, plane, city"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", " of two rocks with ice elements."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["candle, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a shower head", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a 3d image of two rocks on a gray surface"], "question": "which object is more likely to be a rock", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["food, leaves, shredded paper, rocks", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["hat, sword, gun", "table, staircase, light"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["resembles, toy, bookshelf", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a yellow and blue toy submarine."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["- material is plastic- shape is dice- color is white", "color, yellow, blue"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a submarine toy"], "question": "which toy is made of plastic", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", " of a small white building with stairs and a lid."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["description, material, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, material, structure", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, color, purple", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "3d white model featuring a boat, block, turbo text, puma logo, box, and shelf."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "1fe7018cb01a4be58c0f211b8e2db93f"], "properties": ["a, model, white house", "3d, model, white"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "of a black and white usb drive with the word 'turbo' on it"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d printed object with the word turbo on it"], "question": "which model is white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a large white and metal building with a metal roof structure."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, yellow, chimney", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a tree stump and rock with flowers on them."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["s, stick, leaf", "flower, rock, tree stump"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of two rocks with ice elements."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["light source, fixture, color", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a small wooden house with a green roof."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, truss, structure", "roof, color, green"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "aae2c42740a04fd68068f5707111d26f"], "properties": ["color, temperature, england", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["desk, chair, table", "furniture, room, kitchen"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a pile of mint green soap cubes.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, mint, soap", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a 3d model of a group of trees"], "question": "which entity has more plants", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["runner, bed, bench", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a long, curved structure", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a wooden pirate chest with a metal roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "5720efe7e68e434fa244d4978e623114"], "properties": ["A, a, a", "metal, roof, chest"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white drawing of dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a wooden chest"], "question": "which chest has a metal roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["resembles, octopus, squid, spider, robot", "house, fence, dog"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a large house with a roof on a platform.", " of two rocks with ice elements."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, platform, house", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, black, shade, black", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a wooden roof structure with a pink roof."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["earbuds, light, ring", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d printed model of a small white house.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d62a9376f8be4c7585d15ccf68c51239", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a building with a lot of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small white birdhouse", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, green", "house, rock, bird"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, roof, soup", "island, terrain, water"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["a, bird, lake", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small red renault clio car.", " a spider-like creature with long arms and legs."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color is red, make is renault, model is clio", "arachnid, leg, arm"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which is not a arachnid", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "d81d13362ae04371bb2cba46e4939665"], "properties": ["turrets, flags, towers", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "6b745457e06840119058883b35f78f58"], "properties": ["color, material, frame", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house with a steeple on top"], "question": "which building is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["d6087023095446fbadef1721478373b2", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["door, roof, window", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a white, open shelving unit"], "question": "which building has a door", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, structure, wall", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", "star wars stormtrooper "], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["label, color, shape", "a, color, white"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "a17477b445b3443189dad22f768b888b"], "properties": ["a, door, suitcase", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden cube.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "20a02705a66f460492e07345e84a62ed"], "properties": ["shape is cube, material is wood, color is brown", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, poles", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a, plane, small plane", "throne, chair, building"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a stone wall featuring carvings and statues."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["building, tree, plane", "carving, statue, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d image of a group of statues on a wall"], "question": "which entity has fewer buildings", "label": 1}, {"captions": [" a small building with windows and a roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, windows, building", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": [" a small building with a roof.", " a small house with a roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, building, small", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["orange, forklift, parking lot", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d image of a small island in the middle of a lake"], "question": "which has more grass", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, tail, cord", "color, sphere, molecule"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["books, paper, lamp", "house, tree, hill"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "06a1c233fb444830b577aa06e2c01294"], "properties": ["bedroom, bathroom, bed", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a black and white image of a house in the middle of a field"], "question": "which entity has a house", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["house, rock, pond", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["house, lake, pool", "a, building, coin, ball"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["Drawer, Pattern, White", "hat, skull, bread"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, color, yellow", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a room", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a building with a roof"], "question": "which roof is not a greenhouse", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["earbud, earpiece, earpiece", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a spider-like creature with long arms and legs."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, floorplan, gym", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white building with two floors", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["floor, staircase, railings", "image size, image, royalty"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a wildebeest"], "question": "which image is smaller", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a wooden billiard table with legs."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is plastic- color is white- shape is cube", "legs, material, wood"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a 3d object featuring a rock, shell, piece of paper, and cat."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "53efab50e5a74e5ea165c763cea15be4"], "properties": ["roof, green, lawn", "a, rock, paper"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a flock of birds in the sky"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of a piece of paper in the shape of an island"], "question": "which object has a shell?", "label": 1}, {"captions": ["a sword with a yellow handle and white blade.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ee82fbc66d39467b8f34b91493053e66", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, handle, blade", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white image of a pen on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small house with a yellow roof and chimney."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["a, bowl, cup", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which object has a chimney?", "label": 1}, {"captions": [" of a deer and a crystal tree on an island, with a rock and bird nearby.", " of two rocks with ice elements."], "sample_ids": ["2ce5ec0844114576a247b1de2011e0c7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image is a deer and a crystal tree on an island, with a rock and bird nearby", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a flying saucer", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a deer standing on an icy island", "a 3d image of two rocks on a gray surface"], "question": "which entity has a rock with ice elements?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white of a woman with her arms outstretched."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["apse, roof, floor plan", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, box, wall", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a flower", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": ["a grayscale of a mountain.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "be1376023c274bdda995d54f3694157f"], "properties": ["color, grayscale, mountain", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, sword, gun", "hat, color, tan"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "db74ee1621464be1b164be26a1af050e"], "properties": ["a, hole, shelf", "window, arches, wall"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["table, staircase, light", "table, staircase, light"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 0}, {"captions": [" a two-story building with stairs and a three-tier display.", " a large building with a roof and windows."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "32d1fbd3ee91426882290305f70021e6"], "properties": ["tiers, building, stairs", "roof, windows, building"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", " a white castle composed of small cubes."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["3d model, color, lights", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, shape, size", "hippo, hind, legs"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", "two white spheres in a ."], "sample_ids": ["854757ca755240f8b04576d899349151", "1c02212a35134545ab63ab180d629c31"], "properties": ["cabinet, room, shelf", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d model of a white ball on a gray background"], "question": "which object is in a room?", "label": 0}, {"captions": ["white 3d tank model", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color is white, model is 3d, name is tank", "house, fence, playground"], "captions_pred_pc": ["a close-up view of the back of the phone case", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["structure, building, archway", "building, color, black and white"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "c8936ace72954650b4e2d84246964849"], "properties": ["hair, legs, wings", "roof, color, pink"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, door, window", "house, pool, balcony"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["house, roof, wooden", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which house has a suspended ceiling", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a person breaking through a brick wall."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["a knife, blade, handle", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["a box, a cup, a bottle, a jar", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small house with a red roof.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["085db9059b744673b5623b5338e02196", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, red, house", "Lights, number, five"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a large house with a roof on a platform."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, roof, block", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small house"], "question": "which entity has a roof on a platform?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a wooden roof structure with a pink roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, door, window", "roof, color, pink"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a white of a gun.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, gun", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a white object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "6b745457e06840119058883b35f78f58"], "properties": ["face, handle, spout", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a building with dots"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a featuring white and red cubes, and a pink and white chair."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "f2c44a82ba744ba8b93e9a1c2272c117"], "properties": ["house, color, white", "color, white, red, pink"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a white structure with stairs"], "question": "which entity is a chair?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["desk, chair, table", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["roof, color, blue", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a small white house with a roof."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, texture", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "a17477b445b3443189dad22f768b888b"], "properties": ["ceiling, light, desks", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a building with yellow lines."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, skyline, buildings", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a map"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a drawing of an airplane flying over a city"], "question": "which building has lines that are yellow?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a white of a spaceship and building."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["yellow, table, roof", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, table, chair", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a table with a stool on top"], "question": "which entity has stairs", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a white motorcycle with wings."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, gazebo, table", "color, white, wings"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a motorcycle on a white background"], "question": "which entity is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a white rocking chair with a curved backrest."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["water, river, island", "backrest, curved, yes"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a curved backrest", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["chair, table, refrigerator", "house, staircase, table"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, red, apples, tree, cactus, dots", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of an orange life ring"], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "e27df4cbd35c4666b4690b58e1a3dad6"], "properties": ["resembles, toy, bookshelf", "color is orange, material is plastic, shape is ring"], "captions_pred_pc": ["a black and white image of a book cover", "of a silver bracelet with black dots on it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "an inflatable life preserver on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["plane, ship, bird", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white house with a roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, grass, moss", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": ["white dragon with wings, .", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "c8936ace72954650b4e2d84246964849"], "properties": ["wings, white, dragon", "roof, color, pink"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["shape is box, color is white, door is present", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["Four legs, Metal, Shelf", "rusty, warning, metal"], "captions_pred_pc": ["for a black and white illustration of a cross", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with four legs", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small, snow-covered house.", " a black and white striped box."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["house, snow, cover", "color, black, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["bed, desk, window", "color, sphere, molecule"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["97f487941d26472294e005fa97c403be", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, white, green", "Cabinet, drawer, wood"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "pink light saber."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c4c8ed95de4640fe8c0be1df68d816ba"], "properties": ["color, shape, and size", "color, pink, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black dot on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a light saber on a gray background"], "question": "which object is pink?", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a house with wooden framing and trusses."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["screen, lens, color", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a human skull", " a small white house with a roof."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, b, c", "roof, color, white"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "c3a82df41875402285608ef13a55df57"], "properties": ["house, staircase, window", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a house with a wooden-framed roof structure."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, yard, surrounding buildings", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "c3a82df41875402285608ef13a55df57"], "properties": ["white, rock, shell", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["mossy, rock, grass", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small, snow-covered house."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["frame, beams, trusses", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of an egyptian sarcophagus."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["floor, staircase, railings", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["boat, table, chairs, umbrella, solar panel", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a roof and beams."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["frame, roof, trusses", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["apse, roof, floor plan", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a white castle composed of small cubes."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, color, blue", "composed of, white, cubes"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a wooden-handled axe ."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "439ad3cdddbc4211b8a3c98448e900cc"], "properties": ["resembles, toy, bookshelf", "handle material is wood, head material is metal, overall length is long"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a hammer on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick wall with grass.", "a 3d white cube with windows resembling a building."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "4a07a5293f024bb0a353954a056ef626"], "properties": ["brick, grass, wall", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a cube"], "question": "which entity is not a building?", "label": 0}, {"captions": ["a pixelated-textured purple sphere .", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "c3a82df41875402285608ef13a55df57"], "properties": ["texture, color, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["Cabinet, Drawers, Filing", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is plastic- color is green- shape is box", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a person breaking through a brick wall."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["houses, trees, road", "image, brick, wall"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, pier, railings", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a blue plastic stool."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["- material is wood, metal, metal", "color, plastic, blue"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a white glass beer mug."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["top, color, wood", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "6b745457e06840119058883b35f78f58"], "properties": ["image, building, painting", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white statue of a woman holding a baby."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7cf1c30a98fc4ae796e040c2ce18c03a"], "properties": ["color, shape, and size", "color, white, statue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a heart"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d printed figurine of a woman holding a cat"], "question": "which entity is a statue?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house with stairs and a roof."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a box, a cup, a bottle, a jar", "roof, stairs, house"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["room, bed, desk", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["building, material, steel", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["house, fence, dog", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["island, terrain, rocks", "building, plane, room"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a red and white robot.", "a 3d printed model of white and red robots on a red platform."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "0fa560c2fd9f4422a97356c947ac3b46"], "properties": ["color, red, white", "color, red, white"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a robot standing on top of a table"], "question": "which robot is white?", "label": 0}, {"captions": [" of a rock formation with a white cliff and a rock.", " a brick wall with grass."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "53f2d948091f417cb580e22469c94db2"], "properties": ["image is rock formation with a white cliff and a rock", "brick, grass, wall"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": ["white 3d tank model", " a clear glass table with metal legs and balls on top."], "sample_ids": ["ac17fa1c967e4af382de4a445049f231", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, model is 3d, name is tank", "glass, metal, balls"], "captions_pred_pc": ["a black and white photo of a small object on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a tank on a white background royalty free 3d model preview no 2", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, truss system, framing", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["resembles, octopus, squid, spider, robot", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a 3d white cube with windows resembling a building."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "4a07a5293f024bb0a353954a056ef626"], "properties": ["- color is white- shape is cubes- number is 1", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a cube"], "question": "which object is whiter", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a large metal building with a roof and truss structure."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "b85a99699ccd4bcba213322113bb253d"], "properties": ["- color is red, blue, pink", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of an object on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a house with a flat roof structure."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "abc52d210d71415296730bb00352ce6f"], "properties": ["size, material, wheels", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["building, tree, plane", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["island, mountain, grass", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, ball, mushroom", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a white castle composed of small cubes."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["house, building, people", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small wooden house with a green roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["shape is box, color is white, door is present", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a black gun/rifle"], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "b596b52b86914c2b9bc4b4cd096621db"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "color is black, material is metal, type is gun/rifle"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a gun on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a black gun on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, red, green, blue", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a white and gray glove", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "5017581716c7402581a82ebf08d427a3"], "properties": ["wood, board, shelf", "Shelf, color, white"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d rendering of a white shelf"], "question": "which shelf is white", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["a, rock, paper", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["for a flock of birds in the sky", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, tree, pool", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a large house with a roof on a platform."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, shape, texture", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["- material is plastic- color is white- shape is cylinder", "mannequin head, plague mask, straps"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a plague doctor's mask on a mannequin head"], "question": "which object is made of leather", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a potted christmas pine tree."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["image, color, pink", "a, color, green"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a christmas tree in a vase"], "question": "which image is green?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "6b745457e06840119058883b35f78f58"], "properties": ["pos machine, credit card machine, cash register", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white image of a building with dots"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, color, red", "roof, truss, lamp"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a metal roof"], "question": "which roof is pink", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["building, roof, white, cubes", "frame, truss, roof"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of a large axe with a cross on top."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, sphere, molecule", "axe, cross, top"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is white- color is white- texture is textured", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cube", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["shattered, resembles, broken phone", "resembles, sculpture, rock"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "a17477b445b3443189dad22f768b888b"], "properties": ["color, lighting, booth", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a white of a spaceship and building."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["buildings, houses, grass", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a black and gold pistol.", " a black and white striped box."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, black, gold", "color, black, white"], "captions_pred_pc": ["a black and white image of a toothbrush", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "24f7d0a06d494c26a1678d81b2b7b093"], "properties": ["a, booth, bed", "a, laptop, teddy bear"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of an umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d rendering of a white room with various objects"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " of a small white building with stairs and a lid."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, red, blue, structure", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small building with stairs and a glass floor, featuring a square table and a black square ceiling light."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "8aaad713b8834739b008ccf2f3d86cce"], "properties": ["building, color, white", "floor, table, light"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white photograph of a window"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a black and white 3d model of a staircase on a platform"], "question": "which building has a glass floor", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, door, suitcase", "s, laptop, printer"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a black and white image of an electronic device"], "question": "which entity has a door?", "label": 0}, {"captions": [" a wooden-framed house with roof trusses.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["frame, roof, trusses", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a table and stool"], "question": "which house has a flat roof", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "a2354f13774340d392fbf33564934aab"], "properties": ["floor plan, heating system, ceiling light fixture", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, number", "house, hill, forest"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, desk, laptop", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a black and white of a knife/sword with a handle."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- material is plastic- shape is dice- color is white", "image, color, black and white"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, size", "roof, color, blue"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a small wooden house with a green roof."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, horns, eyes", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a house with a blue roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["floor plan, ceiling light, color", "paper, hole, sign"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a house", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" of a house with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, house, roof", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small, snow-covered house.", " a small house on a hill in a field."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, snow, cover", "house, hill, field"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a piece of broken glass on a white background", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["building, roof, white, cubes", "roof, truss system, framing"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, plane, sky", "color, white, gold"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a small white building with stairs and a lid."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["A, a, a", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a large house with a roof on a platform."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, framing, material", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a small blue bottle with a lid and a small blue box.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c1bc7f87f15943ba88f0410ef9e387e8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["blue, bottle, box", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a sponge and a sponge holder", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a box royalty free 3d model preview no. 3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["floor, staircase, railings", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["ceiling, light, desks", "ceiling, light, desks"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling with blue and white triangles and a ceiling light?", "label": 0}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, staircase, table", "building, room, sky"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d printed green robot with two arms and two legs.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["04e3e8ce541e487b9e342570fe1b4eb2", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["color is green, material is 3d printed, number of limbs is 2", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white image of a robot in the shape of a snowflake", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic robot standing on its hind legs", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["building, stairs, shelves", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "747110c073314ee39ef2f4a8d63222da"], "properties": ["roof, brown, flat", "s, laptop, printer"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a table and stool", "a black and white image of an electronic device"], "question": "which entity has a brown roof", "label": 0}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a wooden staircase with a railing and table."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "956247bea850458199c651037d4b1d7f"], "properties": ["house, building, people", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a house with a green, wooden-structured roof."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, line, gray", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a white of a man with arms outstretched."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, air conditioner, house", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a window", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "09f2cf267e954c958828325067bcc36a"], "properties": ["giraffe, bench, flower", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small wooden house with a green roof."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, color, green"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["hat, sword, gun", "box, handle, gun"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, base, slanted", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white drawing of a chair", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["21639082215b4b179d574d2408124838", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, room, furniture", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, umbrella, coat", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a pixelated-textured purple sphere ."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, size", "texture, color, shape"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["desk, chair, lamp", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a pixelated-textured purple sphere ."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "fb68393941804e769d5c9b372864a642"], "properties": ["house, yard, surrounding buildings", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, door, window", "color, background, white"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "an image of a white background with a few small cubes on it"], "question": "which object has a white door and windows?", "label": 0}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["white, rock, shell", "torso, breasts, pattern"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["b5afccae993346079483507296fbb029", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["shape is square, material is metal, color is rusty", "a, color, red"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, color, white", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a man with arms outstretched."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, and size", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["frame, beams, trusses", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["building, fence, snowy", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, roof, block", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a roof structure"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["castle, island, house", "house, hill, forest"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a house with a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, house, roof"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which object has a roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, shape, height", "a train, a ship, a boat"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a small wooden house with a green roof."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, color, black and white", "roof, color, green"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a house with a ladder"], "question": "which building is made of wood", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a broken human skull and stone bowl."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["- color is red, blue, pink", "skull, bowl, human"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a ceramic bowl with a large crack in the middle"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " of a wooden windmill with a red roof."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["building, type, factory", "roof, color, red"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which building has a red roof", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, gray", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["pattern, color, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["a black circle on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["bowl, pottery, headpiece", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a piece of ancient pottery"], "question": "which entity has a bowl", "label": 0}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "a2354f13774340d392fbf33564934aab"], "properties": ["structure, roof, pitch", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["lamp, harp, bowl", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, plane, town", "low poly, plant, white"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "star wars stormtrooper "], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["earbuds, light, ring", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a white color?", "label": 0}, {"captions": [" a white rocket ship.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "paint, rust, concrete"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a group of ponies in a row."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["room, bed, desk", "group, row, pony"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["windmills, silhouette, city model", "house, table, chair"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["a, island, water", "house, roof, green"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, truss, lamp", "house, rock, bird"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "c3a82df41875402285608ef13a55df57"], "properties": ["a, window, statue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a large metal building with a roof and truss structure."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, black, white", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, texture", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["d6087023095446fbadef1721478373b2", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["door, roof, window", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with many pillars"], "question": "which entity has a roof made of glass?", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed ring with a unique design", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, size", "color, background, white"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a white circular object on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house with a roof and beams."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, green, tiled", "roof, beams, house"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof, green, lawn", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a white of a woman with her arms outstretched."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["door, roof, pool", "image, color, white"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "d49d8ed244094349a99e4faca05e0690"], "properties": ["a, hole, rock", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["hat, sword, gun", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["bread, chocolate, cake", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a group of ponies in a row."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["s, plane, house", "group, row, pony"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of my little pony"], "question": "which entity has a group of ponies in a row?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "da8b5d21da9b4037982f29383d60b100"], "properties": ["size, material, color", "resembles, toy, castle"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, structure, house", "structure, roof, pitch"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["a, bird, lake", "color, shape, color"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["ruined building, stone floor, small stone structure", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, table, ceiling", "roof, structure, greenhouse"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a roof"], "question": "which structure has a greenhouse", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a box, a cup, a bottle, a jar", "hat, skull, bread"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a large metal building with a roof and truss structure."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "b85a99699ccd4bcba213322113bb253d"], "properties": ["- material is wood, metal, metal", "roof, truss, structure"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["a, bird, lamp", "desk, chair, lamp"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white illustration of a city skyline"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d rendering of a desk and chair in a room"], "question": "which entity has a desk", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, material", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white building with stairs and a white table."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, door, window", "building, stairs, table"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, pink, eyes", "a, material, clay"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- material is white- color is white- texture is textured", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small black and white cube-like object.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["66f9c2c2216e4f81a2aa6c12c08bfb55", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["above a black and white image with a square in the center", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of an object on a white and black striped surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["sandbox, sand bucket, wooden blocks", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", "a white of a man with arms outstretched."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, yellow, chimney", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["- color is white- shape is cubes- number is 1", "roof, color, yellow"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a large metal building with a roof and truss structure."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, texture", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " of a wooden windmill with a red roof."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, green, handle", "roof, color, red"], "captions_pred_pc": ["of a small black object on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, roof, green, frame, red", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "5414d75e47104589837f3df8b6de6d22"], "properties": ["A, a, a", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a bench", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a small white building with stairs and a white table."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "e30374c614f54fdb90f35b96b071349d"], "properties": ["moss, mushroom, grass", "building, stairs, table"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "red heart-shaped object."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["base material is wood, color is red, message is welcome to northwich", "shape, heart, red"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["stair, table, chair", "house, tree, pool"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["roof, ceiling, hole", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a brick building with a roof structure and roof truss."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "84e8acad28664a738df69d719df9e263"], "properties": ["yellow, table, roof", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a white castle composed of small cubes."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, pattern, material", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small building with a roof.", " a small white house with a roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, building, small", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", "a white of a woman with her arms outstretched."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, letter", "image, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["hat, sword, gun", "buildings, houses, grass"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, tree, plane", "structure, roof, pitch"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["color, shape, size", "hat, mustache, chef"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " of a black gun/rifle"], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "b596b52b86914c2b9bc4b4cd096621db"], "properties": ["resembles, sea urchin, shell", "color is black, material is metal, type is gun/rifle"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "a black and white image of a gun on a white background"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d model of a black gun on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["plane, ship, bird", "roof, color, yellow"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["bed, desk, window", "roof, air conditioner, house"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["s, stick, leaf", "hat, shirt, bearded"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "of a black and white bracelet on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small building with a roof.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, building, small", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a small house and barn"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["painting, door, wall", "roof, air conditioner, house"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a window"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, blue, components", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " of two rocks with ice elements."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["wheeled, cart, cannon", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["black, laptop, shelf", "house, tree, hill"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a white sofa, chair, and box."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "4c59733ebd634594a921b7ace60e4142"], "properties": ["ruined building, stone floor, small stone structure", "sofa, chair, box"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, yellow, black", "a, material, clay"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "b896a0898efe4059a776193c02132129"], "properties": ["color, table, ceiling", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["color, shape, texture", "pattern, color, shape"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d image of a city map on a black surface"], "question": "which entity has a pattern of blue and green?", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, text", "torso, breasts, pattern"], "captions_pred_pc": ["the logo for carl meyer", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "a white of a man with arms outstretched."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["hair, legs, wings", "image, color, white"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a man with his arms outstretched"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["A, a, a", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, light", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a black and white image of a door with a crack in it"], "question": "which entity is a door?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["d6087023095446fbadef1721478373b2", "be1376023c274bdda995d54f3694157f"], "properties": ["door, roof, window", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a house with a roof"], "question": "which building has a roof made of wood?", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a small white building with stairs and a white table."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, eye, handle", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a room", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a wooden shed with a gray roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, color, white", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " of a small white building with stairs and a lid."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["s, boat, bird, airplane, kite", "building, stairs, lid"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a black table, road with white lines, and rectangular ceiling panel."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "bdc9b72d13604f5a8c7bd6ace2ca3177"], "properties": ["a, b, c", "black, road, panel"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white dotted square on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of an empty road"], "question": "which entity has a black table?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["boat, table, chairs, umbrella, solar panel", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["roof trusses, beams, suspended ceiling", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a silver vintage racing car.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, silver, vintage", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, red, blue, structure", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a building structure"], "question": "which structure is a cube?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, texture", "platform, color, orange"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a motorcycle on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["hat, cup, bowl", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, black, white", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is white", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["glass, metal, balls", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a wine glass", "a black and white image of a map with dots"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a building with many pillars"], "question": "which table has a glass roof", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small wooden house."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, front, road", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "b896a0898efe4059a776193c02132129"], "properties": ["color, screen, drawer", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a brush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["Drawer, Handle, Wood", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 0}, {"captions": [" a house with a blue roof.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["roof, color, blue", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["hat, sword, gun", "house, fence, dog"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["structure, building, archway", "houses, trees, road"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "40921ffd69db479294554d261daf3035"], "properties": ["door, stairs, color", "floor, railing, staircase"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "a white teapot with pink flowers and a handle."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "f6c5e8931d164979a71914127c7e5438"], "properties": ["holder, spring, box", "color, white, handle"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white dots on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a white tea kettle with a black handle and floral design"], "question": "which object has a handle", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, material, frame", "a room, a cake, a table"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of an egyptian sarcophagus."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["floor plan, bathroom, pool", "sarcophagus, material, wood"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a small purple plastic chair with holes."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, black, green", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a roman inscription on a stone plaque and paper scroll with writing.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0a281f5738b54febb835c052549ba399", "09f2cf267e954c958828325067bcc36a"], "properties": ["inscription, scroll, stone", "island, terrain, rocks"], "captions_pred_pc": ["a black and white photograph of a mirror", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a plaque on a stone wall", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small house with a roof.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof, house, small", "island, terrain, rocks"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["Steel, Color, Yellow", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " of a wooden windmill with a red roof."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, shape, material", "roof, color, red"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on a hill in a field.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, hill, field", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a house with a roof"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small white barn with a metal roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "4ca3342a96824684845f7d0e062ab176"], "properties": ["yellow, table, roof", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a barn"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "white of a rhino head with horns."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "8481aade84de47cab1a9accf8067e678"], "properties": ["resembles, octopus, squid, spider, robot", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a, b, c", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white drawing of a submarine", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["earbuds, light, ring", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "411c164757fc4de68dfecb35fa858223"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white map of germany on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["ruined building, stone floor, small stone structure", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["background, color, white", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "97e000ff41094665afd94ea565da8b13"], "properties": ["wall, stairs, castle", "roof, material, wood"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a small white building with stairs and a white table."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "e30374c614f54fdb90f35b96b071349d"], "properties": ["location, highway, train station", "building, stairs, table"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "34a49861e7744acfb71de471a755e917"], "properties": ["color, white, black, white", "text, material, shape"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a marble slab with text on it"], "question": "which entity is a sign?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a house with a wooden-framed roof structure."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a knife, blade, handle", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, toilet, robot", "color, shape, color"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["floor, table, light", "table, bench, deer"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a black and white image of a bench and table with a deer's head on the table"], "question": "which table is made of wood", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["a, bird, hook", "meat, bread, sausage"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a brush on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- material is plastic- color is white- shape is cube", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, dragon, cloth", "roof, material, wood"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, table, sphere", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a 3d model of a building with many pillars"], "question": "which table has a wooden structure", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["resembles, octopus, squid, spider, robot", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a white plastic tray"], "question": "which object is white", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, head, white and brown", "color, white, logo"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity has a white logo?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["stair, table, chair", "table, plant, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a white castle composed of small cubes."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof trusses, beams, suspended ceiling", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, gazebo, table", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof truss, beams, structure", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": [" a house with a green roof and lawn.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, green, lawn", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["collection, moose, skull", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a staircase in a room"], "question": "which entity is a staircase?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["roof, color, purple", "building, color, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, black, blue", "room, furniture, window"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["lamp, harp, bowl", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a harp in a white room", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a machine gun.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "bf18bfd89efd43389781050230467d58"], "properties": ["gun, barrel, caliber", "Lights, number, five"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a white chandelier with five white shades"], "question": "which entity has a smaller number of lights", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white of a woman with her arms outstretched."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["bed, desk, window", "image, color, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, hill, forest", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, horns, eyes", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "b0427ff55c4346e293c1241c71d30528"], "properties": ["color, white, material, ceramic", "a, rock, nail"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a white vase on a grey background", "a 3d image of a rock with a screw in it"], "question": "which object is made of a rock?", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, roof, structure", "cloak, sword, spear"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": ["3d snowman model with a wooden stick.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["44f41039246a4df59027c38023d5a576", "b896a0898efe4059a776193c02132129"], "properties": ["- material is wood - color is white - shape is 3d", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d snowman royalty-free 3d model preview", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a staircase with a glass railing and a small white table, featuring a ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "10b899daca25493cba6bfffbbe7990fe"], "properties": ["color, shape, and size", "railing, glass, table"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a cell phone"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a staircase with a glass railing"], "question": "which entity has a glass railing", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a house with a roof and beams."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["brown, paint, tape", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which object has a roof?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, stairs, house", "house, staircase, table"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, red, apples, tree, cactus, dots", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["base material is wood, color is red, message is welcome to northwich", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a multicolored metal building structure with a roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof truss, insulation, suspended ceiling", "color, roof, structure"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["chocolate, mushroom, cake", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, door, suitcase", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, city, train", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d low poly model of an orange with a green leaf and stem.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["cdd918943a124d3f94859d9f67ab8e3e", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["3d, low, poly", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape with dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a paper airplane flying in the air", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "703dce44052e48cfb024bceb08141554"], "properties": ["graffiti, bench, wall", "roof, beams, frames"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a boat"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a wooden structure"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "6b745457e06840119058883b35f78f58"], "properties": ["staircase, railing, building", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring white and red cubes, and a pink and white chair."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "f2c44a82ba744ba8b93e9a1c2272c117"], "properties": ["color, material, structure", "color, white, red, pink"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white structure with stairs"], "question": "which entity is a chair?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["boat, table, chairs, umbrella, solar panel", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["Cabinet, Drawers, Filing", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, box, wall", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a flower", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a building with a metal and wooden pole structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, structure, house", "structure, material, pole"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house with a wooden-framed roof structure."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["houses, trees, road", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["roof, purple, beams", "color, shape, color"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a pile of mint green soap cubes."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "edd35e0657b640b1b8fcf86942e1a9e5"], "properties": ["color, yellow, black", "color, mint, soap"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background"], "question": "which object is made of soap", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small white house with a staircase and a window."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "9eb88d17310d42dda9e17883e9922525"], "properties": ["Cabinet, Drawers, Filing", "house, staircase, window"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small purple plastic chair with four legs."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["a, bird, lamp", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a silhouette of a person standing in the air", "of a black and white image of a baby carrier"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, door, window", "house, fence, playground"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a rusted metal barrel with a yellow and red warning sign and stripe on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5a49ad82ef7a4d33badea2261720f518", "c3a82df41875402285608ef13a55df57"], "properties": ["rusty, warning, metal", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a barrel", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["a knife, blade, handle", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a piece of white plastic on a gray background", "a white plastic container with a label on it"], "question": "which object is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "star wars stormtrooper "], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["texture, spikes, eyes", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a white castle composed of small cubes."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["light, floor, ceiling", "composed of, white, cubes"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "34a49861e7744acfb71de471a755e917"], "properties": ["texture, spikes, eyes", "text, material, shape"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a marble slab with text on it"], "question": "which entity is a sign?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["ceiling, light, desks", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a house with a wooden-framed roof structure."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["blue tarp, flower, small island", "roof, material, wood"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["frame, roof, trusses", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a small white house with windows and a black lid."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "4b40af369c1149949f5ccb68becd8430"], "properties": ["shape is sphere, color is white, material is plastic", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a white house with three windows"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "97e000ff41094665afd94ea565da8b13"], "properties": ["resembles, toy, bookshelf", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a large house with a roof on a platform."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "cb3e09a301b746918a682a595037c7f7"], "properties": ["computer desk, laptop, monitor", "roof, platform, house"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with yellow lines.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, yellow, lines", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a map", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["purple speech bubble and circle", "a low-poly of a white, shattered sphere."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, size", "sphere, color, texture"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "c3a82df41875402285608ef13a55df57"], "properties": ["rusty, hat, dartboard", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a large metal building with a roof and truss structure."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a patterned rug", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "a17477b445b3443189dad22f768b888b"], "properties": ["color, awning, cover", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a large steel building with a pool."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor, table, light", "building material, pool, steel"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a robot with a blue, purple, and white body.", " a small blue robot with a windmill."], "sample_ids": ["6f98acb9e03c4cbd9c83f2c8f9cd3ddc", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["body, color, white", "color, blue, robot"], "captions_pred_pc": ["above a black and white image of a robot", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a robot standing in the middle of a white background", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size, color, design", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a house with a roof"], "question": "which is not a building", "label": 1}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", " a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "a78520b929314d7c8477322e000bc481"], "properties": ["polygonal, helmet, triangular details", "polygonal, helmet, triangular details"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white image of a piece of fabric with dots"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a 3d model of a gray, triangular shaped object"], "question": "which entity has a polygonal owl", "label": 0}, {"captions": [" a white and black chair with a black handle and armrest.", "a white glass beer mug."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, white, handle, armrest", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a flat roof structure.", " a house with a roof and beams."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, flat, structure", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small wooden house."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof truss, insulation, suspended ceiling", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a white castle composed of small cubes."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, logo", "composed of, white, cubes"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a black and white of a knife/sword with a handle."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["Drawer, Pattern, White", "image, color, black and white"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": ["a piece of rock with a blue stick.", " a clay pot with holes in it."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, rock, stick", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock formation", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["red, mouse, handwriting", "building, roof, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "bded33af34104b9686b845dfd18309a9"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a tree with green leaves."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "1a902b67735845198efb1b84f434b580"], "properties": ["size, color, shape", "leaf, color, green"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a tree with a lot of foliage"], "question": "which entity is green", "label": 1}, {"captions": ["a pair of blue wireless earbuds with a black case.", "a pair of blue wireless earbuds with a black case."], "sample_ids": ["88d8bccf701145dea3fc4df8781ddb13", "88d8bccf701145dea3fc4df8781ddb13"], "properties": ["blue, case, earbuds", "blue, case, earbuds"], "captions_pred_pc": ["a black and white image of a pair of earrings in the shape of a butterfly", "a black and white image of a pair of earrings in the shape of a butterfly"], "captions_pred_image": ["a 3d model of a pair of earphones royalty free 3d model preview no.1", "a 3d model of a pair of earphones royalty free 3d model preview no.1"], "question": "which pair of earbuds has a black case?", "label": 0}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", "star wars stormtrooper "], "sample_ids": ["4f21fa937959487a96350af527d75421", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["window, frame, room", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "97e000ff41094665afd94ea565da8b13"], "properties": ["yellow, table, roof", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["s, plane, house", "paint, rust, concrete"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a concrete wall"], "question": "which entity has more paint", "label": 1}, {"captions": [" of a black shark", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["black, mouth, teeth", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of an object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which entity is not made of wood", "label": 1}, {"captions": [" of a house with a pink roof.", " a house with a roof and beams."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, roof, pink", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["smiley-faced banana .", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hat, sword, gun", "island, terrain, water"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["ddaac41b6efd4dd0b7bf8d441441555e", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["railing, chair, light", "light, fixture, square"], "captions_pred_pc": ["above a black and white image of a letter 'g'", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a 3d model of a bench on a white background royalty free 3d model no.3", "a 3d model of a desk with a table on top"], "question": "which entity has a light fixture that is not square?", "label": 0}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white glass beer mug."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, white", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a house with a roof and beams."], "sample_ids": ["e098706085a44898abbd549693d12a64", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color is black, white, orange", "roof, beams, house"], "captions_pred_pc": ["of a white and black clutch with a flower design", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a clay pot with holes in it."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a, color, white", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small white building with stairs and shelves."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "9e1f64d4fd514059be934077717536dc"], "properties": ["house, staircase, window", "building, stairs, shelves"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "a2354f13774340d392fbf33564934aab"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, red", "roof, trusses, ladder"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["light switch, electrical outlet, furniture", "image, city, spoon"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["building, color, white", "room, door, shelf"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of an empty room"], "question": "which building has a room with a door and a white shelf?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a potted christmas pine tree."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["texture, spikes, eyes", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a christmas tree in a vase"], "question": "which entity is greener", "label": 0}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small wooden house."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, ceiling, hole", "house, material, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["wing, silver, white", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a brick wall with grass."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "53f2d948091f417cb580e22469c94db2"], "properties": ["chocolate, mushroom, cake", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a black and white photo of a brick wall and a puddle"], "question": "which object is more likely to be in a garden", "label": 1}, {"captions": [" a sword with a wooden handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d42eec2b8e7644ec9ededcf9f325faad", "c3a82df41875402285608ef13a55df57"], "properties": ["handle, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a sword", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, shape, size", "axe, handle, wood"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a small building with a roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, building, small", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a long metal fence"], "question": "which building has a roof", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small white house with windows and a black lid."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "4b40af369c1149949f5ccb68becd8430"], "properties": ["a, bowl, cup", "white, windows, lid"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a white house with three windows"], "question": "which object has a lid", "label": 1}, {"captions": [" a small house with a roof.", " of two rocks with ice elements."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, house, small", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a house with a flat roof structure."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "abc52d210d71415296730bb00352ce6f"], "properties": ["orange, forklift, parking lot", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "dd3a9323ed514ccab330973ff9588015"], "properties": ["house, plane, town", "room, bed, desk"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, material, shape", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a pond and situated on a rock."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "92859eb82a344134806b37cc209927c6"], "properties": ["color, door, window", "house, rock, pond"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "92498f398e244020a867686729633610"], "properties": ["Drawer, Pattern, White", "a, house, cat, dog"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, yellow, black", "color, green, squirt gun"], "captions_pred_pc": ["a black and white illustration of an airplane", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is green", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a stone wall with a window and a clock."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["bedroom, bathroom, bed", "window, clock, wall"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, temperature, england", "a, color, white"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a desk and chair"], "question": "which entity is a white box?", "label": 1}, {"captions": ["a white of a spaceship and building.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "4a889132cc444d10bfcbf6c760984416"], "properties": ["image, building, spaceship", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a desk and chair"], "question": "which image has a spaceship and building?", "label": 0}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["Drawer, Pattern, White", "island, mountain, grass"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", "a white glass beer mug."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, material, steel", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, white, yellow, roof, metal", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small wooden house."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["runner, bed, bench", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, size", "color, black, visor"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a white circular object on a gray background", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a graffiti-covered train, bench, wall, and skateboard."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "6de9fcac063d45df9424decdc215b379"], "properties": ["A, a, a", "graffiti, bench, wall"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white image of a boat"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a graffiti-covered wall in a black and white photograph"], "question": "which entity has graffiti on it", "label": 1}, {"captions": [" a small orange piano with legs.", " a house with wooden framing and trusses."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color is orange, size is small, legs", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a house under construction"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["a, b, c", "a, desk, laptop"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a piece of furniture"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large steel building with many columns and a pool."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["frame, roof, trusses", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a black box with an open lid and an orange handle.", " a black box with an open lid and an orange handle."], "sample_ids": ["2a916894edd54029b325cf51f96b0904", "2a916894edd54029b325cf51f96b0904"], "properties": ["color, black, lid, open, orange, handle", "color, black, lid, open, orange, handle"], "captions_pred_pc": ["a piece of paper with black dots on a white background a piece of paper with black dots on a white background royalty free illustration", "a piece of paper with black dots on a white background a piece of paper with black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white cardboard box with an open lid", "a black and white cardboard box with an open lid"], "question": "which box has a lid that is open?", "label": 0}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a pixelated-textured purple sphere ."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "fb68393941804e769d5c9b372864a642"], "properties": ["houses, trees, road", "texture, color, shape"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white square made of dots on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, yellow, black", "throne, stairs, tree"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a green mountain with trees and grass."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["metal, laptop, light fixture", "mountain, grass, tree"], "captions_pred_pc": ["for a black and white image of a corner shelf", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, shape, number", "lion, statue, fountain"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["location, highway, train station", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["computer desk, laptop, monitor", "building, room, sky"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["black, white, laptop", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a square with dots on it"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small triangular-shaped object."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, temperature, england", "shape, triangle, small"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, roof, blue", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, text", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "d49d8ed244094349a99e4faca05e0690"], "properties": ["castle, island, house", "low poly, plant, white"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of two rocks with ice elements."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, bird, hook", "image is a rock with ice elements"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, table, blocks", "table, structure, roof"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a building with many pillars"], "question": "which entity has a table with pillar-like yellow and white poles?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["base material is wood, color is red, message is welcome to northwich", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bathroom", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a large house with a roof on a platform."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, truss system, framing", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small house"], "question": "which entity has a roof on a platform?", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Black, Shelf, Metal", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "c3a82df41875402285608ef13a55df57"], "properties": ["color, yellow, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a submarine toy", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " of a crab holding a rubik's cube."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, trusses, beams", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a building with blue metal framing and structure."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, shape, structure", "color, blue, structure"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building under construction"], "question": "which building has a blue metal framing and structure?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, pink", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" of a wall featuring various potted plants.", " of a wall featuring various potted plants."], "sample_ids": ["54d03259a316434e9c670a52a7e5a92e", "54d03259a316434e9c670a52a7e5a92e"], "properties": ["image, wall, plants", "image, wall, plants"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a knife on a white background"], "captions_pred_image": ["a black and white image of a wall with bullet holes", "a black and white image of a wall with bullet holes"], "question": "which image shows a wall featuring various potted plants?", "label": 0}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "hat, pants, shirt"], "captions_pred_pc": ["a close up of a black object on a white background", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "09f2cf267e954c958828325067bcc36a"], "properties": ["container, powder, white", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a clear plastic container with a white label on it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, window, statue", "island, terrain, water"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["a, island, resembles, hawaii", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "92498f398e244020a867686729633610"], "properties": ["mossy, rock, grass", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph of a house?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "9968e06a62e8487ea33460e640abc573"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a broom on a stand"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, material, frame", "house, roof, wooden"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a black and white photograph of a birdhouse"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with a roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["room, door, shelf", "roof, house, small"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, green, tiled", "hat, bow, arrow"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a house with a green, wooden-structured roof."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["load, crates, snow", "roof, color, green"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["low poly, llama, kangaroo", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["white of a rhino head with horns.", " of two rocks with ice elements."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image, rhino, head", "image is a rock with ice elements"], "captions_pred_pc": ["of a penguin skull in black and white", "a black and white image of two rocks on a white background"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "a 3d image of two rocks on a gray surface"], "question": "which image is of a rock with ice elements?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a large steel building with a pool."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, pattern, field", "building material, pool, steel"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", "red swivel chair with a white base ."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "7b78fb47a2684906bcc22ac6e848999a"], "properties": ["color, pier, railings", "color, red, base, white"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white image of a sphere made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a modern chair"], "question": "which entity has a white base", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["a train, a ship, a boat", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a roof truss?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small, snow-covered house."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, plane, town", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["rusty, sink, graffiti", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " of a white human skull with broken bone elements."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, material, structure", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a white of a woman with her arms outstretched."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, orange, white", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, gray", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small building with windows and a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, lake, pool", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", "a yellow and blue toy submarine."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, horns, eyes", "color, yellow, blue"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["- material is white- color is white- texture is textured", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof.", " a wooden shed with a gray roof."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, house, small", "roof, color, gray"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["lighthouse, fountain, crater", "room, door, shelf"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a large axe with a cross on top."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "4b6734945e204158b076a429a30ce2e9"], "properties": ["light source, fixture, color", "axe, cross, top"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "for an axe on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["texture, spikes, eyes", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, roof, yellow", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a cell phone", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a black and white striped fly in the air."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["backrest, curved, yes", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["floor, staircase, railings", "floor, staircase, table"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is in a room with wooden floor and ceiling?", "label": 1}, {"captions": [" of a house with a pink roof.", " a house with a blue roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, roof, pink", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "832a022cdcc74763b0571e04af4e592b"], "properties": ["Black, Shelf, Metal", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a lego model of a futuristic airplane"], "question": "which entity is not a spaceship?", "label": 0}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " of a spider-man mask and head."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "bd48915cfb41409aad6dd58e157876b2"], "properties": ["rocky, rug, puddle", "a, head, mask"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "above a black and white image of a person's head"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a black spider-man mask on a gray background royalty-free 3d model preview no.2"], "question": "which object is not a head?", "label": 0}, {"captions": ["a white of a woman with her arms outstretched.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["2cbfaa4fb2d84a6f94e67b4fd6e2f26f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["image, color, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white silhouette of a person on a skateboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a woman with her arms outstretched", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which image is black and white?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["Cabinet, Drawers, Filing", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a window with a colorful frame.", " a window with a colorful frame."], "sample_ids": ["59c7c35a04ce42dbb24e8f8e882c4127", "59c7c35a04ce42dbb24e8f8e882c4127"], "properties": ["frame, color, window", "frame, color, window"], "captions_pred_pc": ["a black and white image of a banner on a white background", "a black and white image of a banner on a white background"], "captions_pred_image": ["a 3d rendering of a window in a wall", "a 3d rendering of a window in a wall"], "question": "which window has a colorful frame", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, white, railing, black", "room, door, shelf"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of an empty room"], "question": "which room has a white door and a white shelf?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a, bird, lake", "room, staircase, bus"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["eead0dd97023415da05c97df37337473", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, balloon, color, blue", "s, laptop, printer"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a black and white image of an electronic device"], "question": "which entity is not a balloon?", "label": 0}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small wooden house with a green roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, material, frame", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "d49d8ed244094349a99e4faca05e0690"], "properties": ["lighthouse, building, tower", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["apse, roof, floor plan", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a white, open shelving unit"], "question": "which building is a box shape", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small building with windows and a roof."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["a lamp, a syringe, a light pole", "roof, windows, building"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, shirt, bearded", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white bracelet on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["food, leaves, shredded paper, rocks", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a clear acrylic foosball table"], "question": "which object is made of glass?", "label": 1}, {"captions": [" a toy motorcycle, car, and robot on an orange platform.", " of two rocks with ice elements."], "sample_ids": ["7407a108e0354925b83b750339bc03df", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["platform, color, orange", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a bicycle", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a motorcycle on a pedestal", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "red heart-shaped object."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["shape is sphere, color is white, material is plastic", "shape, heart, red"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a heart shaped object"], "question": "which object is red?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a stone wall with a window and a clock."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["screen, monitor, stand", "window, clock, wall"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a brick wall"], "question": "which object has a clock on it?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a white sofa, chair, and box."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "4c59733ebd634594a921b7ace60e4142"], "properties": ["a, shirt, pants", "sofa, chair, box"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a wooden shed with a gray roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, material, structure", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a shed with a gray roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "36d90269173b4d1a84dbd61664593f66"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a, eagle, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a map with dots all over it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a person sitting on the edge of a cliff"], "question": "which entity does not feature a rock formation with various statues", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", "a white of a man with arms outstretched."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["lamp, harp, bowl", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a curved line", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a low-poly of a white, shattered sphere."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, material", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a white bunk bed with a ladder."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "379f488d0624482694bbe150b7bc1059"], "properties": ["room, bed, desk", "bed, ladder, color, white"], "captions_pred_pc": ["a black and white drawing of a door", "for a white square on a white background with a black square in the center"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "the bunk bed royalty free 3d model no. 3"], "question": "which bed has a ladder", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white and blue building with a black roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c893118316ee43e18322e5964b2806c5"], "properties": ["background, color, white", "color, white, blue, roof, black"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a white roof", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "be1376023c274bdda995d54f3694157f"], "properties": ["color, blue, structure", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a roof"], "question": "which building has a roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a pixelated-textured purple sphere ."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "fb68393941804e769d5c9b372864a642"], "properties": ["color, horns, features", "texture, color, shape"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a black and white of a knife/sword with a handle."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["roof, color, red", "image, color, black and white"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, material", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "bded33af34104b9686b845dfd18309a9"], "properties": ["ceiling, light, desks", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["fireplace, stick, surround", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["size, color, shape", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a red, blue, and green striped tower building."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["frame, roof, trusses", "color, red, blue, green"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is more colorful", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "a2354f13774340d392fbf33564934aab"], "properties": ["color, shape, poles", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "a17477b445b3443189dad22f768b888b"], "properties": ["red, eyes, rocket", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["s of, snowboard, shoes, mask", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a white of a spaceship and building."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, green, lawn", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a white sofa, chair, and box."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "4c59733ebd634594a921b7ace60e4142"], "properties": ["building, plane, room", "sofa, chair, box"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a white chair"], "question": "which entity has a box", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "e602ac60041f4b4f84c044161e478781"], "properties": ["door, roof, pool", "floor, wall, roof"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a white human skull with broken bone elements."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, height", "color, white, skull"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, grass, moss", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a white of a man with arms outstretched."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["boat, table, chairs, umbrella, solar panel", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, structure, house", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which structure has a roof", "label": 1}, {"captions": [" a small house with a roof.", " a small building with windows and a roof."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, house, small", "roof, windows, building"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["compartments, wall-mounted, vents", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a black shark", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["black, mouth, teeth", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which object is not a shark?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "be1376023c274bdda995d54f3694157f"], "properties": ["3D, toothpick, skateboard", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small blue robot with a windmill."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, horns, features", "color, blue, robot"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a wind turbine"], "question": "which entity is a robot?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "5850d5c7223447db816081d50292fec0"], "properties": ["turrets, flags, towers", "structure, material, pool"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, roof, tray", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a person breaking through a brick wall."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a futuristic white sports racing car."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["a, bird, lamp", "color, white, futuristic"], "captions_pred_pc": ["a silhouette of a person standing in the air", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a futuristic sports car"], "question": "which car is white", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "bded33af34104b9686b845dfd18309a9"], "properties": ["a room, a cake, a table", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small wooden house with a green roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["face, handle, spout", "roof, color, green"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a house with a ladder"], "question": "which entity has a roof", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, green, orange, star", "stair, table, chair"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["a, color, white", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, purple, suspended", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a green mountain with trees and grass."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["yellow, table, roof", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a pair of yellow pliers.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, yellow, pliers", "a, material, clay"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a pair of scissors on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is red, blue, pink", "a, material, clay"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["texture, spikes, eyes", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small building with windows and a roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["stair, table, chair", "roof, windows, building"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, truss system, framing", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a roof structure"], "question": "which entity has a roof with trusses and beams?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, texture", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a white plastic container with a label on it"], "question": "which entity is white and yellow?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, plane, town", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a futuristic white sports racing car.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, white, futuristic", "a room, a cake, a table"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["background, color, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c4c09479570943e2845fbd4c6a450568"], "properties": ["house, plane, town", "castle, island, house"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small house on an island"], "question": "which entity has a house on an island?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["55b26130f1514032be078e13fd982905", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": [" a large building with a roof and windows.", " a multicolored metal building structure with a roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, windows, building", "color, roof, structure"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, blue, white, handle", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a needle on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "443554d4d7044c66aa8cbff63c737589"], "properties": ["house, tree, pool", "roof, color, pink, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which house has a pink and blue roof?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color is white, material is plastic, shape is box", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a white plastic tray", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": ["white cube", " a clear glass table with metal legs and balls on top."], "sample_ids": ["7ddfa25dc0d448c390b2227ed83616cc", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, shape is cube, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, material, ceramic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", "a black floor lamp with a wooden round base, black shade, and attached cord."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "03db87a02e3847f8a712a362de9a314d"], "properties": ["base material, wood, shade color, white, beige", "Base material is Wooden, Shade color is Black, Cord color is Black"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white illustration of a bomb on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a black floor lamp with a round shade on top"], "question": "which lamp has a black cord?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, color, red", "island, mountain, grass"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, white, black, white", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, shape, gun", "image, color, pink"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a rainbow?", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, hand, flowers", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, plane, room", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["size, material, shape", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a potted christmas pine tree."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["a, eagle, wood", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["black, white, coffee table", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["stair, table, chair", "floor, stairs, bathroom"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, base, slanted", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a house with a roof and beams."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["white, top, writing", "roof, beams, house"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a wooden billiard table with legs."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a, roof, soup", "legs, material, wood"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, visor", "a, material, clay"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof truss, chimney, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", "a low-poly of a white, shattered sphere."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, pier, railings", "sphere, color, texture"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a small camera, black stereo system, speaker, and ceiling fan.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c6cef5b8f3a741e4a619e3441bee54d5", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["camera, speaker, ceiling fan", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker and a ceiling fan?", "label": 0}, {"captions": [" a large metal bomb.", "a 3d red and white santa claus teddy bear with a flying plane and floating hat."], "sample_ids": ["00c6c9da8a3943e8b096c1a3134d1d8d", "0797e97b272c43d59bfeb5821421c5eb"], "properties": ["size, material, shape", "hat, color, white"], "captions_pred_pc": ["above a black and white image of a dome shaped object", "a black and white image of a doll made of beads"], "captions_pred_image": ["a 3d model of an industrial ventilation fan", "a black and white photo of a snowflake falling from the sky"], "question": "which object is made of white", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, structure, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, screen, drawer", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["Drawer, Handle, Wood", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["s, stick, leaf", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "broom, shovel, fireplace"], "captions_pred_pc": ["a black mascara brush on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of an outdoor fireplace"], "question": "which entity is a fireplace?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small white archway structure resembling a building."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "5ad02458cf394134a902e25001d2ffef"], "properties": ["color, table, ceiling", "structure, building, archway"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a white object on a white surface"], "question": "which structure is white", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a box, a cup, a bottle, a jar", "island, mountain, grass"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, rock, pond", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a hill?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["house, roof, toothbrushes", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, gun", "building, plane, room"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, background, white", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["image, building, stairs", "building, balcony, street"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "c3a82df41875402285608ef13a55df57"], "properties": ["floor, table, light", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "a17477b445b3443189dad22f768b888b"], "properties": ["metal, rusted, paper", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "97e000ff41094665afd94ea565da8b13"], "properties": ["- color is white- shape is cubes- number is 1", "roof, material, wood"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, roof, green, frame, red", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of the roof of a building"], "question": "which roof is made of trusses", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, table, blocks", "color, white, gold"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["ceiling, light, desks", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a white crocodile", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a piece of white paper", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a colorful sunburst with pink, blue, and purple hues.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["46946704a6344eb18718fc5710782f6b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, hue, saturation", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white photo of a ceiling light fixture", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunbur", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a white of a woman with her arms outstretched."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, pen, logo", "image, color, white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, material", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a black and white image of a door with a crack in it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small wooden house.", " a large steel building with many columns and a pool."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["house, material, wood", "building material, pool, steel"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small cottage", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "5017581716c7402581a82ebf08d427a3"], "properties": ["resembles, toy, bookshelf", "Shelf, color, white"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a white shelf"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "887e410d07854396b563325ae1929583"], "properties": ["hat, food, bowl", "hat, mouse, bear"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, blue, components", "color, head, white and brown"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "a black and white of a knife/sword with a handle."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["shape is box, color is white, door is present", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "1c389c8f46b345838e515b9747c1f982"], "properties": ["color, white, plastic", "plate, fruit, knife"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a person riding a skateboard on a wooden surface"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small white box or bench.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["dfc7c96b45b74328bce7418560fe76fe", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["white, bench, small", "house, fence, playground"], "captions_pred_pc": ["above a black and white illustration of a person standing on top of a skyscraper", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["house, roof, toothbrushes", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small wooden house with a green roof."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["pos machine, credit card machine, cash register", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small house with a red roof.", " of two rocks with ice elements."], "sample_ids": ["085db9059b744673b5623b5338e02196", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, red, house", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " a blue and green penguin."], "sample_ids": ["5c04dac989a64d228283687588484b93", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, shape, material", "color, blue, green"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d model of a penguin sitting down"], "question": "which entity is a blue and green penguin?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["building, floorplan, gym", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, head, bowl", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["structure, columns, roof", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a window", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["size, color, shape", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white, curved plastic object resembling an ear, mouth guard, or hat.", "white ceramic urn with a red lid."], "sample_ids": ["c3a82df41875402285608ef13a55df57", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["shape is curved, color is white, material is plastic", "color, white, lid, red"], "captions_pred_pc": ["a black and white drawing of a bird's wing", "a black and white photograph of a vase"], "captions_pred_image": ["a white plastic object on a gray background", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic", "label": 1}, {"captions": ["a white ornate airplane design.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "b896a0898efe4059a776193c02132129"], "properties": ["color, base, warning", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, stairs, table", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a building with a staircase", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a house with a wooden-framed roof structure."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["island, terrain, water", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["shape is cube, color is black, white", "arrow, red, white"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a small house on a hill in a field."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["building, plane, city", "house, hill, field"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a city in black and white", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["building, stairs, shelves", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["flower, color, pink", "roof, color, yellow"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["frame, roof, trusses", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is not a cube?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a wooden shed with a gray roof."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["light switch, electrical outlet, furniture", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, shirt, bearded", "hat, dress, racket"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a man with a beard", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity is a woman?", "label": 1}, {"captions": ["a white 3d mannequin human head.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, mannequin", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, desk, laptop", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a, hole, shelf", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a small wooden house with a green roof."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, texture", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " a large steel building with a pool."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, pool, balcony", "building material, pool, steel"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, tan, brown, orange", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a cone shaped object"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is wood - color is white - height is 1.8 m", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["costume, color, black", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, blue, structure", "color, white, gold"], "captions_pred_pc": ["a black and white image of dots on a white background", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["roof, stairs, house", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a throne with a tree on it"], "question": "which entity has stairs", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a stone wall featuring carvings and statues."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["carving, statue, wall", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d image of a group of statues on a wall"], "question": "which entity has a statue of a woman?", "label": 0}, {"captions": [" a small white building with a floor plan and ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["floor plan, ceiling light, color", "building, plane, room"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a house with a wooden-framed roof structure."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["resembles, octopus, squid, spider, robot", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a black rock with writing on it."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, red, blue, structure", "color, black, writing"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a large steel building with a pool."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, white, containers", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "dd3a9323ed514ccab330973ff9588015"], "properties": ["castle, island, house", "room, bed, desk"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a small room with a bunk bed"], "question": "which entity has a desk?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "4a889132cc444d10bfcbf6c760984416"], "properties": ["building, room, sky", "a, color, white"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a bicycle near a wall.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c527acbe4e53402497207050a8115676", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["A, wall, bicycle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of an airplane flying in the sky", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a bicycle leaning against a wall", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["blue tarp, flower, small island", "mountainous, landmass, state"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["hat, bag, blanket", "cloak, sword, spear"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "color, background, white"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a building on a white surface", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a, building, staircase", "3d, slide, swing"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " of a clear glass display case with a square light fixture."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "980ded888795417f94b46750105e1597"], "properties": ["color, shape, material", "light, fixture, square"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a clear plastic box"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["background, color, white", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a table with a staircase"], "question": "which entity has a light?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["55b26130f1514032be078e13fd982905", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["collection, color, black, handle, wooden", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is wood, metal, metal", "a, material, clay"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["structure, building, archway", "throne, stairs, tree"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a throne with a tree on it"], "question": "which entity is a throne?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white house with a roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["room, door, shelf", "roof, color, white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["color, sphere, molecule", "spheres, lamp, city"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a futuristic spaceship"], "question": "which entity has more spheres", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of two rocks with ice elements."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, roof, green", "image is a rock with ice elements"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a box, a cup, a bottle, a jar", "water, boat, rock"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "402601779d1d4146b4cde106dfff1b27"], "properties": ["holder, spring, box", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a snowflake in the air on a cloudy day"], "question": "which entity is a picture of a cat", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof truss, insulation, suspended ceiling", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a building with a roof"], "question": "which roof is more complex", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["room, door, shelf", "house, roof, blue"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a white ornate airplane design.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["b5afccae993346079483507296fbb029", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["shape is square, material is metal, color is rusty", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["floor, staircase, railings", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["a, island, water", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["white korean word on a gray background.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "b896a0898efe4059a776193c02132129"], "properties": ["color, background, font", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["island, terrain, rocks", "a, color, red"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a castle with two towers"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["building, fence, snowy", "building, fence, snowy"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which entity has a fence?", "label": 0}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a white of a man with arms outstretched."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["low poly, llama, kangaroo", "image, color, white"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, grass, moss", "color, green, squirt gun"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a white of a woman with her arms outstretched."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, red, blue, structure", "image, color, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, gazebo, table", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["door, white, structure", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "20a02705a66f460492e07345e84a62ed"], "properties": ["mossy, rock, rocky", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity is not a jar?", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " of a small white building with stairs and a lid."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, material, wood", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a spider-like creature with long arms and legs."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, tree, plane", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " a house with a roof and beams."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, laptop, teddy bear", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "243cd2c469984313b1522dca099eefd3"], "properties": ["size, material, color", "color, white, material, ceramic"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, pattern, wall", "house, tree, pool"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a white chest of drawers with legs."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, screen, drawer", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white image of a brush", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d rendering of a white dresser"], "question": "which chest of drawers has legs", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["house, yard, surrounding buildings", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a truck on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, yellow, chimney", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["frame, truss, roof", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a small wooden house with two roofs."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["color, roof, tray", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a metal object", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small barn"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a spider-like creature with long arms and legs."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, tree, pool", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["mannequin head, plague mask, straps", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a wooden frame with gold trim, featuring a picture of a river surrounded by trees.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["25b86d7272e849f0967149243601bcbf", "bf18bfd89efd43389781050230467d58"], "properties": ["frame, picture, frame", "Lights, number, five"], "captions_pred_pc": ["a black and white patterned square on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a lake with trees in the background royalty free 3d model preview no.3", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "b896a0898efe4059a776193c02132129"], "properties": ["roof truss, insulation, suspended ceiling", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "6b745457e06840119058883b35f78f58"], "properties": ["image is rock formation with a white cliff and a rock", "roof, color, blue"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a castle with two towers"], "question": "which entity is not a toy?", "label": 0}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "e694d53545d449319a64cceb0280c3c6"], "properties": ["room, door, shelf", "3d, slide, swing"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, purple, suspended", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" of a small house on a hill with a floating paper object and a curved metal piece.", " of two rocks with ice elements."], "sample_ids": ["000f67c78d9f409ca5dcc9d59f90287b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, hill, paper, metal", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house on the side of a hill", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e832e6c497a041a0b8bde5418fa20a83"], "properties": ["ceiling, light, desks", "pattern, floor, light"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a patterned square"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small wooden box"], "question": "which entity has a ceiling light with a grid pattern", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, text", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["frame, beams, trusses", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color of yellow", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a robot with a blue, purple, and white body."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, shape, texture", "body, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a robot"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a small house with a tree and a rock."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["- material is stone - color is blue - shape is arrowhead", "house, tree, rock"], "captions_pred_pc": ["above a black and white drawing of an arrow", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a small house with a tree in front of it"], "question": "which object is made of rock", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "9968e06a62e8487ea33460e640abc573"], "properties": ["bed, desk, window", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white object on a gray background"], "question": "which object is not a room?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof truss, beams, structure", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, pier, railings", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, material, wood", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "island, mountain, grass"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["house, roof, wooden", "roof, truss, suspended ceiling"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, blue, components", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a small white house with a roof."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a knife, blade, handle", "roof, color, white"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a wooden-framed roof structure."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, rock, pond", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " of two rocks with ice elements."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["s, cat, fish, person, pig, bird", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "c3a82df41875402285608ef13a55df57"], "properties": ["color, roof, block", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, table, chairs", "house, pool, balcony"], "captions_pred_pc": ["a close-up of a white object on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small, snow-covered house."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["castle, island, house", "house, snow, cover"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, purple, suspended", "roof, structure, suspended"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a white rocking chair with a curved backrest."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["cup, bottle, chessboard", "backrest, curved, yes"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "b896a0898efe4059a776193c02132129"], "properties": ["roof, ceiling, hole", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a small wooden house with a roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof truss, beams, structure", "roof, house, wooden"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "9968e06a62e8487ea33460e640abc573"], "properties": ["fireplace, bench, log", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "4a889132cc444d10bfcbf6c760984416"], "properties": ["a, b, c", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, grass, moss", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["painting, door, wall", "room, staircase, bus"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "6b745457e06840119058883b35f78f58"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a japanese geisha in a metal frame with a triangular-shaped metal door.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0a75511848d74b7f97422ad85a27ec2e", "b896a0898efe4059a776193c02132129"], "properties": ["frame, door, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a line of black dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a framed picture of a geisha with a fan in her hand", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a large white and metal building with a metal roof structure."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, wall, color", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a large white box"], "question": "which building has a white roof?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house with a blue roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, temperature, england", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["desk, chair, table", "house, roof, wooden"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is metal - weight is 0 - height is 0", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, blue, rim, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white bowl on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, white, containers", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof trusses, beams, suspended ceiling", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white drawing of a building", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a set of three white shelves or ceiling panels with lines.", " of a small white building with stairs and a lid."], "sample_ids": ["ff6f8c2347ab4c17a2b3e319b205f191", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["set, white, lines", "building, stairs, lid"], "captions_pred_pc": ["a set of black and white dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a set of three white trays on a gray surface", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small white barn with a metal roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, green, lawn", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a black and white striped box."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["door, white, structure", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "c4c09479570943e2845fbd4c6a450568"], "properties": ["building, tree, plane", "castle, island, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small house on an island"], "question": "which entity has a castle?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["hat, cup, bowl", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, red, green, blue", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, staircase, table", "house, tree, pool"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a white hat, plastic cup with a lid, and a bowl."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "4a9d79b48eda4ad797a652ee01b1b026"], "properties": ["hat, cup, bowl", "hat, cup, bowl"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "in 15 words or less a black and white illustration of a funnel"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a white plastic hat and bowl on a gray background"], "question": "which entity has a white hat", "label": 0}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small white house with a roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["houses, trees, road", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, line, gray", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["shape is hot dog, design is dragon, color is black", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, hole, shelf", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, skull, bread", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a stone sculpture", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a small black and white cube.", " a white motorcycle with wings."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, size", "color, white, wings"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": ["3d low poly model of a small house on an island with trees.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["3b4db49a69bf48debf30b2693bd79c82", "bf18bfd89efd43389781050230467d58"], "properties": ["3d, model, house", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of an airplane flying in the sky", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a blue plastic stool."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["a knife, blade, handle", "color, plastic, blue"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a 3d object featuring a rock, shell, piece of paper, and cat."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "53efab50e5a74e5ea165c763cea15be4"], "properties": ["a box, a cup, a bottle, a jar", "a, rock, paper"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a flock of birds in the sky"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a piece of paper in the shape of an island"], "question": "which object has more paper", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small house with a roof."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["buildings, houses, grass", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a red roof.", " a small building with windows and a roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, red, house", "roof, windows, building"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof with windows?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a brick wall with grass."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, sphere, molecule", "brick, grass, wall"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["striped, white, black", "glass, metal, balls"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a stack of books", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house with a yellow roof and chimney."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["house, roof, green", "roof, yellow, chimney"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, style, pixel", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "above a black and white image of an object on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large metal building with a roof and truss structure."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, blue", "roof, truss, structure"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a wooden-cased radio."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, size", "case, material, wood"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a white box with a black base", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large building with a roof and windows."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, color, blue", "roof, windows, building"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "b896a0898efe4059a776193c02132129"], "properties": ["building, room, sky", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, color, yellow-green", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a clay pot with holes in it."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, size", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small white house with a roof."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["blue tarp, flower, small island", "roof, color, white"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["shape is cube, material is wood, color is white", "buildings, houses, grass"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "an image of a pile of trash on the ground"], "question": "which entity is made of grass", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "c8936ace72954650b4e2d84246964849"], "properties": ["flower, rock, tree stump", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of a house with a roof"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, material, shape", "house, pool, balcony"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["staircase, railing, building", "house, roof, wooden"], "captions_pred_pc": ["a black and white photograph of a light switch", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, bowl, cup", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["resembles, toy, bookshelf", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a piece of marble"], "question": "which object has a board", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a house with a green, wooden-structured roof."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["windmills, silhouette, city model", "roof, color, green"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "6b745457e06840119058883b35f78f58"], "properties": ["color, material, pattern", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, windows, building", "roof, truss, suspended ceiling"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a house with roof trusses"], "question": "which entity has a roof with a truss?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house with wooden framing and trusses."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["house, tree, pool", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, red, green, yellow", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a toothbrush", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with a wooden-framed roof structure."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, white, logo", "hat, candy, strawberry"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a house with a flat roof structure."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "abc52d210d71415296730bb00352ce6f"], "properties": ["Drawer, Pattern, White", "roof, flat, structure"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a house with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small, snow-covered house."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["furniture, staircase, torn-apart", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " of a small white building with stairs and a lid."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, color, white", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a bench", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a white box on a gray background"], "question": "which building has stairs?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a potted christmas pine tree."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["collection, plane, car", "a, color, green"], "captions_pred_pc": ["above a black and white image of a piece of paper", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" of a lidded trash can.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b166e9a1c5d540c19a1075b7f064f42f", "b896a0898efe4059a776193c02132129"], "properties": ["lidded, trash can, color black", "- material is stone, metal, concrete"], "captions_pred_pc": ["a circle of dots on a white background a circle of dots on a white background vector illustration of a circle of dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a trash can", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["location, area, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["building, fence, snowy", "mossy, rock, grass"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a piece of wood on a white background"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white glass beer mug.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, white, glass", "island, fish, ice"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a glass pitcher", "a 3d map of the country of israel"], "question": "which is not a fish", "label": 1}, {"captions": [" of a drum set", "a 3d low poly model of an orange with a green leaf and stem."], "sample_ids": ["0bf7985bf5f94236b8b5c2965270e08b", "cdd918943a124d3f94859d9f67ab8e3e"], "properties": ["size, color, material", "3d, low, poly"], "captions_pred_pc": ["a black and white illustration of a toy tricycle on a white background royalty free illustration", "a black and white illustration of a hexagonal shape with dots"], "captions_pred_image": ["a 3d model of a drum kit royalty free 3d model preview no 1", "a 3d model of a paper airplane flying in the air"], "question": "which object is made of polygons", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["house, color, white", "roof, brown, flat"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f1b557775310478893242180defa4d80", "a17477b445b3443189dad22f768b888b"], "properties": ["shack, roof, door", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a white glass beer mug."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "color, white, glass"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof truss, beams, structure", "structure, columns, roof"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "6b745457e06840119058883b35f78f58"], "properties": ["house, tree, rock", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", " a clay pot with holes in it."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image, color, black and white", "hole, material, clay"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a knife", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a small wooden house with a green roof."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["shape is hot dog, design is dragon, color is black", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white box with a green light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, light", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c3a82df41875402285608ef13a55df57"], "properties": ["background, color, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small house with stairs and a roof."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["hair, legs, wings", "roof, stairs, house"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "d49d8ed244094349a99e4faca05e0690"], "properties": ["headboard, wall, strip", "low poly, plant, white"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a potted christmas pine tree."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["house, yard, surrounding buildings", "a, color, green"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small building with windows and a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, roof, green", "roof, windows, building"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house with a roof and beams."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["graffiti, chinese writing, door", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a wooden billiard table with legs."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, model, luggage", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, and size", "roof, color, yellow"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a room"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the same color as the building structure?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is white- color is white- texture is textured", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a gun with red wires and a red handle."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "92b06e113e3840f3a3191baf951f19c6"], "properties": ["color, green, handle", "color, red, handle"], "captions_pred_pc": ["of a small black object on a white background", "above a black and white image of an object"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d rendered image of a gun"], "question": "which object has a red handle", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, roof, white, cubes", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, framing, material", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a barn structure", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a large metal building with a roof and truss structure."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "b85a99699ccd4bcba213322113bb253d"], "properties": ["Steel, Color, Yellow", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a building", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, shape, text", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a white glass beer mug."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "1d686cbd3e9a4c629a43088658989286"], "properties": ["building, balcony, street", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", "a white of a man with arms outstretched."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, lake, boat", "image, color, white"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small wooden house with a green roof."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["staircase, railing, building", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["color, grass, moss", "a, landscape, sand"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a house with wooden framing and trusses."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["frame, screen, color", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color is white, yellow, plastic", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a four-legged metal workbench with shelves."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["earbuds, light, ring", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["80cc05e292b0437ba3189b68f6da0ca0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["buddha, chair, design", "a, material, clay"], "captions_pred_pc": ["a black and white image of a cactus on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["3d model of a buddha statue royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["mannequin head, plague mask, straps", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a wooden billiard table with legs."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, white, plastic", "building, plane, room"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a blue roof.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["roof, color, blue", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, white, gold", "resembles, sea urchin, shell"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a sea urchin"], "question": "which entity is white and brown?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a large metal building with a roof and truss structure."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "b85a99699ccd4bcba213322113bb253d"], "properties": ["room, door, shelf", "roof, truss, structure"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a house with a flat roof structure."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "abc52d210d71415296730bb00352ce6f"], "properties": ["mossy, rock, grass", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white building with stairs and a white table."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, structure, wall", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a 3d printed green robot with two arms and two legs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["04e3e8ce541e487b9e342570fe1b4eb2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color is green, material is 3d printed, number of limbs is 2", "a, material, clay"], "captions_pred_pc": ["a black and white image of a robot in the shape of a snowflake", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a futuristic robot standing on its hind legs", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a futuristic white sports racing car."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, black, white", "color, white, futuristic"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a futuristic sports car"], "question": "which car is white", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small building with stairs and a glass floor, featuring a square table and a black square ceiling light."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "8aaad713b8834739b008ccf2f3d86cce"], "properties": ["floor, staircase, railings", "floor, table, light"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white photograph of a window"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a black and white 3d model of a staircase on a platform"], "question": "which floor is made of glass", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "e694d53545d449319a64cceb0280c3c6"], "properties": ["roof trusses, beams, suspended ceiling", "3d, slide, swing"], "captions_pred_pc": ["above a black and white drawing of a building", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", "a white of a man with arms outstretched."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["red, eyes, rocket", "image, color, white"], "captions_pred_pc": ["of a black and white image of a clock", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, hole, rock", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["water, boat, rock", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, shade, black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["graffiti, bench, wall", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a cone shaped object"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "5414d75e47104589837f3df8b6de6d22"], "properties": ["backrest, curved, yes", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["roof, brown, flat", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a table and stool", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a child's room in a small house with windows."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "88847a6445044bcbab9611e6028a19b9"], "properties": ["house, plane, town", "room, house, windows"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity has more windows", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a small wooden house with a green roof."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, material, shape", "roof, color, green"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["55b26130f1514032be078e13fd982905", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d rendering of a metal box with a handle"], "question": "which box is made of metal", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["top, color, wood", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a building with many windows"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house with a flat roof structure."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "abc52d210d71415296730bb00352ce6f"], "properties": ["room, bed, desk", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a small white building with stairs and a white table."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, leg, tail", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a sword on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a wooden roof structure with a pink roof."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, island, water", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, roof, structure", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a barn structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["color, temperature, england", "house, plane, town"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small purple plastic chair with holes."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, yellow, black", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of an airplane", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white helicopter flying in the air", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a drawing of a bird, fish, and white-blue dragon with a tail.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["7136a3a6819e49e4b855f45fa1e2cded", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["animal, tail, white-blue", "color, background, white"], "captions_pred_pc": ["a white and black bird flying in the sky stock illustration \u00a9 2019 iStock", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["an illustration of a bird with its wings outstretched on a gray background", "an image of a white background with a few small cubes on it"], "question": "which entity is not an animal?", "label": 0}, {"captions": [" of a green-leafed plant in a white hanging pot.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, green, leaf", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has green leaves", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["hoodie, ball, person", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a person standing in front of a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d pixelated minecraft model of a small city with buildings, trees, and a village.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["36fedf68eee24461886fb8d4a38eea00", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["pixelated, model, village", "house, building, people"], "captions_pred_pc": ["a black and white illustration of a snowflake in the shape of a virus 3d illustration a black and white illustration of a snowflake in the shape of a virus royalty free illustration", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a futuristic city", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a white of a woman with her arms outstretched."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, text", "image, color, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house with a wooden-framed roof structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ef2edaf670a64ec29114d7eeeaec7776", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a staircase", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a roof", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "f3edc84dc71649c1a11270437279255b"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "hippo, hind, legs"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white illustration of a frog"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity has hind legs", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with stairs and a balcony."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0fbc5f16d301450c820b1f2158fd4f69"], "properties": ["floor plan, heating system, ceiling light fixture", "balcony, stairs, house"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with two floors and a balcony"], "question": "which house has a balcony", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, base, warning", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a concrete wall"], "question": "which object is made of concrete", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, grass, moss", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["tv, chair, laptop", "house, pool, balcony"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a large metal building with a roof and truss structure."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, base, slanted", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a chair", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["Cabinet, Drawers, Filing", "house, roof, blue"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " of two rocks with ice elements."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, pattern, wall", "image is a rock with ice elements"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, structure, house", "roof, truss system, framing"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["floor plan, heating system, ceiling light fixture", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, black, visor", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["ruined building, stone floor, small stone structure", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a house with a blue roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["building, roof, balcony", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a house with a roof"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["structure, building, archway", "house, building, people"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a pontoon boat with two seats and a canopy.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["seat, canopy, pontoon", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "for a black and white image of an object on a white background"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a small house with a blue roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, blue", "roof, trusses, beams"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a large metal building with a roof and truss structure."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a knife, blade, handle", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a metal grate on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "6398f4e75a2d480da58396827ac64249"], "properties": ["house, lake, pool", "- color is red, blue, pink"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a large building", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which entity is not a chandelier?", "label": 1}, {"captions": [" a small house with a red roof.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["085db9059b744673b5623b5338e02196", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, red, house", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house with a wooden roof"], "question": "which house has a wooden roof truss structure and ceiling with wood beams?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["sandbox, sand bucket, wooden blocks", "building, room, sky"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", "star wars stormtrooper "], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, leg, tail", "a, color, white"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["texture, spikes, eyes", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a small wooden house with a green roof."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["design, poles, table", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "aae2c42740a04fd68068f5707111d26f"], "properties": ["color, grass, moss", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["shape, color, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a pair of socks", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a human bone", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, b, c", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["floor plan, heating system, ceiling light fixture", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c4e45a41478e42418399074b88d8920f"], "properties": ["- color is red, blue, pink", "axe, handle, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof truss, beams, structure", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a white castle composed of small cubes.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["composed of, white, cubes", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "8da8da6ccf5f4011a4115977c55d1cb8"], "properties": ["s, plane, house", "s, plane, house"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white silhouette of a map"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a plane in it?", "label": 0}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, eagle, wood", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["3d white geometric shapes and paper clip.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8760487af6c748ac8111f09113a77b16", "b896a0898efe4059a776193c02132129"], "properties": ["3D, white, paper clip", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white knife on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d printed diamond shaped object on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["bird, nest, wood", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, tan, brown, orange", "house, table, chair"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white photograph of an open door"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "402601779d1d4146b4cde106dfff1b27"], "properties": ["room, bed, desk", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": [" of a house with a roof.", " of a crab holding a rubik's cube."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, house, roof", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, roof, structure", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a barn structure", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["bedroom, bathroom, bed", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a small table"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, roof, white, cubes", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a yellow and blue toy submarine."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["- color is white- shape is cube- material is plastic", "color, yellow, blue"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a submarine toy"], "question": "which toy is yellow and blue?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "white 3d paper airplane map model"], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["color, white, plastic", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "black glitter africa map on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " of a small white building with stairs and a lid."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["table, staircase, light", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a white of a gun.", "a white glass beer mug."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, gun", "color, white, glass"], "captions_pred_pc": ["of a white object on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["building, roof, white, cubes", "a city, train, dragon"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a city on a white background", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "aae2c42740a04fd68068f5707111d26f"], "properties": ["texture, spikes, eyes", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "e34088fc7b5344c4ab29fef067750225"], "properties": ["base material is wood, color is red, message is welcome to northwich", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a sculpture on top of a pedestal"], "question": "which object has a pedestal?", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a small white building with stairs and a white table."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "e30374c614f54fdb90f35b96b071349d"], "properties": ["pattern, color, shape", "building, stairs, table"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["green dumbbell ", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color is green, shape is dumbbell, material is metal", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, red, blue, green", "frame, beams, trusses"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building under construction"], "question": "which building has a frame?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "f39783d05dec49e49482c407d656e0f7"], "properties": ["building, tree, plane", "a, plane, small plane"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "of a black and white photo of an airplane propeller"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d printed model of a fighter plane in the air"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house with a green, wooden-structured roof."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["floor, wall, roof", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["smiley-faced banana .", " a small white house with a roof."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["graffiti, bench, wall", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["color, grass, moss", "lighthouse, fountain, crater"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain?", "label": 1}, {"captions": [" a large building with a roof and windows.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, windows, building", "roof, structure, greenhouse"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["- material is plastic- color is green- shape is box", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d sculpture of a bird with its wings outstretched"], "question": "which object is made of gold", "label": 1}, {"captions": ["purple speech bubble and circle", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, size", "cover, black, plastic"], "captions_pred_pc": ["a black and white speech bubble on a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, black, visor", "axe, handle, wood"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "for a black and white image of a bird's wing"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of a knife on a white background"], "question": "which object has a visor", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, green, squirt gun", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a black shark", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["black, mouth, teeth", "house, roof, blue"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["window, clock, wall", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a brick wall", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "40921ffd69db479294554d261daf3035"], "properties": ["railing, glass, table", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "97e000ff41094665afd94ea565da8b13"], "properties": ["cover, torn, open", "roof, material, wood"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "b896a0898efe4059a776193c02132129"], "properties": ["desk, chair, lamp", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a white of a small archway gate."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["roof, purple, suspended", "image, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white illustration of an arch"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, floor, columns", "throne, chair, building"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " of a white human skull with broken bone elements."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", "a white of a man with arms outstretched."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["hat, color, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a doll made of beads", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["color, shape, and size", "shade, white, bead"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a wall lamp with a white shade and a butterfly design"], "question": "which entity has a white shade", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a house with a wooden-framed roof structure."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- material is white- color is white- texture is textured", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "09f2cf267e954c958828325067bcc36a"], "properties": ["a box, a cup, a bottle, a jar", "island, terrain, rocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["buildings, houses, grass", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["floor plan, bathroom, pool", "roof structure, truss, ceiling"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a roof structure"], "question": "which entity has a wooden roof structure", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["- material is metal- color is silver- texture is textured", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, sphere, molecule", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere that is blue and white?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["building, floor, columns", "roof, structure, wall"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small blue robot with a windmill."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, shape, size", "color, blue, robot"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "97e000ff41094665afd94ea565da8b13"], "properties": ["water, boat, rock", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small red and white spaceship.", " a wooden shed with a gray roof."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, size", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, base, warning", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a chair with a yellow seat."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "a4de5f2055154465968f33d6289c64e6"], "properties": ["backrest, curved, yes", "color, yellow, seat"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which chair has a yellow seat", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small white house with a roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, texture", "roof, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a house with a green, wooden-structured roof."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, number", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a white and blue building with a black roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, table, chair", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["chair, table, refrigerator", "roof, structure, greenhouse"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, hole, rock", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a lace belt", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a spider-like creature with long arms and legs."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["island, mountain, grass", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a black and white image of an alien creature"], "question": "which entity is an arachnid", "label": 1}, {"captions": [" of a machine gun.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "1da865c75a5e4a57a17652975dae5474"], "properties": ["gun, barrel, caliber", "color, white, plastic"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a spider-like creature with long arms and legs."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, trusses, ladder", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a wooden-cased radio.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["case, material, wood", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", "star wars stormtrooper "], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["pattern, color, shape", "a, color, white"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, bench, rack", "a, material, clay"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a broken bowl with a hole in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["55e883c09dbf4f22bee0da608128f4f8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, material, bowl", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a bowl on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a white bowl on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["roof, air conditioner, house", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", "a white of a man with arms outstretched."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["mossy, rock, rocky", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a house with a blue roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["graffiti, chinese writing, door", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, white, red, pink", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["collection, plane, car", "house, staircase, table"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, structure, wall", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, green, lawn", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which roof is brown", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["s, boat, bird, airplane, kite", "Object, Tray, Tray"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "above a black and white image of a piece of paper"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d image of a white tray with an intricate design"], "question": "which object has a bird on it?", "label": 0}, {"captions": [" a building featuring a radio tower with a red antenna.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, tower, color", "building, color, black and white"], "captions_pred_pc": ["for a black square on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, material, frame", "structure, columns, roof"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" of a person with outstretched arms", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fc785c3c22794ccb9c8a58c79ac5bec6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["arms, outstretched, person", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a pair of eyes", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["hill, field, castle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, white, containers", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a table with multiple tables and chairs"], "question": "which entity has a yellow color", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "674a36147ffb47059e48abc9fa19d923"], "properties": ["cup, bottle, chessboard", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, material", "gold, ring, animal"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white image of a shark"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is made of gold", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a four-legged metal workbench with shelves."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, grass, moss", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, mustache, chef", "hat, watch, clock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["light, floor, ceiling", "room, furniture, window"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, color, case", "a, material, clay"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "b896a0898efe4059a776193c02132129"], "properties": ["chair, table, refrigerator", "- material is stone, metal, concrete"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "18e392c5360146eda498c5edab25b15c"], "properties": ["building, stairs, shelves", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a building under construction"], "question": "which building has a frame?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, structure, greenhouse", "Wheels, laptop, robot"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["red, pile, garbage", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white illustration of a triangle", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, brown, flat", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["shape is hot dog, design is dragon, color is black", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " of a machine gun with additional items."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["pos machine, credit card machine, cash register", "gun, type, machine gun"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a submachine gun"], "question": "which object is a type of gun", "label": 1}, {"captions": [" a small purple plastic chair with a handle and white base.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["cc5abae412db4e4b952eee1e4747af05", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, plastic, base", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white illustration of a necklace", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a table with a stool on top"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple and green sphere.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a 3d white cube with a square in the middle.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, size", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, orange, white", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small black and white cube-like object.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["66f9c2c2216e4f81a2aa6c12c08bfb55", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image with a square in the center", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of an object on a white and black striped surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, lake, pool", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a large building"], "question": "which entity has a pool?", "label": 0}, {"captions": [" a small house with a roof.", " a house with a roof and beams."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, house, small", "roof, beams, house"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a building with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a roof and white brick wall.", "a white of a man with arms outstretched."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, wall, color", "image, color, white"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, yard, surrounding buildings", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a molecule with two pink and blue spheres.", " a house with a wooden-framed roof structure."], "sample_ids": ["926fb2e23c56440a86287e98c1440336", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, size", "roof, material, wood"], "captions_pred_pc": ["a molecule with the word 'rono' written in black ink on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of three spheres on a white background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, shape, and size", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a spike on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a paper airplane"], "question": "which object is white?", "label": 1}, {"captions": [" a small red and white spaceship.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, size", "roof, ceiling, hole"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": ["3d stone sculpture of a bat", " of a hammer with a long metal handle."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["- material is stone - shape is bat", "handle, metal, long"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a hammer with a wooden handle and metal head"], "question": "which object is made of metal", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, red, apples, tree, cactus, dots", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is not a skeleton?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["ceiling, light, desks", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, green, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white and gray glove", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["building, roof, yellow", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a building with multiple levels"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "color, yellow, black"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white helicopter flying in the air"], "question": "which object is yellow and black", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color is purple, material is plastic, number of legs is four", "wood, board, shelf"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "745fed115c5343dab9d7f0c389c98902"], "properties": ["resembles, toy, bookshelf", "costume, color, black"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "b896a0898efe4059a776193c02132129"], "properties": ["color, yellow, black", "- material is stone, metal, concrete"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["white ferris wheel ", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["07020a01030c40869ceece7b739621b5", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color is white, wheel is ferris, color is white", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white drawing of a cross", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a ferris wheel royalty-free 3d model preview no.2", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which object is not a ferris wheel?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, color, purple", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, material", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a house with a wooden-framed roof structure."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, window, statue", "roof, material, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a white and blue building with a black roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, structure, house", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a roof that is black?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d5722274fb094222aca90bb59f4dff09"], "properties": ["color, light, jewels", "chest of drawers, cabinet, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a white cabinet with a drawer"], "question": "which entity is a cabinet?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a wooden staircase with a railing and table."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "956247bea850458199c651037d4b1d7f"], "properties": ["a, bird, hook", "railing, table, staircase"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a table with a staircase"], "question": "which staircase has a railing and table?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["roof, purple, suspended", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a white plastic tray"], "question": "which object is white", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, green, orange, star", "color, white, logo"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a white t-shirt with a supreme logo"], "question": "which item has a logo", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a wooden shed with a gray roof."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["mossy, rock, grass", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, white, containers", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a blue roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["roof, room, ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which roof is blue", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["boat, table, chairs, umbrella, solar panel", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a large orange pumpkin."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["roof trusses, beams, suspended ceiling", "orange, large, pumpkin"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "bded33af34104b9686b845dfd18309a9"], "properties": ["red, eyes, rocket", "table, staircase, light"], "captions_pred_pc": ["of a black and white image of a clock", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["a, bowl, cup", "door, roof, pool"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, color, blue", "roof, green, tiled"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a set of stainless steel shelves"], "question": "which roof is made of tiles", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house with a roof and beams."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, material, structure", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which structure has more beams", "label": 1}, {"captions": [" of a blue ford escort car.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, blue, ford escort", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black leather bracelet on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "a095621f2d5845af83db3f59f5685982"], "properties": ["background, color, white", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black line on a white background", "of a black ribbon on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a metal tray with two rolls of paper in it"], "question": "which object is silver", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "4806b382466247ad9265fc8240a22d3d"], "properties": ["location, field, gravestone", "rocky, rug, puddle"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which location is more likely to have a puddle", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, material, shape", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a glittering object", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "be1376023c274bdda995d54f3694157f"], "properties": ["bed, desk, window", "roof, beams, chimney"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, material", "roof, ceiling, hole"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "be1376023c274bdda995d54f3694157f"], "properties": ["painting, door, wall", "roof, beams, chimney"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a wooden shed with a gray roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["room, bed, desk", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, texture", "roof, trusses, beams"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "4389909667db472ea9a57a70eb940fa4"], "properties": ["floor plan, ceiling light, color", "building, window, skeleton"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a white 3d model of a house", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a clay pot with holes in it."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["resembles, toy, castle", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Parts, Luggage, Truck", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which has more water", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house with a pond and situated on a rock."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "92859eb82a344134806b37cc209927c6"], "properties": ["roof, structure, wall", "house, rock, pond"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["base, speaker, light", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white illustration of a clock", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, house, small", "roof, brown, flat"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, material", "stair, table, chair"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a staircase in a room"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, black, white, handle, armrest", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d6087023095446fbadef1721478373b2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["door, roof, window", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a spider-like creature with long arms and legs."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- material is metal - weight is 0 - height is 0", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["color, hat, shoes", "hat, watch, clock"], "captions_pred_pc": ["a black and white image of a teddy bear", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- material is stone - color is blue - shape is arrowhead", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a green mountain with trees and grass."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, green, lawn", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a wooden table with a plant on it."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["Black, Shelf, Metal", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["load, crates, snow", "torso, breasts, pattern"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a wooden billiard table with legs."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["metal, legs, frame", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a black and white image of a pool table"], "question": "which table has legs made of wood", "label": 1}, {"captions": [" of a white crocodile", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of white paper", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, ball, mushroom", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "06a1c233fb444830b577aa06e2c01294"], "properties": ["earbuds, light, ring", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a two-story small apartment building with a roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, red, blue, green", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building is two-story", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, air conditioner, house", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, roof, soup", "cloak, sword, spear"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a wooden billiard table with legs."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a, window, statue", "legs, material, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" various fruits and vegetables.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, size", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white image of a piece of paper"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " of a spider-man mask and head."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "bd48915cfb41409aad6dd58e157876b2"], "properties": ["building, roof, balcony", "a, head, mask"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "above a black and white image of a person's head"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black spider-man mask on a gray background royalty-free 3d model preview no.2"], "question": "which object has a roof", "label": 0}, {"captions": [" of a wooden-handled dagger", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1e460892f8f14d9bba9eb5c9e0491ed2", "c3a82df41875402285608ef13a55df57"], "properties": ["handle, material, blade", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a screw with a screwdriver", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a clear glass display case with a square light fixture.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["980ded888795417f94b46750105e1597", "a095621f2d5845af83db3f59f5685982"], "properties": ["light, fixture, square", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a room with dots on the floor", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a clear plastic box", "a metal tray with two rolls of paper in it"], "question": "which light fixture is round", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small white building with stairs and shelves."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, material", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "be1376023c274bdda995d54f3694157f"], "properties": ["turrets, flags, towers", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is plastic- color is white- shape is cube", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "6b745457e06840119058883b35f78f58"], "properties": ["image, building, stairs", "roof, color, blue"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a white glass beer mug.", " a house with wooden framing and trusses."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, glass", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a glass pitcher", "a 3d model of a house under construction"], "question": "which is not made of wood", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house with a wooden-framed roof structure."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, roof, green, frame, red", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["castle, island, house", "nut, bowl, ring"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d rendering of a white object on a gray background"], "question": "which entity is a nut", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "f1b557775310478893242180defa4d80"], "properties": ["color, material, shape", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["fireplace, bench, log", "a, character, mario"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "5414d75e47104589837f3df8b6de6d22"], "properties": ["food, leaves, shredded paper, rocks", "beige, white, round"], "captions_pred_pc": ["a black and white image of a bird in flight", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white?", "label": 1}, {"captions": ["a grayscale of a mountain.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, grayscale, mountain", "arrow, mountain, area"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a line with a square on it"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a mountain range royalty free 3d model no."], "question": "which image shows a mountain range?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "40022305eaf44442915c9db03e25f781"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of an ancient temple"], "question": "which is not a building", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of two rocks with ice elements."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " of a small white building with stairs and a lid."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, material, structure", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a wooden table with two barrels."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "8bba7567253040d88973320107e48055"], "properties": ["chair, table, refrigerator", "table, barrels, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a black circle on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a barrel table royalty free 3d model preview no.2"], "question": "which table is made of wood", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a green mountain with trees and grass."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["food, leaves, shredded paper, rocks", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a bird in flight", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["background, color, white", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, model, white house", "house, rock, bird"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["house, plane, town", "earbuds, light, ring"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "c3a82df41875402285608ef13a55df57"], "properties": ["wing, knife, boat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black umbrella on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a wooden table with metal legs and frame."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["- material is wood, metal, metal", "metal, legs, frame"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a patterned rug"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["sandbox, sand bucket, wooden blocks", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, door, window", "giraffe, bench, flower"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "4a889132cc444d10bfcbf6c760984416"], "properties": ["image, color, pink", "a, color, white"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a desk and chair"], "question": "which image has a white box?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a white glass beer mug."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "1d686cbd3e9a4c629a43088658989286"], "properties": ["door, lock, handle", "color, white, glass"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small triangular-shaped object."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, yellow, black", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white helicopter flying in the air", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, light, jewels", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " of toy story's cowgirl and woody characters wearing cowboy hats."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "dc2e01ffd285460ca85a47695626e011"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "image is toy story cowgirl and woody wearing cowboy hats"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a 3d model of a girl in a cowgirl costume"], "question": "which entity has a cowgirl and woody characters wearing cowboy hats?", "label": 0}, {"captions": [" a wooden house with a roof and framing.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, framing, material", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small white house with a roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a house with a flat roof structure."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, orange, leather", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "d49d8ed244094349a99e4faca05e0690"], "properties": ["a, door, suitcase", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, green, orange, star", "table, stairs, ladder"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a large steel building with many columns and a pool."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["house, color, white", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " of a white chest of drawers with legs."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, room, table", "chest of drawers, legs, white"], "captions_pred_pc": ["a black square on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d rendering of a white dresser"], "question": "which object is white", "label": 1}, {"captions": [" a sword with a wooden handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d42eec2b8e7644ec9ededcf9f325faad", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["handle, material, wood", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a knife on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a sword", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a grayscale of a mountain."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "17a86c6c9be0478c984ef36c7c22edea"], "properties": ["color, red, blue, green", "color, grayscale, mountain"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white photograph of a galaxy"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a mountain range on a white background royalty-free 3d model"], "question": "which entity is a grayscale?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a two-story small apartment building with a roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["building, stairs, shelves", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["location, highway, train station", "building, room, sky"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["glass, metal, balls", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a wine glass", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, blue, green, yellow, blue", "door, lock, handle"], "captions_pred_pc": ["a pair of sneakers on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white glass beer mug."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, table, ceiling", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a white castle composed of small cubes."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["a, desk, laptop", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9968e06a62e8487ea33460e640abc573"], "properties": ["A, a, a", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a wooden cube."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "ad3f96bc1c7e4aa88d71ae3dfafd0ad1"], "properties": ["- material is plastic- color is white- shape is cube", "shape is cube, material is wood, color is brown"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a wooden crate"], "question": "which cube is made of wood", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of two rocks with ice elements."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, background, white", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["roof truss, insulation, suspended ceiling", "bed, desk, window"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["lighthouse, fountain, crater", "box, cylinder, bottle"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white dots pattern on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["house, staircase, window", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, yellow, chimney", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a red and white robot."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, sphere, molecule", "color, red, white"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a robot?", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["- material is stainless steel- color is silver- shape is round", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["of a black ribbon on a white background", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a 3d model of a building with a roof"], "question": "which object is made of glass", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["face, handle, spout", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white map of the island of malta"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, black, shade, black", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "06a1c233fb444830b577aa06e2c01294"], "properties": ["moss, mushroom, grass", "house, tree, hill"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, truss system, framing", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a house", "a white plastic object on a gray background"], "question": "which object is not a house?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a large metal building with a roof and truss structure."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, texture", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["crane model with a hook on a white ceiling light.", " of two rocks with ice elements."], "sample_ids": ["05bd47ad4bc64c19bcb32a56a0d3c7f4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["model, hook, ceiling light", "image is a rock with ice elements"], "captions_pred_pc": ["a silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane on a white background silhouette of a man with a crane", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a crane on a pedestal royalty free 3d model preview no 1", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small purple plastic chair with holes."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- material is wood, metal, metal", "color, plastic, purple"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " of a man with black hair, wearing a black shirt, black pants, and a suit."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "ffbbd798b7e448849b7acd309717739c"], "properties": ["a, shirt, pants", "a, shirt, pants"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a black and white 3d printed figurine of a man"], "question": "which entity has a shirt that is black?", "label": 0}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["wing, knife, boat", "box, handle, gun"], "captions_pred_pc": ["a black umbrella on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, air conditioner, house", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of pink and blue", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "4a889132cc444d10bfcbf6c760984416"], "properties": ["structure, building, archway", "a, color, white"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a desk and chair"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, gun", "room, door, shelf"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of an empty room"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a person breaking through a brick wall."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, purple, suspended", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small triangular-shaped object."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "2d02985030804209a26c2c53b96a06f9"], "properties": ["roof, stairs, house", "shape, triangle, small"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a house with wooden framing and trusses."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- material is metal - weight is 0 - height is 0", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a white building with a red roof."], "sample_ids": ["6b745457e06840119058883b35f78f58", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, blue", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a building with dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, suit, cell, phone, gun", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a small white building with stairs and a lid."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, height", "building, stairs, lid"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small purple plastic chair with holes."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, grass, moss", "color, plastic, purple"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and yellow sword with a yellow handle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["776a9df9cead4b70b3480ef9fecadaea", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, handle, blade", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a house with a roof and beams."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["level, stairs, columns", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, shape, number", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["120bf1525e8649d9bdf3a593fe8f5ddc", "c3a82df41875402285608ef13a55df57"], "properties": ["resembles, sculpture, rock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a piece of paper with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bag with a zipper on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large house/building structure with a roof.", "a 3d white cube with windows resembling a building."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "4a07a5293f024bb0a353954a056ef626"], "properties": ["roof, structure, house", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a cube"], "question": "which entity is a building?", "label": 0}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["rusty, sink, graffiti", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a wooden staircase with a railing and table."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "956247bea850458199c651037d4b1d7f"], "properties": ["a, desk, laptop", "railing, table, staircase"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a table with a staircase"], "question": "which staircase has a table?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["roof, truss, lamp", "room, door, shelf"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "d81d13362ae04371bb2cba46e4939665"], "properties": ["black, white, laptop", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a dishwasher with a dish inside it", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["room, door, shelf", "house, staircase, table"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, shape, and size", "structure, columns, roof"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with multiple levels"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a robotic warrior with a sword."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "weapon, sword, robot"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small white house with a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, rock, pond", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["- material is plastic- color is white- shape is cylinder", "Eye color, Black, Purple"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a dragon with wings"], "question": "which entity has black and purple eyes", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", "star wars stormtrooper "], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, material", "a, color, white"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "c8936ace72954650b4e2d84246964849"], "properties": ["color, sphere, molecule", "roof, color, pink"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["floor plan, ceiling light, color", "image, house, ceiling"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "above a black and white drawing of a house"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["image is rock formation with a white cliff and a rock", "house, roof, wooden"], "captions_pred_pc": ["above a black and white map of spain on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["2563abff548c4479970c81491513b572", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, model, year", "room, furniture, window"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small purple plastic chair with holes."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["texture, spikes, eyes", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a flower", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["houses, trees, road", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photograph of a small town"], "question": "which entity has a caption of a small village featuring houses", "label": 0}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["frame, screen, color", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white cross on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a wooden shelf featuring a laptop, sand dune, and ceiling with holes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6192773417e04fa49d2bf8b9eed20640", "c3a82df41875402285608ef13a55df57"], "properties": ["image is a shelf, laptop, sand dune", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a person sitting on a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white 3d model of a city skyline", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, material", "building, room, sky"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a white of a spaceship and building."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, plane, town", "image, building, spaceship"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a house with a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, structure, truss", "roof, house, roof"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "3d, model, collection"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of objects?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["color is white, yellow, plastic", "Brown, metal, lock"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a square with dots"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a barrel and a cube together."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["color, pier, stairway", "a, barrel, cube"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, light, handle", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, roof, tray", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a small white bowl with a light blue glaze and blue rim."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "6f7201fbb58649379398a8d1d5c0cc7a"], "properties": ["color, white, logo", "color, blue, rim, blue"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a dotted circle on a white background"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a white bowl on a gray background"], "question": "which object has a blue rim", "label": 1}, {"captions": [" a blue character with arms outstretched.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, size", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["desk, chair, lamp", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a concrete wall"], "question": "which entity has more paint", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " of a white chest of drawers with legs."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["runner, bed, bench", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a, bird, hook", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, green, lawn", "roof, house, small"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a green-leafed plant in a white hanging pot."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "bc75bd88ee014f3cb733e4af32c54cc6"], "properties": ["color, shape, material", "color, green, leaf"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white illustration of a jellyfish"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a potted plant on a white background royalty free 3d model preview no.3"], "question": "which entity is a plant?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["house, roof, blue", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["blue tarp, flower, small island", "houses, trees, road"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "c3a82df41875402285608ef13a55df57"], "properties": ["resembles a jet fighter, futuristic, small", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a lego model of a futuristic airplane", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white pedestal sink with blue water.", " of two rocks with ice elements."], "sample_ids": ["b4ad53e3057f4922b273f86e7adb3466", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["water, sink, color", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a letter 'l'", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white pedestal sink royalty free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a building with yellow lines."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, red, blue, structure", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a map"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a drawing of an airplane flying over a city"], "question": "which building has lines that are yellow?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " of a small white building with stairs and a lid."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["light switch, electrical outlet, furniture", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a white human skull with broken bone elements."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, skull"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a human skull in white"], "question": "which entity is whiter", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a pile of metal, torn and shredded paper, rocks, and a decayed animal."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "c117f1923cad4ecf9df61b6e3d633374"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "a pile of metal, torn and shredded paper, rocks, and a decayed animal"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white map of germany on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a crumpled piece of paper on a white background"], "question": "which entity has a pile of metal", "label": 0}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "92498f398e244020a867686729633610"], "properties": ["color, shape, size", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a modern white house with furniture and a black accent."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e5025a1ca0034b1aa97a0d42edeeae0f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, furniture, black"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white building with black and white tiles"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small white sight device.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["02e64f4820ca4719bace985bed1ead5d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["white, sight, device", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a camera royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["beige, head, bottle", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a character wearing glasses and a hat."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["- material is plastic- shape is dice- color is white", "hat, glasses, character"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a small house with a blue roof.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, color, blue", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "18e392c5360146eda498c5edab25b15c"], "properties": ["house, roof, wooden", "frame, beams, trusses"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building under construction"], "question": "which structure has a frame?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, pink", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, material, frame", "a train, a ship, a boat"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, texture", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, island, water", "houses, trees, road"], "captions_pred_pc": ["a black and white photo of a boat in the water", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["light source, fixture, color", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a small house with stairs and a roof."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["shattered, resembles, broken phone", "roof, stairs, house"], "captions_pred_pc": ["for black ink brush strokes on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, stairs, house", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "34a49861e7744acfb71de471a755e917"], "properties": ["color, shape, texture", "text, material, shape"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d rendering of a marble slab with text on it"], "question": "which entity is a sign?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small building with windows and a roof."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, size", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "9968e06a62e8487ea33460e640abc573"], "properties": ["rocky, rug, puddle", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a white object on a gray background"], "question": "which object is not a rocky island?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "c017bfb82db1460cafff604c0808793f"], "properties": ["bed, desk, window", "a, suit, cell, phone, gun"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " of a white wall-mounted light switch, electrical outlet, and various furniture pieces."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "b195bf7ba6094e1b812e4312deeeb360"], "properties": ["hat, cup, bowl", "light switch, electrical outlet, furniture"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d rendering of a room with a white background"], "question": "which entity has more furniture", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "rusty, warning, metal"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white photograph of a barrel"], "question": "which entity is more likely to be a rusted metal barrel?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small, snow-covered house."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, air conditioner, house", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a window", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, material is plastic, shape is box", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " of a white human skull with broken bone elements."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "color, white, skull"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a human skull in white"], "question": "which entity is a skull?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a spiral staircase with a railing in a small building."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, pier, stairway", "staircase, railing, building"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a white bunk bed with a ladder."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "379f488d0624482694bbe150b7bc1059"], "properties": ["bedside table, wheels, white", "bed, ladder, color, white"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "for a white square on a white background with a black square in the center"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "the bunk bed royalty free 3d model no. 3"], "question": "which bed has a ladder", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a house with wooden framing and trusses."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["headboard, wall, strip", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["s, stick, leaf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small white house with a roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["- material is plastic- color is white- shape is cylinder", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a truck on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["a knife, blade, handle", "ring, helmet, bowl"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d printed ring in white 3d printed material"], "question": "which object has a hole in it", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, metal, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "a2354f13774340d392fbf33564934aab"], "properties": ["roof truss, insulation, suspended ceiling", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["lighthouse, fountain, crater", "house, pool, balcony"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, pattern", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["black and white image of a motorcycle", " a small purple plastic chair with holes."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, black, white", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a drum set", "a black and white of a knife/sword with a handle."], "sample_ids": ["0bf7985bf5f94236b8b5c2965270e08b", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["size, color, material", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a toy tricycle on a white background royalty free illustration", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a drum kit royalty free 3d model preview no 1", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["- material is plastic- color is white- shape is cube", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a black and white of a knife/sword with a handle."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a low-poly of a white, shattered sphere."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["texture, spikes, eyes", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["resembles a jet fighter, futuristic, small", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "a black and white square with dots on a white background"], "captions_pred_image": ["a lego model of a futuristic airplane", "a 3d rendering of a metal box with a handle"], "question": "which object is more likely to be used for storing a gun", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "b896a0898efe4059a776193c02132129"], "properties": ["roof, stairs, house", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a fruit bowl with an apple, on a table.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["64c3d61ba7b549b5b7c72b37d7532b48", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["apple, bowl, table", "moss, mushroom, grass"], "captions_pred_pc": ["for a white object on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is in the grass?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["boat, table, chairs, umbrella, solar panel", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a white sofa, chair, and box."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "4c59733ebd634594a921b7ace60e4142"], "properties": ["color, table, blocks", "sofa, chair, box"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["- material is stone - shape is bat", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white image of an object on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a spiral staircase with a railing in a small building."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["floor plan, heating system, ceiling light fixture", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof truss, beams, structure", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a small building with a roof.", " a multicolored metal building structure with a roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, building, small", "color, roof, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a barn structure"], "question": "which building has a roof", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a small wooden house with a green roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, green"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "a2354f13774340d392fbf33564934aab"], "properties": ["frame, truss, roof", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a wooden shed with a gray roof."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, horns, eyes", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a vibrant city skyline featuring various colored buildings, trees, and skyscrapers."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "1a1fb9b0d83845f6b1238fb45e0defff"], "properties": ["lighthouse, fountain, crater", "color, skyline, buildings"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a city skyline"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white 3d model of a city skyline"], "question": "which entity has a skyline?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "bf18bfd89efd43389781050230467d58"], "properties": ["color, door, window", "Lights, number, five"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "bf18bfd89efd43389781050230467d58"], "properties": ["a, character, person", "Lights, number, five"], "captions_pred_pc": ["a 3d model of a person", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, material", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a decorative tile", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["white space shuttle model.", "3d white model featuring a boat, block, turbo text, puma logo, box, and shelf."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "1fe7018cb01a4be58c0f211b8e2db93f"], "properties": ["color is white, model is space shuttle, size is small", "3d, model, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white usb drive with the word 'turbo' on it"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a 3d printed object with the word turbo on it"], "question": "which model is white", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a white building with a red roof."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, red, black", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d model of an office building"], "question": "which entity has a red roof", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a white shelf with holes and brackets."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, yellow, black", "color, white, holes"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a black and white helicopter flying in the air", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["color, shape, and size", "house, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a bench"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small white building"], "question": "which entity is not a house?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, white, black, white", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, roof, white, cubes", "building, plane, room"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, green, leaf", "cover, black, plastic"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a victor calculator on a white background"], "question": "which entity has a black plastic cover", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["furniture, staircase, torn-apart", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small red and white spaceship.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["above a black and white image of a drone in the air", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, material", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small house with stairs and a roof."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["low poly, llama, kangaroo", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "a17477b445b3443189dad22f768b888b"], "properties": ["Arms, Legs, Color", "roof, pillar, stairs"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["flower, rock, tree stump", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a purple chair with holes in it.", " a building with yellow lines."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, purple, holes", "color, yellow, lines"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a white chair", "a drawing of an airplane flying over a city"], "question": "which object has lines that are yellow?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "97e000ff41094665afd94ea565da8b13"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["chocolate, mushroom, cake", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, white, yellow, roof, metal", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, building, staircase", "a, material, clay"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["blue tarp, flower, small island", "house, staircase, table"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, height", "color, frame, shape"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a building structure"], "question": "which building structure is a cube", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d5722274fb094222aca90bb59f4dff09"], "properties": ["resembles, toy, bookshelf", "chest of drawers, cabinet, white"], "captions_pred_pc": ["a black and white image of a book cover", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a white cabinet with a drawer"], "question": "which entity is a cabinet?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, tree, rock", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a hammer with a long metal handle."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["background, color, white", "handle, metal, long"], "captions_pred_pc": ["a black line on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a 3d lego character wearing a black helmet, gloves, and holding a gun.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f71842519d2f44ceb9fa57e0c0db4aa0", "97e000ff41094665afd94ea565da8b13"], "properties": ["- color is black- material is plastic- shape is 3d", "roof, material, wood"], "captions_pred_pc": ["a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a floor plan"], "captions_pred_image": ["a lego ninja turtle wearing a black helmet and gloves", "a 3d model of the roof of a building"], "question": "which is not made of wood", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a wooden shed with a gray roof."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, color, gray"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["small purple teapot with a hook.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, purple, hook", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "839a873262a544c9906f3f5799ca4648"], "properties": ["s, stick, leaf", "a, outfit, green"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a blue plastic stool."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, plastic, blue"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, horns, features", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a barrel and a cube together.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["a, barrel, cube", "tv, chair, laptop"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a person sitting on a couch"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a small house with a red roof.", " white crocs clogs with blue straps and holes."], "sample_ids": ["085db9059b744673b5623b5338e02196", "4622e88fd9264b37997671efeb73af85"], "properties": ["roof, red, house", "color, white, blue"], "captions_pred_pc": ["a black and white dotted square on a white background", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity has a white and blue color scheme?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, roof, toothbrushes", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white dots pattern on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "a2354f13774340d392fbf33564934aab"], "properties": ["runner, bed, bench", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "a17477b445b3443189dad22f768b888b"], "properties": ["mug is purple, cup is black, candle is black", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, color, white", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["hat, toy, gnome", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a fish with green spots, green eyes, green and blue fins, and green and blue stripes."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "adee50e7a19c4c219e5a2edac18fb28e"], "properties": ["texture, spikes, eyes", "Eye color is green, Spot color is green, Fin color is green and blue"], "captions_pred_pc": ["a black and white drawing of a flower", "of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a fish on a white background"], "question": "which entity has green eyes", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a green mountain with trees and grass."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["frame, beams, trusses", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small house with a red roof.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["085db9059b744673b5623b5338e02196", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, red, house", "house, lake, pool"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a large building"], "question": "which house is on an island?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Steel, Color, Yellow", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["b5afccae993346079483507296fbb029", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["shape is square, material is metal, color is rusty", "house, staircase, table"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a small house with a spiral staircase"], "question": "which is not a staircase", "label": 1}, {"captions": [" a small brown toy character resembling a stuffed animal.", " a small brown toy character resembling a stuffed animal."], "sample_ids": ["a87d34db950444a58b52a27e4525005c", "a87d34db950444a58b52a27e4525005c"], "properties": ["stuffed, toy, character", "stuffed, toy, character"], "captions_pred_pc": ["a black and white image of a cactus shaped vase", "a black and white image of a cactus shaped vase"], "captions_pred_image": ["a 3d model of a small stuffed toy with a black and white color scheme royalty free 3d model preview no.1", "a 3d model of a small stuffed toy with a black and white color scheme royalty free 3d model preview no.1"], "question": "which toy character is a stuffed animal?", "label": 0}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, gazebo, table", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["water, boat, rock", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, plane, sky", "roof, trusses, beams"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a large robotic elephant with blue wires and lines.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["58dcedbbf3ef4133be9ac60c1d2f89af", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, wires, lines", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a face made up of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d sculpture of an elephant made of various objects", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["building, color, yellow-green", "water, boat, rock"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small white box with a green light."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, black, shade, black", "color, white, light"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, table, blocks", "box, paper clip, lock"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["building, tree, plane", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, truss system, framing", "roof, structure, suspended"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["backrest, curved, yes", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["shape is sphere, color is white, material is plastic", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a wooden table and chair."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["house, table, chair", "table, chair, wood"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a small wooden table"], "question": "which table and chair are made of wood", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a wooden shed with a gray roof."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["building, color, black and white", "roof, color, gray"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["- material is plastic- shape is dice- color is white", "roof, brown, flat"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d rendering of a table and stool"], "question": "which object has a flat roof", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small orange piano with legs."], "sample_ids": ["55b26130f1514032be078e13fd982905", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, shape, material", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is made of wood", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a small wooden house with a green roof."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, material, pattern", "roof, color, green"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, tree, pool", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color yellow", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["arm, light, sign", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a black and white striped fly in the air."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["room, bed, desk", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of a door", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, light", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- material is plastic- color is white- shape is cylinder", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, yellow, chimney", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, white, material, ceramic", "building, floorplan, gym"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a white building with two floors"], "question": "which entity is not a floor plan of a gym?", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a black motorcycle helmet with a visor on top"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor, table, light", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, white, blue, roof, black", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, metal, white", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor, staircase, balcony", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a wallet", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small orange piano with legs.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "97e000ff41094665afd94ea565da8b13"], "properties": ["color is orange, size is small, legs", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a wooden shed with a gray roof."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["variation, bread, pot", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a black and white object", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "d6087023095446fbadef1721478373b2"], "properties": ["roof, room, ceiling", "door, roof, window"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of an apartment building"], "question": "which building has a green door?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, purple, beams", "roof, color, pink, blue"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small wooden house with a green roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, tree, rock", "roof, color, green"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["white rectangular box in a .", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["171d8702ca004ed787b8c7eb0de9a4fd", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["box, white, rectangular", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white diamond on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white bowl on a gray background royalty free 3d model preview no.1", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "7f8942ef51dd4246993a587a12df168c"], "properties": ["collection, moose, skull", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, number", "roof, color, yellow"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, pink, green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, hole, shelf", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["hair, legs, wings", "island, mountain, grass"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a pair of men's grey and tan leather lace-up sneakers with blue accents."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "0070d09cecd94178b4217e244dd72efc"], "properties": ["color, tan, leather", "color, tan, grey, blue"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white image of a shoe on a white background"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a pair of gray shoes on a white background"], "question": "which object is made of leather", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "f1b557775310478893242180defa4d80"], "properties": ["house, roof, toothbrushes", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["house, yard, surrounding buildings", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a truck on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of the letter u", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a two-story small apartment building with a roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, roof, wooden", "two-story, roof, building"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, door, cross", "house, roof, green"], "captions_pred_pc": ["above a black and white image of a map", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, shape, and size", "water, boat, rock"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, shape, texture", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a desk and chair"], "question": "which entity is white", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["house, roof, blue", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "c3a82df41875402285608ef13a55df57"], "properties": ["building, door, clock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a church with a steeple", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, staircase, window", "house, roof, blue"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["s, chimpanzee, human, wolf", "roof, trusses, beams"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": ["white of a small arch.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["for a black and white drawing of an arch", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white 3d model of an arch", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "b896a0898efe4059a776193c02132129"], "properties": ["- color is red, blue, pink", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of an object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "white 3d paper airplane map model"], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["building, roof, white, cubes", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["above a black and white image of a map", "black glitter africa map on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "f1b557775310478893242180defa4d80"], "properties": ["color, table, blocks", "shack, roof, door"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["moss, mushroom, grass", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock", "label": 0}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a potted plant on a wooden table or shelf."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["building, balcony, street", "potted plant, table, shelf"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "cafc467aff2643e8b70149c4944263ee"], "properties": ["size, color, shape", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object is white", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "white cylindrical 3d object resembling a roll of soap or tube of cream."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "d8d6903a2dd54b8e9aa12fad2155b372"], "properties": ["- color is red, blue, pink", "cylinder, white, roll"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white image of a dotted object on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a white pillow on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, room, ceiling", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a transparent blue cube.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, transparency", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["an empty white box on a gray background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["a, hole, rock", "paper, hole, sign"], "captions_pred_pc": ["a black and white image of a lace belt", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a wooden shed with a gray roof."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, text", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["building, stairs, shelves", "image, city, spoon"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, room, table", "image, city, spoon"], "captions_pred_pc": ["a black square on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, base, slanted", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a chair", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, green, squirt gun", "building, plane, room"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["room, bed, desk", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "c8936ace72954650b4e2d84246964849"], "properties": ["color, shape, pattern", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["3D, toothpick, skateboard", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, yellow, black", "resembles, sea urchin, shell"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, rock, paper", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a human skull", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "4a889132cc444d10bfcbf6c760984416"], "properties": ["a, b, c", "a, color, white"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a desk and chair"], "question": "which entity is white", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["graffiti, chinese writing, door", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a window"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["room, door, shelf", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an empty room", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white building with stairs and a white table."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, roof, tray", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small white box with a shelf and a hole in it."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["- color is white- shape is cube- material is plastic", "a, hole, shelf"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a white box on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a knife, blade, handle", "a, material, clay"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a piece of white plastic on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a bench and lamp post.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "b896a0898efe4059a776193c02132129"], "properties": ["A, bench, lamp post", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "of a white candle in the shape of a buddha"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["lighthouse, fountain, crater", "color, background, white"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "an image of a white background with a few small cubes on it"], "question": "which entity is not a lighthouse?", "label": 0}, {"captions": [" a small house with a red roof.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["085db9059b744673b5623b5338e02196", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["roof, red, house", "arrow, red, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small white house with windows and a black lid."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "4b40af369c1149949f5ccb68becd8430"], "properties": ["table, stairs, ladder", "white, windows, lid"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a white house with three windows"], "question": "which object has a lid", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, eye, handle", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white drawing of a room", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "e694d53545d449319a64cceb0280c3c6"], "properties": ["white, rock, shell", "3d, slide, swing"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a playground slide"], "question": "which object is whiter", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a white of a man with arms outstretched."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, sphere, molecule", "image, color, white"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d image of an animal laying on the ground"], "question": "which object is in the water?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, green, lawn", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["floor, wall, roof", "floor, staircase, table"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a white plastic bottle with a lid and cap."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "f7e60e3a8ee84ad0954d288c3f1a7220"], "properties": ["resembles, octopus, squid, spider, robot", "color is white, material is plastic, shape is bottle"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a black circular object on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "20a02705a66f460492e07345e84a62ed"], "properties": ["shape is sphere, color is white, material is plastic", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object is white", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["building, fence, snowy", "image, building, stairs"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a small white house with a staircase and a window."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "9eb88d17310d42dda9e17883e9922525"], "properties": ["screen, monitor, stand", "house, staircase, window"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d rendering of a small room with a staircase"], "question": "which entity has a window?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["table, staircase, light", "house, tree, pool"], "captions_pred_pc": ["a black and white photo of the letter g", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a silver vintage racing car.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, silver, vintage", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["door, white, structure", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which structure is made of stone", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, visor", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["Wheels, laptop, robot", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["image size, image, origami", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white illustration of an airplane", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " a small wooden house with a green roof."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["case, player, football", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white image of a pair of boots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ddaac41b6efd4dd0b7bf8d441441555e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["railing, chair, light", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a letter 'g'", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench on a white background royalty free 3d model no.3", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "9b6a637ead444bd28452178c74697653"], "properties": ["3D, toothpick, skateboard", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a white toothbrush on a gray background", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which image shows a beaver on a skateboard?", "label": 1}, {"captions": ["a white and red lego gazebo with a pixelated design and 3d structure.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9c628774529c489aaa7abb1a6dfb2140", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["gazebo, color, white, red", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background, resembling a snowflake", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a gazebo in white 3d printed material", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a white chest of drawers with legs."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["desk, chair, lamp", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "6b745457e06840119058883b35f78f58"], "properties": ["color, sphere, molecule", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["windmills, silhouette, city model", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small white house with a roof."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- material is white- color is white- texture is textured", "roof, color, white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a wooden-framed roof structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, purple, suspended", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e44009d33258425e8efedfbc6823bf70"], "properties": ["lighthouse, fountain, crater", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["floor plan, bathroom, pool", "house, roof, green"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "a white of a house with a hole in the ceiling."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, background, arrows", "image, house, ceiling"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "above a black and white drawing of a house"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small trailer and a white box.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["box, trailer, white", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small wooden log cabin.", " a large steel building with a pool."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["size, material, log", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "3d snowman model with a wooden stick."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "44f41039246a4df59027c38023d5a576"], "properties": ["- material is plastic- color is white- shape is cylinder", "- material is wood - color is white - shape is 3d"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d snowman royalty-free 3d model preview"], "question": "which object is made of wood", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["low poly, llama, kangaroo", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["image is rock formation with a white cliff and a rock", "hat, skull, bread"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a white motorcycle with wings."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, size", "color, white, wings"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": ["white of a small arch.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, size", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white drawing of an arch", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of an arch", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small triangular-shaped object."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "2d02985030804209a26c2c53b96a06f9"], "properties": ["texture, spikes, eyes", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a small white building with stairs and a white table."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, hand, flowers", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a hand", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a wooden roof structure with a pink roof."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["island, terrain, rocks", "roof, color, pink"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, door, cross", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a 3d white plastic water bottle with a blue and green lid.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["185d18b159994da8a74f3f48b360d93c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["a black water bottle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white plastic water bottle on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a pink and white gun.", "a 3d white cube with windows resembling a building."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, pink, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "aae2c42740a04fd68068f5707111d26f"], "properties": ["image size, image, origami", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a marble sculpture of an angel"], "question": "which image is a sculpture of an angel on a wall?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["door, roof, pool", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, trusses, beams", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["black, white, coffee table", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a spider-like creature with long arms and legs."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["collection, moose, skull", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, material, structure", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small wooden house."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, bench, rack", "house, material, wood"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a white round table with a red accent.", " a white building with a red roof."], "sample_ids": ["fea62a865b4e40899d95785533818329", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, red", "color, white, roof, red"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of an office building"], "question": "which entity has a red roof", "label": 1}, {"captions": ["a white and red lego gazebo with a pixelated design and 3d structure.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["9c628774529c489aaa7abb1a6dfb2140", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["gazebo, color, white, red", "3D, toothpick, skateboard"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background, resembling a snowflake", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a gazebo in white 3d printed material", "a white toothbrush on a gray background"], "question": "which object is not a skateboard?", "label": 0}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a large white and metal building with a metal roof structure."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["size, material, logo", "roof, metal, white"], "captions_pred_pc": ["in the title the logo for maria ruiz", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a house with a blue roof.", " a small white house with a roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, color, blue", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["books, paper, lamp", "throne, stairs, tree"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["windmills, silhouette, city model", "buildings, houses, grass"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "an image of a pile of trash on the ground"], "question": "which city has more buildings", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, pink", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " of two rocks with ice elements."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["beige, head, bottle", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a green trash can with graffiti on it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["388f3f2e2a98442f9b8a71d3c33defae", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, trash, can", "beige, white, round"], "captions_pred_pc": ["above a black and white image of an object in the water", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a trash can royalty free 3d model preview no 2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["s, stick, leaf", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["screen, lens, color", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d rendering of a piece of marble"], "question": "which object has a shelf?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, white, material, ceramic", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity is a tree?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, red, pink", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a wooden roof structure with a pink roof."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, floor, columns", "building, material, stone"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a large white and metal building with a metal roof structure."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["shape is cube, color is black, white", "roof, metal, white"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a large white box"], "question": "which building is white", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, black, shade, black", "broom, shovel, fireplace"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a 3d white cube with windows resembling a building."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, head, white and brown", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["yellow metal barricade ", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "096e42b466ec438d95c5d89a85191534"], "properties": ["color is yellow, material is metal, height is 0.5 m", "white, rock, shell"], "captions_pred_pc": ["a white barrier on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "be1376023c274bdda995d54f3694157f"], "properties": ["frame, roof, trusses", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["houses, trees, road", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a small, snow-covered house."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, purple, beams", "house, snow, cover"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a spider-like creature with long arms and legs."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, door, suitcase", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["size, material, shape", "color, sphere, molecule"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["a, hole, shelf", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" of a machine gun.", " a white castle composed of small cubes."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["gun, barrel, caliber", "composed of, white, cubes"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "92498f398e244020a867686729633610"], "properties": ["color, material, shape", "a, house, cat, dog"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": [" a small black and white cube.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small building with windows and a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, windows, building", "house, fence, playground"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["ruined building, stone floor, small stone structure", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "an image of a pile of trash on the ground"], "question": "which entity has grass?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "7940570f74c14baa83ebf5f50cd2a720"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "a snake, an eel, a cube, a sword, a dice, a stick, a blue ball"], "captions_pred_pc": ["a black mascara brush on a white background", "a black mascara brush on a white background"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife"], "question": "which entity has a cube", "label": 0}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, letter", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["lamp, harp, bowl", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["black, white, laptop", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of a window"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a wooden roof structure with a pink roof."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, blue, components", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, black, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, white, plastic", "a, color, red"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["building, roof, white, cubes", "roof structure, truss, ceiling"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a white of a spaceship and building."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["castle, island, house", "image, building, spaceship"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "096e42b466ec438d95c5d89a85191534"], "properties": ["color, background, white", "white, rock, shell"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small house with a tree and a rock."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["low poly, llama, kangaroo", "house, tree, rock"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "db74ee1621464be1b164be26a1af050e"], "properties": ["a, b, c", "window, arches, wall"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a large white and metal building with a metal roof structure."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["a, bowl, cup", "roof, metal, white"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a large white box"], "question": "which object has a metal roof", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a wooden table with a plant on it."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, staircase, light", "table, plant, wood"], "captions_pred_pc": ["a black and white photo of the letter g", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with stairs", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, color, white", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a room with a lot of wires"], "question": "which building has a fence", "label": 1}, {"captions": [" a small white house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4ca5999ea9eb4184a7d1f486687ad989", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["size, color, shape", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a person holding a box", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house on a white background", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["hat, food, bowl", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["houses, trees, road", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a small town", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a futuristic white sports racing car."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["room, bed, desk", "color, white, futuristic"], "captions_pred_pc": ["a black and white drawing of a door", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a futuristic sports car"], "question": "which object is white", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["hat, sword, gun", "cloak, sword, spear"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has more weapons", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, hole, shelf", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a blue roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a simpsons character in costume, holding a skateboard.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6eda1456d69c44c9863908f0cd438629", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["costume, character, skateboard", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a person holding a skateboard", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a person wearing a hat and holding an umbrella royalty-free 3d model preview", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a large steel building with a pool."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, color, pink", "building material, pool, steel"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, trusses, beams", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small building with a staircase in a room."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["a box, a cup, a bottle, a jar", "room, staircase, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a white of a spaceship and building."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, shape, material", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, material is plastic, shape is bottle", "rusty, warning, metal"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["shape, bathroom, refrigerator", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["b5afccae993346079483507296fbb029", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["shape is square, material is metal, color is rusty", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small, snow-covered house."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["a room, a cake, a table", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["a72700696c3b44ef8101d1e71e914bc9", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["lion, statue, fountain", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a metal object"], "captions_pred_image": ["a 3d image of a lion statue on a wall", "a 3d image of a lion statue on a wall"], "question": "which fountain has a statue of a lion?", "label": 0}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, roof, tray", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a table with stairs"], "question": "which table has a staircase?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a white rocking chair with a curved backrest."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["A, a, a", "backrest, curved, yes"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, texture", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, texture", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a black building."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["image, building, stairs", "color, black, building"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, structure, suspended", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a black and white striped box.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, black, white", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, head, mask", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bed", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, tower, color", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black square on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["ceiling, light, desks", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, height", "color, sphere, molecule"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " of a white chest of drawers with legs."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["throne, chair, building", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d rendering of a white dresser"], "question": "which entity has legs", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "b896a0898efe4059a776193c02132129"], "properties": ["color, grass, moss", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small building with a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, building, small", "roof, truss, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a house with roof trusses"], "question": "which building has a roof", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " of two rocks with ice elements."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, trusses, beams", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["hat, food, bowl", "building, plane, city"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, hill, deer", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs and a ladder?", "label": 1}, {"captions": ["s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["747110c073314ee39ef2f4a8d63222da", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["s, laptop, printer", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a pair of scissors", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of an electronic device", "a 3d model of a concrete wall"], "question": "which entity has more paint", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, yellow, white, wheels", "image, color, white"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d printed figurine of an alien creature"], "question": "which entity is a white color?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["light source, fixture, color", "roof, metal, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["graffiti, chinese writing, door", "throne, chair, building"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "modern tan leather lounge chair."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["color, yellow, black", "color, tan, leather"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a black and white helicopter flying in the air", "a gray leather lounge chair with a metal base"], "question": "which object is made of leather", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a house with a flat roof structure."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "abc52d210d71415296730bb00352ce6f"], "properties": ["building, roof, yellow", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a house with a roof"], "question": "which building has a flat roof", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, color, green", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a black and white striped box."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["size, material, color", "color, black, white"], "captions_pred_pc": ["a black and white image of a small square with black dots", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["s of, snowboard, shoes, mask", "plane, ship, bird"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a green skull and sphere.", " a small wooden house with a green roof."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, skull, sphere", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a red, blue, and green striped tower building."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["color, material, structure", "color, red, blue, green"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is made of metal", "label": 1}, {"captions": [" of a black and white striped fly in the air.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["77e2b8c9032945248951e06bc7e209e0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["black, white, fly", "house, fence, playground"], "captions_pred_pc": ["for a silhouette of a butterfly on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a fly", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["a, roof, soup", "ring, helmet, bowl"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d printed ring in white 3d printed material"], "question": "which object has a hole in it", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "c3a82df41875402285608ef13a55df57"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["house, tree, rock", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, plane, town", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["location, field, gravestone", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a wooden billiard table with legs."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, roof, tray", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["roof, color, pink", "color, silver, white"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a brick wall with grass."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "53f2d948091f417cb580e22469c94db2"], "properties": ["house, lake, pool", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a large building", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a female character in a white outfit."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "5f5a316aedfa479887d61a105f3896ad"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "outfit, color, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "the image is a black and white photo of a woman"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a female character"], "question": "which entity is a female character?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a stone wall with a window and a clock."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color, door, window", "window, clock, wall"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " a large steel building with a pool."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, stairs, lid", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "a17477b445b3443189dad22f768b888b"], "properties": ["black, roof, green", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small blue robot with a windmill."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, shape, gun", "color, blue, robot"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a wind turbine"], "question": "which object is blue?", "label": 1}, {"captions": [" of a wooden table with two barrels.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["8bba7567253040d88973320107e48055", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["table, barrels, wood", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black circle on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a barrel table royalty free 3d model preview no.2", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a large building with a roof and windows."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "32d1fbd3ee91426882290305f70021e6"], "properties": ["house, staircase, window", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["yellow, table, roof", "mossy, rock, grass"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a piece of wood on a white background"], "question": "which entity has a rock with grass?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, table, chair", "house, rock, bird"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a small red and white spaceship.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, shape, size", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a2354f13774340d392fbf33564934aab"], "properties": ["chair, table, refrigerator", "building, roof, yellow"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house on a hill in a field."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, green, lawn", "house, hill, field"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", "a black and white of a knife/sword with a handle."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["size, material, color", "image, color, black and white"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Cabinet, Drawers, Filing", "a, material, clay"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, rock, nail", "s, laptop, printer"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a black and white image of an electronic device"], "question": "which entity has a screw and a nail sticking out of it?", "label": 0}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with a green, wooden-structured roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, tan, brown, orange", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "b896a0898efe4059a776193c02132129"], "properties": ["blue, lid, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a set of ladders.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5152e8c6dd094e49b02b54ef1cd2fabc", "6b745457e06840119058883b35f78f58"], "properties": ["a, set, ladders", "roof, color, blue"], "captions_pred_pc": ["above a white wall with a black square on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a shelving unit with multiple shelves", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["background, color, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, model, white house", "building, plane, room"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["small purple teapot with a hook.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "c3a82df41875402285608ef13a55df57"], "properties": ["color, purple, hook", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a group of people standing together in a line.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["96c9da7f3c2d4f4b90485f899ec5d605", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["group, people, line", "house, pool, balcony"], "captions_pred_pc": ["a group of people walking in a line on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a group of people standing next to each other", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["21639082215b4b179d574d2408124838", "c3a82df41875402285608ef13a55df57"], "properties": ["color, room, furniture", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["background, color, white", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a long white plastic strip on a gray background", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["stacked, racks, toy train", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a small white building with stairs and a lid."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["Drawer, Pattern, White", "building, stairs, lid"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "92498f398e244020a867686729633610"], "properties": ["hat, candy, strawberry", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["Drawer, Pattern, White", "roof, brown, flat"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d rendering of a table and stool"], "question": "which entity has a roof", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, fence, snowy", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small chicken figurine on a green base.", " a large metal building with a roof and truss structure."], "sample_ids": ["a8abd4ab2a6943bfa4ac1e01caa109ef", "b85a99699ccd4bcba213322113bb253d"], "properties": ["base color, chicken, figurine", "roof, truss, structure"], "captions_pred_pc": ["above a black and white illustration of a fish in the shape of a butterfly", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, room, ceiling", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a wooden roof"], "question": "which house has a wooden roof truss structure and ceiling with wood beams?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a cross", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["building, stairs, table", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d model of a small table"], "question": "which building has a bathroom?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, blue", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house with a roof"], "question": "which house has a roof truss?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "6b745457e06840119058883b35f78f58"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a small wooden house with a green roof."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a house with a ladder"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "06a1c233fb444830b577aa06e2c01294"], "properties": ["acropolis, city, building", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["low poly, plant, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a palm tree with leaves."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["house, tree, rock", "leaf, tree, leaf"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "for a black and white image of an animal with wings"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a palm tree"], "question": "which tree has leaves", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small house with stairs and a roof."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["mossy, rock, rocky", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, character, mario", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white sculpture of a person", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "1d1328346a464d2482463d6d5288e934"], "properties": ["a train, a ship, a boat", "painting, door, wall"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a submarine", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a large metal building with a roof and truss structure."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "b85a99699ccd4bcba213322113bb253d"], "properties": ["hat, sword, gun", "roof, truss, structure"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, hat, flower", "house, pool, balcony"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, color, pink", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a house with a green roof and lawn."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "84adcf124ee742a49f7b1fe2104e072d"], "properties": ["color, blue, green, yellow, blue", "roof, green, lawn"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a knife on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a small apartment building royalty free 3d model preview no.2"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a black and white striped box."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, material, structure", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["bird, nest, wood", "plane, ship, bird"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is a wrecked plane", "label": 1}, {"captions": [" of a wheeled hospital bed", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["wheeled, bed, hospital", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["3d model, color, lights", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a mouse wearing a top hat and a teddy bear holding a spoon.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["887e410d07854396b563325ae1929583", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["hat, mouse, bear", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mouse wearing a top hat and bow tie", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["lighthouse, fountain, crater", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house with a roof and beams."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["room, bed, desk", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building with a roof"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["house, yard, surrounding buildings", "house, building, people"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "92498f398e244020a867686729633610"], "properties": ["color, shape, material", "a, house, cat, dog"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a room, a cake, a table", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a pond and situated on a rock."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "92859eb82a344134806b37cc209927c6"], "properties": ["color, roof, tray", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, tan, leather", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " of a house with a pink roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, material, frame", "color, roof, pink"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a pink roof", "label": 1}, {"captions": [" of a white van with a logo on the side.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, logo, side", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "6b745457e06840119058883b35f78f58"], "properties": ["- color is white - shape is box - material is plastic", "roof, color, blue"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "97f487941d26472294e005fa97c403be"], "properties": ["roof, green, lawn", "color, white, green"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "9b8e2f9070b24956a343a01a5fabdf03"], "properties": ["base material is wood, color is red, message is welcome to northwich", "computer desk, laptop, monitor"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white silhouette of a traditional japanese gate"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a futuristic room with a bench"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "9502d395c40d4ec1abb8764b7ca2b9c9"], "properties": ["color, skyline, buildings", "color, shape, letter"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of the letter 'f'"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of the letter 'x'"], "question": "which entity is a letter?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["frame, roof, trusses", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a house under construction", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "a2354f13774340d392fbf33564934aab"], "properties": ["throne, chair, building", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, furniture, black", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " of a black and white striped fly in the air."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["building, color, black and white", "black, white, fly"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a black and white photograph of a fly"], "question": "which is not a building", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " of a blue ford escort car."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "fa3da8623db242c082e2915b12873186"], "properties": ["- material is stone - color is blue - shape is arrowhead", "color, blue, ford escort"], "captions_pred_pc": ["above a black and white drawing of an arrow", "of a black leather bracelet on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a classic car royalty free 3d model preview no 2"], "question": "which is not a car", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a bench and lamp post."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "ac6e6b5ee63840a484b5ad2508675de1"], "properties": ["hat, sword, gun", "A, bench, lamp post"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a bench and a street lamp"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "3d model of a street lamp and bench royalty free 3d model preview no.3"], "question": "which entity has a lamp post?", "label": 1}, {"captions": ["smiley-faced banana .", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["a train, a ship, a boat", "paint, rust, concrete"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["roof, color, pink", "lion, statue, fountain"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": ["four white computer desks in a 3d arrangement.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["Arrangement, Desks, White", "- material is wood, rusty, horned"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a series of white 3d objects on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, structure, house", "house, rock, bird"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["ruined building, stone floor, small stone structure", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain?", "label": 1}, {"captions": [" a wooden cube.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ad3f96bc1c7e4aa88d71ae3dfafd0ad1", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is cube, material is wood, color is brown", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a wooden crate", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a blue roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, blue", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["3D, toothpick, skateboard", "broom, shovel, fireplace"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small white building with stairs and a white table."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "e30374c614f54fdb90f35b96b071349d"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a building with a staircase"], "question": "which entity has stairs", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, house, wooden", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a house"], "question": "which house has a roof with truss system", "label": 1}, {"captions": ["a baseball card in a clear plastic case.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5046b4bb61e4480a8c0e8911c2053a04", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["case, baseball, card", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a pencil on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photo of a hockey player's autographed jersey hanging on a wall", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["nut, bowl, ring", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a blue roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, blue", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a white of a man with arms outstretched."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["Arms, Legs, Color", "image, color, white"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man with arms outstretched?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["buildings, houses, grass", "mossy, rock, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a person on a skateboard"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a piece of wood on a white background"], "question": "which entity has grass", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a small wooden house with a green roof."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["image, building, stairs", "roof, color, green"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, island, water", "a, landscape, sand"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["boxing gloves, heart, hand", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["roof, green, lawn", "roof, structure, wall"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which house has a brick wall?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "40921ffd69db479294554d261daf3035"], "properties": ["floor, wall, roof", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a spiral staircase"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "18e392c5360146eda498c5edab25b15c"], "properties": ["tiers, building, stairs", "frame, beams, trusses"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a building under construction"], "question": "which building has a frame?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["houses, trees, road", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, tree, plane", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "c3a82df41875402285608ef13a55df57"], "properties": ["a, shirt, pants", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white house with a roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a large metal building with a roof and truss structure."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, size", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a long metal fence"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a wooden roof structure with a pink roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, white, red, pink", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "745fed115c5343dab9d7f0c389c98902"], "properties": ["cover, torn, open", "costume, color, black"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a small white building with stairs and a lid."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["room, bed, desk", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a small purple plastic chair with holes."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, size", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a wooden staircase with a railing and table."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "956247bea850458199c651037d4b1d7f"], "properties": ["background, color, white", "railing, table, staircase"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "5850d5c7223447db816081d50292fec0"], "properties": ["building, roof, balcony", "structure, material, pool"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["s, chimpanzee, human, wolf", "a, color, red"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a castle with two towers"], "question": "which entity has a red color", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", "a white glass beer mug."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "1d686cbd3e9a4c629a43088658989286"], "properties": ["frame, truss, roof", "color, white, glass"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", "a white of a man with arms outstretched."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["mug is purple, cup is black, candle is black", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house with a roof and beams."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, truss, structure", "roof, beams, house"], "captions_pred_pc": ["of a metal grate on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a building with a roof"], "question": "which entity has a roof with beams", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, tree, pool", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["building, door, clock", "island, terrain, water"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, light", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- color is white- shape is cubes- number is 1", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, white, yellow, roof, metal", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["A, a, a", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " of a house with a roof."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, metal, white", "roof, house, roof"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a house with a green, wooden-structured roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, skyline, buildings", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house with a triangular roof"], "question": "which building is green", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["building, fence, snowy", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " a small wooden house with a green roof."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "building, plane, room"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "06a1c233fb444830b577aa06e2c01294"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a cross", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "06a1c233fb444830b577aa06e2c01294"], "properties": ["s of, snowboard, shoes, mask", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a silver vintage racing car.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "c3a82df41875402285608ef13a55df57"], "properties": ["color, silver, vintage", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a vintage racing car", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a spider-like creature with long arms and legs."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["shape is cylindrical, color is silver, material is metal", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, roof, soup", "a, material, clay"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, black, visor", "paint, rust, concrete"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, material", "resembles, toy, castle"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a tower made out of blocks"], "question": "which entity is made of stacked blocks with holes in them", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, white, plastic", "metal, cross, clock"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["mossy, rock, rocky", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, material, size", "door, lock, handle"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a black and white image of a door with a crack in it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a black and white building", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["floor, table, wall", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a character wearing glasses and a hat."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["a box, a cup, a bottle, a jar", "hat, glasses, character"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a brick building with a roof structure and roof truss."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "84e8acad28664a738df69d719df9e263"], "properties": ["color, shape, material", "roof, structure, truss"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a brick building with a roof"], "question": "which entity is made of brick", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["b5afccae993346079483507296fbb029", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape is square, material is metal, color is rusty", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a, island, water", "throne, stairs, tree"], "captions_pred_pc": ["a black and white photo of a boat in the water", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne with stairs and a tree?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "cafc467aff2643e8b70149c4944263ee"], "properties": ["roof, truss, suspended ceiling", "wing, knife, boat"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a curved wing?", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", " a small wooden house with a green roof."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["bird, resembles, crow, pigeon", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a bird in flight", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " a white building with a red roof."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["wing, color, white", "color, white, roof, red"], "captions_pred_pc": ["above a black and white image of a bird in flight", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of an office building"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["44723e86bdd14071b0544745879604de", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["resembles, bar, soap", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a sword with a wooden handle.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "1da865c75a5e4a57a17652975dae5474"], "properties": ["handle, material, wood", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a black and white image of a sword with two blades", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, handle, zipper", "wood, board, shelf"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, structure, suspended", "roof, structure, suspended"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a metal roof"], "question": "which entity has a roof structure with a suspended ceiling?", "label": 0}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a witch wearing a black and white hat."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, black, shade, black", "color, black, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity has a black hat", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "34a49861e7744acfb71de471a755e917"], "properties": ["hat, sword, gun", "text, material, shape"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a marble slab with text on it"], "question": "which entity is a sign?", "label": 1}, {"captions": ["a black rock with writing on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, black, writing", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a throne with a tree on it"], "question": "which object has more stairs", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with a wooden-framed roof structure."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["background, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small blue and red blimp.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, size", "house, fence, playground"], "captions_pred_pc": ["of a black circular object on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a wooden-cased radio.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["case, material, wood", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "above a black and white image of an object on a white background"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a woman with her arms outstretched."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, material, structure", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "houses, trees, road"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, color, white", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a doll made of beads", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a hat?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, helmet, airplane wing", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, door, window", "house, tree, pool"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a wooden roof structure with a pink roof."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["shape, bathroom, refrigerator", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " a small purple plastic chair with holes."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, pattern", "color, plastic, purple"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, temperature, england", "house, lake, pool"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a large building"], "question": "which entity has a lake", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a white glass beer mug."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, rock, pond", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a clay pot with holes in it."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, texture", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a small wooden house with a green roof."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, handle, orange, rake, knife", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, rock, bird", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": [" a small house with a blue roof.", " of two rocks with ice elements."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, blue", "image is a rock with ice elements"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["boxing gloves, heart, hand", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "46903bf029934b1989bc062dcb0a5531"], "properties": ["size, material, lighthouse", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white photo of a water droplet", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a green skull and sphere.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, skull, sphere", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a hat?", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, pink, green", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, roof, soup", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " of two rocks with ice elements."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, structure, suspended", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, brown, flat", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, structure, house", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "b896a0898efe4059a776193c02132129"], "properties": ["window, clock, wall", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white castle composed of small cubes.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["composed of, white, cubes", "color, background, white"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "an image of a white background with a few small cubes on it"], "question": "which object is whiter", "label": 0}, {"captions": [" a blue character with arms outstretched.", "a low-poly of a white, shattered sphere."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, size", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["white table lamp with a white shade.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["color, white, shade", "shade, white, bead"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a white table lamp with a white shade", "a wall lamp with a white shade and a butterfly design"], "question": "which lamp has a white shade", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", "a white of a man with arms outstretched."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["Title, Image, Color", "image, color, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "09f2cf267e954c958828325067bcc36a"], "properties": ["hair, legs, wings", "island, terrain, rocks"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, orange, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "e34088fc7b5344c4ab29fef067750225"], "properties": ["house, lake, pool", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a wooden shed with a gray roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["face, handle, spout", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "18e392c5360146eda498c5edab25b15c"], "properties": ["house, roof, blue", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a building under construction"], "question": "which structure has a pink frame?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, roof, block", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a white cube.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["00bacff4f6be4b3d9b93946106b9e588", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, shape, size", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a piece of paper with dots on it", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white staircase on a gray background", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a house with a pink roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, roof, pink", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, black, shade, black", "flower, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["ceiling, light, desks", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of the roof of a house"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, tree, plane", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a house with a blue roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["s, plane, house", "roof, color, blue"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, logo, handle", "a, material, clay"], "captions_pred_pc": ["a black and white image of a purse with a chain", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a green mountain with trees and grass."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, plane, town", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["staircase, railing, building", "railing, chair, light"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["color, material, structure", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["- material is wood - color is white - height is 1.8 m", "table, bench, deer"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a black and white image of a bench and table with a deer's head on the table"], "question": "which is not made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["room, bed, desk", "building, plane, city"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, air conditioner, house", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, wall, color", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["background, color, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a white plastic container with a label on it"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["55b26130f1514032be078e13fd982905", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, rock, paper", "box, paper clip, lock"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a hole in it", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "92498f398e244020a867686729633610"], "properties": ["a train, a ship, a boat", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white barn with a metal roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "4ca3342a96824684845f7d0e062ab176"], "properties": ["s, stick, leaf", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a barn"], "question": "which object has a roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "ee440fcbc493488e879539d37a8d820e"], "properties": ["roof, color, pink", "island, fish, ice"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, tree, pool", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": ["white plastic cone-shaped hat, 3d printed.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["5cfd092fb5c44c9f8ae62c6e4c62903d", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["shape is cone, material is plastic, color is white", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a dome shaped object made of dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a toilet paper holder", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " of a small white building with stairs and a lid."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building material, pool, steel", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete structure", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "fee48e4d25934ebb85ef6888d517d398"], "properties": ["color, table, ceiling", "red, rock, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a circular object with dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2"], "question": "which entity has a ceiling that is not round?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, material, ceramic", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white vase on a grey background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, horns, features", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a white and blue building with a black roof."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, handle", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a white and blue building with a black roof."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, house, wooden", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["red, mouse, handwriting", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, toy, gnome", "hat, skull, bread"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "411c164757fc4de68dfecb35fa858223"], "properties": ["house, roof, blue", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small wooden house."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["a, building, staircase", "house, material, wood"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small wooden house."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, building, people", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a white of a woman with her arms outstretched."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, height", "image, color, white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a portrait?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["s, plane, house", "building, plane, city"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a two-story small apartment building with a roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["tiers, building, stairs", "two-story, roof, building"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a house with a pink roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "be1376023c274bdda995d54f3694157f"], "properties": ["color, roof, pink", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["3D, toothpick, skateboard", "Headstock, Guitar, Head"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, desk, laptop", "cloak, sword, spear"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a wooden shed with a gray roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["image, building, painting", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": ["white 3d tank model", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["color is white, model is 3d, name is tank", "floor, stairs, bathroom"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a small table"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["Drawer, Handle, Wood", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " a house with a wooden-framed roof structure."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, pool, balcony", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, white, red, pink", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a circular fence with black and white stripes"], "question": "which entity is a building?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["computer desk, laptop, monitor", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a black and white striped box."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["striped, white, black", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d image of a black and white striped surface"], "question": "which box is black and white?", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["eead0dd97023415da05c97df37337473", "7f8942ef51dd4246993a587a12df168c"], "properties": ["a, balloon, color, blue", "house, yard, surrounding buildings"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small house with a blue roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, color, blue", "color, white, plastic"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "a2354f13774340d392fbf33564934aab"], "properties": ["color, yellow, black", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a machine with a conveyor belt"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, light, jewels", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["shattered, resembles, broken phone", "island, mountain, grass"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["3d stone sculpture of a bat", " of a toy mushroom character with a white and brown head."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["- material is stone - shape is bat", "color, head, white and brown"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["resembles, octopus, squid, spider, robot", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "da8b5d21da9b4037982f29383d60b100"], "properties": ["resembles, toy, castle", "resembles, toy, castle"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a tower made out of blocks"], "question": "which entity is a toy?", "label": 0}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with a wooden-framed roof structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, containers", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "c3a82df41875402285608ef13a55df57"], "properties": ["screen, keyboard, box", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, yellow, roof, metal", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["a, bird, hook", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a white kite flying in the air against a gray background"], "question": "which image shows a boat", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["ceiling, light, desks", "desk, chair, table"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a staircase in a room"], "question": "which entity has fewer desks", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["door, roof, pool", "box, paper clip, lock"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, logo, handle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a purse with a chain", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, lake, boat", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "745fed115c5343dab9d7f0c389c98902"], "properties": ["hat, shirt, bearded", "costume, color, black"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "97e000ff41094665afd94ea565da8b13"], "properties": ["frame, screen, color", "roof, material, wood"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, pattern, material", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a large white vase on a grey background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "b896a0898efe4059a776193c02132129"], "properties": ["color, bench, rack", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a broken bowl with a hole in it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["55e883c09dbf4f22bee0da608128f4f8", "b896a0898efe4059a776193c02132129"], "properties": ["a, material, bowl", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a bowl on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of a white bowl on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["axe, hammer, spoon", "railing, chair, light"], "captions_pred_pc": ["of a black lace belt on a white background", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a light fixture?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "modern tan leather lounge chair."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["- material is wood, metal, metal", "color, tan, leather"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a gray leather lounge chair with a metal base"], "question": "which object is made of leather", "label": 1}, {"captions": [" of a house with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, house, roof", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, color, pink", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pinker", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["- color is white- shape is cube- material is plastic", "roof, ceiling, hole"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "ring, helmet, bowl"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d printed ring in white 3d printed material"], "question": "which object is white", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " an old lantern with moss on it."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color, shape, material", "moss, lantern, old"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white image of an old lantern"], "question": "which lantern is older", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a wooden shed with a gray roof."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["pos machine, credit card machine, cash register", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small wooden house."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["room, door, shelf", "house, material, wood"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, head, bowl", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, trusses, beams", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a black building."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, black, building"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["image, building, stairs", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a black and white image of a stone sculpture"], "question": "which image shows a skull with a blue hat?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof trusses, beams, suspended ceiling", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["island, terrain, water", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "b896a0898efe4059a776193c02132129"], "properties": ["a, color, case", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a black tire.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["b645118910b54e2a9f3a97d5598ce1de", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, black, tire", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a tire on a white background royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, material", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a brick wall with grass."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "53f2d948091f417cb580e22469c94db2"], "properties": ["roof, structure, truss", "brick, grass, wall"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a white motorcycle with wings.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, white, wings", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "c3a82df41875402285608ef13a55df57"], "properties": ["rusty, sink, graffiti", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e694d53545d449319a64cceb0280c3c6", "c3a82df41875402285608ef13a55df57"], "properties": ["3d, slide, swing", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a 3d model of the letter 'j'", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a playground slide", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a house with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["frame, truss, roof", "roof, house, roof"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, tan, brown, orange", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a mountainous landmass, resembling a small island or state like kentucky or wyoming.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["8ca9b999b69c4965bd9eb4445d605bf2", "96d127abd21049689918e671ec613ef8"], "properties": ["mountainous, landmass, state", "axe, hammer, spoon"], "captions_pred_pc": ["a black and white map of the state of new york", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a piece of paper", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a mountainous landmass?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is wood - color is white - height is 1.8 m", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a spiral staircase with a railing in a small building."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, pink, green, cord, white", "staircase, railing, building"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["sandbox, sand bucket, wooden blocks", "island, terrain, water"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["wood, board, shelf", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a room with a lot of wires"], "question": "which object has a fence", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["shape, bathroom, refrigerator", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["building, floor, columns", "shape is cube, color is black, white"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, roof, green", "door, roof, pool"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, color, red", "beige, white, round"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, stairs, house", "building, roof, yellow"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["low poly, llama, kangaroo", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, material", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["image is rock formation with a white cliff and a rock", "island, mountain, grass"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a house with a roof and beams."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, orange, leather", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a chair", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a wooden billiard table with legs."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, white, yellow, roof, metal", "legs, material, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a black and white image of a pool table"], "question": "which table has legs made of wood", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a deer and a crystal tree on an island, with a rock and bird nearby."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "2ce5ec0844114576a247b1de2011e0c7"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "image is a deer and a crystal tree on an island, with a rock and bird nearby"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a flying saucer"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a deer standing on an icy island"], "question": "which image is more realistic", "label": 1}, {"captions": [" of a transparent blue cube.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, transparency", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["an empty white box on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a bee and a rubik's cube next to each other.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["83a27b2b104e4f7f8b42c3c8654153db", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["bee, color, black and white", "color, white, gold"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black and white image of a bee next to a cube", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small white house with windows and a black lid."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "4b40af369c1149949f5ccb68becd8430"], "properties": ["a, b, c", "white, windows, lid"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white image of dots on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a white house with three windows"], "question": "which object has a lid", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["screen, monitor, stand", "spiked, baseball bat, hammer"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "for a black star on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a baseball bat"], "question": "which object is not a baseball bat?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["size, material, lighthouse", "metal, legs, wheels"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with blue lines and structure.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", "a white of a man with arms outstretched."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, pier, stairway", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of an open door", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["21639082215b4b179d574d2408124838", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, room, furniture", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "9968e06a62e8487ea33460e640abc573"], "properties": ["building, roof, balcony", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a white object on a gray background"], "question": "which object is not a building?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, table, ceiling", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, white, gold", "rusty, warning, metal"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, color, pink", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "a2354f13774340d392fbf33564934aab"], "properties": ["structure, building, archway", "building, roof, yellow"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "4a889132cc444d10bfcbf6c760984416"], "properties": ["house, yard, surrounding buildings", "a, color, white"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, table, chairs", "house, tree, hill"], "captions_pred_pc": ["a close-up of a white object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of two rocks with ice elements."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, gazebo, table", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["shattered, resembles, broken phone", "water, boat, rock"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a two-story small apartment building with a roof."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, roof, blue", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a small purple plastic chair with holes."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, base, slanted", "color, plastic, purple"], "captions_pred_pc": ["above a black and white drawing of a chair", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a chair", "3d model of a chair royalty free 3d model preview no 3"], "question": "which chair is made of plastic", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, shape, size", "paint, rust, concrete"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": ["white ceramic urn with a red lid.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ec15c810a38d4d45a36db910ecb2bcf8", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, lid, red", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a vase", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic vase sitting on top of a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white of a man with arms outstretched."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["floor plan, heating system, ceiling light fixture", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a house", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["houses, trees, road", "house, building, people"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "dd5849aced0443b1b4b38d413f7e06c4"], "properties": ["size, material, shape", "background, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a cat's head"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of an animal skull in white on a gray background"], "question": "which entity is not a bowl?", "label": 0}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " of a large axe with a cross on top."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, pier, railings", "axe, cross, top"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": ["white 3d origami bird model", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, white, origami", "a, color, red"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white umbrella on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["- material is plastic- shape is dice- color is white", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, screen, drawer", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a character wearing glasses and a hat."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["s, stick, leaf", "hat, glasses, character"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["image is a sculpture of an angel on a wall", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d81d13362ae04371bb2cba46e4939665"], "properties": ["room, bed, desk", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house with a green, wooden-structured roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, roof, toothbrushes", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a white glass beer mug."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "1d686cbd3e9a4c629a43088658989286"], "properties": ["desk, chair, lamp", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small triangular-shaped object."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "2d02985030804209a26c2c53b96a06f9"], "properties": ["house, yard, surrounding buildings", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a white building with a red roof."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, yellow", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white house with a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, purple, suspended", "roof, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a white roof"], "question": "which house has a white roof?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["A, a, a", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a dragon with wings"], "question": "which entity has a purple eye color", "label": 1}, {"captions": [" a rusty boat, piece of wood, and brick wall.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["4dec97bbe6fe46f89768ecd849003a13", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["rusty, piece, wall", "table, stairs, ladder"], "captions_pred_pc": ["a black and white photograph of a brick wall", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a stone slab on the ground royalty-free 3d model preview no.2", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large steel building with a pool."], "sample_ids": ["d6087023095446fbadef1721478373b2", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["door, roof, window", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a large house with a roof on a platform."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, beams, chimney", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "b896a0898efe4059a776193c02132129"], "properties": ["- material is plastic- color is white- shape is cube", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "c3a82df41875402285608ef13a55df57"], "properties": ["a, chair, table, light", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "4e82177059204292899fa7415164a05e"], "properties": ["yellow, table, roof", "yellow, tires, load"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks?", "label": 1}, {"captions": [" a house with a roof.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["4ccf1ee1316e4a2b8f52e77e126a68c0", "f1b557775310478893242180defa4d80"], "properties": ["roof, house, material", "shack, roof, door"], "captions_pred_pc": ["a close-up view of the crystal chandelier on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a green skull and sphere.", "a yellow and blue toy submarine."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, skull, sphere", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small, snow-covered house."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, color, pink", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a piece of broken glass on a white background"], "question": "which house has a roof that is covered in snow?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["a, roof, soup", "a, box, wall"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which object has a roof?", "label": 0}, {"captions": ["two white 3d egg-shaped spheres.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["922b10ec49fa4b2eb43e257ff5b2b1ef", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["shape is egg-shaped, color is white, number is two", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white object on a grey background", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" of a white round table with a red accent.", "a white of a man with arms outstretched."], "sample_ids": ["fea62a865b4e40899d95785533818329", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, white, red", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a wooden table with a plant on it."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["rusty, sink, graffiti", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, green, squirt gun", "color, head, white and brown"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a gray and white cartoon character"], "question": "which toy has a white and brown head", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large white and metal building with a metal roof structure."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, lake, pool", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "9968e06a62e8487ea33460e640abc573"], "properties": ["graffiti, chinese writing, door", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a broom on a stand"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e80eca95874c4bffb8aec54044824d87"], "properties": ["a, bird, lake", "arrow, mountain, area"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a line with a square on it"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a mountain range royalty free 3d model no."], "question": "which image shows a mountain range?", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", " of two rocks with ice elements."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, character, person", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d model of a person", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a four-legged metal workbench with shelves."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["nut, bowl, ring", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a table with four legs"], "question": "which object has more shelves", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of a character wearing glasses and a hat."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["furniture, staircase, torn-apart", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, color, white", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a potted christmas pine tree."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, white, red, pink", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a wooden staircase with a red and white railing and a red arrow.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["bb8bb4c9972d4b718b8bbd3ed5fdd14d", "d81d13362ae04371bb2cba46e4939665"], "properties": ["arrow, red, white", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a square with a white cross in the center", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a spiral staircase", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, rock, pond", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a child's room in a small house with windows."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "88847a6445044bcbab9611e6028a19b9"], "properties": ["a room, a cake, a table", "room, house, windows"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which room has more windows", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["boxing gloves, heart, hand", "house, table, chair"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the human heart", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["roof, truss, suspended ceiling", "turrets, flags, towers"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, door, suitcase", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "c3a82df41875402285608ef13a55df57"], "properties": ["color, plane, sky", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["low poly, llama, kangaroo", "water, boat, rock"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["color, roof, wall", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, handle, zipper", "costume, color, black"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["screen, monitor, stand", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small purple plastic chair with holes."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["houses, trees, road", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white photograph of a small town", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "20a02705a66f460492e07345e84a62ed"], "properties": ["a lamp, a syringe, a light pole", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, black, blue", "paint, rust, concrete"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small, snow-covered house."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "d81d13362ae04371bb2cba46e4939665"], "properties": ["balcony, stairs, house", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, plane, small plane", "Headstock, Guitar, Head"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white glass beer mug."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["chair, table, refrigerator", "color, white, glass"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["hat, sword, gun", "house, staircase, table"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a wooden roof structure with a pink roof."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["bowl, pottery, headpiece", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", "a white of a man with arms outstretched."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["structure, roof, pitch", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["island, mountain, grass", "house, rock, bird"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d rendering of a house on a rock"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, shirt, pants", "island, terrain, water"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, tan, brown, orange", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" of a black shark", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["black, mouth, teeth", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of an object on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, air conditioner, house", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, background", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white drawing of a metal grate"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, light", "house, table, chair"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d rendering of a small white table with a chair"], "question": "which entity is a house?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "white hospital bed, medical cart, and bedside table with wheels."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e3ef6fd54af440efa31984214dd6f11d"], "properties": ["color, table, ceiling", "bedside table, wheels, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a stool on wheels"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d illustration of a white medical trolley on wheels"], "question": "which table is white", "label": 1}, {"captions": [" a purple chair with holes in it.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, purple, holes", "Eye color, Black, Purple"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " of two rocks with ice elements."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, eye, handle", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, staircase, railings", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " of two rocks with ice elements."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white circular object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "house, roof, wooden"], "captions_pred_pc": ["a black and white circular pattern on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a building with yellow lines."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "f18e34286cf54876874f55ecc9018492"], "properties": ["house, color, white", "color, yellow, lines"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a small white building", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "e602ac60041f4b4f84c044161e478781"], "properties": ["roof, green, lawn", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a small white building with stairs and a lid."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["variation, bread, pot", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of an object", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "white ceramic face sculpture resembling an ice cream blob."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "8abc3a28cbba40428c9b364f90a4982a"], "properties": ["a, b, c", "blob, face, white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white photograph of a starfish"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a head with eyes and a nose"], "question": "which object is not a face?", "label": 0}, {"captions": [" a modern white house with furniture and a black accent.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, white, furniture, black", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a wooden roof structure with a pink roof."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["floor, staircase, railings", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, brown, flat", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a female character in a white outfit."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "5f5a316aedfa479887d61a105f3896ad"], "properties": ["color, black, white", "outfit, color, white"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "the image is a black and white photo of a woman"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a female character"], "question": "which entity is a female character?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["hat, sword, gun", "ring, helmet, bowl"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d printed ring in white 3d printed material"], "question": "which object has a hole in it", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["tv, chair, laptop", "building, room, sky"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["color, grass, moss", "bed, desk, window"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a wooden shed with a gray roof."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["hair, legs, wings", "roof, color, gray"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a spider-like creature with long arms and legs."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with a blue roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, color, blue", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a white human skull with broken bone elements."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["shape is hot dog, design is dragon, color is black", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["color, horns, features", "hat, mustache, chef"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, shape, structure", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a structure with multiple tables and chairs"], "question": "which building has a structure made of metal and wooden poles", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a house with wooden framing and trusses."], "sample_ids": ["eead0dd97023415da05c97df37337473", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, balloon, color, blue", "frame, trusses, wood"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of a house under construction"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "c8936ace72954650b4e2d84246964849"], "properties": ["house, lake, pool", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["liquid, ice, lid", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["s, cat, fish, person, pig, bird", "room, furniture, window"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a potted christmas pine tree."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["shape, bathroom, refrigerator", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small purple plastic chair with holes."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, island, water", "color, plastic, purple"], "captions_pred_pc": ["a black and white photo of a boat in the water", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, structure, wall", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, roof, block", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d printed figurine of an alien creature"], "question": "which image is white?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["ceiling, light, desks", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, poles", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a small building with a balcony"], "question": "which structure has a roof", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a white of a spaceship and building."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["building, color, yellow-green", "image, building, spaceship"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a white object on a gray background"], "question": "which image shows a building and a spaceship?", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " of a small white building with stairs and a lid."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, frame, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a white human skull with broken bone elements."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["black, white, coffee table", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small house with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, house, small", "roof, metal, white"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a stone wall featuring carvings and statues."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color is white, yellow, plastic", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d image of a group of statues on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "c8936ace72954650b4e2d84246964849"], "properties": ["leaf, color, shape", "roof, color, pink"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["wall, stairs, castle", "house, pool, balcony"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, truss, lamp", "house, pool, balcony"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["broom, shovel, fireplace", "table, structure, roof"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a building with many pillars"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a wooden shed with a gray roof."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["desk, chair, table", "roof, color, gray"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a person jumping on a trampoline."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["color, light, jewels", "person, jumping, trampoline"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white diamond belt"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which entity is a person jumping on?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a green pickle"], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "4c7904175d6d4676b73866c25110e8d3"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is green, shape is cylinder, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a black object on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a peanut on a white background royalty free 3d model preview no.3"], "question": "which entity is green", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "bf18bfd89efd43389781050230467d58"], "properties": ["color, leg, tail", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a house with a roof and beams.", " a white building with a red roof."], "sample_ids": ["c139e8fcbdbc4f63a9c8a06152c4dc2e", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, beams, house", "color, white, roof, red"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a 3d object in the shape of a square", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, handle, orange, rake, knife", "house, table, chair"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, roof, green, frame, red", "houses, trees, road"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["earbud, earpiece, earpiece", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["boxing gloves, heart, hand", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small house with stairs and a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, room, ceiling", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, base, warning", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a black and white photograph of a barrel"], "question": "which entity is more rusty", "label": 1}, {"captions": ["a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["0e20c8a7599d43128d078d9a0973b5f9", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["blue, yellow, frog", "paint, rust, concrete"], "captions_pred_pc": ["of a black and white photo of a chaise lounge", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d model of a concrete wall"], "question": "which entity has more paint", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "b5afccae993346079483507296fbb029"], "properties": ["building, tree, plane", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small purple plastic chair with holes.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, plastic, purple", "face, mask, tail"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a wooden table with metal legs and frame."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["Cabinet, Drawers, Filing", "metal, legs, frame"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a white wooden table"], "question": "which object is made of metal", "label": 1}, {"captions": ["purple speech bubble and circle", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, shape, size", "metal, legs, wheels"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of an old metal locker"], "question": "which object has legs", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of two rocks with ice elements."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["screen, keyboard, box", "image is a rock with ice elements"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white box with a green light.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, light", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " of a white human skull with broken bone elements."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, material, shape", "color, white, skull"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": [" a small black and white cube.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a white and blue building with a black roof."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "c893118316ee43e18322e5964b2806c5"], "properties": ["turrets, flags, towers", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, light, handle", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["desk, chair, lamp", "desk, chair, lamp"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d rendering of a desk and chair in a room"], "question": "which entity has a desk", "label": 0}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small house with stairs and a roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, sphere, molecule", "roof, stairs, house"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with a roof.", " of two rocks with ice elements."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, house, roof", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a spaceship and building."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, shape, and size", "image, building, spaceship"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a white motorcycle with wings."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, gun", "color, white, wings"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a motorcycle on a white background"], "question": "which object has wings", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a green mountain with trees and grass."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["castle, island, house", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a mountain with snow on it"], "question": "which entity has more trees", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["red, mouse, handwriting", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, apples, tree, cactus, dots", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["- material is stone - shape is bat", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a house with a wooden-framed roof structure."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, truss system, framing", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, table, chair", "building, plane, room"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, shape, text", "color, black, blue"], "captions_pred_pc": ["a black and white image of a screw", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is black and blue?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a hammer with a long metal handle."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "handle, metal, long"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white toothbrush on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a wooden shed with a gray roof."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["staircase, railing, building", "roof, color, gray"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is the color gray", "label": 1}, {"captions": [" a small building with windows and a roof.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["roof, windows, building", "books, paper, lamp"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a futuristic white sports racing car."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, red, blue, green", "color, white, futuristic"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a futuristic sports car"], "question": "which entity is not white?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a gun with a blue handle."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["color, green, squirt gun", "color, handle, blue"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a gun on a gray background"], "question": "which gun has a blue handle", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["image is a sculpture of an angel on a wall", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with wooden framing and trusses."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof, color, pink", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a red, blue, and green striped tower building."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["color, shape, material", "color, red, blue, green"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which entity is made of red", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "c4e45a41478e42418399074b88d8920f"], "properties": ["a, roof, soup", "axe, handle, wood"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, light, jewels", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a tall, slender object in the air"], "question": "which object is silver", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c3a82df41875402285608ef13a55df57"], "properties": ["Drawer, Handle, Wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a crab holding a rubik's cube."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, roof, tray", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a stone knife.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["material is stone, blade is sharp, handle is wooden", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, bird, lamp", "table, stairs, ladder"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["house, staircase, window", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["building, roof, white, cubes", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d sculpture of an apple on a white background"], "question": "which object is whiter", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, size", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, material", "building, plane, room"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, lighting, booth", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a white cube-shaped shelf", " a clear glass table with metal legs and balls on top."], "sample_ids": ["1fc0969de9bf47cab82cae4cc8fe6c2f", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["shape is cube, color is white, material is wood", "glass, metal, balls"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a broken bowl with a hole in it."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "55e883c09dbf4f22bee0da608128f4f8"], "properties": ["boat, table, chairs, umbrella, solar panel", "a, material, bowl"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a bowl on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d image of a white bowl on a gray background"], "question": "which object is made of a material that is not water?", "label": 0}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "a17477b445b3443189dad22f768b888b"], "properties": ["a, booth, bed", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["building, skyscraper, city", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, black, shade, black", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["graffiti, bench, wall", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["texture, color, shape", "a, material, clay"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a futuristic white sports racing car."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, base, warning", "color, white, futuristic"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports racing car?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a white and blue building with a black roof."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, roof, wall", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, shape, material", "mossy, rock, grass"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "e694d53545d449319a64cceb0280c3c6"], "properties": ["color, pattern, wall", "3d, slide, swing"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, number", "Shelf, color, white"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["wall, stairs, castle", "image, building, stairs"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["resembles, toy, bookshelf", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["background, color, white", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a small red renault clio car.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is red, make is renault, model is clio", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a green mountain with trees and grass."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["s, stick, leaf", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a white shelf with holes and brackets."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, shape, size", "color, white, holes"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a white bench with a shelf on top"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, wall, color", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small building with windows and a roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, door, window", "roof, windows, building"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, handle, orange, rake, knife", "box, paper clip, lock"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "c3a82df41875402285608ef13a55df57"], "properties": ["a, head, bowl", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large metal building with a roof and truss structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, purple, suspended", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "a17477b445b3443189dad22f768b888b"], "properties": ["color, material, texture", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["a, island, resembles, hawaii", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, roof, block", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small house and barn"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof truss, insulation, suspended ceiling", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a roof, featuring roof truss, insulation, and a suspended ceiling."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c1462fda08db4a769f68adae5c88cd43"], "properties": ["yellow, table, roof", "roof truss, insulation, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of an arrow pointing to the right"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white bench with a grid pattern"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["d6087023095446fbadef1721478373b2", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["door, roof, window", "hat, color, tan"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an object with a hole in it"], "question": "which object has a hole in it?", "label": 1}, {"captions": [" of a wooden shelf featuring a laptop, sand dune, and ceiling with holes.", " a house with a wooden-framed roof structure."], "sample_ids": ["6192773417e04fa49d2bf8b9eed20640", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image is a shelf, laptop, sand dune", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a person sitting on a bench", "a black and white drawing of a staircase"], "captions_pred_image": ["a white 3d model of a city skyline", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which structure has a yellow roof", "label": 1}, {"captions": [" a wooden cube.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["shape is cube, material is wood, color is brown", "glass, metal, balls"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof trusses, beams, suspended ceiling", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a building", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["building, skyscraper, city", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, green, squirt gun", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["background, color, white", "color, head, white and brown"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", "a black and white of a knife/sword with a handle."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["mossy, rock, rocky", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": [" a small wooden house with a green roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, green", "house, fence, playground"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a large orange pumpkin."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["bedroom, bathroom, bed", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a pink and green cube and chair.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c6faf508072b4d0ea014bd9c748b79c3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, chair, pink, green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a curved line made up of dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a simple white chair", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c3a82df41875402285608ef13a55df57"], "properties": ["color, tan, brown, orange", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "green and black ak-47 assault rifle with grenade launcher."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "9ffa5ac853354223a7f4f42d532f7633"], "properties": ["color, horns, features", "color, black, green"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a cell phone on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2"], "question": "which entity is black and green?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a crab holding a rubik's cube."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["lighthouse, fountain, crater", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is wood - color is white - height is 1.8 m", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "a17477b445b3443189dad22f768b888b"], "properties": ["color, pink, green, cord, white", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["metal, rusted, paper", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["854757ca755240f8b04576d899349151", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["cabinet, room, shelf", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white box with a green light.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "770e577c9795435898209fd24191635b"], "properties": ["color, white, light", "image, color, light"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white box", "a white 3d model of a small town"], "question": "which image has a light that is not green?", "label": 0}, {"captions": [" of a pontoon boat with two seats and a canopy.", " of a pontoon boat with two seats and a canopy."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "dccff5eccf6943f8b14cd269710ae6ff"], "properties": ["seat, canopy, pontoon", "seat, canopy, pontoon"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "a black and white drawing of a leopard print purse"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10"], "question": "which entity has a canopy?", "label": 0}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, skull, bread", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a stone sculpture", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a bench and lamp post."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "ac6e6b5ee63840a484b5ad2508675de1"], "properties": ["roof, purple, suspended", "A, bench, lamp post"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a bench and a street lamp"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "3d model of a street lamp and bench royalty free 3d model preview no.3"], "question": "which entity has a lamp post?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, size", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a wooden roof structure with a pink roof."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, door, cross", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is white- color is white- texture is textured", "a, material, clay"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a cube", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " a house with a wooden-framed roof structure."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["resembles a jet fighter, futuristic, small", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "a black and white drawing of a staircase"], "captions_pred_image": ["a lego model of a futuristic airplane", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["s, cat, fish, person, pig, bird", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, table, chairs", "moss, mushroom, grass"], "captions_pred_pc": ["a close-up of a white object on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["15f0a38c3f134f2c801e92ac2ac5c124", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, pattern, word", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photo of a pair of scissors", "for a black and white image of an object on a white background"], "captions_pred_image": ["a beaded necklace with the word banned on it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- color is white- shape is flower- pattern is lace", "box, paper clip, lock"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a, hole, rock", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a lace belt", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a wooden shed with a gray roof."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["design, poles, table", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["ceiling, light, desks", "hat, dress, racket"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["- color is red, blue, pink", "image, city, spoon"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["food, leaves, shredded paper, rocks", "mossy, rock, grass"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a piece of wood on a white background"], "question": "which entity has more leaves", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "bded33af34104b9686b845dfd18309a9"], "properties": ["structure, roof, pitch", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a house with wooden framing and trusses."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, lake, boat", "frame, trusses, wood"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "a white of a house with a hole in the ceiling."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["a, model, white house", "image, house, ceiling"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a house with a balcony"], "question": "which image shows a white house with a hole in the ceiling?", "label": 1}, {"captions": [" a small house with a road in front of it.", " of a wooden windmill with a red roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["house, front, road", "roof, color, red"], "captions_pred_pc": ["above a black and white drawing of a building", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a green pickle", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is green, shape is cylinder, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, tree, pool", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["house, rock, pond", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of an object on top of a pedestal"], "question": "which entity has a crater?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, metal, white", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, material", "Shelf, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a white shelf"], "question": "which shelf is white", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["d6087023095446fbadef1721478373b2", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["door, roof, window", "black, roof, green"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a small black building"], "question": "which building has a green roof", "label": 1}, {"captions": ["a small chicken figurine on a green base.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a8abd4ab2a6943bfa4ac1e01caa109ef", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["base color, chicken, figurine", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration of a fish in the shape of a butterfly", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a wooden roof structure with a pink roof."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, pattern, field", "roof, color, pink"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of the roof of a building"], "question": "which building has a pink roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small wooden house with a green roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["door, white, structure", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a wooden windmill with a red roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, red, blue, green", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a windmill on a gray background"], "question": "which building has a red roof", "label": 1}, {"captions": [" a green skull and sphere.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, skull, sphere", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "d81d13362ae04371bb2cba46e4939665"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "hat, bow, arrow"], "captions_pred_pc": ["a close up of a black object on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["floor plan, heating system, ceiling light fixture", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["Drawer, Handle, Wood", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "mannequin head, plague mask, straps"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a plague doctor's mask on a mannequin head"], "question": "which entity is a mannequin head?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "06a1c233fb444830b577aa06e2c01294"], "properties": ["nut, bowl, ring", "house, tree, hill"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, tan, brown, orange", "box, handle, gun"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white square with dots on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is wood - color is white - height is 1.8 m", "box, handle, gun"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a large steel building with a pool."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, roof, toothbrushes", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", "a white of a house with a hole in the ceiling."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, fence, playground", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a small blue plastic box with a lid and handle."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "3e5cc957c888491ba1a5773299d3daa9"], "properties": ["A, a, a", "blue, lid, handle"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 or fewer words a black and white illustration of a rectangular tray"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a gray plastic container"], "question": "which object has a lid and handle", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a spider-like creature with long arms and legs."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, green, tiled", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["- material is white- color is white- texture is textured", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cube", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small white building with stairs and a white table."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "e30374c614f54fdb90f35b96b071349d"], "properties": ["liquid, ice, lid", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a wooden roof structure with a pink roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["floor plan, bathroom, pool", "roof, color, pink"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which structure has a roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, roof, toothbrushes", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["color is white, material is plastic, shape is bottle", "Brown, metal, lock"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": [" a molecule with two pink and blue spheres.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["926fb2e23c56440a86287e98c1440336", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a molecule with the word 'rono' written in black ink on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of three spheres on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["floor plan, ceiling light, color", "color, background, white"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a white 3d model of a house", "an image of a white background with a few small cubes on it"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, booth, bed", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "f1b557775310478893242180defa4d80"], "properties": ["- color is white- shape is flower- pattern is lace", "shack, roof, door"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a white glass beer mug."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, yellow, black", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "two white spheres in a ."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, door, suitcase", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a white ball on a gray background"], "question": "which object is in a?", "label": 0}, {"captions": [" a large stone bowl with a hole in it.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "9968e06a62e8487ea33460e640abc573"], "properties": ["size, material, shape", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, black, shade, black", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a small red and white spaceship.", "a white of a woman with her arms outstretched."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["graffiti, bench, wall", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of a boat", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["ceiling, light, desks", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, white, containers", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["chocolate, mushroom, cake", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white map of the island of malta"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small triangular-shaped object."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "2d02985030804209a26c2c53b96a06f9"], "properties": ["houses, trees, road", "shape, triangle, small"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white photograph of a small town", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["acropolis, city, building", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["metal, legs, frame", "a, material, clay"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["resembles, toy, bookshelf", "pattern, color, shape"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d image of a city map on a black surface"], "question": "which entity is a pattern?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small white house with a roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["background, color, white", "roof, color, white"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "4e82177059204292899fa7415164a05e"], "properties": ["plane, ship, bird", "yellow, tires, load"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a monster truck with spikes"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small white house with a roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, material", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a building with a white roof"], "question": "which entity is white", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "333b77483f1b40468dec28906887151a"], "properties": ["size, material, color", "3D, material, white gold"], "captions_pred_pc": ["of a black plastic ring on a white background", "of a black ring on a white background"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a white gold ring with an oval shaped diamond in the center"], "question": "which ring is made of white gold", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, tan, brown, orange", "Steel, Color, Yellow"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a building"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of a metal", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["room, bed, desk", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small white building with stairs and a white table."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "e30374c614f54fdb90f35b96b071349d"], "properties": ["wall, stairs, castle", "building, stairs, table"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, color, pink", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, window, statue", "a, material, clay"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a white of a man with arms outstretched."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["house, lake, pool", "image, color, white"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a pink and green cube and chair.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c6faf508072b4d0ea014bd9c748b79c3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, chair, pink, green", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a curved line made up of dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a simple white chair", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a stone knife.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["material is stone, blade is sharp, handle is wooden", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a white of a woman with her arms outstretched."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["Drawer, Pattern, White", "image, color, white"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a woman with her arms outstretched"], "question": "which entity is not a white image?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, color, red", "door, lock, handle"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a room, a cake, a table", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, color, white", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a group of trees"], "question": "which entity has grass", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, blue, rim, blue", "cloak, sword, spear"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a black and white object", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["size, material, color", "building, material, stone"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stone column on a white background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which is a building", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, chair, table, light", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a chair with a yellow seat."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, material, pattern", "color, yellow, seat"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a small wooden house with a green roof."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["light, floor, ceiling", "roof, color, green"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["metal, laptop, light fixture", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, structure, greenhouse", "roof, trusses, ladder"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a building"], "question": "which roof has a ladder", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["hat, food, bowl", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["s, plane, house", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a window"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " of a person breaking through a brick wall."], "sample_ids": ["21639082215b4b179d574d2408124838", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, room, furniture", "image, brick, wall"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, size", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof structure, truss, ceiling", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a green mountain with trees and grass."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof truss, beams, structure", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a wooden roof structure with a pink roof."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["railing, glass, table", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "6b745457e06840119058883b35f78f58"], "properties": ["house, lake, pool", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, tan, brown, orange", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, shape, size", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a moss-covered rock?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a potted plant on a wooden table or shelf."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["frame, truss, roof", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a black and white image of a plant in a pot"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a box, a cup, a bottle, a jar", "door, lock, handle"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a building with blue metal framing and structure."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, black, green", "color, blue, structure"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a building under construction"], "question": "which entity has a blue structure", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["s, chimpanzee, human, wolf", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["white of a small arch.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white drawing of an arch", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of an arch", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, plane, sky", "island, terrain, water"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a camera with a blue screen and lens.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "cafc467aff2643e8b70149c4944263ee"], "properties": ["screen, lens, color", "wing, knife, boat"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a curved wing", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "09f2cf267e954c958828325067bcc36a"], "properties": ["low poly, llama, kangaroo", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a potted plant on a wooden table or shelf."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["roof, ceiling, hole", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["size, color, shape", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity is a building?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["brown, paint, tape", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["balcony, stairs, house", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "e098706085a44898abbd549693d12a64"], "properties": ["a, b, c", "color is black, white, orange"], "captions_pred_pc": ["above a black and white drawing of a submarine", "of a white and black clutch with a flower design"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " of a white chest of drawers with legs."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a, eagle, wood", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a building with blue lines and structure.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, shape, structure", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with multiple levels"], "question": "which building has a roof that is yellow?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["color, material, structure", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white, open shelving unit"], "question": "which building is white", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, base, slanted", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a chair", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white mannequin wearing a t-shirt and a purple dress on a stand.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6290ded27d644d1887299109117a735d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["mannequin, dress, color", "throne, stairs, tree"], "captions_pred_pc": ["of a black plastic eye on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a mannequin wearing a white t-shirt on a pedestal", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " of a wine corkscrew"], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, box, wall", "a, type, corkscrew"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, tan, brown, orange", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, table, ceiling", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["cover, black, plastic", "house, pool, balcony"], "captions_pred_pc": ["of a black and white image of a skateboard", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a green skull and sphere.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, skull, sphere", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["b896a0898efe4059a776193c02132129", "4a889132cc444d10bfcbf6c760984416"], "properties": ["- material is stone, metal, concrete", "a, color, white"], "captions_pred_pc": ["of a white candle in the shape of a buddha", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an ancient statue", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a spiral staircase with railings."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["roof, stairs, house", "railings, staircase, spiral"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "b896a0898efe4059a776193c02132129"], "properties": ["a knife, blade, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a red roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["085db9059b744673b5623b5338e02196", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, red, house", "roof, metal, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a 3d white cube with windows resembling a building."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, green, orange, star", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "a095621f2d5845af83db3f59f5685982"], "properties": ["apse, roof, floor plan", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white drawing of a room", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a metal tray with two rolls of paper in it"], "question": "which object is round?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["a, color, white", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["shape is cube, color is black, white", "house, roof, wooden"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a black and white photograph of a birdhouse"], "question": "which building is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a wooden windmill with a red roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["buildings, houses, grass", "image, building, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["image, building, stairs", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["box, cylinder, bottle", "island, mountain, grass"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["striped, white, black", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a spider-man mask and head.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, head, mask", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["collection, color, black, handle, wooden", "buildings, houses, grass"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a door handle and a knife", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, blue, green, yellow, blue", "shape is cube, color is black, white"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a blue roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["roof, color, purple", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house on a hill in a field."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, plane, town", "house, hill, field"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a large steel building with many columns and a pool."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, color, black and white", "building material, pool, steel"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, pattern, material", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a large white vase on a grey background", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a green circuit board."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, black, blue", "color, green, circuit board"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "of the item in the image"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a four-legged metal workbench with shelves."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a pillow featuring a hot dog shape and a bag of chips with a dragon design."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "4ae6ac813d584d12a5d5d608a595bfe5"], "properties": ["shape is hot dog, design is dragon, color is black", "shape is hot dog, design is dragon, color is black"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of an eye with dots"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white photo of a pillow with a soda can on it"], "question": "which pillow has a hot dog shape and a bag of chips with a dragon design?", "label": 0}, {"captions": [" a white and black horned demon with bunny features.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "bf18bfd89efd43389781050230467d58"], "properties": ["color, horns, features", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small white building with stairs and a white table."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "e30374c614f54fdb90f35b96b071349d"], "properties": ["resembles, toy, bookshelf", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small house with a road in front of it.", " a house with a blue roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, front, road", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of an egyptian sarcophagus."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a, bird, lake", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a white of a woman with her arms outstretched."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["room, bed, desk", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a wooden chair.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b2fc4bd184944704ad43d3a31817a676", "a17477b445b3443189dad22f768b888b"], "properties": ["wood, chair, seat", "roof, pillar, stairs"], "captions_pred_pc": ["a close-up view of the bristle brush on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, horns, features", "a, color, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a desk and chair"], "question": "which entity is not white?", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "be1376023c274bdda995d54f3694157f"], "properties": ["graffiti, chinese writing, door", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white barn with a metal roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, shape, and size", "roof, metal, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a barn"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a large building with a roof and windows."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, roof, block", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a black table, road with white lines, and rectangular ceiling panel.", " of a black table, road with white lines, and rectangular ceiling panel."], "sample_ids": ["bdc9b72d13604f5a8c7bd6ace2ca3177", "bdc9b72d13604f5a8c7bd6ace2ca3177"], "properties": ["black, road, panel", "black, road, panel"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d rendering of an empty road", "a 3d rendering of an empty road"], "question": "which entity has a black table", "label": 0}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor, staircase, railings", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, pattern, field", "building, color, black and white"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, size", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["building, balcony, street", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, b, c", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d mannequin of a woman wearing a traditional striped dress.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8ad6714351404852a0fe85ab2ed1a4c7", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["mannequin, dress, color", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white drawing of a flower on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a woman wearing a dress with a cape", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " of a white chest of drawers with legs."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, bench, rack", "chest of drawers, legs, white"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "6b745457e06840119058883b35f78f58"], "properties": ["roof, house, small", "roof, color, blue"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a blue roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, red, blue, green", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a roof"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "b896a0898efe4059a776193c02132129"], "properties": ["houses, trees, road", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["roof, air conditioner, house", "roof, purple, beams"], "captions_pred_pc": ["a black and white illustration of a window", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of the roof structure royalty free 3d model no."], "question": "which building has a purple roof", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, material is plastic, shape is box", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a small house with stairs and a roof."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["mug is purple, cup is black, candle is black", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " of two rocks with ice elements."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["box, paper clip, lock", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white box with a green light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, light", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a small white box", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["base material, wood, shade color, white, beige", "house, pool, balcony"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, structure, house", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small triangular-shaped object."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, horns, features", "shape, triangle, small"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["wall, stairs, castle", "table, staircase, light"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a table with stairs"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["lighthouse, fountain, crater", "plane, ship, bird"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a potted christmas pine tree."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["floor, table, light", "a, color, green"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, roof, green", "roof, metal, white"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a large white box"], "question": "which building has a white roof?", "label": 1}, {"captions": [" a small house with a blue roof.", " a white castle composed of small cubes."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, color, blue", "composed of, white, cubes"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a spiral staircase with a railing in a small building."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, temperature, england", "staircase, railing, building"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a clay pot with holes in it."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, structure, wall", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a yellow window frame.", " a white castle composed of small cubes."], "sample_ids": ["b6777659013d4386987c5e26d7dc3f84", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, yellow, frame", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white image of a wall mounted shelf", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white shelving unit", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a small wooden house with a green roof."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["shape is cube, color is black, white", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a house with a ladder"], "question": "which building is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["d6087023095446fbadef1721478373b2", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["door, roof, window", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["floor plan, bathroom, pool", "building, color, black and white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "a17477b445b3443189dad22f768b888b"], "properties": ["face, mask, tail", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, base, warning", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a wooden shed with a gray roof."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, structure, greenhouse", "structure, columns, roof"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with multiple levels"], "question": "which structure is made of wood", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, pink, green", "roof, color, green"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a white shelf with holes and brackets."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, white, base, slanted", "color, white, holes"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a chair", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a house with wooden framing and trusses."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- material is plastic- color is green- shape is box", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, gray", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["computer desk, laptop, monitor", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a low poly 3d model of a rock", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["black, white, laptop", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a table with a stool on top"], "question": "which table has stairs?", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, alternator, fan", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "b896a0898efe4059a776193c02132129"], "properties": ["black, laptop, shelf", "- material is stone, metal, concrete"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["liquid, ice, lid", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["room, bed, desk", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, awning, cover", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["wall, stairs, castle", "house, fence, playground"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a chair with a yellow seat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a4de5f2055154465968f33d6289c64e6", "c3a82df41875402285608ef13a55df57"], "properties": ["color, yellow, seat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a square with small dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chair on a white background royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small building with a staircase in a room."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["desk, chair, table", "room, staircase, building"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase in a room?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, background, gray", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["floor, table, light", "table lamp, ceiling light, table"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "an oval table with a mouse on top of it"], "question": "which table has a black ceiling light", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a large house with a roof on a platform."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "cb3e09a301b746918a682a595037c7f7"], "properties": ["building, fence, snowy", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a large rock or stone.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["boulder size, color, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a small white house with a roof."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["load, crates, snow", "roof, color, white"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a brick wall with grass.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["brick, grass, wall", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a black and white striped fly in the air."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["black, white, coffee table", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a black and white photograph of a fly"], "question": "which entity is black and white", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "c3a82df41875402285608ef13a55df57"], "properties": ["graffiti, bench, wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small trailer and a white box."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "aabcf9b9c0f2458590f99509f369c9f9"], "properties": ["screen, keyboard, box", "box, trailer, white"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a camper trailer royalty free 3d model preview no.2"], "question": "which object has a white box", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["frame, roof, trusses", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, color, yellow-green", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " of an egyptian sarcophagus."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["collection, moose, skull", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a black rock with writing on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, writing", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["wall, stairs, castle", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["small purple teapot with a hook.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, purple, hook", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a bowl", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["s, plane, house", "throne, chair, building"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, bird, lake", "house, rock, bird"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a house on a rock"], "question": "which image shows a bird on a rock?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Drawer, Handle, Wood", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a house with a wooden-framed roof structure."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "roof, material, wood"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, orange, white", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["color, table, ceiling", "ceiling, light, desks"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling with blue and white triangles", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "books, paper, lamp"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white photograph of a toilet paper holder"], "question": "which entity is not a collection of various bottles?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["shape, bathroom, refrigerator", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " of a small white building with stairs and a lid."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["face, handle, spout", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a small, circular object", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", "a low-poly of a white, shattered sphere."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["island, terrain, water", "sphere, color, texture"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a cracked egg"], "question": "which entity is a low-poly of a white", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a computer desk with a metal cube and a black and blue object on it."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "ccae0199457440e68db47a936191afe5"], "properties": ["a, color, white", "a, color, black, blue"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a sofa with a cushion on top"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a desk with a laptop on it"], "question": "which object is black and blue", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, gun", "color, black, visor"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black motorcycle helmet with a visor on top"], "question": "which object is black", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["Arms, Legs, Color", "roof, color, yellow"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small wooden house."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, rock, pond", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["cup, bottle, chessboard", "a city, train, dragon"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["yellow, table, roof", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["house, color, white", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a small white building", "a black and white 3d model of a building"], "question": "which building is white", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house with a blue roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["roof, structure, wall", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which roof is blue", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["room, house, windows", "house, hill, forest"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["red, mouse, handwriting", "table, stairs, ladder"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a wooden roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, size", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["building, roof, yellow", "a, building, roof"], "captions_pred_pc": ["a black and white image of a cell phone", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": [" a tree with a blue ball and a mushroom.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, ball, mushroom", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", " a wooden billiard table with legs."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["type, handle, feature", "legs, material, wood"], "captions_pred_pc": ["for a black and white drawing of an axe", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["size, material, wheels", "color, white, gold"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, material", "house, table, chair"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d rendering of a small white table with a chair"], "question": "which entity is a table?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["hat, sword, gun", "lighthouse, fountain, crater"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a large metal building with a roof and truss structure."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "b85a99699ccd4bcba213322113bb253d"], "properties": ["background, color, white", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a cat's head", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a large metal building with a roof and truss structure."], "sample_ids": ["55b26130f1514032be078e13fd982905", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["rusty, hat, dartboard", "a, material, clay"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a wooden-cased radio."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["background, color, white", "case, material, wood"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a long white plastic strip on a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a large building with a roof and windows."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "32d1fbd3ee91426882290305f70021e6"], "properties": ["background, color, white", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a cat's head", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, shape, pattern", "color, white, logo"], "captions_pred_pc": ["a black and white image of a knife on a white background", "for a black and white image of a shirt with dots"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity is a logo?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " of a man with black hair, wearing a black shirt, black pants, and a suit."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "ffbbd798b7e448849b7acd309717739c"], "properties": ["a, rock, paper", "a, shirt, pants"], "captions_pred_pc": ["for a flock of birds in the sky", "a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white 3d printed figurine of a man"], "question": "which entity has more pants", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", "a white of a man with arms outstretched."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, color, yellow", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["bedroom, bathroom, bed", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, house, wooden", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["red, sphere, resembles", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["building, roof, balcony", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["- material is plastic- color is white- shape is cylinder", "bowl, pottery, headpiece"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, toilet, robot", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "of a black ribbon on a white background"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a metal tray with two rolls of paper in it"], "question": "which object is silver in color", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["above a black and white drawing of a cross", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a building with a roof"], "question": "which building has a roof made of glass?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a house with a green, wooden-structured roof."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["door, roof, pool", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, black, shade, black", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "88eba412c78a4ced89eb857327653f6c"], "properties": ["building, fence, snowy", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a small wooden house with a green roof."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, platform, house", "roof, color, green"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a ladder"], "question": "which house has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["graffiti, bench, wall", "box, handle, gun"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white square with dots on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["white floor lamp with a white shade and base, resembling a white plastic stick or column, featuring a camera on top.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f1230cbf5653463bbda1bdf55543ba4d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shade, base, height", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white plastic toothbrush on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "a2354f13774340d392fbf33564934aab"], "properties": ["color, bench, rack", "building, roof, yellow"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "f1b557775310478893242180defa4d80"], "properties": ["frame, roof, trusses", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a pistol, rifle, and colt 1911 in three different colors.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["82a62cfa49194aeea91f19e5c750b40f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, pistol, rifle", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a pistol on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, red, blue, green", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building with many windows"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " of two rocks with ice elements."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["acropolis, city, building", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small, snow-covered house."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, structure, greenhouse", "house, snow, cover"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, desk, laptop", "a, material, clay"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a witch wearing a black and white hat."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, white, railing, black", "color, black, white"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity has a white and black hat?", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, landscape, sand", "a, material, clay"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a pair of dumbbells.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["c4274da2e5a145faaffa2bfa75e0134d", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["weight, pair, dumbbells", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model preview no 3", "a 3d model of a table and chairs on a white background"], "question": "which object has a roof that is yellow", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, tan, brown, orange", "island, terrain, water"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["house, roof, toothbrushes", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, green, tiled", "roof, truss system, framing"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "12093c89a60941e7884b252bdc05104c"], "properties": ["lighthouse, fountain, crater", "giraffe, bench, flower"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a house with a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, stairs, house", "roof, house, roof"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which house has a roof", "label": 0}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a white shelf with holes and brackets."], "sample_ids": ["b5afccae993346079483507296fbb029", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["shape is square, material is metal, color is rusty", "color, white, holes"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a concrete column", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", "a white of a man with arms outstretched."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["railing, table, staircase", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a window", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "09f2cf267e954c958828325067bcc36a"], "properties": ["red, eyes, rocket", "island, terrain, rocks"], "captions_pred_pc": ["of a black and white image of a clock", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small house on a hill in a field.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, hill, field", "house, pool, balcony"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, base, warning", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["house, building, people", "paint, rust, concrete"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a concrete wall"], "question": "which entity is more likely to have rust", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a wooden billiard table with legs."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["floor, wall, roof", "legs, material, wood"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color is white, yellow, plastic", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a metal object"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["shape is sphere, color is white, material is plastic", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a wooden frame with a picture in it.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9dcf94c293de427daba9dceee624e728", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["picture, frame, material", "house, table, chair"], "captions_pred_pc": ["a black and white image of a long, decorative piece of jewelry", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a framed picture on a wall", "a 3d rendering of a small white table with a chair"], "question": "which entity is a building?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["s, stick, leaf", "door, lock, handle"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " of a small white box or bench."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "dfc7c96b45b74328bce7418560fe76fe"], "properties": ["color, bench, rack", "white, bench, small"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "above a black and white illustration of a person standing on top of a skyscraper"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d rendering of a white object on a white surface"], "question": "which bench is smaller", "label": 1}, {"captions": [" of a wall featuring various potted plants.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["54d03259a316434e9c670a52a7e5a92e", "c3a82df41875402285608ef13a55df57"], "properties": ["image, wall, plants", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a wall with bullet holes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white glass beer mug."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, black, white", "color, white, glass"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["5c04dac989a64d228283687588484b93", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, purple, suspended", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "443554d4d7044c66aa8cbff63c737589"], "properties": ["color, white, blue, roof, black", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a white of a man with arms outstretched."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, material, texture", "image, color, white"], "captions_pred_pc": ["a black and white image of a spider's head", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a wooden table with a plant on it."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["floor, table, wall", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, door, cross", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a black gun/rifle"], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "b596b52b86914c2b9bc4b4cd096621db"], "properties": ["a knife, blade, handle", "color is black, material is metal, type is gun/rifle"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a gun on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a black gun on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, toilet, robot", "house, rock, bird"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["buildings, houses, grass", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " of a wooden windmill with a red roof."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["3ds max, obj, fbx, c", "roof, color, red"], "captions_pred_pc": ["a black and white insect on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a green box with four compartments", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, number", "roof, color, yellow"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["green teapot", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5fbede2bde754dd59e11a47fc7d5e9a6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is green, material is ceramic, shape is teapot", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a bowl on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "c3a82df41875402285608ef13a55df57"], "properties": ["house, roof, toothbrushes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", "star wars stormtrooper "], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof, truss, suspended ceiling", "a, color, white"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["graffiti, bench, wall", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["yellow, table, roof", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "46903bf029934b1989bc062dcb0a5531"], "properties": ["table, staircase, light", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white photo of the letter g", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a silver vintage racing car.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, silver, vintage", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage racing car", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a house with a wooden-framed roof structure."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", "a featuring a staircase, small red and white building, red box, table, and ceiling light."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "11e2e8ca1f8849e394dfbf532c6d7ae0"], "properties": ["building, color, white", "a, building, staircase"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "for a black and white photograph of a piece of metal"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a staircase in the middle of a floor"], "question": "which building has a staircase?", "label": 0}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, door, suitcase", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small house with a tree and a rock.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "402601779d1d4146b4cde106dfff1b27"], "properties": ["house, tree, rock", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "c3a82df41875402285608ef13a55df57"], "properties": ["color, table, blocks", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a table with four legs", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, air conditioner, house"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "c3a82df41875402285608ef13a55df57"], "properties": ["color, bench, door", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, size", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, white, railing, black", "flower, color, pink"], "captions_pred_pc": ["above a black and white image of a computer screen", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["floor plan, heating system, ceiling light fixture", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small purple plastic chair with holes."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white glass beer mug."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- material is wood, metal, metal", "color, white, glass"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a black building.", "a white glass beer mug."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, building", "color, white, glass"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a white of a man with arms outstretched."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, pink, green, cord, white", "image, color, white"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["- material is plastic- shape is dice- color is white", "mossy, rock, grass"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a wooden windmill with a red roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["house, roof, wooden", "roof, color, red"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a windmill on a gray background"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, house, small", "roof, beams, chimney"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "9968e06a62e8487ea33460e640abc573"], "properties": ["holder, spring, box", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["color, white, holes", "paper, hole, sign"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has holes", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "5414d75e47104589837f3df8b6de6d22"], "properties": ["- color is white- shape is cube- material is plastic", "beige, white, round"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a white cube", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["floor plan, bathroom, pool", "table, staircase, light"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " a small white building with stairs and a white table."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, background, arrows", "building, stairs, table"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a wooden shed with a gray roof."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["low poly, llama, kangaroo", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a large metal building with a roof and truss structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, containers", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["throne, chair, building", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a large metal building with a roof and truss structure."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, yellow, roof, metal", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a long metal fence"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white knight's helmet.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["9d89aae6a7c84bbc97c63c06055ecedd", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, white, helmet", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a dandelion on a white background dandelion illustration on a white background illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a person's head wearing a helmet", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of two rocks with ice elements."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["s of, snowboard, shoes, mask", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d golden gun.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7034d366fe4a4debbb4deadce02801c6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["3D, color, golden", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a key", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a ray gun royalty free 3d model preview", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["fee48e4d25934ebb85ef6888d517d398", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["red, rock, ceiling", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a circular object with dots on it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a sword with a yellow handle and white blade.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["ee82fbc66d39467b8f34b91493053e66", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, handle, blade", "color, background, white"], "captions_pred_pc": ["of a black and white image of a pen on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a sword on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object has a white handle?", "label": 0}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, handle, zipper", "wing, knife, boat"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black umbrella on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house with a pond and situated on a rock."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "92859eb82a344134806b37cc209927c6"], "properties": ["resembles, toy, bookshelf", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a rock", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white house with a staircase and a window."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, door, window", "house, staircase, window"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a 3d white cube with windows resembling a building."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "4a07a5293f024bb0a353954a056ef626"], "properties": ["roof, color, pink", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a cube"], "question": "which entity has a roof that is textured?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " of a character wearing glasses and a hat."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["hair, legs, wings", "hat, glasses, character"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", " a blue and yellow striped fish."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "c534e37656024a9fba79be2c4386d626"], "properties": ["mug, color, brown, white", "color, stripe, blue, yellow"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a black and white image of a fish"], "question": "which entity has a stripe of the color blue?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, red, pink", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor plan, bathroom, pool", "house, fence, playground"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["shape is turtle, color is green, white", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "of a spike on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "c4e45a41478e42418399074b88d8920f"], "properties": ["- material is white- color is white- texture is textured", "axe, handle, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, texture", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small purple plastic chair with holes."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, size", "color, plastic, purple"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white box with a black base", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "bf18bfd89efd43389781050230467d58"], "properties": ["building, color, white", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, hat, glasses", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["metal, laptop, light fixture", "house, table, chair"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a blue and white bird.", "a white of a woman with her arms outstretched."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, lake, boat", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a white plastic container with a label on it"], "question": "which object is white and yellow?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a wooden shed with a gray roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "b896a0898efe4059a776193c02132129"], "properties": ["color, helmet, airplane wing", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d printed model of white and red robots on a red platform.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0fa560c2fd9f4422a97356c947ac3b46", "b896a0898efe4059a776193c02132129"], "properties": ["color, red, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a person sitting on a bench", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a robot standing on top of a table", "a 3d model of an ancient statue"], "question": "which object is made of more materials", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a white castle composed of small cubes."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, door, window", "composed of, white, cubes"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a green, wooden-structured roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["bed, desk, window", "roof, color, green"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, shape, and size", "roof, brown, flat"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", "a white of a woman with her arms outstretched."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, horns, eyes", "image, color, white"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a blue pickup truck", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "411c164757fc4de68dfecb35fa858223"], "properties": ["color is blue, make is ford, model is f150", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "3d silver sculpture resembling a triangular wing with a white arrow design."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "578cb910905042939d876af28e29eb2f"], "properties": ["building, roof, white, cubes", "wing, silver, white"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a pair of hands"], "captions_pred_image": ["a 3d model of a city on a white background", "a white paper airplane flying against a gray background"], "question": "which object has a white arrow design", "label": 1}, {"captions": [" a small black box on a purple square.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["75f209e543c046669099190953616acc", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, size", "roof, color, blue"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a house with a steeple on top"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a black and white of a knife/sword with a handle."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, black, rings", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "bf18bfd89efd43389781050230467d58"], "properties": ["flag, stand, color", "Lights, number, five"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a banner on a stand", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["a, b, c", "spheres, lamp, city"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a futuristic spaceship"], "question": "which entity has a city?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["buildings, houses, grass", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small white house with a roof."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, truss system, framing", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["a, material, steel", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of the roof of a house"], "question": "which structure is made of brick detailing?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", "a black rock with writing on it."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["building, color, black and white", "color, black, writing"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" a white building.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "402601779d1d4146b4cde106dfff1b27"], "properties": ["color, white, building", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white drawing of a bottle", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a building on a white background", "a snowflake in the air on a cloudy day"], "question": "which entity is a picture of a cat", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, pattern, field", "houses, trees, road"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a large rock or stone.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["boulder size, color, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white rocking chair with a curved backrest."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, material, structure", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of an egyptian sarcophagus."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["bed, desk, window", "sarcophagus, material, wood"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "b896a0898efe4059a776193c02132129"], "properties": ["a, roof, soup", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "26c47880756b4876b4f263373c3c5303"], "properties": ["color, red, blue, green", "building, material, steel"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a large structure with multiple levels"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "09f2cf267e954c958828325067bcc36a"], "properties": ["mossy, rock, rocky", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white image of a piece of dirt on the ground"], "question": "which island has more rocks", "label": 1}, {"captions": ["small purple teapot with a hook.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, purple, hook", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["white, top, writing", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large building with a roof and windows.", " of a wooden windmill with a red roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, windows, building", "roof, color, red"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a gray toolbox with an orange handle, filled with various tools."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "40c34834c6364e00b0157eb87914fc51"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, handle, gray"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a toothbrush and toothbrush holder"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a toothbrush kit royalty free 3d model no."], "question": "which object has a handle", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a hammer with a long metal handle."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["- material is plastic- color is white- shape is cylinder", "handle, metal, long"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white toothbrush on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color, white, material, ceramic", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["computer desk, laptop, monitor", "room, furniture, window"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": [" a small house with a red roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["085db9059b744673b5623b5338e02196", "6b745457e06840119058883b35f78f58"], "properties": ["roof, red, house", "roof, color, blue"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small wooden house."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, staircase, window", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a white castle composed of small cubes."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, eye, handle", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape, bathroom, refrigerator", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a spiral staircase with a railing in a small building."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["runner, bed, bench", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, mattress, pillows", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a small green and white 3d teapot in the shape of a turtle."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "8df8b28138e040a89303e91518b09d59"], "properties": ["A, a, a", "shape is turtle, color is green, white"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white ceramic teapot on a gray background"], "question": "which object is green and white", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a white and blue building with a black roof."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, green, tiled", "color, white, blue, roof, black"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, truss, suspended ceiling", "house, fence, playground"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house on a hill in a field."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["castle, island, house", "house, hill, field"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "e6ff8537a6ba409296954984071218a3"], "properties": ["frame, beams, trusses", "frame, screen, color"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["building, fence, snowy", "color, yellow, black"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, roof, block", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": ["white airplane in flight.", " of a crab holding a rubik's cube."], "sample_ids": ["7dccc62d436c40efa2ea23b9c8179451", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["airplane, white, in flight", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["above a 3d model of an airplane on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a white airplane toy on a gray background", "a black and white image of a crab holding a cube"], "question": "which object is not in flight?", "label": 0}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["low poly, llama, kangaroo", "glass, metal, balls"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["white korean word on a gray background.", "a computer mouse on a piece of paper with a hole in it."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "453edfa600a0493f9379738ea8393273"], "properties": ["color, background, font", "paper, hole, mouse"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "above a black and white illustration of an object in the shape of a cloud"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a mouse on top of a piece of paper"], "question": "which object is on a piece of paper?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a lamp, a syringe, a light pole", "a room, a cake, a table"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a white rocking chair with a curved backrest."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["size, material, shape", "backrest, curved, yes"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object is more likely to be a chair", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of an egyptian sarcophagus."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["fireplace, bench, log", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small purple plastic chair with holes."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["island, terrain, rocks", "color, plastic, purple"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "modern tan leather lounge chair."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["color, white, base, slanted", "color, tan, leather"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a 3d model of a chair", "a gray leather lounge chair with a metal base"], "question": "which chair is made of leather", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c9c786f133f54d5e8d99bfc1a588df41"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "stacked, racks, toy train"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white photo of a person standing in front of a white wall"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a ship's propeller on a white background"], "question": "which object has a toy train?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a wooden windmill with a red roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["chair, table, refrigerator", "roof, color, red"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a wooden shed with a gray roof."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, material, pattern", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, blue, components", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity is a painting?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["house, roof, toothbrushes", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, table, ceiling", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, yellow, chimney", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a clear glass display case with a square light fixture."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "980ded888795417f94b46750105e1597"], "properties": ["floor plan, ceiling light, color", "light, fixture, square"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a clear plastic box"], "question": "which entity has a square light fixture", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small house on a hill in a field."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, shape, material", "house, hill, field"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white image of a small house"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, material, size", "frame, screen, color"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["door, lock, handle", "stair, table, chair"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "db19e46828c94b1a8b9a6ca9f673c604"], "properties": ["A, a, a", "a, roof, soup"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or fewer a black and white illustration of the moon"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a bowl and chopsticks on a sheet of paper"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "703dce44052e48cfb024bceb08141554"], "properties": ["frame, beams, trusses", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a wooden structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "d81d13362ae04371bb2cba46e4939665"], "properties": ["building, roof, yellow", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a cell phone", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["d6087023095446fbadef1721478373b2", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["door, roof, window", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of the roof of a building"], "question": "which building has a roof with trusses?", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["hill, field, castle", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["color, orange, leather", "throne, chair, building"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a low-poly of a white, shattered sphere."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, size", "sphere, color, texture"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a cracked egg"], "question": "which object is a sphere?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "f1b557775310478893242180defa4d80"], "properties": ["door, white, structure", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a small house in the middle of a field"], "question": "which structure has a roof?", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a black and white object", "a 3d model of a sea urchin"], "question": "which entity is a sea shell?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a small wooden house with a roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof trusses, beams, suspended ceiling", "roof, house, wooden"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "24f7d0a06d494c26a1678d81b2b7b093"], "properties": ["a, roof, soup", "a, laptop, teddy bear"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of an umbrella on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d rendering of a white room with various objects"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, brown, flat", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, purple, beams", "roof, material, wood"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["ruined building, stone floor, small stone structure", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "b896a0898efe4059a776193c02132129"], "properties": ["roof truss, chimney, suspended ceiling", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, number", "building, window, skeleton"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, pink, green", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white box with a green light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, light", "island, terrain, water"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small blue and red blimp.", "a low-poly of a white, shattered sphere."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, size", "sphere, color, texture"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["location, field, gravestone", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, screen, drawer", "color, shape, color"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, table, ceiling", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a staircase in a room"], "question": "which entity has a table and a chair?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["image is a sculpture of an angel on a wall", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a machine gun with additional items."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "gun, type, machine gun"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a submachine gun"], "question": "which object is more likely to be used in a war", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, sphere, molecule", "island, mountain, grass"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "d81d13362ae04371bb2cba46e4939665"], "properties": ["face, handle, spout", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a white ceramic vase with a face on it", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "6b745457e06840119058883b35f78f58"], "properties": ["house, roof, green", "roof, color, blue"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a blue roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, roof, wooden", "roof, color, blue"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a green mountain with trees and grass."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, shape, and size", "mountain, grass, tree"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a mountain with snow on it"], "question": "which entity is more green", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small wooden house."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["- material is white- color is white- texture is textured", "house, material, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, purple, suspended", "a, material, clay"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["flag, stand, color", "moss, mushroom, grass"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["metal, rusted, paper", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, fence, dog", "building, plane, city"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a house with a flat roof structure."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "abc52d210d71415296730bb00352ce6f"], "properties": ["chocolate, mushroom, cake", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a two-story small apartment building with a roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, color, blue", "two-story, roof, building"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["brown, paint, tape", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a white staircase with a black railing in a room."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "d05c1b6047e145a4906c467a9ebe7430"], "properties": ["building, color, white", "color, white, railing, black"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d rendering of a white staircase with a stainless steel handrail"], "question": "which staircase is white", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["building, ceiling, kitchen", "image size, image, royalty"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a wildebeest"], "question": "which image is smaller", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["paper, hole, mouse", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "97e000ff41094665afd94ea565da8b13"], "properties": ["ceiling, light, desks", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a tu-22m3 fighter jet in flight.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["77d80048cd7f4320846a5895c1649018", "703dce44052e48cfb024bceb08141554"], "properties": ["image size, image, aircraft", "roof, beams, frames"], "captions_pred_pc": ["above a black and white image of an arrow in the shape of an arrow", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a fighter jet flying in the sky royalty free 3d model", "a 3d model of a wooden structure"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a small off-road toy vehicle with wheels.", " a wooden shed with a gray roof."], "sample_ids": ["7ef2589539b84054b2185633112825cc", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["wheel, toy, vehicle", "roof, color, gray"], "captions_pred_pc": ["of a black and white photo of a cross on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dune buggy royalty free 3d model preview no 3", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "b896a0898efe4059a776193c02132129"], "properties": ["color, logo, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a purse with a chain", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, color, black and white", "throne, chair, building"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a house with a roof and beams."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["staircase, railing, building", "roof, beams, house"], "captions_pred_pc": ["a black and white photograph of a light switch", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small purple plastic chair with four legs."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["- color is red, blue, pink", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["for a black and white image of an object on a white background", "of a black and white image of a baby carrier"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["painting, door, wall", "house, rock, bird"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " a house with a wooden-framed roof structure."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a building with a roof"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, screen, drawer", "stair, table, chair"], "captions_pred_pc": ["above a black and white image of a brush", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" an old castle in a grassy field.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "7f8942ef51dd4246993a587a12df168c"], "properties": ["field, grass, castle", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, blue, green, yellow, blue", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a black castle with stairs and a door.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "12093c89a60941e7884b252bdc05104c"], "properties": ["door, stairs, color", "giraffe, bench, flower"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["ruined building, stone floor, small stone structure", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "5850d5c7223447db816081d50292fec0"], "properties": ["building material, pool, steel", "structure, material, pool"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a concrete structure", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": [" a celtic stone cross.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is stone- shape is cross- color is black", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["3D, toothpick, skateboard", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, rock, paper", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["base material, wood, shade color, white, beige", "house, fence, playground"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, material, texture", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small house on a hill in a field."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["furniture, staircase, torn-apart", "house, hill, field"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, roof, tray", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["Arms, Legs, Color", "roof, trusses, ladder"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6b745457e06840119058883b35f78f58", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, blue", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a white ornate airplane design.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "97e000ff41094665afd94ea565da8b13"], "properties": ["a room, a cake, a table", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["fireplace, bench, log", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, black, shade, black", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["graffiti, bench, wall", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, purple, structure", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a bench", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small white box with a green light."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["door, white, structure", "color, white, light"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d rendering of a small white box"], "question": "which entity is white", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "d81d13362ae04371bb2cba46e4939665"], "properties": ["arm, jacket, mannequin", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a woman's torso", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, gray", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, pink, green, cord, white", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a small table with a staircase"], "question": "which object has a light integrated into it?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, black, white", "low poly, plant, white"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, yellow, chimney", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "star wars stormtrooper "], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["s, chimpanzee, human, wolf", "a, color, white"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a white 3d dragon-bat hybrid with wings."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "8cb88b6f02c549ee812e092a2e948e1c"], "properties": ["color, sphere, molecule", "wing, color, white"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white image of a bird in flight"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a white 3d model of a bat flying in the air"], "question": "which entity has a wing", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a crab holding a rubik's cube."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, light, jewels", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, tan, leather", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, material, frame", "color, sphere, molecule"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of a white chest of drawers with legs."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["Steel, Color, Yellow", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a building", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a green mountain with trees and grass."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, yellow, chimney", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "c3a82df41875402285608ef13a55df57"], "properties": ["a, suit, cell, phone, gun", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, beams, chimney", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["water, river, island", "house, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["base material is wood, color is red, message is welcome to northwich", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a large steel building with a pool."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["door, roof, pool", "building material, pool, steel"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a large steel building with many columns and a pool."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, roof, yellow", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " of a small white building with stairs and a lid."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["staircase, railing, building", "building, stairs, lid"], "captions_pred_pc": ["a black and white photograph of a light switch", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " a wooden billiard table with legs."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a, b, c", "legs, material, wood"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a line of white cubes with various insects on them", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a white castle composed of small cubes."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, material, structure", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a stone wall featuring carvings and statues."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["hat, food, bowl", "carving, statue, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d image of a group of statues on a wall"], "question": "which entity has more statues", "label": 1}, {"captions": [" a small building with a roof.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["roof, building, small", "building, roof, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a building with a clock tower"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a spider-like creature with long arms and legs."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, bird, lamp", "arachnid, leg, arm"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "d81d13362ae04371bb2cba46e4939665"], "properties": ["bedside table, wheels, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "832a022cdcc74763b0571e04af4e592b"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a lego model of a futuristic airplane"], "question": "which entity is not a spaceship?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a green mountain with trees and grass."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["hair, legs, wings", "mountain, grass, tree"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a small wooden house."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["a, window, statue", "house, material, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a white chest of drawers with legs."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["room, door, shelf", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a house with wooden framing and trusses."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, blue, roof, black", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a small house on a hill in a field."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["floor, staircase, balcony", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["lighthouse, fountain, crater", "moss, mushroom, grass"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a fountain", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " of two rocks with ice elements."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, table, chairs", "image is a rock with ice elements"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, sphere, molecule", "water, boat, rock"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d image of an animal laying on the ground"], "question": "which entity has more water", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a large house with a roof on a platform."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "cb3e09a301b746918a682a595037c7f7"], "properties": ["building, plane, city", "roof, platform, house"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a bench and lamp post.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["A, bench, lamp post", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "above a black and white map of spain on a white background"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a black and white image of a rock formation on a gray background"], "question": "which image is a rock formation?", "label": 1}, {"captions": [" a brick wall with grass.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["brick, grass, wall", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a house with a roof and beams."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["design, poles, table", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a square with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, lake, boat", "roof, color, yellow"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["shape is sphere, color is white, material is plastic", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small triangular-shaped object."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "2d02985030804209a26c2c53b96a06f9"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a house with a green, wooden-structured roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, orange, white", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a house with a triangular roof"], "question": "which object has a green roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["house, roof, wooden", "roof, color, blue"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "c8936ace72954650b4e2d84246964849"], "properties": ["color, temperature, england", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of the house?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a white of a house with a hole in the ceiling."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, tree, pool", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a drawing of a bird, fish, and white-blue dragon with a tail.", " of two rocks with ice elements."], "sample_ids": ["7136a3a6819e49e4b855f45fa1e2cded", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["animal, tail, white-blue", "image is a rock with ice elements"], "captions_pred_pc": ["a white and black bird flying in the sky stock illustration \u00a9 2019 iStock", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an illustration of a bird with its wings outstretched on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["house, rock, pond", "roof, structure, greenhouse"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black base", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["- color is white- shape is cubes- number is 1", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a, suit, cell, phone, gun", "box, handle, gun"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d rendering of a metal box with a handle"], "question": "which entity has a gun inside", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " of two rocks with ice elements."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["pattern, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d image of two rocks on a gray surface"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, furniture, black", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["- material is stone - color is blue - shape is arrowhead", "door, lock, handle"], "captions_pred_pc": ["above a black and white drawing of an arrow", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green skull and sphere.", " of a white human skull with broken bone elements."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, skull, sphere", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a human skull in white"], "question": "which skull is white", "label": 1}, {"captions": [" a white bunk bed with a ladder.", " a house with a roof and beams."], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["bed, ladder, color, white", "roof, beams, house"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a stone wall featuring carvings and statues."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "carving, statue, wall"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "9968e06a62e8487ea33460e640abc573"], "properties": ["room, bed, desk", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, lake, pool", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a large building", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "5414d75e47104589837f3df8b6de6d22"], "properties": ["shape is hot dog, design is dragon, color is black", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["cover, torn, open", "house, pool, balcony"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a, desk, laptop", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, hole, shelf", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["a, bird, lake", "floor, staircase, table"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["white 3d triangular object", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color is white, shape is triangular, material is plastic", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a wooden roof structure with a pink roof."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["cover, torn, open", "roof, color, pink"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "b896a0898efe4059a776193c02132129"], "properties": ["house, rock, pond", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["resembles, toy, castle", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a bag with a zipper on it"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house with a yellow roof and chimney."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, structure, wall", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a white origami bird with silver wings."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "d9574287572c47f7a2b712cf1d919374"], "properties": ["color, shape, texture", "color, white, wings"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a 3d model of the human body"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a 3d white cube with windows resembling a building."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, green, handle", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["graffiti, bench, wall", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": ["yellow metal barricade ", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "20a02705a66f460492e07345e84a62ed"], "properties": ["color is yellow, material is metal, height is 0.5 m", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a white barrier on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, grass, moss", "house, lake, pool"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a female character in a white outfit.", "a white of a man with arms outstretched."], "sample_ids": ["5f5a316aedfa479887d61a105f3896ad", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["outfit, color, white", "image, color, white"], "captions_pred_pc": ["the image is a black and white photo of a woman", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a female character", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a house with a roof and beams."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["white, windows, lid", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" of a house with a pink roof.", " a white and blue building with a black roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, roof, pink", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, ceiling, kitchen", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d rendering of a house on a rock"], "question": "which house has a boat?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, table, blocks", "island, terrain, water"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white castle composed of small cubes.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["composed of, white, cubes", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a roof structure"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a person breaking through a brick wall."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, tan, brown, orange", "image, brick, wall"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["room, bed, desk", "room, staircase, bus"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d image of a building with a lot of debris"], "question": "which room has a staircase?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a spider-like creature with long arms and legs."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color is white, yellow, plastic", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a white building with a red roof."], "sample_ids": ["97f487941d26472294e005fa97c403be", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, green", "color, white, roof, red"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["chest of drawers, cabinet, white", "house, table, chair"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d rendering of a small white table with a chair"], "question": "which entity is a house?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "73c76c4d4fc44b4e8b1a26aea3e0cc79"], "properties": ["color, temperature, england", "cylinder, marble, pillar"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white envelope with many small dots on it"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a marble bench with a hole in it"], "question": "which entity has a cylinder?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["base, speaker, light", "houses, trees, road"], "captions_pred_pc": ["above a black and white illustration of a clock", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small white house with a roof."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, door, clock", "roof, color, white"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a building with a white roof"], "question": "which building has a roof", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, red, green, yellow", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a celtic stone cross.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is stone- shape is cross- color is black", "metal, cross, clock"], "captions_pred_pc": ["for a black and white image of a watch", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["building, material, steel", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a house with a flat roof structure."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, shape, material", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, metal, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a barn", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white image of a flying saucer", "of a black and white bracelet on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["texture, spikes, eyes", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a large building"], "question": "which entity has a lake", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hill, field, castle", "island, terrain, water"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a wooden shed with a gray roof."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["mossy, rock, rocky", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " of a person breaking through a brick wall."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["collection, color, black, handle, wooden", "image, brick, wall"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" an old castle in a grassy field.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "c4c09479570943e2845fbd4c6a450568"], "properties": ["field, grass, castle", "castle, island, house"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a small house on an island"], "question": "which castle is on an island?", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a wooden house with a roof and birdcage structure."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "3e4527c9c8e940b5806b8a69967a90b8"], "properties": ["roof, structure, suspended", "roof, structure, material"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white image of the letter 'f' on a white background illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["location, field, gravestone", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a city skyline in white"], "question": "which image shows a city?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "411c164757fc4de68dfecb35fa858223"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, structure, house", "house, roof, green"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, bow, arrow", "hat, watch, clock"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", " of two rocks with ice elements."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "a17477b445b3443189dad22f768b888b"], "properties": ["frame, truss, roof", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["house, lake, pool", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e602ac60041f4b4f84c044161e478781"], "properties": ["a box, a cup, a bottle, a jar", "floor, wall, roof"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has more floors", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["holder, spring, box", "table, stairs, ladder"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, eye, handle", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white drawing of a room", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, material, size", "face, mask, tail"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " featuring a chair, table, and refrigerator."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["house, door, cross", "chair, table, refrigerator"], "captions_pred_pc": ["above a black and white image of a map", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a chair, a table, and a refrigerator"], "question": "which object is not a door", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "b896a0898efe4059a776193c02132129"], "properties": ["color, model, luggage", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small building with windows and a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, structure, wall", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" of a yellow bird with black eyes.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "40022305eaf44442915c9db03e25f781"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " a large steel building with a pool."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor, stairs, bathroom", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small table", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " of a small white building with stairs and a lid."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["white, windows, lid", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of dots on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a white box on a gray background"], "question": "which building has stairs?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "ca275639b47a4093b4426d304695af7f"], "properties": ["color, black, shade, black", "holder, spring, box"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a plastic container with a spring inside"], "question": "which entity is a box?", "label": 1}, {"captions": [" a white knight's helmet.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9d89aae6a7c84bbc97c63c06055ecedd", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, helmet", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a person's head wearing a helmet", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a spiral staircase with a railing in a small building."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["chair, table, refrigerator", "staircase, railing, building"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a staircase in a white room"], "question": "which object is in a building", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a white chest of drawers with legs."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["blue tarp, flower, small island", "chest of drawers, legs, white"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "6b745457e06840119058883b35f78f58"], "properties": ["screen, monitor, stand", "roof, color, blue"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, screen, drawer", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a small table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "92498f398e244020a867686729633610"], "properties": ["color, material, texture", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white drawing of a skull", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a clay pot with holes in it."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, windows, building", "hole, material, clay"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["a, plane, small plane", "buildings, houses, grass"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, house, small", "house, roof, wooden"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a black rock with writing on it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, red, blue, green", "color, black, writing"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["background, color, white", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["earbuds, light, ring", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bedroom?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "766a075b4760433bafdbe88bee546796"], "properties": ["broom, shovel, fireplace", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wall?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a black and white building", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["room, bed, desk", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b896a0898efe4059a776193c02132129"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["- material is plastic- color is white- shape is cylinder", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a box with a lot of items inside"], "question": "which entity has a building?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, material, ceramic", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["buildings, houses, grass", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["building, roof, white, cubes", "color, white, yellow, roof, metal"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "a17477b445b3443189dad22f768b888b"], "properties": ["runner, bed, bench", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, floorplan, gym", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a modern house"], "question": "which building has a pool", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a white teapot with pink flowers and a handle."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "f6c5e8931d164979a71914127c7e5438"], "properties": ["- color is white - shape is box - material is plastic", "color, white, handle"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white dots on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a white tea kettle with a black handle and floral design"], "question": "which object is white", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, green, orange, star", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a floor plan"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a wooden table and chair."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["A, a, a", "table, chair, wood"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small wooden table"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "97e000ff41094665afd94ea565da8b13"], "properties": ["metal, roof, chest", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small white box with a shelf and a hole in it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a, hole, shelf"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which object has a hole in it", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["floor plan, bathroom, pool", "Cabinet, drawer, wood"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a wooden box with a lid"], "question": "which object has a drawer", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["house, color, white", "striped, white, black"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["castle, island, house", "tv, chair, laptop"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["metal, legs, wheels", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a wooden shed with a gray roof."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, size", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a shed with a gray roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof, structure, suspended", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white image of a piece of lace", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, hill, forest"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a machine gun.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "6b745457e06840119058883b35f78f58"], "properties": ["gun, barrel, caliber", "roof, color, blue"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "6b745457e06840119058883b35f78f58"], "properties": ["color, pattern, wall", "roof, color, blue"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, material, shape", "color, frame, shape"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a building structure"], "question": "which entity is a cube", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, bird, lake", "building, plane, room"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small white house with a roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof structure, truss, ceiling", "roof, color, white"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house with stairs and a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, lake, pool", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a large building", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof?", "label": 1}, {"captions": [" a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head.", " of two rocks with ice elements."], "sample_ids": ["71143d4e7bc94fc4aa73a2d7c86635cd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["torso, breasts, pattern", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a woman's breasts", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a woman's chest", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "c3a82df41875402285608ef13a55df57"], "properties": ["arm, light, sign", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" a small house with a red roof.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["roof, red, house", "a room, a cake, a table"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["sandbox, sand bucket, wooden blocks", "hat, candy, strawberry"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " of a small white building with stairs and a lid."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, material", "building, stairs, lid"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a green mountain with trees and grass."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a room, a cake, a table", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a house with a wooden-framed roof structure."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, plane, sky", "roof, material, wood"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "9968e06a62e8487ea33460e640abc573"], "properties": ["door, lock, handle", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white image of a broom on a stand"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, material", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a white wall-mounted light switch, electrical outlet, and various furniture pieces."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "b195bf7ba6094e1b812e4312deeeb360"], "properties": ["red, mouse, handwriting", "light switch, electrical outlet, furniture"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a room with a white background"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "5850d5c7223447db816081d50292fec0"], "properties": ["color, frame, shape", "structure, material, pool"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["door, roof, pool", "hat, color, tan"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an object with a hole in it"], "question": "which object has a hole in it?", "label": 1}, {"captions": [" a large rock with a hole in it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, texture", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color, head, white and brown"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "0434eb3aa73e42a5a2570ec9c1a9b96b"], "properties": ["hat, shirt, bearded", "green, hat, cream"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white image of a pair of earrings"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no."], "question": "which entity has a hat", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, pattern, material", "a train, a ship, a boat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, red, green, blue", "roof, green, tiled"], "captions_pred_pc": ["above a black and white image of a glove", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["97f487941d26472294e005fa97c403be", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, white, green", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "a17477b445b3443189dad22f768b888b"], "properties": ["bread, chocolate, cake", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d model of a small building with a balcony"], "question": "which entity has more roofs", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, blue, white, handle", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, table, ceiling", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a purple and yellow pixelated ethereum logo in pixel art style."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bcf111e592d64b6490003680cae9407f"], "properties": ["color, shape, material", "color, style, pixel"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "an image of an electronic device with the letter 'z' on it"], "question": "which entity is a logo?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["floor, table, light", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white photograph of a window", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "e44009d33258425e8efedfbc6823bf70"], "properties": ["building, roof, white, cubes", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["above a black and white image of a map", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, bow, arrow", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "for a black and white image of an object on a white background"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a clay pot with holes in it."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, roof, tray", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["roof truss, insulation, suspended ceiling", "ceiling, light, desks"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a wooden shed with a gray roof."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["image, building, stairs", "roof, color, gray"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": [" a robotic warrior with a sword.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["weapon, sword, robot", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, orange, leather", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white illustration of a chair", "of a curved metal rod on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "f57ae66555d34349aeadc38b33f8f267"], "properties": ["a, bird, hook", "a, bird, hook"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "of a 3d scan of a person's torso and limbs"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white photo of a kite flying in the sky"], "question": "which entity has a bird suspended in the air?", "label": 0}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["roof, truss, suspended ceiling", "Cabinet, drawer, wood"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a small white building with stairs and shelves."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, material, shape", "building, stairs, shelves"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["stair, table, chair", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a white motorcycle with wings.", " a house with wooden framing and trusses."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, wings", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, size", "roof, ceiling, hole"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof and a ceiling with a hole?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "1ee3df6f94ea4c329a9c5245634e34d5"], "properties": ["door, white, structure", "graffiti, chinese writing, door"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a bridge with dots"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a black and white image of a bathroom with a sink and a toilet"], "question": "which entity has a door", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " of a wooden windmill with a red roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["tiers, building, stairs", "roof, color, red"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a2354f13774340d392fbf33564934aab"], "properties": ["houses, trees, road", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small house with stairs and a roof."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a lamp, a syringe, a light pole", "roof, stairs, house"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, pants, shirt", "hat, dress, racket"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a four-legged metal workbench with shelves."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["bowl, pottery, headpiece", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a person's head wearing a hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["4ad7ba52fa6f42ef89b52766daf1e2b9", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["head, hat, person", "hat, color, tan"], "captions_pred_pc": ["above a black and white illustration of a half moon", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person's head with a hat on it", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["55b26130f1514032be078e13fd982905", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is wood - color is white - height is 1.8 m", "- material is wood, rusty, horned"], "captions_pred_pc": ["an illustration of a barbed wire fence", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which is not made of wood", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "c3a82df41875402285608ef13a55df57"], "properties": ["a, rock, paper", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small, snow-covered house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "c3a82df41875402285608ef13a55df57"], "properties": ["house, snow, cover", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a piece of broken glass on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a large metal building with a roof and truss structure."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "b85a99699ccd4bcba213322113bb253d"], "properties": ["windmills, silhouette, city model", "roof, truss, structure"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, light, jewels", "building, room, sky"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small white building with stairs and a white table."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "e30374c614f54fdb90f35b96b071349d"], "properties": ["building, roof, white, cubes", "building, stairs, table"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["liquid, ice, lid", "books, paper, lamp"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a wooden roof structure with a pink roof."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["Lights, number, five", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, light", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "white 3d paper airplane map model"], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "black glitter africa map on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["red, mouse, handwriting", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, green, lawn", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "5017581716c7402581a82ebf08d427a3"], "properties": ["ceiling, light, desks", "Shelf, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a white shelf"], "question": "which entity has a white shelf?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, white, background, gray", "color, white, plastic"], "captions_pred_pc": ["above a black and white photograph of an object", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is whiter", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " a wooden shed with a gray roof."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "d81d13362ae04371bb2cba46e4939665"], "properties": ["staircase, railing, building", "hat, bow, arrow"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a brick building with a roof structure and roof truss."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "84e8acad28664a738df69d719df9e263"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, structure, truss"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure and roof truss?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["house, building, people", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, line, gray", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, structure, greenhouse", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small wooden house with a green roof."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["light, toilet, faucet", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["collection, color, black, handle, wooden", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a door handle and a knife", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a tree with green leaves."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1a902b67735845198efb1b84f434b580"], "properties": ["bed, desk, window", "leaf, color, green"], "captions_pred_pc": ["of a black and white drawing of a curved line", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, blue, green, yellow, blue", "house, table, chair"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d rendering of a small white table with a chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a white of a house with a hole in the ceiling."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, shape, and material", "image, house, ceiling"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a house with a balcony"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, hill, forest", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "a, character, mario"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["compartments, wall-mounted, vents", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is wood, metal, metal", "rusty, warning, metal"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["roof, truss, lamp", "books, paper, lamp"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white photograph of a toilet paper holder"], "question": "which entity has a lamp with a black and white shade?", "label": 1}, {"captions": [" of a machine gun with additional items.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d6e472d088b647c4bf07105b0fba3dba", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["gun, type, machine gun", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of an airplane in the shape of the letter 'a'", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a submachine gun", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a white fox."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, black, white", "color, white, fox"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a white fox on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", "a low-poly of a white, shattered sphere."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, mattress, pillows", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a white of a man with arms outstretched."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, temperature, england", "image, color, white"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a building with a purple, glass roof and a suspended ceiling featuring beams.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a54c746bb2644e3ea4e53ee65e32df64", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, glass, purple, ceiling, beams", "camera, speaker, ceiling fan"], "captions_pred_pc": ["the letter 't' is made up of tiny white dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, metal, white", "house, fence, dog"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a clay pot with holes in it."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["lighthouse, fountain, crater", "hole, material, clay"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a black and gold pistol.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, black, gold", "black, roof, green"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, shape, material", "image, building, stairs"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["resembles, toy, castle", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a silver vintage racing car.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, silver, vintage", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, structure, wall", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["shape is cube, color is black, white", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small white building with stairs and a white table."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "e30374c614f54fdb90f35b96b071349d"], "properties": ["water, boat, rock", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "star wars stormtrooper "], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["building, roof, white, cubes", "a, color, white"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a white color?", "label": 0}, {"captions": [" a cube with a wooden ball on top.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape is cube, material is wood, color is white", "throne, stairs, tree"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white house with a roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, red, blue, structure", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house with a triangular roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a white shelf with holes and brackets."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, shape, size", "color, white, holes"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a white box with a black base", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "854757ca755240f8b04576d899349151"], "properties": ["- color is red, blue, pink", "cabinet, room, shelf"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which entity has more shelves", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, door, suitcase", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["food, leaves, shredded paper, rocks", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["structure, roof, pitch", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a building"], "question": "which roof is more complex", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house with stairs and a roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["stair, table, chair", "roof, stairs, house"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, hole, shelf", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["hair, legs, wings", "color, sphere, molecule"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity has more spheres", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " of a small white building with stairs and a lid."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["tiers, building, stairs", "building, stairs, lid"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["giraffe, bench, flower", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, pink", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["broom, shovel, fireplace", "box, paper clip, lock"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a hole?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, and size", "door, lock, handle"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a door with a crack in it"], "question": "which entity is a door?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, light, jewels", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a wooden roof structure with a pink roof."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, number", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["d6087023095446fbadef1721478373b2", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["door, roof, window", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a house in the middle of a field"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a black and white of a knife/sword with a handle."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["light source, fixture, color", "image, color, black and white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof, color, red", "building, material, stone"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, suit, cell, phone, gun", "island, terrain, water"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["color, shape, material", "pattern, color, shape"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d image of a city map on a black surface"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house with wooden framing and trusses."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["Arms, Legs, Color", "frame, trusses, wood"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house under construction"], "question": "which entity has more wood", "label": 1}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["e-cigarette, cartridge, bottle", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["size, material, color", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["color, grass, moss", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a red and white robot."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, wheel, helmet", "color, red, white"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which robot is red and white?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, bowl, cup", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, skyscraper, city", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of an airplane", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["hat, cup, bowl", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "b896a0898efe4059a776193c02132129"], "properties": ["hat, sword, gun", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, brown, flat", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "443554d4d7044c66aa8cbff63c737589"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which house has a roof that is pink and blue?", "label": 1}, {"captions": [" of a white bunny head", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "40022305eaf44442915c9db03e25f781"], "properties": ["color, white, head", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", "a white statue of a woman holding a baby."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "7cf1c30a98fc4ae796e040c2ce18c03a"], "properties": ["image, color, black and white", "color, white, statue"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white drawing of a heart"], "captions_pred_image": ["a black and white image of a knife", "a 3d printed figurine of a woman holding a cat"], "question": "which entity is a statue?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["house, lake, pool", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a large building", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "b0427ff55c4346e293c1241c71d30528"], "properties": ["- material is plastic- shape is dice- color is white", "a, rock, nail"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d image of a rock with a screw in it"], "question": "which object is made of a rock?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, light, jewels", "flower, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a wooden billiard table with legs."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a black and white image of a pool table"], "question": "which entity has legs made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, roof, tray", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "b896a0898efe4059a776193c02132129"], "properties": ["- material is white- color is white- texture is textured", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red and white robot.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, red, white", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d printed figurine of an alien creature"], "question": "which entity is a white color?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a train, a ship, a boat"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "e694d53545d449319a64cceb0280c3c6"], "properties": ["sandbox, sand bucket, wooden blocks", "3d, slide, swing"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a playground slide"], "question": "which playground has a slide?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, sphere, molecule", "island, terrain, rocks"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["apse, roof, floor plan", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": [" a small silver camera with a lens.", "a yellow and blue toy submarine."], "sample_ids": ["62829a25b4634d63a2ba2b0220335b3e", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["lens, silver, camera", "color, yellow, blue"], "captions_pred_pc": ["a black and white drawing of a toothbrush on a white background stock illustration \u00a9 iStock/Getty Images", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, green, leaf", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small red and white spaceship.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "be1376023c274bdda995d54f3694157f"], "properties": ["color, shape, size", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", "a black and white of a knife/sword with a handle."], "sample_ids": ["2563abff548c4479970c81491513b572", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, model, year", "image, color, black and white"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a black and white image of a knife"], "question": "which entity is not a car?", "label": 0}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, yellow, roof, metal", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small orange piano with legs."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, table, blocks", "color is orange, size is small, legs"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a small white house with a roof."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, material", "roof, color, white"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["white rectangular box in a .", " a city with buildings, houses, trees, and grass."], "sample_ids": ["171d8702ca004ed787b8c7eb0de9a4fd", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["box, white, rectangular", "buildings, houses, grass"], "captions_pred_pc": ["a black and white diamond on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bowl on a gray background royalty free 3d model preview no.1", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, balcony, street", "structure, roof, pitch"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a two-story small apartment building with a roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, shape, texture", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white house with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, white", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, material", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a wooden roof structure with a pink roof."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, model, white house", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, text", "- material is stone, metal, concrete"], "captions_pred_pc": ["the logo for carl meyer", "of a white candle in the shape of a buddha"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a white fox."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, pier, stairway", "color, white, fox"], "captions_pred_pc": ["above a black and white illustration of an open door", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "f1b557775310478893242180defa4d80"], "properties": ["broom, shovel, fireplace", "shack, roof, door"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, and material", "a, color, red"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, hill, forest", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["21639082215b4b179d574d2408124838", "e694d53545d449319a64cceb0280c3c6"], "properties": ["color, room, furniture", "3d, slide, swing"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["house, tree, pool", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a house with a wooden-framed roof structure."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, head, bowl", "roof, material, wood"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a building with a roof"], "question": "which object has a roof made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof structure, truss, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large orange keg with a white lid.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "67701617472e4051b95955c596561aac"], "properties": ["color, lid, orange", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, white, material, ceramic", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white vase on a grey background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["building, roof, white, cubes", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small white building with stairs and a white table."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "e30374c614f54fdb90f35b96b071349d"], "properties": ["building, floorplan, gym", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "b494049bb15440949e465d54a72b2f02"], "properties": ["building, floor, columns", "building, floorplan, gym"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a white building with two floors"], "question": "which building has a floor plan of a gym", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, hand, flowers", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a hand", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["roof, green, lawn", "striped, white, black"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a white building with a red roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1f9580be397d4f948bf53fe1d5bc5756", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, roof, red", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or fewer a black and white drawing of a camera", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "bded33af34104b9686b845dfd18309a9"], "properties": ["table, stairs, ladder", "table, staircase, light"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c8936ace72954650b4e2d84246964849"], "properties": ["roof, room, ceiling", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a roof"], "question": "which roof is pink", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["boat, table, chairs, umbrella, solar panel", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["s of, snowboard, shoes, mask", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f1b557775310478893242180defa4d80", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["shack, roof, door", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["metal, legs, frame", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white image of a patterned rug", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, red, blue, green", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["color, grass, moss", "low poly, llama, kangaroo"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d low poly animal standing on its hind legs"], "question": "which entity is a low poly of a deer", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a white chest of drawers with legs."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a, roof, soup", "chest of drawers, legs, white"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a house with a blue roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["tiers, building, stairs", "roof, color, blue"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a house with a roof"], "question": "which building has a blue roof", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a white bunny head", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, white, head", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "92052c493bf141a08b56f30f9c5e2d61"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "light, toilet, faucet"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a white plastic toilet paper holder on a gray background"], "question": "which entity has a light?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with a wooden-framed roof structure."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, tan, brown, orange", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a staircase"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["hair, legs, wings", "door, lock, handle"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["Headstock, Guitar, Head", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an axe head", "a black and white image of a stone sculpture"], "question": "which object has a head", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["Drawer, Handle, Wood", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "a pixelated-textured purple sphere ."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, size", "texture, color, shape"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a black and white striped box."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, shape, and size", "color, black, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of a black and white striped surface"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "40921ffd69db479294554d261daf3035"], "properties": ["railings, staircase, spiral", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small triangular-shaped object."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, white, red, pink", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["lighthouse, fountain, crater", "house, tree, pool"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a white rocking chair with a curved backrest."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["Drawer, Pattern, White", "backrest, curved, yes"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["room, bed, desk", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building with many pillars"], "question": "which entity has a wooden structure", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a house with a roof and beams."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["image is rock formation with a white cliff and a rock", "roof, beams, house"], "captions_pred_pc": ["above a black and white map of spain on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a molecule with two pink and blue spheres."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "926fb2e23c56440a86287e98c1440336"], "properties": ["roof, framing, material", "color, shape, size"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of three spheres on a white background"], "question": "which entity is not a molecule?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "411c164757fc4de68dfecb35fa858223"], "properties": ["resembles, octopus, squid, spider, robot", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, fence, dog", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["texture, spikes, eyes", "low poly, llama, kangaroo"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d low poly animal standing on its hind legs"], "question": "which entity is a low poly of a deer", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, size", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" colorful cubes and balls.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["598e319509a54ddd9a7220959b2bc5a7", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, size", "throne, stairs, tree"], "captions_pred_pc": ["a black and white dots pattern on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a group of cubes and a ball", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a purple chair with holes in it."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "833151c8e0f4489a9fa966635a948452"], "properties": ["color, material, structure", "color, purple, holes"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white chair"], "question": "which entity is made of holes", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, poles", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, railing, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, bowl, cup", "water, boat, rock"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" a white rocket ship.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d model of a small building with a balcony"], "question": "which object is a house?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["room, bed, desk", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs and a ladder?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " of a black tray with three green rings on it."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color is white, material is plastic, shape is box", "color, black, rings"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d rendering of a tray with three rings on it"], "question": "which tray is black", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, pink", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["roof, truss, lamp", "plane, ship, bird"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", "a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "3f010c9478164c3db00cab997fdafa40"], "properties": ["arm, light, sign", "arm, light, sign"], "captions_pred_pc": ["above a black and white image of a skateboard", "above a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on"], "question": "which entity has a thank you sign?", "label": 0}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["graffiti, wall, wheelbarrow", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small house with a red roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["085db9059b744673b5623b5338e02196", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, red, house", "house, roof, wooden"], "captions_pred_pc": ["a black and white dotted square on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "7407a108e0354925b83b750339bc03df"], "properties": ["color, sphere, molecule", "platform, color, orange"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the same color as the toys?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["boxing gloves, heart, hand", "hat, color, tan"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, roof, wooden", "roof, air conditioner, house"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a soldier with outstretched arms"], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4982a7018e6f4503b5708c714b733ab4"], "properties": ["color, shape, and size", "arms, outstretched, soldier"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a bird's wing"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a soldier with his arms outstretched royalty-free 3d model preview"], "question": "which entity is a human?", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["load, crates, snow", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["color, white, containers", "3D, toothpick, skateboard"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a white toothbrush on a gray background"], "question": "which entity is not a logo?", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["size, material, color", "striped, white, black"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a stack of books"], "question": "which object is made of white and black stripes", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small white house with a roof."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, plane, room", "roof, color, white"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a17477b445b3443189dad22f768b888b"], "properties": ["chair, table, refrigerator", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["building, stairs, shelves", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a staircase in a room"], "question": "which staircase has a railing", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["s, plane, house", "table, stairs, ladder"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small, snow-covered house."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["floor plan, heating system, ceiling light fixture", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a potted christmas pine tree."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["ruined building, stone floor, small stone structure", "a, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a wooden billiard table with legs."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is wood - color is white - height is 1.8 m", "legs, material, wood"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a black and white image of a pool table"], "question": "which is not made of wood", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, style, pixel", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, pink, eyes", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small trailer and a white box.", " a black and white striped box."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["box, trailer, white", "color, black, white"], "captions_pred_pc": ["a black and white image of a cell phone", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d image of a black and white striped surface"], "question": "which box is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "3d lego model of the white house with a garden and tennis racket."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "349d70e3f3d24c72ad05d5ceeee291b6"], "properties": ["house, yard, surrounding buildings", "a, model, white house"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white photo of a person sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of the white house royalty free 3d model"], "question": "which entity is a model of a house?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small wooden house."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, purple, suspended", "house, material, wood"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a spiral staircase with a railing in a small building."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["roof, stairs, house", "staircase, railing, building"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["low poly, llama, kangaroo", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["roof truss, insulation, suspended ceiling", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "c3a82df41875402285608ef13a55df57"], "properties": ["building, fence, snowy", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, gazebo, table", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " of a white wall-mounted light switch, electrical outlet, and various furniture pieces."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "b195bf7ba6094e1b812e4312deeeb360"], "properties": ["light switch, electrical outlet, furniture", "light switch, electrical outlet, furniture"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d rendering of a room with a white background"], "question": "which entity has a light switch", "label": 0}, {"captions": [" a house featuring a green roof and red frame.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, roof, green, frame, red", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["load, crates, snow", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["screen, monitor, stand", "a room, a cake, a table"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["low poly of a christmas tree", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["low poly, christmas, tree", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a small, round object", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["painting, door, wall", "building, plane, room"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": ["white sphere", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white sphere on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "c3a82df41875402285608ef13a55df57"], "properties": ["low poly, plant, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small house on a hill in a field."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, air conditioner, house", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "a17477b445b3443189dad22f768b888b"], "properties": ["color, yellow, black", "roof, pillar, stairs"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["a train, a ship, a boat", "building, plane, city"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small white house with a staircase and a window."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "9eb88d17310d42dda9e17883e9922525"], "properties": ["bird, nest, wood", "house, staircase, window"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a potted christmas pine tree."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["building, door, clock", "a, color, green"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["color, roof, tray", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white image of a metal object", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which building has a purple roof?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["house, lake, pool", "hat, pants, shirt"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " of a large axe with a cross on top."], "sample_ids": ["adec10493e06436c967d5797f7085225", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, material, shape", "axe, cross, top"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for an axe on a white background"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a clay pot with holes in it."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small house with a pond and situated on a rock."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "92859eb82a344134806b37cc209927c6"], "properties": ["building, roof, white, cubes", "house, rock, pond"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" of a small red renault clio car.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color is red, make is renault, model is clio", "house, fence, playground"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, roof, green", "house, roof, wooden"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "red heart-shaped object."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is plastic- color is white- shape is cube", "shape, heart, red"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, temperature, england", "table, staircase, light"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["a, color, white", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a black and white photograph of a birdhouse"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["roof truss, insulation, suspended ceiling", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d printed green robot with two arms and two legs.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["04e3e8ce541e487b9e342570fe1b4eb2", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is green, material is 3d printed, number of limbs is 2", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a robot in the shape of a snowflake", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic robot standing on its hind legs", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["size, color, shape", "hat, color, tan"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of an object with a hole in it"], "question": "which entity is a hat?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "12093c89a60941e7884b252bdc05104c"], "properties": ["floor, staircase, railings", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a room, a cake, a table", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d rendering of a piece of marble"], "question": "which object has a board?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["fireplace, bench, log", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, black, shade, black", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a house with a wooden-framed roof structure."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, skyline, buildings", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["roof, ceiling, hole", "color, shape, color"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small house with stairs and a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["roof, structure, truss", "roof, stairs, house"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large rock with a hole in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "c3a82df41875402285608ef13a55df57"], "properties": ["size, shape, material", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white drawing of a bird's wing"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", "star wars stormtrooper "], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof structure, truss, ceiling", "a, color, white"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["white of a rhino head with horns.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["image, rhino, head", "hat, skull, bread"], "captions_pred_pc": ["of a penguin skull in black and white", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "a black and white image of a stone sculpture"], "question": "which image shows a skull with a blue hat?", "label": 1}, {"captions": [" a small building with windows and a roof.", " of two rocks with ice elements."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, windows, building", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "star wars stormtrooper "], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "a, color, white"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small, snow-covered house."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["structure, roof, pitch", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["resembles, toy, bookshelf", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked planes", "label": 1}, {"captions": [" of a machine gun.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["gun, barrel, caliber", "a room, a cake, a table"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, shirt, pants", "cloak, sword, spear"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a wooden billiard table with legs."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, material, shape", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["two-story, roof, building", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a table and chairs on a white background"], "question": "which building has a roof that is the color yellow", "label": 1}, {"captions": ["white sphere", " a white castle composed of small cubes."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, hill, deer", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["arm, light, sign", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a large metal building with a roof and truss structure."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "b85a99699ccd4bcba213322113bb253d"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, truss, structure"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, door, window", "door, roof, pool"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, shape, gun", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small white archway structure resembling a building."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "5ad02458cf394134a902e25001d2ffef"], "properties": ["house, rock, pond", "structure, building, archway"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of a white object on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a house with a green, wooden-structured roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, text", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small wooden house."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["floor, table, light", "house, material, wood"], "captions_pred_pc": ["above a black and white photograph of a window", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "cafc467aff2643e8b70149c4944263ee"], "properties": ["wing, silver, white", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "a black umbrella on a white background"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, floorplan, gym", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "c4e45a41478e42418399074b88d8920f"], "properties": ["size, material, lighthouse", "axe, handle, wood"], "captions_pred_pc": ["a black and white photo of a water droplet", "for a black and white image of a bird's wing"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a blue ford escort car."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "fa3da8623db242c082e2915b12873186"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, blue, ford escort"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a black leather bracelet on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a classic car royalty free 3d model preview no 2"], "question": "which is not a car", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "d49d8ed244094349a99e4faca05e0690"], "properties": ["building, balcony, street", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["yellow, table, roof", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a house with a roof and beams."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, tree, rock", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["giraffe, bench, flower", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, truss, lamp", "roof, trusses, beams"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a roof structure"], "question": "which entity has a roof with trusses and beams?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a large metal building with a roof and truss structure."], "sample_ids": ["21639082215b4b179d574d2408124838", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, room, furniture", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "a095621f2d5845af83db3f59f5685982"], "properties": ["- material is plastic- color is green- shape is box", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a black and white striped box."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["shape is hot dog, design is dragon, color is black", "color, black, white"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["a box, a cup, a bottle, a jar", "table, structure, roof"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "12093c89a60941e7884b252bdc05104c"], "properties": ["wall, stairs, castle", "giraffe, bench, flower"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a white of a man with arms outstretched."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["runner, bed, bench", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, green, tiled", "house, rock, bird"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "97f487941d26472294e005fa97c403be"], "properties": ["color, shape, and size", "color, white, green"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["s, boat, bird, airplane, kite", "house, rock, bird"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, gun", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["frame, beams, trusses", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a red roof.", " a small house with stairs and a roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["roof, red, house", "roof, stairs, house"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["backrest, heart, wooden", "house, pool, balcony"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small house on a hill in a field."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, yellow, chimney", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " of two rocks with ice elements."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["flag, stand, color", "image is a rock with ice elements"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["- color is white- shape is flower- pattern is lace", "hat, color, tan"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of an object with a hole in it"], "question": "which is not a hat", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, gazebo, table", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" of a transparent blue cube.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, transparency", "a, material, clay"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["an empty white box on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " an old lantern with moss on it."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "62925f26fd624310bd6b31136fe8e706"], "properties": ["text, material, shape", "moss, lantern, old"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a black and white image of an old lantern"], "question": "which object is more likely to have moss on it", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, roof, wall", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["rocky, rug, puddle", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d rendering of a house on a rock"], "question": "which island has a bird on a rock?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, texture", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a small white table with a chair"], "question": "which entity is a table", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a building with a metal and wooden pole structure."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, shape, poles", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure has poles made of metal and wooden material?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a large metal building with a roof and truss structure."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["chair, table, refrigerator", "ceiling, light, desks"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "a17477b445b3443189dad22f768b888b"], "properties": ["a, city, train", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["white dragon with wings, .", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["wings, white, dragon", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is not a dragon?", "label": 0}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a building with yellow lines."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, shape, text", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small white box with a shelf and a hole in it."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["a, hole, shelf", "a, hole, shelf"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a white box on a gray background"], "question": "which box has a hole in it?", "label": 0}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a small white building with stairs and a white table."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a, model, white house", "building, stairs, table"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a, bird, lake", "costume, color, black"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "ceee98c20f23424195da092156905ec4"], "properties": ["color, tan, brown, orange", "face, handle, spout"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a small, circular object"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a white ceramic vase with a face on it"], "question": "which entity has a face", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a white of a man with arms outstretched."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, trusses, beams", "roof, metal, white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a white and blue building with a black roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "c893118316ee43e18322e5964b2806c5"], "properties": ["building, roof, balcony", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a roof that is black?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["floor plan, ceiling light, color", "roof, trusses, beams"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "06a1c233fb444830b577aa06e2c01294"], "properties": ["wall, stairs, castle", "house, tree, hill"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a black and white image of a house in the middle of a field"], "question": "which entity has a village on a hill?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["broom, shovel, fireplace", "broom, shovel, fireplace"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace with a broom", "label": 0}, {"captions": [" of a large gray sphere", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["size, color, shape", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, shape, and material", "hippo, hind, legs"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, yellow, black", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white illustration of an airplane", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a sculpture on top of a pedestal"], "question": "which object has a pedestal?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, shape, and size", "roof, structure, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, black, white", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of two rocks with ice elements."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, roof, tray", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["house, rock, pond", "bed, desk, window"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["graffiti, wall, wheelbarrow", "hat, dress, racket"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["building, material, steel", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" of a tv stand/shelf", " of a wildebeest with horns, royalty-free."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["size, material, color", "image size, image, royalty"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d model of a wildebeest"], "question": "which entity is a royalty-free image?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a large house with a roof on a platform."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "cb3e09a301b746918a682a595037c7f7"], "properties": ["buildings, houses, grass", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["Drawer, Pattern, White", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["building, fence, snowy", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, containers", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a white human skull with broken bone elements."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "color, white, skull"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a human skull in white"], "question": "which entity is a skull?", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", "a low poly of a tree with red apples and a green cactus with red dots."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "fd7765e391cd49ccbc72891d90850cdb"], "properties": ["color, red, apples, tree, cactus, dots", "color, red, apples, tree, cactus, dots"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a group of geometric shapes"], "question": "which entity has red apples?", "label": 0}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["44723e86bdd14071b0544745879604de", "c3a82df41875402285608ef13a55df57"], "properties": ["resembles, bar, soap", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["yellow, table, roof", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["s of an octopus, squid, dog, and girl, accompanied by drawings of a frog, bird, and jellyfish, as well as a logo and t-shirt design for callum jelephant.", "star wars stormtrooper "], "sample_ids": ["13591ac0e4ea45749c29f5471eb0ab22", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["s, squid, dog, girl, frog, bird, jellyfish, logo, t-shirt design, callum jelephant", "a, color, white"], "captions_pred_pc": ["for the elephant is drawn in black ink on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a frog with the words 'it's a frog'", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large steel building with a pool."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["frame, roof, trusses", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small white box with a shelf and a hole in it."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["a, bowl, cup", "a, hole, shelf"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a white box on a gray background"], "question": "which object has a hole in it?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, box, wall", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a flower", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "745fed115c5343dab9d7f0c389c98902"], "properties": ["hat, cup, bowl", "costume, color, black"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a white and yellow sword with a yellow handle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["776a9df9cead4b70b3480ef9fecadaea", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, handle, blade", "a, material, clay"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a small white building with stairs and a lid."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, tree, rock", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a white box on a gray background"], "question": "which building has stairs?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["water, river, island", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": ["a grayscale of a mountain.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, grayscale, mountain", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " a wooden billiard table with legs."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["glass, metal, balls", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a wine glass", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a clear acrylic foosball table", "a black and white image of a pool table"], "question": "which table has legs made of wood", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "a white glass beer mug."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, base, slanted", "color, white, glass"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, structure, truss", "roof, color, yellow"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, white, railing, black", "house, fence, dog"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "a white of a woman with her arms outstretched."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["hair, legs, wings", "image, color, white"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a woman with her arms outstretched"], "question": "which image is of a woman with her arms outstretched?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with wooden framing and trusses."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["floor plan, heating system, ceiling light fixture", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house under construction"], "question": "which house has a wooden frame", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["case, player, football", "island, terrain, water"], "captions_pred_pc": ["of a black and white image of a pair of boots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a white bunny head"], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "260dfca84cc64848a6ea0fb74e0f4c92"], "properties": ["color, table, ceiling", "color, white, head"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a microscopic image of a cell"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d white bunny head on a gray background"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "e34088fc7b5344c4ab29fef067750225"], "properties": ["image, color, pink", "sphere, pedestal, statue"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a sculpture on top of a pedestal"], "question": "which image has a statue on a pedestal?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a small wooden house with a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, lake, pool", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a large orange keg with a white lid."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["color, material, shape", "color, lid, orange"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a gray keg with a white lid sits on top of a gray surface"], "question": "which object is made of plastic", "label": 0}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a black and green sphere with blue lights."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "de9edcb24820415da05370c37bb908c3"], "properties": ["color, shape, and size", "color, shape, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white map of a city with dots on it royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of the sun in the sky"], "question": "which object is black and green?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a white glass beer mug."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a knife, blade, handle", "color, white, glass"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "09f2cf267e954c958828325067bcc36a"], "properties": ["Arms, Legs, Color", "island, terrain, rocks"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " a small wooden house with a green roof."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["s, cat, fish, person, pig, bird", "roof, color, green"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["striped, white, black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "c3a82df41875402285608ef13a55df57"], "properties": ["a, handle, orange, rake, knife", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, plane, sky", "hat, candy, strawberry"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " of a character wearing glasses and a hat."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["text, material, shape", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " of two rocks with ice elements."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, hand, flowers", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image is more like a rock with ice elements", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, table, blocks", "house, tree, hill"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["moss, mushroom, grass", "room, furniture, window"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a small purple plastic chair with holes."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["shape is cube, material is wood, color is white", "color, plastic, purple"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["throne, chair, building", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a building on top of a table", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a piece of paper with writing on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["57950d2e2e254d9c8d9631cedd584adf", "bf18bfd89efd43389781050230467d58"], "properties": ["paper, writing, piece", "Lights, number, five"], "captions_pred_pc": ["a close-up view of the back of a tablet on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a piece of torn paper on a white background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a 3d low poly model of an orange with a green leaf and stem.", " a clay pot with holes in it."], "sample_ids": ["cdd918943a124d3f94859d9f67ab8e3e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["3d, low, poly", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape with dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane flying in the air", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and yellow striped fish.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c534e37656024a9fba79be2c4386d626", "c3a82df41875402285608ef13a55df57"], "properties": ["color, stripe, blue, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a fish", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a black gun.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, black, gun", "color, green, squirt gun"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which is a toy", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "40921ffd69db479294554d261daf3035"], "properties": ["bed, desk, window", "floor, railing, staircase"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, grass, moss", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["windmills, silhouette, city model", "house, staircase, table"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a white of a woman with her arms outstretched."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["desk, chair, table", "image, color, white"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small wooden house with a green roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["bedroom, bathroom, bed", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, umbrella, coat", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a small silver camera with a lens."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "62829a25b4634d63a2ba2b0220335b3e"], "properties": ["screen, lens, color", "lens, silver, camera"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white drawing of a toothbrush on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which camera has a silver lens", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of two rocks with ice elements."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["lighthouse, fountain, crater", "image is a rock with ice elements"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is metal - weight is 0 - height is 0", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a wooden shed with a gray roof."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "roof, color, gray"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a large house with a roof on a platform."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "cb3e09a301b746918a682a595037c7f7"], "properties": ["structure, columns, roof", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a small house"], "question": "which entity has a roof on a platform?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["boxing gloves, heart, hand", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["load, crates, snow", "throne, stairs, tree"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["color, white, containers", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a red roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "085db9059b744673b5623b5338e02196"], "properties": ["roof, room, ceiling", "roof, red, house"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is white- shape is flower- pattern is lace", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a building with blue metal framing and structure."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["blue, lid, handle", "color, blue, structure"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a building under construction"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "s of an octopus, squid, dog, and girl, accompanied by drawings of a frog, bird, and jellyfish, as well as a logo and t-shirt design for callum jelephant."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "13591ac0e4ea45749c29f5471eb0ab22"], "properties": ["houses, trees, road", "s, squid, dog, girl, frog, bird, jellyfish, logo, t-shirt design, callum jelephant"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for the elephant is drawn in black ink on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a frog with the words 'it's a frog'"], "question": "which entity has a squid", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["resembles, toy, bookshelf", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has pink flowers", "label": 1}, {"captions": [" a brick wall with grass.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["brick, grass, wall", "books, paper, lamp"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a black and white photograph of a toilet paper holder"], "question": "which object is not a pile of paper?", "label": 1}, {"captions": [" a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["120bf1525e8649d9bdf3a593fe8f5ddc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["resembles, sculpture, rock", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a piece of paper with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a bag with a zipper on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, color, purple", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " of a white human skull with broken bone elements."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, pattern, material", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a house with a pink roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, roof, pink", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is plastic- shape is dice- color is white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["location, field, gravestone", "cup, bottle, chessboard"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is on a chessboard?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "d49d8ed244094349a99e4faca05e0690"], "properties": ["two-story, roof, building", "low poly, plant, white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["mannequin, scarf, color", "house, pool, balcony"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a white tiled floor with a ceiling light and small holes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9906caefe141465990aacb312e1025f0"], "properties": ["color, shape, and size", "light, floor, ceiling"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white tile floor"], "question": "which entity is a floor?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a white plastic tube or metal bar, resembling a knife."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "8fd3836862a44a8d8b4d224bfc30c2c3"], "properties": ["a knife, blade, handle", "a knife, blade, handle"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a shelf with a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a piece of white plastic on a gray background"], "question": "which entity has a blade?", "label": 0}, {"captions": [" a building with blue metal framing and structure.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, blue, structure", "house, tree, hill"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "18e392c5360146eda498c5edab25b15c"], "properties": ["house, staircase, window", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a building under construction"], "question": "which structure has a frame", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["b5afccae993346079483507296fbb029", "da8b5d21da9b4037982f29383d60b100"], "properties": ["shape is square, material is metal, color is rusty", "resembles, toy, castle"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " of a wine corkscrew"], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a, handle, orange, rake, knife", "box, handle, gun"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["house, fence, dog", "color, shape, color"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, purple, suspended", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss?", "label": 1}, {"captions": [" of a spider-man mask and head.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a, head, mask", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, green, lawn", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["cc4ccf85d4c1425cb5975b8b5664d38a", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["paper, hole, sign", "paper, hole, sign"], "captions_pred_pc": ["a silhouette of a map of the state of karnataka, india on a white background royalty free illustration", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["an image of a torn piece of paper in the shape of a map", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 0}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["earbuds, light, ring", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a white of a woman with her arms outstretched."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["black, white, coffee table", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small building with windows and a roof.", " a small building with windows and a roof."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, windows, building", "roof, windows, building"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 0}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a 3d white cube with windows resembling a building."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color is white, yellow, plastic", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, light, jewels", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a spiral staircase with a railing in a small building."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, white, black, white", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of a wine corkscrew"], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["nut, bowl, ring", "a, type, corkscrew"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a white human skull with broken bone elements.", " of a white human skull with broken bone elements."], "sample_ids": ["6ca0f91b85464d7a845b3977351dd0b5", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, skull", "color, white, skull"], "captions_pred_pc": ["a black and white image of a cat's x-ray", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a human skull in white", "a 3d model of a human skull in white"], "question": "which entity is a white human skull with broken bone elements?", "label": 0}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a white chest of drawers with legs."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a white dresser"], "question": "which object is white", "label": 1}, {"captions": [" a small wooden log cabin.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["size, material, log", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, table, ceiling", "structure, roof, pitch"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof truss, insulation, suspended ceiling", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, shape, material", "frame, screen, color"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["size, color, design", "metal, rusted, paper"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a yellow roof and chimney."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["color, roof, tray", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["red, sphere, resembles", "flower, color, pink"], "captions_pred_pc": ["a black and white image of an object on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has flowers that are the color pink?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, green, handle", "roof, material, wood"], "captions_pred_pc": ["of a small black object on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a large house/building structure with a roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["roof, room, ceiling", "roof, structure, house"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a large white structure"], "question": "which structure has a roof", "label": 1}, {"captions": ["a 3d cartoon cat model wearing a blue outfit.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["0d8373961c804794a74971b946ebad8d", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, outfit, cat", "a, outfit, green"], "captions_pred_pc": ["a 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a cat wearing a jacket", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "46903bf029934b1989bc062dcb0a5531"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white drawing of a cross", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["a, booth, bed", "lion, statue, fountain"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d image of a lion statue on a wall"], "question": "which entity has a lion statue", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- color is white- shape is flower- pattern is lace", "box, handle, gun"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white square with dots on a white background"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of a human bone", " a house with a wooden-framed roof structure."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a large rock or stone.", " of a wooden tv stand with two drawers and handles."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "6409380e790442e6a5733eb447d4c510"], "properties": ["boulder size, color, shape", "Drawer, Handle, Wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white drawing of a line of dots on a white background"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d rendering of a wooden entertainment center"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small building with windows and a roof."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, color, white", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["graffiti, bench, wall", "color is white, yellow, plastic"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d cartoon cat model wearing a blue outfit.", "a 3d white cube with windows resembling a building."], "sample_ids": ["0d8373961c804794a74971b946ebad8d", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, outfit, cat", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a cat wearing a jacket", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " a white sofa, chair, and box."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "4c59733ebd634594a921b7ace60e4142"], "properties": ["lizard, rock, stuffed animal", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": ["a 3d object set featuring a can of tortilla chips, broken vase, can of biscuits, broken bottle, jar of cookies, cracker, shell, and a cup.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["84c9e5500ade41e7b802a3b756519ee3", "b896a0898efe4059a776193c02132129"], "properties": ["Object, Set, Contains", "- material is stone, metal, concrete"], "captions_pred_pc": ["a 3d illustration of a skull on a white background 3d illustration of a skull on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of whipped cream on a white background 3d model of a can of", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "18e392c5360146eda498c5edab25b15c"], "properties": ["hat, sword, gun", "frame, beams, trusses"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "832a022cdcc74763b0571e04af4e592b"], "properties": ["resembles, toy, bookshelf", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, model, white house", "house, fence, playground"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white building with stairs and shelves."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, roof, tray", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, blue, components", "cover, black, plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "7f8942ef51dd4246993a587a12df168c"], "properties": ["holder, spring, box", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a spider-like creature with long arms and legs."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["table, bench, deer", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["d6087023095446fbadef1721478373b2", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["door, roof, window", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a bookshelf on a white background"], "question": "which building has a white roof?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "a2354f13774340d392fbf33564934aab"], "properties": ["house, rock, pond", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d pixelated minecraft model of a small city with buildings, trees, and a village.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["36fedf68eee24461886fb8d4a38eea00", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["pixelated, model, village", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a snowflake in the shape of a virus 3d illustration a black and white illustration of a snowflake in the shape of a virus royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a futuristic city", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a ring featuring a green and blue stone."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "de3a0907767b4ba6b7ccf99c45ccc0e5"], "properties": ["color, shape, material", "color, stone, green, blue"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a circle of black dots on a white background"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d rendered image of a ring with a bee on it"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, white, material, ceramic", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of two spheres"], "captions_pred_image": ["a white vase on a grey background", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a spiral staircase with railings."], "sample_ids": ["b5afccae993346079483507296fbb029", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["shape is square, material is metal, color is rusty", "railings, staircase, spiral"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a spiral staircase with railings."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["a, island, water", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a small island with a mountain, a lake in the middle, and a bird flying above."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e51fead89ae64968b2ca7f4ccb6d3b97"], "properties": ["color, shape, and size", "a, bird, lake"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photograph of a cloudy sky"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a mountain range in black and white"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, shape, light", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "be1376023c274bdda995d54f3694157f"], "properties": ["color, orange, leather", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a house with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden shelf featuring a laptop, sand dune, and ceiling with holes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6192773417e04fa49d2bf8b9eed20640", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["image is a shelf, laptop, sand dune", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a person sitting on a bench", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a city skyline", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 0}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a white of a spaceship and building."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a 3d golden gun.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7034d366fe4a4debbb4deadce02801c6", "b896a0898efe4059a776193c02132129"], "properties": ["3D, color, golden", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a key", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a ray gun royalty free 3d model preview", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a green skull and sphere.", " a house with a roof and beams."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, skull, sphere", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is stone - shape is bat", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a white castle composed of small cubes."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, shape", "composed of, white, cubes"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of cubes", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["staircase, railing, building", "throne, chair, building"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a potted plant on a wooden table or shelf."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["color, bench, rack", "potted plant, table, shelf"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, handle, zipper", "house, fence, playground"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["resembles, toy, bookshelf", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a building in the shape of a pyramid"], "question": "which entity is a building?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "73e7107ff3634516846bccad04c5dc87"], "properties": ["blue, curved, resembles", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 0}, {"captions": [" a white arrowhead-shaped rock.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["shape, color, material", "cover, black, plastic"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "7f8942ef51dd4246993a587a12df168c"], "properties": ["hat, food, bowl", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" of a large gray sphere", " of a hammer with a long metal handle."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["size, color, shape", "handle, metal, long"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, plane, town", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["rusty, sink, graffiti", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d image of a room with a person in it"], "question": "which room has furniture that is damaged?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "703dce44052e48cfb024bceb08141554"], "properties": ["s, stick, leaf", "roof, beams, frames"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a boat"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a wooden structure"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a group of people standing together in a line."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "96c9da7f3c2d4f4b90485f899ec5d605"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "group, people, line"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a group of people walking in a line on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a group of people standing next to each other"], "question": "which entity is a group of people?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["ceiling, beams, light", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "bf18bfd89efd43389781050230467d58"], "properties": ["wall, stairs, castle", "Lights, number, five"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, fence, playground", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a room with a lot of wires"], "question": "which entity has a tennis court?", "label": 0}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small house on a hill in a field."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["a room, a cake, a table", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black and white image of a small house"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["building, floor, columns", "table, bench, deer"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small building with windows and a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, roof, tray", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, white, pink, eyes", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a bear's head", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, dress, flower", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs and a ladder?", "label": 1}, {"captions": [" a small house with a red roof.", " a small house with a tree and a rock."], "sample_ids": ["085db9059b744673b5623b5338e02196", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["roof, red, house", "house, tree, rock"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, stairs, house", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small building with a balcony"], "question": "which house has a pillar?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a room, a cake, a table", "costume, color, black"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "e602ac60041f4b4f84c044161e478781"], "properties": ["face, handle, spout", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a green mountain with trees and grass."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["red, eyes, rocket", "mountain, grass, tree"], "captions_pred_pc": ["of a black and white image of a clock", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, structure, wall", "house, lake, pool"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", "a white of a woman with her arms outstretched."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["design, poles, table", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", " a house with a wooden-framed roof structure."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, bench, door", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a 3d model of a building with a roof"], "question": "which entity has a door", "label": 1}, {"captions": ["a black rock with writing on it.", " a small white house with windows and a black lid."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, black, writing", "white, windows, lid"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "above a black and white image of dots on a white background"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a white house with three windows"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["yellow, table, roof", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof", "label": 0}, {"captions": [" of a chessboard on a beige ceiling tile.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["beige, tile, chessboard", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a leopard print banner", "for a black and white image of an object on a white background"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["lizard, rock, stuffed animal", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "97e000ff41094665afd94ea565da8b13"], "properties": ["hat, pants, shirt", "roof, material, wood"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, tan, brown, orange", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white map of the state of new york"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a house with a roof and beams."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, roof, wooden", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "18e392c5360146eda498c5edab25b15c"], "properties": ["cylinder, marble, pillar", "frame, beams, trusses"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "4e82177059204292899fa7415164a05e"], "properties": ["house, tree, pool", "yellow, tires, load"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small orange piano with legs."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "d793de7c08d74414beeb8ea50f730705"], "properties": ["arm, light, sign", "color is orange, size is small, legs"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, head, body", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["background, color, white", "houses, trees, road"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["- material is plastic- color is white- shape is cylinder", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a house"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a house with a balcony"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, yellow", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, background, gray", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white photograph of an object", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, skyline, buildings", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["building, fence, snowy", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a house with a wooden-framed roof structure."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["hill, field, castle", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, furniture, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["metal, roof, chest", "roof structure, truss, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a wooden truss?", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a large building with a roof and windows."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "32d1fbd3ee91426882290305f70021e6"], "properties": ["screen, keyboard, box", "roof, windows, building"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a wooden shed with a gray roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a house with a roof and beams."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, size", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a machine gun.", " a small wooden house with a green roof."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["gun, barrel, caliber", "roof, color, green"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a small wooden house with a green roof."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, pattern, wall", "roof, color, green"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["location, field, gravestone", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, size", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a2354f13774340d392fbf33564934aab"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["two-story, roof, building", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which building has a roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, lake, pool", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a large building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "97e000ff41094665afd94ea565da8b13"], "properties": ["Object, Table, Oranges", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "e098706085a44898abbd549693d12a64"], "properties": ["color, shape, size", "color is black, white, orange"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which is smaller", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a purple and yellow pixelated ethereum logo in pixel art style."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bcf111e592d64b6490003680cae9407f"], "properties": ["color, shape, and size", "color, style, pixel"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "an image of an electronic device with the letter 'z' on it"], "question": "which entity is a pixelated logo?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, blue, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "f1b557775310478893242180defa4d80"], "properties": ["roof, house, small", "shack, roof, door"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["s, cat, fish, person, pig, bird", "hat, skull, bread"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color is white, material is plastic, shape is bottle", "blue, curved, resembles"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " of a hammer with a long metal handle."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, green, handle", "handle, metal, long"], "captions_pred_pc": ["of a small black object on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a hammer with a wooden handle and metal head"], "question": "which object has a handle", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, blue", "roof, material, wood"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a wooden shed with a gray roof."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["- color is white - shape is box - material is plastic", "roof, color, gray"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a wooden roof structure with a pink roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["water, river, island", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a white castle composed of small cubes."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, background, gray", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, text", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a large orange pumpkin."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["screen, keyboard, box", "orange, large, pumpkin"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, room, ceiling", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, wheel, helmet", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a small table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a small wooden house.", " a large steel building with a pool."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, material, wood", "building material, pool, steel"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small cottage", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["plane, ship, bird", "plane, ship, bird"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 0}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["earbuds, light, ring", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["ruined building, stone floor, small stone structure", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building with a metal and wooden pole structure."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, table, ceiling", "structure, material, pole"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "06a1c233fb444830b577aa06e2c01294"], "properties": ["cover, black, plastic", "house, tree, hill"], "captions_pred_pc": ["of a black and white image of a skateboard", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a victor calculator on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, color, pink", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["Brown, metal, lock", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a square with dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a large steel building with a pool."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, floor, columns", "building material, pool, steel"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a white purse with a strap."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "dae133bae5cb4496b956f03e1fb7e402"], "properties": ["color, shape, material", "color, white, strap"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a watch with dots on it"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a white purse with a strap"], "question": "which object is white", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["lighthouse, fountain, crater", "floor, stairs, bathroom"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a wooden roof structure with a pink roof."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["earbud, earpiece, earpiece", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white image of a metal grate"], "captions_pred_image": ["a white object on a grey background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "c3a82df41875402285608ef13a55df57"], "properties": ["building, plane, city", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a city in black and white", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, dragon, cloth", "moss, mushroom, grass"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a large metal building with a roof and truss structure."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small white building with stairs and shelves."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "9e1f64d4fd514059be934077717536dc"], "properties": ["building, fence, snowy", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a white 3d model of a building with stairs"], "question": "which building has shelves", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof trusses, beams, suspended ceiling", "roof, ceiling, hole"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, white, pen, logo", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a white toothbrush on a gray background", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, gazebo, table", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a lamp, a syringe, a light pole", "island, mountain, grass"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a tree and a rock.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["house, tree, rock", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["yellow, shape, wingspan", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small white house with a roof."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["Drawer, Handle, Wood", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, table, ceiling", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "c8936ace72954650b4e2d84246964849"], "properties": ["image, color, pink", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a house with a roof"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" a mountainous landmass, resembling a small island or state like kentucky or wyoming.", "star wars stormtrooper "], "sample_ids": ["8ca9b999b69c4965bd9eb4445d605bf2", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["mountainous, landmass, state", "a, color, white"], "captions_pred_pc": ["a black and white map of the state of new york", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a piece of paper", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, pink, green, cord, white", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of the roof of a building"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, wall, color", "a, building, roof"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": [" tall grass, plants, rocks, and a tree.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["eefed882ed5f4711bc5a76332d9712f3", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["grass, plants, rocks", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a group of trees", "a 3d model of a group of trees"], "question": "which entity has tall grass", "label": 0}, {"captions": [" of a bow and arrow set", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["arrows, bow, set", "a room, a cake, a table"], "captions_pred_pc": ["for a black and white illustration of a bee", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a purple and green sphere.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, size", "color, sphere, molecule"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["windmills, silhouette, city model", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, white, holes", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a white bench with a shelf on top", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["frame, beams, trusses", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["floor plan, ceiling light, color", "moss, mushroom, grass"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, color, yellow", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": [" of a black table, road with white lines, and rectangular ceiling panel.", " of two rocks with ice elements."], "sample_ids": ["bdc9b72d13604f5a8c7bd6ace2ca3177", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["black, road, panel", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of an empty road", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["apse, roof, floor plan", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a room", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a gray background featuring a white arrow, black arrow, and white and black lines in the middle.", " of two rocks with ice elements."], "sample_ids": ["b96714473acd40f888d4d005c48b10dc", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, arrow, background", "image is a rock with ice elements"], "captions_pred_pc": ["a person holding a toothbrush in the shape of a toothbrush on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "67701617472e4051b95955c596561aac"], "properties": ["color, hand, flowers", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["ceiling, light, desks", "floor, ceiling, poles"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a building with multiple levels"], "question": "which entity has a wooden floor?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a sword with a wooden handle."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["color, shape, text", "handle, material, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a knife on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a black and white image of a sword"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a toy motorcycle, car, and robot on an orange platform.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["7407a108e0354925b83b750339bc03df", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["platform, color, orange", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a bicycle", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a motorcycle on a pedestal", "a 3d model of a concrete wall"], "question": "which object is made of concrete", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, skyline, buildings", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small, snow-covered house."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["building, balcony, street", "house, snow, cover"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a white glass beer mug."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, texture", "color, white, glass"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a glass pitcher"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a white human skull with broken bone elements."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["shape is sphere, color is white, material is plastic", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a human skull in white"], "question": "which entity is whiter", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " a house with a roof and beams."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a wooden roof structure with a pink roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, table, chair", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a white building with a red roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, grass, moss", "color, white, roof, red"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a blue and white bird.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, shape, size", "shape is cube, color is black, white"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "above a black and white photograph of a sculpture"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a black and white 3d model of a building"], "question": "which entity is larger", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, staircase, table", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a green skull and sphere.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, skull, sphere", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, screen, drawer", "low poly, plant, white"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, structure, truss", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of the roof of a building"], "question": "which roof has trusses", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, box, wall", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, house, small", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["747110c073314ee39ef2f4a8d63222da", "747110c073314ee39ef2f4a8d63222da"], "properties": ["s, laptop, printer", "s, laptop, printer"], "captions_pred_pc": ["a black and white image of a pair of scissors", "a black and white image of a pair of scissors"], "captions_pred_image": ["a black and white image of an electronic device", "a black and white image of an electronic device"], "question": "which entity has a laptop", "label": 0}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["roof, air conditioner, house", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a green mountain with trees and grass."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["mossy, rock, rocky", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a mountain with snow on it"], "question": "which mountain has grass and trees", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, color, yellow", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a building with multiple levels"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, shape, and material", "turrets, flags, towers"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["base material, wood, shade color, white, beige", "house, tree, hill"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["white 3d triangular object", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color is white, shape is triangular, material is plastic", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a blue roof.", " a two-story small apartment building with a roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, color, blue", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a white origami bird with silver wings."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "d9574287572c47f7a2b712cf1d919374"], "properties": ["a knife, blade, handle", "color, white, wings"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a 3d model of the human body"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", "a white of a house with a hole in the ceiling."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, toilet, robot", "image, house, ceiling"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a house with a balcony"], "question": "which image shows a hole in the ceiling?", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, pattern", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["a, color, white", "hat, pants, shirt"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a wooden roof structure with a pink roof."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a metal structure", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of the roof of a building"], "question": "which is not a roof", "label": 1}, {"captions": ["a red and pink apple.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["c99acf979dda44dea009727513247b22", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, red, pink", "image, color, white"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a black and white photograph of an apple", "a 3d printed figurine of an alien creature"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["size, color, shape", "island, terrain, water"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island with trees", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["stair, table, chair", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "c4c09479570943e2845fbd4c6a450568"], "properties": ["hat, food, bowl", "castle, island, house"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a small house on an island"], "question": "which entity has a castle on an island?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a spider-like creature with long arms and legs."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, balcony, street", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an old building", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small white house with a roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, tan, brown, orange", "roof, color, white"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["cover, torn, open", "metal, rusted, paper"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a black and white image of a torn bank note", "a black and white image of a piece of debris on the ground"], "question": "which object is more likely to have rusted metal", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small house on a hill in a field."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["lamp, harp, bowl", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a harp in a white room", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["a, bird, lake", "house, roof, green"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " of a small wooden house with two roofs."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["headboard, wall, strip", "house, roof, wooden"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a small barn"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["color, temperature, england", "hat, shirt, bearded"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a wooden-handled axe .", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["handle material is wood, head material is metal, overall length is long", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "bf18bfd89efd43389781050230467d58"], "properties": ["floor plan, bathroom, pool", "Lights, number, five"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a wooden roof structure with a pink roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, material, steel", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a house with a roof and beams."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, handle, orange, rake, knife", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "7940570f74c14baa83ebf5f50cd2a720"], "properties": ["A, a, a", "a snake, an eel, a cube, a sword, a dice, a stick, a blue ball"], "captions_pred_pc": ["a black and white illustration of a bench", "a black mascara brush on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife"], "question": "which entity has a computer monitor?", "label": 0}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["low poly, llama, kangaroo", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, text", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a house with a flat roof structure.", " a large steel building with a pool."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, flat, structure", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Arms, Legs, Color", "roof, color, yellow"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a wooden table and chair."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["backrest, curved, yes", "table, chair, wood"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a small wooden table"], "question": "which chair is made of wood", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["apse, roof, floor plan", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["axe, hammer, spoon", "Object, Tray, Tray"], "captions_pred_pc": ["of a black lace belt on a white background", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d image of a white tray with an intricate design"], "question": "which object is not a tray?", "label": 0}, {"captions": [" of a wooden table with metal legs and frame.", " of a white chest of drawers with legs."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["metal, legs, frame", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a patterned rug", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["white 3d origami bird model", " a house featuring furniture, people, a staircase, and torn-apart sections."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "85335d3349894b5884dbf6f3e7d68fcc"], "properties": ["color, white, origami", "furniture, staircase, torn-apart"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "a black and white image of a pixelated cityscape on a white background royalty free illustration"], "captions_pred_image": ["a white umbrella on a gray background", "a 3d model of a damaged room with broken furniture and debris on the floor"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, screen, drawer", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a brush", "of a spike on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a paper airplane"], "question": "which object is white?", "label": 1}, {"captions": [" a small building with a staircase in a room.", "two white spheres in a ."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "1c02212a35134545ab63ab180d629c31"], "properties": ["room, staircase, building", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d model of a white ball on a gray background"], "question": "which object is in a room?", "label": 0}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, white, pen, logo", "buildings, houses, grass"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, structure, house", "house, pool, balcony"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", " of two rocks with ice elements."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", "a white of a house with a hole in the ceiling."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, purple, beams", "image, house, ceiling"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["books, paper, lamp", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, blue, green, yellow, blue", "flower, color, pink"], "captions_pred_pc": ["a pair of sneakers on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a wooden billiard table with legs."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, light", "legs, material, wood"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of the sun in the sky", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of the letter u", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["3d superman logo in red and yellow", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the superman logo", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["hat, candy, strawberry", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white image of a shark"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a 3d white cube with windows resembling a building."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, black, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, handle, gray", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d model of a modern house"], "question": "which object has a balcony?", "label": 1}, {"captions": [" a purple and green sphere.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, size", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a black and white image of a door with a crack in it"], "question": "which entity is a door?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, floor, columns", "table, staircase, light"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["A, a, a", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small triangular-shaped object."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "2d02985030804209a26c2c53b96a06f9"], "properties": ["floor plan, bathroom, pool", "shape, triangle, small"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a small house", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white and blue building with a black roof."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, shape, height", "color, white, blue, roof, black"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building is white and blue?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "06a1c233fb444830b577aa06e2c01294"], "properties": ["- color is white- shape is cubes- number is 1", "house, tree, hill"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["ceiling, light, desks", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["screen, monitor, stand", "hat, skull, bread"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "bf18bfd89efd43389781050230467d58"], "properties": ["railing, glass, table", "Lights, number, five"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a white chandelier with five white shades"], "question": "which has more lights", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "b896a0898efe4059a776193c02132129"], "properties": ["color, line, gray", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "of a white candle in the shape of a buddha"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["white 3d tank model", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "6b745457e06840119058883b35f78f58"], "properties": ["color is white, model is 3d, name is tank", "roof, color, blue"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white image of a building with dots"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a colorful 3d paper toy hammer with a green handle and numbers on it.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["ee06311cc3d542b0aed18ccdb4e824db", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["color, shape, material", "pattern, color, shape"], "captions_pred_pc": ["of a hammer on a white background", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it", "a 3d image of a city map on a black surface"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["house, roof, wooden", "color, frame, shape"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a building structure"], "question": "which building structure is colorful?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, pier, stairway", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white illustration of an open door", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house with stairs and a roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, temperature, england", "roof, stairs, house"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a group of people standing together in a line.", " of two rocks with ice elements."], "sample_ids": ["96c9da7f3c2d4f4b90485f899ec5d605", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["group, people, line", "image is a rock with ice elements"], "captions_pred_pc": ["a group of people walking in a line on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a group of people standing next to each other", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c3a82df41875402285608ef13a55df57"], "properties": ["color, light, jewels", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, black, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, tree, pool", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, white, blue, roof, black", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d rendering of a house on a rock"], "question": "which entity is on an island?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, white, background, gray", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a white plastic container with a label on it"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a clay pot with holes in it."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["size, color, shape", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["floor plan, bathroom, pool", "building, material, rock"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of a damaged piece of furniture"], "question": "which building has more materials", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["s of, snowboard, shoes, mask", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "18e392c5360146eda498c5edab25b15c"], "properties": ["a, ball, mushroom", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "db74ee1621464be1b164be26a1af050e"], "properties": ["room, furniture, window", "window, arches, wall"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a house with a green, wooden-structured roof."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, blue, green, yellow, blue", "roof, color, green"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, size", "color, frame, shape"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a building structure"], "question": "which entity is a cube", "label": 1}, {"captions": [" a white rocket ship.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, size", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of a planet", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d model of a small table with a staircase"], "question": "which object is a table?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor plan, heating system, ceiling light fixture", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a house", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a house with wooden framing and trusses."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "frame, trusses, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, green, squirt gun", "metal, rusted, paper"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a white and yellow sword with a yellow handle.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["776a9df9cead4b70b3480ef9fecadaea", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, handle, blade", "axe, handle, wood"], "captions_pred_pc": ["a black and white image of a sword on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["ruined building, stone floor, small stone structure", "a, landscape, sand"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "a17477b445b3443189dad22f768b888b"], "properties": ["- material is wood, metal, metal", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " of two rocks with ice elements."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, hat, flower", "image is a rock with ice elements"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a black building.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, building", "roof, pillar, stairs"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a small building with a balcony"], "question": "which building has a roof", "label": 1}, {"captions": [" of a machine gun.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["gun, barrel, caliber", "hat, skull, bread"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a black and white image of a stone sculpture"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, pattern, wall", "hat, skull, bread"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, front, road", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d sculpture of an apple on a white background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small white box with a green light.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, white, light", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small building with windows and a roof."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["40921ffd69db479294554d261daf3035", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor, railing, staircase", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a computer screen", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, door, window", "roof, metal, white"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a small wooden house with a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, roof, green", "roof, house, wooden"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["texture, spikes, eyes", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a group of trees"], "question": "which entity has grass", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["Steel, Color, Yellow", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["- material is stone - shape is bat", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a black and white photograph of a toilet paper holder"], "question": "which object is made of paper", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["a lamp, a syringe, a light pole", "a train, a ship, a boat"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": ["pink light saber.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["c4c8ed95de4640fe8c0be1df68d816ba", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, pink, light", "striped, white, black"], "captions_pred_pc": ["of a black dot on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a light saber on a gray background", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "bded33af34104b9686b845dfd18309a9"], "properties": ["chair, table, refrigerator", "table, staircase, light"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small white house with a roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, skyline, buildings", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a building with a white roof"], "question": "which building is white", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "7f8942ef51dd4246993a587a12df168c"], "properties": ["s, plane, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, plane, town", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["house, table, chair", "building, color, black and white"], "captions_pred_pc": ["above a black and white photograph of an open door", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, grass, moss", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["frame, screen, color", "house, pool, balcony"], "captions_pred_pc": ["of a black and white cross on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["bird, nest, wood", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, red, blue, green", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a black and white of a knife/sword with a handle."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, pink, green, cord, white", "image, color, black and white"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a blue plastic stool."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["color, material, shape", "color, plastic, blue"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a large gray sphere", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["size, color, shape", "building, plane, room"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, light, jewels", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" of a white round table with a red accent.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["fea62a865b4e40899d95785533818329", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, red", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "for a black and white image of an object on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["background, color, white", "color, green, squirt gun"], "captions_pred_pc": ["a black line on a white background", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "b0427ff55c4346e293c1241c71d30528"], "properties": ["color, shape, material", "a, rock, nail"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d image of a rock with a screw in it"], "question": "which object is made of a rock?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a wooden shed with a gray roof."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["light source, fixture, color", "roof, color, gray"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " of a small white building with stairs and a lid."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["floor, ceiling, poles", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["building, roof, white, cubes", "books, paper, lamp"], "captions_pred_pc": ["above a black and white image of a map", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small purple plastic chair with four legs."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["a, island, resembles, hawaii", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a blue pickup truck", " a futuristic white sports racing car."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color is blue, make is ford, model is f150", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a 3d model of a futuristic sports car"], "question": "which vehicle is white", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["Drawer, Pattern, White", "striped, white, black"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a stack of books"], "question": "which object has a white and black striped pattern?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of a wooden table with two barrels."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "8bba7567253040d88973320107e48055"], "properties": ["floor, table, light", "table, barrels, wood"], "captions_pred_pc": ["above a black and white photograph of a window", "in 15 words or less a black circle on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a barrel table royalty free 3d model preview no.2"], "question": "which table is made of wood", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "7f8942ef51dd4246993a587a12df168c"], "properties": ["balcony, stairs, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["building, tree, plane", "image, building, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["castle, island, house", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small house with a blue roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["size, color, shape", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity is larger", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, black, shade, black", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["building, stairs, shelves", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, base, warning", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a spiral staircase with railings."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["building, color, white", "railings, staircase, spiral"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d rendering of a staircase in a room"], "question": "which staircase is spiral", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, yellow, black", "table, staircase, light"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, type, factory", "building, plane, room"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which building has a room?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, pink, green", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a silver vintage racing car."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "9d8a1e856251435f9596c031005520bd"], "properties": ["roof, color, pink", "color, silver, vintage"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a chair with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a vintage racing car"], "question": "which is not a vintage car", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, image, subject", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small red renault clio car.", " of a crab holding a rubik's cube."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color is red, make is renault, model is clio", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a black and white image of a crab holding a cube"], "question": "which is not a car", "label": 1}, {"captions": [" of a green pickle", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "c3a82df41875402285608ef13a55df57"], "properties": ["color is green, shape is cylinder, material is plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ddaac41b6efd4dd0b7bf8d441441555e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["railing, chair, light", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a letter 'g'", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a bench on a white background royalty free 3d model no.3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, orange, white", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small white toy cannon."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "a414258c6bf149708404913a89ab8dbc"], "properties": ["- material is wood, metal, metal", "color, white, toy"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, horns, features", "house, lake, pool"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["sandbox, sand bucket, wooden blocks", "a, material, clay"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["desk, chair, lamp", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, temperature, england", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, shape, and size", "mossy, rock, grass"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a piece of wood on a white background"], "question": "which entity is more mossy", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a clay pot with holes in it."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["liquid, ice, lid", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a green cube with white numbers 3 and 5 on it, and a black and blue dice with the number 2 on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ec245f2665754c0ca59c69f7db590fe0", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["Numbers on cube are 3, 5, and 2; Color of cube is green; Color of dice is black and blue", "box, paper clip, lock"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a black cube with the number 3 on it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a stone wall with a window and a clock."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["floor plan, ceiling light, color", "window, clock, wall"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, material", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " of an ipad stand with a small speaker and blue-white light on a cylindrical base."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "e0694fef8e414d69a6a89cdffd212c86"], "properties": ["size, material, shape", "base, speaker, light"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "above a black and white illustration of a clock"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a tablet stand on a pedestal royalty-free 3d model"], "question": "which object has a speaker and a light?", "label": 1}, {"captions": [" a small purple plastic chair with holes.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, plastic, purple", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large house with a roof on a platform."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, green, lawn", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, structure, greenhouse", "roof, brown, flat"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " an old lantern with moss on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "62925f26fd624310bd6b31136fe8e706"], "properties": ["base material is wood, color is red, message is welcome to northwich", "moss, lantern, old"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of an old lantern"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a house with a green, wooden-structured roof."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["backrest, curved, yes", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "bded33af34104b9686b845dfd18309a9"], "properties": ["throne, chair, building", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, shape, material", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "c3a82df41875402285608ef13a55df57"], "properties": ["door, white, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["potted plant, table, shelf", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a group of trees"], "question": "which entity has more plants", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "a17477b445b3443189dad22f768b888b"], "properties": ["blue, lid, handle", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a crab holding a rubik's cube."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, green, squirt gun", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a black and white image of a crab holding a cube"], "question": "which object is a toy?", "label": 0}, {"captions": [" a small, snow-covered house.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, snow, cover", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small, snow-covered house."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, structure, truss", "house, snow, cover"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": ["small purple teapot with a hook.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, purple, hook", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["white plastic cone-shaped hat, 3d printed.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["5cfd092fb5c44c9f8ae62c6e4c62903d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape is cone, material is plastic, color is white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a dome shaped object made of dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a toilet paper holder", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " featuring a chair, table, and refrigerator."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["background, color, white", "chair, table, refrigerator"], "captions_pred_pc": ["a black line on a white background", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 1}, {"captions": [" of a human skull", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "40022305eaf44442915c9db03e25f781"], "properties": ["a, b, c", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a green trash can with graffiti on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["388f3f2e2a98442f9b8a71d3c33defae", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, trash, can", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of an object in the water", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a trash can royalty free 3d model preview no 2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, blue, roof, black", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["a knife, blade, handle", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a piece of white plastic on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["green teapot", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["5fbede2bde754dd59e11a47fc7d5e9a6", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is green, material is ceramic, shape is teapot", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white image of a bowl on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["house, roof, green", "structure, columns, roof"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "e694d53545d449319a64cceb0280c3c6"], "properties": ["s of, snowboard, shoes, mask", "3d, slide, swing"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "cafc467aff2643e8b70149c4944263ee"], "properties": ["apse, roof, floor plan", "wing, knife, boat"], "captions_pred_pc": ["a black and white drawing of a room", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a curved wing and knife?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "674a36147ffb47059e48abc9fa19d923"], "properties": ["a, dress, flower", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a small wooden house with a green roof."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["metal, legs, wheels", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a house with a ladder"], "question": "which object has a roof that is the color of green", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, text", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, structure, truss", "island, mountain, grass"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table lamp, ceiling light, table", "house, pool, balcony"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a black and white striped fly in the air."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof trusses, beams, suspended ceiling", "black, white, fly"], "captions_pred_pc": ["above a black and white drawing of a building", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, texture", "color, pattern, word"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a beaded necklace with the word banned on it"], "question": "which entity has a word in it?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["acropolis, city, building", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a potted christmas pine tree."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["water, river, island", "a, color, green"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["white, top, writing", "table, bench, deer"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a black and white image of a bench and table with a deer's head on the table"], "question": "which table has a deer head on it?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, plane, town", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["- material is plastic- color is green- shape is box", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["ruined building, stone floor, small stone structure", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain", "label": 1}, {"captions": [" a small wooden house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "c3a82df41875402285608ef13a55df57"], "properties": ["house, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small cottage", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a large metal building with a roof and truss structure."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, tan, brown, orange", "roof, truss, structure"], "captions_pred_pc": ["above a black and white illustration of an office chair", "of a metal grate on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["image is a sculpture of an angel on a wall", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a large metal building with a roof and truss structure."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["- material is wood - color is white - height is 1.8 m", "roof, truss, structure"], "captions_pred_pc": ["an illustration of a barbed wire fence", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which is not a building", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a wooden table and chair."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["black, white, laptop", "table, chair, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white pattern on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small white building with stairs and a white table."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "e30374c614f54fdb90f35b96b071349d"], "properties": ["building, material, steel", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, shape, and size", "building, material, stone"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a white of a man with arms outstretched."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, stairs, house", "image, color, white"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "cafc467aff2643e8b70149c4944263ee"], "properties": ["- material is plastic- color is white- shape is cylinder", "wing, knife, boat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black umbrella on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object is white", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["railing, table, staircase", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a clay pot with holes in it."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["floor plan, ceiling light, color", "hole, material, clay"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a house", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a wooden windmill with a red roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, color, blue", "roof, color, red"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["brown, paint, tape", "black, roof, green"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a small black building"], "question": "which object has a roof", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "a2354f13774340d392fbf33564934aab"], "properties": ["color, roof, green, frame, red", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, white, yellow, roof, metal", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a desk and chair"], "question": "which entity is a building?", "label": 0}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["house, tree, hill", "hat, dress, racket"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a deer and a crystal tree on an island, with a rock and bird nearby."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "2ce5ec0844114576a247b1de2011e0c7"], "properties": ["a, b, c", "image is a deer and a crystal tree on an island, with a rock and bird nearby"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a flying saucer"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a deer standing on an icy island"], "question": "which entity has a deer and a crystal tree on an island?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["building, roof, yellow", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " of an origami bird, featuring crane, dragon, frog, and mantis designs."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "ca6ebf5742c7412699b92ce203ed54bb"], "properties": ["image size, image, origami", "image size, image, origami"], "captions_pred_pc": ["above a black and white illustration of an airplane", "above a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of an origami dragon"], "question": "which image is smaller", "label": 0}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, hole, rock", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small island with trees, water, and a river."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "5a9c593092c04deaa0f17a1c28a79476"], "properties": ["hat, sword, gun", "water, river, island"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2"], "question": "which entity is a small island with trees", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, trusses, beams", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "c3a82df41875402285608ef13a55df57"], "properties": ["metal, laptop, light fixture", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["a train, a ship, a boat", "gold, ring, animal"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a submarine", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a large metal building with a roof and truss structure."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "b85a99699ccd4bcba213322113bb253d"], "properties": ["collection, color, black, handle, wooden", "roof, truss, structure"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["floor plan, heating system, ceiling light fixture", "hat, dress, racket"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a window with a colorful frame."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "59c7c35a04ce42dbb24e8f8e882c4127"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "frame, color, window"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a banner on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a window in a wall"], "question": "which window has a colorful frame", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a white fox."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, table, ceiling", "color, white, fox"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " of a small white building with stairs and a lid."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["pattern, color, shape", "building, stairs, lid"], "captions_pred_pc": ["a black circle on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, horns, features", "arrow, red, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, number", "color, background, white"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["base material, wood, shade color, white, beige", "moss, mushroom, grass"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, light, jewels", "house, fence, dog"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a shotgun with a wooden handle and a knife."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "7380df872b4f467cb8ae1422bc729162"], "properties": ["color, light, handle", "handle, knife, shotgun"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a popsicle on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a shotgun royalty free 3d model"], "question": "which shotgun has a wooden handle", "label": 1}, {"captions": [" a purple and green sphere.", "a white of a woman with her arms outstretched."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a large steel building with a pool."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["structure, columns, roof", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, table, ceiling", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a box, a cup, a bottle, a jar", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "a2354f13774340d392fbf33564934aab"], "properties": ["color, white, red, pink", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["floor, staircase, railings", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a light switch", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "e098706085a44898abbd549693d12a64"], "properties": ["a, island, water", "color is black, white, orange"], "captions_pred_pc": ["a black and white photo of a boat in the water", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["- material is white- color is white- texture is textured", "image, city, spoon"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a city skyline in white"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a small orange piano with legs."], "sample_ids": ["44723e86bdd14071b0544745879604de", "d793de7c08d74414beeb8ea50f730705"], "properties": ["resembles, bar, soap", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small white house with a roof."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["graffiti, bench, wall", "roof, color, white"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, text", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white square with dots on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["- color is red, blue, pink", "gold, ring, animal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, tree, rock", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["paper, hole, mouse", "paper, hole, sign"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a mouse on top of a piece of paper", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a hole in it?", "label": 0}, {"captions": ["a black table lamp with a black shade and a hat on top.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, black, shade, black", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, table, blocks", "hat, candy, strawberry"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a table with four legs", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a green mountain with trees and grass."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, structure, greenhouse", "mountain, grass, tree"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "b896a0898efe4059a776193c02132129"], "properties": ["background, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a cat's head", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "da8b5d21da9b4037982f29383d60b100"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "resembles, toy, castle"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a tower made out of blocks"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a gun with red wires and a red handle."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "92b06e113e3840f3a3191baf951f19c6"], "properties": ["- material is wood, metal, metal", "color, red, handle"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white image of an object"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendered image of a gun"], "question": "which object has a red handle", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a white of a woman with her arms outstretched."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["image is a sculpture of an angel on a wall", "image, color, white"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a woman with her arms outstretched"], "question": "which image is of a woman?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, pink, green, cord, white", "water, boat, rock"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d image of an animal laying on the ground"], "question": "which object is in the water?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, pier, stairway", "roof, color, yellow"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white house with a staircase and a window."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, roof, tray", "house, staircase, window"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house with a tree and a rock."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["color, temperature, england", "house, tree, rock"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, hill, forest", "building, room, sky"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " a wooden roof structure with a pink roof."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, table, sphere", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": [" a gun with red wires and a red handle.", "a white glass beer mug."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, red, handle", "color, white, glass"], "captions_pred_pc": ["above a black and white image of an object", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendered image of a gun", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "09f2cf267e954c958828325067bcc36a"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "c8936ace72954650b4e2d84246964849"], "properties": ["texture, spikes, eyes", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, island, resembles, hawaii", "a, material, steel"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, tree, hill", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["blue tarp, flower, small island", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["size, color, shape", "cover, black, plastic"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hill, field, castle", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a castle on a hill", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["s of, snowboard, shoes, mask", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, stairs, shelves", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["bed, desk, window", "house, roof, green"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a building with a black roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["hat, food, bowl", "nut, bowl, ring"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a white object on a gray background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", "a white of a house with a hole in the ceiling."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["furniture, room, kitchen", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small wooden house with a green roof.", " of two rocks with ice elements."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, green", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "887e410d07854396b563325ae1929583"], "properties": ["hat, sword, gun", "hat, mouse, bear"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is holding a spoon", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["wall, stairs, castle", "house, tree, pool"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a wooden roof structure with a pink roof."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["stacked, racks, toy train", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of the roof of a building"], "question": "which object has a roof that is pink?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, bird, lamp", "roof, material, wood"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, truss, lamp", "house, tree, pool"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of an egyptian sarcophagus."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["graffiti, chinese writing, door", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a barrel and a cube together."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["house, yard, surrounding buildings", "a, barrel, cube"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a house?", "label": 0}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "a2354f13774340d392fbf33564934aab"], "properties": ["shape, bathroom, refrigerator", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["black, roof, green", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a house with a roof"], "question": "which roof is the color of the building", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["e098706085a44898abbd549693d12a64", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color is black, white, orange", "black, roof, green"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": ["black and white image of a motorcycle", " a red and white robot."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, black, white", "color, red, white"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a red and white robot?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, island, water", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden wall with a psychedelic circular pattern in red, green, and blue."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5376daee484349378cb269a771ca5be0"], "properties": ["color, shape, and size", "color, pattern, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a cross made of black yarn on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, text", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a human bone", " a small white house with a roof."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, b, c", "roof, color, white"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, table, chair", "house, fence, playground"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", "a white of a house with a hole in the ceiling."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["building, ceiling, kitchen", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, green, lawn", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, shape, size", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, b, c", "a, material, clay"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a line of white cubes with various insects on them", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["potted plant, table, shelf", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a plant in a pot", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a brick wall with grass."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "53f2d948091f417cb580e22469c94db2"], "properties": ["house, yard, surrounding buildings", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a house with a wooden-framed roof structure."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, rock, paper", "roof, material, wood"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white round table with a red accent.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fea62a865b4e40899d95785533818329", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, red", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, mouth, eyes", "roof, trusses, beams"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["liquid, ice, lid", "meat, bread, sausage"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "be1376023c274bdda995d54f3694157f"], "properties": ["- color is white- shape is cube- material is plastic", "roof, beams, chimney"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a house with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small blue robot with a windmill."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, blue, robot"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a wind turbine"], "question": "which object is blue", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["floor plan, ceiling light, color", "house, tree, pool"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "127753bf17de4252aaa7ea88f274545e"], "properties": ["- material is metal - weight is 0 - height is 0", "face, mask, tail"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["color, white, black, white", "mannequin head, plague mask, straps"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a plague doctor's mask on a mannequin head"], "question": "which entity is a mannequin head?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a roof that is flat and brown?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a city with buildings, houses, trees, and grass."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, shape, text", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, skyline, buildings", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof truss, insulation, suspended ceiling", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["house, roof, blue", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, white, containers", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, white, yellow, roof, metal", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white, curved plastic object resembling an ear, mouth guard, or hat.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["c3a82df41875402285608ef13a55df57", "4a889132cc444d10bfcbf6c760984416"], "properties": ["shape is curved, color is white, material is plastic", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a bird's wing", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white plastic object on a gray background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": ["a white ornate airplane design.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, material", "gold, ring, animal"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is made of gold", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["roof, green, lawn", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "6b745457e06840119058883b35f78f58"], "properties": ["earbuds, light, ring", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity has a clock tower?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["black, white, coffee table", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["metal, laptop, light fixture", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a white 3d mannequin human head.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, mannequin", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, material, shape", "image, color, white"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["red, pile, garbage", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small white house with windows and a black lid."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "4b40af369c1149949f5ccb68becd8430"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white house with three windows"], "question": "which object has a lid", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["mossy, rock, rocky", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "a17477b445b3443189dad22f768b888b"], "properties": ["window, clock, wall", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["structure, roof, pitch", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, pink, green", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a white motorcycle with wings."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["stacked, racks, toy train", "color, white, wings"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["bed, desk, window", "house, tree, hill"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a white plastic tube or metal bar, resembling a knife."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "8fd3836862a44a8d8b4d224bfc30c2c3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a knife, blade, handle"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a shelf with a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a piece of white plastic on a gray background"], "question": "which object has a handle", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house with a blue roof."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["house, door, cross", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a map", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, shape, and size", "frame, screen, color"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white cross on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity is a screen?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " of a black and white striped fly in the air."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["shape is cube, color is black, white", "black, white, fly"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a black and white photograph of a fly"], "question": "which is not a fly", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "7407a108e0354925b83b750339bc03df"], "properties": ["wing, color, white", "platform, color, orange"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white illustration of a bicycle"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor, stairs, bathroom", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small table", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["brown, paint, tape", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, yellow, roof, metal", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "34a49861e7744acfb71de471a755e917"], "properties": ["color, material, shape", "text, material, shape"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d rendering of a marble slab with text on it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a blue plastic stool.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["2ea7d871e2f64c7daa6977a8d268b45e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, plastic, blue", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a chair with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white knight's helmet.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9d89aae6a7c84bbc97c63c06055ecedd", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, helmet", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a dandelion on a white background dandelion illustration on a white background illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person's head wearing a helmet", "3d model of a plague doctor's mask"], "question": "which helmet is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "c3a82df41875402285608ef13a55df57"], "properties": ["resembles, toy, bookshelf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a house with a wooden-framed roof structure."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["door, roof, pool", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["island, mountain, grass", "house, pool, balcony"], "captions_pred_pc": ["a black and white map of the island of malta", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["backrest, curved, yes", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object has a deer head on it", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "a17477b445b3443189dad22f768b888b"], "properties": ["a, eagle, wood", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, trusses, ladder", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white of a spaceship and building."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["floor plan, heating system, ceiling light fixture", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, b, c", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black square tile on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a line of white cubes with various insects on them", "a white 3d model of a city skyline"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["building, tree, plane", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white photo of the letter g"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, air conditioner, house", "roof, beams, frames"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a wooden structure"], "question": "which house has a roof with beams?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of an egyptian sarcophagus."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["black, white, laptop", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white circular pattern on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["frame, truss, roof", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a table and chairs on a white background"], "question": "which building has a roof that is the color yellow", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, blue, green, yellow, blue", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, light, jewels", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a large house/building structure with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, structure, house", "house, fence, playground"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "be1376023c274bdda995d54f3694157f"], "properties": ["bedside table, wheels, white", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden staircase.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["material is wood, staircase, wood", "wood, board, shelf"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a black motorcycle helmet with a visor on top"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a small white house with a roof."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["hill, field, castle", "roof, color, white"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c3a82df41875402285608ef13a55df57"], "properties": ["yellow, table, roof", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, green, orange, star", "house, roof, green"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, stairs, table", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a staircase", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a large orange pumpkin."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["s of, snowboard, shoes, mask", "orange, large, pumpkin"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a four-legged metal workbench with shelves."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["floor, wall, roof", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a table with four legs"], "question": "which entity has shelves", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["yellow, table, roof", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, pattern, wall", "paint, rust, concrete"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a concrete wall"], "question": "which wall is more likely to be painted", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "205251e4277e41d1aae6b2358267ad56"], "properties": ["dial, face, band", "image, color, white"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a stone wall featuring carvings and statues."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["chair, table, refrigerator", "carving, statue, wall"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["854757ca755240f8b04576d899349151", "c3a82df41875402285608ef13a55df57"], "properties": ["cabinet, room, shelf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a house with a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["house, rock, pond", "roof, house, roof"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which house has a roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "6b745457e06840119058883b35f78f58"], "properties": ["color, door, window", "roof, color, blue"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", "a white glass beer mug."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "1d686cbd3e9a4c629a43088658989286"], "properties": ["white, rock, shell", "color, white, glass"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a white castle composed of small cubes."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, style, pixel", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a clay pot with holes in it."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, truss, suspended ceiling", "hole, material, clay"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small white house with a roof."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, blue, structure", "roof, color, white"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, tree, pool", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, roof, white, cubes", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "c3a82df41875402285608ef13a55df57"], "properties": ["red, sphere, resembles", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, base, warning", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["Drawer, Pattern, White", "box, paper clip, lock"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", "star wars stormtrooper "], "sample_ids": ["578cb910905042939d876af28e29eb2f", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["wing, silver, white", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a sculpture?", "label": 0}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["building, tree, plane", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, white, background, gray", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "34a49861e7744acfb71de471a755e917"], "properties": ["color, skyline, buildings", "text, material, shape"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a marble slab with text on it"], "question": "which entity is a sign?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a building with a metal and wooden pole structure."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["building, stairs, shelves", "structure, material, pole"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a structure with multiple tables and chairs"], "question": "which building has a metal and wooden pole structure?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "a17477b445b3443189dad22f768b888b"], "properties": ["color, bench, rack", "roof, pillar, stairs"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, building, people", "building, plane, city"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["resembles, toy, bookshelf", "meat, bread, sausage"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "7407a108e0354925b83b750339bc03df"], "properties": ["a lamp, a syringe, a light pole", "platform, color, orange"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a platform that is orange?", "label": 1}, {"captions": [" a green skull and sphere.", " a black and white striped box."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, skull, sphere", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a wooden-cased radio."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["bed, desk, window", "case, material, wood"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a large building with a roof and windows."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "32d1fbd3ee91426882290305f70021e6"], "properties": ["bird, nest, wood", "roof, windows, building"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a futuristic white sports racing car."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["Cabinet, Drawers, Filing", "color, white, futuristic"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, and material", "color, background, white"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["building, door, clock", "house, building, people"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a table and chairs on a white background"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a clay pot with holes in it."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, plastic", "hole, material, clay"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with wooden framing and trusses."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, table, ceiling", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house under construction"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, white, black, white", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, floorplan, gym", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a blue roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, blue", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, roof, wooden", "table, stairs, ladder"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a potted christmas pine tree."], "sample_ids": ["d6087023095446fbadef1721478373b2", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["door, roof, window", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a christmas tree in a vase"], "question": "which object has a green color", "label": 0}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a green mountain with trees and grass."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, sphere, molecule", "mountain, grass, tree"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a brick wall with grass."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "53f2d948091f417cb580e22469c94db2"], "properties": ["roof, structure, wall", "brick, grass, wall"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white photo of a brick wall and a puddle"], "question": "which wall is made of brick", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["water, boat, rock", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small purple plastic chair with holes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "c3a82df41875402285608ef13a55df57"], "properties": ["color, plastic, purple", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "a black and white drawing of a bird's wing"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a large metal building with a roof and truss structure."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, black, shade, black", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "a17477b445b3443189dad22f768b888b"], "properties": ["a, color, case", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a large metal building with a roof and truss structure."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "b85a99699ccd4bcba213322113bb253d"], "properties": ["graffiti, bench, wall", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a boat", "of a metal grate on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " of two rocks with ice elements."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bowl, pottery, headpiece", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a human bone", " of a black tray with three green rings on it."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["a, b, c", "color, black, rings"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d rendering of a tray with three rings on it"], "question": "which entity has more rings", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a witch wearing a black and white hat."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, green, squirt gun", "color, black, white"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a witch?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a wooden-cased radio."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["fireplace, bench, log", "case, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large rock with a hole in it.", " a white castle composed of small cubes."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["size, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["black, white, laptop", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["s, stick, leaf", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small white building with stairs and shelves."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, material", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a person breaking through a brick wall.", " of a person breaking through a brick wall."], "sample_ids": ["0708be2186d24d52815e8ac9d751fc37", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["image, brick, wall", "image, brick, wall"], "captions_pred_pc": ["for a black and white illustration of an ice cream cone", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a person breaking through a brick wall", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 0}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["desk, chair, lamp", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, shape, pattern", "image size, image, royalty"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a wildebeest"], "question": "which entity is a royalty-free image?", "label": 1}, {"captions": [" of a small red renault clio car.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "12093c89a60941e7884b252bdc05104c"], "properties": ["color is red, make is renault, model is clio", "giraffe, bench, flower"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "6b745457e06840119058883b35f78f58"], "properties": ["building, material, stone", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a house with a steeple on top"], "question": "which building is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, house, small", "roof, color, green"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small wooden house."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, door, clock", "house, material, wood"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a small wooden house with a green roof."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, green, leaf", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, light", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["- material is plastic- color is white- shape is cylinder", "turrets, flags, towers"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which object has turrets", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "f1b557775310478893242180defa4d80"], "properties": ["Drawer, Pattern, White", "shack, roof, door"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, rock, bird", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["white korean word on a gray background.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, background, font", "low poly, plant, white"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of two rocks with ice elements."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, staircase, railings", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "e2645ac544844f3c981203134a99c30c"], "properties": ["a, island, resembles, hawaii", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a large steel building with a pool."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, color, white", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["roof, green, lawn", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, metal, white", "roof, trusses, ladder"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a wooden staircase with a railing and table."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "956247bea850458199c651037d4b1d7f"], "properties": ["building, fence, snowy", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a table with a staircase"], "question": "which has a table", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white of a man with arms outstretched."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, grass, moss", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a wooden table with a plant on it."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["yellow, table, roof", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with a roof and beams."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof trusses, beams, suspended ceiling", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["building, color, white", "arrow, red, white"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a green skull and sphere.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, skull, sphere", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, truss, structure", "roof, truss system, framing"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "star wars stormtrooper "], "sample_ids": ["6813afb531d041e48532088d01b00db9", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["house, hill, forest", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, green, squirt gun", "giraffe, bench, flower"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, bowl, green", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a human skull", "a white of a man with arms outstretched."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["a, b, c", "image, color, white"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a man with his arms outstretched"], "question": "which entity is a color image?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, sphere, molecule", "color, frame, shape"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["frame, truss, roof", "structure, material, pole"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "f1b557775310478893242180defa4d80"], "properties": ["color, shape, material", "shack, roof, door"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a small house in the middle of a field"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " tall grass, plants, rocks, and a tree."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["- material is plastic- color is white- shape is cube", "grass, plants, rocks"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of two rocks with ice elements."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, gun", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["sandbox, sand bucket, wooden blocks", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["castle, island, house", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, hat, glasses", "building, plane, room"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a white of a man with arms outstretched."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["texture, spikes, eyes", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a flower", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["red, mouse, handwriting", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "black, screen, blank"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which billboard has a screen that is blank", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, text", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, size", "gold, ring, animal"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "c3a82df41875402285608ef13a55df57"], "properties": ["type, relief, statues", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["white korean word on a gray background.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, background, font", "blue, curved, resembles"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a house with a pink roof."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "6162909df6294848a8eea83c3aa9585b"], "properties": ["a lamp, a syringe, a light pole", "color, roof, pink"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is a different color than the rest of the house?", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a white sofa, chair, and box."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "4c59733ebd634594a921b7ace60e4142"], "properties": ["door, panel, staircase", "sofa, chair, box"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a white chair"], "question": "which object is not a staircase", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["chair, table, refrigerator", "house, hill, forest"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a yellow and blue toy submarine."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, shape, size", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a submarine toy"], "question": "which object is yellow and blue?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, eagle, wood", "s, laptop, printer"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a black and white image of an electronic device"], "question": "which entity does not have a laptop?", "label": 0}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, bag, blanket", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house with a green, wooden-structured roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, material, structure", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house with a triangular roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "854757ca755240f8b04576d899349151"], "properties": ["Cabinet, Drawers, Filing", "cabinet, room, shelf"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which cabinet has a shelf?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "09f2cf267e954c958828325067bcc36a"], "properties": ["two-story, roof, building", "island, terrain, rocks"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a white building with a red roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, purple", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", "a white of a woman with her arms outstretched."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["hat, color, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a doll made of beads", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, rock, nail", "house, rock, bird"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a 3d rendering of a house on a rock"], "question": "which rock is on an island?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a wooden windmill with a red roof."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, color, red"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, color, pink", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of two rocks with ice elements."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, truss, lamp", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["white 3d screw model", "a pixelated-textured purple sphere ."], "sample_ids": ["90ef4675ea1a419ca5f0c15f1aab96ec", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, material", "texture, color, shape"], "captions_pred_pc": ["of a black lace doily on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d printed screw on a white background", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of a white chest of drawers with legs."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["floor, table, light", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white photograph of a window", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["house, fence, dog", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of the roof of a house"], "question": "which house has a pitched roof", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, floorplan, gym", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white building with two floors", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " of two rocks with ice elements."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, dragon, cloth", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a small white building with stairs and a lid."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof trusses, beams, suspended ceiling", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["apse, roof, floor plan", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["s, batman, batman character", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["resembles, toy, bookshelf", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["room, house, windows", "house, rock, bird"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["metal, laptop, light fixture", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "9968e06a62e8487ea33460e640abc573"], "properties": ["tiers, building, stairs", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["background, color, white", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a concrete wall"], "question": "which entity has a rusty metal feature?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "cafc467aff2643e8b70149c4944263ee"], "properties": ["turrets, flags, towers", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["s, stick, leaf", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["house, roof, wooden", "structure, roof, pitch"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, orange, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "4a889132cc444d10bfcbf6c760984416"], "properties": ["resembles a jet fighter, futuristic, small", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a lego model of a futuristic airplane", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of two rocks with ice elements."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor plan, ceiling light, color", "image is a rock with ice elements"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white 3d model of a house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, material", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a flower that is pink?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, plane, sky", "a, material, clay"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "bf18bfd89efd43389781050230467d58"], "properties": ["- material is stone - shape is bat", "Lights, number, five"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a clay pot with holes in it."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- color is white- shape is cubes- number is 1", "hole, material, clay"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house with a pond and situated on a rock."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "92859eb82a344134806b37cc209927c6"], "properties": ["castle, island, house", "house, rock, pond"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a house in the middle of a field"], "question": "which house is on a rock?", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, black, blue", "gold, ring, animal"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "above a black and white image of a shark"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" of a house with a pink roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, roof, pink", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a large white and metal building with a metal roof structure."], "sample_ids": ["c27b018330da406680e58b94266c310b", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["frame, material, wood", "roof, metal, white"], "captions_pred_pc": ["a black line on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" of a sword and knife.", " of a sword and knife."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "8b567403ba614523a298f1c5b2009f92"], "properties": ["a, sword, knife", "a, sword, knife"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "a black silhouette of a knife on a white background"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of a samurai sword royalty free 3d model preview no 2"], "question": "which entity has a sword and knife?", "label": 0}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small white building with stairs and a white table."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "e30374c614f54fdb90f35b96b071349d"], "properties": ["island, mountain, grass", "building, stairs, table"], "captions_pred_pc": ["a black and white map of the island of malta", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a small white building with stairs and a white table."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, trusses, ladder", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a broken bowl with a hole in it.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["55e883c09dbf4f22bee0da608128f4f8", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, material, bowl", "s, laptop, printer"], "captions_pred_pc": ["a black and white drawing of a bowl on a white background", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d image of a white bowl on a gray background", "a black and white image of an electronic device"], "question": "which entity is not a bowl?", "label": 0}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "ca275639b47a4093b4426d304695af7f"], "properties": ["color, shape, material", "holder, spring, box"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a plastic container with a spring inside"], "question": "which entity is a box?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small wooden house with a green roof."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, trusses, beams", "roof, color, green"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["broom, shovel, fireplace", "black, roof, green"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "white of a rhino head with horns."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8481aade84de47cab1a9accf8067e678"], "properties": ["color, light, jewels", "image, rhino, head"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, gun", "color, white, plastic"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["a, head, bowl", "ring, helmet, bowl"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d printed ring in white 3d printed material"], "question": "which object has a hole in it", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "1da865c75a5e4a57a17652975dae5474"], "properties": ["liquid, ice, lid", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a white box, a white lid, and a white container"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "bf18bfd89efd43389781050230467d58"], "properties": ["building, roof, white, cubes", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "832a022cdcc74763b0571e04af4e592b"], "properties": ["building, floorplan, gym", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a white building with two floors", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a pink, ear-shaped object.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["0e08d777c7b948a784dc15748e7b173f", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["shape is ear, color is pink, material is plastic", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["furniture, staircase, torn-apart", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, shape, and size", "face, mask, tail"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["roof, green, lawn", "table, bench, deer"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small house with a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "205251e4277e41d1aae6b2358267ad56"], "properties": ["roof, metal, white", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d printed figurine of an alien creature"], "question": "which entity is not a white image?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small building with windows and a roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["size, color, shape", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, blue, rim, blue", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a tree and a rock."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["roof, room, ceiling", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["yellow, table, roof", "roof, structure, suspended"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with a metal roof"], "question": "which entity has a roof that is not suspended?", "label": 0}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " of a small white building with stairs and a lid."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["light, floor, ceiling", "building, stairs, lid"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a train, a ship, a boat", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a small triangular-shaped object."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "2d02985030804209a26c2c53b96a06f9"], "properties": ["- material is stone - shape is bat", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, shape, size", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", "a white of a woman with her arms outstretched."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["low poly, plant, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a white plastic container with a label on it"], "question": "which object is white", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, pattern, material", "color, frame, shape"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " of a wooden table with metal legs and frame."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color is white, material is plastic, shape is box", "metal, legs, frame"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d rendering of a white wooden table"], "question": "which table has metal legs and frame", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of two rocks with ice elements."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["resembles, toy, bookshelf", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "d49d8ed244094349a99e4faca05e0690"], "properties": ["bread, chocolate, cake", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, truss, lamp", "color, white, plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, shape, and size", "color, white, gold"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a standing mirror on a white background"], "question": "which entity is a mirror?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, shape, material", "color, shape, color"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["desk, chair, lamp", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["s, chimpanzee, human, wolf", "a, building, coin, ball"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a box with a coin next to it"], "question": "which entity is a photograph?", "label": 0}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, plane, sky", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "4df70180f2ea400782d2e2de76063894"], "properties": ["a, island, resembles, hawaii", "color, black, blue"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black cat?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, black, white, handle, armrest", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a small purple plastic chair with holes."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, number", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, shape, material", "Object, Tray, Tray"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["red, mouse, handwriting", "a city, train, dragon"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a toy car"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a barrel and a cube together."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["blue tarp, flower, small island", "a, barrel, cube"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a large rock with a hole in it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a wooden windmill with a red roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, shape, texture", "roof, color, red"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["pattern, color, shape", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "ee440fcbc493488e879539d37a8d820e"], "properties": ["building, stairs, shelves", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, room, ceiling", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a character wearing glasses and a hat."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["a, bowl, cup", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color, shape, material", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a roof.", " a wooden shed with a gray roof."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, house, small", "roof, color, gray"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["axe, hammer, spoon", "table, structure, roof"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "18e392c5360146eda498c5edab25b15c"], "properties": ["background, color, white", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a white castle composed of small cubes."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["wood, board, shelf", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a castle made of white cubes"], "question": "which object is composed of cubes", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["chest of drawers, cabinet, white", "buildings, houses, grass"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a white and blue building with a black roof."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, truss, structure", "color, white, blue, roof, black"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a roof that is black?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, and material", "house, fence, playground"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small orange piano with legs."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, light, jewels", "color is orange, size is small, legs"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is smaller", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, white, black, white", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["shape is box, color is white, door is present", "house, table, chair"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, white, plastic", "cover, black, plastic"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["house, lake, pool", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a large building", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof truss, insulation, suspended ceiling", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["container, powder, white", "flower, color, pink"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a clear plastic container with a white label on it", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "a2354f13774340d392fbf33564934aab"], "properties": ["floor, table, light", "building, roof, yellow"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "36d90269173b4d1a84dbd61664593f66"], "properties": ["A, a, a", "a, eagle, wood"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a map with dots all over it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a person sitting on the edge of a cliff"], "question": "which entity has a statue of a woman?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["roof trusses, beams, suspended ceiling", "building, plane, city"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, booth, bed", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a two-story small apartment building with a roof."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["size, material, lighthouse", "two-story, roof, building"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building is two-story?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "97e000ff41094665afd94ea565da8b13"], "properties": ["room, house, windows", "roof, material, wood"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams?", "label": 1}, {"captions": [" a brick wall with grass.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["brick, grass, wall", "house, tree, pool"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["metal, laptop, light fixture", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["stair, table, chair", "roof, color, gray"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["120bf1525e8649d9bdf3a593fe8f5ddc", "b896a0898efe4059a776193c02132129"], "properties": ["resembles, sculpture, rock", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a piece of paper with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a bag with a zipper on it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a person breaking through a brick wall."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["frame, roof, trusses", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a metal grate", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small wooden house."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, texture", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "earbuds, light, ring"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a spiral staircase with a railing in a small building."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["houses, trees, road", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small white building with stairs and shelves."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "9e1f64d4fd514059be934077717536dc"], "properties": ["roof, truss, lamp", "building, stairs, shelves"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves?", "label": 1}, {"captions": ["a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["80cc05e292b0437ba3189b68f6da0ca0", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["buddha, chair, design", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a cactus on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["3d model of a buddha statue royalty free 3d model preview no 3", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": ["a wooden-cased radio.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["case, material, wood", "cover, black, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "of a black and white image of a skateboard"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a victor calculator on a white background"], "question": "which device has a black plastic cover", "label": 1}, {"captions": [" a small house with a road in front of it.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, front, road", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a, bird, lake", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["Headstock, Guitar, Head", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a small house and a tree in the foreground"], "question": "which object has a hole in the ceiling?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["frame, truss, roof", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "c3a82df41875402285608ef13a55df57"], "properties": ["color, blue, green, yellow, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, purple", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a house with a blue roof."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small purple plastic chair with holes."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["background, color, white", "color, plastic, purple"], "captions_pred_pc": ["a black line on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a long white plastic strip on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "e098706085a44898abbd549693d12a64"], "properties": ["house, rock, pond", "color is black, white, orange"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small wooden house."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["sandbox, sand bucket, wooden blocks", "house, material, wood"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a small cottage"], "question": "which is made of wood", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, material, ceramic", "a, material, clay"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white vase on a grey background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["97f487941d26472294e005fa97c403be", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, white, green", "lion, statue, fountain"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of an office building", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, roof, structure", "color, shape, color"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, texture", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a two-story small apartment building with a roof."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, roof, block", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, ceiling, hole", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["Drawer, Pattern, White", "broom, shovel, fireplace"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["adec10493e06436c967d5797f7085225", "a17477b445b3443189dad22f768b888b"], "properties": ["color, material, shape", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden shelf featuring a laptop, sand dune, and ceiling with holes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6192773417e04fa49d2bf8b9eed20640", "b896a0898efe4059a776193c02132129"], "properties": ["image is a shelf, laptop, sand dune", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a person sitting on a bench", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a city skyline", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, green, lawn", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a modern white geometric pendant light.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["3545287f7d844a309f45671d2d70fbf9", "4389909667db472ea9a57a70eb940fa4"], "properties": ["size, material, color", "building, window, skeleton"], "captions_pred_pc": ["of a black button on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a white pendant lamp with a geometric design on the shade", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, head, white and brown", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a white and blue building with a black roof."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, green", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a black triangular metal object with a clock and cross on it, and a small machine on top.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["b198a81dc41c4fde8be3ca51c3b0e676", "a095621f2d5845af83db3f59f5685982"], "properties": ["metal, cross, clock", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["above a black and white image of an object on a white background", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a piece of furniture", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, red, blue, green", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house in the middle of a field"], "question": "which building has a yard", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["hat, cup, bowl", "box, cylinder, bottle"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white dots pattern on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a lid", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a small blue robot with a windmill."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["shape is cylindrical, color is silver, material is metal", "color, blue, robot"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a wind turbine"], "question": "which object is blue", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["books, paper, lamp", "grass, plants, rocks"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color is white, material is plastic, shape is tube", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white image of a broom on a stand", "of a curved metal rod on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["roof, color, pink", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a large gray sphere", " of a toy mushroom character with a white and brown head."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["size, color, shape", "color, head, white and brown"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, hill, forest", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Drawer, Handle, Wood", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white house with windows and a black lid."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, white, red, pink", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white house with three windows"], "question": "which entity has more windows", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, bird, lamp", "building, plane, room"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small building with windows and a roof."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, truss, lamp", "roof, windows, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, pink, green, cord, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["runner, bed, bench", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "6813afb531d041e48532088d01b00db9"], "properties": ["- color is white - shape is box - material is plastic", "- color is blue- shape is pear-like- structure is flame-like"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a low poly 3d model of a rock"], "question": "which object is blue", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, size", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a white 3d model of a city skyline"], "question": "which entity is a single image?", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, pattern", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a broken bowl with a hole in it."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "55e883c09dbf4f22bee0da608128f4f8"], "properties": ["a, color, white", "a, material, bowl"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a bowl on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d image of a white bowl on a gray background"], "question": "which object is made of bowl", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, metal, white", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small house and barn"], "question": "which building has a blue roof", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a green mountain with trees and grass."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["Arms, Legs, Color", "mountain, grass, tree"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["house, rock, pond", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["image, building, stairs", "throne, chair, building"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a building on top of a table"], "question": "which image shows a chair", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a wooden billiard table with legs."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, color, shape", "legs, material, wood"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["yellow, table, roof", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "d6087023095446fbadef1721478373b2"], "properties": ["house, door, cross", "door, roof, window"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of an apartment building"], "question": "which building has a green door", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["water, river, island", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a harp in a white room"], "question": "which entity has a white curved wall?", "label": 1}, {"captions": [" a brick wall with grass.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["brick, grass, wall", "meat, bread, sausage"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white image of a brush on a white background"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1da865c75a5e4a57a17652975dae5474"], "properties": ["yellow, table, roof", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " of a green pickle"], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "4c7904175d6d4676b73866c25110e8d3"], "properties": ["building, balcony, street", "color is green, shape is cylinder, material is plastic"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "of a black object on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a peanut on a white background royalty free 3d model preview no.3"], "question": "which object is not a building?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "06a1c233fb444830b577aa06e2c01294"], "properties": ["background, color, white", "house, tree, hill"], "captions_pred_pc": ["a black line on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, hole, shelf", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, trusses, ladder", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "6c6549e2975a48a1b59ebe2a6562900e"], "properties": ["floor plan, heating system, ceiling light fixture", "floor plan, bathroom, pool"], "captions_pred_pc": ["a black and white drawing of a house", "the floor plan of the house the floor plan of the house on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house"], "question": "which house has a bathroom", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, material, texture", "color, frame, shape"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["four white computer desks in a 3d arrangement.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "411c164757fc4de68dfecb35fa858223"], "properties": ["Arrangement, Desks, White", "resembles, sea urchin, shell"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a series of white 3d objects on a gray background", "a 3d model of a sea urchin"], "question": "which entity is not a shell?", "label": 0}, {"captions": [" a blue character with arms outstretched.", " a red and white robot."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, shape, size", "color, red, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, pier, stairway", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which structure has a wooden roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, sphere, molecule", "color, sphere, molecule"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a molecule in the shape of a pyramid"], "question": "which molecule has a red sphere?", "label": 0}, {"captions": [" a medieval stone castle with walls and stairs.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["wall, stairs, castle", "floor, stairs, bathroom"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["mug is purple, cup is black, candle is black", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["broom, shovel, fireplace", "torso, breasts, pattern"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, head, bowl", "a, material, clay"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a grayscale of a mountain."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "17a86c6c9be0478c984ef36c7c22edea"], "properties": ["color, roof, block", "color, grayscale, mountain"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "above a black and white photograph of a galaxy"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a mountain range on a white background royalty-free 3d model"], "question": "which entity is a grayscale?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a metal building with a purple roof and cage structure."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, framing, material", "roof, purple, structure"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a building with a metal roof"], "question": "which building has a cage structure", "label": 1}, {"captions": [" a small house on a hill in a field.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "c3a82df41875402285608ef13a55df57"], "properties": ["house, hill, field", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a small house", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " of an ak-47 rifle."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "18e1f60286d346728f650984f4ae70aa"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "AK-47 rifle is a weapon"], "captions_pred_pc": ["a black and white image of a person's face", "of a black and white image of a fishing rod"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a rifle on a gray background"], "question": "which is a weapon", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of pink and blue", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a wall-mounted shelf with three compartments and vents."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "77df1bccf94249988927d3dda97ae273"], "properties": ["size, color, shape", "compartments, wall-mounted, vents"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a boat with dots all over it"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no."], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["earbud, earpiece, earpiece", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white illustration of a curved line"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a hammer with a long metal handle."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["red, mouse, handwriting", "handle, metal, long"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white toothbrush on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["door, roof, pool", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a house with a roof and beams."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, platform, house", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a piece of paper", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, white, containers", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["yellow metal barricade ", "a black and white of a knife/sword with a handle."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color is yellow, material is metal, height is 0.5 m", "image, color, black and white"], "captions_pred_pc": ["a white barrier on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, color", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a white fox."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, room, table", "color, white, fox"], "captions_pred_pc": ["a black square on a white background", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a white fox on a gray background"], "question": "which is not a fox", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a white building with a red roof."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, base, slanted", "color, white, roof, red"], "captions_pred_pc": ["above a black and white drawing of a chair", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, handle, zipper", "house, tree, hill"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small white building with stairs and shelves."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "9e1f64d4fd514059be934077717536dc"], "properties": ["resembles, toy, bookshelf", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": ["smiley-faced banana .", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["bread, chocolate, cake", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, blue, green, yellow, blue", "Steel, Color, Yellow"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a table with multiple tables and chairs"], "question": "which entity has a yellow color", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "97e000ff41094665afd94ea565da8b13"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, tan, brown, orange", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is wood - color is white - height is 1.8 m", "a, material, clay"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, yard, surrounding buildings", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["A, a, a", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a bench", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, temperature, england", "water, boat, rock"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " of two rocks with ice elements."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, truss, suspended ceiling", "image is a rock with ice elements"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, dress, purse", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a spider on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "dd3a9323ed514ccab330973ff9588015"], "properties": ["roof truss, insulation, suspended ceiling", "room, bed, desk"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["color, white, containers", "house, plane, town"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a damaged building"], "question": "which entity is a town?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["building, roof, balcony", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a small black building"], "question": "which building has a green roof", "label": 1}, {"captions": [" a molecule with two pink and blue spheres.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["926fb2e23c56440a86287e98c1440336", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, size", "color, pattern, word"], "captions_pred_pc": ["a molecule with the word 'rono' written in black ink on a white background royalty free illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of three spheres on a white background", "a beaded necklace with the word banned on it"], "question": "which entity is a word?", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a wooden billiard table with legs."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- color is white- shape is flower- pattern is lace", "legs, material, wood"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, green, handle", "color, head, white and brown"], "captions_pred_pc": ["of a small black object on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, ceiling, hole", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pink and blue", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small white building with stairs and shelves."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "9e1f64d4fd514059be934077717536dc"], "properties": ["yellow, table, roof", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, hat, handle", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, texture", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a, door, suitcase", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, poles", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, room, ceiling", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is stone - color is blue - shape is arrowhead", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "a2354f13774340d392fbf33564934aab"], "properties": ["building, pattern, field", "building, roof, yellow"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, size", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["black, white, coffee table", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a standing mirror on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a road in front of it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "9ff45258feba4c68bb279efeb829538f"], "properties": ["floor plan, heating system, ceiling light fixture", "house, front, road"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house on a road"], "question": "which house has a road in front of it", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, blue, green, yellow, blue", "torso, breasts, pattern"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "b57936676e9d43abb635fa1217992287"], "properties": ["color, shape, material", "a, hole, rock"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a lace belt"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "f1b557775310478893242180defa4d80"], "properties": ["shape is box, color is white, door is present", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "c8936ace72954650b4e2d84246964849"], "properties": ["color, shape, size", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "5414d75e47104589837f3df8b6de6d22"], "properties": ["size, material, logo", "beige, white, round"], "captions_pred_pc": ["in the title the logo for maria ruiz", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "67701617472e4051b95955c596561aac"], "properties": ["roof, truss, lamp", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a roof structure and toothbrushes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, shape, and size", "house, roof, toothbrushes"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a white box with a lot of blades"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a white round table with a red accent.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fea62a865b4e40899d95785533818329", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, red", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white drawing of a floor plan"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["buildings, houses, grass", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "443554d4d7044c66aa8cbff63c737589"], "properties": ["runner, bed, bench", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which entity has a roof that is pink and blue?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a black tire."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "b645118910b54e2a9f3a97d5598ce1de"], "properties": ["- material is plastic- color is white- shape is cube", "color, black, tire"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a tire on a white background royalty free 3d model preview no.2"], "question": "which is not a tire", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof, green, lawn", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["base material is wood, color is red, message is welcome to northwich", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["backrest, curved, yes", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a wooden windmill with a red roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small house with a roof."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["building, fence, snowy", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, table, chairs", "grass, plants, rocks"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["yellow metal barricade ", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color is yellow, material is metal, height is 0.5 m", "island, mountain, grass"], "captions_pred_pc": ["a white barrier on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which is not a mountain", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof trusses, beams, suspended ceiling", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a wooden base?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["frame, roof, trusses", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small wooden house."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, plane, room", "house, material, wood"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["image size, image, origami", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of an origami dragon", "a black and white image of a suitcase on wheels"], "question": "which entity is a suitcase?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a stone wall featuring carvings and statues."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["a train, a ship, a boat", "carving, statue, wall"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a black rock with writing on it."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["location, field, gravestone", "color, black, writing"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" a black and green sphere with blue lights.", "star wars stormtrooper "], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, light", "a, color, white"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["- material is wood - color is white - height is 1.8 m", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["an illustration of a barbed wire fence", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which is not made of wood", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a green mountain with trees and grass."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, hole, shelf", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a wooden roof structure with a pink roof."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, bird, lake", "roof, color, pink"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["door, stairs, color", "arrow, red, white"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": ["white wall lamp with a leaf design", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7afad3ca209c4a91b5457d28bdc2b916", "c3a82df41875402285608ef13a55df57"], "properties": ["design, leaf, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a circular object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white wall sconce with a leaf design and a light bulb", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["d6087023095446fbadef1721478373b2", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["door, roof, window", "color, green, squirt gun"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is not a building?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a potted plant on a wooden table or shelf."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["house, rock, pond", "potted plant, table, shelf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " of two rocks with ice elements."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, background, arrows", "image is a rock with ice elements"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, black, green", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, sphere, molecule", "door, lock, handle"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, shape, and size", "image, building, stairs"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, background, white", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, island, resembles, hawaii", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["graffiti, bench, wall", "house, staircase, table"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "06a1c233fb444830b577aa06e2c01294"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "f1b557775310478893242180defa4d80"], "properties": ["color, orange, leather", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a metal building with a purple roof and cage structure."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["color, white, yellow, roof, metal", "roof, purple, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a building with a metal roof"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a stone wall featuring carvings and statues."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- color is red, blue, pink", "carving, statue, wall"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "5414d75e47104589837f3df8b6de6d22"], "properties": ["a, bowl, cup", "beige, white, round"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "aae2c42740a04fd68068f5707111d26f"], "properties": ["water, river, island", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a marble sculpture of an angel"], "question": "which image shows a sculpture on a wall?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["chair, table, refrigerator", "low poly, plant, white"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["collection, color, black, handle, wooden", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, table, ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small white house with a roof."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, rock, paper", "roof, color, white"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["color, shape, and size", "ring, material, gold"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white wedding band with the words strength in weakness engraved on it"], "question": "which object is made of yellow gold", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "a17477b445b3443189dad22f768b888b"], "properties": ["room, door, shelf", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, house, wooden", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a house with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["table, staircase, light", "floor, staircase, table"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small, snow-covered house."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof truss, insulation, suspended ceiling", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a wooden roof structure with a pink roof."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, white, handle", "roof, color, pink"], "captions_pred_pc": ["a black and white dots on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small orange piano with legs.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color is orange, size is small, legs", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a roof structure"], "question": "which object has trusses and beams", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, structure, wall", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a large white box"], "question": "which building has a metal roof structure", "label": 1}, {"captions": [" of a tree with leaves and roots.", "a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "7940570f74c14baa83ebf5f50cd2a720"], "properties": ["leaf, root, trunk", "a snake, an eel, a cube, a sword, a dice, a stick, a blue ball"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "a black mascara brush on a white background"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife"], "question": "which entity is not a tree?", "label": 0}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["boat, table, chairs, umbrella, solar panel", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, booth, bed", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small, snow-covered house."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["frame, trusses, wood", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a 3d white cube.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["94fbd38f3f9c454eafc09bf4d7544146", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, size", "color, sphere, molecule"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["chair, table, refrigerator", "lion, statue, fountain"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, screen, drawer", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a brush", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " of two rocks with ice elements."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, gray", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["bed, desk, window", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a wooden roof structure with a pink roof."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["railings, staircase, spiral", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a spider-man mask and head."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "bd48915cfb41409aad6dd58e157876b2"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a, head, mask"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white image of a person's head"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black spider-man mask on a gray background royalty-free 3d model preview no.2"], "question": "which object is a head?", "label": 0}, {"captions": [" a small house with a red roof.", " a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling."], "sample_ids": ["085db9059b744673b5623b5338e02196", "2a31c42de6f74ddba6b19b3467066e11"], "properties": ["roof, red, house", "color, roof, block"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a table with multiple tables stacked on top of each other"], "question": "which roof is yellow", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["Four legs, Metal, Shelf", "a, color, red"], "captions_pred_pc": ["for a black and white illustration of a cross", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, material", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d83c5a2fd61c4e9f927d1d7b7c9e5aae"], "properties": ["color, shape, and size", "ruined building, stone floor, small stone structure"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white drawing of a mountain"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a piece of broken pottery"], "question": "which entity has a ruined building?", "label": 1}, {"captions": ["white of a small arch.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white drawing of an arch", "a black and white image of a square with dots"], "captions_pred_image": ["a white 3d model of an arch", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, material, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": [" a small black box on a purple square.", " a wooden shed with a gray roof."], "sample_ids": ["75f209e543c046669099190953616acc", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, size", "roof, color, gray"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a shed with a gray roof"], "question": "which entity is larger", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, material", "room, door, shelf"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of an empty room"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, skyline, buildings", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small, snow-covered house."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, ceiling, hole", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a spider-like creature with long arms and legs."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof truss, insulation, suspended ceiling", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, white, logo", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a hat?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a white and blue building with a black roof."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "c893118316ee43e18322e5964b2806c5"], "properties": ["building, color, black and white", "color, white, blue, roof, black"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building is white and blue?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a white chest of drawers with legs."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, white, yellow, roof, metal", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, room, ceiling", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["color, material, shape", "3D, toothpick, skateboard"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a white toothbrush on a gray background"], "question": "which object is made of toothpicks", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c27b018330da406680e58b94266c310b", "6b745457e06840119058883b35f78f58"], "properties": ["frame, material, wood", "roof, color, blue"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with wooden framing and trusses."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, red, blue, green", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", "star wars stormtrooper "], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["animal, head, fox, chihuahua, cat", "a, color, white"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a fox's head", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a large steel building with a pool."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, shape, height", "building material, pool, steel"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, base, slanted", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "bf18bfd89efd43389781050230467d58"], "properties": ["background, color, white", "Lights, number, five"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color is white, yellow, plastic", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["white, top, writing", "island, terrain, water"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, light, jewels", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a 3d wooden pole with a metal spear handle."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "1d5cf234576e41f0ba209c5e19d2db47"], "properties": ["color is white, material is plastic, shape is box", "- material is wood, metal, metal"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "of a black and white illustration of a vase on a pedestal"], "captions_pred_image": ["a 3d model of a white plastic tray", "a black and white image of an old-fashioned pitchfork"], "question": "which object is made of wood and metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a box, a cup, a bottle, a jar", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, metal, white", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a long metal fence"], "question": "which building has a roof with a truss structure?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a white sofa, chair, and box."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "4c59733ebd634594a921b7ace60e4142"], "properties": ["floor, staircase, balcony", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a white chair"], "question": "which entity has a box?", "label": 1}, {"captions": [" a small house with a red roof.", " a wooden shed with a gray roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, red, house", "roof, color, gray"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small purple plastic chair with four legs."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["a, bird, hook", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "of a black and white image of a baby carrier"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " of a person breaking through a brick wall."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["building, floor, columns", "image, brick, wall"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a white human skull with broken bone elements."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["a, color, white", "color, white, skull"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a gun with a blue handle."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["color, green, handle", "color, handle, blue"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a gun on a gray background"], "question": "which object has a blue handle", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a large building with a roof and windows."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, metal, white", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["face, mask, tail", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a clay pot with holes in it."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is stone - shape is bat", "hole, material, clay"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["apse, roof, floor plan", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a room", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "c8936ace72954650b4e2d84246964849"], "properties": ["roof, structure, wall", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a roof"], "question": "which roof is pink", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "a2354f13774340d392fbf33564934aab"], "properties": ["building, skyscraper, city", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, black, shade, black", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a four-legged metal workbench with shelves."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["water, river, island", "Four legs, Metal, Shelf"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a large house with a roof on a platform."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, plane, town", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small house"], "question": "which house is on a platform", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " a white building with a red roof."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, words", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a long line of numbers", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["house, tree, rock", "shape is box, color is white, door is present"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a white, open shelving unit"], "question": "which house is white", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "b896a0898efe4059a776193c02132129"], "properties": ["type, handle, feature", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white drawing of an axe", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["3D, toothpick, skateboard", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " of two rocks with ice elements."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["plane, ship, bird", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, material, structure", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room with dots", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a small purple plastic chair with holes."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["roof, color, pink", "color, plastic, purple"], "captions_pred_pc": ["above a black and white image of a metal grate", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of the roof of a building", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d printed model of a human skeleton foot and leg.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["6eea1e2ab3f645f6a4670cccbc85c908", "a243183445184d2e977044a5b6916e55"], "properties": ["size, material, color", "painting, frame, door"], "captions_pred_pc": ["for a black and white illustration of an owl in the shape of a heart", "a black and white image of a large group of people"], "captions_pred_image": ["a 3d model of the foot and ankle bones royalty free 3d model preview no.", "a picture frame with a black and white photograph"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small triangular-shaped object."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "2d02985030804209a26c2c53b96a06f9"], "properties": ["background, color, white", "shape, triangle, small"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "b5afccae993346079483507296fbb029"], "properties": ["color, black, white", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["color, shape, material", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a white kite flying in the air against a gray background"], "question": "which entity is a picture of a boat", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a white fox."], "sample_ids": ["97f487941d26472294e005fa97c403be", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, white, green", "color, white, fox"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, red, black", "black, screen, blank"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which object has a screen", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, yellow, black", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a room"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "white dragon with wings, ."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "353a650264d64cf28e6e0a080f76ee28"], "properties": ["color, shape, and size", "wings, white, dragon"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white silhouette of a dragon"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1"], "question": "which entity is larger", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a white castle composed of small cubes."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, light, jewels", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a shotgun with a wooden handle and a knife."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "7380df872b4f467cb8ae1422bc729162"], "properties": ["color, green, handle", "handle, knife, shotgun"], "captions_pred_pc": ["of a small black object on a white background", "of a popsicle on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a shotgun royalty free 3d model"], "question": "which object has a handle", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a stone wall featuring carvings and statues."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, white, black, white", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["blue tarp, flower, small island", "grass, plants, rocks"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["yellow, table, roof", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["resembles, octopus, squid, spider, robot", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["building, fence, snowy", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["- color is red, blue, pink", "house, hill, forest"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a four-legged metal workbench with shelves."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["earbud, earpiece, earpiece", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "for a black and white illustration of a cross"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a red and pink apple.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c99acf979dda44dea009727513247b22", "6b745457e06840119058883b35f78f58"], "properties": ["color, red, pink", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white photograph of an apple", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house with wooden framing and trusses."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["building, stairs, shelves", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a window"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house under construction"], "question": "which building has a wooden frame?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a tree with green leaves."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1a902b67735845198efb1b84f434b580"], "properties": ["color, material, structure", "leaf, color, green"], "captions_pred_pc": ["a black and white drawing of a room with dots", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a tree with a lot of foliage"], "question": "which entity is made of green leaves", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, brown, flat", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a17477b445b3443189dad22f768b888b"], "properties": ["houses, trees, road", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a train, a ship, a boat", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a green mountain with trees and grass."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, pier, stairway", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white illustration of an open door", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "68e0d097351843a3980421f2ae624c59"], "properties": ["color, white, railing, black", "white, top, writing"], "captions_pred_pc": ["above a black and white image of a computer screen", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["house, plane, town", "plane, ship, bird"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of an egyptian sarcophagus."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "b896a0898efe4059a776193c02132129"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black mascara brush on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small building with windows and a roof."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, plastic", "roof, windows, building"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["image, color, pink", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white drawing of a room"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor, staircase, balcony", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", "a 3d white cube with windows resembling a building."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, bird, green, yellow, blue", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of a square made up of small dots"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a wooden shed with a gray roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, roof, green", "roof, color, gray"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is white- color is white- texture is textured", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, green, handle", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a two-story building with stairs and a three-tier display."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "1d817b7b6ded439d8b92eeab87e4cf8d"], "properties": ["house, color, white", "tiers, building, stairs"], "captions_pred_pc": ["above a black and white drawing of a bench", "for a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a building with two floors and a spiral staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small wooden house with a green roof."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, gazebo, table", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a clay pot with holes in it."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["water, boat, rock", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, color, yellow-green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small black box on a purple square.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["75f209e543c046669099190953616acc", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, shape, size", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["yellow, shape, wingspan", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, green, lawn", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["ceiling, light, desks", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a green circuit board."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, size", "color, green, circuit board"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "of the item in the image"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a house with a flat roof structure."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "abc52d210d71415296730bb00352ce6f"], "properties": ["screen, monitor, stand", "roof, flat, structure"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a green mountain with trees and grass."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["floor plan, heating system, ceiling light fixture", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["- color is red, blue, pink", "table, stairs, ladder"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "839a873262a544c9906f3f5799ca4648"], "properties": ["green, hat, cream", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["background, color, white", "moss, mushroom, grass"], "captions_pred_pc": ["a black line on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["black, white, laptop", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["fee48e4d25934ebb85ef6888d517d398", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["red, rock, ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a circular object with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" of a green pickle", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is green, shape is cylinder, material is plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["hat, food, bowl", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a brick wall with grass."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "53f2d948091f417cb580e22469c94db2"], "properties": ["roof, windows, building", "brick, grass, wall"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, blue, green, yellow, blue", "island, terrain, water"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "c3a82df41875402285608ef13a55df57"], "properties": ["house, hill, forest", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "c3a82df41875402285608ef13a55df57"], "properties": ["color, mouth, eyes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "a17477b445b3443189dad22f768b888b"], "properties": ["black, laptop, shelf", "roof, pillar, stairs"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "40921ffd69db479294554d261daf3035"], "properties": ["building, roof, balcony", "floor, railing, staircase"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a chair with a yellow seat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a4de5f2055154465968f33d6289c64e6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, yellow, seat", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a square with small dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a chair on a white background royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "db74ee1621464be1b164be26a1af050e"], "properties": ["base material, wood, shade color, white, beige", "window, arches, wall"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden staircase with a railing and table."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "956247bea850458199c651037d4b1d7f"], "properties": ["color, light, jewels", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "cafc467aff2643e8b70149c4944263ee"], "properties": ["A, a, a", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a bench", "a black umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, stairs, house", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "a2354f13774340d392fbf33564934aab"], "properties": ["color, white, containers", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "a2354f13774340d392fbf33564934aab"], "properties": ["color, white, yellow, roof, metal", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, wheel, helmet", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["building, color, white", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["graffiti, bench, wall", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["roof, room, ceiling", "house, color, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "6b745457e06840119058883b35f78f58"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a house with a steeple on top"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, bench, rack", "table, staircase, light"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, texture", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a house with wooden framing and trusses."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["frame, trusses, wood", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house under construction"], "question": "which entity has a wooden frame and trusses?", "label": 0}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, air conditioner, house", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "c3a82df41875402285608ef13a55df57"], "properties": ["food, leaves, shredded paper, rocks", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["woman squatting and holding a water bottle in a .", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1d6d7e9f9b1945e2b8b5178cf3d82e59", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["woman, bottle, squat", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a turtle's shell", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a woman squatting with her hands on her hips and knees", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a large metal building with a roof and truss structure."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, pink, green", "roof, truss, structure"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["white 3d printed skull, shell, snowy mountain, spiked head sculpture, and blob.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2a99681d7ec0460790da639cecec9a24", "a17477b445b3443189dad22f768b888b"], "properties": ["3D Printed, white, skull", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d model of a molecule on a white background a 3d model of a molecule on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d sculpture of a seashell on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", "a white of a spaceship and building."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, structure, truss", "image, building, spaceship"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, white, railing, black", "house, roof, blue"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["meat, bread, sausage", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a pink, ear-shaped object."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["structure, building, archway", "roof, color, yellow"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a table and chairs on a white background"], "question": "which structure has a roof that is the color yellow", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a white of a man with arms outstretched."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["house, yard, surrounding buildings", "image, color, white"], "captions_pred_pc": ["a black and white image of a truck on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small wooden house with a green roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, door, window", "roof, color, green"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a small white box with a green light."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["lighthouse, building, tower", "color, white, light"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d rendering of a small white box"], "question": "which object has a clock tower", "label": 0}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["house, roof, green", "roof, ceiling, hole"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, roof, wooden", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, and size", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, material, stone", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a black and white photograph of a birdhouse"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["lighthouse, fountain, crater", "door, roof, pool"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "d81d13362ae04371bb2cba46e4939665"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, shape, text", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["striped, white, black", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a set of three white shelves or ceiling panels with lines."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "ff6f8c2347ab4c17a2b3e319b205f191"], "properties": ["- color is white- shape is cubes- number is 1", "set, white, lines"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a set of black and white dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d illustration of a set of three white trays on a gray surface"], "question": "which object has more lines", "label": 1}, {"captions": [" a small red and white spaceship.", " a house with a green, wooden-structured roof."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a house with a triangular roof"], "question": "which entity is larger", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a small wooden house with a green roof."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, handle, straps", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["stair, table, chair", "a, material, steel"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, text", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["color, base, warning", "frame, truss, roof"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a large axe with a cross on top."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "4b6734945e204158b076a429a30ce2e9"], "properties": ["size, color, shape", "axe, cross, top"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "for an axe on a white background"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a bottle containing pink liquid.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["176d3a863ccb48eeb84ab4e85054525d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, bottle, liquid", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a bottle with bubbles", "a black and white image of a cone shaped object"], "captions_pred_image": ["a clear glass bottle on a gray background royalty free 3d model preview no 2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["hat, bag, blanket", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white image of a shark"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a bloody axe with a red and wooden handle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["86463fea77bb445e87ab70d11018cc7a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["handle, color, wood", "a, material, clay"], "captions_pred_pc": ["a black and white axe on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an axe on a white background royalty-free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, eagle, wood", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, screen, drawer", "earbuds, light, ring"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a light?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, mouth, eyes", "box, handle, gun"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, rock, bird"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a japanese geisha in a metal frame with a triangular-shaped metal door.", " a house with wooden framing and trusses."], "sample_ids": ["0a75511848d74b7f97422ad85a27ec2e", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["frame, door, shape", "frame, trusses, wood"], "captions_pred_pc": ["a line of black dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a framed picture of a geisha with a fan in her hand", "a 3d model of a house under construction"], "question": "which frame is made of wood", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "broom, shovel, fireplace"], "captions_pred_pc": ["a close up of a black object on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, pier, stairway", "Shelf, color, white"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d rendering of a white shelf"], "question": "which entity is white", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a wooden shed with a gray roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["bedroom, bathroom, bed", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a large house with a roof on a platform."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "cb3e09a301b746918a682a595037c7f7"], "properties": ["a box, a cup, a bottle, a jar", "roof, platform, house"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small house"], "question": "which object has a roof", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a small wooden house with a green roof."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, eye, handle", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["floor, staircase, railings", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a snowy landscape"], "question": "which entity has a white table?", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a small wooden house with a green roof."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of a house with a ladder"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, bird, hook", "a, material, steel"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["white candle with a yellow flame in a candle holder.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c3d85aaabddf4585b2468a5bca9f51d5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, flame, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white candle in the shape of a teapot", "a 3d model of a house with a roof"], "question": "which entity has a yellow color", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["a, color, white", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, b, c", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["graffiti, bench, wall", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a human bone", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, b, c", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "b896a0898efe4059a776193c02132129"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of an ancient statue"], "question": "which is made of stone", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Wheels, laptop, robot", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a cell phone", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["houses, trees, road", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a yellow circle with a black outline.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, outline, circle", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree", "label": 1}, {"captions": [" a child's room in a small house with windows.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["room, house, windows", "building, plane, room"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["a train, a ship, a boat", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a red roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "085db9059b744673b5623b5338e02196"], "properties": ["roof, color, purple", "roof, red, house"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": ["\"multiple white cubes arranged in a row on a gray background.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["17c8222d4ce04e518117078e7de6aaed", "c3a82df41875402285608ef13a55df57"], "properties": ["color, background, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a box with the words 'box 2' and 'thoughtful'", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an image of a white background with a few small cubes on it", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["houses, trees, road", "ceiling, light, desks"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, orange, white", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["cover, torn, open", "house, tree, pool"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a house with a green, wooden-structured roof."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, temperature, england", "island, terrain, rocks"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain?", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a small wooden house with a green roof."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, material, stone", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a house with a ladder"], "question": "which building is made of wood", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " of a wooden windmill with a red roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["house, staircase, window", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, yellow, chimney", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " of a black and white striped fly in the air."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, yellow, white, wheels", "black, white, fly"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["resembles, toy, castle", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["apse, roof, floor plan", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, yellow, black", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["1c389c8f46b345838e515b9747c1f982", "d81d13362ae04371bb2cba46e4939665"], "properties": ["plate, fruit, knife", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a hedgehog", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a person riding a skateboard on a wooden surface", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, white, blue", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a large rock or stone.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "b896a0898efe4059a776193c02132129"], "properties": ["boulder size, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["stair, table, chair", "building, door, clock"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of a church with a steeple"], "question": "which entity has a door?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, skyline, buildings", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "b57936676e9d43abb635fa1217992287"], "properties": ["yellow, table, roof", "a, hole, rock"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a lace belt"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" of a house with a pink roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, roof, pink", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a large metal building with a roof and truss structure."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "b85a99699ccd4bcba213322113bb253d"], "properties": ["door, roof, pool", "roof, truss, structure"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["house, plane, town", "flower, color, pink"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has more flowers", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small white building with stairs and a white table."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "e30374c614f54fdb90f35b96b071349d"], "properties": ["collection, moose, skull", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "97e000ff41094665afd94ea565da8b13"], "properties": ["hat, food, bowl", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a wooden roof structure with a pink roof."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["painting, door, wall", "roof, color, pink"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["21639082215b4b179d574d2408124838", "b896a0898efe4059a776193c02132129"], "properties": ["color, room, furniture", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, mouth, eyes", "torso, breasts, pattern"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, air conditioner, house", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " of a white human skull with broken bone elements."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, bowl, green", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["Four legs, Metal, Shelf", "metal, cross, clock"], "captions_pred_pc": ["for a black and white illustration of a cross", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["hat, food, bowl", "a city, train, dragon"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "034c093c73fd48758422feee0b10c5d8"], "properties": ["a, hole, shelf", "a, backpack, stick"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a bird in flight"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a pencil drawing of a person holding a sword"], "question": "which object has a backpack?", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, bird, green, yellow, blue", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["hair, legs, wings", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, light, jewels", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small white house with a staircase and a window."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, shape, gun", "house, staircase, window"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d rendering of a small room with a staircase"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["nut, bowl, ring", "grass, plants, rocks"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a small white building with stairs and a white table."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, toilet, robot", "building, stairs, table"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a character wearing glasses and a hat."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["house, lake, pool", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, island, water", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["roof, green, lawn", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "854757ca755240f8b04576d899349151"], "properties": ["- material is white- color is white- texture is textured", "cabinet, room, shelf"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["house, roof, blue", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, material, frame", "house, table, chair"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "411c164757fc4de68dfecb35fa858223"], "properties": ["resembles a jet fighter, futuristic, small", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a lego model of a futuristic airplane", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["cup, bottle, chessboard", "houses, trees, road"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof trusses, beams, suspended ceiling", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, color, pink, blue", "house, tree, hill"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a wooden roof structure with a pink roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["fireplace, bench, log", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, table, blocks", "a, material, clay"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a table with four legs", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["food, leaves, shredded paper, rocks", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, bench, door", "a, material, clay"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is plastic- color is green- shape is box", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, shape, texture", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a wooden windmill with a red roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["hat, sword, gun", "roof, color, red"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small white house with a staircase and a window."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "9eb88d17310d42dda9e17883e9922525"], "properties": ["wall, stairs, castle", "house, staircase, window"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d rendering of a small room with a staircase"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["a, bird, lake", "table, staircase, light"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a purple and green sphere.", " a white rocking chair with a curved backrest."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, size", "backrest, curved, yes"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object is curved", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a large building with a roof and windows."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, roof, tray", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a metal object", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a white castle composed of small cubes."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, gun", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house with a green, wooden-structured roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["room, bed, desk", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small white house with a roof."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, light", "roof, color, white"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["- material is plastic- color is white- shape is cylinder", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small wooden house with a green roof."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, texture", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, yellow, black", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of an airplane", "of a spike on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["red, mouse, handwriting", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, stairs, house", "low poly, plant, white"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, black, white, handle, armrest", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof truss, insulation, suspended ceiling", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a pontoon boat with two seats and a canopy."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "dccff5eccf6943f8b14cd269710ae6ff"], "properties": ["Arms, Legs, Color", "seat, canopy, pontoon"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a leopard print purse"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10"], "question": "which entity has a canopy", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, b, c", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a sword with a yellow handle and white blade.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["ee82fbc66d39467b8f34b91493053e66", "67701617472e4051b95955c596561aac"], "properties": ["color, handle, blade", "color, white, 3d-printed"], "captions_pred_pc": ["of a black and white image of a pen on a white background", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small white building with stairs and a white table."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, brown, flat", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "97e000ff41094665afd94ea565da8b13"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, material, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of an egyptian sarcophagus."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["room, bed, desk", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, character, mario", "cloak, sword, spear"], "captions_pred_pc": ["for a black and white sculpture of a person", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": ["a 3d white geometric soccer ball.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["8dd8ce98a0304753820115845741a6bd", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a soccer ball", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white 3d sphere on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a white castle composed of small cubes."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, truss, lamp", "composed of, white, cubes"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a house with a blue roof.", " of a wooden windmill with a red roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, color, blue", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof, trusses, beams", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a red and white robot."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, horns, features", "color, red, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["cover, torn, open", "cover, black, plastic"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "of a black and white image of a skateboard"], "captions_pred_image": ["a black and white image of a torn bank note", "a victor calculator on a white background"], "question": "which cover is made of plastic", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " of a person breaking through a brick wall."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["buildings, houses, grass", "image, brick, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["light source, fixture, color", "color, sphere, molecule"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, roof, toothbrushes", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a spider-like creature with long arms and legs."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["desk, chair, lamp", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "0434eb3aa73e42a5a2570ec9c1a9b96b"], "properties": ["color, green, orange, star", "green, hat, cream"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a pair of earrings"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no."], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "6b745457e06840119058883b35f78f58"], "properties": ["roof, structure, wall", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, shape, material", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white image of a metal structure", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity is a painting?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small white house with a roof."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["size, color, shape", "roof, color, white"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white ornate airplane design.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, material", "structure, roof, pitch"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["apse, roof, floor plan", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["shape is cube, color is black, white", "door, lock, handle"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is stone - color is blue - shape is arrowhead", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of an arrow", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is made of paper", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small white building with stairs and a white table."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e30374c614f54fdb90f35b96b071349d"], "properties": ["ceiling, light, desks", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d cartoon cat model wearing a blue outfit.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["0d8373961c804794a74971b946ebad8d", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, outfit, cat", "costume, color, black"], "captions_pred_pc": ["a 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a cat wearing a jacket", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a sword and knife.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a, sword, knife", "a room, a cake, a table"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of an egyptian sarcophagus."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["s, plane, house", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a brick wall with grass."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "53f2d948091f417cb580e22469c94db2"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "brick, grass, wall"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a white and blue building with a black roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, red, blue, green", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["hat, cup, bowl", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a wooden table with metal legs and frame."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["Drawer, Handle, Wood", "metal, legs, frame"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a white wooden table"], "question": "which table has metal legs", "label": 1}, {"captions": [" a large building with a roof and windows.", " a spider-like creature with long arms and legs."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, windows, building", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " of a hammer with a long metal handle."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["holder, spring, box", "handle, metal, long"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "6b745457e06840119058883b35f78f58"], "properties": ["color, leg, tail", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it."], "sample_ids": ["b5afccae993346079483507296fbb029", "73c76c4d4fc44b4e8b1a26aea3e0cc79"], "properties": ["shape is square, material is metal, color is rusty", "cylinder, marble, pillar"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white envelope with many small dots on it"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a marble bench with a hole in it"], "question": "which pillar is made of marble", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a white castle composed of small cubes."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["floor plan, ceiling light, color", "composed of, white, cubes"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "18e392c5360146eda498c5edab25b15c"], "properties": ["windmills, silhouette, city model", "frame, beams, trusses"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, white, black, white", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of the roof of a house"], "question": "which entity has a roof structure with brick detailing?", "label": 1}, {"captions": [" of a small wooden house with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, house, wooden", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a house with dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small house with stairs and a roof."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["texture, spikes, eyes", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "bded33af34104b9686b845dfd18309a9"], "properties": ["collection, plane, car", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["- material is plastic- color is white- shape is cylinder", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white photograph of a small town"], "question": "which entity is more like a village", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a four-legged metal workbench with shelves."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, skyline, buildings", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a stone knife.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["material is stone, blade is sharp, handle is wooden", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a knife on a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["frame, roof, trusses", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["hill, field, castle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a castle on a hill", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["- color is red, blue, pink", "ashtray, color, gray"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is made of metal", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a wooden roof structure with a pink roof."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, green, orange, star", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white image of a metal grate"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "88eba412c78a4ced89eb857327653f6c"], "properties": ["building, tree, plane", "lighthouse, building, tower"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a low-poly of a white, shattered sphere."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["water, river, island", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a grayscale of a mountain.", "a low-poly of a white, shattered sphere."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, grayscale, mountain", "sphere, color, texture"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a white of a woman with her arms outstretched.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2cbfaa4fb2d84a6f94e67b4fd6e2f26f", "c3a82df41875402285608ef13a55df57"], "properties": ["image, color, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white silhouette of a person on a skateboard", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a woman with her arms outstretched", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a wooden shed with a gray roof."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, pattern, wall", "roof, color, gray"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the wall?", "label": 1}, {"captions": [" various fruits and vegetables.", " a white castle composed of small cubes."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with wooden framing and trusses."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["house, roof, wooden", "frame, trusses, wood"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a spiral staircase with a railing in a small building."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small white house with a roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, orange, white", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a black rock with writing on it."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "color, black, writing"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white photograph of a rock with writing on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, size", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a small house with a red roof.", " of a black and white striped fly in the air."], "sample_ids": ["085db9059b744673b5623b5338e02196", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, red, house", "black, white, fly"], "captions_pred_pc": ["a black and white dotted square on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["structure, building, archway", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "of a spike on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a paper airplane"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["room, door, shelf", "stair, table, chair"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a pillow featuring a hot dog shape and a bag of chips with a dragon design."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "4ae6ac813d584d12a5d5d608a595bfe5"], "properties": ["a, color, white", "shape is hot dog, design is dragon, color is black"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of an eye with dots"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a black and white photo of a pillow with a soda can on it"], "question": "which object is black?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a house with a blue roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, staircase, window", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small wooden log cabin.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, log", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of an ancient statue"], "question": "which is made of stone", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "c3a82df41875402285608ef13a55df57"], "properties": ["hat, shirt, bearded", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a man with a beard", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, ceiling, kitchen", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, tree, plane", "building, room, sky"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, roof, yellow", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a cell phone", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, poles", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["hat, shirt, bearded", "house, tree, pool"], "captions_pred_pc": ["of a black and white bracelet on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pond?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "b896a0898efe4059a776193c02132129"], "properties": ["a, b, c", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black square tile on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["white dragon with wings, .", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["wings, white, dragon", "striped, white, black"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a small house with a roof.", " a house with a roof and beams."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, house, small", "roof, beams, house"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["giraffe, bench, flower", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house with a pond and situated on a rock."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "92859eb82a344134806b37cc209927c6"], "properties": ["a, bird, lake", "house, rock, pond"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a white and blue building with a black roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "c893118316ee43e18322e5964b2806c5"], "properties": ["building, stairs, shelves", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["leaf, color, shape", "roof, brown, flat"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, material, structure", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a wooden nightstand with a hexagonal pattern, white top, and drawer."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "e6f2dbec6d464b4da4aa47bce242f6e5"], "properties": ["Drawer, Handle, Wood", "Drawer, Pattern, White"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a wooden box with a handle"], "question": "which entity has a white top?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["door, stairs, color", "door, roof, pool"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a small house"], "question": "which door is blue", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["rusty, hat, dartboard", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a black and white photograph of a barrel"], "question": "which object is rusty", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a metal box with a handle"], "question": "which entity is made of metal", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["A, a, a", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a metal structure", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a building with yellow lines."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "f18e34286cf54876874f55ecc9018492"], "properties": ["image, building, stairs", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["face, handle, spout", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, material", "table, stairs, ladder"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a table with a stool on top"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a small white building with stairs and a lid."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a lamp, a syringe, a light pole", "building, stairs, lid"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a child's room in a small house with windows."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "88847a6445044bcbab9611e6028a19b9"], "properties": ["building, stairs, shelves", "room, house, windows"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity has more windows", "label": 1}, {"captions": [" of a black tire.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["b645118910b54e2a9f3a97d5598ce1de", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, black, tire", "black, screen, blank"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a tire on a white background royalty free 3d model preview no.2", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which is not a screen", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["collection, color, black, handle, wooden", "house, building, people"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a small town in the middle of a field"], "question": "which entity does not feature houses", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white castle composed of small cubes."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["yellow, table, roof", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["s, plane, house", "house, rock, bird"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, texture", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", "black and white image of a motorcycle"], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "3e378d360d6b4a03ba69b0273bff73f6"], "properties": ["metal, legs, frame", "color, black, white"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a sculpture in the shape of a bird"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a motorcycle royalty-free 3d model preview"], "question": "which entity is not black and white?", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a house with a wooden-framed roof structure."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, pink, blue", "roof, material, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "c3a82df41875402285608ef13a55df57"], "properties": ["compartments, wall-mounted, vents", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a machine gun.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["gun, barrel, caliber", "roof, ceiling, hole"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a hole in the ceiling", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "5f8c7eda0f464019a4acea243114555d"], "properties": ["size, material, color", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["of a black plastic ring on a white background", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a blue ford escort car.", " a futuristic white sports racing car."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, blue, ford escort", "color, white, futuristic"], "captions_pred_pc": ["of a black leather bracelet on a white background", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of a futuristic sports car"], "question": "which car is white", "label": 1}, {"captions": [" a futuristic white sports racing car.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, futuristic", "striped, white, black"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d model of a stack of books"], "question": "which object is white", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a spiral staircase with railings."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["railing, glass, table", "railings, staircase, spiral"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a red circle, red and white arrow, mouse, and child's handwriting."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "3c233f87bf264968a7f0660b9eac9e4a"], "properties": ["A, a, a", "red, mouse, handwriting"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white drawing of a person's hand holding a pencil"], "question": "which entity has a mouse?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of two rocks with ice elements."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, roof, white, cubes", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, roof, blue", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "411c164757fc4de68dfecb35fa858223"], "properties": ["building, door, clock", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["lighthouse, fountain, crater", "building, balcony, street"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, stairs, house", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a pixelated-textured purple sphere ."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, text", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white square made of dots on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a potted christmas pine tree.", " a broken bowl with a hole in it."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "55e883c09dbf4f22bee0da608128f4f8"], "properties": ["a, color, green", "a, material, bowl"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a bowl on a white background"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a 3d image of a white bowl on a gray background"], "question": "which object is made of a bowl", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a white rocking chair with a curved backrest."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, background", "backrest, curved, yes"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " of an egyptian sarcophagus."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["door, lock, handle", "sarcophagus, material, wood"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["light switch, electrical outlet, furniture", "building, plane, room"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small purple plastic chair with holes.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, plastic, purple", "- material is wood, rusty, horned"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a flat roof structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, flat, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["shape is sphere, color is white, material is plastic", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "4be12bf79ead47a68cd67fc01a6e5c8c"], "properties": ["a, door, suitcase", "a, door, suitcase"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white drawing of a dog in a cage"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a robot standing in front of an open door"], "question": "which entity has a door?", "label": 0}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["hat, shirt, bearded", "meat, bread, sausage"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["black, white, coffee table", "striped, white, black"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a stack of books"], "question": "which object is striped", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, black, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white glass beer mug."], "sample_ids": ["55b26130f1514032be078e13fd982905", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, light, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, house, small", "roof, brown, flat"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small house with a blue roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black line on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["background, color, white", "building, roof, balcony"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " of two rocks with ice elements."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["cover, torn, open", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, bird, green, yellow, blue", "image size, image, royalty"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a green mountain with trees and grass."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, lake, pool", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a mountain with snow on it"], "question": "which entity has more trees", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a brick wall with grass."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "53f2d948091f417cb580e22469c94db2"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "brick, grass, wall"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white photo of a brick wall and a puddle"], "question": "which object is made of brick", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "c3a82df41875402285608ef13a55df57"], "properties": ["striped, white, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a stack of books", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "f1b557775310478893242180defa4d80"], "properties": ["face, handle, spout", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a72700696c3b44ef8101d1e71e914bc9", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["lion, statue, fountain", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d image of a lion statue on a wall", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["building, plane, city", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a city in black and white", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["- material is white- color is white- texture is textured", "building, plane, city"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of two rocks with ice elements."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["water, boat, rock", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "73e7107ff3634516846bccad04c5dc87"], "properties": ["house, roof, blue", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a small white building with stairs and a lid."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["stair, table, chair", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house with wooden framing and trusses."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["chair, table, refrigerator", "frame, trusses, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["food, leaves, shredded paper, rocks", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, material, size", "box, handle, gun"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "c3a82df41875402285608ef13a55df57"], "properties": ["color, umbrella, coat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["house, staircase, window", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a large metal building with a roof and truss structure."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, light", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, material", "building, room, sky"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a small purple plastic chair with holes."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, material, shape", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "small airplane flying in the air."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "903dd2d9d2b7499580a0c1645df88a22"], "properties": ["texture, spikes, eyes", "airplane, fly, air"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white illustration of a panda holding a light bulb"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an airplane royalty-free 3d model"], "question": "which object is flying in the air", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["A, a, a", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a grayscale of a mountain.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "bf18bfd89efd43389781050230467d58"], "properties": ["color, grayscale, mountain", "Lights, number, five"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["ceiling, light, desks", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, green", "house, rock, bird"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["throne, chair, building", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a clay pot with holes in it."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "hole, material, clay"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "star wars stormtrooper "], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["fireplace, bench, log", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a tree with a blue ball and a mushroom."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "4bb8528bd042471f8865cce122a03924"], "properties": ["a, ball, mushroom", "a, ball, mushroom"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white illustration of an airplane flying over a tree"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2"], "question": "which entity has a blue ball and a mushroom?", "label": 0}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "5f8c7eda0f464019a4acea243114555d"], "properties": ["shape is sphere, color is white, material is plastic", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "4a889132cc444d10bfcbf6c760984416"], "properties": ["water, river, island", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a desk and chair"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["graffiti, bench, wall", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["for a black and white image of a boat", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a brick building with a roof structure and roof truss."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "84e8acad28664a738df69d719df9e263"], "properties": ["color, screen, drawer", "roof, structure, truss"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " of a small white building with stairs and a lid."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["light, toilet, faucet", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["four white computer desks in a 3d arrangement.", "a white glass beer mug."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "1d686cbd3e9a4c629a43088658989286"], "properties": ["Arrangement, Desks, White", "color, white, glass"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a series of white 3d objects on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a house with a green, wooden-structured roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["shape is box, color is white, door is present", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["room, bed, desk", "a city, train, dragon"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white building with a red roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a house with wooden framing and trusses."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, yellow, black", "frame, trusses, wood"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, number", "house, tree, hill"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is plastic- shape is dice- color is white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, white, black, white", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a large house with a roof on a platform."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "cb3e09a301b746918a682a595037c7f7"], "properties": ["floor, staircase, balcony", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "bf18bfd89efd43389781050230467d58"], "properties": ["earbud, earpiece, earpiece", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["door, lock, handle", "house, rock, bird"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["building, plane, room", "a, building, coin, ball"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" a small red and white spaceship.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, shape, size", "color, silver, white"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a silver ball on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", "a 3d white cube with windows resembling a building."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, base, warning", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small white building with stairs and a white table."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, roof, wall", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a building", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a building with a staircase"], "question": "which building has a white roof?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", "a yellow and blue toy submarine."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, gazebo, table", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a submarine toy"], "question": "which object is blue and yellow?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "12093c89a60941e7884b252bdc05104c"], "properties": ["castle, island, house", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a white 3d mannequin human head.", "a white glass beer mug."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, mannequin", "color, white, glass"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a spiral staircase with a railing in a small building."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["hat, sword, gun", "staircase, railing, building"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "09f2cf267e954c958828325067bcc36a"], "properties": ["bread, chocolate, cake", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a loaf of bread", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["s, plane, house", "a city, train, dragon"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white image of a toy car"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["lizard, rock, stuffed animal", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["roof, structure, house", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with windows and a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, windows, building", "roof, metal, white"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a large white box"], "question": "which building has a roof made of metal", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, label, shape", "hippo, hind, legs"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "above a black and white illustration of a frog"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["Cabinet, Drawers, Filing", "gold, ring, animal"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is not a ring?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of two rocks with ice elements."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, green, squirt gun", "image is a rock with ice elements"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a four-legged metal workbench with shelves."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["island, mountain, grass", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white map of the island of malta", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, material, pattern", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, white, black, white", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, material", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, stairs, house", "structure, columns, roof"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, table, ceiling", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof truss, insulation, suspended ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a green trash can with graffiti on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["388f3f2e2a98442f9b8a71d3c33defae", "c3a82df41875402285608ef13a55df57"], "properties": ["color, trash, can", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of an object in the water", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a trash can royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["castle, island, house", "flower, color, pink"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small white building with stairs and a white table."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, green, orange, star", "building, stairs, table"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["furniture, staircase, torn-apart", "building, room, sky"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, green, lawn", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small purple plastic chair with holes."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, skyline, buildings", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a city skyline", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white 3d model of a city skyline", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white glass beer mug."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, containers", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", "a white glass beer mug."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, yellow, roof, metal", "color, white, glass"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, color, white", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a large white box"], "question": "which building is whiter", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["resembles, toy, bookshelf", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "ee440fcbc493488e879539d37a8d820e"], "properties": ["a train, a ship, a boat", "island, fish, ice"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["bed, desk, window", "table, staircase, light"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, grass, moss", "low poly, plant, white"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", "star wars stormtrooper "], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, roof, wall", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a star wars stormtrooper"], "question": "which entity has a white color", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a large house with a roof on a platform."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof truss, beams, structure", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["3D, toothpick, skateboard", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", " of a white human skull with broken bone elements."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["image, color, black and white", "color, white, skull"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white image of a knife", "a 3d model of a human skull in white"], "question": "which entity is a white color?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house with a green, wooden-structured roof."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, color, green"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is wood, metal, metal", "lion, statue, fountain"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a metal object"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "46903bf029934b1989bc062dcb0a5531"], "properties": ["roof, truss, lamp", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is plastic- shape is dice- color is white", "box, handle, gun"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["structure, building, archway", "structure, columns, roof"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a building with multiple levels"], "question": "which structure has a roof?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, white, black, white", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a spike on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["s, stick, leaf", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, roof, tray", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a metal object", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d9681d1f6fad42ab8d498cba24339ca8"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "pos machine, credit card machine, cash register"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a glass bottle"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a vintage cash register sitting on top of a table"], "question": "which entity has a pos machine?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, and size", "box, paper clip, lock"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a large metal building with a roof and truss structure."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, orange, white", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, material", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a decorative tile", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a house with a flat roof structure."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "abc52d210d71415296730bb00352ce6f"], "properties": ["computer desk, laptop, monitor", "roof, flat, structure"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a large steel building with a pool."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["room, bed, desk", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["white male 3d mannequin model", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e00010d8f19047c1b76fab1b03c76afa", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, texture", "a, material, clay"], "captions_pred_pc": ["a 3d illustration of a man in a white suit with black spots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a male mannequin royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, door, cross", "house, lake, pool"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a large building"], "question": "which house is on an island?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, ceiling, hole", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["fireplace, bench, log", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "star wars stormtrooper "], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, green, orange, star", "a, color, white"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a person breaking through a brick wall."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["backrest, curved, yes", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, plane, town", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["bed, desk, window", "house, fence, playground"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, grass, moss", "lion, statue, fountain"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["- material is wood, metal, metal", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a spike on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, wall, color", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["s, stick, leaf", "flower, color, pink"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a flower that is the color pink?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, pink", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, windows, building", "roof, truss system, framing"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, light, jewels", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, umbrella, coat", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a tree made of dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a wooden-handled axe .", " a small purple plastic chair with holes."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["handle material is wood, head material is metal, overall length is long", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "bf18bfd89efd43389781050230467d58"], "properties": ["building, material, steel", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a house with a wooden-framed roof structure."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["buildings, houses, grass", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, material, size", "house, fence, dog"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, light, jewels", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d printed figurine of an alien creature"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["earbud, earpiece, earpiece", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, roof, tray", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a metal object", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a white rocking chair with a curved backrest."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["flower, rock, tree stump", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a backrest", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, building, staircase", "floor, staircase, balcony"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " of a white human skull with broken bone elements."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["metal, legs, wheels", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a human skull in white"], "question": "which entity is not a human skull?", "label": 1}, {"captions": ["a yellow circle with a black outline.", "a low-poly of a white, shattered sphere."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, outline, circle", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a 3d model of a cracked egg"], "question": "which object is white", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["a city, train, dragon", "a city, train, dragon"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white image of a toy car"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 0}, {"captions": [" a small green chair with a slanted back and white base.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, white, base, slanted", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a chair", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a small table with a staircase"], "question": "which object has a light integrated into it", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["boat, table, chairs, umbrella, solar panel", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, texture", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a gray, metal pillar/cylinder."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "of a black candle on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["acropolis, city, building", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, material, wood", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small purple plastic chair with holes."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a low poly 3d model of a rock", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a white chest of drawers with legs."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["roof structure, truss, ceiling", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["turrets, flags, towers", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house with a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["house, lake, pool", "roof, house, small"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["a box, a cup, a bottle, a jar", "table, bench, deer"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "402601779d1d4146b4cde106dfff1b27"], "properties": ["computer desk, laptop, monitor", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["room, bed, desk", "color, silver, white"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a silver ball on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a small wooden house with a roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["color, door, window", "roof, house, wooden"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, yellow, chimney", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a white of a spaceship and building."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, temperature, england", "image, building, spaceship"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a white rocking chair with a curved backrest."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["hat, toy, gnome", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["color, light, jewels", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a white of a spaceship and building.", "a white of a spaceship and building."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["image, building, spaceship", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 0}, {"captions": [" a small house with a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, house, small", "roof, trusses, beams"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a building"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "b896a0898efe4059a776193c02132129"], "properties": ["color, plane, sky", "- material is stone, metal, concrete"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is plastic- color is white- shape is cylinder", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", "a white of a man with arms outstretched."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a low-poly of a white, shattered sphere."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, skyline, buildings", "sphere, color, texture"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["hat, mustache, chef", "table, bench, deer"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a chef's hat", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", " a house with a wooden-framed roof structure."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["type, relief, statues", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a white and blue building with a black roof."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, fence, dog", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["building, room, sky", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a molecule with two pink and blue spheres."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "926fb2e23c56440a86287e98c1440336"], "properties": ["roof, beams, chimney", "color, shape, size"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of three spheres on a white background"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["texture, spikes, eyes", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a flower", "of a spike on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a paper airplane"], "question": "which entity is a cylinder?", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a small wooden house with a green roof."], "sample_ids": ["c27b018330da406680e58b94266c310b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["frame, material, wood", "roof, color, green"], "captions_pred_pc": ["a black line on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "12093c89a60941e7884b252bdc05104c"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, white, furniture, black", "room, furniture, window"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, pattern, material", "earphones, wire, instrument"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "of a curved metal rod on a white background"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "766a075b4760433bafdbe88bee546796"], "properties": ["axe, hammer, spoon", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["of a black lace belt on a white background", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wall?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "bf18bfd89efd43389781050230467d58"], "properties": ["building, tree, plane", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a human skull.", " of a wine corkscrew"], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, b, c", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": ["white 3d tank model", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color is white, model is 3d, name is tank", "a train, a ship, a boat"], "captions_pred_pc": ["a close-up view of the back of the phone case", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["hat, food, bowl", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, blue, green, yellow, blue", "- material is wood, rusty, horned"], "captions_pred_pc": ["a pair of sneakers on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "a2354f13774340d392fbf33564934aab"], "properties": ["building, door, clock", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a17477b445b3443189dad22f768b888b"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a roof and beams."], "sample_ids": ["085db9059b744673b5623b5338e02196", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, red, house", "roof, beams, house"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, material", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a white and blue building with a black roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, roof, wooden", "color, white, blue, roof, black"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "f1b557775310478893242180defa4d80"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "92498f398e244020a867686729633610"], "properties": ["sandbox, sand bucket, wooden blocks", "a, house, cat, dog"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["cup, bottle, chessboard", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a harp in a white room"], "question": "which entity has a lamp?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, base, warning", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a white box, a white lid, and a white container"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["f1b557775310478893242180defa4d80", "703dce44052e48cfb024bceb08141554"], "properties": ["shack, roof, door", "roof, beams, frames"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a wooden structure"], "question": "which house has a roof", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a wooden shed with a gray roof."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["metal, legs, wheels", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, structure, truss", "roof, brown, flat"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "46903bf029934b1989bc062dcb0a5531"], "properties": ["yellow, table, roof", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house on a hill in a field."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["floor plan, heating system, ceiling light fixture", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", "a watch with a blue and black dial, black and white face, grey strap, and metal band."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "625b0a764d0f40d48f3140acdd644823"], "properties": ["dial, face, band", "dial, face, band"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "for a person wearing a black and white t-shirt with a logo on it"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a close-up view of the back of a watch strap on a gray surface"], "question": "which watch has a blue and black dial", "label": 0}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, room, ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a four-legged metal workbench with shelves."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["3D, toothpick, skateboard", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "for a black and white illustration of a cross"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["chair, table, refrigerator", "desk, chair, table"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a staircase in a room"], "question": "which entity has a desk", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["yellow, shape, wingspan", "metal, rusted, paper"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["55b26130f1514032be078e13fd982905", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": [" a small black and white cube.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["770e577c9795435898209fd24191635b", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["image, color, light", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white 3d model of a small town", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a small wooden house."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["floor, table, wall", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a green mountain with trees and grass."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["two-story, roof, building", "mountain, grass, tree"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color, blue, components", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is not a circuit board?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, rock, pond", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["97f487941d26472294e005fa97c403be", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, green", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small house with a blue roof.", " a two-story small apartment building with a roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, color, blue", "two-story, roof, building"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["desk, chair, table", "box, paper clip, lock"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" of a wooden chair.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b2fc4bd184944704ad43d3a31817a676", "97e000ff41094665afd94ea565da8b13"], "properties": ["wood, chair, seat", "roof, material, wood"], "captions_pred_pc": ["a close-up view of the bristle brush on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden cube."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "ad3f96bc1c7e4aa88d71ae3dfafd0ad1"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape is cube, material is wood, color is brown"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white square made of dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a wooden crate"], "question": "which object is made of wood", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a wooden roof structure with a pink roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, red, blue, structure", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, color, red", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "db74ee1621464be1b164be26a1af050e"], "properties": ["building, floorplan, gym", "window, arches, wall"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, green, orange, star", "house, fence, playground"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, head, mask", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which object has a flat roof", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "bded33af34104b9686b845dfd18309a9"], "properties": ["building, tower, color", "table, staircase, light"], "captions_pred_pc": ["for a black square on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["shape is cylinder, color is white, material is plastic", "bowl, pottery, headpiece"], "captions_pred_pc": ["of a spike on a white background", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["building, stairs, shelves", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, grass, moss", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a cross", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is white, yellow, plastic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green skull and sphere.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, skull, sphere", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "bf18bfd89efd43389781050230467d58"], "properties": ["picture, plaque, person", "Lights, number, five"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["furniture, room, kitchen", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["small purple teapot with a hook.", " a metal building with a purple roof and cage structure."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["color, purple, hook", "roof, purple, structure"], "captions_pred_pc": ["a black and white drawing of a bowl", "for a black and white image of a bench"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a building with a metal roof"], "question": "which object is made of metal", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, and material", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, plane, room"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["building, roof, balcony", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large steel building with many columns and a pool."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["house, lake, pool", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["shape is hot dog, design is dragon, color is black", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["roof, color, pink", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof that is made of metal", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "bb01282cb8b64470866260455b0b46fa"], "properties": ["- color is white - shape is box - material is plastic", "liquid, ice, lid"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a plastic bottle on a white background"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house with a roof and beams."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, roof, green", "roof, beams, house"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a house with a roof and beams."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, color, white", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a box, a cup, a bottle, a jar", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a plastic box with several compartments"], "question": "which container is made of plastic", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a spiral staircase with a railing in a small building."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, white, red, pink", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["frame, beams, trusses", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a red roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["085db9059b744673b5623b5338e02196", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, red, house", "roof, brown, flat"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small building with a staircase in a room."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["table, stairs, ladder", "room, staircase, building"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["apse, roof, floor plan", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a harp in a white room"], "question": "which entity has a curved wall?", "label": 1}, {"captions": ["white korean word on a gray background.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, background, font", "roof, color, yellow"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shattered, resembles, broken phone", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, roof, blue", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a small blue robot with a windmill."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, hat, glasses", "color, blue, robot"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": [" of a yellow bird with black eyes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["frame, beams, trusses", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a black and white striped fly in the air."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, roof, block", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white photograph of a fly"], "question": "which entity is a fly?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "d81d13362ae04371bb2cba46e4939665"], "properties": ["stair, table, chair", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a staircase in a room", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, ceiling, kitchen", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a, plane, small plane", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a large orange pumpkin."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["composed of, white, cubes", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "411c164757fc4de68dfecb35fa858223"], "properties": ["a, shirt, pants", "resembles, sea urchin, shell"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a sea urchin"], "question": "which entity is not a shell?", "label": 0}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "a2354f13774340d392fbf33564934aab"], "properties": ["roof structure, truss, ceiling", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof that is not yellow?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a large metal building with a roof and truss structure."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, pen, logo", "roof, truss, structure"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a metal grate on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "97e000ff41094665afd94ea565da8b13"], "properties": ["green, hat, cream", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, pattern", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, rock, paper", "a, material, clay"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, material, ceramic", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a house with a wooden-framed roof structure."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["broom, shovel, fireplace", "roof, material, wood"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a low-poly of a white, shattered sphere."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, and material", "sphere, color, texture"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a pile of mint green soap cubes.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, mint, soap", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["- material is plastic- color is white- shape is cylinder", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a curved line"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a harp in a white room"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["Drawer, Pattern, White", "black, roof, green"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a small black building"], "question": "which entity has a roof that is not black?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a wooden staircase with a railing and table."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "956247bea850458199c651037d4b1d7f"], "properties": ["- color is white- shape is cubes- number is 1", "railing, table, staircase"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a table with a staircase"], "question": "which object has a railing?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, green, orange, star", "color, black, visor"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black motorcycle helmet with a visor on top"], "question": "which object is black?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is turtle, color is green, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, color, white", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a green and black robot with cube-like features.", " a white castle composed of small cubes."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of cubes", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["base material is wood, color is red, message is welcome to northwich", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["cup, bottle, chessboard", "throne, stairs, tree"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": [" a table with a red and white striped base.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1c5f4bb610644327ad0db547adb5499e", "bded33af34104b9686b845dfd18309a9"], "properties": ["base, color, red, white", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of an object that is made up of many small dots", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white desk with two legs", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small wooden house with a green roof."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["s of, snowboard, shoes, mask", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["size, material, lighthouse", "a, material, steel"], "captions_pred_pc": ["a black and white photo of a water droplet", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["frame, trusses, wood", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " of a destroyed building with a watercolor painting of a dilapidated house."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "5a33f024faf145ac80cdadcdfef8a797"], "properties": ["image, building, painting", "image, building, painting"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of a building"], "captions_pred_image": ["a black and white photograph of a damaged house", "a black and white photograph of a damaged house"], "question": "which image shows a painting of a dilapidated house?", "label": 0}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["earbuds, light, ring", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["metal, laptop, light fixture", "hat, candy, strawberry"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, material, shape", "a room, a cake, a table"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["hat, food, bowl", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a green mountain with trees and grass."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, structure, truss", "mountain, grass, tree"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " of a white chest of drawers with legs."], "sample_ids": ["21639082215b4b179d574d2408124838", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, room, furniture", "chest of drawers, legs, white"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d rendering of a white dresser"], "question": "which chest of drawers has legs", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "4389909667db472ea9a57a70eb940fa4"], "properties": ["floor plan, heating system, ceiling light fixture", "building, window, skeleton"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["case, player, football", "a, material, clay"], "captions_pred_pc": ["of a black and white image of a pair of boots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["houses, trees, road", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["roof truss, chimney, suspended ceiling", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "f1b557775310478893242180defa4d80"], "properties": ["shape is hot dog, design is dragon, color is black", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["a, desk, laptop", "building, plane, city"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "c9c786f133f54d5e8d99bfc1a588df41"], "properties": ["stacked, racks, toy train", "stacked, racks, toy train"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white photo of a person standing in front of a white wall"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a ship's propeller on a white background"], "question": "which object has a toy train?", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["graffiti, chinese writing, door", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " of two rocks with ice elements."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, fence, playground", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small red renault clio car.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "67701617472e4051b95955c596561aac"], "properties": ["color is red, make is renault, model is clio", "color, white, 3d-printed"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a pair of white plastic shoes on a gray background"], "question": "which is not a car", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["frame, truss, roof", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a twisted white rope."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7dce7f24ef2d4f6e88e3bf5cee50e603"], "properties": ["color, shape, and size", "color, white, twist"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a spiral on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white rope tied into a knot on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small triangular-shaped object."], "sample_ids": ["d6087023095446fbadef1721478373b2", "2d02985030804209a26c2c53b96a06f9"], "properties": ["door, roof, window", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of an apartment building", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small wooden house."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, roof, toothbrushes", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["house, roof, green", "roof, brown, flat"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "aae2c42740a04fd68068f5707111d26f"], "properties": ["cup, bottle, chessboard", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a marble sculpture of an angel"], "question": "which image is a sculpture of an angel on a wall?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["low poly, llama, kangaroo", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, ceiling, hole", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image is rock formation with a white cliff and a rock", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, gazebo, table", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a spider-like creature with long arms and legs."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- color is red, blue, pink", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house with a green, wooden-structured roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof truss, beams, structure", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a child's room in a small house with windows."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "88847a6445044bcbab9611e6028a19b9"], "properties": ["chair, table, refrigerator", "room, house, windows"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity is a room?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "22228e69a1704e58af5c9dd184843508"], "properties": ["yellow, shape, wingspan", "yellow, shape, wingspan"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "above a 3d rendering of a human body on a white background"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a white kite flying in the sky on a gray background"], "question": "which kite is yellow?", "label": 0}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["island, mountain, grass", "house, tree, hill"], "captions_pred_pc": ["a black and white map of the island of malta", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a black and white image of a house in the middle of a field"], "question": "which island has a house?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, b, c", "a, outfit, green"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a person jumping on a trampoline in slow motion"], "question": "which entity has a green outfit", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "411c164757fc4de68dfecb35fa858223"], "properties": ["a, b, c", "resembles, sea urchin, shell"], "captions_pred_pc": ["for a black square tile on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a large steel building with a pool."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["shape is box, color is white, door is present", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small, snow-covered house.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, snow, cover", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a piece of broken glass on a white background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a fish with green spots, green eyes, green and blue fins, and green and blue stripes."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "adee50e7a19c4c219e5a2edac18fb28e"], "properties": ["color, shape, and material", "Eye color is green, Spot color is green, Fin color is green and blue"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a fish on a white background"], "question": "which fish has green eyes?", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["mannequin, scarf, color", "house, tree, pool"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a small building with camouflage pattern in a field."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0c75e4ce947a4c25ad1b7e5cb4e7a9a1"], "properties": ["color, shape, and size", "building, pattern, field"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 or fewer words a black and white image of a couch"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small building in the middle of a desert"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a house with a roof and beams."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["bedroom, bathroom, bed", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a white fox."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, white, black, white", "color, white, fox"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a fish"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, gun", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d printed figurine of an alien creature"], "question": "which entity is a picture of a man in a suit and mask?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, umbrella, coat", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["cover, black, plastic", "arrow, red, white"], "captions_pred_pc": ["of a black and white image of a skateboard", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a spiral staircase"], "question": "which object has a red arrow", "label": 1}, {"captions": [" a black and gold pistol.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, black, gold", "color, green, squirt gun"], "captions_pred_pc": ["a black and white image of a toothbrush", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a 3d white cube with windows resembling a building."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "4a07a5293f024bb0a353954a056ef626"], "properties": ["house, fence, dog", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a cube"], "question": "which entity is a building?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "096e42b466ec438d95c5d89a85191534"], "properties": ["building, roof, white, cubes", "white, rock, shell"], "captions_pred_pc": ["above a black and white image of a map", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["runner, bed, bench", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["house, roof, green", "a, building, roof"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "a white 3d-printed skull model."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "10fb0de0bec64ec8a424e0b404670ba5"], "properties": ["- material is plastic- color is white- shape is cube", "color, white, model"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "in 15 words or less a black and white drawing of a fish"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of an animal's head on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a person breaking through a brick wall."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, green, lawn", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small triangular-shaped object."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, skyline, buildings", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a white human skull with broken bone elements."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["a, b, c", "color, white, skull"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a stone wall featuring carvings and statues."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["house, building, people", "carving, statue, wall"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, yellow, blue", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a submarine toy", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a child's room in a small house with windows.", "a white of a house with a hole in the ceiling."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["room, house, windows", "image, house, ceiling"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a green mountain with trees and grass.", " of two rocks with ice elements."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["mountain, grass, tree", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, sword, gun", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, letter", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the letter 'x'", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "b896a0898efe4059a776193c02132129"], "properties": ["color, tan, brown, orange", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white illustration of an office chair", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["white of a small stool and toilet paper holder.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["b7b32b690a2942878e3bd386de75d29d", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, white, stool", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of an object in the shape of an open umbrella", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a toilet paper holder royalty free 3d model preview no. 1", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, shape, and size", "broom, shovel, fireplace"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["house, lake, pool", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a box, a cup, a bottle, a jar", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a white of a spaceship and building."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof truss, insulation, suspended ceiling", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a house with a roof"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["40921ffd69db479294554d261daf3035", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["floor, railing, staircase", "floor, ceiling, poles"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a building with multiple levels"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, door, window", "island, mountain, grass"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- material is metal- color is silver- texture is textured", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "92498f398e244020a867686729633610"], "properties": ["moss, mushroom, grass", "a, house, cat, dog"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph of a house?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["frame, roof, trusses", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a bottle containing pink liquid.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["176d3a863ccb48eeb84ab4e85054525d", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, bottle, liquid", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a bottle with bubbles", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a clear glass bottle on a gray background royalty free 3d model preview no 2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, red, blue, structure", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a circular fence with black and white stripes"], "question": "which structure is black and white?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, beams, chimney", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["balcony, stairs, house", "floor, staircase, table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, handle, straps", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "b494049bb15440949e465d54a72b2f02"], "properties": ["building, roof, yellow", "building, floorplan, gym"], "captions_pred_pc": ["a black and white image of a cell phone", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a white building with two floors"], "question": "which building has a floor plan of a gym", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "bb01282cb8b64470866260455b0b46fa"], "properties": ["color, shape, texture", "liquid, ice, lid"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a plastic bottle on a white background"], "question": "which entity has a lid", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "bf18bfd89efd43389781050230467d58"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small building with windows and a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "6b745457e06840119058883b35f78f58"], "properties": ["roof, windows, building", "roof, color, blue"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a house with a steeple on top"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a building with a metal and wooden pole structure."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, bench, rack", "structure, material, pole"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color is white, yellow, plastic", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a blue roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "4945571db2d8467cb2aed8dd0d891c2e"], "properties": ["color, temperature, england", "color, temperature, england"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "of a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of the earth with a rainbow in the sky"], "question": "which entity has a temperature chart?", "label": 0}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a small white building with stairs and a lid."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["bedroom, bathroom, bed", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["height, material, shelves", "mountainous, landmass, state"], "captions_pred_pc": ["a black ladder on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white building with a red roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, red, pink", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an office building"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a clay pot with holes in it."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["earbud, earpiece, earpiece", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "9968e06a62e8487ea33460e640abc573"], "properties": ["- color is white - shape is box - material is plastic", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, structure, wall", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["table, staircase, light", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a table with a staircase"], "question": "which entity has a staircase with a light?", "label": 0}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "5414d75e47104589837f3df8b6de6d22"], "properties": ["a, color, white", "beige, white, round"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["size, color, shape", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small house with a roof."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["buildings, houses, grass", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["d6087023095446fbadef1721478373b2", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["door, roof, window", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with a roof"], "question": "which building has a roof structure", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, staircase, window", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": ["a pair of yellow pliers.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "c4c09479570943e2845fbd4c6a450568"], "properties": ["color, yellow, pliers", "castle, island, house"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a small house on an island"], "question": "which entity is not a pair of pliers?", "label": 0}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, black, shade, black", "roof, truss, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a blue and white bird.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, shape, size", "color, silver, white"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "a black and white illustration of a circle with dots"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a 3d model of a silver ball on a gray background"], "question": "which entity is white", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " of two rocks with ice elements."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["shape, color, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a pair of socks", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c3a82df41875402285608ef13a55df57"], "properties": ["house, plane, town", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a damaged building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "a17477b445b3443189dad22f768b888b"], "properties": ["cylinder, marble, pillar", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a large steel building with a pool."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, color, black and white", "building material, pool, steel"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "white airplane in flight."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7dccc62d436c40efa2ea23b9c8179451"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "airplane, white, in flight"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a 3d model of an airplane on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a white airplane toy on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, plane, town", "house, tree, pool"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a white rocking chair with a curved backrest."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["location, field, gravestone", "backrest, curved, yes"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a large white and metal building with a metal roof structure."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["door, stairs, color", "roof, metal, white"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a molecule with two pink and blue spheres.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["926fb2e23c56440a86287e98c1440336", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a molecule with the word 'rono' written in black ink on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of three spheres on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a wooden shed with a gray roof."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["resembles, toy, castle", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a spider-like creature with long arms and legs."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, white, black, white", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " a black and white striped box."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["wing, color, white", "color, black, white"], "captions_pred_pc": ["above a black and white image of a bird in flight", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d image of a black and white striped surface"], "question": "which object has a striped pattern", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a house with wooden framing and trusses."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- color is red, blue, pink", "frame, trusses, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "a17477b445b3443189dad22f768b888b"], "properties": ["metal, legs, frame", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a house with a roof structure and toothbrushes."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["flower, rock, tree stump", "house, roof, toothbrushes"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d rendering of a white box with a lot of blades"], "question": "which entity is a building?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["hat, bag, blanket", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a wooden roof structure with a pink roof."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["of a black and white doily on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "205251e4277e41d1aae6b2358267ad56"], "properties": ["resembles, toy, bookshelf", "image, color, white"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": ["a yellow circle with a black outline.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "b896a0898efe4059a776193c02132129"], "properties": ["color, outline, circle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small building with windows and a roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["background, color, white", "roof, windows, building"], "captions_pred_pc": ["a black line on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["97f487941d26472294e005fa97c403be", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, white, green", "glass, metal, balls"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of an office building", "a clear acrylic foosball table"], "question": "which object is made of glass and metal?", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "c3a82df41875402285608ef13a55df57"], "properties": ["color, image, subject", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a large metal building with a roof and truss structure."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, light, jewels", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "a17477b445b3443189dad22f768b888b"], "properties": ["a, window, statue", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a black floor lamp with a wooden round base, black shade, and attached cord.", " of a small white building with stairs and a lid."], "sample_ids": ["03db87a02e3847f8a712a362de9a314d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["Base material is Wooden, Shade color is Black, Cord color is Black", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a bomb on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black floor lamp with a round shade on top", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " of a house with a roof."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["ceiling, beams, light", "roof, house, roof"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a wooden-cased radio."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["graffiti, chinese writing, door", "case, material, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a large building with a roof and windows."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, light, jewels", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small wooden house with a green roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, structure, wall", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a blue pickup truck", "a white hat, plastic cup with a lid, and a bowl."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "4a9d79b48eda4ad797a652ee01b1b026"], "properties": ["color is blue, make is ford, model is f150", "hat, cup, bowl"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a funnel"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a white plastic hat and bowl on a gray background"], "question": "which object is not a cup?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["yellow, table, roof", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, plane, sky", "paint, rust, concrete"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": [" a white knight's helmet.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9d89aae6a7c84bbc97c63c06055ecedd", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, helmet", "a, material, clay"], "captions_pred_pc": ["a black and white image of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a person's head wearing a helmet", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "b896a0898efe4059a776193c02132129"], "properties": ["color, skyline, buildings", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small house with a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, structure, truss", "roof, house, small"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a wooden billiard table with legs."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["backrest, curved, yes", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, material", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black bracelet with dots on it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, pants, shirt", "house, pool, balcony"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, truss, lamp", "house, roof, blue"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["floor plan, heating system, ceiling light fixture", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a large orange pumpkin."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["color, light, jewels", "orange, large, pumpkin"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a pumpkin on a white background"], "question": "which object is orange", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "red heart-shaped object."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "shape, heart, red"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a stone wall with a window and a clock."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["house, tree, pool", "window, clock, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, gun", "door, roof, pool"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["liquid, ice, lid", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["house, rock, pond", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a four-legged metal workbench with shelves."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- material is plastic- color is white- shape is cylinder", "Four legs, Metal, Shelf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "for a black and white illustration of a cross"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, metal, white", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a house with a roof"], "question": "which building has a roof truss", "label": 1}, {"captions": [" of a blue pickup truck", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color is blue, make is ford, model is f150", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a 3d model of a table with a stool on top"], "question": "which object has a ladder", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["size, color, shape", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["- color is white - shape is box - material is plastic", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a white, open shelving unit"], "question": "which entity is made of plastic", "label": 0}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "cafc467aff2643e8b70149c4944263ee"], "properties": ["size, material, wheels", "wing, knife, boat"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object is smaller", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a sea urchin"], "question": "which entity is made of a material that is white and brown?", "label": 1}, {"captions": [" of a person with outstretched arms", " of two rocks with ice elements."], "sample_ids": ["fc785c3c22794ccb9c8a58c79ac5bec6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["arms, outstretched, person", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a pair of eyes", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a white of a spaceship and building."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, room, ceiling", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, building, staircase", "table, stairs, ladder"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a table with a stool on top"], "question": "which table has stairs", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, building, people", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a table with a stool on top"], "question": "which entity has fewer houses", "label": 1}, {"captions": [" of a black shark", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["black, mouth, teeth", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a large house with a roof on a platform."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, air conditioner, house", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, color, purple", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, front, road", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a clay pot with holes in it."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, structure, house", "hole, material, clay"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, white, plastic", "metal, legs, wheels"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["shape is hot dog, design is dragon, color is black", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, white, red, pink", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, black, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["turrets, flags, towers", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "6b745457e06840119058883b35f78f58"], "properties": ["lighthouse, fountain, crater", "roof, color, blue"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house with a green, wooden-structured roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, material, frame", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house with a triangular roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["red, eyes, rocket", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house with stairs and a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["roof, structure, wall", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, red", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "a2354f13774340d392fbf33564934aab"], "properties": ["building, plane, room", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["Steel, Color, Yellow", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a wall featuring various potted plants."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "54d03259a316434e9c670a52a7e5a92e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image, wall, plants"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a wall with bullet holes"], "question": "which image shows a wall with plants on it?", "label": 1}, {"captions": [" a large rock with a hole in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, texture", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a small white building with stairs and a lid."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["screen, monitor, stand", "building, stairs, lid"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["case, player, football", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white image of a pair of boots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small building with a roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, building, small", "roof, color, pink, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white square with dots all over it"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a wooden billiard table with legs."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, material, wheels", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["image size, image, origami", "roof, color, yellow"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, city, train", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a stone wall with a window and multiple stone arches.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["db74ee1621464be1b164be26a1af050e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["window, arches, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an old brick wall", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a clay pot with holes in it."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["building, tree, plane", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "a17477b445b3443189dad22f768b888b"], "properties": ["color, alternator, fan", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["shape is cylindrical, color is silver, material is metal", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", "a white glass beer mug."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "1d686cbd3e9a4c629a43088658989286"], "properties": ["windmills, silhouette, city model", "color, white, glass"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with wooden framing and trusses."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, black, white", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a clay pot with holes in it."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["house, tree, pool", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["building, roof, white, cubes", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small house with a blue roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["building, material, steel", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which building has a blue roof", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a small house with stairs and a roof."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, leg, tail", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a sword on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, red, pink", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["roof truss, insulation, suspended ceiling", "paper, hole, sign"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["buildings, houses, grass", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, hat, handle", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, fence, snowy", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, material, steel", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is plastic- color is white- shape is cube", "lion, statue, fountain"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a metal object"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, head, white and brown", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which mushroom is in grass", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a small wooden house with a green roof."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["pattern, color, shape", "roof, color, green"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, color, green", "building, plane, room"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small pink stone pillar/column.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, material, color", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a small square with black dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stone column on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, grass, moss", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a large steel building with many columns and a pool."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, structure, truss", "building material, pool, steel"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "c3a82df41875402285608ef13a55df57"], "properties": ["hat, mustache, chef", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chef's hat", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, white, pen, logo", "houses, trees, road"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f1b557775310478893242180defa4d80", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["shack, roof, door", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a large metal building with a roof and truss structure."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "b85a99699ccd4bcba213322113bb253d"], "properties": ["door, white, structure", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a long metal fence"], "question": "which structure has a roof and truss structure", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["resembles, toy, bookshelf", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["a train, a ship, a boat", "roof, truss system, framing"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of the roof of a house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a machine gun.", " of a small white building with stairs and a lid."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["gun, barrel, caliber", "building, stairs, lid"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, roof, soup", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor?", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["Brown, metal, lock", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a submarine with a person on it.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["ab3cef03ce384d5e9175ecf664d5d536", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["person, submarine, surface", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white mushroom on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person riding a surfboard royalty free 3d model", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal on a rock?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a clay pot with holes in it."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, number", "hole, material, clay"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white of a small archway gate.", " a white building with a red roof."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["image, color, white", "color, white, roof, red"], "captions_pred_pc": ["above a black and white illustration of an arch", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of an office building"], "question": "which image is of a white building?", "label": 1}, {"captions": [" a black building.", " a house with wooden framing and trusses."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, black, building", "frame, trusses, wood"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["desk, chair, lamp", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " of a wooden windmill with a red roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, shape, material", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["shape, bathroom, refrigerator", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, mattress, pillows", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "d81d13362ae04371bb2cba46e4939665"], "properties": ["house, roof, green", "hat, bow, arrow"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building with a black roof", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "40921ffd69db479294554d261daf3035"], "properties": ["mossy, rock, grass", "floor, railing, staircase"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a character wearing glasses and a hat."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, temperature, england", "hat, glasses, character"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, color, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " of two rocks with ice elements."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["mannequin, scarf, color", "image is a rock with ice elements"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, shape, and size", "building, floorplan, gym"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white pendant floor lamp.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["073a3fb2e9bd42d1affed98ed2d64794", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["height, lamp, shade", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black circle on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a light bulb on a pedestal royalty free 3d model preview no.", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, dress, purse", "hat, color, tan"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a spider on a white background", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, house, small", "house, tree, hill"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a brick building with a roof structure and roof truss."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "84e8acad28664a738df69d719df9e263"], "properties": ["roof truss, insulation, suspended ceiling", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure and roof truss?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["liquid, ice, lid", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, light", "a, material, clay"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a large house with a roof on a platform."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, yellow, chimney", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a house with a green, wooden-structured roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["face, handle, spout", "roof, color, green"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house with a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["house, roof, green", "roof, house, small"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house"], "question": "which house has a green roof", "label": 0}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["door, lock, handle", "building, plane, room"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, blue", "structure, roof, pitch"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["water, boat, rock", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, table, blocks", "a, color, white"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a desk and chair"], "question": "which entity has a table?", "label": 0}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["stair, table, chair", "roof, air conditioner, house"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a large metal building with a roof and truss structure."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, text", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a metal grate on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, base, warning", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["roof, ceiling, hole", "paper, hole, sign"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["yellow, table, roof", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["water, river, island", "house, plane, town"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small purple plastic chair with holes."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, plane, small plane", "color, plastic, purple"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "f1b557775310478893242180defa4d80"], "properties": ["lamp, harp, bowl", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "e694d53545d449319a64cceb0280c3c6"], "properties": ["resembles, toy, bookshelf", "3d, slide, swing"], "captions_pred_pc": ["a black and white image of a book cover", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, lake, boat", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, plane, town", "house, fence, dog"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, stairs, shelves", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a house on a rock"], "question": "which entity is on an island?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with wooden framing and trusses."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, grass, moss", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small white house with a staircase and a window."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "9eb88d17310d42dda9e17883e9922525"], "properties": ["cover, torn, open", "house, staircase, window"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a wooden shed with a gray roof."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, trusses, beams", "roof, color, gray"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small grassy island in the water.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["location, water, island", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white image of a map", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "4e82177059204292899fa7415164a05e"], "properties": ["graffiti, wall, wheelbarrow", "yellow, tires, load"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, table, ceiling", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "97f487941d26472294e005fa97c403be"], "properties": ["house, lake, pool", "color, white, green"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a box, a cup, a bottle, a jar", "box, handle, gun"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a metal box with a handle"], "question": "which box has a handle", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a multicolored metal building structure with a roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, metal, white", "color, roof, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a barn structure"], "question": "which structure has a roof made of metal", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["metal, rusted, paper", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a red and white robot."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, roof, green, frame, red", "color, red, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["roof, purple, suspended", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with many windows"], "question": "which roof is blue", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["house, roof, blue", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of the roof of a house"], "question": "which house has a roof with truss system", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, color, shape", "a, material, clay"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "b896a0898efe4059a776193c02132129"], "properties": ["graffiti, bench, wall", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a boat", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "e694d53545d449319a64cceb0280c3c6"], "properties": ["yellow, table, roof", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a playground slide"], "question": "which entity has a slide?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a white of a man with arms outstretched."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a wooden barrel.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["77ceb4db6ddc4a6c8c4a83ab1519e78b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["material is wood, shape is barrel, color is brown", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a gray and white barrel", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is made of paper", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a white of a woman with her arms outstretched."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["a lamp, a syringe, a light pole", "image, color, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a 2d image?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a large steel building with a pool."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof truss, beams, structure", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["4f21fa937959487a96350af527d75421", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["window, frame, room", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["chair, table, refrigerator", "roof, color, yellow"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["houses, trees, road", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a house with a green, wooden-structured roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["image, building, painting", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a house with a triangular roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a stone wall featuring carvings and statues."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "carving, statue, wall"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d image of a group of statues on a wall"], "question": "which wall features carvings and statues", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "09f2cf267e954c958828325067bcc36a"], "properties": ["structure, building, archway", "island, terrain, rocks"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a small", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, floor, columns", "building, color, black and white"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, pink, eyes", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["hat, color, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a doll made of beads", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a robot arm on a metal stand.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["2370f3522d4446eaabd1a319d10b7e22", "1da865c75a5e4a57a17652975dae5474"], "properties": ["arm, stand, metal", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a cube with many small dots on it", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendered image of a robotic arm on a stand", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, light", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color is white, material is plastic, shape is bottle", "wood, board, shelf"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a witch wearing a black and white hat."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, shape, and size", "color, black, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["shape is cube, color is black, white", "shape is box, color is white, door is present"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a white, open shelving unit"], "question": "which building is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a large house with a roof on a platform."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "cb3e09a301b746918a682a595037c7f7"], "properties": ["desk, chair, table", "roof, platform, house"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, card, case", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a wooden-framed roof structure."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, green, lawn", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["image is rock formation with a white cliff and a rock", "house, table, chair"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d rendering of a small white table with a chair"], "question": "which entity is a building?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["building, color, yellow-green", "flower, color, pink"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "40921ffd69db479294554d261daf3035"], "properties": ["balcony, stairs, house", "floor, railing, staircase"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, red, blue, green", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["ceiling, light, desks", "books, paper, lamp"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white photograph of a toilet paper holder"], "question": "which entity has a lamp?", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a wooden roof structure with a pink roof."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, tower", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a robot with a blue, purple, and white body."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["backrest, curved, yes", "body, color, white"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "above a black and white image of a robot"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body", "label": 1}, {"captions": [" a bloody axe with a red and wooden handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["86463fea77bb445e87ab70d11018cc7a", "b896a0898efe4059a776193c02132129"], "properties": ["handle, color, wood", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white axe on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an axe on a white background royalty-free 3d model preview no.1", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a house with a wooden-framed roof structure."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, mouth, eyes", "roof, material, wood"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["frame, trusses, wood", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "096e42b466ec438d95c5d89a85191534"], "properties": ["background, color, white", "white, rock, shell"], "captions_pred_pc": ["a black line on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, air conditioner, house", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a window", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a roof structure"], "question": "which house has a wooden roof structure with trusses and beams?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["mossy, rock, rocky", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a wooden windmill with a red roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["background, color, white", "roof, color, red"], "captions_pred_pc": ["a black and white image of a cat's head", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "4a889132cc444d10bfcbf6c760984416"], "properties": ["3D, toothpick, skateboard", "a, color, white"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, yellow, black", "roof, color, yellow"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green skull and sphere.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, skull, sphere", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small white barn with a metal roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "4ca3342a96824684845f7d0e062ab176"], "properties": ["frame, truss, roof", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a barn"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a marble wall plaque featuring a relief with statues of people."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "0b82ae7b151044de8404f93ea9a4557c"], "properties": ["color, red, black", "type, relief, statues"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white photograph of a piece of paper with water droplets on it"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d model of a marble plaque depicting a group of people"], "question": "which object is made of marble", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, tree, pool", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pond?", "label": 0}, {"captions": ["an orange and white striped rocket model.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, orange, white", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a box, a cup, a bottle, a jar", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small wooden house."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, metal, white", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small white house with a roof."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["buildings, houses, grass", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["pos machine, credit card machine, cash register", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a spiral staircase with a railing in a small building."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["floor, table, light", "staircase, railing, building"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, size", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a large steel building with many columns and a pool."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["house, roof, green", "building material, pool, steel"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["A, a, a", "houses, trees, road"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["- material is plastic- color is white- shape is cube", "roof, trusses, ladder"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, shape, and size", "roof, trusses, beams"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "225e4094141d416faba7c5598dc55ff8"], "properties": ["roof truss, insulation, suspended ceiling", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " of a crab holding a rubik's cube."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, lighting, booth", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["buildings, houses, grass", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["color, white, containers", "low poly, llama, kangaroo"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d low poly animal standing on its hind legs"], "question": "which entity is not a llama?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " of a white chest of drawers with legs."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a, chair, table, light", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, base, warning", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a pontoon boat with two seats and a canopy."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "dccff5eccf6943f8b14cd269710ae6ff"], "properties": ["a, booth, bed", "seat, canopy, pontoon"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a leopard print purse"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10"], "question": "which entity has a canopy", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["hat, mustache, chef", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is white- shape is flower- pattern is lace", "a, material, clay"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "839a873262a544c9906f3f5799ca4648"], "properties": ["label, color, shape", "a, outfit, green"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["shape is cube, color is black, white", "building, material, stone"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["text, material, shape", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a house with a wooden-framed roof structure."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["food, leaves, shredded paper, rocks", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, structure, truss", "door, lock, handle"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, texture", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of a wooden windmill with a red roof."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["building, skyscraper, city", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of an airplane", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["shape is hot dog, design is dragon, color is black", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a large building with a roof and windows."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "32d1fbd3ee91426882290305f70021e6"], "properties": ["wall, stairs, castle", "roof, windows, building"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a red and black drone with wheels and propellers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1cd3d0db9ec744549124443e6dd0a9f8", "b896a0898efe4059a776193c02132129"], "properties": ["color, wheel, propeller", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a toy car on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["the image is displayed at 1000x1000 pixels", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["a box, a cup, a bottle, a jar", "buildings, houses, grass"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c8936ace72954650b4e2d84246964849"], "properties": ["color, white, red, pink", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["house, staircase, window", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a staircase in a room"], "question": "which staircase has a railing", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["s, chimpanzee, human, wolf", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["a, island, water", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white photo of a boat in the water", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["house, color, white", "building, color, white"], "captions_pred_pc": ["above a black and white drawing of a bench", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["door, lock, handle", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, and size", "flower, color, pink"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a flower that is pink?", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, building, coin, ball", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["red and white 3d pokeball model compatible with 3ds max, maya, obj, fbx, and c formats.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["27bed5f7fd3a45d38115326e371c906e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, material, texture", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a spherical object with a metallic texture", "a 3d model of a woman's chest"], "question": "which entity has a hexagonal pattern", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white of a spaceship and building."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["chair, table, refrigerator", "image, building, spaceship"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["rocky, rug, puddle", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a table with stairs"], "question": "which entity is indoors?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, stairs, shelves", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of the roof of a building"], "question": "which building has a roof made of wood", "label": 1}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", " a small white building with stairs and a white table."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "e30374c614f54fdb90f35b96b071349d"], "properties": ["e-cigarette, cartridge, bottle", "building, stairs, table"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", " a white rocking chair with a curved backrest."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["ring, material, gold", "backrest, curved, yes"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object is made of curved backrest", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a wooden-cased radio."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, material, structure", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["frame, screen, color", "house, tree, pool"], "captions_pred_pc": ["of a black and white cross on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, blue, green, yellow, blue", "mountainous, landmass, state"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "4389909667db472ea9a57a70eb940fa4"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, window, skeleton"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a skeleton in it?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a white castle composed of small cubes."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, green, squirt gun", "composed of, white, cubes"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "09f2cf267e954c958828325067bcc36a"], "properties": ["earbuds, light, ring", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["texture, color, shape", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white square made of dots on a white background", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a stone wall with a window and a clock."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color, shape, and material", "window, clock, wall"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, pattern, wall", "color, frame, shape"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a building structure"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, roof, tray", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a celtic stone cross.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "1da865c75a5e4a57a17652975dae5474"], "properties": ["- material is stone- shape is cross- color is black", "color, white, plastic"], "captions_pred_pc": ["for a black and white image of a watch", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a black castle with stairs and a door."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "036d34dec6274f6a99d8f9689d19a77d"], "properties": ["wall, stairs, castle", "door, stairs, color"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a medieval castle on a white background royalty free 3d model"], "question": "which castle has a door?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["metal, rusted, paper", "striped, white, black"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a stack of books"], "question": "which object is made of paper", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "b896a0898efe4059a776193c02132129"], "properties": ["house, roof, toothbrushes", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["turrets, flags, towers", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, green, tiled", "house, fence, playground"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, house, small", "roof, material, wood"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a tree stump and rock with flowers on them."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["resembles, octopus, squid, spider, robot", "flower, rock, tree stump"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, orange, leather", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a chair", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, door, suitcase", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a bird?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "b896a0898efe4059a776193c02132129"], "properties": ["color, table, blocks", "- material is stone, metal, concrete"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "b896a0898efe4059a776193c02132129"], "properties": ["color, bench, door", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["moss, mushroom, grass", "railing, chair, light"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair with a glass top?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a house with a roof and beams."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, size", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["a white 3d bowl with handles.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["277fc0f27a4a45f79b7a2cfc5e9f335c", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a sphere made up of tiny dots on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white ceramic bowl with handles royalty free 3d model preview no. 3", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["frame, roof, trusses", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a clay pot with holes in it."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof truss, beams, structure", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a house with a pink roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, roof, pink", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "73e7107ff3634516846bccad04c5dc87"], "properties": ["3d model, color, lights", "blue, curved, resembles"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d rendering of a white bathroom sink"], "question": "which object is blue", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "73e7107ff3634516846bccad04c5dc87"], "properties": ["pattern, color, shape", "blue, curved, resembles"], "captions_pred_pc": ["a black circle on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d rendering of a white bathroom sink"], "question": "which object is curved", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["hat, sword, gun", "stair, table, chair"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "12093c89a60941e7884b252bdc05104c"], "properties": ["a, bird, lake", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, blue, green, yellow, blue", "hat, candy, strawberry"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, tan, brown, orange", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a metal grate"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", "a 3d printed model of white and red robots on a red platform."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "0fa560c2fd9f4422a97356c947ac3b46"], "properties": ["color, head, body", "color, red, white"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d model of a robot standing on top of a table"], "question": "which robot is red and white?", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "46903bf029934b1989bc062dcb0a5531"], "properties": ["giraffe, bench, flower", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small house with stairs and a roof."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a, island, water", "roof, stairs, house"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["color, shape, and size", "color, yellow, black"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of an airplane"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " of a machine gun with additional items."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["hoodie, ball, person", "gun, type, machine gun"], "captions_pred_pc": ["for a person standing in front of a white background", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of a submachine gun"], "question": "which object is more likely to be used for hunting", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a potted christmas pine tree."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, text", "a, color, green"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof truss, insulation, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["flag, stand, color", "a room, a cake, a table"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of an egyptian sarcophagus."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["house, fence, dog", "sarcophagus, material, wood"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a wooden billiard table with legs."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, material, color", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a white castle composed of small cubes."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "c3a82df41875402285608ef13a55df57"], "properties": ["s, batman, batman character", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, material, color", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white barn with a metal roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, room, ceiling", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a barn"], "question": "which roof is white", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "be1376023c274bdda995d54f3694157f"], "properties": ["roof trusses, beams, suspended ceiling", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a chimney?", "label": 1}, {"captions": ["s of an octopus, squid, dog, and girl, accompanied by drawings of a frog, bird, and jellyfish, as well as a logo and t-shirt design for callum jelephant.", "s of an octopus, squid, dog, and girl, accompanied by drawings of a frog, bird, and jellyfish, as well as a logo and t-shirt design for callum jelephant."], "sample_ids": ["13591ac0e4ea45749c29f5471eb0ab22", "13591ac0e4ea45749c29f5471eb0ab22"], "properties": ["s, squid, dog, girl, frog, bird, jellyfish, logo, t-shirt design, callum jelephant", "s, squid, dog, girl, frog, bird, jellyfish, logo, t-shirt design, callum jelephant"], "captions_pred_pc": ["for the elephant is drawn in black ink on a white background", "for the elephant is drawn in black ink on a white background"], "captions_pred_image": ["a 3d model of a frog with the words 'it's a frog'", "a 3d model of a frog with the words 'it's a frog'"], "question": "which entity has a t-shirt design for callum jelephant?", "label": 0}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["roof, brown, flat", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a table and stool", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a large building with a roof and windows."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "32d1fbd3ee91426882290305f70021e6"], "properties": ["resembles, toy, bookshelf", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a large industrial building, including a factory and warehouse."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e3d0e407049c43f39c3aaa74667f56b1"], "properties": ["background, color, white", "building, type, factory"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a city skyline on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2"], "question": "which building is a factory", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "18e392c5360146eda498c5edab25b15c"], "properties": ["collection, color, black, handle, wooden", "frame, beams, trusses"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a building under construction"], "question": "which entity has beams and trusses", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a clay pot with holes in it."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, and material", "hole, material, clay"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house with a wooden-framed roof structure."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, material, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["- color is white- shape is cube- material is plastic", "bowl, pottery, headpiece"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["color, white, material, ceramic", "bed, desk, window"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "of a black and white drawing of a curved line"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["a, desk, laptop", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["lighthouse, fountain, crater", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a, bird, lamp", "box, cylinder, bottle"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white dots pattern on a white background"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "97e000ff41094665afd94ea565da8b13"], "properties": ["frame, truss, roof", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a man with black hair, wearing a black shirt, black pants, and a suit."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ffbbd798b7e448849b7acd309717739c"], "properties": ["color, shape, and size", "a, shirt, pants"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white 3d printed figurine of a man"], "question": "which entity is not a suit?", "label": 1}, {"captions": ["a featuring a white table with a bird, a city, and a robot, accompanied by a white lamp.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["20e3fcaa2b56414c9c921a2f33d13267", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["table, lamp, color", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a circle with many small dots", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d printed table with a cityscape on top", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["building, fence, snowy", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["- color is white- shape is cubes- number is 1", "cartoon, bear, diaper"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, door, suitcase", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "be1376023c274bdda995d54f3694157f"], "properties": ["- color is white - shape is box - material is plastic", "roof, beams, chimney"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a house with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a wooden-cased radio."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, height", "case, material, wood"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "white 3d paper airplane map model"], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["shape is cylinder, color is white, material is plastic", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["of a spike on a white background", "black glitter africa map on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a hammer with a long metal handle."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, base, warning", "handle, metal, long"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, ceiling, hole", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a large building with a roof and windows."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "32d1fbd3ee91426882290305f70021e6"], "properties": ["yellow, table, roof", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["case, player, football", "house, building, people"], "captions_pred_pc": ["of a black and white image of a pair of boots", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of a small town in the middle of a field"], "question": "which entity does not feature houses", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is stone - color is blue - shape is arrowhead", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["door, panel, staircase", "island, terrain, water"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "06a1c233fb444830b577aa06e2c01294"], "properties": ["hat, cup, bowl", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, shape, size", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["plane, ship, bird", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a four-legged metal workbench with shelves."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["bed, desk, window", "Four legs, Metal, Shelf"], "captions_pred_pc": ["of a black and white drawing of a curved line", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a four-legged metal workbench with shelves."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["painting, door, wall", "Four legs, Metal, Shelf"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, purple", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "9b6a637ead444bd28452178c74697653"], "properties": ["image is a sculpture of an angel on a wall", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which image is a royalty free image?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a spiral staircase with railings."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["background, color, white", "railings, staircase, spiral"], "captions_pred_pc": ["a black line on a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with a blue roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a white shelf with holes and brackets."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["house, roof, toothbrushes", "color, white, holes"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house with a green, wooden-structured roof."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, yellow, chimney", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["graffiti, chinese writing, door", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "06a1c233fb444830b577aa06e2c01294"], "properties": ["roof, house, wooden", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a house with dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "c3a82df41875402285608ef13a55df57"], "properties": ["lighthouse, building, tower", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "c3a82df41875402285608ef13a55df57"], "properties": ["furniture, staircase, torn-apart", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a red roof.", " a black and white striped box."], "sample_ids": ["085db9059b744673b5623b5338e02196", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["roof, red, house", "color, black, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "97e000ff41094665afd94ea565da8b13"], "properties": ["runner, bed, bench", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a room, a cake, a table", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a white fox."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["- material is plastic- color is white- shape is cube", "color, white, fox"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "above a black and white image of a fish"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a white fox on a gray background"], "question": "which entity is not a fox?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a white castle composed of small cubes."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["frame, beams, trusses", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["white floor lamp with a white shade and base, resembling a white plastic stick or column, featuring a camera on top.", " a large metal building with a roof and truss structure."], "sample_ids": ["f1230cbf5653463bbda1bdf55543ba4d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["shade, base, height", "roof, truss, structure"], "captions_pred_pc": ["for a black square on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a white plastic toothbrush on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["boat, table, chairs, umbrella, solar panel", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["roof, brown, flat", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a four-legged metal workbench with shelves."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["fireplace, bench, log", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "4a889132cc444d10bfcbf6c760984416"], "properties": ["a, plane, small plane", "a, color, white"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["location, highway, train station", "image, city, spoon"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a city skyline in white"], "question": "which image shows a city?", "label": 1}, {"captions": ["a 3d white geometric soccer ball.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["8dd8ce98a0304753820115845741a6bd", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a soccer ball", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a white 3d sphere on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["small purple teapot with a hook.", "a white glass beer mug."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, purple, hook", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a house with a green, wooden-structured roof."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["hair, legs, wings", "roof, color, green"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a wooden billiard table with legs."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, material, structure", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "color, head, white and brown"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a small wooden house with a green roof."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["nut, bowl, ring", "roof, color, green"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a house with a ladder"], "question": "which object has a roof", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a house with wooden framing and trusses."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["meat, bread, sausage", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white drawing of a window"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "3d white model featuring a boat, block, turbo text, puma logo, box, and shelf."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "1fe7018cb01a4be58c0f211b8e2db93f"], "properties": ["3d model, color, lights", "3d, model, white"], "captions_pred_pc": ["above a black and white image of an object on a white background", "of a black and white usb drive with the word 'turbo' on it"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d printed object with the word turbo on it"], "question": "which model is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small house with stairs and a roof."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, horns, features", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a flat roof structure."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, door, window", "roof, flat, structure"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "d49d8ed244094349a99e4faca05e0690"], "properties": ["room, door, shelf", "low poly, plant, white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a wheeled hospital bed", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["wheeled, bed, hospital", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["building, roof, balcony", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a piece of paper"], "question": "which entity is not a building?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a fish with green spots, green eyes, green and blue fins, and green and blue stripes."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "adee50e7a19c4c219e5a2edac18fb28e"], "properties": ["- material is plastic- color is white- shape is cylinder", "Eye color is green, Spot color is green, Fin color is green and blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a fish on a white background"], "question": "which entity is a fish?", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, pattern", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["white space shuttle model.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["color is white, model is space shuttle, size is small", "house, building, people"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a 3d model of a small town in the middle of a field"], "question": "which is not a building", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["building, roof, white, cubes", "arrow, red, white"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a black and white striped box.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["ceiling, light, desks", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a house with a flat roof structure."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "abc52d210d71415296730bb00352ce6f"], "properties": ["moss, mushroom, grass", "roof, flat, structure"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a large steel building with a pool."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, roof, yellow", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, texture", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a hans wegner modern lounge chair in black and wood.", "a white of a man with arms outstretched."], "sample_ids": ["133c1231b9de4cc19d470bd6182c3a6e", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, material, shape", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of a chair", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a modern lounge chair royalty free 3d model preview no 2", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small wooden house."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["door, roof, pool", "house, material, wood"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a wooden billiard table with legs."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, material, shape", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["image, house, ceiling", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "06a1c233fb444830b577aa06e2c01294"], "properties": ["collection, moose, skull", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["bed, desk, window", "a, desk, laptop"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, white, plastic", "room, furniture, window"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["books, paper, lamp", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, white, railing, black", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, umbrella, coat", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a tree made of dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, roof, wooden", "house, rock, bird"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a box, a cup, a bottle, a jar", "island, terrain, water"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, metal, white", "roof, truss, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a house with roof trusses"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "c3a82df41875402285608ef13a55df57"], "properties": ["floor, staircase, balcony", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, grass, moss", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a wooden table with a plant on it."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table lamp, ceiling light, table", "table, plant, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["an oval table with a mouse on top of it", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a white glass beer mug.", " a clay pot with holes in it."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, glass", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a glass pitcher", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hat, mustache, chef", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["throne, stairs, tree", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a black building."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["building, color, white", "color, black, building"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " of a wooden windmill with a red roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, red, green, blue", "roof, color, red"], "captions_pred_pc": ["above a black and white image of a glove", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "1d1328346a464d2482463d6d5288e934"], "properties": ["graffiti, bench, wall", "painting, door, wall"], "captions_pred_pc": ["for a black and white image of a boat", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a wall with a painting", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a 3d white cube with windows resembling a building."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "4a07a5293f024bb0a353954a056ef626"], "properties": ["a train, a ship, a boat", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of two rocks with ice elements."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, tree, plane", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, white, base, slanted", "low poly, plant, white"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["a, hole, shelf", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large building with a roof and windows.", " a brick building with a roof structure and roof truss."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "84e8acad28664a738df69d719df9e263"], "properties": ["roof, windows, building", "roof, structure, truss"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a pixelated-textured purple sphere ."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "fb68393941804e769d5c9b372864a642"], "properties": ["color, material, structure", "texture, color, shape"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a house with a roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof structure, truss, ceiling", "roof, house, roof"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["acropolis, city, building", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["s, stick, leaf", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["bird, nest, wood", "paint, rust, concrete"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a concrete wall"], "question": "which entity is more likely to be a rusty metal feature", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is plastic- shape is dice- color is white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a palm tree with leaves.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["889c62b076f1480e83d9e5ec7e8392e0", "c3a82df41875402285608ef13a55df57"], "properties": ["leaf, tree, leaf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of an animal with wings", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a palm tree", "a white plastic object on a gray background"], "question": "which object is not a tree?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of two rocks with ice elements."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, tree, pool", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", "star wars stormtrooper "], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, head, body", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d model of a star wars stormtrooper"], "question": "which entity has a white color?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, holes", "building, room, sky"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, background, arrows", "room, furniture, window"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["graffiti, chinese writing, door", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["castle, island, house", "house, fence, dog"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a black and white striped box.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, black, white", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d rendering of a metal box with a handle"], "question": "which box is made of metal", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["a, bird, hook", "Object, Tray, Tray"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white image of a piece of paper"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d image of a white tray with an intricate design"], "question": "which object has a bird on it?", "label": 0}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "09f2cf267e954c958828325067bcc36a"], "properties": ["texture, spikes, eyes", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a small black box on a purple square.", "a white of a woman with her arms outstretched."], "sample_ids": ["75f209e543c046669099190953616acc", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["table, staircase, light", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["ceiling, light, desks", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, containers", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, yellow, roof, metal", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " of a character wearing glasses and a hat."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, wheel, helmet", "hat, glasses, character"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["a, bowl, cup", "table, structure, roof"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a building with many pillars"], "question": "which table has a wooden structure?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, green, lawn", "roof, house, small"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a house with a roof."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["floor, wall, roof", "roof, house, roof"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " an old lantern with moss on it."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "62925f26fd624310bd6b31136fe8e706"], "properties": ["a, b, c", "moss, lantern, old"], "captions_pred_pc": ["above a black and white drawing of a submarine", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a black and white image of an old lantern"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a house with a green, wooden-structured roof."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["black, white, coffee table", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["low poly of a christmas tree", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "46903bf029934b1989bc062dcb0a5531"], "properties": ["low poly, christmas, tree", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white image of a small, round object", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a small building with a roof.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["roof, building, small", "frame, truss, roof"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d rendering of a bridge over a road"], "question": "which building has a roof", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["Cabinet, Drawers, Filing", "structure, roof, pitch"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "c3a82df41875402285608ef13a55df57"], "properties": ["roof truss, beams, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a cat's head", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building with many windows"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of two rocks with ice elements."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, number", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a house with a flat roof structure."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "abc52d210d71415296730bb00352ce6f"], "properties": ["location, highway, train station", "roof, flat, structure"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" of a green trash can with graffiti on it.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["388f3f2e2a98442f9b8a71d3c33defae", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, trash, can", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of an object in the water", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a trash can royalty free 3d model preview no 2", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" of a bow and arrow set", " of a small white building with stairs and a lid."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["arrows, bow, set", "building, stairs, lid"], "captions_pred_pc": ["for a black and white illustration of a bee", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d model of a white box on a gray background"], "question": "which object has a lid", "label": 1}, {"captions": ["a silver patriot coin with an image of a woman on it.", "a silver patriot coin with an image of a woman on it."], "sample_ids": ["142d386fba0b419ead86627554e4e731", "142d386fba0b419ead86627554e4e731"], "properties": ["image, silver, patriot", "image, silver, patriot"], "captions_pred_pc": ["above a black and white image of a circular object", "above a black and white image of a circular object"], "captions_pred_image": ["an antique silver coin with a woman's profile on the front", "an antique silver coin with a woman's profile on the front"], "question": "which entity has an image of a woman on it?", "label": 0}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small building with stairs and a glass floor, featuring a square table and a black square ceiling light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "8aaad713b8834739b008ccf2f3d86cce"], "properties": ["color, table, ceiling", "floor, table, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white photograph of a window"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white 3d model of a staircase on a platform"], "question": "which building has a glass floor", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "bf18bfd89efd43389781050230467d58"], "properties": ["- material is plastic- color is white- shape is cylinder", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a wooden roof structure with a pink roof."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["top, color, wood", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a fireplace", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which object has a pink roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white of a man with arms outstretched."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, white, red, pink", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["desk, chair, lamp", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["costume, color, black", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a wooden billiard table with legs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b20ad62516fa467ba6e8de063998e8e4", "c3a82df41875402285608ef13a55df57"], "properties": ["legs, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a rectangular shaped object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a pool table", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a modern white house with furniture and a black accent."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e5025a1ca0034b1aa97a0d42edeeae0f"], "properties": ["house, color, white", "color, white, furniture, black"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a white building with black and white tiles"], "question": "which house is whiter", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a small wooden house with a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, structure, wall", "roof, house, wooden"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "73e7107ff3634516846bccad04c5dc87"], "properties": ["a knife, blade, handle", "blue, curved, resembles"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is curved?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "ee440fcbc493488e879539d37a8d820e"], "properties": ["roof, color, blue", "island, fish, ice"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["frame, roof, trusses", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a silver vintage racing car.", "a white glass beer mug."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, silver, vintage", "color, white, glass"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small triangular-shaped object."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "2d02985030804209a26c2c53b96a06f9"], "properties": ["apse, roof, floor plan", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a white human skull with broken bone elements."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, gazebo, table", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a house with wooden framing and trusses."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, color, case", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a window"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a house with a flat roof structure."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "abc52d210d71415296730bb00352ce6f"], "properties": ["screen, keyboard, box", "roof, flat, structure"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a small building with a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, building, small", "roof, truss system, framing"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of the roof of a house"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "bf18bfd89efd43389781050230467d58"], "properties": ["a, bird, lake", "Lights, number, five"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["color, shape, and size", "table, bench, deer"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["mannequin head, plague mask, straps", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a house with a pink roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, door, window", "color, roof, pink"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a pink roof", "label": 1}, {"captions": ["3d rendered fish next to a cube.", " of two rocks with ice elements."], "sample_ids": ["e9f8c643d45142cba30d76c608eeeb1a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["3D, fish, cube", "image is a rock with ice elements"], "captions_pred_pc": ["for a 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a fish and a cube on a black and white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "a17477b445b3443189dad22f768b888b"], "properties": ["floor, table, light", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a drawing of a bird, fish, and white-blue dragon with a tail."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "7136a3a6819e49e4b855f45fa1e2cded"], "properties": ["color, material, size", "animal, tail, white-blue"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a white and black bird flying in the sky stock illustration \u00a9 2019 iStock"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "an illustration of a bird with its wings outstretched on a gray background"], "question": "which entity is a drawing of a bird", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a white of a spaceship and building."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, yellow, black", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " of a sword with a wooden handle."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "bf448dbb4b6a43d89b2514929e8f7c43"], "properties": ["color, green, handle", "handle, material, wood"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a sword on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a black and white image of a sword with two blades"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["A, a, a", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, shape, text", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "127753bf17de4252aaa7ea88f274545e"], "properties": ["Arms, Legs, Color", "face, mask, tail"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "be1376023c274bdda995d54f3694157f"], "properties": ["a, bowl, cup", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a red circle, red and white arrow, mouse, and child's handwriting."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "3c233f87bf264968a7f0660b9eac9e4a"], "properties": ["red, mouse, handwriting", "red, mouse, handwriting"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white drawing of a person's hand holding a pencil"], "question": "which entity has a red circle", "label": 0}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white house with a roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, color, white", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a building with a white roof"], "question": "which house is whiter", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "4df70180f2ea400782d2e2de76063894"], "properties": ["Black, Shelf, Metal", "color, black, blue"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is a black and blue color?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "d49d8ed244094349a99e4faca05e0690"], "properties": ["blue tarp, flower, small island", "low poly, plant, white"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a large house with a roof on a platform."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "cb3e09a301b746918a682a595037c7f7"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["houses, trees, road", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a metal object"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["mossy, rock, rocky", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d rendering of a small white table with a chair"], "question": "which entity is indoors?", "label": 1}, {"captions": [" a green skull and sphere.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, skull, sphere", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, truss, lamp", "roof, green, tiled"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a set of stainless steel shelves"], "question": "which roof is tiled", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a spider-like creature with long arms and legs."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor, ceiling, poles", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with a yellow roof and chimney."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, structure, house", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "a17477b445b3443189dad22f768b888b"], "properties": ["color, plate, yellow", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["floor, staircase, balcony", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["lighthouse, fountain, crater", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d rendering of a white box on a wooden floor"], "question": "which entity is indoors?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a small white building with stairs and a lid."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["computer desk, laptop, monitor", "building, stairs, lid"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["house, staircase, window", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small, snow-covered house."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, yard, surrounding buildings", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a truck on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["small airplane flying in the air.", "a white glass beer mug."], "sample_ids": ["903dd2d9d2b7499580a0c1645df88a22", "1d686cbd3e9a4c629a43088658989286"], "properties": ["airplane, fly, air", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a panda holding a light bulb", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of an airplane royalty-free 3d model", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["\"royalty-free of a tulip and trident\"", "\"royalty-free of a tulip and trident\""], "sample_ids": ["818b259e489e4c8bb4f90012ba5e5e35", "818b259e489e4c8bb4f90012ba5e5e35"], "properties": ["image, royalty, free", "image, royalty, free"], "captions_pred_pc": ["for a black and white snowflake on a white background", "for a black and white snowflake on a white background"], "captions_pred_image": ["a 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of", "a 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of"], "question": "which image is royalty free?", "label": 0}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, white, pink, eyes", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["roof, red, house", "roof, structure, wall"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a roof"], "question": "which house has a brick wall", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["cloak, sword, spear", "box, paper clip, lock"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "a08008793f184dab8a4ab6de27cc7105"], "properties": ["cup, bottle, chessboard", "mug is purple, cup is black, candle is black"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a dome shaped object with dots on it royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black cup sitting on top of a white piece of paper with a spoon next to it"], "question": "which entity has a black candle?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["yellow, table, roof", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "an oval table with a mouse on top of it"], "question": "which table has a lamp on it?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small table with a staircase and a square ceiling light."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["face, handle, spout", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a small, circular object", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["color, hat, handle", "hat, watch, clock"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["a, hole, rock", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a white plastic tray"], "question": "which object has a hole in it", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["house, table, chair", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a small table"], "question": "which house has a bathroom?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["- color is white- shape is cubes- number is 1", "room, furniture, window"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["building, color, yellow-green", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["yellow, shape, wingspan", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a chair with a yellow seat."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, shape, size", "color, yellow, seat"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity is a chair?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, texture", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a small white sight device.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["02e64f4820ca4719bace985bed1ead5d", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["white, sight, device", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of a camera royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " of two rocks with ice elements."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["s, batman, batman character", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small, snow-covered house."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, color, purple", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, light, jewels", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, material, size", "color is white, yellow, plastic"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d white cube with windows resembling a building."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, white, black, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a cube"], "question": "which entity is whiter", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, roof, tray", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a wooden-handled dagger", " of a small white building with stairs and a lid."], "sample_ids": ["1e460892f8f14d9bba9eb5c9e0491ed2", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["handle, material, blade", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a knife on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a screw with a screwdriver", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a stone archway in a grassy area.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["location, area, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small wooden house."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, fence, snowy", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a white castle composed of small cubes."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "composed of, white, cubes"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["b5afccae993346079483507296fbb029", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["shape is square, material is metal, color is rusty", "lion, statue, fountain"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, room, ceiling", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a table and stool"], "question": "which roof is brown", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, shape, material", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is made of paper", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, structure, wall", "structure, columns, roof"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "bded33af34104b9686b845dfd18309a9"], "properties": ["metal, legs, frame", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small white building with stairs and shelves."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "9e1f64d4fd514059be934077717536dc"], "properties": ["building, tree, plane", "building, stairs, shelves"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["texture, spikes, eyes", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a flower", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "7f8942ef51dd4246993a587a12df168c"], "properties": ["hat, bag, blanket", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["color, material, structure", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "703dce44052e48cfb024bceb08141554"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a wooden structure"], "question": "which house has a roof", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a house with a blue roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, red, green, blue", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a house with a roof"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["roof, color, purple", "house, color, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, window, statue", "table, staircase, light"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small building with windows and a roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, structure, house", "roof, windows, building"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a 3d white cube with windows resembling a building."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "4a07a5293f024bb0a353954a056ef626"], "properties": ["- material is wood, metal, metal", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a cube"], "question": "which object is made of textured material", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "4df70180f2ea400782d2e2de76063894"], "properties": ["computer desk, laptop, monitor", "color, black, blue"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black cat?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a white rocking chair with a curved backrest."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["light source, fixture, color", "backrest, curved, yes"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a small white box with a green light.", "a white teapot with pink flowers and a handle."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "f6c5e8931d164979a71914127c7e5438"], "properties": ["color, white, light", "color, white, handle"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white dots on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a white tea kettle with a black handle and floral design"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "97e000ff41094665afd94ea565da8b13"], "properties": ["desk, chair, lamp", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a white of a spaceship and building."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["structure, building, archway", "image, building, spaceship"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a green mountain with trees and grass."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["runner, bed, bench", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "703dce44052e48cfb024bceb08141554"], "properties": ["black, roof, green", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, and size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["- material is white- color is white- texture is textured", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["d6087023095446fbadef1721478373b2", "d6087023095446fbadef1721478373b2"], "properties": ["door, roof, window", "door, roof, window"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an apartment building"], "question": "which building has a green door", "label": 0}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["Lights, number, five", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["color, background, arrows", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white kite flying in the air against a gray background"], "question": "which entity has more s", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["floor plan, ceiling light, color", "roof, metal, white"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, color, blue", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["- color is red, blue, pink", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "1da865c75a5e4a57a17652975dae5474"], "properties": ["castle, island, house", "color, white, plastic"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, room, ceiling", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": ["white bowl and sphere", " of an ipad stand with a small speaker and blue-white light on a cylindrical base."], "sample_ids": ["84eab42d427545fcab4cffff9746eddc", "e0694fef8e414d69a6a89cdffd212c86"], "properties": ["color, shape, material", "base, speaker, light"], "captions_pred_pc": ["a black and white circle made up of tiny dots on a white background", "above a black and white illustration of a clock"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a tablet stand on a pedestal royalty-free 3d model"], "question": "which object has a cylindrical base", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "bf18bfd89efd43389781050230467d58"], "properties": ["a, door, suitcase", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, label, shape", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a tree stump and rock with flowers on them."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["hat, sword, gun", "flower, rock, tree stump"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has a tree stump?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, red, blue, green", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small building with windows and a roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, tree, plane", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a gray, metal pillar/cylinder."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["shape is cylindrical, color is silver, material is metal", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a cone shaped object", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small building with a staircase in a room.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["room, staircase, building", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of the letter l", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a large metal building with a roof and truss structure."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, blue, green, yellow, blue", "roof, truss, structure"], "captions_pred_pc": ["a pair of sneakers on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, windows, building", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, blue, components", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["house, hill, forest", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, mouth, eyes", "hat, candy, strawberry"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["background, color, white", "house, lake, pool"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a wooden roof structure with a pink roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, roof, balcony", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of the roof of a building"], "question": "which building has a roof that is not pink?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "73e7107ff3634516846bccad04c5dc87"], "properties": ["- color is white - shape is box - material is plastic", "blue, curved, resembles"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["floor plan, bathroom, pool", "grass, plants, rocks"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a mountain landscape with green, yellow, and orange colors.", "a low-poly of a white, shattered sphere."], "sample_ids": ["76ce57eaeed04c4d8002cdeb7134ae4a", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, landscape, mountain", "sphere, color, texture"], "captions_pred_pc": ["a black and white photograph of a snowflake", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a snowy mountain landscape", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, hat, glasses", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a brake pad", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, b, c", "roof, brown, flat"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": ["a red and pink apple.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["c99acf979dda44dea009727513247b22", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, red, pink", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a black and white photograph of an apple", "a 3d model of a submarine"], "question": "which object is not a train?", "label": 0}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "ec5914b53b6a4cde8de4820050bc46c5"], "properties": ["resembles, octopus, squid, spider, robot", "resembles, octopus, squid, spider, robot"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a jellyfish"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2"], "question": "which entity has a caption that resembles a hybrid of an octopus", "label": 0}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["fireplace, stick, surround", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["chocolate, mushroom, cake", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["houses, trees, road", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small house with stairs and a roof."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["building, color, white", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d rendering of a podium on a wooden floor"], "question": "which building has a roof?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is stone - color is blue - shape is arrowhead", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "9b6a637ead444bd28452178c74697653"], "properties": ["mossy, rock, rocky", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which is not a skateboard", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["books, paper, lamp", "island, mountain, grass"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["shape, color, material", "a room, a cake, a table"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["food, leaves, shredded paper, rocks", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" of a green pickle", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color is green, shape is cylinder, material is plastic", "a, material, clay"], "captions_pred_pc": ["of a black object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a low-poly of a white, shattered sphere."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["bed, desk, window", "sphere, color, texture"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["s, stick, leaf", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["potted plant, table, shelf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, yard, surrounding buildings", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a large steel building with a pool."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, yellow, chimney", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, pink, eyes", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a sword with a wooden handle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["color, shape, and size", "handle, material, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a knife on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a sword"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a wooden shed with a gray roof."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["building, material, stone", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a shed with a gray roof"], "question": "which building is made of wood", "label": 1}, {"captions": ["white plastic cone-shaped hat, 3d printed.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5cfd092fb5c44c9f8ae62c6e4c62903d", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is cone, material is plastic, color is white", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a dome shaped object made of dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a toilet paper holder", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, rock, pond", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["table lamp, ceiling light, table", "island, terrain, water"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a large orange pumpkin."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["- color is white- shape is cubes- number is 1", "orange, large, pumpkin"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small white building with stairs and shelves."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "9e1f64d4fd514059be934077717536dc"], "properties": ["castle, island, house", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "674a36147ffb47059e48abc9fa19d923"], "properties": ["- color is white - shape is box - material is plastic", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white square with dots all over it", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["color, black, shade, black", "bed, desk, window"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["A, a, a", "a, landscape, sand"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["base material is wood, color is red, message is welcome to northwich", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a spider-like creature with long arms and legs."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["hat, bag, blanket", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["size, material, color", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["bread, knife, board", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, shape, poles", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a green mountain with trees and grass."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, room, ceiling", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["black, white, coffee table", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white 3d model of a building", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, stairs, shelves", "building, plane, room"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, room, table", "building, plane, room"], "captions_pred_pc": ["a black square on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, green, squirt gun", "metal, legs, wheels"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, yellow, black", "roof, material, wood"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["color, table, ceiling", "floor, ceiling, poles"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with multiple levels"], "question": "which building has a wooden floor", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a purple roof and glass block structure."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["color, door, window", "roof, color, purple"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building with a glass roof"], "question": "which house has a purple roof", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, trusses, beams"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "ceee98c20f23424195da092156905ec4"], "properties": ["color, material, size", "face, handle, spout"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white image of a small, circular object"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a white ceramic vase with a face on it"], "question": "which entity is not a model?", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a wooden roof structure with a pink roof."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["graffiti, chinese writing, door", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["house, lake, pool", "mossy, rock, grass"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a piece of wood on a white background"], "question": "which entity has a rock with grass?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, white, red, pink", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small white building with stairs and shelves."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, material", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "7f8942ef51dd4246993a587a12df168c"], "properties": ["room, door, shelf", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["lighthouse, building, tower", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, green, orange, star", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["a72700696c3b44ef8101d1e71e914bc9", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["lion, statue, fountain", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d image of a lion statue on a wall", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, structure, wall", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["arrow, mountain, area", "mountainous, landmass, state"], "captions_pred_pc": ["a line with a square on it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a white chest of drawers with legs."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["graffiti, bench, wall", "chest of drawers, legs, white"], "captions_pred_pc": ["for a black and white image of a boat", "of a black and white leopard print rug"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, text", "a, material, clay"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, shape, height", "turrets, flags, towers"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, red, blue, structure", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "f1b557775310478893242180defa4d80"], "properties": ["chocolate, mushroom, cake", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, material, structure", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["- material is wood, metal, metal", "earbuds, light, ring"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["background, color, white", "arrow, red, white"], "captions_pred_pc": ["a black line on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a spiral staircase"], "question": "which entity has a white arrow?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "f1b557775310478893242180defa4d80"], "properties": ["house, roof, wooden", "shack, roof, door"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, temperature, england", "door, lock, handle"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, black, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, material", "Shelf, color, white"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d rendering of a white shelf"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a wooden staircase."], "sample_ids": ["b5afccae993346079483507296fbb029", "98fa820a050e47659135907c6f7b198c"], "properties": ["shape is square, material is metal, color is rusty", "material is wood, staircase, wood"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white building with a red roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, containers", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" a black and white striped box.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, black, white", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, green, orange, star", "house, tree, hill"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small white house with a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, green, lawn", "roof, color, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a wine corkscrew"], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a house with a roof."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["a, b, c", "roof, house, roof"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, building, staircase", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, green, lawn", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a spider-like creature with long arms and legs."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, building, people", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a clay pot with holes in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8ffcd902aa0a4efea55ca1dbab28f462", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["hole, material, clay", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a clay sculpture of a face with holes in it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 0}, {"captions": [" a small green chair with a slanted back and white base.", " a white fox."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, white, base, slanted", "color, white, fox"], "captions_pred_pc": ["above a black and white drawing of a chair", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a white fox on a gray background"], "question": "which entity is not a fox?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, white, railing, black", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a computer screen", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " of a green-leafed plant in a white hanging pot."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "bc75bd88ee014f3cb733e4af32c54cc6"], "properties": ["color, material, pattern", "color, green, leaf"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of a jellyfish"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a potted plant on a white background royalty free 3d model preview no.3"], "question": "which entity has a green leaf?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["s, plane, house", "a, color, red"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a castle with two towers"], "question": "which entity has a red roof?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small white house with a roof."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, hill, forest", "roof, color, white"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["room, bed, desk", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a door", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", "a white of a house with a hole in the ceiling."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["building material, pool, steel", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a concrete structure", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a futuristic black sphere with blue lights and a helmet.", " of two rocks with ice elements."], "sample_ids": ["b8231fa79abe45239df6c6dca8d3f251", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a monkey face made of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a spherical object with various geometric shapes on it royalty-free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["books, paper, lamp", "water, boat, rock"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d image of an animal laying on the ground"], "question": "which entity has more water", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a yellow and blue toy submarine."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, horns, features", "color, yellow, blue"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, structure, house", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["headboard, wall, strip", "house, tree, pool"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["house, lake, pool", "building, material, stone"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["hat, candy, strawberry", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a large white and metal building with a metal roof structure."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["floor plan, bathroom, pool", "roof, metal, white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "bded33af34104b9686b845dfd18309a9"], "properties": ["shape, bathroom, refrigerator", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "9968e06a62e8487ea33460e640abc573"], "properties": ["a, bird, hook", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a broom on a stand"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "aae2c42740a04fd68068f5707111d26f"], "properties": ["A, a, a", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["house, color, white", "building, color, black and white"], "captions_pred_pc": ["above a black and white drawing of a bench", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "c8936ace72954650b4e2d84246964849"], "properties": ["house, door, cross", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color pink", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a stone wall with a window and a clock."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["apse, roof, floor plan", "window, clock, wall"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, background, arrows", "grass, plants, rocks"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white drawing of a tree"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a spider-like creature with long arms and legs."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["Steel, Color, Yellow", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, card, case", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small white house with a roof."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["food, leaves, shredded paper, rocks", "roof, color, white"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a small green chair with a slanted back and white base."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "7f93c12cbbc74e579d5f0430cfa0010f"], "properties": ["color, white, base, slanted", "color, white, base, slanted"], "captions_pred_pc": ["above a black and white drawing of a chair", "above a black and white drawing of a chair"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a chair"], "question": "which chair has a white base?", "label": 0}, {"captions": [" a floating small island with trees, grass, and a mountain.", " of two rocks with ice elements."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["island, mountain, grass", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["s, plane, house", "house, roof, green"], "captions_pred_pc": ["a black and white silhouette of a map", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["size, material, color", "ring, material, gold"], "captions_pred_pc": ["of a black plastic ring on a white background", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a white wedding band with the words strength in weakness engraved on it"], "question": "which ring is made of gold", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " of two rocks with ice elements."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, trusses, ladder", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a large steel building with a pool."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["staircase, railing, building", "building material, pool, steel"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small purple plastic chair with holes."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, orange, white", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a house with a roof and beams."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, trusses, beams", "roof, beams, house"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a wooden roof structure with a pink roof."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["black, white, laptop", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white image of a metal grate"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": [" a small, snow-covered house.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "b896a0898efe4059a776193c02132129"], "properties": ["house, snow, cover", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a wooden-framed house with roof trusses."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e60dd370c5ec468da4689a801f951157"], "properties": ["color, roof, tray", "frame, roof, trusses"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house under construction"], "question": "which house has a roof that is supported by trusses", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is made of rock", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, roof, balcony", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, table, ceiling", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a human skull", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, b, c", "roof, color, yellow"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " of a wooden windmill with a red roof."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["windmills, silhouette, city model", "roof, color, red"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a windmill on a gray background"], "question": "which windmill has a red roof", "label": 1}, {"captions": [" of a roman inscription on a stone plaque and paper scroll with writing.", " of a roman inscription on a stone plaque and paper scroll with writing."], "sample_ids": ["0a281f5738b54febb835c052549ba399", "0a281f5738b54febb835c052549ba399"], "properties": ["inscription, scroll, stone", "inscription, scroll, stone"], "captions_pred_pc": ["a black and white photograph of a mirror", "a black and white photograph of a mirror"], "captions_pred_image": ["a black and white photograph of a plaque on a stone wall", "a black and white photograph of a plaque on a stone wall"], "question": "which entity has a scroll with writing?", "label": 0}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a spider-like creature with long arms and legs."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["room, door, shelf", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "6b745457e06840119058883b35f78f58"], "properties": ["size, color, shape", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity is larger", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, shape, material", "arrow, mountain, area"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a line with a square on it"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["balcony, stairs, house", "house, roof, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["metal, laptop, light fixture", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a white 3d model of a city skyline"], "question": "which image shows a laptop", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["a, roof, soup", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d image of a lion statue on a wall"], "question": "which entity is a fountain?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "3d7bd392c9a14f4ab7c0aae2cf75b487"], "properties": ["hat, food, bowl", "hat, food, bowl"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of the earth with a hole cut out of it"], "question": "which entity has a bowl?", "label": 0}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["house, plane, town", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white of a spaceship and building."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, white, black, white", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, skull, bread", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a stone sculpture", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, table, ceiling", "room, door, shelf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an empty room"], "question": "which building has a door and a shelf?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "ca275639b47a4093b4426d304695af7f"], "properties": ["color, shape, material", "holder, spring, box"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a plastic container with a spring inside"], "question": "which entity is a box?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["room, bed, desk", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["resembles, toy, castle", "color, frame, shape"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, truss, suspended ceiling", "roof, metal, white"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a large white box"], "question": "which entity has a roof that is made of metal", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a stone wall featuring carvings and statues."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- material is white- color is white- texture is textured", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["roof, purple, suspended", "color, shape, color"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, material, frame", "buildings, houses, grass"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "c8936ace72954650b4e2d84246964849"], "properties": ["floor plan, bathroom, pool", "roof, color, pink"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color pink?", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " of a stone wall with a window and a clock."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["carving, statue, wall", "window, clock, wall"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of a brick wall"], "question": "which wall has a window and a clock", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["yellow, table, roof", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a roof truss?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a four-legged metal workbench with shelves."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, red, blue, structure", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "bf18bfd89efd43389781050230467d58"], "properties": ["fireplace, bench, log", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " of a white chest of drawers with legs."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, table, blocks", "chest of drawers, legs, white"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "b896a0898efe4059a776193c02132129"], "properties": ["door, roof, pool", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small building with windows and a roof."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, eagle, wood", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "096e42b466ec438d95c5d89a85191534"], "properties": ["building, tree, plane", "white, rock, shell"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, material is plastic, shape is box", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small triangular-shaped object."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "2d02985030804209a26c2c53b96a06f9"], "properties": ["bed, desk, window", "shape, triangle, small"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", "a wooden-cased radio."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, material", "case, material, wood"], "captions_pred_pc": ["of a black and white drawing of a purse", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which radio is made of wood", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, plastic", "roof, metal, white"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a celtic stone cross.", " a white castle composed of small cubes."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is stone- shape is cross- color is black", "composed of, white, cubes"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a clay pot with holes in it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is plastic- color is white- shape is cylinder", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a large white and metal building with a metal roof structure."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["cover, black, plastic", "roof, metal, white"], "captions_pred_pc": ["of a black and white image of a skateboard", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "white of a rhino head with horns."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "8481aade84de47cab1a9accf8067e678"], "properties": ["color, shape, material", "image, rhino, head"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["graffiti, chinese writing, door", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a four-legged metal workbench with shelves."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["A, a, a", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a spider-like creature with long arms and legs."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a knife, blade, handle", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["a, bird, hook", "shape is box, color is white, door is present"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": ["white space shuttle model.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "b896a0898efe4059a776193c02132129"], "properties": ["color is white, model is space shuttle, size is small", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "c3a82df41875402285608ef13a55df57"], "properties": ["building, color, yellow-green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["room, house, windows", "house, pool, balcony"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white of a spaceship and building."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, grass, moss", "image, building, spaceship"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["boat, table, chairs, umbrella, solar panel", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel on the roof?", "label": 0}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, pink, blue", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white square with dots all over it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["roof truss, chimney, suspended ceiling", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of a lion statue on a wall"], "question": "which entity has a lion statue", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " of an egyptian sarcophagus."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a train, a ship, a boat", "sarcophagus, material, wood"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["white ferris wheel ", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["84267382977845f190cdc740e4977f43", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color is white, wheel is ferris, color is white", "roof, color, yellow"], "captions_pred_pc": ["of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a ferris wheel royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which structure has a yellow roof", "label": 1}, {"captions": ["a wooden-cased radio.", " a large white and metal building with a metal roof structure."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["case, material, wood", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "of a lamp with a black shade on a white background"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a potted plant on a wooden table or shelf."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["roof structure, truss, ceiling", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a black and white image of a plant in a pot"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e098706085a44898abbd549693d12a64", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is black, white, orange", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white ring adorned with flowers and leaves.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, material", "color, frame, shape"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a house with a wooden-framed roof structure."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["Drawer, Pattern, White", "roof, material, wood"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "c3a82df41875402285608ef13a55df57"], "properties": ["location, area, material", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a stone archway", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small house with stairs and a roof."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, size", "roof, stairs, house"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, containers", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " of two rocks with ice elements."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, rock, bird", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, yellow, roof, metal", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, shirt, bearded", "hat, candy, strawberry"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a man with a beard", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small, snow-covered house."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["blue tarp, flower, small island", "house, snow, cover"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" an old castle in a grassy field.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["field, grass, castle", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, size", "building, plane, room"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, air conditioner, house", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green skull and sphere.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, skull, sphere", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "a floor lamp with a pleated white and beige shade and a wooden base."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "1ea7bb08894243f5b1f1200ee35fb40a"], "properties": ["color, white, base, slanted", "base material, wood, shade color, white, beige"], "captions_pred_pc": ["above a black and white drawing of a chair", "of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background"], "captions_pred_image": ["a 3d model of a chair", "a floor lamp with a white shade and a chrome base"], "question": "which object has a white base", "label": 1}, {"captions": [" a snowy mountain island.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["fe8520ec650248fa92ba07bb95712b09", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["mountain, island, snowy", "house, hill, forest"], "captions_pred_pc": ["for a black cross on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a volcanic eruption", "a black and white image of a small island in the middle of a body of water"], "question": "which island has a house on a hill?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, holes", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "white 3d paper airplane map model"], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["- color is white- shape is cube- material is plastic", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "black glitter africa map on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a white glass beer mug."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, material, ceramic", "color, white, glass"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "cafc467aff2643e8b70149c4944263ee"], "properties": ["Drawer, Pattern, White", "wing, knife, boat"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "6b745457e06840119058883b35f78f58"], "properties": ["roof, truss, lamp", "roof, color, blue"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a steeple on top"], "question": "which house has a roof that is the same color as the clock tower?", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a white castle composed of small cubes."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, image, subject", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a castle made of white cubes"], "question": "which image is composed of white cubes", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small wooden house with a green roof."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is turtle, color is green, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["A, a, a", "a, desk, laptop"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, trusses, beams", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a roof structure", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "d49d8ed244094349a99e4faca05e0690"], "properties": ["resembles, octopus, squid, spider, robot", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a plant growing out of a rock"], "question": "which entity is a low poly of a plant on a white object?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a white motorcycle with wings."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, black, white", "color, white, wings"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["yellow, table, roof", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small, snow-covered house."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["a, island, water", "house, snow, cover"], "captions_pred_pc": ["a black and white photo of a boat in the water", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["fireplace, bench, log", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "205251e4277e41d1aae6b2358267ad56"], "properties": ["frame, beams, trusses", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d printed figurine of an alien creature"], "question": "which entity is a color image?", "label": 1}, {"captions": [" a small red and white spaceship.", " a wooden billiard table with legs."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a green letter p", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ccd770b6eee245d18538b50126977e51", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, letter", "- material is wood, rusty, horned"], "captions_pred_pc": ["a 3d model of a black and white dots on a white background 3d model of a black and white dots on a white background, isolated on a white background, 3d illustration, 3d model, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art,", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the letter p royalty free 3d model preview no 3", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, structure, greenhouse", "box, paper clip, lock"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, white, base, slanted", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a chair", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": [" a bottle containing pink liquid.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["176d3a863ccb48eeb84ab4e85054525d", "c3a82df41875402285608ef13a55df57"], "properties": ["color, bottle, liquid", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a bottle with bubbles", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a clear glass bottle on a gray background royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a large metal building with a roof and truss structure."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, texture", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, green, squirt gun", "house, roof, blue"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a small house and barn"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof truss, beams, structure", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a person breaking through a brick wall."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["shape is cylinder, color is white, material is plastic", "image, brick, wall"], "captions_pred_pc": ["of a spike on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a person breaking through a brick wall"], "question": "which object is made of bricks", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a white glass beer mug."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "1d686cbd3e9a4c629a43088658989286"], "properties": ["Drawer, Handle, Wood", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, gray", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["white 3d tank model", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color is white, model is 3d, name is tank", "roof, brown, flat"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "a2354f13774340d392fbf33564934aab"], "properties": ["house, roof, toothbrushes", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house with a blue roof."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["a, bird, lake", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a roof that is the color of blue", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, pier, stairway", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of an open door", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "star wars stormtrooper "], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["graffiti, chinese writing, door", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a pink and white gun."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4b13e0c43d6f41138e962e856c930034"], "properties": ["color, shape, and size", "color, pink, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of an object on top of a pedestal"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white 3d model of a rocket launcher"], "question": "which object is pink and white?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a chessboard on a beige ceiling tile."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "7dccc542a68f470a947bf5f698c27bbd"], "properties": ["- color is white- shape is cube- material is plastic", "beige, tile, chessboard"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a leopard print banner"], "captions_pred_image": ["a 3d model of a white cube", "3d chess board royalty free 3d model preview no 2"], "question": "which is not a chessboard", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a spiral staircase with railings."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["building, material, steel", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, fence, dog", "building, plane, room"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small house with a road in front of it."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "9ff45258feba4c68bb279efeb829538f"], "properties": ["color, yellow, black", "house, front, road"], "captions_pred_pc": ["a black and white illustration of an airplane", "above a black and white drawing of a building"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a small house on a road"], "question": "which object has a road in front of it", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["roof, color, red", "- material is wood, rusty, horned"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a brick wall with grass."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "53f2d948091f417cb580e22469c94db2"], "properties": ["building, roof, white, cubes", "brick, grass, wall"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white photo of a brick wall and a puddle"], "question": "which wall has grass", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["paper, hole, mouse", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a black and white image of a cone shaped object"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "c3a82df41875402285608ef13a55df57"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a coffee table", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large metal building with a roof and truss structure."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, green, lawn", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "a17477b445b3443189dad22f768b888b"], "properties": ["load, crates, snow", "roof, pillar, stairs"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, tree, hill", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " of a small white building with stairs and a lid."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["table, staircase, light", "building, stairs, lid"], "captions_pred_pc": ["a black and white photo of the letter g", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["shape is cylindrical, color is silver, material is metal", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a cone shaped object", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is made of moss", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color is white, yellow, plastic", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a numbered rock.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["number, color, shape", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white drawing of a room"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "92498f398e244020a867686729633610"], "properties": ["tv, chair, laptop", "a, house, cat, dog"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, pink", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "7f8942ef51dd4246993a587a12df168c"], "properties": ["Cabinet, Drawers, Filing", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a house in the middle of a field"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["size, material, color", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a stone wall with a window and a clock."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["roof, brown, flat", "window, clock, wall"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor plan, heating system, ceiling light fixture", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a wooden cube.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["ad3f96bc1c7e4aa88d71ae3dfafd0ad1", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is cube, material is wood, color is brown", "rusty, warning, metal"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wooden crate", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a box, a cup, a bottle, a jar", "house, tree, hill"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, text", "house, hill, forest"], "captions_pred_pc": ["the logo for carl meyer", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a black and white of a knife/sword with a handle."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, horns, features", "image, color, black and white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a knife"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof, color, yellow", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a white glass beer mug."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, head, bowl", "color, white, glass"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["building, floor, columns", "throne, stairs, tree"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "09f2cf267e954c958828325067bcc36a"], "properties": ["collection, plane, car", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, and size", "box, handle, gun"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a small wooden house with a green roof."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, trusses, beams", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["Arms, Legs, Color", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["white pyramid ", " a clear glass table with metal legs and balls on top."], "sample_ids": ["75accf3f561b4cf6a7b07c6ad0c918ec", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, shape is pyramid, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["above a black and white image of a square with many small dots", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a pyramid on a white background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6b745457e06840119058883b35f78f58", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, color, blue", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["40921ffd69db479294554d261daf3035", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, railing, staircase", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, yellow, chimney", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a pile of mint green soap cubes."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "edd35e0657b640b1b8fcf86942e1a9e5"], "properties": ["- material is metal- color is silver- texture is textured", "color, mint, soap"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background"], "question": "which object is made of soap", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a white hand, ear bud, teddy bear, earpiece, and utensil."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "1c59287d496f4da6b245a01d25a7e2a4"], "properties": ["earbud, earpiece, earpiece", "earbud, earpiece, earpiece"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a hand holding a cup"], "captions_pred_image": ["a white object on a grey background", "a white object on a grey background"], "question": "which entity has earbuds", "label": 0}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "a17477b445b3443189dad22f768b888b"], "properties": ["s, chimpanzee, human, wolf", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["black, roof, green", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "e602ac60041f4b4f84c044161e478781"], "properties": ["house, roof, green", "floor, wall, roof"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a white van with a logo on the side.", " a house with a flat roof structure."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, logo, side", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, color, blue", "roof, truss system, framing"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["water, boat, rock", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a small silver camera with a lens.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["62829a25b4634d63a2ba2b0220335b3e", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["lens, silver, camera", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a toothbrush on a white background stock illustration \u00a9 iStock/Getty Images", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a small purple plastic chair with holes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, plastic, purple", "a, material, clay"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["white ceramic urn with a red lid.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ec15c810a38d4d45a36db910ecb2bcf8", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, lid, red", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photograph of a vase", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white ceramic vase sitting on top of a gray surface", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object is black?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["- color is red, blue, pink", "house, rock, bird"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["houses, trees, road", "water, boat, rock"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small building with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, building, small", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a house with a roof"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a large metal building with a roof and truss structure."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "b85a99699ccd4bcba213322113bb253d"], "properties": ["food, leaves, shredded paper, rocks", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a bird in flight", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- material is plastic- shape is dice- color is white", "mountainous, landmass, state"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, color", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a red circular object with a checkered pattern, resembling a round pillow or bed cover."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "9cf9fb6d07084488892422a5a5be00ef"], "properties": ["color, pattern, material", "pattern, color, shape"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black circle on a white background"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a round cushion royalty-free 3d model preview"], "question": "which object has a checkered pattern", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["two-story, roof, building", "building, material, stone"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["roof, color, pink", "arrow, red, white"], "captions_pred_pc": ["above a black and white image of a metal grate", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a spiral staircase"], "question": "which entity has a white arrow?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a white glass beer mug."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, tan, brown, orange", "color, white, glass"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, character, person", "a, material, steel"], "captions_pred_pc": ["a 3d model of a person", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["mug is purple, cup is black, candle is black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof.", " of a wooden windmill with a red roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, color, blue", "roof, color, red"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, roof, structure", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, blue, white, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, light, jewels", "axe, handle, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a knife on a white background"], "question": "which entity has a handle made of wood", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "a2354f13774340d392fbf33564934aab"], "properties": ["color, blue, structure", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " of two rocks with ice elements."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["headboard, wall, strip", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, rock, pond", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a blue roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, color, blue", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["buildings, houses, grass", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["an image of a pile of trash on the ground", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a potted christmas pine tree."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["graffiti, chinese writing, door", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, white, yellow, roof, metal", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, roof, blue", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" of a white cube-shaped shelf", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1fc0969de9bf47cab82cae4cc8fe6c2f", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is cube, color is white, material is wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a house with a flat roof structure."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "abc52d210d71415296730bb00352ce6f"], "properties": ["s of, snowboard, shoes, mask", "roof, flat, structure"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small building with stairs and a glass floor, featuring a square table and a black square ceiling light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "8aaad713b8834739b008ccf2f3d86cce"], "properties": ["building, stairs, shelves", "floor, table, light"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photograph of a window"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white 3d model of a staircase on a platform"], "question": "which building has a glass floor", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, material, shape", "a train, a ship, a boat"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", "a white glass beer mug."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "1d686cbd3e9a4c629a43088658989286"], "properties": ["collection, color, black, handle, wooden", "color, white, glass"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof, color, purple", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a celtic stone cross.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- material is stone- shape is cross- color is black", "color is white, yellow, plastic"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a small house with stairs and a roof."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["shape, color, material", "roof, stairs, house"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["shape is hot dog, design is dragon, color is black", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["ceiling, beams, light", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, horns, features", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " of a black and white striped fly in the air."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["location, highway, train station", "black, white, fly"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a black and white photograph of a fly"], "question": "which entity is not a fly?", "label": 1}, {"captions": ["small airplane flying in the air.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["903dd2d9d2b7499580a0c1645df88a22", "e098706085a44898abbd549693d12a64"], "properties": ["airplane, fly, air", "color is black, white, orange"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a panda holding a light bulb", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of an airplane royalty-free 3d model", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["mug, color, brown, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, and size", "torso, breasts, pattern"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a woman's chest"], "question": "which entity has a hexagonal pattern", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["desk, chair, lamp", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color is white, material is plastic, shape is bottle", "metal, cross, clock"], "captions_pred_pc": ["of a black circular object on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "c3a82df41875402285608ef13a55df57"], "properties": ["desk, chair, table", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a staircase in a room", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, background, white", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is whiter", "label": 1}, {"captions": [" a small purple plastic chair with holes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, plastic, purple", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a white 3d model of a city skyline"], "question": "which object is made of wood", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small white building with stairs and a white table."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["red, mouse, handwriting", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a wooden roof structure with a pink roof."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, height", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["type, relief, statues", "a, material, clay"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a white glass beer mug."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, material, shape", "color, white, glass"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a clay pot with holes in it."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["ceiling, light, desks", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a white of a woman with her arms outstretched."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "096e42b466ec438d95c5d89a85191534"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "white, rock, shell"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, lake, boat", "roof, trusses, beams"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a roof structure"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is sphere, color is white, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a wooden windmill with a red roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a windmill on a gray background"], "question": "which building has a red roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["floor plan, heating system, ceiling light fixture", "image, building, stairs"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with stairs?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["railings, staircase, spiral", "house, tree, pool"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["shape is box, color is white, door is present", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a hill", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, air conditioner, house", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white illustration of a window", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with a roof"], "question": "which building has a roof with beams?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["color, door, window", "building, door, clock"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a black and white image of a church with a steeple"], "question": "which building has a clock", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a house with a green, wooden-structured roof."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, material, pattern", "roof, color, green"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["graffiti, chinese writing, door", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, shape, and size", "buildings, houses, grass"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", "a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "88c6f2a973c449b8bf45b10a569e0e21"], "properties": ["floor, table, light", "a, chair, table, light"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white illustration of a person riding a bicycle"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape"], "question": "which object has a glass top", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["house, fence, dog", "wood, board, shelf"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden staircase.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["material is wood, staircase, wood", "books, paper, lamp"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a black and white photograph of a toilet paper holder"], "question": "which object is made of paper", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a white building."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "4decc6a3d12c47888f8fec543153a985"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, white, building"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a bottle"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a building on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, blue, rim, blue", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, room, ceiling", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a large steel building with a pool."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["boat, table, chairs, umbrella, solar panel", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is cube, color is black, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "887e410d07854396b563325ae1929583"], "properties": ["color, black, shade, black", "hat, mouse, bear"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "97e000ff41094665afd94ea565da8b13"], "properties": ["a train, a ship, a boat", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " of a small white building with stairs and a lid."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, structure, suspended", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a piece of lace", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a house with a green, wooden-structured roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, tree, rock", "roof, color, green"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, hole, shelf", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["background, color, white", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity has a ring with animal designs?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a wooden table with metal legs and frame."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color, light, jewels", "metal, legs, frame"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a white wooden table"], "question": "which entity has more metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a chessboard on a beige ceiling tile."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7dccc542a68f470a947bf5f698c27bbd"], "properties": ["color, shape, and size", "beige, tile, chessboard"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a leopard print banner"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "3d chess board royalty free 3d model preview no 2"], "question": "which entity is a chessboard?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["buildings, houses, grass", "3D, toothpick, skateboard"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["an image of a pile of trash on the ground", "a white toothbrush on a gray background"], "question": "which entity has a toothpick?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, light", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["- material is metal- color is silver- texture is textured", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a throne with a tree on it"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["mug is purple, cup is black, candle is black", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, model, luggage", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, shape, and size", "house, fence, dog"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is larger", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, red", "roof, material, wood"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a building with a roof"], "question": "the roof of the windmill is made of wood", "label": 0}, {"captions": ["a 3d white cube with windows resembling a building.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["- material is white- color is white- texture is textured", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["building, roof, white, cubes", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white image of a map", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a city on a white background", "a white kite flying in the air against a gray background"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["shattered, resembles, broken phone", "table, bench, deer"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white motorcycle with wings."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, height", "color, white, wings"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a wooden roof structure with a pink roof."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["light switch, electrical outlet, furniture", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "97e000ff41094665afd94ea565da8b13"], "properties": ["- color is red, blue, pink", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a wooden shed with a gray roof."], "sample_ids": ["c27b018330da406680e58b94266c310b", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["frame, material, wood", "roof, color, gray"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a white castle composed of small cubes."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["building, tree, plane", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "two white spheres in a ."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, eagle, wood", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a white ball on a gray background"], "question": "which entity is not a rock formation?", "label": 0}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a wine corkscrew"], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, head, white and brown", "a, type, corkscrew"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, material, structure", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a stone wall with a window and a clock."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["bed, desk, window", "window, clock, wall"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a brick wall"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, shape, size", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a stone wall with a window and a clock."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["painting, door, wall", "window, clock, wall"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a brick wall"], "question": "which wall has a clock", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof that is resembling a pyramid with a flat roof?", "label": 1}, {"captions": [" a small house with a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, house, small", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, trusses, beams", "hat, bow, arrow"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of the roof of a building", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a small blue robot with a windmill."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["blue, curved, resembles", "color, blue, robot"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d model of a wind turbine"], "question": "which object is blue", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a character wearing glasses and a hat."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["earbuds, light, ring", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["white, top, writing", "a, material, clay"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a white castle composed of small cubes."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["house, tree, pool", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "18e392c5360146eda498c5edab25b15c"], "properties": ["arm, light, sign", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a spiral staircase with a railing in a small building."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["building, door, clock", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a staircase in a white room"], "question": "which building has a staircase with a railing?", "label": 1}, {"captions": ["colorful of a dragon toy.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["8c0ec07322914726ad86cc4885052e08", "bf18bfd89efd43389781050230467d58"], "properties": ["color, toy, dragon", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a stingray on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small dragon toy", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small trailer and a white box.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["box, trailer, white", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a cell phone", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a blue roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, blue", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a metal building with a purple roof and cage structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, metal, white", "roof, purple, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, horns, features", "water, boat, rock"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house on a hill in a field."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof truss, insulation, suspended ceiling", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "bded33af34104b9686b845dfd18309a9"], "properties": ["floor, table, light", "table, staircase, light"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a small table with a staircase"], "question": "which table has a staircase integrated with it", "label": 1}, {"captions": [" a black and purple dragon with wings and purple eyes.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["9fdaa7bf7dbe499482d10705cbe366d2", "4a889132cc444d10bfcbf6c760984416"], "properties": ["Eye color, Black, Purple", "a, color, white"], "captions_pred_pc": ["a black and white illustration of an airplane on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a dragon with wings", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, yard, surrounding buildings", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a truck on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a small wooden house with a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["color, roof, tray", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "green and black ak-47 assault rifle with grenade launcher."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9ffa5ac853354223a7f4f42d532f7633"], "properties": ["A, a, a", "color, black, green"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a cell phone on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2"], "question": "which object is black and green?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["color, shape, and size", "roof, structure, suspended"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a piece of lace"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a metal roof"], "question": "which entity is not a roof structure?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "b896a0898efe4059a776193c02132129"], "properties": ["size, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a purple chair with holes in it.", " a small purple plastic chair with holes."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, purple, holes", "color, plastic, purple"], "captions_pred_pc": ["of a silver pendant with an intricate design", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white chair", "3d model of a chair royalty free 3d model preview no 3"], "question": "which chair is made of plastic", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, color, white", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a white and blue building with a black roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, blue", "color, white, blue, roof, black"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["water, boat, rock", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white barn with a metal roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, grass, moss", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a barn"], "question": "which object has a white roof", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a white castle composed of small cubes."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, number", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, pink, green", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a stone wall featuring carvings and statues."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["a, desk, laptop", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, windows, building", "structure, columns, roof"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a building with multiple levels"], "question": "which building has a roof", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["door, stairs, color", "hat, skull, bread"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a small grassy island in the water.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["location, water, island", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3f010c9478164c3db00cab997fdafa40"], "properties": ["color, shape, and size", "arm, light, sign"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a skateboard"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a pile of mint green soap cubes.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, mint, soap", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs, a roof, and a pillar.", " of two rocks with ice elements."], "sample_ids": ["a17477b445b3443189dad22f768b888b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, pillar, stairs", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a square with dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small building with a balcony", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "f1b557775310478893242180defa4d80"], "properties": ["base material is wood, color is red, message is welcome to northwich", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small house on a hill in a field."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, ceiling, hole", "house, hill, field"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a white motorcycle with wings."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["light switch, electrical outlet, furniture", "color, white, wings"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a motorcycle on a white background"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "box, paper clip, lock"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["ceiling, light, desks", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["variation, bread, pot", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", "a black rock with writing on it."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, red, green, blue", "color, black, writing"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a white and gray glove", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["background, color, white", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, truss, lamp", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a spider-like creature with long arms and legs."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, roof, soup", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a large gray sphere", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "12093c89a60941e7884b252bdc05104c"], "properties": ["size, color, shape", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["bedroom, bathroom, bed", "room, staircase, bus"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "6b745457e06840119058883b35f78f58"], "properties": ["color, white, plastic", "roof, color, blue"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a house with a steeple on top"], "question": "which object is made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "b896a0898efe4059a776193c02132129"], "properties": ["color, orange, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a wooden billiard table with legs."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a box, a cup, a bottle, a jar", "legs, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, color, pink", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "c9c786f133f54d5e8d99bfc1a588df41"], "properties": ["A, a, a", "stacked, racks, toy train"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photo of a person standing in front of a white wall"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a ship's propeller on a white background"], "question": "which object has a toy train?", "label": 1}, {"captions": [" a building with a purple, glass roof and a suspended ceiling featuring beams.", " of a crab holding a rubik's cube."], "sample_ids": ["a54c746bb2644e3ea4e53ee65e32df64", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, glass, purple, ceiling, beams", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["the letter 't' is made up of tiny white dots on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a two-story small apartment building with a roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, metal, white", "two-story, roof, building"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "be1376023c274bdda995d54f3694157f"], "properties": ["color, tan, leather", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d model of a house with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["floor, staircase, railings", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "703dce44052e48cfb024bceb08141554"], "properties": ["a, booth, bed", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a wooden structure"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a clay pot with holes in it."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["fireplace, bench, log", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["red, mouse, handwriting", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, shape, height", "building, color, black and white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a person breaking through a brick wall."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof truss, beams, structure", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["chair, table, refrigerator", "wood, board, shelf"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a house with a blue roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["black, white, coffee table", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "white ceramic urn with a red lid."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color is white, material is plastic, shape is tube", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white photograph of a vase"], "captions_pred_image": ["a white object on a gray background", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, blue, green, yellow, blue", "a, material, clay"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "c3a82df41875402285608ef13a55df57"], "properties": ["color, light, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a house with a wooden-framed roof structure."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["shape is box, color is white, door is present", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small house with stairs and a roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, white, red, pink", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, bench, deer", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, holes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white bench with a shelf on top", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["sandbox, sand bucket, wooden blocks", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white house with a staircase and a window."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "9eb88d17310d42dda9e17883e9922525"], "properties": ["s, stick, leaf", "house, staircase, window"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a roman inscription on a stone plaque and paper scroll with writing.", " a potted christmas pine tree."], "sample_ids": ["0a281f5738b54febb835c052549ba399", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["inscription, scroll, stone", "a, color, green"], "captions_pred_pc": ["a black and white photograph of a mirror", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of a plaque on a stone wall", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, black, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, light, handle", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a green mountain with trees and grass."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, stairs, house", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["building, material, steel", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a large building"], "question": "which building has a pool", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, white, gold", "a, color, red"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "4389909667db472ea9a57a70eb940fa4"], "properties": ["roof truss, insulation, suspended ceiling", "building, window, skeleton"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a white castle composed of small cubes."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a white fox."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["resembles, octopus, squid, spider, robot", "color, white, fox"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a white fox on a gray background"], "question": "which animal is white", "label": 1}, {"captions": ["white pendant light fixture ()", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color is white, material is metal, light source is incandescent", "blue, curved, resembles"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small white box with a green light."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, white, light"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "12093c89a60941e7884b252bdc05104c"], "properties": ["rocky, rug, puddle", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a futuristic white sports racing car."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["screen, keyboard, box", "color, white, futuristic"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " an old lantern with moss on it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color, grass, moss", "moss, lantern, old"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of an old lantern"], "question": "which object has moss on it", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a wooden table with a plant on it."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["roof, brown, flat", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table and stool", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small wooden house."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["door, white, structure", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a small cottage"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a spiral staircase with a railing in a small building."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["floor, wall, roof", "staircase, railing, building"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a clay pot with holes in it."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["shape is cylindrical, color is silver, material is metal", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a child's room in a small house with windows.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["room, house, windows", "house, fence, playground"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is plastic- color is green- shape is box", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "of a black candle on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of two rocks with ice elements."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, bird, lake", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "6813afb531d041e48532088d01b00db9"], "properties": ["color is white, material is plastic, shape is box", "- color is blue- shape is pear-like- structure is flame-like"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a low poly 3d model of a rock"], "question": "which object is blue", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["house, lake, pool", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "97e000ff41094665afd94ea565da8b13"], "properties": ["- material is wood, metal, metal", "roof, material, wood"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["wall, stairs, castle", "a room, a cake, a table"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with various objects", "label": 1}, {"captions": [" a black building.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, black, building", "roof, material, wood"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["roof, truss, lamp", "a room, a cake, a table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small red renault clio car.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color is red, make is renault, model is clio", "rusty, hat, dartboard"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which is not a car", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["mossy, rock, grass", "turrets, flags, towers"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "06a1c233fb444830b577aa06e2c01294"], "properties": ["roof, green, tiled", "house, tree, hill"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a clear glass table with metal legs and balls on top."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- material is plastic- color is white- shape is cube", "glass, metal, balls"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["color, blue, components", "shade, white, bead"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a wall lamp with a white shade and a butterfly design"], "question": "which object has a white shade", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a house with a wooden-framed roof structure."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, horns, eyes", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["s, boat, bird, airplane, kite", "house, tree, hill"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "c3a82df41875402285608ef13a55df57"], "properties": ["color, lighting, booth", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a large metal building with a roof and truss structure."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["frame, beams, trusses", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a house with a flat roof structure."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, table, chairs", "roof, flat, structure"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["red, eyes, rocket", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": [" a gray, metal pillar/cylinder.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["11391e6bab574dc0be8f2440fbc3b724", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color is gray, material is metal, shape is cylinder", "paint, rust, concrete"], "captions_pred_pc": ["of a black candle on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a candlestick", "a 3d model of a concrete wall"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a white glass beer mug."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, shade, black", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a white glass beer mug."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "1d686cbd3e9a4c629a43088658989286"], "properties": ["graffiti, bench, wall", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a house with a roof and beams."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["moss, mushroom, grass", "roof, beams, house"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "cafc467aff2643e8b70149c4944263ee"], "properties": ["shape is cylinder, color is white, material is plastic", "wing, knife, boat"], "captions_pred_pc": ["of a spike on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a clay pot with holes in it."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, roof, wall", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, white, containers", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, gazebo, table", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " of two rocks with ice elements."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, cup, bowl", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, windows, building", "island, mountain, grass"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a tree with green leaves.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1a902b67735845198efb1b84f434b580", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["leaf, color, green", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white drawing of a tree", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a lot of foliage", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house with a wooden-framed roof structure."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, material, wood"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["3d white model featuring a boat, block, turbo text, puma logo, box, and shelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1fe7018cb01a4be58c0f211b8e2db93f", "c3a82df41875402285608ef13a55df57"], "properties": ["3d, model, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white usb drive with the word 'turbo' on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed object with the word turbo on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["roof, color, pink", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a roof that is covered in moss?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " of two rocks with ice elements."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, house, wooden", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "dd3a9323ed514ccab330973ff9588015"], "properties": ["house, rock, pond", "room, bed, desk"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed?", "label": 1}, {"captions": [" of a human skull", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, black, white", "color, black, visor"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a black motorcycle helmet with a visor on top"], "question": "which object is black", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "hat, pants, shirt"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a house with a roof and beams."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, eye, handle", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a room", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["brown, paint, tape", "house, building, people"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a small town in the middle of a field"], "question": "which entity does not feature houses", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a wooden table with a plant on it."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["a room, a cake, a table", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a clay pot with holes in it."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, green, orange, star", "hole, material, clay"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with a pond and situated on a rock."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "92859eb82a344134806b37cc209927c6"], "properties": ["red, mouse, handwriting", "house, rock, pond"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a clear glass display case with a square light fixture."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "980ded888795417f94b46750105e1597"], "properties": ["Arms, Legs, Color", "light, fixture, square"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a clear plastic box"], "question": "which entity has a light fixture", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["a, b, c", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["above a black and white drawing of a submarine", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["backrest, curved, yes", "color, green, squirt gun"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is a toy?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, white, containers", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, ceiling, hole"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a square ceiling", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["yellow, table, roof", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " of a small white building with stairs and a lid."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, box, wall", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a flower", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, purple, beams", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which building has a glass roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e098706085a44898abbd549693d12a64"], "properties": ["water, river, island", "color is black, white, orange"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is not a small island with trees", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spiral staircase with railings.", " of two rocks with ice elements."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["railings, staircase, spiral", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a small white building with stairs and a lid."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, door, window", "building, stairs, lid"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a white of a spaceship and building.", " of a white round table with a red accent."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "fea62a865b4e40899d95785533818329"], "properties": ["image, building, spaceship", "color, white, red"], "captions_pred_pc": ["a black and white drawing of a tree", "above a black and white photograph of a person hanging from the ceiling"], "captions_pred_image": ["a 3d model of a white object on a gray background", "an empty white plate on a gray background"], "question": "which entity is a white table?", "label": 1}, {"captions": [" a small trailer and a white box.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["box, trailer, white", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["image is rock formation with a white cliff and a rock", "color, silver, white"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a silver ball on a gray background"], "question": "which entity is not a ring?", "label": 0}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a house with a pink roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "6162909df6294848a8eea83c3aa9585b"], "properties": ["roof, structure, wall", "color, roof, pink"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a roof that is a different color than the rest of the house?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white building with stairs and shelves."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, and size", "building, stairs, shelves"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, blue", "building, room, sky"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["cc4ccf85d4c1425cb5975b8b5664d38a", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["paper, hole, sign", "plane, ship, bird"], "captions_pred_pc": ["a silhouette of a map of the state of karnataka, india on a white background royalty free illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["an image of a torn piece of paper in the shape of a map", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " of a small white building with stairs and a lid."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["moss, mushroom, grass", "building, stairs, lid"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a wooden staircase with a railing and table."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "956247bea850458199c651037d4b1d7f"], "properties": ["table lamp, ceiling light, table", "railing, table, staircase"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of a table with a staircase"], "question": "which staircase has a table?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "4389909667db472ea9a57a70eb940fa4"], "properties": ["building, room, sky", "building, window, skeleton"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window?", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "7407a108e0354925b83b750339bc03df"], "properties": ["pattern, color, shape", "platform, color, orange"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a motorcycle on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a, shirt, pants", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a black and white image of a bird in flight"], "question": "which entity is not a bird?", "label": 0}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, food, bowl", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a man with black hair, wearing a black shirt, black pants, and a suit."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "ffbbd798b7e448849b7acd309717739c"], "properties": ["mossy, rock, rocky", "a, shirt, pants"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white 3d printed figurine of a man"], "question": "which entity is not a shirt?", "label": 0}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, pier, stairway", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a wooden roof structure with a pink roof."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["hat, food, bowl", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hair, legs, wings", "island, terrain, water"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["room, door, shelf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a large metal building with a roof and truss structure."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, umbrella, coat", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a tree made of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a house with a pink roof."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, leg, tail", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a pink roof", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " of two rocks with ice elements."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, toilet, robot", "image is a rock with ice elements"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, yard, surrounding buildings", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a roof"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["mossy, rock, grass", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, green, lawn", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a white glass beer mug."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "09f2cf267e954c958828325067bcc36a"], "properties": ["blue tarp, flower, small island", "island, terrain, rocks"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white image of a piece of dirt on the ground"], "question": "which island has more rocks", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " of a black gun/rifle"], "sample_ids": ["44723e86bdd14071b0544745879604de", "b596b52b86914c2b9bc4b4cd096621db"], "properties": ["resembles, bar, soap", "color is black, material is metal, type is gun/rifle"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white image of a gun on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a black gun on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["roof, room, ceiling", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with a roof"], "question": "which house has a brick wall?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["boat, table, chairs, umbrella, solar panel", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "4e82177059204292899fa7415164a05e"], "properties": ["a, booth, bed", "yellow, tires, load"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a monster truck with spikes"], "question": "which toy has large tires", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof truss, beams, structure", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a hill", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["water, river, island", "bedroom, bathroom, bed"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a large house with a roof on a platform."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, structure, greenhouse", "roof, platform, house"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a potted christmas pine tree."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, height", "a, color, green"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a christmas tree in a vase"], "question": "which is taller", "label": 0}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["floor plan, heating system, ceiling light fixture", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a child's room in a small house with windows."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "88847a6445044bcbab9611e6028a19b9"], "properties": ["houses, trees, road", "room, house, windows"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity is a room in a house?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "structure, columns, roof"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building with multiple levels"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["hat, pants, shirt", "house, tree, hill"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "c3a82df41875402285608ef13a55df57"], "properties": ["lamp, harp, bowl", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a harp in a white room", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, front, road", "house, roof, green"], "captions_pred_pc": ["above a black and white drawing of a building", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a building with blue lines and structure.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, structure", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["d6087023095446fbadef1721478373b2", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["door, roof, window", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is plastic- color is white- shape is cylinder", "window, arches, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a white human skull with broken bone elements."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, leg, tail", "color, white, skull"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["b5afccae993346079483507296fbb029", "09f2cf267e954c958828325067bcc36a"], "properties": ["shape is square, material is metal, color is rusty", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a concrete column", "a black and white image of a piece of dirt on the ground"], "question": "which object is more likely to be found on a small island?", "label": 1}, {"captions": [" of a house with a roof.", " a house with a roof and beams."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, house, roof", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of a building with a roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["desk, chair, table", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, roof, block", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a 3d white cube with windows resembling a building."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "4a07a5293f024bb0a353954a056ef626"], "properties": ["Steel, Color, Yellow", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a cube"], "question": "which entity is made of a material that is white?", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, red, apples, tree, cactus, dots", "island, fish, ice"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d map of the country of israel"], "question": "which entity has more ice", "label": 1}, {"captions": [" a red and white robot.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, red, white", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["base material is wood, color is red, message is welcome to northwich", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "46903bf029934b1989bc062dcb0a5531"], "properties": ["building, tree, plane", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, material, structure", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "c3a82df41875402285608ef13a55df57"], "properties": ["boat, table, chairs, umbrella, solar panel", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of two rocks with ice elements."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, brown, flat", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, red, blue, green", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " of two rocks with ice elements."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, purple, beams", "image is a rock with ice elements"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "a17477b445b3443189dad22f768b888b"], "properties": ["ruined building, stone floor, small stone structure", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a building with yellow lines."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, bowl, green", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white drawing of a map"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a drawing of an airplane flying over a city"], "question": "which entity has more yellow lines", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " of a small white building with stairs and a lid."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["location, highway, train station", "building, stairs, lid"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a large gray sphere", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "bf18bfd89efd43389781050230467d58"], "properties": ["size, color, shape", "Lights, number, five"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, red, green, yellow", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a piece of furniture"], "question": "which object has a clock on it?", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["a, building, coin, ball", "a, building, coin, ball"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin", "label": 0}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small building with windows and a roof."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "92498f398e244020a867686729633610"], "properties": ["lighthouse, fountain, crater", "a, house, cat, dog"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["085db9059b744673b5623b5338e02196", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, red, house", "roof, beams, chimney"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house with a roof"], "question": "which house has a chimney", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["house, roof, green", "table, structure, roof"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["roof truss, insulation, suspended ceiling", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a roman inscription on a stone plaque and paper scroll with writing."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "0a281f5738b54febb835c052549ba399"], "properties": ["Drawer, Pattern, White", "inscription, scroll, stone"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white photograph of a mirror"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white photograph of a plaque on a stone wall"], "question": "which object has a scroll?", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a house with a green, wooden-structured roof."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["image, building, stairs", "roof, color, green"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a house with a triangular roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " of a white human skull with broken bone elements."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, table, chairs", "color, white, skull"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, height", "house, fence, playground"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a multicolored metal building structure with a roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["yellow, table, roof", "color, roof, structure"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["shape is cube, color is black, white", "house, table, chair"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a small white table with a chair"], "question": "which building is white", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "674a36147ffb47059e48abc9fa19d923"], "properties": ["a lamp, a syringe, a light pole", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sandbox?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, black, white", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a house in the middle of a field"], "question": "which entity has more surrounding buildings", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of two rocks with ice elements."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["ceiling, light, desks", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["frame, roof, trusses", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["house, plane, town", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a small white building with stairs and a lid."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["screen, keyboard, box", "building, stairs, lid"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a house with a roof structure and toothbrushes."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["a lamp, a syringe, a light pole", "house, roof, toothbrushes"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, hole, shelf", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": ["a white of a man in a suit and mask, possibly a diving suit.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["205251e4277e41d1aae6b2358267ad56", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["image, color, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a beetle on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed figurine of an alien creature", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which image is black and white?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "a17477b445b3443189dad22f768b888b"], "properties": ["building, door, clock", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a small building with a balcony"], "question": "which building has a roof", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["backrest, heart, wooden", "cloak, sword, spear"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a small purple plastic chair with holes."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- material is metal- color is silver- texture is textured", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, white, material, ceramic", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["graffiti, chinese writing, door", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, house, small", "house, staircase, table"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "woman squatting and holding a water bottle in a ."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "1d6d7e9f9b1945e2b8b5178cf3d82e59"], "properties": ["A, a, a", "woman, bottle, squat"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a turtle's shell"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a woman squatting with her hands on her hips and knees"], "question": "which woman is holding a bottle?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a wooden table with metal legs and frame."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["yellow, table, roof", "metal, legs, frame"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a white wooden table"], "question": "which table has metal legs", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small white house with a roof."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["Drawer, Pattern, White", "roof, color, white"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["floor, staircase, railings", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a light switch", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a white building."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "4decc6a3d12c47888f8fec543153a985"], "properties": ["shape is sphere, color is white, material is plastic", "color, white, building"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a bottle"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a building on a white background"], "question": "which is not a building", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "bf18bfd89efd43389781050230467d58"], "properties": ["rocky, rug, puddle", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["tiers, building, stairs", "building, plane, room"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "411c164757fc4de68dfecb35fa858223"], "properties": ["low poly, plant, white", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color is white, yellow, plastic", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["building, stairs, shelves", "house, roof, green"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": ["woman squatting and holding a water bottle in a .", " of two rocks with ice elements."], "sample_ids": ["1d6d7e9f9b1945e2b8b5178cf3d82e59", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["woman, bottle, squat", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a turtle's shell", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a woman squatting with her hands on her hips and knees", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["a, roof, soup", "roof, truss system, framing"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a white of a spaceship and building."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, color, purple", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "red heart-shaped object."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "shape, heart, red"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a heart shaped object"], "question": "which object is red?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["house, plane, town", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, bird, lake", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, texture", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, horns, features", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white building with a red roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["background, color, white", "color, white, roof, red"], "captions_pred_pc": ["a black line on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of an office building"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, door, window", "color, frame, shape"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "be1376023c274bdda995d54f3694157f"], "properties": ["house, roof, green", "roof, beams, chimney"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "white of a rhino head with horns."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8481aade84de47cab1a9accf8067e678"], "properties": ["color, shape, and size", "image, rhino, head"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a penguin skull in black and white"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["Lights, number, five", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["yellow metal barricade ", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color is yellow, material is metal, height is 0.5 m", "earphones, wire, instrument"], "captions_pred_pc": ["a white barrier on a white background", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small wooden house."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["yellow, table, roof", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " of a person breaking through a brick wall."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["face, handle, spout", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a small, circular object", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["house, fence, dog", "blue, yellow, frog"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a black and white of a knife/sword with a handle."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, size", "image, color, black and white"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["building, tower, color", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black square on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["blue tarp, flower, small island", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small building with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, building, small", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of the roof of a building"], "question": "which building has a roof made of wood", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", "a pixelated-textured purple sphere ."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, text", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a screw", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["lamp, harp, bowl", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a white of a man in a suit and mask, possibly a diving suit.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["205251e4277e41d1aae6b2358267ad56", "839a873262a544c9906f3f5799ca4648"], "properties": ["image, color, white", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a beetle on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d printed figurine of an alien creature", "a person jumping on a trampoline in slow motion"], "question": "which image is of a person in a green outfit?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, hill, deer", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a close up of a mushroom?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, truss, lamp", "house, roof, wooden"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, roof, structure", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of the roof of a building"], "question": "which structure has a roof made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "red heart-shaped object."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["color, shape, and material", "shape, heart, red"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a heart shaped object"], "question": "which object is a heart shape?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color, shape, and size", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white plastic tray"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["desk, chair, table", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a large orange keg with a white lid.", " of a white human skull with broken bone elements."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, lid, orange", "color, white, skull"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["roof, metal, white", "image, city, spoon"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a city skyline in white"], "question": "which image shows a city?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, floorplan, gym", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small wooden house with a green roof."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["floor, staircase, railings", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, island, water", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photo of a boat in the water", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["shape is cube, color is black, white", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "a2354f13774340d392fbf33564934aab"], "properties": ["door, roof, pool", "building, roof, yellow"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small house with stairs and a roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["size, color, shape", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["floor, wall, roof", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a white tiled floor with a ceiling light and small holes."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "9906caefe141465990aacb312e1025f0"], "properties": ["a, b, c", "light, floor, ceiling"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a white tile floor"], "question": "which entity has a light", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a green mountain with trees and grass."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, grass, moss", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["yellow, table, roof", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a white box on a wooden floor"], "question": "which entity has a white box?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a wooden barrel.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["77ceb4db6ddc4a6c8c4a83ab1519e78b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["material is wood, shape is barrel, color is brown", "box, handle, gun"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a gray and white barrel", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a tree stump and rock with flowers on them."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["background, color, white", "flower, rock, tree stump"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has a tree stump?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a train, a ship, a boat", "building, plane, room"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, hole, shelf", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a hole", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of an old, rusty, green metal locker and a large wooden box."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "9797ff34c99a43be86d27868b3f9cb6d"], "properties": ["- material is plastic- color is green- shape is box", "metal, locker, box"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of an old metal locker"], "question": "which box is made of metal", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "a17477b445b3443189dad22f768b888b"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "roof, pillar, stairs"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "97e000ff41094665afd94ea565da8b13"], "properties": ["window, clock, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["3d superman logo in red and yellow", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "b896a0898efe4059a776193c02132129"], "properties": ["color, red, yellow", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is wood - color is white - height is 1.8 m", "rusty, warning, metal"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["a, bird, lamp", "books, paper, lamp"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white photograph of a toilet paper holder"], "question": "which entity has a lamp with a black and white shade?", "label": 1}, {"captions": ["white table lamp with a white shade.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, shade", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white table lamp with a white shade", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["black, white, laptop", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "bded33af34104b9686b845dfd18309a9"], "properties": ["base, speaker, light", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of a clock", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a small table with a staircase"], "question": "which object has a light", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with wooden framing and trusses."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["house, rock, pond", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house under construction"], "question": "which house is more likely to be made of wood", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, staircase, window", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Steel, Color, Yellow", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a house with a roof"], "question": "which entity is made of yellow", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["color, orange, leather", "building, color, white"], "captions_pred_pc": ["a black and white illustration of a chair", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a bookshelf on a white background"], "question": "which entity is not a building?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["floor plan, ceiling light, color", "house, roof, wooden"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white 3d model of a house", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "990f06da2ba4488da8371f68da6b4523"], "properties": ["apse, roof, floor plan", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with a wooden roof"], "question": "which entity has a roof truss structure", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, size", "island, mountain, grass"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, gazebo, table", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "24f7d0a06d494c26a1678d81b2b7b093"], "properties": ["A, a, a", "a, laptop, teddy bear"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of an umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a white room with various objects"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, green, lawn", "a, material, clay"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a white shelf with holes and brackets."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["frame, roof, trusses", "color, white, holes"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a house under construction", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a white shelf with holes and brackets."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, red, blue, structure", "color, white, holes"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, bowl, cup", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, gray", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "a17477b445b3443189dad22f768b888b"], "properties": ["floor, wall, roof", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a crab holding a rubik's cube."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color is white, yellow, plastic", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white image of a crab holding a cube"], "question": "which entity is a crab?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, eagle, wood", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, plane, town", "house, roof, blue"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small white building with stairs and a white table."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e30374c614f54fdb90f35b96b071349d"], "properties": ["hat, food, bowl", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["house, hill, forest", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["orange, forklift, parking lot", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a small house with a spiral staircase"], "question": "which has a table", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, holes", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a black shark", " a white and blue building with a black roof."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "c893118316ee43e18322e5964b2806c5"], "properties": ["black, mouth, teeth", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a black roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a building surrounded by various structures, including a skyscraper, in a city setting."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "3b780ced7a814f86b3ee67f3596dddce"], "properties": ["background, color, white", "building, skyscraper, city"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of an airplane"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a knife with a building on top of it"], "question": "which entity has a skyscraper?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "37954d951eb24f23a4956df5a683bb92"], "properties": ["color, door, window", "door, white, structure"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a house made up of tiny dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a modern, minimalist bathroom"], "question": "which structure has a door", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small wooden house with a green roof."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["wall, stairs, castle", "roof, color, green"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a house with a ladder"], "question": "which building has a roof that is the color of green", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small wooden house with a green roof."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, truss, lamp", "roof, color, green"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "be1376023c274bdda995d54f3694157f"], "properties": ["bedroom, bathroom, bed", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "990f06da2ba4488da8371f68da6b4523"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof truss, beams, structure"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a house with a wooden roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a box, a cup, a bottle, a jar", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small wooden house."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["buildings, houses, grass", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a white castle composed of small cubes."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is metal - weight is 0 - height is 0", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", "white ceramic urn with a red lid."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["box, cylinder, bottle", "color, white, lid, red"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["Arms, Legs, Color", "metal, rusted, paper"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a black and white image of a piece of debris on the ground"], "question": "which entity has more metal", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["44723e86bdd14071b0544745879604de", "411c164757fc4de68dfecb35fa858223"], "properties": ["resembles, bar, soap", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a two-story small apartment building with a roof."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["building, fence, snowy", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "411c164757fc4de68dfecb35fa858223"], "properties": ["size, color, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["railing, table, staircase", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a window", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black bracelet with dots on it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a white 3d model of a city skyline"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a wooden billiard table with legs."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["roof truss, beams, structure", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a yellow circle with a black outline.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "e098706085a44898abbd549693d12a64"], "properties": ["color, outline, circle", "color is black, white, orange"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "of a white and black clutch with a flower design"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object has a black outline", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "4389909667db472ea9a57a70eb940fa4"], "properties": ["chair, table, refrigerator", "building, window, skeleton"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["food, leaves, shredded paper, rocks", "a, material, clay"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "f1b557775310478893242180defa4d80"], "properties": ["a, hole, shelf", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof?", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["shape, color, material", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white image of a pair of socks", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a white kite flying in the air against a gray background"], "question": "which entity is a picture of a boat", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a clear glass display case with a square light fixture."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "980ded888795417f94b46750105e1597"], "properties": ["floor plan, heating system, ceiling light fixture", "light, fixture, square"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a clear plastic box"], "question": "which entity has a square light fixture", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, words", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a long line of numbers", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" of a blue ford escort car.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, blue, ford escort", "blue, curved, resembles"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d rendering of a white bathroom sink"], "question": "which object is blue", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["image, color, pink", "door, lock, handle"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["background, color, white", "grass, plants, rocks"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a house with a roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["house, roof, toothbrushes", "roof, house, roof"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which house has a roof", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small triangular-shaped object."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "2d02985030804209a26c2c53b96a06f9"], "properties": ["building, floor, columns", "shape, triangle, small"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["table, bench, deer", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house with a red roof.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["085db9059b744673b5623b5338e02196", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["roof, red, house", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a white of a house with a hole in the ceiling."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, fence, dog", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["white of a small arch.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["for a black and white drawing of an arch", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of an arch", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, roof, green, frame, red", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, handle, straps", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, green, lawn", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a green mountain with trees and grass."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, hat, handle", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, white, containers", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "f1b557775310478893242180defa4d80"], "properties": ["a, bowl, cup", "shack, roof, door"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["image, house, ceiling", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a house", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 0}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, shape, text", "paint, rust, concrete"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a wooden house with a roof and birdcage structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "3e4527c9c8e940b5806b8a69967a90b8"], "properties": ["roof, structure, house", "roof, structure, material"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of the letter 'f' on a white background illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "40921ffd69db479294554d261daf3035"], "properties": ["tiers, building, stairs", "floor, railing, staircase"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small white building with stairs and a white table."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, stairs, table"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a wooden roof structure with a pink roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["room, bed, desk", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, yellow, black", "building, window, skeleton"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small orange piano with legs."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "d793de7c08d74414beeb8ea50f730705"], "properties": ["hair, legs, wings", "color is orange, size is small, legs"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which entity has legs", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["headboard, wall, strip", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "096e42b466ec438d95c5d89a85191534"], "properties": ["- material is plastic- color is white- shape is cylinder", "white, rock, shell"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, lake, pool", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, white, red, pink", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a spider-like creature with long arms and legs."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, staircase, window", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a small wooden house."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["structure, columns, roof", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a green roof and lawn."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "84adcf124ee742a49f7b1fe2104e072d"], "properties": ["roof, room, ceiling", "roof, green, lawn"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a knife on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small apartment building royalty free 3d model preview no.2"], "question": "which house has a green roof?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "5414d75e47104589837f3df8b6de6d22"], "properties": ["red, pile, garbage", "beige, white, round"], "captions_pred_pc": ["above a black and white illustration of a triangle", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["image is rock formation with a white cliff and a rock", "box, handle, gun"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "e80eca95874c4bffb8aec54044824d87"], "properties": ["roof trusses, beams, suspended ceiling", "arrow, mountain, area"], "captions_pred_pc": ["above a black and white drawing of a building", "a line with a square on it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "411c164757fc4de68dfecb35fa858223"], "properties": ["- color is white- shape is flower- pattern is lace", "resembles, sea urchin, shell"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, shape, size", "water, boat, rock"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d image of an animal laying on the ground"], "question": "which entity is a boat?", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, color, case", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a train, a ship, a boat", "wood, board, shelf"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a wooden roof structure with a pink roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["s, plane, house", "roof, color, pink"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": ["\"multiple white cubes arranged in a row on a gray background.\"", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["17c8222d4ce04e518117078e7de6aaed", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, background, white", "a, material, clay"], "captions_pred_pc": ["a black and white image of a box with the words 'box 2' and 'thoughtful'", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["an image of a white background with a few small cubes on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["houses, trees, road", "earbuds, light, ring"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", "a low-poly of a white, shattered sphere."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, label, shape", "sphere, color, texture"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of a cracked egg"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "Wheels, laptop, robot"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "f1b557775310478893242180defa4d80"], "properties": ["candle, color, shape", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a shower head", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["hat, pants, shirt", "moss, mushroom, grass"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has more grass", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a potted plant on a wooden table or shelf."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["color, tan, brown, orange", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a house with a pink roof."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, horns, features", "color, roof, pink"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" a mountainous landmass, resembling a small island or state like kentucky or wyoming.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["8ca9b999b69c4965bd9eb4445d605bf2", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["mountainous, landmass, state", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white map of the state of new york", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a piece of paper", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small wooden house with a green roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["resembles, toy, bookshelf", "roof, color, green"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a large steel building with a pool."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, roof, wooden", "building material, pool, steel"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "a2354f13774340d392fbf33564934aab"], "properties": ["bed, desk, window", "building, roof, yellow"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a small white house with a staircase and a window."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "9eb88d17310d42dda9e17883e9922525"], "properties": ["headboard, wall, strip", "house, staircase, window"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a wooden table and chair.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["884d232f9cd54b6c8c41b6bf357c704f", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["table, chair, wood", "grass, plants, rocks"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small wooden table", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, blue, components", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a person breaking through a brick wall."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, shape, and size", "image, brick, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["door, stairs, color", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "f1b557775310478893242180defa4d80"], "properties": ["light source, fixture, color", "shack, roof, door"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "b57936676e9d43abb635fa1217992287"], "properties": ["color, shape, and size", "a, hole, rock"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a lace belt"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, purple, suspended", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of two rocks with ice elements."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, green, orange, star", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a gray, metal pillar/cylinder."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["graffiti, wall, wheelbarrow", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " of two rocks with ice elements."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["metal, roof, chest", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, white, furniture, black", "paint, rust, concrete"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a concrete wall"], "question": "which entity is more likely to be painted", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, orange, leather", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white map of the state of new york"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- color is red, blue, pink", "wood, board, shelf"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a wooden roof structure with a pink roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["balcony, stairs, house", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a low-poly of a white, shattered sphere."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, hat, glasses", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c553ba67fa914165a07a1f1d20581f19", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["cat, bowl, donut", "Wheels, laptop, robot"], "captions_pred_pc": ["a close up view of the back of the chair", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " of two rocks with ice elements."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["furniture, room, kitchen", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["houses, trees, road", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a white human skull with broken bone elements."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, horns, features", "color, white, skull"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a small house on a hill with a floating paper object and a curved metal piece."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "000f67c78d9f409ca5dcc9d59f90287b"], "properties": ["a, desk, laptop", "a, hill, paper, metal"], "captions_pred_pc": ["a black and white image of a piece of furniture", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a house on the side of a hill"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["hat, food, bowl", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, color, pink", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, bird, lamp", "plane, ship, bird"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a bird", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["floor, ceiling, poles", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d rendering of a house on a rock"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small house with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, house, small", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "127753bf17de4252aaa7ea88f274545e"], "properties": ["face, mask, tail", "face, mask, tail"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d model of a goat's head"], "question": "which entity has a green frog face", "label": 0}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["low poly, llama, kangaroo", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, text", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["yellow, table, roof", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["house, fence, dog", "a, color, red"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a castle with two towers"], "question": "which entity has a red roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a purple chair with holes in it."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "833151c8e0f4489a9fa966635a948452"], "properties": ["a lamp, a syringe, a light pole", "color, purple, holes"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a white chair"], "question": "which entity is a chair?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["size, material, shape", "color, green, squirt gun"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which is not a toy", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " of two rocks with ice elements."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, ceiling, kitchen", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["metal, laptop, light fixture", "roof, structure, greenhouse"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["bowl, pottery, headpiece", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["building, tree, plane", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a building with yellow lines."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, shape, size", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a small white building with stairs and a white table."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, poles", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "db74ee1621464be1b164be26a1af050e"], "properties": ["bed, desk, window", "window, arches, wall"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a white rocking chair with a curved backrest."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, bowl, green", "backrest, curved, yes"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["chair, table, refrigerator", "color, head, white and brown"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["lamp, harp, bowl", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["background, color, white", "roof, metal, white"], "captions_pred_pc": ["a black line on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["plane, ship, bird", "outfit, color, green"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is not a wrecked plane", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "black and white image of a motorcycle"], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "3e378d360d6b4a03ba69b0273bff73f6"], "properties": ["Drawer, Handle, Wood", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a sculpture in the shape of a bird"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a motorcycle royalty-free 3d model preview"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof, windows, building", "island, terrain, rocks"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a stone wall with a window and a clock."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["a, hill, deer", "window, clock, wall"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a brick wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["house, tree, pool", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a wooden windmill with a red roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, tan, brown, orange", "roof, color, red"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, door, window", "color, sphere, molecule"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["pos machine, credit card machine, cash register", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["wing, color, white", "striped, white, black"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of a stack of books"], "question": "which object has a striped pattern", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["low poly, llama, kangaroo", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "an image of a pile of trash on the ground"], "question": "which entity has grass", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a blue roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["frame, roof, trusses", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house with a wooden-framed roof structure."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, material, frame", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a large steel building with a pool."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["image, building, stairs", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, green", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, roof, soup", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white of a house with a hole in the ceiling."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["chair, table, refrigerator", "image, house, ceiling"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white barn with a metal roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, color, purple", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " a spider-like creature with long arms and legs."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["cylinder, marble, pillar", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a white building with a red roof."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, pink", "color, white, roof, red"], "captions_pred_pc": ["above a black and white image of a metal grate", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["b5afccae993346079483507296fbb029", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["shape is square, material is metal, color is rusty", "glass, metal, balls"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a concrete column", "a clear acrylic foosball table"], "question": "which object is made of glass and metal?", "label": 1}, {"captions": ["white butterfly wall lamp with a white shade and bead, .", " of a beige and white round soap dish/small bowl."], "sample_ids": ["fd63194cf4f94d5e96bd2b85f542b936", "5414d75e47104589837f3df8b6de6d22"], "properties": ["shade, white, bead", "beige, white, round"], "captions_pred_pc": ["a black and white image of a light bulb on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a wall lamp with a white shade and a butterfly design", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, roof, wooden", "house, roof, green"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house with stairs and a roof."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, door, cross", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white drawing of a house", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["door, lock, handle", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, shape, gun", "hat, skull, bread"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["frame, beams, trusses", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a roof structure and toothbrushes."], "sample_ids": ["085db9059b744673b5623b5338e02196", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["roof, red, house", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a white box with a lot of blades"], "question": "which house has a roof structure?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, air conditioner, house"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a brick wall with grass."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "53f2d948091f417cb580e22469c94db2"], "properties": ["water, river, island", "brick, grass, wall"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["yellow, shape, wingspan", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a house with a wooden-framed roof structure."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, roof, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "c3a82df41875402285608ef13a55df57"], "properties": ["color, lake, boat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["bird, nest, wood", "rusty, warning, metal"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["chair, table, refrigerator", "room, door, shelf"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["roof, color, purple", "roof, purple, beams"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of the roof structure royalty free 3d model no."], "question": "which building has a purple roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small white house with a roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["shape is box, color is white, door is present", "roof, color, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a small white box or bench.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["dfc7c96b45b74328bce7418560fe76fe", "5414d75e47104589837f3df8b6de6d22"], "properties": ["white, bench, small", "beige, white, round"], "captions_pred_pc": ["above a black and white illustration of a person standing on top of a skyscraper", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, table, ceiling", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, material, ceramic", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white vase on a grey background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["windmills, silhouette, city model", "stair, table, chair"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["color, shape, and material", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, black, white", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " a white building with a red roof."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, yellow", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a stone archway in a grassy area.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["location, area, material", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stone archway", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph.", " of two rocks with ice elements."], "sample_ids": ["a72700696c3b44ef8101d1e71e914bc9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["lion, statue, fountain", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of a lion statue on a wall", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a silver vintage racing car.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "a17477b445b3443189dad22f768b888b"], "properties": ["color, silver, vintage", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof truss, chimney, suspended ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a white castle composed of small cubes."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["yellow, shape, wingspan", "composed of, white, cubes"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house with a pond and situated on a rock."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "92859eb82a344134806b37cc209927c6"], "properties": ["hat, food, bowl", "house, rock, pond"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a large orange pumpkin."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["house, plane, town", "orange, large, pumpkin"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, structure, house", "door, roof, pool"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house"], "question": "which house has a door", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, screen, drawer", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["ruined building, stone floor, small stone structure", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, texture", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is wood, metal, metal", "wood, board, shelf"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["computer desk, laptop, monitor", "room, staircase, bus"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d image of a building with a lot of debris"], "question": "which entity has a damaged bus?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a spiral staircase with railings."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["a, bird, lake", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a house with a green, wooden-structured roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, sphere, molecule", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small wooden house with a green roof."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, truss, suspended ceiling", "roof, color, green"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, and size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a small white house with a roof."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, horns, eyes", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a house with wooden framing and trusses."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- material is white- color is white- texture is textured", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a deer on a grassy hill.", "white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "92052c493bf141a08b56f30f9c5e2d61"], "properties": ["a, hill, deer", "light, toilet, faucet"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a white plastic toilet paper holder on a gray background"], "question": "which entity is a bathroom?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small house with stairs and a roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["floor plan, bathroom, pool", "roof, stairs, house"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " of two rocks with ice elements."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, awning, cover", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house on a hill in a field."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, stairs, house", "house, hill, field"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white house with windows and a black lid."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "4b40af369c1149949f5ccb68becd8430"], "properties": ["- material is plastic- color is white- shape is cylinder", "white, windows, lid"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white house with three windows"], "question": "which object is white", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a white of a spaceship and building."], "sample_ids": ["b5afccae993346079483507296fbb029", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["shape is square, material is metal, color is rusty", "image, building, spaceship"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["floor, table, light", "light, fixture, square"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a desk with a table on top"], "question": "which entity has a square ceiling light fixture", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small, snow-covered house."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, roof, green, frame, red", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["building, balcony, street", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, logo, handle", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a purse with a chain", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["hat, bag, blanket", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a black and white striped box."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["earbuds, light, ring", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d image of a black and white striped surface"], "question": "which object is black and white", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, pink", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white drawing of a toilet", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, blue, components", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "0434eb3aa73e42a5a2570ec9c1a9b96b"], "properties": ["green, hat, cream", "green, hat, cream"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white image of a pair of earrings"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no."], "question": "which entity has a green bottle with a white cap?", "label": 0}, {"captions": [" a gold, silver, and brown shield.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, shape, material", "mossy, rock, grass"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a piece of wood on a white background"], "question": "which entity is made of mossy wood", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a white castle composed of small cubes."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, air conditioner, house", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small wooden house with a green roof."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, plastic", "roof, color, green"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, pattern", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be a rusty metal", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["top, color, wood", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a fireplace", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, bird, lamp", "house, tree, hill"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, color, yellow", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["base material, wood, shade color, white, beige", "house, roof, wooden"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a black and white photograph of a birdhouse"], "question": "which object has a wooden roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, purple, suspended", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a flat roof structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, roof, tray", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a large house with a roof on a platform."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "cb3e09a301b746918a682a595037c7f7"], "properties": ["Arms, Legs, Color", "roof, platform, house"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a large house with a roof on a platform."], "sample_ids": ["6b745457e06840119058883b35f78f58", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, blue", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "b896a0898efe4059a776193c02132129"], "properties": ["- material is metal- color is silver- texture is textured", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "854757ca755240f8b04576d899349151"], "properties": ["s of, snowboard, shoes, mask", "cabinet, room, shelf"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which entity has a shelf?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a coffee table", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, blue", "house, rock, bird"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["shattered, resembles, broken phone", "island, terrain, water"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "c3a82df41875402285608ef13a55df57"], "properties": ["text, material, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["red, eyes, rocket", "meat, bread, sausage"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["compartments, wall-mounted, vents", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["white rectangular box in a .", "a white glass beer mug."], "sample_ids": ["171d8702ca004ed787b8c7eb0de9a4fd", "1d686cbd3e9a4c629a43088658989286"], "properties": ["box, white, rectangular", "color, white, glass"], "captions_pred_pc": ["a black and white diamond on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white bowl on a gray background royalty free 3d model preview no.1", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small white airplane flying in the air."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "747fb98f64794cdd96486debaf20a02c"], "properties": ["building, tree, plane", "airplane, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "of a black and white image of a clock"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small airplane"], "question": "which plane is white", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a white glass beer mug."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, pink, green", "color, white, glass"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown.", "a white of a man with arms outstretched."], "sample_ids": ["e34088fc7b5344c4ab29fef067750225", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["sphere, pedestal, statue", "image, color, white"], "captions_pred_pc": ["the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a sculpture on top of a pedestal", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a clay pot with holes in it."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is plastic- color is green- shape is box", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small black and white cube.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a city skyline", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color is purple, material is plastic, number of legs is four", "house, roof, wooden"], "captions_pred_pc": ["of a black and white image of a baby carrier", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["green, hat, cream", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a pair of earrings", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a four-legged metal workbench with shelves."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["black, white, laptop", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "for a black and white illustration of a cross"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["55b26130f1514032be078e13fd982905", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, material", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a table with a stool on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, size", "a, material, clay"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["floor plan, bathroom, pool", "roof, truss, lamp"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a metal roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, roof, block", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["railing, table, staircase", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "c3a82df41875402285608ef13a55df57"], "properties": ["metal, rusted, paper", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, red", "roof, truss, structure"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a long metal fence"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["castle, island, house", "house, roof, blue"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["red, mouse, handwriting", "books, paper, lamp"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small white building with stairs and a white table."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "e30374c614f54fdb90f35b96b071349d"], "properties": ["balcony, stairs, house", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, toy, gnome", "hat, color, tan"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a wooden staircase with a door and square ceiling panel."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "3fe7e366bf924a00bf4b06ded35fd392"], "properties": ["stair, table, chair", "door, panel, staircase"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a staircase on a wooden floor"], "question": "which staircase has a door?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a small purple plastic chair with holes."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["backrest, curved, yes", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which chair is made of plastic", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["building, fence, snowy", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings?", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["pattern, floor, light", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a patterned square", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a house with a roof and beams."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["s of, snowboard, shoes, mask", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "40022305eaf44442915c9db03e25f781"], "properties": ["a, b, c", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["for a black square tile on a white background", "above a black and white image of an abstract design"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of an ancient temple"], "question": "which image is a pyramid", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, building, staircase", "house, rock, bird"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, building, people", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a house with wooden framing and trusses."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["metal, legs, frame", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a house under construction"], "question": "which entity has a wooden frame", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color is white, yellow, plastic", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "star wars stormtrooper "], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["s, plane, house", "a, color, white"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a star wars stormtrooper"], "question": "which entity is a white color?", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, shape, size", "hat, color, tan"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of an object with a hole in it"], "question": "which object is a hat?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["color, red, blue, green", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a white glass beer mug."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, rock, paper", "color, white, glass"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small white airplane flying in the air."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, shape, number", "airplane, color, white"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "of a black and white image of a clock"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a small airplane"], "question": "which object is white", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a small wooden house with a green roof."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["base material, wood, shade color, white, beige", "roof, color, green"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a house with wooden framing and trusses."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, window, statue", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a large metal building with a roof and truss structure."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a box, a cup, a bottle, a jar", "roof, truss, structure"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a wooden staircase with a red and white railing and a red arrow.", "star wars stormtrooper "], "sample_ids": ["bb8bb4c9972d4b718b8bbd3ed5fdd14d", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["arrow, red, white", "a, color, white"], "captions_pred_pc": ["above a black and white image of a square with a white cross in the center", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a star wars stormtrooper?", "label": 0}, {"captions": [" a house with a roof structure and toothbrushes.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["house, roof, toothbrushes", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["striped, white, black", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a stack of books", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a pixelated-textured purple sphere ."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "fb68393941804e769d5c9b372864a642"], "properties": ["face, handle, spout", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white square made of dots on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["arrow, mountain, area", "throne, stairs, tree"], "captions_pred_pc": ["a line with a square on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["text, material, shape", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["floor plan, bathroom, pool", "roof, color, yellow"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["cloak, sword, spear", "box, handle, gun"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, grass, moss", "door, lock, handle"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a large metal building with a roof and truss structure."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["hat, mustache, chef", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a train, a ship, a boat", "costume, color, black"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["building, tree, plane", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a brick building with a roof structure and roof truss."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "84e8acad28664a738df69d719df9e263"], "properties": ["color, white, base, slanted", "roof, structure, truss"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a small wooden house with a green roof."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, color, gray", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, red, blue, green", "turrets, flags, towers"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which building has more turrets", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a medieval stone castle with walls and stairs."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "10bc1bbec4c045f9b15fc2156b5e32ee"], "properties": ["wall, stairs, castle", "wall, stairs, castle"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a castle in the snow a castle in the snow illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the"], "question": "which castle has a wall and stairs?", "label": 0}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, pink, green, cord, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["shape, bathroom, refrigerator", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a crab holding a rubik's cube."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, pier, stairway", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["Drawer, Handle, Wood", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of two rocks with ice elements."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, pink", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "887e410d07854396b563325ae1929583"], "properties": ["color, style, pixel", "hat, mouse, bear"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is not a teddy bear?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", "star wars stormtrooper "], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof, truss, structure", "a, color, white"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["desk, chair, table", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["house, tree, pool", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a potted christmas pine tree."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["room, bed, desk", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["house, fence, dog", "metal, cross, clock"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, table, chair"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["room, door, shelf", "house, rock, bird"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["texture, spikes, eyes", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a wooden chair."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "b2fc4bd184944704ad43d3a31817a676"], "properties": ["A, a, a", "wood, chair, seat"], "captions_pred_pc": ["a black and white illustration of a bench", "a close-up view of the bristle brush on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a chair"], "question": "which object is made of wood", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a piece of fabric", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, yellow", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" of a tu-22m3 fighter jet in flight.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["77d80048cd7f4320846a5895c1649018", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["image size, image, aircraft", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of an arrow in the shape of an arrow", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a fighter jet flying in the sky royalty free 3d model", "a white 3d model of a city skyline"], "question": "which image is smaller", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " of a small white building with stairs and a lid."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a cross", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a small white building with stairs and a lid."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["s of, snowboard, shoes, mask", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "096e42b466ec438d95c5d89a85191534"], "properties": ["bed, desk, window", "white, rock, shell"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, structure, truss", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " of a wooden windmill with a red roof."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["bird, nest, wood", "roof, color, red"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a crab holding a rubik's cube."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["floor plan, heating system, ceiling light fixture", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["houses, trees, road", "paper, hole, sign"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["room, bed, desk", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hat, watch, clock"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, yellow, black", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is plastic- shape is dice- color is white", "a, material, clay"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a loaf of bread and a piece of cake.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e9a56b5d4f344d5699ddb629f4b94ef8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["bread, cake, loaf", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a piece of fabric with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a loaf of bread royalty free 3d model preview no 3", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "46903bf029934b1989bc062dcb0a5531"], "properties": ["headboard, wall, strip", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is not a headboard?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small white house with a roof."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["furniture, staircase, torn-apart", "roof, color, white"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e694d53545d449319a64cceb0280c3c6"], "properties": ["s, stick, leaf", "3d, slide, swing"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a futuristic white sports racing car.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, futuristic", "- material is wood, rusty, horned"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic sports car", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, texture", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, lake, pool", "house, table, chair"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a large building", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, white, red, pink", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d image of an animal laying on the ground"], "question": "which entity has more water", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a yellow boat/submarine with a red arrow and light."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "9b9c31fe4e6b4004a4cb34176f329c04"], "properties": ["color, shape, material", "color, shape, light"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a letter 'l' on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a table with an object on it"], "question": "which entity is a boat?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["Drawer, Pattern, White", "houses, trees, road"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, wall, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["shape is turtle, color is green, white", "flower, color, pink"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a house with a pink roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, roof, tray", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which roof is pink", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a drawing of a bird, fish, and white-blue dragon with a tail."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7136a3a6819e49e4b855f45fa1e2cded"], "properties": ["color, shape, and size", "animal, tail, white-blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a white and black bird flying in the sky stock illustration \u00a9 2019 iStock"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "an illustration of a bird with its wings outstretched on a gray background"], "question": "which entity is a drawing of a bird", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a wooden roof structure with a pink roof."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, dress, flower", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a wooden roof structure with a pink roof."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["variation, bread, pot", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of an object", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["text, material, shape", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small purple plastic chair with holes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "b896a0898efe4059a776193c02132129"], "properties": ["color, plastic, purple", "- material is stone, metal, concrete"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "of a white candle in the shape of a buddha"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a black and gold pistol.", "a white glass beer mug."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, gold", "color, white, glass"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["railing, table, staircase", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small wooden house with a green roof."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["- color is white- shape is cubes- number is 1", "roof, color, green"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" of an orange life ring", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["e27df4cbd35c4666b4690b58e1a3dad6", "333b77483f1b40468dec28906887151a"], "properties": ["color is orange, material is plastic, shape is ring", "3D, material, white gold"], "captions_pred_pc": ["of a silver bracelet with black dots on it", "of a black ring on a white background"], "captions_pred_image": ["an inflatable life preserver on a white background", "a white gold ring with an oval shaped diamond in the center"], "question": "which ring is made of white gold", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["blue, lid, handle", "door, lock, handle"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["s, plane, house", "table, staircase, light"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white photo of the letter g"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", "star wars stormtrooper "], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a city, train, dragon", "a, color, white"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["staircase, railing, building", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a spiral staircase with a railing in a small building."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, tan, brown, orange", "staircase, railing, building"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white photograph of a light switch"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a stone wall featuring carvings and statues."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["computer desk, laptop, monitor", "carving, statue, wall"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["room, bed, desk", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["mossy, rock, rocky", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["background, color, white", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, eagle, wood", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a box with a lot of items inside"], "question": "which entity has a building?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["color, roof, tray", "building, roof, balcony"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a clock tower"], "question": "which building has a roof", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, mouth, eyes", "axe, handle, wood"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" a house with a blue roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, color, blue", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "703dce44052e48cfb024bceb08141554"], "properties": ["roof truss, insulation, suspended ceiling", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a wooden structure"], "question": "which house has a roof with beams?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "e694d53545d449319a64cceb0280c3c6"], "properties": ["furniture, staircase, torn-apart", "3d, slide, swing"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a red and white robot.", "a white of a woman with her arms outstretched."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, red, white", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["Arms, Legs, Color", "roof, trusses, beams"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a roof structure"], "question": "which entity has more trusses", "label": 1}, {"captions": [" a stone archway in a grassy area.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["location, area, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a stone archway", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a red roof.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["085db9059b744673b5623b5338e02196", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, red, house", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["balcony, stairs, house", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, building, staircase", "roof, material, wood"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, building, people", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a large building with a roof and windows."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "32d1fbd3ee91426882290305f70021e6"], "properties": ["building, tree, plane", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["earbuds, light, ring", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small orange piano with legs."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "d793de7c08d74414beeb8ea50f730705"], "properties": ["boat, table, chairs, umbrella, solar panel", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "two white spheres in a ."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, roof, soup", "two, spheres, white, in, a"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a white ball on a gray background"], "question": "which object is in a?", "label": 0}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["s, plane, house", "house, fence, playground"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["shape is cube, material is wood, color is white", "lion, statue, fountain"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, color, purple", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a white building with a red roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, table, chair", "color, white, roof, red"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["shape is box, color is white, door is present", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, skyscraper, city", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, color, pink", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a building with blue metal framing and structure."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color, blue, structure"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of dots on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a building under construction"], "question": "which entity is not a building?", "label": 0}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small white building with stairs and a white table."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, screen, drawer", "building, stairs, table"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "703dce44052e48cfb024bceb08141554"], "properties": ["frame, truss, roof", "roof, beams, frames"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a wooden structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, color, pink", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house with a wooden-framed roof structure."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, yellow, chimney", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "2a31c42de6f74ddba6b19b3467066e11"], "properties": ["color, roof, tray", "color, roof, block"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a table with multiple tables stacked on top of each other"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small house with a tree and a rock."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["floor plan, bathroom, pool", "house, tree, rock"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "97e000ff41094665afd94ea565da8b13"], "properties": ["Steel, Color, Yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "red heart-shaped object."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape, heart, red"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a heart shaped object"], "question": "which object is red?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, ceiling, hole", "roof, beams, frames"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a wooden table with two barrels."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8bba7567253040d88973320107e48055"], "properties": ["yellow, table, roof", "table, barrels, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black circle on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a barrel table royalty free 3d model preview no.2"], "question": "which table is made of wood", "label": 1}, {"captions": ["white 3d tank model", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ac17fa1c967e4af382de4a445049f231", "b896a0898efe4059a776193c02132129"], "properties": ["color is white, model is 3d, name is tank", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of a small object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a tank on a white background royalty free 3d model preview no 2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "b896a0898efe4059a776193c02132129"], "properties": ["type, relief, statues", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a 3d model of an ancient statue"], "question": "which statue is made of stone", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "4389909667db472ea9a57a70eb940fa4"], "properties": ["- color is red, blue, pink", "building, window, skeleton"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window?", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a low-poly of a white, shattered sphere."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["size, material, wheels", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a cracked egg"], "question": "which object is a sphere?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["balcony, stairs, house", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a large orange pumpkin."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["building, tree, plane", "orange, large, pumpkin"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["71143d4e7bc94fc4aa73a2d7c86635cd", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["torso, breasts, pattern", "3d, model, collection"], "captions_pred_pc": ["above a black and white illustration of a woman's breasts", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a 3d model of a woman's chest", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of items?", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["s, batman, batman character", "room, furniture, window"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "6b745457e06840119058883b35f78f58"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, pink, green, cord, white", "striped, white, black"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["room, bed, desk", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, white, plastic", "hat, skull, bread"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["a, rock, paper", "desk, chair, lamp"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white illustration of a city skyline"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d rendering of a desk and chair in a room"], "question": "which object has more chairs", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, white, black, white", "costume, color, black"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "97e000ff41094665afd94ea565da8b13"], "properties": ["room, door, shelf", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wooden staircase.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["material is wood, staircase, wood", "house, tree, pool"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity is a house?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a green mountain with trees and grass."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["collection, plane, car", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a piece of paper", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a roof and beams."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, structure, wall", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "e694d53545d449319a64cceb0280c3c6"], "properties": ["floor, staircase, balcony", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a wallet", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a playground slide"], "question": "which entity has a slide?", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a potted plant on a wooden table or shelf."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["hill, field, castle", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle on a hill", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a white and blue building with a black roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, staircase, window", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "09f2cf267e954c958828325067bcc36a"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a white of a woman with her arms outstretched."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, eye, handle", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["s of, snowboard, shoes, mask", "building, plane, city"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "6b745457e06840119058883b35f78f58"], "properties": ["color, handle, zipper", "roof, color, blue"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a building with dots"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, structure, suspended", "structure, material, pool"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["chocolate, mushroom, cake", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["light switch, electrical outlet, furniture", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small white house with a roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof truss, beams, structure", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["chair, table, refrigerator", "metal, cross, clock"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small white building with stairs and shelves."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "9e1f64d4fd514059be934077717536dc"], "properties": ["roof, color, pink", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["s, plane, house", "houses, trees, road"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a wooden-cased radio.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["case, material, wood", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a black and white image of a stone sculpture"], "question": "which object has a hat?", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", " a four-legged metal workbench with shelves."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["Brown, metal, lock", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a square with dots", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["meat, bread, sausage", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of an egyptian sarcophagus."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "sarcophagus, material, wood"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small grassy island in the water.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "b896a0898efe4059a776193c02132129"], "properties": ["location, water, island", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a map", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a green mountain with trees and grass."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, yard, surrounding buildings", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a truck on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a house with a wooden-framed roof structure."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["desk, chair, table", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a building with a roof"], "question": "which entity has a wooden-framed roof structure", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, purple, suspended", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "a095621f2d5845af83db3f59f5685982"], "properties": ["a, island, resembles, hawaii", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a metal tray with two rolls of paper in it"], "question": "which object is made of stainless steel?", "label": 1}, {"captions": ["white of a small arch.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, size", "roof, material, wood"], "captions_pred_pc": ["for a black and white drawing of an arch", "a black and white drawing of a floor plan"], "captions_pred_image": ["a white 3d model of an arch", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a large building with a roof and windows."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "32d1fbd3ee91426882290305f70021e6"], "properties": ["castle, island, house", "roof, windows, building"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["earbud, earpiece, earpiece", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a tree"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small wooden house."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, green, lawn", "house, material, wood"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a white castle composed of small cubes."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["ceiling, light, desks", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["base material is wood, color is red, message is welcome to northwich", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a pink-framed building structure with beams and trusses."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, text", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a metal grate"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a building under construction"], "question": "which entity has a frame", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a black and white of a knife/sword with a handle."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["size, color, shape", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "d6087023095446fbadef1721478373b2"], "properties": ["frame, roof, trusses", "door, roof, window"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of an apartment building"], "question": "which building has a green door", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a house with wooden framing and trusses."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, ball, mushroom", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, green", "house, fence, playground"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a machine gun with additional items."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["resembles, toy, bookshelf", "gun, type, machine gun"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a submachine gun"], "question": "which object is a type of gun", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["image, building, painting", "building, color, white"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a lamp, a syringe, a light pole", "box, paper clip, lock"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a, eagle, wood", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d rendering of a piece of marble"], "question": "which object has more wood", "label": 1}, {"captions": [" a white bunk bed with a ladder.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["bed, ladder, color, white", "house, tree, hill"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a spiral staircase with railings."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["bed, desk, window", "railings, staircase, spiral"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, base, slanted", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["low poly of a christmas tree", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["low poly, christmas, tree", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of a small, round object", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small wooden house."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, hill, forest", "house, material, wood"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["Wheels, laptop, robot", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a black and white image of a suitcase on wheels"], "question": "which suitcase has a laptop?", "label": 0}, {"captions": [" a white shelf with holes and brackets.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, holes", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small building with windows and a roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, color, pink", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["Headstock, Guitar, Head", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, roof, tray", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a ceiling with a hole", "label": 1}, {"captions": ["white 3d triangular object", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color is white, shape is triangular, material is plastic", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "97e000ff41094665afd94ea565da8b13"], "properties": ["a knife, blade, handle", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a tv stand/shelf", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["size, material, color", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a large building with a roof and windows."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, shape, material", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a wooden shed with a gray roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["lighthouse, fountain, crater", "roof, color, gray"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": ["a white ornate airplane design.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, material", "building, window, skeleton"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["red, eyes, rocket", "island, terrain, water"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with a pond and situated on a rock."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "92859eb82a344134806b37cc209927c6"], "properties": ["balcony, stairs, house", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["door, lock, handle", "house, fence, playground"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, structure, wall", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, black, shade, black", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "bded33af34104b9686b845dfd18309a9"], "properties": ["Lights, number, five", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "a2354f13774340d392fbf33564934aab"], "properties": ["frame, roof, trusses", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large house with a roof on a platform."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "cb3e09a301b746918a682a595037c7f7"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, room, ceiling", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a wooden structure"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["- material is stone - color is blue - shape is arrowhead", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house with wooden framing and trusses."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, desk, laptop", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", "a football card featuring a player's picture, encased in a clear plastic case."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "9aa127175ff9458395cce9eff20552e5"], "properties": ["case, player, football", "case, player, football"], "captions_pred_pc": ["of a black and white image of a pair of boots", "of a black and white image of a pair of boots"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a black and white photograph of a comic book cover"], "question": "which entity is a football card featuring a player's picture", "label": 0}, {"captions": [" a spiral staircase with a railing in a small building.", " a house with a wooden-framed roof structure."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["staircase, railing, building", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a large metal building with a roof and truss structure."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "b85a99699ccd4bcba213322113bb253d"], "properties": ["s, stick, leaf", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small building with a roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, building, small", "roof structure, truss, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a blue ford escort car."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "fa3da8623db242c082e2915b12873186"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, blue, ford escort"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black leather bracelet on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a classic car royalty free 3d model preview no 2"], "question": "which is not a car", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, color, gray", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a black and white image of a stone sculpture"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of two rocks with ice elements."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, hill, deer", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["computer desk, laptop, monitor", "table, stairs, ladder"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "green and black ak-47 assault rifle with grenade launcher."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "9ffa5ac853354223a7f4f42d532f7633"], "properties": ["black, white, laptop", "color, black, green"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a cell phone on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2"], "question": "which object is black and green?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a small white building with stairs and a lid."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, leg, tail", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a sword on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a small red renault clio car.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color is red, make is renault, model is clio", "a room, a cake, a table"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a large building with a roof and windows."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["s, stick, leaf", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "b896a0898efe4059a776193c02132129"], "properties": ["broom, shovel, fireplace", "- material is stone, metal, concrete"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a child's room in a small house with windows."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "88847a6445044bcbab9611e6028a19b9"], "properties": ["- material is white- color is white- texture is textured", "room, house, windows"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity is a room in a small house with windows?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a white castle composed of small cubes."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, holes", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, island, resembles, hawaii", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d rendering of a house on a rock"], "question": "which island has a bird on a rock?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, leg, tail", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, purple, suspended", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "5f8c7eda0f464019a4acea243114555d"], "properties": ["texture, spikes, eyes", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which entity is made of stone", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a2354f13774340d392fbf33564934aab"], "properties": ["A, a, a", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, structure, wall", "a, building, roof"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["house, tree, hill", "plane, ship, bird"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a wooden staircase with a railing and table."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "956247bea850458199c651037d4b1d7f"], "properties": ["ceiling, light, desks", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["size, color, shape", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["building, roof, yellow", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a small triangular-shaped object."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "2d02985030804209a26c2c53b96a06f9"], "properties": ["backrest, curved, yes", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a house with a roof and beams."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["pattern, color, shape", "roof, beams, house"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "6b745457e06840119058883b35f78f58"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, color, blue"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "bded33af34104b9686b845dfd18309a9"], "properties": ["floor, wall, roof", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a brick wall with grass.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["brick, grass, wall", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["graffiti, bench, wall", "building, plane, city"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "97e000ff41094665afd94ea565da8b13"], "properties": ["houses, trees, road", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, green, squirt gun", "a room, a cake, a table"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, table, ceiling", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, material, shape", "box, handle, gun"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " a wooden table with a plant on it."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["Object, Table, Oranges", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a white cube", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["aca5fa55596c42f093ca4d6d4b3eaea9", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["a black and white square with dots all around it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white square table", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a house with a wooden-framed roof structure."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, material, shape", "roof, material, wood"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "c3a82df41875402285608ef13a55df57"], "properties": ["hat, bow, arrow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a large metal building with a roof and truss structure."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["lighthouse, building, tower", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " of two rocks with ice elements."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["s, boat, bird, airplane, kite", "image is a rock with ice elements"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, rock, pond", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, yellow, black", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a house with a green, wooden-structured roof."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["shape is cube, color is black, white", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a house with a triangular roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "96d127abd21049689918e671ec613ef8"], "properties": ["bird, resembles, crow, pigeon", "axe, hammer, spoon"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "of a black lace belt on a white background"], "captions_pred_image": ["a black and white image of a bird in flight", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a bird?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, texture", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a roof.", " a small wooden house."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, house, small", "house, material, wood"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["text, material, shape", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["red, mouse, handwriting", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small orange piano with legs."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "d793de7c08d74414beeb8ea50f730705"], "properties": ["low poly, llama, kangaroo", "color is orange, size is small, legs"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, grass, moss", "roof, structure, wall"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["house, table, chair", "furniture, room, kitchen"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a white of a house with a hole in the ceiling."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["- color is red, blue, pink", "image, house, ceiling"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a character wearing glasses and a hat."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["houses, trees, road", "hat, glasses, character"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, material, wheels", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a white castle composed of small cubes.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["composed of, white, cubes", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["bowl, pottery, headpiece", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a large house with a roof on a platform."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "cb3e09a301b746918a682a595037c7f7"], "properties": ["structure, roof, pitch", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "88eba412c78a4ced89eb857327653f6c"], "properties": ["floor plan, heating system, ceiling light fixture", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, material, color", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "b896a0898efe4059a776193c02132129"], "properties": ["color, blue, green, yellow, blue", "- material is stone, metal, concrete"], "captions_pred_pc": ["a pair of sneakers on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of an ancient statue"], "question": "which entity is made of more metal", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, rock, nail", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "f1b557775310478893242180defa4d80"], "properties": ["roof, house, small", "shack, roof, door"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "67701617472e4051b95955c596561aac"], "properties": ["roof, color, pink", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a house with a roof", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a house with a roof structure and toothbrushes."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, temperature, england", "house, roof, toothbrushes"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["white ferris wheel ", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["84267382977845f190cdc740e4977f43", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color is white, wheel is ferris, color is white", "roof, color, yellow"], "captions_pred_pc": ["of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ferris wheel royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a robot with a blue, purple, and white body."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, shape, and size", "body, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a robot"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small, snow-covered house."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, purple, suspended", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a white glass beer mug."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, light", "color, white, glass"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["adec10493e06436c967d5797f7085225", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, material, shape", "black, screen, blank"], "captions_pred_pc": ["for a black and white image of an object on a white background", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which screen is blank", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, background, white", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " of a small white building with stairs and a lid."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["pattern, color, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, handle, gray", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["floor, staircase, railings", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "46903bf029934b1989bc062dcb0a5531"], "properties": ["hat, cup, bowl", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a close up of a black object on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a human skull.", " a small wooden house with a green roof."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, b, c", "roof, color, green"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "06a1c233fb444830b577aa06e2c01294"], "properties": ["room, house, windows", "house, tree, hill"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a black and white image of a house in the middle of a field"], "question": "which entity has a house with trees?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["water, river, island", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, structure, greenhouse", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["hat, food, bowl", "metal, rusted, paper"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a piece of debris on the ground"], "question": "which entity has more metal", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["bird, nest, wood", "roof, color, blue"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "a17477b445b3443189dad22f768b888b"], "properties": ["Drawer, Handle, Wood", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, letter", "color, pattern, word"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of the letter 'x'", "a beaded necklace with the word banned on it"], "question": "which entity is a word?", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a wooden billiard table with legs."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, material, shape", "legs, material, wood"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a road in front of it.", " a wooden roof structure with a pink roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, front, road", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "earbuds, light, ring"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring multiple animal heads, including a fox, chihuahua, and cat with ears."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f37b1515c52248d887b9b415576f5253"], "properties": ["color, shape, and size", "animal, head, fox, chihuahua, cat"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a butterfly shaped object"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a fox's head"], "question": "which entity has more animal heads", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "bowl, pottery, headpiece"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a piece of ancient pottery"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["Drawer, Pattern, White", "color, green, squirt gun"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object has a squirt gun", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "40921ffd69db479294554d261daf3035"], "properties": ["image, building, stairs", "floor, railing, staircase"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, leg, tail", "beige, white, round"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is not a green alien creature with long legs and a long tail?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, sphere, molecule", "table, staircase, light"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["house, roof, wooden", "building, color, white"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" of a pink coffee mug with a white handle and lid, featuring white foam or icing on top.", " of a small white building with stairs and a lid."], "sample_ids": ["f50ca961cbcc4182a6f10074943d63c4", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, handle, lid", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a coffee mug on a white background a black and white image of a coffee mug on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a coffee mug royalty free 3d model preview no.1", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, gun", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating island?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["liquid, ice, lid", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hoodie, ball, person", "hat, bow, arrow"], "captions_pred_pc": ["for a person standing in front of a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", "a white glass beer mug."], "sample_ids": ["44723e86bdd14071b0544745879604de", "1d686cbd3e9a4c629a43088658989286"], "properties": ["resembles, bar, soap", "color, white, glass"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a glass pitcher"], "question": "which object is white", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, table, chair", "roof, metal, white"], "captions_pred_pc": ["above a black and white photograph of an open door", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " of two rocks with ice elements."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d image of two rocks on a gray surface"], "question": "which object is made of ice", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, red, blue, green", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a modern house"], "question": "which building has a pool", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", "star wars stormtrooper "], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, frame, shape", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a wall featuring various potted plants."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "54d03259a316434e9c670a52a7e5a92e"], "properties": ["a, b, c", "image, wall, plants"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a knife on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a black and white image of a wall with bullet holes"], "question": "which image shows a wall with plants?", "label": 1}, {"captions": [" a small white house with a roof.", " a large house with a roof on a platform."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, white", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " of a small white building with stairs and a lid."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, material, shape", "building, stairs, lid"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["orange, forklift, parking lot", "house, building, people"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a wooden roof structure with a pink roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, red, blue, green", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of the roof of a building"], "question": "which building has a pink roof", "label": 1}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "c3a82df41875402285608ef13a55df57"], "properties": ["a, color, red", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a castle with two towers", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "f1b557775310478893242180defa4d80"], "properties": ["light, toilet, faucet", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a red, yellow, and blue building or toy box with colorful pipes and tubes.", " of two rocks with ice elements."], "sample_ids": ["80069461444b4ac981fee9826c36534c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a 3d sculpture on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with many pipes and tubes", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a white round table with a red accent.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["fea62a865b4e40899d95785533818329", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, red", "building, room, sky"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a white of a spaceship and building."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, rock, pond", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "20a02705a66f460492e07345e84a62ed"], "properties": ["building, material, steel", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a small white barn with a metal roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, metal, white", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " an old lantern with moss on it."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color, horns, features", "moss, lantern, old"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of an old lantern"], "question": "which entity is more likely to have moss on it", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, roof, green, frame, red", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "f3edc84dc71649c1a11270437279255b"], "properties": ["hat, candy, strawberry", "hippo, hind, legs"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white illustration of a frog"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small blue bottle with a lid and a small blue box.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["c1bc7f87f15943ba88f0410ef9e387e8", "9968e06a62e8487ea33460e640abc573"], "properties": ["blue, bottle, box", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a sponge and a sponge holder", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a vase and a box royalty free 3d model preview no. 3", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small white house with a roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, material, frame", "roof, color, white"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, white, containers", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "c8936ace72954650b4e2d84246964849"], "properties": ["earbud, earpiece, earpiece", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a toilet"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, dragon, cloth", "island, mountain, grass"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["metal, legs, wheels", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a small purple plastic chair with holes."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["size, material, shape", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["pink light saber.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c4c8ed95de4640fe8c0be1df68d816ba", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, pink, light", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black dot on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a light saber on a gray background", "a white 3d model of a city skyline"], "question": "which object is not pink?", "label": 0}, {"captions": [" a wooden table with black and white square design and metal poles.", " a wooden billiard table with legs."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["design, poles, table", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a black and white image of a pool table"], "question": "which table has legs", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, color, purple", "roof, house, small"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a white square with the words \"what tv\" on it."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["- material is plastic- color is green- shape is box", "color, white, words"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a roof structure"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["shape is box, color is white, door is present", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "metal, rusted, paper"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a piece of debris on the ground"], "question": "which entity has more metal", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, shape, pattern", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a knife on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink color", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "a17477b445b3443189dad22f768b888b"], "properties": ["color, tan, brown, orange", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a square with dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", "a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "24f7d0a06d494c26a1678d81b2b7b093"], "properties": ["a, laptop, teddy bear", "a, laptop, teddy bear"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "a black and white drawing of an umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d rendering of a white room with various objects"], "question": "which entity has a white box containing a teddy bear and a piece of paper?", "label": 0}, {"captions": [" a red and silver metal plate with bolts and screws on it.", "a pixelated-textured purple sphere ."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "fb68393941804e769d5c9b372864a642"], "properties": ["color, material, shape", "texture, color, shape"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a white glass beer mug."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, orange, white", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a box, a cup, a bottle, a jar", "house, staircase, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, white, red, pink", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a city, train, dragon"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a toy car"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a large white and metal building with a metal roof structure."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, material, steel", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a flying saucer", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, blue, structure", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "d49d8ed244094349a99e4faca05e0690"], "properties": ["base, speaker, light", "low poly, plant, white"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, green, handle", "color, white, plastic"], "captions_pred_pc": ["of a small black object on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, roof, white, cubes", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a map", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a wooden shed with a gray roof."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["island, terrain, rocks", "roof, color, gray"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a shed with a gray roof"], "question": "which object has a roof that is the color of gray", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a small green and white 3d teapot in the shape of a turtle."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "8df8b28138e040a89303e91518b09d59"], "properties": ["a lamp, a syringe, a light pole", "shape is turtle, color is green, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a white ceramic teapot on a gray background"], "question": "which object is greener", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a large axe with a cross on top."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, green, orange, star", "axe, cross, top"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "for an axe on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "b896a0898efe4059a776193c02132129"], "properties": ["house, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a bench", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, tree, hill", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a black and white image of a house in the middle of a field"], "question": "which entity has a large house", "label": 0}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a small white house with a roof."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, roof, yellow", "roof, color, white"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, stairs, shelves", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a modern house"], "question": "which building has a balcony?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a house with a flat roof structure."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, furniture, black", "roof, flat, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, room, table", "house, pool, balcony"], "captions_pred_pc": ["a black square on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a modern house"], "question": "which house has a pool?", "label": 1}, {"captions": [" a small building with windows and a roof.", " of a black and white striped fly in the air."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, windows, building", "black, white, fly"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, roof, soup", "house, rock, bird"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["color, shape, and material", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a white kite flying in the air against a gray background"], "question": "which entity is a picture of a boat", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, structure, house", "roof, metal, white"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a large white box"], "question": "which structure has a roof", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, white, holes", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white bench with a shelf on top", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" various fruits and vegetables.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "92498f398e244020a867686729633610"], "properties": ["color, shape, size", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a sponge-like object", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "two white spheres in a ."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1c02212a35134545ab63ab180d629c31"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white ball on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["a box, a cup, a bottle, a jar", "ring, helmet, bowl"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d printed ring in white 3d printed material"], "question": "which object has a hole in it", "label": 1}, {"captions": [" of a table with a red and white striped tablecloth, a bowl of eggs, a book, and a bowl of ice cream on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["45f9d3998d904aa4a77f45e1744b581f", "a17477b445b3443189dad22f768b888b"], "properties": ["bowl, ice cream, bowl", "roof, pillar, stairs"], "captions_pred_pc": ["in 150 words a black and white illustration of a square with dots on it", "a black and white image of a square with dots"], "captions_pred_image": ["a table with a bible and a bowl of fruit on it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["d6087023095446fbadef1721478373b2", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["door, roof, window", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a slice of rainbow cake with multicolored sprinkles on it.", " of a small white building with stairs and a lid."], "sample_ids": ["fc515651480c43b7a0712215939cc510", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, rainbow, sprinkles", "building, stairs, lid"], "captions_pred_pc": ["a silhouette of the state of oregon on a white background silhouette of the state of oregon on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a slice of cake", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is turtle, color is green, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["mossy, rock, grass", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["variation, bread, pot", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of an object", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small white house with a roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["face, handle, spout", "roof, color, white"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "7f8942ef51dd4246993a587a12df168c"], "properties": ["size, material, lighthouse", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, shape, size", "glass, metal, balls"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a white box with a black base", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a bench and lamp post.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["A, bench, lamp post", "house, roof, green"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["water, boat, rock", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a surfboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small purple plastic chair with holes."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, height", "color, plastic, purple"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of an orange life ring", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["e27df4cbd35c4666b4690b58e1a3dad6", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color is orange, material is plastic, shape is ring", "lion, statue, fountain"], "captions_pred_pc": ["of a silver bracelet with black dots on it", "a black and white image of a metal object"], "captions_pred_image": ["an inflatable life preserver on a white background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, size", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a house with a wooden-framed roof structure."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, color", "roof, material, wood"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of a building with a roof"], "question": "which is made of wood", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["3d model, color, lights", "building, plane, room"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a small building with windows and a roof."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, type, factory", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["pattern, color, shape", "building, plane, room"], "captions_pred_pc": ["a black circle on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a two-story small apartment building with a roof."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, truss, lamp", "two-story, roof, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, pink, green, cord, white", "box, paper clip, lock"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, hill, deer", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a person breaking through a brick wall."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["image is a sculpture of an angel on a wall", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a person breaking through a brick wall"], "question": "which wall is made of brick", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, pattern", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a spiral staircase with a railing in a small building."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["house, roof, toothbrushes", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" a molecule with two pink and blue spheres.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["926fb2e23c56440a86287e98c1440336", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, size", "a, outfit, green"], "captions_pred_pc": ["a molecule with the word 'rono' written in black ink on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of three spheres on a white background", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a white building with a red roof."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["stacked, racks, toy train", "color, white, roof, red"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of an office building"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, tree, pool", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, roof, block", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house in the middle of a field"], "question": "which building has a yard", "label": 1}, {"captions": [" a large orange keg with a white lid.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, lid, orange", "beige, white, round"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof truss, insulation, suspended ceiling", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["table lamp, ceiling light, table", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["an oval table with a mouse on top of it", "an oval table with a mouse on top of it"], "question": "which table has a black base?", "label": 0}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "990f06da2ba4488da8371f68da6b4523"], "properties": ["color, red, blue, structure", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["house, rock, bird", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "bf18bfd89efd43389781050230467d58"], "properties": ["red, mouse, handwriting", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small, snow-covered house."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, door, cross", "house, snow, cover"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["shape is sphere, color is white, material is plastic", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["pattern, color, shape", "color, frame, shape"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["hat, bag, blanket", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["floor plan, heating system, ceiling light fixture", "color, yellow, black"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white helicopter flying in the air"], "question": "which entity is not a helicopter?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, poles", "metal, rusted, paper"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, structure, truss", "box, paper clip, lock"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "92498f398e244020a867686729633610"], "properties": ["yellow, table, roof", "a, house, cat, dog"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " of two rocks with ice elements."], "sample_ids": ["f1b557775310478893242180defa4d80", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["shack, roof, door", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["frame, trusses, wood", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a window", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, sword, gun", "hat, dress, racket"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity is holding a tennis racket", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["bed, desk, window", "house, lake, pool"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, color", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, window, statue", "a, outfit, green"], "captions_pred_pc": ["a black and white image of dots on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is plastic- color is green- shape is box", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["shape is box, color is white, door is present", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" of a white bunny head", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, white, head", "face, mask, tail"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "5017581716c7402581a82ebf08d427a3"], "properties": ["room, door, shelf", "Shelf, color, white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a white shelf"], "question": "which shelf is white", "label": 1}, {"captions": [" a wooden staircase.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["material is wood, staircase, wood", "color, white, plastic"], "captions_pred_pc": ["above a black and white drawing of a building", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "a2354f13774340d392fbf33564934aab"], "properties": ["building, floor, columns", "building, roof, yellow"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["a, island, water", "a, building, roof"], "captions_pred_pc": ["a black and white photo of a boat in the water", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of the space shuttle"], "question": "which entity has a building with a broken roof?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, door, cross", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a map", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white drawing of a house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, shape, and size", "hat, candy, strawberry"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a person wearing a hat"], "question": "which entity has a red hat?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["house, roof, blue", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "18e392c5360146eda498c5edab25b15c"], "properties": ["buildings, houses, grass", "frame, beams, trusses"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a building under construction"], "question": "which entity has fewer buildings", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small wooden house."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["frame, beams, trusses", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "bf18bfd89efd43389781050230467d58"], "properties": ["color, black, white", "Lights, number, five"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, material, pattern", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a room, a cake, a table", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity does not have a skeleton?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["house, door, cross", "house, color, white"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white drawing of a bench"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house with a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, structure, wall", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, dress, flower", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small wooden house with a green roof."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["water, boat, rock", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a spider-man mask and head.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, head, mask", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a person's head", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "a2354f13774340d392fbf33564934aab"], "properties": ["metal, laptop, light fixture", "building, roof, yellow"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c3a82df41875402285608ef13a55df57"], "properties": ["base material is wood, color is red, message is welcome to northwich", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "a17477b445b3443189dad22f768b888b"], "properties": ["color, skyline, buildings", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, ceiling, hole", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a green mountain with trees and grass."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["houses, trees, road", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["door, panel, staircase", "a, material, clay"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a house with a wooden-framed roof structure."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["lamp, harp, bowl", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["island, mountain, grass", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white map of the island of malta", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" of a sword and knife.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["a, sword, knife", "mossy, rock, rocky"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which object is not a rocky island?", "label": 0}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "black, white, coffee table"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white 3d model of a building"], "question": "which entity is a coffee table?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["floor plan, heating system, ceiling light fixture", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, alternator, fan", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white house with a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, white", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["lighthouse, fountain, crater", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white map of spain on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a rock formation on a gray background"], "question": "which image shows a rock formation with a white cliff and a rock?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof, air conditioner, house", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white illustration of a window", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, blue, white, handle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, shape, gun", "a train, a ship, a boat"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, red, green, yellow", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a white of a gun.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, white, gun", "metal, rusted, paper"], "captions_pred_pc": ["of a white object on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, red, pink", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["house, fence, dog", "box, cylinder, bottle"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "glass, metal, balls"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, material, color", "a, color, white"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, white, yellow, roof, metal", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["runner, bed, bench", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, floorplan, gym", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white building with two floors", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, hole, rock", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a green mountain with trees and grass."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["blue tarp, flower, small island", "mountain, grass, tree"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a low-poly of a white, shattered sphere."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, height", "sphere, color, texture"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a cracked egg"], "question": "which object is white?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house with a wooden-framed roof structure."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, building, staircase", "building, plane, room"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["hat, sword, gun", "roof, color, yellow"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, structure, greenhouse", "roof, structure, suspended"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a metal roof"], "question": "which roof structure has a suspended ceiling", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "a17477b445b3443189dad22f768b888b"], "properties": ["glass, metal, balls", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a wine glass", "a black and white image of a square with dots"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, horns, features", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a red and black broken heart-shaped grenade with a chess piece fragment.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["a95b5e1807614532994845fb3d18e953", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["shape, heart, fragment", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a person's head with a piece of paper on it", "a 3d model of a castle with two towers"], "question": "which object is not a heart shape?", "label": 0}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, temperature, england", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["- material is white- color is white- texture is textured", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small house with stairs and a roof."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["cover, torn, open", "roof, stairs, house"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, table, sphere", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["house, rock, pond", "paper, hole, sign"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["floor plan, bathroom, pool", "island, mountain, grass"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, table, chairs", "hat, bow, arrow"], "captions_pred_pc": ["a close-up of a white object on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["pink light saber.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c4c8ed95de4640fe8c0be1df68d816ba", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, pink, light", "throne, stairs, tree"], "captions_pred_pc": ["of a black dot on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a light saber on a gray background", "a 3d model of a throne with a tree on it"], "question": "which object has stairs", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["red, mouse, handwriting", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["Steel, Color, Yellow", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, black, white, handle, armrest", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a two-story small apartment building with a roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["yellow, table, roof", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["image is rock formation with a white cliff and a rock", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white map of spain on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, white, containers", "island, fish, ice"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, room, sky", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a potted christmas pine tree."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["roof truss, beams, structure", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a wooden roof structure with a pink roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["image, building, painting", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a wooden roof structure with a pink roof."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["arm, jacket, mannequin", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a woman's torso", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is sphere, color is white, material is plastic", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a colorful 3d paper toy hammer with a green handle and numbers on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ee06311cc3d542b0aed18ccdb4e824db", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a hammer on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, shirt, pants", "floor, staircase, balcony"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color is white, material is plastic, shape is tube", "a, color, red"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a white glass beer mug."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, pen, logo", "color, white, glass"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a clay pot with holes in it."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color is white, yellow, plastic", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white plastic container with a label on it", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, trusses, beams", "roof, beams, chimney"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a blue roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, blue", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["55b26130f1514032be078e13fd982905", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, shape, material", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a building with blue lines and structure.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, structure", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a white box, a white lid, and a white container"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["stacked, racks, toy train", "grass, plants, rocks"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a group of trees"], "question": "which object has more grass", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " of a black and white striped fly in the air."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, white, railing, black", "black, white, fly"], "captions_pred_pc": ["above a black and white image of a computer screen", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["desk, chair, table", "mountainous, landmass, state"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["building, door, clock", "house, hill, forest"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a church with a steeple", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, red, green, yellow", "color, black, visor"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a black motorcycle helmet with a visor on top"], "question": "which object is black", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a wooden table with a plant on it."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["graffiti, wall, wheelbarrow", "table, plant, wood"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", "a black and white of a knife/sword with a handle."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["cover, black, plastic", "image, color, black and white"], "captions_pred_pc": ["of a black and white image of a skateboard", "of a black and white knife on a white background"], "captions_pred_image": ["a victor calculator on a white background", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large house with a roof on a platform."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, lake, pool", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small house"], "question": "which house is on a platform?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, gold", "house, fence, playground"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, black, white", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is covered in moss", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small wooden house with a green roof."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, floorplan, gym", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["roof, purple, suspended", "frame, truss, roof"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, roof, green", "box, paper clip, lock"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["mossy, rock, grass", "a, landscape, sand"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a large steel building with a pool."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["shape is cube, color is black, white", "building material, pool, steel"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a large metal building with a roof and truss structure."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, material, frame", "roof, truss, structure"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, staircase, table", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a green letter p", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["ccd770b6eee245d18538b50126977e51", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, letter", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a 3d model of a black and white dots on a white background 3d model of a black and white dots on a white background, isolated on a white background, 3d illustration, 3d model, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art,", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the letter p royalty free 3d model preview no 3", "a white 3d model of a city skyline"], "question": "which entity is a picture of a laptop", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small white building with stairs and a white table."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, base, warning", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which object has a white table?", "label": 1}, {"captions": ["a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["0e20c8a7599d43128d078d9a0973b5f9", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["blue, yellow, frog", "blue, yellow, frog"], "captions_pred_pc": ["of a black and white photo of a chaise lounge", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d model of a piece of furniture"], "question": "which entity has a blue couch?", "label": 0}, {"captions": ["a 3d pink spiky spherical flower.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, texture", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, material, structure", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a desk and chair"], "question": "which entity is not a building structure?", "label": 0}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "a2354f13774340d392fbf33564934aab"], "properties": ["color, roof, pink", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d rendering of a machine with a conveyor belt"], "question": "which roof is yellow", "label": 1}, {"captions": [" a futuristic white sports racing car.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, futuristic", "mountainous, landmass, state"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["shape is hot dog, design is dragon, color is black", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a piece of paper"], "question": "which entity is a state?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is wood, metal, metal", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, hole, shelf", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["turrets, flags, towers", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white house with a roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, and size", "roof, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["lighthouse, fountain, crater", "a, material, steel"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "aae2c42740a04fd68068f5707111d26f"], "properties": ["Drawer, Pattern, White", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, material, frame", "building, color, black and white"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a molecule with two pink and blue spheres.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["926fb2e23c56440a86287e98c1440336", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a molecule with the word 'rono' written in black ink on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of three spheres on a white background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["s, chimpanzee, human, wolf", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small house with a roof."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["a room, a cake, a table", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, shape, and size", "house, roof, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, red", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a white 3d model of a city skyline"], "question": "which image has a wooden shelf?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["roof, color, blue", "wood, board, shelf"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d rendering of a piece of marble"], "question": "which object has a shelf?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, purple, suspended", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["red and white 3d pokeball model compatible with 3ds max, maya, obj, fbx, and c formats.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["27bed5f7fd3a45d38115326e371c906e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, texture", "a, material, clay"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a spherical object with a metallic texture", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- color is red, blue, pink", "metal, cross, clock"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "box, handle, gun"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, tree, rock", "house, roof, green"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a house with a pink roof.", " a small house with a yellow roof and chimney."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["color, roof, pink", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["image size, image, origami", "door, lock, handle"], "captions_pred_pc": ["above a black and white illustration of an airplane", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an origami dragon", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["metal, legs, frame", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": ["white 3d origami bird model", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, white, origami", "hat, skull, bread"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a white umbrella on a gray background", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a large metal building with a roof and truss structure."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "b85a99699ccd4bcba213322113bb253d"], "properties": ["building, roof, yellow", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a cell phone", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a long metal fence"], "question": "which building has a roof with a truss structure?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["black, white, coffee table", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small white building with stairs and a white table."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "e30374c614f54fdb90f35b96b071349d"], "properties": ["building, stairs, shelves", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, grass, moss", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" an old castle in a grassy field.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["field, grass, castle", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, bowl, cup", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "b896a0898efe4059a776193c02132129"], "properties": ["house, hill, forest", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white rocket ship.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, shape, size", "face, mask, tail"], "captions_pred_pc": ["above a black and white illustration of a planet", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "b896a0898efe4059a776193c02132129"], "properties": ["color, mouth, eyes", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small orange piano with legs."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "d793de7c08d74414beeb8ea50f730705"], "properties": ["mossy, rock, rocky", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a potted plant on a wooden table or shelf."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["a, rock, paper", "potted plant, table, shelf"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "cafc467aff2643e8b70149c4944263ee"], "properties": ["a train, a ship, a boat", "wing, knife, boat"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": [" of a large gray sphere", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "096e42b466ec438d95c5d89a85191534"], "properties": ["size, color, shape", "white, rock, shell"], "captions_pred_pc": ["a black and white circular pattern on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a stone wall with a window and a clock."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["graffiti, chinese writing, door", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "paper, hole, sign"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a hole in it?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, plastic", "island, mountain, grass"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a green mountain with trees and grass."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, horns, features", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, white, black, white", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, temperature, england", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "f1b557775310478893242180defa4d80"], "properties": ["a, color, white", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a fish with green spots, green eyes, green and blue fins, and green and blue stripes.", "star wars stormtrooper "], "sample_ids": ["adee50e7a19c4c219e5a2edac18fb28e", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["Eye color is green, Spot color is green, Fin color is green and blue", "a, color, white"], "captions_pred_pc": ["of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a fish on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a white origami bird with silver wings."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "d9574287572c47f7a2b712cf1d919374"], "properties": ["size, color, shape", "color, white, wings"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a 3d model of the human body"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity is white", "label": 0}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a roof structure and toothbrushes."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["roof, room, ceiling", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a white box with a lot of blades"], "question": "which house has a roof structure?", "label": 1}, {"captions": ["a white ceramic vase with brown and beige swirls, stripes, and splatter on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3965acb1aabd4440b9738ebd9c7965fa", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white ceramic vase with a cracked glaze on the surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a white of a man with arms outstretched."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["house, table, chair", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of an open door", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a wall-mounted shelf with three compartments and vents."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "77df1bccf94249988927d3dda97ae273"], "properties": ["- material is plastic- color is green- shape is box", "compartments, wall-mounted, vents"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a boat with dots all over it"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no."], "question": "which entity has more compartments", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small building with a staircase in a room."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["handle, knife, shotgun", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a popsicle on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["island, mountain, grass", "grass, plants, rocks"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a spider-like creature with long arms and legs."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["background, color, white", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small black and white cube.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, size", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a futuristic white sports racing car."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, roof, tray", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a metal object", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a futuristic sports car"], "question": "which is not a car", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["room, bed, desk", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a stone wall featuring carvings and statues."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["sandbox, sand bucket, wooden blocks", "carving, statue, wall"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, sphere, molecule", "buildings, houses, grass"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a rusty boat, piece of wood, and brick wall.", " of two rocks with ice elements."], "sample_ids": ["4dec97bbe6fe46f89768ecd849003a13", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["rusty, piece, wall", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a brick wall", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a stone slab on the ground royalty-free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, fence, dog", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a yellow boat/submarine with a red arrow and light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9b9c31fe4e6b4004a4cb34176f329c04"], "properties": ["color, shape, and size", "color, shape, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a letter 'l' on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a table with an object on it"], "question": "which entity is a boat?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, house, small", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["Steel, Color, Yellow", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a spiral staircase with railings."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["frame, roof, trusses", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "97e000ff41094665afd94ea565da8b13"], "properties": ["resembles, octopus, squid, spider, robot", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a wooden roof structure with a pink roof."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, fence, dog", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of the roof of a building"], "question": "which structure has a pink roof?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "6b745457e06840119058883b35f78f58"], "properties": ["house, table, chair", "roof, color, blue"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, hat, shoes", "a, material, clay"], "captions_pred_pc": ["a black and white image of a teddy bear", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, green, orange, star", "arrow, red, white"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a large steel building with a pool."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, platform, house", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["ring, material, gold", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a black and white striped box."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["roof, color, purple", "color, black, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d image of a black and white striped surface"], "question": "which object has a black and white striped pattern", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "40921ffd69db479294554d261daf3035"], "properties": ["a, building, staircase", "floor, railing, staircase"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a spider-like creature with long arms and legs."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, skyscraper, city", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small white building with stairs and a white table."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "e30374c614f54fdb90f35b96b071349d"], "properties": ["frame, trusses, wood", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a window", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "plane, ship, bird"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more metal", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, tree, rock", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white castle composed of small cubes."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, color, pink", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, blue, green, yellow, blue", "frame, beams, trusses"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a small house with a road in front of it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, front, road", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, roof, wooden", "house, pool, balcony"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["ceiling, beams, light", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["costume, color, black", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " a spider-like creature with long arms and legs."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["hat, skull, bread", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a stone sculpture", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["room, door, shelf", "wood, board, shelf"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a piece of marble"], "question": "which object has a shelf", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a wooden roof structure with a pink roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, roof, wooden", "roof, color, pink"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a spiral staircase with railings."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["A, a, a", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "b896a0898efe4059a776193c02132129"], "properties": ["roof, house, small", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["frame, beams, trusses", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with roof trusses"], "question": "which structure has a roof truss", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a house with a wooden-framed roof structure."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image is rock formation with a white cliff and a rock", "roof, material, wood"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white motorcycle with wings.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, wings", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fa06167d83e54b05bdfbeeae2ca7c8a6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, structure, roof", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a map with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with many pillars", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["water, boat, rock", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["light, floor, ceiling", "floor, staircase, table"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which floor is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["shape is cylinder, color is white, material is plastic", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, base, warning", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a table with stairs"], "question": "which object has a light fixture?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small white building with stairs and a white table."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, ceiling, hole", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" of a sword with a wooden handle.", " a white rocking chair with a curved backrest."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["handle, material, wood", "backrest, curved, yes"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a sword with two blades", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["\"multiple white cubes arranged in a row on a gray background.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["17c8222d4ce04e518117078e7de6aaed", "b896a0898efe4059a776193c02132129"], "properties": ["color, background, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a box with the words 'box 2' and 'thoughtful'", "of a white candle in the shape of a buddha"], "captions_pred_image": ["an image of a white background with a few small cubes on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, white, words", "black, screen, blank"], "captions_pred_pc": ["a black and white image of a long line of numbers", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a screen that is blank?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["acropolis, city, building", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, black, blue", "a, color, red"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a castle with two towers"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a 3d printed model of white and red robots on a red platform."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "0fa560c2fd9f4422a97356c947ac3b46"], "properties": ["color, shape, size", "color, red, white"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a robot standing on top of a table"], "question": "which entity is not a model?", "label": 0}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["image, building, painting", "building, color, black and white"], "captions_pred_pc": ["above a black and white drawing of a building", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["background, color, white", "house, roof, wooden"], "captions_pred_pc": ["a black line on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white photograph of a birdhouse"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a, hole, shelf", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a wooden-cased radio.", "a white 3d dragon-bat hybrid with wings."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "8cb88b6f02c549ee812e092a2e948e1c"], "properties": ["case, material, wood", "wing, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "above a black and white image of a bird in flight"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a white 3d model of a bat flying in the air"], "question": "which entity has a wing", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, blue, green, yellow, blue", "resembles, sea urchin, shell"], "captions_pred_pc": ["a pair of sneakers on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a futuristic white sports racing car."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["lighthouse, fountain, crater", "color, white, futuristic"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a futuristic sports car"], "question": "which is not a vehicle", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "6b745457e06840119058883b35f78f58"], "properties": ["building, material, steel", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, black, green", "striped, white, black"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["color, door, window", "shape is box, color is white, door is present"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a white, open shelving unit"], "question": "which house has a door", "label": 1}, {"captions": ["white 3d canoe model", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1d0342b454884db4bb88c939a69f6362", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of a surfboard", "a black and white image of a building with dots"], "captions_pred_image": ["a white canoe on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["stacked, racks, toy train", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a black and white image of a suitcase on wheels"], "question": "which object has a laptop?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small white house with a roof."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["desk, chair, table", "roof, color, white"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is turtle, color is green, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a small house with stairs and a roof."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["Lights, number, five", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof?", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " of two rocks with ice elements."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["graffiti, wall, wheelbarrow", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small white house with windows and a black lid."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4b40af369c1149949f5ccb68becd8430"], "properties": ["A, a, a", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white house with three windows"], "question": "which object has a lid?", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and white robot.", " a building with yellow lines."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, red, white", "color, yellow, lines"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a house with a flat roof structure."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "abc52d210d71415296730bb00352ce6f"], "properties": ["size, color, shape", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, bird, hook", "Headstock, Guitar, Head"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "3f010c9478164c3db00cab997fdafa40"], "properties": ["base material is wood, color is red, message is welcome to northwich", "arm, light, sign"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on"], "question": "which object has a sign?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "modern tan leather lounge chair."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["backrest, curved, yes", "color, tan, leather"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a gray leather lounge chair with a metal base"], "question": "which chair is made of leather", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a, bowl, cup", "table, staircase, light"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a table with a staircase"], "question": "which table has a staircase and a light?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["hat, cup, bowl", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c4c09479570943e2845fbd4c6a450568"], "properties": ["background, color, white", "castle, island, house"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a small house on an island"], "question": "which entity has a castle on an island?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a 3d red and white santa claus teddy bear with a flying plane and floating hat."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "0797e97b272c43d59bfeb5821421c5eb"], "properties": ["color, black, white", "hat, color, white"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of a doll made of beads"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a black and white photo of a snowflake falling from the sky"], "question": "which hat is white", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "Cabinet, drawer, wood"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["building, stairs, shelves", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a table with stairs"], "question": "which entity has a staircase", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, material, shape", "color, sphere, molecule"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a white and blue building with a black roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "c893118316ee43e18322e5964b2806c5"], "properties": ["bedroom, bathroom, bed", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "6b745457e06840119058883b35f78f58"], "properties": ["roof, structure, house", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a steeple on top"], "question": "which structure has a roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, structure", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a house with wooden framing and trusses."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, shape, texture", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is wood, metal, metal", "metal, cross, clock"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": ["a white of a small archway gate.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "839a873262a544c9906f3f5799ca4648"], "properties": ["image, color, white", "a, outfit, green"], "captions_pred_pc": ["above a black and white illustration of an arch", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a white arch", "a person jumping on a trampoline in slow motion"], "question": "which image is of a person in a green outfit?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "e80eca95874c4bffb8aec54044824d87"], "properties": ["a, desk, laptop", "arrow, mountain, area"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a line with a square on it"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity has a mountain range?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["desk, chair, lamp", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, fence, playground", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small house on a hill in a field."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, yard, surrounding buildings", "house, hill, field"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a building with yellow lines."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, door, window", "color, yellow, lines"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a room, a cake, a table", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": [" a small house with a blue roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, color, blue", "table, stairs, ladder"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a four-legged metal workbench with shelves."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["mossy, rock, grass", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a knife, blade, handle", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a large bird with a nest and a piece of wood."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "839f4875365a4fbab4b57790b102ff7b"], "properties": ["resembles, octopus, squid, spider, robot", "bird, nest, wood"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white map of malaysia on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a bird in mid-flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, rock, pond", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, stairs, house", "roof, beams, frames"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a wooden structure"], "question": "which house has a roof", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["Steel, Color, Yellow", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a ceiling", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["ceiling, light, desks", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, structure, greenhouse", "roof, trusses, beams"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a building"], "question": "which roof has trusses", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a wooden table and chair."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["stair, table, chair", "table, chair, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a small wooden table"], "question": "which table and chair are made of wood", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small triangular-shaped object."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "2d02985030804209a26c2c53b96a06f9"], "properties": ["light switch, electrical outlet, furniture", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small blue robot with a windmill."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["- color is red, blue, pink", "color, blue, robot"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a wind turbine"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof truss, beams, structure", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, red, blue, green", "color, black, visor"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small house with a pond and situated on a rock."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "92859eb82a344134806b37cc209927c6"], "properties": ["house, front, road", "house, rock, pond"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, stairs, shelves", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small white house with a roof."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["staircase, railing, building", "roof, color, white"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small building with a roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, building, small", "house, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, tan, brown, orange", "stair, table, chair"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a four-legged metal workbench with shelves."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["room, bed, desk", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["floor plan, ceiling light, color", "image, city, spoon"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a large house with a roof on a platform."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, yellow", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a small house"], "question": "which roof is on a platform", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["mannequin, scarf, color", "a room, a cake, a table"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "6b745457e06840119058883b35f78f58"], "properties": ["house, tree, pool", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a purple and green sphere.", " a wooden billiard table with legs."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, umbrella, coat", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a roof and beams."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, roof, tray", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which house has a roof with beams?", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an eagle on a white background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, material, shape", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6b745457e06840119058883b35f78f58", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small building with a staircase in a room."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white image of the letter l"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["- color is white - shape is box - material is plastic", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " of a small white building with stairs and a lid."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, color, white", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, material", "floor, staircase, balcony"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a bench on a wooden floor"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["variation, bread, pot", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["building, color, white", "roof, brown, flat"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d rendering of a table and stool"], "question": "which building has a brown roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a large metal building with a roof and truss structure."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, air conditioner, house", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a window", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a long metal fence"], "question": "which entity has a roof with a truss structure", "label": 1}, {"captions": [" a child's room in a small house with windows.", " of a stone wall with a window and a clock."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["room, house, windows", "window, clock, wall"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "bded33af34104b9686b845dfd18309a9"], "properties": ["water, river, island", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["chair, table, refrigerator", "house, pool, balcony"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["white plastic hook", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["69b23b509df94ee9bc8dda128c75bd10", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, material is plastic, shape is hook", "rusty, warning, metal"], "captions_pred_pc": ["of a black and white image of a shower head", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white plastic hook on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["21639082215b4b179d574d2408124838", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, room, furniture", "house, hill, forest"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["s, stick, leaf", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a green, wooden-structured roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, lake, pool", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a box, a cup, a bottle, a jar", "throne, stairs, tree"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, number", "roof, color, blue"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["white table lamp with a white shade.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, shade", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white table lamp with a white shade", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white cube", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["aca5fa55596c42f093ca4d6d4b3eaea9", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white square with dots all around it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white square table", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["shape, bathroom, refrigerator", "glass, metal, balls"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of a wine glass"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a clear acrylic foosball table"], "question": "which table has more metal", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "c3a82df41875402285608ef13a55df57"], "properties": ["color, blue, white, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d model of a gun", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "a17477b445b3443189dad22f768b888b"], "properties": ["color, blue, structure", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a small building with a balcony"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white of a spaceship and building."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, white, red, pink", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a large house with a roof on a platform."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "cb3e09a301b746918a682a595037c7f7"], "properties": ["railing, table, staircase", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a robot head with a helmet.", " a witch wearing a black and white hat."], "sample_ids": ["55ccc07cea0640788d42448bc6559087", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["helmet, head, robot", "color, black, white"], "captions_pred_pc": ["of a silver ring with black crystals", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a bust of a robot head royalty free 3d model preview no 2", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity has a black and white hat", "label": 1}, {"captions": [" of a bench and lamp post.", " of a japanese-style pagoda house in a pixelated village."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "42c4e6ca4a0c4b7b9a97d543b2442222"], "properties": ["A, bench, lamp post", "image is a japanese-style pagoda house in a pixelated village"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d model of a japanese temple and pagoda"], "question": "which image is a pagoda house?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a, door, suitcase", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a small red and white spaceship.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["color, shape, size", "house, building, people"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a small town in the middle of a field"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["Lights, number, five", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a clay pot with holes in it."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, black, white, handle, armrest", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, texture", "Shelf, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d rendering of a white shelf"], "question": "which entity is white", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " of a person breaking through a brick wall."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["- material is wood, rusty, horned", "image, brick, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "12093c89a60941e7884b252bdc05104c"], "properties": ["building, balcony, street", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a black building.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, black, building", "building, material, stone"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a wooden frame with a picture in it.", "a white glass beer mug."], "sample_ids": ["9dcf94c293de427daba9dceee624e728", "1d686cbd3e9a4c629a43088658989286"], "properties": ["picture, frame, material", "color, white, glass"], "captions_pred_pc": ["a black and white image of a long, decorative piece of jewelry", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a framed picture on a wall", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white shelf with holes and brackets."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, material, structure", "color, white, holes"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a white bench with a shelf on top"], "question": "which entity is made of holes", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["Cabinet, Drawers, Filing", "building, plane, room"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, tree, hill"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["room, bed, desk", "a, desk, laptop"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small house with stairs and a roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["background, color, white", "roof, stairs, house"], "captions_pred_pc": ["a black line on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "f1b557775310478893242180defa4d80"], "properties": ["color, bowl, green", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "a17477b445b3443189dad22f768b888b"], "properties": ["3D, toothpick, skateboard", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a square with dots"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, yellow, black", "house, pool, balcony"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "d49d8ed244094349a99e4faca05e0690"], "properties": ["windmills, silhouette, city model", "low poly, plant, white"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "white airplane in flight."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "7dccc62d436c40efa2ea23b9c8179451"], "properties": ["stacked, racks, toy train", "airplane, white, in flight"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a 3d model of an airplane on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a white airplane toy on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " of two rocks with ice elements."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, bird, lamp", "image is a rock with ice elements"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "68e0d097351843a3980421f2ae624c59"], "properties": ["color, white, holes", "white, top, writing"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a large house with a roof on a platform."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, material, texture", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a small white building with stairs and a lid."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, roof, tray", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof truss, insulation, suspended ceiling", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, white, logo", "building, plane, room"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "a white of a man with arms outstretched."], "sample_ids": ["d6087023095446fbadef1721478373b2", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["door, roof, window", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, staircase, window", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, orange, leather", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a curved line"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a harp in a white room"], "question": "which object is made of a material that is not leather?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, sphere, molecule", "island, terrain, water"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, green, orange, star", "metal, legs, wheels"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a large metal building with a roof and truss structure."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["size, color, shape", "rusty, warning, metal"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a blue and green penguin."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, roof, block", "color, blue, green"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a penguin sitting down"], "question": "which entity has a blue and green penguin?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, booth, bed", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", "a white glass beer mug."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "1d686cbd3e9a4c629a43088658989286"], "properties": ["door, white, structure", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["white pendant light fixture ()", "white ceramic urn with a red lid."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color is white, material is metal, light source is incandescent", "color, white, lid, red"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a black and white photograph of a vase"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a clay pot with holes in it."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["room, house, windows", "hole, material, clay"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a small wooden house with a green roof."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["mountain, grass, tree", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, landscape, sand", "roof, color, yellow"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["roof, color, purple", "roof, structure, wall"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with a roof"], "question": "which house has a brick wall?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["size, material, color", "Steel, Color, Yellow"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white illustration of a building"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow metal", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is sphere, color is white, material is plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["throne, chair, building", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "770e577c9795435898209fd24191635b"], "properties": ["floor plan, heating system, ceiling light fixture", "image, color, light"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a white 3d model of a small town"], "question": "which image has a ceiling light?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["roof truss, beams, structure", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["s, stick, leaf", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a character wearing glasses and a hat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["costume, color, black", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d model of a throne with a tree on it"], "question": "which entity is a throne?", "label": 1}, {"captions": [" a small house with a blue roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, blue", "structure, roof, pitch"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, temperature, england", "house, table, chair"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, blue, white, handle", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["base, speaker, light", "water, boat, rock"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["a box, a cup, a bottle, a jar", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, logo", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a large metal building with a roof and truss structure."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, yellow, chimney", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof with a truss structure", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small white building with stairs and a white table."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e30374c614f54fdb90f35b96b071349d"], "properties": ["house, fence, dog", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a black and white striped box.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, white", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "white 3d paper airplane map model"], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["- color is white - shape is box - material is plastic", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["a black and white square with dots all over it", "black glitter africa map on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "db74ee1621464be1b164be26a1af050e"], "properties": ["graffiti, wall, wheelbarrow", "window, arches, wall"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a house with a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["A, a, a", "roof, house, roof"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e694d53545d449319a64cceb0280c3c6"], "properties": ["ceiling, light, desks", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a white glass beer mug."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, text", "color, white, glass"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a white of a man with arms outstretched."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, skyline, buildings", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, ceiling, hole", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, truss system, framing", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of pink and blue", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", "a white of a man with arms outstretched."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["wing, silver, white", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with wooden framing and trusses."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, containers", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house with wooden framing and trusses."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, yellow, roof, metal", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house under construction"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, room, ceiling", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "island, terrain, water"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, wheel, helmet", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["a, bowl, cup", "black, roof, green"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small black building"], "question": "which object has a green roof", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "e34088fc7b5344c4ab29fef067750225"], "properties": ["a, plane, small plane", "sphere, pedestal, statue"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["chair, table, refrigerator", "image, building, stairs"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["mossy, rock, rocky", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a house in the middle of a field"], "question": "which is not a tree", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["collection, moose, skull", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, shape, material", "paint, rust, concrete"], "captions_pred_pc": ["of a black bracelet with dots on it", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a concrete wall"], "question": "which object is made of concrete", "label": 1}, {"captions": [" a small house with a roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, house, small", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["smiley-faced banana .", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "building, plane, room"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green skull and sphere.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, skull, sphere", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull on a gray background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "a, landscape, sand"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["hat, sword, gun", "house, rock, bird"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "c3a82df41875402285608ef13a55df57"], "properties": ["Title, Image, Color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a large metal building with a roof and truss structure."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["hair, legs, wings", "roof, truss, structure"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, material, texture", "building, floorplan, gym"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" a rusty green metal box with a handle and a gun inside.", "star wars stormtrooper "], "sample_ids": ["76cfd0e88ce243d483919a018a4f1a9e", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["box, handle, gun", "a, color, white"], "captions_pred_pc": ["a black and white square with dots on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of a metal box with a handle", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, orange, white", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a black and white photograph of a barrel"], "question": "which object is more likely to be rusty", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, toilet, robot", "room, furniture, window"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["house, lake, pool", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a small white building with stairs and a lid."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["lighthouse, fountain, crater", "building, stairs, lid"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small purple plastic chair with holes."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["Drawer, Pattern, White", "color, plastic, purple"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, material", "a, outfit, green"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a white and black helmet", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a room, a cake, a table", "3d, slide, swing"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" of a white chest of drawers with legs.", " a wooden billiard table with legs."], "sample_ids": ["f00dfa8b5e7e4fc6bbf97d718b66f390", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["chest of drawers, legs, white", "legs, material, wood"], "captions_pred_pc": ["of a black and white leopard print rug", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white dresser", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["shape is turtle, color is green, white", "house, fence, dog"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small orange piano with legs.", " of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "7d76c44cb9dd4948b8766d83994ca5f3"], "properties": ["color is orange, size is small, legs", "- material is stl, obj, fbx- size is 240px- color is red, white"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a close-up view of a black ball with a screw in the center"], "question": "which object is smaller", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a white of a woman with her arms outstretched."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["roof, structure, wall", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a wooden frame with gold trim, featuring a picture of a river surrounded by trees.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["25b86d7272e849f0967149243601bcbf", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["frame, picture, frame", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white patterned square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a lake with trees in the background royalty free 3d model preview no.3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", "star wars stormtrooper "], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["3ds max, obj, fbx, c", "a, color, white"], "captions_pred_pc": ["a black and white insect on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, gazebo, table", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a building with many pillars"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a brick building with a roof structure and roof truss."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "84e8acad28664a738df69d719df9e263"], "properties": ["metal, legs, frame", "roof, structure, truss"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a house with a green, wooden-structured roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["stair, table, chair", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, shape, size", "wing, knife, boat"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["shape is sphere, color is white, material is plastic", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, poles", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a spider-like creature with long arms and legs."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["computer desk, laptop, monitor", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["background, color, white", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of the roof of a house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, roof, wooden", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["color, screen, drawer", "books, paper, lamp"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white photograph of a toilet paper holder"], "question": "which entity has a black and white shade", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a small purple plastic chair with holes."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, material", "color, plastic, purple"], "captions_pred_pc": ["of a black and white drawing of a purse", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, horns, eyes", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["table, bench, deer", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a house with a blue roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, blue", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", "a white of a woman with her arms outstretched."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, leg, tail", "image, color, white"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["b5afccae993346079483507296fbb029", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["shape is square, material is metal, color is rusty", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["face, handle, spout", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a small, circular object", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a white ceramic vase with a face on it", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, yellow", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a large metal building with a roof and truss structure."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "b85a99699ccd4bcba213322113bb253d"], "properties": ["desk, chair, table", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a small white house with a staircase and a window."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, green, handle", "house, staircase, window"], "captions_pred_pc": ["of a small black object on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d rendering of a small room with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["graffiti, wall, wheelbarrow", "floor, stairs, bathroom"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["red, mouse, handwriting", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, red, apples, tree, cactus, dots", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a wooden shed with a gray roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["size, color, shape", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["frame, roof, trusses", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a large building"], "question": "which house is on an island?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a white glass beer mug."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "1d686cbd3e9a4c629a43088658989286"], "properties": ["brown, paint, tape", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, yellow, blue", "roof, color, yellow"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["shape is sphere, color is white, material is plastic", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a building"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["boat, table, chairs, umbrella, solar panel", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["3D, toothpick, skateboard", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a cell phone"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "bf18bfd89efd43389781050230467d58"], "properties": ["hat, food, bowl", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", "a white of a house with a hole in the ceiling."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["floor, ceiling, poles", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, white, black, white", "frame, screen, color"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a building with a metal and wooden pole structure."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof structure, truss, ceiling", "structure, material, pole"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["two-story, roof, building", "roof, trusses, beams"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a roof structure"], "question": "which building has a roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, temperature, england", "box, paper clip, lock"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["color, shape, material", "resembles, toy, bookshelf"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a book cover"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "745fed115c5343dab9d7f0c389c98902"], "properties": ["room, door, shelf", "costume, color, black"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a white castle composed of small cubes."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, green, handle", "composed of, white, cubes"], "captions_pred_pc": ["of a small black object on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", "a white of a man with arms outstretched."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, table, sphere", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "09f2cf267e954c958828325067bcc36a"], "properties": ["floor plan, bathroom, pool", "island, terrain, rocks"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a white and blue building with a black roof."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, roof, block", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof trusses, beams, suspended ceiling", "roof structure, truss, ceiling"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["resembles, toy, castle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "e34088fc7b5344c4ab29fef067750225"], "properties": ["apse, roof, floor plan", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white drawing of a room", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["shape is sphere, color is white, material is plastic", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small wooden house."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, plane, town", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a white castle composed of small cubes."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is plastic- color is green- shape is box", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a castle made of white cubes"], "question": "which object is made of cubes", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, size", "house, fence, playground"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "46903bf029934b1989bc062dcb0a5531"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a still life?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, material", "structure, roof, pitch"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, tan, brown, orange", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["wall, stairs, castle", "building, roof, balcony"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, size", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d rendering of a small white table with a chair"], "question": "which entity is a table?", "label": 1}, {"captions": [" a small building with a staircase in a room.", " of two rocks with ice elements."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["room, staircase, building", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, white, railing, black", "color, black, blue"], "captions_pred_pc": ["above a black and white image of a computer screen", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black cat?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house with a blue roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["lighthouse, fountain, crater", "roof, color, blue"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house with a roof"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a green mountain with trees and grass."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, rock, pond", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, red, black", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a robot with a blue, purple, and white body.", "a white of a woman with her arms outstretched."], "sample_ids": ["6f98acb9e03c4cbd9c83f2c8f9cd3ddc", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["body, color, white", "image, color, white"], "captions_pred_pc": ["above a black and white image of a robot", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a robot standing in the middle of a white background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, roof, tray", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building structure"], "question": "which structure is colorful?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["cup, bottle, chessboard", "grass, plants, rocks"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a room, a cake, a table", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a colorful sunburst with pink, blue, and purple hues.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["46946704a6344eb18718fc5710782f6b", "b896a0898efe4059a776193c02132129"], "properties": ["color, hue, saturation", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a ceiling light fixture", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunbur", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a white castle composed of small cubes."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a castle made of white cubes"], "question": "which object is composed of cubes", "label": 1}, {"captions": [" of a green, yellow, and white striped object.", " of a white human skull with broken bone elements."], "sample_ids": ["d3fff6cd429842e4a1188e794f07d7d9", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["of a black and white striped rug on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a white shelf with two shelves", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "402601779d1d4146b4cde106dfff1b27"], "properties": ["yellow, table, roof", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, handle, zipper", "hat, skull, bread"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a black bracelet with dots on it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "a17477b445b3443189dad22f768b888b"], "properties": ["a, plane, small plane", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a, hole, shelf", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a blue and green penguin.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["50e0e11060df4c0db6a44daf3f32639d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, blue, green", "a, material, clay"], "captions_pred_pc": ["a black and white image of a ball with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a penguin sitting down", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["floor, table, wall", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small building with windows and a roof."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["top, color, wood", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which object has a roof?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, horns, features", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small building with a staircase in a room."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["color, white, red, pink", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase in a room?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["lighthouse, fountain, crater", "building, plane, city"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, pink, green, cord, white", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["light source, fixture, color", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a cake with a black and white design on the top of the cake"], "question": "which entity is a light source", "label": 0}, {"captions": [" of a wheeled hospital bed", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "40921ffd69db479294554d261daf3035"], "properties": ["wheeled, bed, hospital", "floor, railing, staircase"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "above a black and white image of a computer screen"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["house, roof, wooden", "table, staircase, light"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a table with stairs"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "97e000ff41094665afd94ea565da8b13"], "properties": ["- material is white- color is white- texture is textured", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "4389909667db472ea9a57a70eb940fa4"], "properties": ["Steel, Color, Yellow", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a white castle composed of small cubes."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["face, handle, spout", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, red, blue, structure", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "f3edc84dc71649c1a11270437279255b"], "properties": ["chocolate, mushroom, cake", "hippo, hind, legs"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "above a black and white illustration of a frog"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "white of a rhino head with horns."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "8481aade84de47cab1a9accf8067e678"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a blue and green penguin."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, shape, size", "color, blue, green"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a penguin sitting down"], "question": "which entity is blue and green?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, truss system, framing", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a, bowl, cup", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "bf18bfd89efd43389781050230467d58"], "properties": ["building, balcony, street", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "c3a82df41875402285608ef13a55df57"], "properties": ["color, pier, stairway", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a white of a woman with her arms outstretched."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, material, shape", "image, color, white"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " of a black tray with three green rings on it."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, white, holes", "color, black, rings"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of a tray with three rings on it"], "question": "which object is black?", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small house with a tree and a rock."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["background, color, white", "house, tree, rock"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a small house with a tree in front of it"], "question": "which object has a tree and a rock?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "ee440fcbc493488e879539d37a8d820e"], "properties": ["ruined building, stone floor, small stone structure", "island, fish, ice"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a house with a blue roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a small white building with stairs and a white table."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, yellow, black", "building, stairs, table"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a building with a staircase"], "question": "which entity has more stairs", "label": 1}, {"captions": ["white 3d canoe model", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["1d0342b454884db4bb88c939a69f6362", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["of a black and white photo of a surfboard", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white canoe on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a wooden shed with a gray roof."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["wall, stairs, castle", "roof, color, gray"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is the color gray", "label": 1}, {"captions": [" of a lantern on a table.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, table, lantern", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a lantern on a table", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, roof, wooden", "house, fence, playground"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "7407a108e0354925b83b750339bc03df"], "properties": ["floor plan, bathroom, pool", "platform, color, orange"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange in color?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a gray, metal pillar/cylinder."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is white, material is plastic, shape is bottle", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["of a black circular object on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "a2354f13774340d392fbf33564934aab"], "properties": ["house, color, white", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["apse, roof, floor plan", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, shape, material", "color, white, logo"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a white t-shirt with a supreme logo"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["a, b, c", "striped, white, black"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["resembles, octopus, squid, spider, robot", "image, color, pink"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of an ipad stand with a small speaker and blue-white light on a cylindrical base."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "e0694fef8e414d69a6a89cdffd212c86"], "properties": ["screen, monitor, stand", "base, speaker, light"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white illustration of a clock"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a tablet stand on a pedestal royalty-free 3d model"], "question": "which entity has a speaker on a cylindrical base?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small white house with a roof."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "46903bf029934b1989bc062dcb0a5531"], "properties": ["red, eyes, rocket", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a black and white image of a clock", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c3a82df41875402285608ef13a55df57"], "properties": ["floor plan, heating system, ceiling light fixture", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["building, pattern, field", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["mountain, grass, tree", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a four-legged metal workbench with shelves."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a close up of a black object on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a train, a ship, a boat", "box, cylinder, bottle"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, color, pink", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["floor plan, heating system, ceiling light fixture", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["770e577c9795435898209fd24191635b", "b896a0898efe4059a776193c02132129"], "properties": ["image, color, light", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a small town", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a green mountain with trees and grass."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" of an old, rusty, green metal locker and a large wooden box.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9797ff34c99a43be86d27868b3f9cb6d", "b896a0898efe4059a776193c02132129"], "properties": ["metal, locker, box", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "88eba412c78a4ced89eb857327653f6c"], "properties": ["color, table, ceiling", "lighthouse, building, tower"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a house with a wooden-framed roof structure."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, wall, color", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "c3a82df41875402285608ef13a55df57"], "properties": ["black, roof, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small black building", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " white crocs clogs with blue straps and holes."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "4622e88fd9264b37997671efeb73af85"], "properties": ["roof, green, tiled", "color, white, blue"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity has a white and blue color scheme?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a building with yellow and pink walls, a pink roof, and multicolored structural elements."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "8b1eda5d040f4dc29255cde2db077c30"], "properties": ["color, roof, block", "color, roof, wall"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building structure"], "question": "which building has a pink roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["- material is plastic- color is white- shape is cylinder", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a tree"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["light source, fixture, color", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a white castle composed of small cubes."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, blue", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a clay pot with holes in it."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["level, stairs, columns", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, shape, material", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["- color is red, blue, pink", "box, cylinder, bottle"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white dots pattern on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has more containers", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, shape, material", "ashtray, color, gray"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "97e000ff41094665afd94ea565da8b13"], "properties": ["metal, legs, frame", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a brick wall with grass."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "53f2d948091f417cb580e22469c94db2"], "properties": ["bed, desk, window", "brick, grass, wall"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white photo of a brick wall and a puddle"], "question": "which entity is outside?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["s, stick, leaf", "lighthouse, fountain, crater"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a brick wall with grass."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "53f2d948091f417cb580e22469c94db2"], "properties": ["painting, door, wall", "brick, grass, wall"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white photo of a brick wall and a puddle"], "question": "which wall is made of brick", "label": 1}, {"captions": [" of a white round table with a red accent.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fea62a865b4e40899d95785533818329", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, red", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an empty white plate on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a large metal building with a roof and truss structure."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, holes", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color is white, material is plastic, shape is box", "blue, curved, resembles"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, table, ceiling", "building, room, sky"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, texture", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large steel building with a pool."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, lake, pool", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a black and white striped box."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, horns, features", "color, black, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of a black and white striped surface"], "question": "which entity is black and white?", "label": 0}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, truss, lamp", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a square ceiling with a hole", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, window, statue", "roof, material, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, roof, tray", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of the roof of a building", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" a small wooden log cabin.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["size, material, log", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a table and chairs on a white background"], "question": "which building structure has a yellow roof", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a white castle composed of small cubes."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, shape", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of cubes", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Arms, Legs, Color", "island, terrain, water"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6b745457e06840119058883b35f78f58", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, color, blue", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["house, roof, toothbrushes", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small orange piano with legs."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, sphere, molecule", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "5392e72784be41e485bf2d43cf0bee6a"], "properties": ["a, color, white", "color, white, pink, eyes"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a bear's head"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a wolf's head on a white background"], "question": "which entity has white eyes", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a four-legged metal workbench with shelves."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["variation, bread, pot", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white drawing of an object", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "1da865c75a5e4a57a17652975dae5474"], "properties": ["Arms, Legs, Color", "color, white, plastic"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is stone - color is blue - shape is arrowhead", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, plane, small plane", "Wheels, laptop, robot"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, bench, door", "color, shape, color"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["stair, table, chair", "table, bench, deer"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a table and bench?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of two rocks with ice elements."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["black, white, laptop", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["rusty, sink, graffiti", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs and a ladder?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof structure, truss, ceiling", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["green, hat, cream", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked planes", "label": 1}, {"captions": [" a black castle with stairs and a door.", " of a small white building with stairs and a lid."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["door, stairs, color", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a white box on a gray background"], "question": "which building has stairs and a lid?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["desk, chair, lamp", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a wooden billiard table with legs."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["house, roof, wooden", "legs, material, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["mug is purple, cup is black, candle is black", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a large building with a roof and windows.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, windows, building", "house, fence, playground"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "a095621f2d5845af83db3f59f5685982"], "properties": ["rusty, hat, dartboard", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["- material is plastic- color is white- shape is cylinder", "furniture, room, kitchen"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity is a room?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["b5afccae993346079483507296fbb029", "5f8c7eda0f464019a4acea243114555d"], "properties": ["shape is square, material is metal, color is rusty", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["floor plan, ceiling light, color", "roof, ceiling, hole"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "a2354f13774340d392fbf33564934aab"], "properties": ["graffiti, chinese writing, door", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, roof, white, cubes", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a map", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "9b6a637ead444bd28452178c74697653"], "properties": ["color, background, white", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which is not a skateboard", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a wooden table with a plant on it."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["house, tree, hill", "table, plant, wood"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a side table with a potted plant sitting on top of it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and white robot.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, red, white", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a white building with a red roof."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["door, roof, pool", "color, white, roof, red"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, frame", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a metal frame structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, material, shape", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["cup, bottle, chessboard", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small orange piano with legs.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color is orange, size is small, legs", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a two-story small apartment building with a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, green, lawn", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a white of a house with a hole in the ceiling."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, building, people", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a large steel building with many columns and a pool."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, color, white", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["floor, wall, roof", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of the roof of a building"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a potted christmas pine tree."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["black, white, coffee table", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a wooden billiard table with legs."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a wooden roof structure with a pink roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["tiers, building, stairs", "roof, color, pink"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, hat, glasses", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["colorful of a dragon toy.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["8c0ec07322914726ad86cc4885052e08", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, toy, dragon", "image, color, white"], "captions_pred_pc": ["above a black and white image of a stingray on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a black and white image of a small dragon toy", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": ["white ceramic face sculpture resembling an ice cream blob.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8abc3a28cbba40428c9b364f90a4982a", "c3a82df41875402285608ef13a55df57"], "properties": ["blob, face, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a starfish", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a head with eyes and a nose", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["pattern, color, shape", "a, color, red"], "captions_pred_pc": ["a black circle on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a castle with two towers"], "question": "which object is red", "label": 0}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1c389c8f46b345838e515b9747c1f982"], "properties": ["hat, sword, gun", "plate, fruit, knife"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a person riding a skateboard on a wooden surface"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a cartoon hippo standing on its hind legs with arms outstretched.", " of two rocks with ice elements."], "sample_ids": ["f3edc84dc71649c1a11270437279255b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hippo, hind, legs", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a frog", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a hippopotamus standing on its hind legs", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" various fruits and vegetables.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, size", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white image of a square with dots on it"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, table, ceiling", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "20a02705a66f460492e07345e84a62ed"], "properties": ["- material is plastic- color is white- shape is cylinder", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["cover, torn, open", "island, mountain, grass"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with stairs and a balcony."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "0fbc5f16d301450c820b1f2158fd4f69"], "properties": ["A, a, a", "balcony, stairs, house"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a building with two floors and a balcony"], "question": "which entity has a balcony", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["apse, roof, floor plan", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a large white box"], "question": "which building has a roof made of metal", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "1c389c8f46b345838e515b9747c1f982"], "properties": ["- material is white- color is white- texture is textured", "plate, fruit, knife"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a cube", "a person riding a skateboard on a wooden surface"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a metal building with a purple roof and cage structure."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, house, small", "roof, purple, structure"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of two rocks with ice elements."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["red, mouse, handwriting", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["island, terrain, rocks", "beige, white, round"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is not a small", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " of two rocks with ice elements."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, black, white, handle, armrest", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["chair, table, refrigerator", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " of a white chest of drawers with legs."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["food, leaves, shredded paper, rocks", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a bird in flight", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "a24872444e5c468a9264d503a9ca7276"], "properties": ["ceiling, light, desks", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity has a dartboard?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, ball, mushroom", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d rendering of a house on a rock"], "question": "which entity has a rock?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["rocky, rug, puddle", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" a small white house with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a white roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["rusty, sink, graffiti", "a, character, mario"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "for a black and white sculpture of a person"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a pair of men's grey and tan leather lace-up sneakers with blue accents.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0070d09cecd94178b4217e244dd72efc", "c3a82df41875402285608ef13a55df57"], "properties": ["color, tan, grey, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a shoe on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a pair of gray shoes on a white background", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a white origami bird with silver wings.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["d9574287572c47f7a2b712cf1d919374", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, wings", "beige, white, round"], "captions_pred_pc": ["a 3d model of the human body", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a futuristic bird in flight on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["fee48e4d25934ebb85ef6888d517d398", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["red, rock, ceiling", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a circular object with dots on it", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked items", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, white, railing, black", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", "a white glass beer mug."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "1d686cbd3e9a4c629a43088658989286"], "properties": ["chest of drawers, cabinet, white", "color, white, glass"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "db74ee1621464be1b164be26a1af050e"], "properties": ["graffiti, chinese writing, door", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, shape, and size", "house, staircase, table"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a house?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a white of a man with arms outstretched."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, blue, structure", "image, color, white"], "captions_pred_pc": ["a black and white image of dots on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "09f2cf267e954c958828325067bcc36a"], "properties": ["base, speaker, light", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white illustration of a clock", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", " a house with a roof and beams."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, text", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, door, window", "shape is cube, color is black, white"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a person breaking through a brick wall."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, room, ceiling", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a small silver camera with a lens.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["62829a25b4634d63a2ba2b0220335b3e", "c3a82df41875402285608ef13a55df57"], "properties": ["lens, silver, camera", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a toothbrush on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a child's room in a small house with windows.", " of two rocks with ice elements."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["room, house, windows", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white bunk bed with a ladder.", "star wars stormtrooper "], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["bed, ladder, color, white", "a, color, white"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a bed?", "label": 0}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a train, a ship, a boat", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, pink, green", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, yellow, black", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a wooden roof structure with a pink roof."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a train, a ship, a boat", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, desk, laptop", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, hole, shelf", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Title, Image, Color", "island, terrain, water"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["house, lake, pool", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a small white building with stairs and a white table."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "e30374c614f54fdb90f35b96b071349d"], "properties": ["hat, candy, strawberry", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["room, door, shelf", "room, door, shelf"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of an empty room"], "question": "which entity has a room with a door and a white shelf?", "label": 0}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["face, handle, spout", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, white, pink, eyes", "color, black, visor"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small white house with a roof."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["low poly, llama, kangaroo", "roof, color, white"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small white house with a roof."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image is rock formation with a white cliff and a rock", "roof, color, white"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["shape is cube, material is wood, color is white", "glass, metal, balls"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black table, road with white lines, and rectangular ceiling panel.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["bdc9b72d13604f5a8c7bd6ace2ca3177", "5414d75e47104589837f3df8b6de6d22"], "properties": ["black, road, panel", "beige, white, round"], "captions_pred_pc": ["a black and white dotted square on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of an empty road", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, table, chair", "house, roof, wooden"], "captions_pred_pc": ["above a black and white photograph of an open door", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, color, blue", "house, roof, green"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["- color is red, blue, pink", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["water, river, island", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "bf18bfd89efd43389781050230467d58"], "properties": ["s, plane, house", "Lights, number, five"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["throne, chair, building", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["floor plan, heating system, ceiling light fixture", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a wooden roof structure with a pink roof."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["- color is red, blue, pink", "roof, color, pink"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof structure, truss, ceiling", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, bowl, cup", "island, terrain, water"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "f1b557775310478893242180defa4d80"], "properties": ["Black, Shelf, Metal", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "a17477b445b3443189dad22f768b888b"], "properties": ["a, rock, paper", "roof, pillar, stairs"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small triangular-shaped object."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "2d02985030804209a26c2c53b96a06f9"], "properties": ["room, bed, desk", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- color is white- shape is cube- material is plastic", "Cabinet, drawer, wood"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "ca275639b47a4093b4426d304695af7f"], "properties": ["color, shape, pattern", "holder, spring, box"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a plastic container with a spring inside"], "question": "which object is a holder?", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " of a white human skull with broken bone elements."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["cover, black, plastic", "color, white, skull"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", "a white of a woman with her arms outstretched."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, house, wooden", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a house with dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, roof, blue", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["Drawer, Pattern, White", "roof, structure, greenhouse"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a wooden staircase with a red and white railing and a red arrow.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["bb8bb4c9972d4b718b8bbd3ed5fdd14d", "4a889132cc444d10bfcbf6c760984416"], "properties": ["arrow, red, white", "a, color, white"], "captions_pred_pc": ["above a black and white image of a square with a white cross in the center", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": [" a small white house with a staircase and a window.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["house, staircase, window", "floor, staircase, table"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["earbud, earpiece, earpiece", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "of a black and white bracelet on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "bf18bfd89efd43389781050230467d58"], "properties": ["balcony, stairs, house", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["floor, wall, roof", "structure, columns, roof"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a building with multiple levels"], "question": "which entity has a wooden structure", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, purple, structure", "structure, material, pole"], "captions_pred_pc": ["for a black and white image of a bench", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a structure with multiple tables and chairs"], "question": "which building has a metal and wooden pole structure?", "label": 1}, {"captions": [" of a black tire.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b645118910b54e2a9f3a97d5598ce1de", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, tire", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a tire on a white background royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a large metal building with a roof and truss structure."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["railing, glass, table", "roof, color, gray"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a shed with a gray roof"], "question": "which has a roof that is the color of gray", "label": 1}, {"captions": [" a white castle composed of small cubes.", " of a small white building with stairs and a lid."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["composed of, white, cubes", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a white box on a gray background"], "question": "which building has stairs?", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " of a small white building with stairs and a lid."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, hat, flower", "building, stairs, lid"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a black and green sphere with blue lights.", "a white of a man with arms outstretched."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, light", "image, color, white"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "832a022cdcc74763b0571e04af4e592b"], "properties": ["color, screen, drawer", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, pool, balcony", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a small white house with a roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, white"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, material, steel", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a wooden shed with a gray roof."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, truss, suspended ceiling", "roof, color, gray"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "hat, color, tan"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["lighthouse, fountain, crater", "color, sphere, molecule"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", "a black and white of a knife/sword with a handle."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["Lights, number, five", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "of a black and white knife on a white background"], "captions_pred_image": ["a white chandelier with five white shades", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "b896a0898efe4059a776193c02132129"], "properties": ["Drawer, Pattern, White", "- material is stone, metal, concrete"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, yellow, roof, metal", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a tree with green leaves."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "1a902b67735845198efb1b84f434b580"], "properties": ["a lamp, a syringe, a light pole", "leaf, color, green"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, room, ceiling", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small house with stairs and a roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["water, river, island", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " of two rocks with ice elements."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, tree, hill", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, truss system, framing", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 0}, {"captions": [" a modern white house with furniture and a black accent.", " of a small white building with stairs and a lid."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, furniture, black", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a white box on a gray background"], "question": "which building has stairs?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["a, b, c", "lion, statue, fountain"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "b5afccae993346079483507296fbb029"], "properties": ["hat, sword, gun", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a concrete column"], "question": "which object is not a cartoon character?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small building with windows and a roof."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["black, white, laptop", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["shape, color, material", "color, frame, shape"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a building with blue lines and structure.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, structure", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a building under construction", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e34088fc7b5344c4ab29fef067750225"], "properties": ["bed, desk, window", "sphere, pedestal, statue"], "captions_pred_pc": ["of a black and white drawing of a curved line", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a wooden table with metal legs and frame."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["s, stick, leaf", "metal, legs, frame"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a patterned rug"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["tiers, building, stairs", "building, color, black and white"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["table, bench, deer", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a wooden shed with a gray roof."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, white, plastic", "roof, color, gray"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a wooden shed with a gray roof."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["cover, black, plastic", "roof, color, gray"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["pos machine, credit card machine, cash register", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a white building with a red roof."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["turrets, flags, towers", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["3d low poly model of a small house on an island with trees.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["3b4db49a69bf48debf30b2693bd79c82", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["3d, model, house", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of an airplane flying in the sky", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small cabin in the woods", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "73c76c4d4fc44b4e8b1a26aea3e0cc79"], "properties": ["- material is plastic- color is white- shape is cylinder", "cylinder, marble, pillar"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white envelope with many small dots on it"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a marble bench with a hole in it"], "question": "which object is made of marble", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a small wooden house with a green roof."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " of two rocks with ice elements."], "sample_ids": ["40921ffd69db479294554d261daf3035", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, railing, staircase", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small house with stairs and a roof."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["earbud, earpiece, earpiece", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white object on a grey background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black and gold pistol.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, gold", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small purple plastic chair with holes."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["variation, bread, pot", "color, plastic, purple"], "captions_pred_pc": ["above a black and white drawing of an object", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["yellow, shape, wingspan", "a, material, clay"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["graffiti, bench, wall", "floor, staircase, balcony"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a wallet"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house with a wooden-framed roof structure."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, structure, greenhouse", "roof, material, wood"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, pier, railings", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, desk, laptop", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, color, pink", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a pontoon boat with two seats and a canopy.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "b896a0898efe4059a776193c02132129"], "properties": ["seat, canopy, pontoon", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "of a white candle in the shape of a buddha"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a green pickle", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is green, shape is cylinder, material is plastic", "rusty, warning, metal"], "captions_pred_pc": ["of a black object on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small building with windows and a roof.", " a black and white striped box."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["roof, windows, building", "color, black, white"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" a building with a purple, glass roof and a suspended ceiling featuring beams.", " a house with a wooden-framed roof structure."], "sample_ids": ["a54c746bb2644e3ea4e53ee65e32df64", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, glass, purple, ceiling, beams", "roof, material, wood"], "captions_pred_pc": ["the letter 't' is made up of tiny white dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small wooden house with a green roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, material, steel", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "7407a108e0354925b83b750339bc03df"], "properties": ["s, chimpanzee, human, wolf", "platform, color, orange"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a red, blue, and green striped tower building."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["color, roof, tray", "color, red, blue, green"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building has a red", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, color, blue", "house, yard, surrounding buildings"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["small purple teapot with a hook.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, purple, hook", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, yellow, black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, black, white", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, tree, pool", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, house, small", "building, roof, yellow"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a pile of mint green soap cubes."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "edd35e0657b640b1b8fcf86942e1a9e5"], "properties": ["- color is white- shape is cube- material is plastic", "color, mint, soap"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background"], "question": "which object is made of soap", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, awning, cover", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a stone archway in a grassy area.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["location, area, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a stone archway", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "bf18bfd89efd43389781050230467d58"], "properties": ["door, lock, handle", "Lights, number, five"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, table, blocks", "table, staircase, light"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["base material is wood, color is red, message is welcome to northwich", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small white building with stairs and a white table."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "e30374c614f54fdb90f35b96b071349d"], "properties": ["tiers, building, stairs", "building, stairs, table"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small purple plastic chair with four legs."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["resembles, toy, bookshelf", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a white plastic chair"], "question": "which object has four legs", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["a lamp, a syringe, a light pole", "hat, color, tan"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of an object with a hole in it"], "question": "which object is a hat?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "db74ee1621464be1b164be26a1af050e"], "properties": ["room, house, windows", "window, arches, wall"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["low poly of a christmas tree", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["low poly, christmas, tree", "a train, a ship, a boat"], "captions_pred_pc": ["above a black and white image of a small, round object", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a white glass beer mug."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, blue, green, yellow, blue", "color, white, glass"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a large white and metal building with a metal roof structure."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, brown, flat", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a clay pot with holes in it."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "hole, material, clay"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image, color, pink", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "a17477b445b3443189dad22f768b888b"], "properties": ["color, tail, cord", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, color, pink", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a toilet", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "990f06da2ba4488da8371f68da6b4523"], "properties": ["graffiti, chinese writing, door", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a house with a wooden roof"], "question": "which entity has a roof truss structure", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, skull, bread", "hat, dress, racket"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a black and white image of a stone sculpture", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a small wooden house."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["lighthouse, building, tower", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small wooden house."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["furniture, staircase, torn-apart", "house, material, wood"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a white keyboard"], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "632fe78818124555b147c81fd423577b"], "properties": ["- material is plastic- color is white- shape is cube", "color is white, shape is keyboard, material is plastic"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "of a black and white rug on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a white keyboard on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, and size", "a, material, clay"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "bf18bfd89efd43389781050230467d58"], "properties": ["color, table, ceiling", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a gun with a blue handle."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["a knife, blade, handle", "color, handle, blue"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a gun on a gray background"], "question": "which object has a blue handle", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["hat, candy, strawberry", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house with a red roof.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["085db9059b744673b5623b5338e02196", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["roof, red, house", "table, bench, deer"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, staircase, window", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "s of a rock, boat, plane, and leaf on a stick."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "be0884a7ced34b3d92687b6087798a1e"], "properties": ["A, a, a", "s, stick, leaf"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white drawing of an object floating in the sky"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white photograph of a rock on a sandy surface"], "question": "which entity has a leaf on a stick?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["roof, truss, suspended ceiling", "glass, metal, balls"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "c3a82df41875402285608ef13a55df57"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a white of a spaceship and building."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["floor plan, bathroom, pool", "image, building, spaceship"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a bottle containing pink liquid.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["176d3a863ccb48eeb84ab4e85054525d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, bottle, liquid", "a, material, clay"], "captions_pred_pc": ["a black and white image of a bottle with bubbles", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a clear glass bottle on a gray background royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["building, skyscraper, city", "earbuds, light, ring"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" of a house with a pink roof.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, roof, pink", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a spiral staircase"], "question": "which entity has a white arrow?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "f1b557775310478893242180defa4d80"], "properties": ["color, pier, railings", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["image, building, painting", "lamp, harp, bowl"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a curved line"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a harp in a white room"], "question": "which image shows a lamp", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["background, color, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "1da865c75a5e4a57a17652975dae5474"], "properties": ["floor plan, heating system, ceiling light fixture", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a house", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "a2354f13774340d392fbf33564934aab"], "properties": ["color, material, structure", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, size", "Shelf, color, white"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d rendering of a white shelf"], "question": "which entity is white", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["bed, desk, window", "grass, plants, rocks"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["painting, door, wall", "grass, plants, rocks"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["hat, sword, gun", "image, color, pink"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "a black and white of a knife/sword with a handle."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["a, model, white house", "image, color, black and white"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": [" of a small red renault clio car.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color is red, make is renault, model is clio", "a train, a ship, a boat"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a submarine"], "question": "which entity has more watercraft", "label": 1}, {"captions": [" of a white round table with a red accent.", " a white square with the words \"what tv\" on it."], "sample_ids": ["fea62a865b4e40899d95785533818329", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, white, red", "color, white, words"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white image of a long line of numbers"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small wooden house with a green roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, tree, pool", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, stairs, house", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "c1536f68727947ff9e7810799fac583a"], "properties": ["color, shape, texture", "level, stairs, columns"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of an apartment building"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "c3a82df41875402285608ef13a55df57"], "properties": ["house, lake, pool", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a large building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["color, white, material, ceramic", "a, character, mario"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "for a black and white sculpture of a person"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["metal, rusted, paper", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a green mountain with trees and grass."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, roof, green, frame, red", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["door, roof, pool", "Wheels, laptop, robot"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "f1b557775310478893242180defa4d80"], "properties": ["a, b, c", "shack, roof, door"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" a white building.", " a modern white house with furniture and a black accent."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "e5025a1ca0034b1aa97a0d42edeeae0f"], "properties": ["color, white, building", "color, white, furniture, black"], "captions_pred_pc": ["a black and white drawing of a bottle", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d model of a white building with black and white tiles"], "question": "which building is white", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["building, skyscraper, city", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["mossy, rock, rocky", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a green skull and sphere.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, skull, sphere", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small white building with stairs and a white table."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a train, a ship, a boat", "building, stairs, table"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["hat, food, bowl", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof, color, purple", "building, material, stone"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, green, squirt gun", "a train, a ship, a boat"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["hat, sword, gun", "building, plane, room"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a wooden-cased radio.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["case, material, wood", "glass, metal, balls"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white image of a wine glass"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["structure, building, archway", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["turrets, flags, towers", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, roof, tray", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, color, white", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a doll made of beads", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a black and white image of a person wearing a hat"], "question": "which hat is red", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a white of a small archway gate."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["light source, fixture, color", "image, color, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white illustration of an arch"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a small house on a hill in a field."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["island, terrain, water", "house, hill, field"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a black and white image of a small house"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["- material is white- color is white- texture is textured", "building, plane, room"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, purple, suspended", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "333b77483f1b40468dec28906887151a"], "properties": ["color, material, shape", "3D, material, white gold"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "of a black ring on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a white gold ring with an oval shaped diamond in the center"], "question": "which ring is made of white gold", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["Lights, number, five", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d image of an animal laying on the ground"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a crab holding a rubik's cube."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, ceiling, hole", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a large metal building with a roof and truss structure."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["image is rock formation with a white cliff and a rock", "roof, truss, structure"], "captions_pred_pc": ["above a black and white map of spain on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a long metal fence"], "question": "which entity is a building?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a building with blue metal framing and structure."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, red, blue, structure", "color, blue, structure"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a building under construction"], "question": "which structure is blue", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small white building with stairs and a white table."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "e30374c614f54fdb90f35b96b071349d"], "properties": ["- color is red, blue, pink", "building, stairs, table"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a wooden roof structure with a pink roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, tree, rock", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a small black box on a purple square.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["75f209e543c046669099190953616acc", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", "a low-poly of a white, shattered sphere."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, text", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a screw", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", "a low-poly of a white, shattered sphere."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, frame, shape", "sphere, color, texture"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a white glass beer mug."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "1d686cbd3e9a4c629a43088658989286"], "properties": ["backrest, curved, yes", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a small wooden house with a green roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["picture, plaque, person", "roof, color, green"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a clay pot with holes in it."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, poles", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "ee440fcbc493488e879539d37a8d820e"], "properties": ["a, b, c", "island, fish, ice"], "captions_pred_pc": ["for a black square tile on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " of a barrel and a cube together."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["color, white, pen, logo", "a, barrel, cube"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": ["four white computer desks in a 3d arrangement.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Arrangement, Desks, White", "roof, color, yellow"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a series of white 3d objects on a gray background", "a 3d model of a house with a roof"], "question": "which object is a building?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "4a889132cc444d10bfcbf6c760984416"], "properties": ["shape is box, color is white, door is present", "a, color, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a desk and chair"], "question": "which entity is a box shape?", "label": 0}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["- material is wood, metal, metal", "image, building, stairs"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small white house with a staircase and a window."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "9eb88d17310d42dda9e17883e9922525"], "properties": ["top, color, wood", "house, staircase, window"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d rendering of a small room with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a black and white striped fly in the air."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["resembles, toy, bookshelf", "black, white, fly"], "captions_pred_pc": ["a black and white image of a book cover", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white photograph of a fly"], "question": "which entity is a fly?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["background, color, white", "island, mountain, grass"], "captions_pred_pc": ["a black line on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "990f06da2ba4488da8371f68da6b4523"], "properties": ["black, white, laptop", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, model, white house", "island, mountain, grass"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a white of a man in a suit and mask, possibly a diving suit.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["205251e4277e41d1aae6b2358267ad56", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["image, color, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a beetle on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d printed figurine of an alien creature", "a 3d model of a black and white object on a gray background"], "question": "which object is black and gold?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, red, green, yellow", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house with a blue roof.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, color, blue", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, table, ceiling", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a house with a roof structure and toothbrushes."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["texture, spikes, eyes", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a white box with a lot of blades"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small orange piano with legs.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color is orange, size is small, legs", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": ["a white ornate airplane design.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "e694d53545d449319a64cceb0280c3c6"], "properties": ["red, eyes, rocket", "3d, slide, swing"], "captions_pred_pc": ["of a black and white image of a clock", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a playground slide"], "question": "which entity has a slide?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white of a man with arms outstretched."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["apse, roof, floor plan", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a man with his arms outstretched"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["building, plane, city", "building, plane, city"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over a city?", "label": 0}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small wooden house with a green roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["castle, island, house", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, grass, moss", "image, building, stairs"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["tiers, building, stairs", "table, staircase, light"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", " a small white building with stairs and a white table."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, black, visor", "building, stairs, table"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of a building with a staircase"], "question": "which entity is white", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small wooden house."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof truss, beams, structure", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a white building with a red roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, orange, white", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of an office building"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a machine gun.", " a house with a green, wooden-structured roof."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["gun, barrel, caliber", "roof, color, green"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a wine corkscrew"], "sample_ids": ["a177693cc8c7428292680816001b48c6", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["black, white, laptop", "a, type, corkscrew"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a corkscrew"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, structure, house", "roof, truss, lamp"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a metal roof"], "question": "which house has a roof with trusses?", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, horns, eyes", "a, color, white"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a desk and chair"], "question": "which entity is white", "label": 0}, {"captions": [" a wooden roof structure with a pink roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, pink", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["lighthouse, fountain, crater", "roof, air conditioner, house"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a spider-like creature with long arms and legs."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["sandbox, sand bucket, wooden blocks", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, yellow, chimney", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["white, rock, shell", "wood, board, shelf"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a green mountain with trees and grass."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["shape, bathroom, refrigerator", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " of a white chest of drawers with legs."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["striped, white, black", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d rendering of a white dresser"], "question": "which object is white", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["e098706085a44898abbd549693d12a64", "e098706085a44898abbd549693d12a64"], "properties": ["color is black, white, orange", "color is black, white, orange"], "captions_pred_pc": ["of a white and black clutch with a flower design", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which walkie-talkie is black", "label": 0}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a spiral staircase with railings."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["house, color, white", "railings, staircase, spiral"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a staircase in a room"], "question": "which staircase is spiral", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["roof, structure, wall", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, red", "- material is stone, metal, concrete"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["a, island, resembles, hawaii", "a, color, red"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a castle with two towers"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, stairs, house", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["Steel, Color, Yellow", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, size", "door, lock, handle"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black base", "a black and white image of a door with a crack in it"], "question": "which object has a lock", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, containers", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a white of a spaceship and building."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["building, skyscraper, city", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, yellow, roof, metal", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "990f06da2ba4488da8371f68da6b4523"], "properties": ["red, mouse, handwriting", "roof truss, beams, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a house with a wooden roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a small triangular-shaped object."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "2d02985030804209a26c2c53b96a06f9"], "properties": ["shape is cylinder, color is white, material is plastic", "shape, triangle, small"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a paper airplane", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, skyline, buildings", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, lake, boat", "cloak, sword, spear"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a large white and metal building with a metal roof structure."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["bed, desk, window", "roof, metal, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["Black, Shelf, Metal", "Black, Shelf, Metal"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d model of a black shelf with square tiles"], "question": "which table has a metal shelf and folding door", "label": 0}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["earbuds, light, ring", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["furniture, room, kitchen", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a twisted white rope."], "sample_ids": ["97f487941d26472294e005fa97c403be", "7dce7f24ef2d4f6e88e3bf5cee50e603"], "properties": ["color, white, green", "color, white, twist"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white drawing of a spiral on a white background"], "captions_pred_image": ["a 3d model of an office building", "a white rope tied into a knot on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a spider-like creature with long arms and legs."], "sample_ids": ["21639082215b4b179d574d2408124838", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, room, furniture", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["house, lake, pool", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, gold", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "c4e45a41478e42418399074b88d8920f"], "properties": ["- material is metal - weight is 0 - height is 0", "axe, handle, wood"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small white house with a roof."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["metal, rusted, paper", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, eye, handle", "Eye color, Black, Purple"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black?", "label": 0}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "e44009d33258425e8efedfbc6823bf70"], "properties": ["color, white, black, white", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["Headstock, Guitar, Head", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of an axe head", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a large steel building with a pool."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, roof, green", "building material, pool, steel"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white house with windows and a black lid."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "4b40af369c1149949f5ccb68becd8430"], "properties": ["house, color, white", "white, windows, lid"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a white house with three windows"], "question": "which house has a black lid", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "40921ffd69db479294554d261daf3035"], "properties": ["house, staircase, window", "floor, railing, staircase"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["b5afccae993346079483507296fbb029", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is square, material is metal, color is rusty", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a white rocking chair with a curved backrest."], "sample_ids": ["c27b018330da406680e58b94266c310b", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["frame, material, wood", "backrest, curved, yes"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof, structure, wall", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["building, tower, color", "building, fence, snowy"], "captions_pred_pc": ["for a black square on a white background", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which building has a fence?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "333b77483f1b40468dec28906887151a"], "properties": ["glass, metal, balls", "3D, material, white gold"], "captions_pred_pc": ["a black and white image of a wine glass", "of a black ring on a white background"], "captions_pred_image": ["a clear acrylic foosball table", "a white gold ring with an oval shaped diamond in the center"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " of a wooden windmill with a red roof."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["door, white, structure", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a windmill on a gray background"], "question": "which structure has a red roof", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a spider-like creature with long arms and legs."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, shape, material", "arachnid, leg, arm"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a black and white image of an alien creature"], "question": "which entity is an arachnid", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["mountain, grass, tree", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["white dragon with wings, .", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["wings, white, dragon", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a white 3d model of a city skyline"], "question": "which entity is not a white dragon with wings?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["hat, sword, gun", "wood, board, shelf"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a large white and metal building with a metal roof structure."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["turrets, flags, towers", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["painting, door, wall", "Wheels, laptop, robot"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["house, lake, pool", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " of two rocks with ice elements."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["table, bench, deer", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["- material is wood - color is white - height is 1.8 m", "structure, roof, pitch"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["background, color, white", "water, boat, rock"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house on a hill in a field."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, rock, pond", "house, hill, field"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, light", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["building, material, steel", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "e602ac60041f4b4f84c044161e478781"], "properties": ["a, island, water", "floor, wall, roof"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a potted christmas pine tree."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["shattered, resembles, broken phone", "a, color, green"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, purple, suspended", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, truss system, framing", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a house with a wooden-framed roof structure."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "roof, material, wood"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a small white house with windows and a black lid."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "4b40af369c1149949f5ccb68becd8430"], "properties": ["size, material, wheels", "white, windows, lid"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a white house with three windows"], "question": "which object is smaller", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, texture", "room, door, shelf"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "c4c09479570943e2845fbd4c6a450568"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "castle, island, house"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small house on an island"], "question": "which image shows a castle on an island with a small floating house", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof trusses, beams, suspended ceiling", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a large building with a roof and windows."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a wooden table with a plant on it."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "table, plant, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a side table with a potted plant sitting on top of it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["resembles, toy, bookshelf", "building, door, clock"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a church with a steeple"], "question": "which entity has a door?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["fireplace, bench, log", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small white house with a roof."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["mossy, rock, rocky", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a train, a ship, a boat", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "c8936ace72954650b4e2d84246964849"], "properties": ["bed, desk, window", "roof, color, pink"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["Cabinet, Drawers, Filing", "house, roof, green"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["arm, light, sign", "stair, table, chair"], "captions_pred_pc": ["above a black and white image of a skateboard", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a four-legged metal workbench with shelves."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- color is white- shape is cube- material is plastic", "Four legs, Metal, Shelf"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["shape is hot dog, design is dragon, color is black", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["turrets, flags, towers", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a brick wall with grass."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "53f2d948091f417cb580e22469c94db2"], "properties": ["A, a, a", "brick, grass, wall"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white photo of a brick wall and a puddle"], "question": "which object is made of brick", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["a knife, blade, handle", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" a large steel and metal structure with a pool and scaffolding system.", " of two rocks with ice elements."], "sample_ids": ["5850d5c7223447db816081d50292fec0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["structure, material, pool", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a bridge with chains", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a large concrete structure", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "a17477b445b3443189dad22f768b888b"], "properties": ["size, color, shape", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white of a spaceship and building."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, white, containers", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a building with yellow lines."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, table, chairs", "color, yellow, lines"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small, snow-covered house."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["building, plane, room", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["cloak, sword, spear", "cloak, sword, spear"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a female warrior?", "label": 0}, {"captions": ["a white ceramic vase with brown and beige swirls, stripes, and splatter on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3965acb1aabd4440b9738ebd9c7965fa", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic vase with a cracked glaze on the surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, roof, wall", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a building", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a large white box"], "question": "which building has a roof made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "white of a rhino head with horns."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "8481aade84de47cab1a9accf8067e678"], "properties": ["floor plan, heating system, ceiling light fixture", "image, rhino, head"], "captions_pred_pc": ["a black and white drawing of a house", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a building with a glass facade", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["building, color, black and white", "building, material, rock"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d image of a damaged piece of furniture"], "question": "which building is made of rock", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["- color is red, blue, pink", "house, fence, playground"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a spider-like creature with long arms and legs."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, shirt, pants", "arachnid, leg, arm"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a large house with a roof on a platform."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "cb3e09a301b746918a682a595037c7f7"], "properties": ["frame, truss, roof", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "b896a0898efe4059a776193c02132129"], "properties": ["shape is box, color is white, door is present", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "97f487941d26472294e005fa97c403be"], "properties": ["house, rock, pond", "color, white, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a collection of black and red pens and pipes.", " of two rocks with ice elements."], "sample_ids": ["8a272b7ee0c14a2c98fae74024bf3e93", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, pen, red", "image is a rock with ice elements"], "captions_pred_pc": ["of a black leather belt with a silver buckle", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d illustration of a group of pens on a white background royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which object is more likely to be found in a cold climate", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a large steel building with a pool."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["bedroom, bathroom, bed", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["house, tree, pool", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house with a flat roof structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "abc52d210d71415296730bb00352ce6f"], "properties": ["building, roof, white, cubes", "roof, flat, structure"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a house with a roof"], "question": "which building has a flat roof structure", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["roof truss, insulation, suspended ceiling", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is not a building?", "label": 0}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a small white building with stairs and a lid."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["size, color, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "97e000ff41094665afd94ea565da8b13"], "properties": ["floor, table, light", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a house with a roof and beams."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor, staircase, railings", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a light switch", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a spiral staircase with a railing in a small building."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["A, a, a", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["metal, roof, chest", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["size, color, shape", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, room, table", "building, room, sky"], "captions_pred_pc": ["a black square on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room with a building in it?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["metal, legs, frame", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, red, blue, green", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a white and blue building with a black roof."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, trusses, beams", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a clay pot with holes in it."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, truss, structure", "hole, material, clay"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long metal fence", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small wooden house with a green roof."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, and material", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["location, field, gravestone", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which object has turrets", "label": 1}, {"captions": [" a white rocket ship.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, black, visor", "house, fence, playground"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a black shark", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["black, mouth, teeth", "house, roof, green"], "captions_pred_pc": ["a black and white image of an object on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a building with a black roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "c3a82df41875402285608ef13a55df57"], "properties": ["two-story, roof, building", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, orange, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["window, clock, wall", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, material, shape", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["a, desk, laptop", "floor, staircase, table"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["headboard, wall, strip", "a room, a cake, a table"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, plate, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, background", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a long white sheet of paper on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a white dragon with red horns and eyes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "b896a0898efe4059a776193c02132129"], "properties": ["color, horns, eyes", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " a small white airplane flying in the air."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "747fb98f64794cdd96486debaf20a02c"], "properties": ["s, boat, bird, airplane, kite", "airplane, color, white"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "of a black and white image of a clock"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d model of a small airplane"], "question": "which airplane is white", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a house with a roof and beams."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, gun", "roof, beams, house"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "b896a0898efe4059a776193c02132129"], "properties": ["color, dress, purse", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a spider on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "88eba412c78a4ced89eb857327653f6c"], "properties": ["roof truss, insulation, suspended ceiling", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["Arms, Legs, Color", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "3d model of a plague doctor's mask"], "question": "which object has a crow's head design?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "c3a82df41875402285608ef13a55df57"], "properties": ["a, booth, bed", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["house, roof, green", "table, staircase, light"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "a17477b445b3443189dad22f768b888b"], "properties": ["- color is white- shape is flower- pattern is lace", "roof, pillar, stairs"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white image of a square with dots"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small building with a staircase in a room."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["roof, truss, suspended ceiling", "room, staircase, building"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a staircase on a white surface"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, shape, size", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a house with a flat roof structure."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "abc52d210d71415296730bb00352ce6f"], "properties": ["water, boat, rock", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a yellow and blue toy submarine."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["water, river, island", "color, yellow, blue"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["graffiti, bench, wall", "house, hill, forest"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a white glass beer mug."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["houses, trees, road", "mossy, rock, grass"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a piece of wood on a white background"], "question": "which entity has more grass", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["chair, table, refrigerator", "metal, rusted, paper"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a small white house with a roof."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- material is wood, rusty, horned", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, red, blue, green", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a palm tree with leaves."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["building, tree, plane", "leaf, tree, leaf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "for a black and white image of an animal with wings"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a palm tree"], "question": "which entity has more leaves", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small house with stairs and a roof."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, trusses, ladder", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": [" a white shelf with holes and brackets.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, holes", "a, material, clay"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white bench with a shelf on top", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "b896a0898efe4059a776193c02132129"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "- material is stone, metal, concrete"], "captions_pred_pc": ["a close up of a black object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building with blue lines and structure.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, structure", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a wooden-framed house with roof trusses."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e60dd370c5ec468da4689a801f951157"], "properties": ["s, stick, leaf", "frame, roof, trusses"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house under construction"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a roof and beams."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, truss, lamp", "roof, beams, house"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["color, shape, and size", "lighthouse, fountain, crater"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a black and white image of a glass teapot", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass and metal?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a palm tree with leaves."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["house, tree, pool", "leaf, tree, leaf"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "for a black and white image of an animal with wings"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a palm tree"], "question": "which entity has leaves", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", " a large metal building with a roof and truss structure."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, size", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["roof truss, insulation, suspended ceiling", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["runner, bed, bench", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a long, curved structure", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a wooden-cased radio."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["- color is white - shape is box - material is plastic", "case, material, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and white robot.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, red, white", "striped, white, black"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, skyline, buildings", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a room"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a table and chairs on a white background"], "question": "which building structure has a yellow roof", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a white of a man with arms outstretched."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["door, roof, pool", "image, color, white"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, staircase, table", "house, rock, bird"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, grass, moss", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with a blue roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["balcony, stairs, house", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["roof, green, lawn", "building, roof, balcony"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a clock tower"], "question": "which building has a roof", "label": 1}, {"captions": [" of a piece of paper with writing on it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["57950d2e2e254d9c8d9631cedd584adf", "5414d75e47104589837f3df8b6de6d22"], "properties": ["paper, writing, piece", "beige, white, round"], "captions_pred_pc": ["a close-up view of the back of a tablet on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a piece of torn paper on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a white crocodile", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, shape, size", "image, color, pink"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a piece of white paper", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": ["a black motorcycle helmet with a face mask and visor.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["ad6df43a2ce24edfb15f5bb64755ed0d", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, black, visor", "color, black, visor"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a black motorcycle helmet with a visor on top", "a black motorcycle helmet with a visor on top"], "question": "which entity is a black motorcycle helmet with a face mask and visor?", "label": 0}, {"captions": [" of a human skull", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, b, c", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "c3a82df41875402285608ef13a55df57"], "properties": ["color, pink, green, cord, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ee440fcbc493488e879539d37a8d820e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["island, fish, ice", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a mountain on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d map of the country of israel", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" a small house with a blue roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, color, blue", "roof, truss system, framing"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["color, shape, and size", "building, ceiling, kitchen"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white building on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["s, boat, bird, airplane, kite", "room, furniture, window"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a black and white striped box."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["door, stairs, color", "color, black, white"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a small white building with stairs and a lid."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, gun", "building, stairs, lid"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " of a small white building with stairs and a lid."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["liquid, ice, lid", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["Drawer, Pattern, White", "house, plane, town"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["b5afccae993346079483507296fbb029", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["shape is square, material is metal, color is rusty", "mossy, rock, grass"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a house with a roof and beams."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor plan, ceiling light, color", "roof, beams, house"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a spider-like creature with long arms and legs.", " a wooden billiard table with legs."], "sample_ids": ["199bcb789e0c439bb2eeb32f2425cc36", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["arachnid, leg, arm", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a spider on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of an alien creature", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a, booth, bed", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d rendering of a metal box with a handle"], "question": "which entity has a gun inside", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "40022305eaf44442915c9db03e25f781"], "properties": ["- color is white- shape is flower- pattern is lace", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "above a black and white image of an abstract design"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a white of a woman with her arms outstretched."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["texture, spikes, eyes", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a large metal building with a roof and truss structure."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "b85a99699ccd4bcba213322113bb253d"], "properties": ["text, material, shape", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a long metal fence"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["roof, ceiling, hole", "building, room, sky"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " of a person breaking through a brick wall."], "sample_ids": ["2563abff548c4479970c81491513b572", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, model, year", "image, brick, wall"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["roof, color, blue", "building, color, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a large house with a roof on a platform."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, room, ceiling", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "white balloon floating in the air."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "033a61d66f7646ceaac357b502a5f5dc"], "properties": ["- material is stone - color is blue - shape is arrowhead", "color is white, shape is balloon, material is air"], "captions_pred_pc": ["above a black and white drawing of an arrow", "in 15 words or less a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a white balloon on a gray background"], "question": "which object is not made of air?", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", "a white of a man with arms outstretched."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, letter", "image, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "6b745457e06840119058883b35f78f58"], "properties": ["ceiling, light, desks", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small wooden house with a green roof."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["island, mountain, grass", "roof, color, green"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a small wooden house with a green roof."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, trusses, ladder", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["shape is sphere, color is white, material is plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a house with wooden framing and trusses."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, shirt, pants", "frame, trusses, wood"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a window"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, stairs, shelves", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, material, texture", "hippo, hind, legs"], "captions_pred_pc": ["above a black and white drawing of a skull", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, bench, rack", "house, pool, balcony"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of two rocks with ice elements."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " of a small white building with stairs and a lid."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["wall, stairs, castle", "building, stairs, lid"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a large house with a roof on a platform."], "sample_ids": ["97f487941d26472294e005fa97c403be", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, white, green", "roof, platform, house"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, white, black, white", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a group of ponies in a row."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["house, tree, pool", "group, row, pony"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of my little pony"], "question": "which entity has more ponies", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, red, green, yellow", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a toothbrush", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, stairs, house", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a clay pot with holes in it."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, table, ceiling", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof truss, insulation, suspended ceiling", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams?", "label": 1}, {"captions": [" a house with a roof and beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c139e8fcbdbc4f63a9c8a06152c4dc2e", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, beams, house", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a 3d object in the shape of a square", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["- color is white- shape is cubes- number is 1", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of a rock formation on a gray background"], "question": "which image has a white cliff?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, shape, and size", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "12093c89a60941e7884b252bdc05104c"], "properties": ["roof truss, insulation, suspended ceiling", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a white glass beer mug."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "1d686cbd3e9a4c629a43088658989286"], "properties": ["size, material, color", "color, white, glass"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a white shelf with holes and brackets."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, orange, leather", "color, white, holes"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a white bench with a shelf on top"], "question": "which object is made of holes", "label": 1}, {"captions": [" a wooden cube.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape is cube, material is wood, color is brown", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["a, booth, bed", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a wooden windmill with a red roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["resembles, toy, bookshelf", "roof, color, red"], "captions_pred_pc": ["a black and white image of a book cover", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a yellow bird with black eyes.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["color, black, shade, black", "a, character, mario"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["graffiti, bench, wall", "a, character, mario"], "captions_pred_pc": ["for a black and white image of a boat", "for a black and white sculpture of a person"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a cartoon character jumping in the air"], "question": "which image shows a character running?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " of two rocks with ice elements."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, balcony, street", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", "star wars stormtrooper "], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, size", "a, color, white"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a pixelated-textured purple sphere ."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "fb68393941804e769d5c9b372864a642"], "properties": ["color, pattern, material", "texture, color, shape"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white square made of dots on a white background"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a large house with a roof on a platform."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, pier, railings", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, orange, white", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["shape, color, material", "mossy, rock, rocky"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which rock is mossy", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape is hot dog, design is dragon, color is black", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["- material is wood, metal, metal", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, desk, laptop", "building, plane, room"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, hole, shelf", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["background, color, white", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a clay pot with holes in it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, screen, drawer", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white statue of a woman holding a baby.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7cf1c30a98fc4ae796e040c2ce18c03a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, statue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a heart", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed figurine of a woman holding a cat", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of an egyptian temple featuring a pyramid, sphinx, and a building with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["40022305eaf44442915c9db03e25f781", "c3a82df41875402285608ef13a55df57"], "properties": ["image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of an abstract design", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an ancient temple", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["169855ca6adc4f36814f17d275cb1e95", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, watch, clock", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a silhouette of a man smoking a cigarette", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a futuristic chair", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small white building with stairs and a white table."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, material", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, truss system, framing"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of the roof of a house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, roof, toothbrushes", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, color, white", "house, lake, pool"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a large building"], "question": "which house is on an island?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "cafc467aff2643e8b70149c4944263ee"], "properties": ["- color is white - shape is box - material is plastic", "wing, knife, boat"], "captions_pred_pc": ["a black and white square with dots all over it", "a black umbrella on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object is white", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, framing, material", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, truss system, framing", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a small wooden house with a roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, table, chair", "roof, house, wooden"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a black and white striped fly in the air."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["- color is white- shape is cubes- number is 1", "black, white, fly"], "captions_pred_pc": ["a close up of a black and white striped scarf", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white photograph of a fly"], "question": "which entity is black and white?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a spider-like creature with long arms and legs."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["screen, keyboard, box", "arachnid, leg, arm"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, room, sky", "building, room, sky"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 0}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "5414d75e47104589837f3df8b6de6d22"], "properties": ["floor, staircase, railings", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a light switch", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small house with a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, bowl, cup", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "225e4094141d416faba7c5598dc55ff8"], "properties": ["background, color, white", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green skull and sphere.", " a large metal building with a roof and truss structure."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, skull, sphere", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["3d white model featuring a boat, block, turbo text, puma logo, box, and shelf.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1fe7018cb01a4be58c0f211b8e2db93f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["3d, model, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white usb drive with the word 'turbo' on it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d printed object with the word turbo on it", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, material, texture", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, building, coin, ball", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a white of a woman with her arms outstretched."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["runner, bed, bench", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["shape is turtle, color is green, white", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["black and white image of a motorcycle", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, structure, wall", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, dragon, cloth", "color, black, blue"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black and blue dragon?", "label": 1}, {"captions": [" a fish with green spots, green eyes, green and blue fins, and green and blue stripes.", " a fish with green spots, green eyes, green and blue fins, and green and blue stripes."], "sample_ids": ["adee50e7a19c4c219e5a2edac18fb28e", "adee50e7a19c4c219e5a2edac18fb28e"], "properties": ["Eye color is green, Spot color is green, Fin color is green and blue", "Eye color is green, Spot color is green, Fin color is green and blue"], "captions_pred_pc": ["of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3", "of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3"], "captions_pred_image": ["a 3d model of a fish on a white background", "a 3d model of a fish on a white background"], "question": "which fish has green eyes?", "label": 0}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["d6087023095446fbadef1721478373b2", "d49d8ed244094349a99e4faca05e0690"], "properties": ["door, roof, window", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["s, cat, fish, person, pig, bird", "hat, color, tan"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, material", "room, furniture, window"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["frame, chalkboard, color", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white image of a television on a wall", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, tree, rock", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["graffiti, bench, wall", "structure, roof, pitch"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a spider-like creature with long arms and legs."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["rusty, sink, graffiti", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a black and white image of an alien creature"], "question": "which entity is an arachnid", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " of two rocks with ice elements."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, poles", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", "star wars stormtrooper "], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, black, blue", "a, color, white"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a computer mouse on a piece of paper with a hole in it."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "453edfa600a0493f9379738ea8393273"], "properties": ["color, shape, material", "paper, hole, mouse"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white illustration of an object in the shape of a cloud"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a mouse on top of a piece of paper"], "question": "which object is made of paper", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a yellow and blue toy submarine."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["building, tree, plane", "color, yellow, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a small white building with stairs and a lid."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["resembles, toy, bookshelf", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small house with a road in front of it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "bf18bfd89efd43389781050230467d58"], "properties": ["house, front, road", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on a road", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white glass beer mug."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, material, structure", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white of a man with arms outstretched."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["bed, desk, window", "image, color, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a white of a woman with her arms outstretched."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, blue, components", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, white, red, pink", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, pattern", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a large metal building with a roof and truss structure."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, wall, color", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["97f487941d26472294e005fa97c403be", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, green", "building, room, sky"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of an office building", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a yellow and blue toy submarine."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["house, tree, pool", "color, yellow, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "832a022cdcc74763b0571e04af4e592b"], "properties": ["roof truss, insulation, suspended ceiling", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a lego model of a futuristic airplane"], "question": "which entity is not a spaceship?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a 3d red and white santa claus teddy bear with a flying plane and floating hat."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "0797e97b272c43d59bfeb5821421c5eb"], "properties": ["color, shape, size", "hat, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a doll made of beads"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white photo of a snowflake falling from the sky"], "question": "which entity has a white hat", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["boat, table, chairs, umbrella, solar panel", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "bf18bfd89efd43389781050230467d58"], "properties": ["color, red, blue, green", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a white of a man with arms outstretched."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["fireplace, bench, log", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a snowflake", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a multicolored metal building structure with a roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, air conditioner, house", "color, roof, structure"], "captions_pred_pc": ["a black and white illustration of a window", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["earbuds, light, ring", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small building with windows and a roof."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["hat, food, bowl", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, material, color", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "92498f398e244020a867686729633610"], "properties": ["house, plane, town", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a small wooden house with a roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, structure, house", "roof, house, wooden"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a small white building with stairs and a white table."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "e30374c614f54fdb90f35b96b071349d"], "properties": ["meat, bread, sausage", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a brush on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a building with a staircase"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c553ba67fa914165a07a1f1d20581f19"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "cat, bowl, donut"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a close up view of the back of the chair"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting"], "question": "which entity has a cat?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, table, ceiling", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a white rocking chair with a curved backrest."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, leg, tail", "backrest, curved, yes"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a curved backrest", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "b896a0898efe4059a776193c02132129"], "properties": ["floor, staircase, balcony", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a wallet", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["floor, table, light", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white photograph of a window", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["house, fence, playground", "railing, chair, light"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair with a glass top?", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "e694d53545d449319a64cceb0280c3c6"], "properties": ["hat, bow, arrow", "3d, slide, swing"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "b5afccae993346079483507296fbb029"], "properties": ["roof, purple, suspended", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof.", " a white and blue building with a black roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, blue", "color, white, blue, roof, black"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["A, a, a", "black, white, coffee table"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white 3d model of a building"], "question": "which object is black and white?", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["s, boat, bird, airplane, kite", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 0}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small white barn with a metal roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, white, containers", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a barn"], "question": "which building has a white roof", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a white castle composed of small cubes."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["room, house, windows", "composed of, white, cubes"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small white house with a roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, structure, greenhouse", "roof, color, white"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, room, ceiling", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof truss, beams, structure", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["house, tree, rock", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "97e000ff41094665afd94ea565da8b13"], "properties": ["background, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["55b26130f1514032be078e13fd982905", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, material", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small black and white cube.", " a white rocking chair with a curved backrest."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, size", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object is a curved backrest", "label": 1}, {"captions": [" of a wooden table and chair.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["884d232f9cd54b6c8c41b6bf357c704f", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["table, chair, wood", "railing, chair, light"], "captions_pred_pc": ["a black and white pattern on a white background", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a small wooden table", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair with a glass top?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "09f2cf267e954c958828325067bcc36a"], "properties": ["background, color, white", "island, terrain, rocks"], "captions_pred_pc": ["a black line on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a house with a wooden-framed roof structure."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, logo", "roof, material, wood"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a building with a roof"], "question": "which is made of wood", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["frame, truss, roof", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["97f487941d26472294e005fa97c403be", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, white, green", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a roof structure"], "question": "which entity has a roof with trusses and beams", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small white box with a green light."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, yellow, black", "color, white, light"], "captions_pred_pc": ["a black and white illustration of an airplane", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["bedroom, bathroom, bed", "black, roof, green"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a small wooden house with a roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, tree, pool", "roof, house, wooden"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["A, a, a", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a tv stand/shelf", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["size, material, color", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["house, fence, dog", "a, island, resembles, hawaii"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "46903bf029934b1989bc062dcb0a5531"], "properties": ["shape is turtle, color is green, white", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a close up of a black object on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a house with a wooden-framed roof structure."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["shape is cube, color is black, white", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["a, dress, flower", "a, building, coin, ball"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "7407a108e0354925b83b750339bc03df"], "properties": ["floor, wall, roof", "platform, color, orange"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["size, color, shape", "gold, ring, animal"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a spider-like creature with long arms and legs."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, chair, table, light", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["roof, room, ceiling", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a spiral staircase with railings."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["orange, forklift, parking lot", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, skyscraper, city", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["hat, cup, bowl", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a house with a blue roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["resembles, toy, bookshelf", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small wooden house."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, air conditioner, house", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a window", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small, snow-covered house."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["water, river, island", "house, snow, cover"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, structure, truss", "house, fence, dog"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small building with windows and a roof."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, windows, building"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a wooden-cased radio."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["light source, fixture, color", "case, material, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "4389909667db472ea9a57a70eb940fa4"], "properties": ["- material is white- color is white- texture is textured", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a cube", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["floor plan, bathroom, pool", "roof, brown, flat"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["image, building, stairs", "building, color, black and white"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["house, roof, toothbrushes", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["boxing gloves, heart, hand", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "411c164757fc4de68dfecb35fa858223"], "properties": ["roof, color, red", "resembles, sea urchin, shell"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a four-legged metal workbench with shelves."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["frame, chalkboard, color", "Four legs, Metal, Shelf"], "captions_pred_pc": ["of a black and white image of a television on a wall", "for a black and white illustration of a cross"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["water, boat, rock", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a hole in the ceiling?", "label": 1}, {"captions": [" of a transparent blue cube.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, shape, transparency", "image size, image, royalty"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["an empty white box on a gray background", "a 3d model of a wildebeest"], "question": "which entity is a royalty free image?", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, card, case", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["water, river, island", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which island has grass?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["collection, plane, car", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["white korean word on a gray background.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, background, font", "Lights, number, five"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", "3d white model featuring a boat, block, turbo text, puma logo, box, and shelf."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "1fe7018cb01a4be58c0f211b8e2db93f"], "properties": ["acropolis, city, building", "3d, model, white"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "of a black and white usb drive with the word 'turbo' on it"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d printed object with the word turbo on it"], "question": "which model is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["water, river, island", "house, color, white"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small white building"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "c3a82df41875402285608ef13a55df57"], "properties": ["green, hat, cream", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small building with windows and a roof."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, balcony, street", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor, wall, roof", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " white crocs clogs with blue straps and holes."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "4622e88fd9264b37997671efeb73af85"], "properties": ["black, white, laptop", "color, white, blue"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity is a pair of shoes?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["shape is sphere, color is white, material is plastic", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["earbuds, light, ring", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a colorful 3d paper toy hammer with a green handle and numbers on it.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ee06311cc3d542b0aed18ccdb4e824db", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a hammer on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, house, small", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which house has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a white castle composed of small cubes."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, pattern", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["wood, board, shelf", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, text", "building, window, skeleton"], "captions_pred_pc": ["the logo for carl meyer", "a black and white image of a piece of paper"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a wooden nightstand with a hexagonal pattern, white top, and drawer."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e6f2dbec6d464b4da4aa47bce242f6e5"], "properties": ["color, shape, and size", "Drawer, Pattern, White"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a wooden box with a handle"], "question": "which entity has a white top", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["graffiti, wall, wheelbarrow", "cartoon, bear, diaper"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["A, a, a", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, light", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "a2354f13774340d392fbf33564934aab"], "properties": ["Drawer, Pattern, White", "building, roof, yellow"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "5017581716c7402581a82ebf08d427a3"], "properties": ["floor, table, light", "Shelf, color, white"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d rendering of a white shelf"], "question": "which entity has a white shelf?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["d6087023095446fbadef1721478373b2", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["door, roof, window", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of the roof of a building"], "question": "which building has a roof with wooden trusses?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["earbud, earpiece, earpiece", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white map of the island of malta"], "captions_pred_image": ["a white object on a grey background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["house, roof, green", "torso, breasts, pattern"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black motorcycle helmet with a visor on top"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "6b745457e06840119058883b35f78f58"], "properties": ["metal, roof, chest", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a, color, white", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["shattered, resembles, broken phone", "a, material, clay"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " a house with a wooden-framed roof structure."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["color, material, pattern", "a, building, coin, ball"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a box with a coin next to it"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["yellow, table, roof", "building, plane, city"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, brown, flat", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a wall featuring various potted plants."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "54d03259a316434e9c670a52a7e5a92e"], "properties": ["houses, trees, road", "image, wall, plants"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a knife on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a wall with bullet holes"], "question": "which image shows a wall with plants?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, purple, beams", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which building has a roof truss", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a potted christmas pine tree."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["mossy, rock, rocky", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["roof, structure, greenhouse", "cloak, sword, spear"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " a wooden billiard table with legs."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["Title, Image, Color", "legs, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["desk, chair, lamp", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["location, field, gravestone", "bread, knife, board"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a loaf of bread and a knife on a cutting board"], "question": "which object is on a cutting board?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a hand featuring red, green, and blue stripes."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "6ea21f8f91b04144b43aa4b606339de3"], "properties": ["color, shape, material", "color, red, green, blue"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white image of a glove"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a white and gray glove"], "question": "which entity is a hand?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a black and white striped box."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["shape, bathroom, refrigerator", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small wooden house."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, yellow, chimney", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a clay pot with holes in it."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, material, pattern", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with stairs and a balcony."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "0fbc5f16d301450c820b1f2158fd4f69"], "properties": ["house, color, white", "balcony, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a building with two floors and a balcony"], "question": "which house has a balcony", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a house with a wooden-framed roof structure."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["light source, fixture, color", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, fence, dog", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "40022305eaf44442915c9db03e25f781"], "properties": ["A, a, a", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of an ancient temple"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " of two rocks with ice elements."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["balcony, stairs, house", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a blue and green penguin."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, handle, straps", "color, blue, green"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a penguin sitting down"], "question": "which entity is blue and green?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "d49d8ed244094349a99e4faca05e0690"], "properties": ["graffiti, bench, wall", "low poly, plant, white"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["ceiling, light, desks", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, containers", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, table, chair", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, yellow, roof, metal", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "88eba412c78a4ced89eb857327653f6c"], "properties": ["chair, table, refrigerator", "lighthouse, building, tower"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "06a1c233fb444830b577aa06e2c01294"], "properties": ["image, house, ceiling", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a house", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a house with a balcony", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a white 3d mannequin human head."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "0598fef648c8422f84410847fda77e6a"], "properties": ["shape is sphere, color is white, material is plastic", "color, white, mannequin"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a heart shaped ring"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a human head on a white background royalty free 3d model preview no.2"], "question": "which object is whiter", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "f1b557775310478893242180defa4d80"], "properties": ["earbuds, light, ring", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a house with a wooden-framed roof structure."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, platform, house", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["building, stairs, shelves", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, box, wall", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a flower", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "dd3a9323ed514ccab330973ff9588015"], "properties": ["color, tan, brown, orange", "room, bed, desk"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a door"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed", "label": 1}, {"captions": ["a white of a small archway gate.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["image, color, white", "door, lock, handle"], "captions_pred_pc": ["above a black and white illustration of an arch", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white arch", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a hammer with a long metal handle."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["background, color, white", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["color, table, ceiling", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a roof"], "question": "which building has a glass roof", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " of a small white building with stairs and a lid."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["cover, black, plastic", "building, stairs, lid"], "captions_pred_pc": ["of a black and white image of a skateboard", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a wooden staircase with a railing and table."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "956247bea850458199c651037d4b1d7f"], "properties": ["color, pier, stairway", "railing, table, staircase"], "captions_pred_pc": ["above a black and white illustration of an open door", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a table with a staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a house with a roof and beams."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["base material, wood, shade color, white, beige", "roof, beams, house"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": ["purple speech bubble and circle", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, material, texture", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, roof, wooden", "house, tree, hill"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, plastic", "roof, brown, flat"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d rendering of a table and stool"], "question": "which object has a brown roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small house on a hill in a field."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, white, red, pink", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["size, color, design", "a, material, steel"], "captions_pred_pc": ["a black and white pattern on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a tree with green leaves."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "1a902b67735845198efb1b84f434b580"], "properties": ["color, shape, material", "leaf, color, green"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["size, color, shape", "color, sphere, molecule"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", "a black and white of a knife/sword with a handle."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, handle, gray", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a large axe with a cross on top."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, height", "axe, cross, top"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "for an axe on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", "white ceramic urn with a red lid."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["- material is stainless steel- color is silver- shape is round", "color, white, lid, red"], "captions_pred_pc": ["of a black ribbon on a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["image is rock formation with a white cliff and a rock", "a, material, clay"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["roof trusses, beams, suspended ceiling", "turrets, flags, towers"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, number", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a house with a wooden-framed roof structure."], "sample_ids": ["2563abff548c4479970c81491513b572", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, model, year", "roof, material, wood"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "f1b557775310478893242180defa4d80"], "properties": ["color, gazebo, table", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["water, river, island", "water, boat, rock"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["chair, table, refrigerator", "building, room, sky"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["throne, chair, building", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a building on top of a table", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a wooden staircase with a railing and table."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "956247bea850458199c651037d4b1d7f"], "properties": ["floor plan, heating system, ceiling light fixture", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a white cylinder with a blue light and ring around it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f91e2e3340604001bd6ea2ab25886e46", "b896a0898efe4059a776193c02132129"], "properties": ["color, light, ring", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a plastic sponge on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a clear plastic tube", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, pattern, material", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["3D, toothpick, skateboard", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a room"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a white of a man with arms outstretched."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, orange, white", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a house with a roof and beams."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, gray", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a building with a roof"], "question": "which entity has a roof that is made of beams", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a white fox."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, tan, brown, orange", "color, white, fox"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a fish"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a white castle composed of small cubes."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["structure, roof, pitch", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a castle made of white cubes"], "question": "which structure is composed of small cubes", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["computer desk, laptop, monitor", "house, rock, bird"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, pink, green, cord, white", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["black, white, laptop", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a purple and green sphere.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, shape, size", "color, green, squirt gun"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is a toy?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "bded33af34104b9686b845dfd18309a9"], "properties": ["bed, desk, window", "table, staircase, light"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, temperature, england", "table, staircase, light"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " of a character wearing glasses and a hat."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["base, speaker, light", "hat, glasses, character"], "captions_pred_pc": ["above a black and white illustration of a clock", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["a box, a cup, a bottle, a jar", "bed, desk, window"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a building with yellow lines.", " a large steel building with a pool."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, yellow, lines", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a map", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["house, staircase, window", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of an empty room"], "question": "which building has a room with a door and a white shelf?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small triangular-shaped object."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "2d02985030804209a26c2c53b96a06f9"], "properties": ["face, handle, spout", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a piece of metal"], "captions_pred_image": ["a white ceramic vase with a face on it", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a wooden billiard table with legs."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["light source, fixture, color", "legs, material, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small wooden house."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["desk, chair, table", "house, material, wood"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a purple and green sphere.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["texture, spikes, eyes", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a small white table with a chair"], "question": "which entity is a house?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["A, a, a", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small white house with a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["yellow, table, roof", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building with many windows"], "question": "which roof is blue", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["buildings, houses, grass", "building, plane, city"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "c8936ace72954650b4e2d84246964849"], "properties": ["frame, roof, trusses", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof"], "question": "which house has a roof that is pink", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " of two rocks with ice elements."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, green", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "e2645ac544844f3c981203134a99c30c"], "properties": ["- color is white- shape is cubes- number is 1", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, suit, cell, phone, gun", "table, stairs, ladder"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "a17477b445b3443189dad22f768b888b"], "properties": ["bread, knife, board", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white image of a square with dots"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a pair of blue wireless earbuds with a black case.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["88d8bccf701145dea3fc4df8781ddb13", "703dce44052e48cfb024bceb08141554"], "properties": ["blue, case, earbuds", "roof, beams, frames"], "captions_pred_pc": ["a black and white image of a pair of earrings in the shape of a butterfly", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a pair of earphones royalty free 3d model preview no.1", "a 3d model of a wooden structure"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, eagle, wood", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a wooden roof structure with a pink roof."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["hat, bag, blanket", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["purple speech bubble and circle", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, shape, size", "color, silver, white"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of a silver ball on a gray background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "4e82177059204292899fa7415164a05e"], "properties": ["houses, trees, road", "yellow, tires, load"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a monster truck with spikes"], "question": "which entity is a toy?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a yellow and blue toy submarine."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, shape, and material", "color, yellow, blue"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " of a small white building with stairs and a lid."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["base material, wood, shade color, white, beige", "building, stairs, lid"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", "white wall lamp with a leaf design"], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "7afad3ca209c4a91b5457d28bdc2b916"], "properties": ["Title, Image, Color", "design, leaf, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a circular object"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a white wall sconce with a leaf design and a light bulb"], "question": "which entity is a wall lamp?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, structure, house", "island, mountain, grass"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["desk, chair, lamp", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["size, color, design", "building, door, clock"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a black and white image of a church with a steeple"], "question": "which entity has a door", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small white house with a roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, sphere, molecule", "roof, color, white"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " of two rocks with ice elements."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["door, lock, handle", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", "star wars stormtrooper "], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["bird, resembles, crow, pigeon", "a, color, white"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a bird in flight", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a white of a house with a hole in the ceiling."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["- material is white- color is white- texture is textured", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a house with a balcony"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, blue", "house, pool, balcony"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["boat, table, chairs, umbrella, solar panel", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " of a white chest of drawers with legs."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["throne, stairs, tree", "chest of drawers, legs, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a white building with a red roof."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, pink, blue", "color, white, roof, red"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a small black box on a purple square.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["75f209e543c046669099190953616acc", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" of purple crystals", " of two rocks with ice elements."], "sample_ids": ["8e729506c8cb4818b18191b1cc567b0d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a leaf on a white background a black and white drawing of a leaf on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a crystal in the shape of a snowflake", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, table, chair", "water, boat, rock"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole?", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["type, handle, feature", "roof, color, yellow"], "captions_pred_pc": ["for a black and white drawing of an axe", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "12093c89a60941e7884b252bdc05104c"], "properties": ["chair, table, refrigerator", "giraffe, bench, flower"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small, snow-covered house."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, tan, brown, orange", "house, snow, cover"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d81d13362ae04371bb2cba46e4939665"], "properties": ["resembles, toy, bookshelf", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white human skull with broken bone elements."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["background, color, white", "color, white, skull"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a human skull in white"], "question": "which entity is whiter", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "9b8e2f9070b24956a343a01a5fabdf03"], "properties": ["bed, desk, window", "computer desk, laptop, monitor"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white silhouette of a traditional japanese gate"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a futuristic room with a bench"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["house, roof, wooden", "apse, roof, floor plan"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building in the shape of a pyramid"], "question": "which house has a flat roof", "label": 1}, {"captions": [" a building with yellow lines.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, yellow, lines", "color, silver, white"], "captions_pred_pc": ["a black and white drawing of a map", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a 3d model of a silver ball on a gray background"], "question": "which object is made of silver and white?", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, head, body", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of two rocks with ice elements."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, table, ceiling", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a character wearing glasses and a hat."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["s, chimpanzee, human, wolf", "hat, glasses, character"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, tree, pool", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, gun", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a spider-like creature with long arms and legs."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, head, bowl", "arachnid, leg, arm"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["furniture, staircase, torn-apart", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a concrete wall"], "question": "which entity is more likely to have a staircase", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "46903bf029934b1989bc062dcb0a5531"], "properties": ["red, mouse, handwriting", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["b1099ba41d9f4af19d1a91761bb6074c", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["Object, Tray, Tray", "Object, Tray, Tray"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d image of a white tray with an intricate design", "a 3d image of a white tray with an intricate design"], "question": "which tray is white?", "label": 0}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a blue plastic stool."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, plastic, blue"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "97f487941d26472294e005fa97c403be"], "properties": ["color, black, rings", "color, white, green"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d model of an office building"], "question": "which object is white and green", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, frame", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["- color is red, blue, pink", "metal, rusted, paper"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be a part of a car", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a small white house with a roof."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "roof, color, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, building, people", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a white sofa, chair, and box."], "sample_ids": ["4f21fa937959487a96350af527d75421", "4c59733ebd634594a921b7ace60e4142"], "properties": ["window, frame, room", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["house, staircase, table", "floor, staircase, table"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, material, structure", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a house with a pink roof.", " a white building with a red roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, roof, pink", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, yellow, black", "roof, trusses, beams"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["chair, table, refrigerator", "house, tree, hill"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["- material is plastic- color is green- shape is box", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of two rocks with ice elements."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, screen, drawer", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "096e42b466ec438d95c5d89a85191534"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "white, rock, shell"], "captions_pred_pc": ["a black and white map of germany on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof structure, truss, ceiling", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, material", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, pink, eyes", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a bear's head", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a large white and metal building with a metal roof structure."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, green, tiled", "roof, metal, white"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a large white box"], "question": "which roof structure is made of metal", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["hat, toy, gnome", "houses, trees, road"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["texture, spikes, eyes", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["house, rock, pond", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a piece of furniture"], "question": "which object has a clock on it?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, staircase, window", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small house with stairs and a roof."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["cup, bottle, chessboard", "roof, stairs, house"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a green and black robot with cube-like features.", " a house with a roof and beams."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d cartoon cat model wearing a blue outfit.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["0d8373961c804794a74971b946ebad8d", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, outfit, cat", "image, color, white"], "captions_pred_pc": ["a 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a cat wearing a jacket", "a 3d printed figurine of an alien creature"], "question": "which entity is a white color?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, shirt, pants", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, city, train", "building, room, sky"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is white, material is plastic, shape is tube", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "18e392c5360146eda498c5edab25b15c"], "properties": ["s, stick, leaf", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["table, bench, deer", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, yellow, black", "house, tree, hill"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a large gray sphere", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "c8936ace72954650b4e2d84246964849"], "properties": ["size, color, shape", "roof, color, pink"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["room, door, shelf", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, house, wooden", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a house with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a black and white striped fly in the air."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["building, roof, white, cubes", "black, white, fly"], "captions_pred_pc": ["above a black and white image of a map", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a small blue robot with a windmill.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["5f915b161cc74fedad52d8663b41f87a", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["color, blue, robot", "blue, yellow, frog"], "captions_pred_pc": ["a black and white image of a 3d sculpture", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a wind turbine", "a 3d model of a piece of furniture"], "question": "which entity has a frog on a cart?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "bf18bfd89efd43389781050230467d58"], "properties": ["3ds max, obj, fbx, c", "Lights, number, five"], "captions_pred_pc": ["a black and white insect on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "b896a0898efe4059a776193c02132129"], "properties": ["face, handle, spout", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a small, circular object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small building with windows and a roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["balcony, stairs, house", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a house with roof trusses"], "question": "which entity has a ceiling", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "a17477b445b3443189dad22f768b888b"], "properties": ["metal, laptop, light fixture", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, structure, truss", "roof, trusses, beams"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " of a wooden table and chair."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["table, staircase, light", "table, chair, wood"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["metal, legs, frame", "room, door, shelf"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a green skull and sphere.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, skull, sphere", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- material is plastic- color is green- shape is box", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, bowl, green", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "a2354f13774340d392fbf33564934aab"], "properties": ["a box, a cup, a bottle, a jar", "building, roof, yellow"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["top, color, wood", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a small house"], "question": "which object has a door?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "68cf560d0c424ec6a3c58e1b9967508d"], "properties": ["light source, fixture, color", "hair, legs, wings"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "of a white and black bird flying in front of a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a woman with a large spider-like creature on her back"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", " a four-legged metal workbench with shelves."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, table, ball", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a house", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, shape, size", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a green and red toy gun with a scope and yellow accents."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4b7263b58a6647c3a03226b39c42108a"], "properties": ["color, shape, and size", "color, red, green, yellow"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a toothbrush"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an assault rifle on a gray background"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " of a tree stump and rock with flowers on them."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["building, fence, snowy", "flower, rock, tree stump"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["fireplace, stick, surround", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, hat, handle", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with stairs and a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["apse, roof, floor plan", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["roof, color, blue", "color, white, yellow, roof, metal"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof that is made of metal", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "a17477b445b3443189dad22f768b888b"], "properties": ["brown, paint, tape", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small, snow-covered house."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, skyline, buildings", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a piece of broken glass on a white background"], "question": "which is not a building", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "26c47880756b4876b4f263373c3c5303"], "properties": ["yellow, table, roof", "building, material, steel"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a large structure with multiple levels"], "question": "which building is made of steel", "label": 1}, {"captions": [" a large rock with a hole in it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["size, shape, material", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white drawing of a wallet"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a bench on a wooden floor"], "question": "which object is made of wood", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["chocolate, mushroom, cake", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white house with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a building with a roof"], "question": "the roof of entity a is white", "label": 1}, {"captions": ["a pair of men's grey and tan leather lace-up sneakers with blue accents.", " a house with a wooden-framed roof structure."], "sample_ids": ["0070d09cecd94178b4217e244dd72efc", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, tan, grey, blue", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a shoe on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a pair of gray shoes on a white background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a white of a man with arms outstretched."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, white, pen, logo", "image, color, white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a clay pot with holes in it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, red, blue, green", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["55b26130f1514032be078e13fd982905", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, material", "Shelf, color, white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, screen, drawer", "color, white, plastic"], "captions_pred_pc": ["above a black and white image of a brush", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white wooden crate.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["8f4cf8c72e424d9386406b40dbe56501", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color, material, shape", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white square with dots on it", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a wooden crate royalty free 3d model preview no 3", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, blue, green, yellow, blue", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, blue, components", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, white, pen, logo", "stair, table, chair"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "6b745457e06840119058883b35f78f58"], "properties": ["roof, color, pink", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, handle, orange, rake, knife", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, material", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a house with wooden framing and trusses."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, head, bowl", "frame, trusses, wood"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a window"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a house under construction"], "question": "which object is made of wood", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "c3a82df41875402285608ef13a55df57"], "properties": ["color, temperature, england", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small house with stairs and a roof."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["a white of a spaceship and building.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "c3a82df41875402285608ef13a55df57"], "properties": ["image, building, spaceship", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a mouse wearing a top hat and a teddy bear holding a spoon.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["887e410d07854396b563325ae1929583", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, mouse, bear", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a mouse wearing a top hat and bow tie", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a wooden billiard table with legs.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["b20ad62516fa467ba6e8de063998e8e4", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["legs, material, wood", "paint, rust, concrete"], "captions_pred_pc": ["a black and white drawing of a rectangular shaped object", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of a pool table", "a 3d model of a concrete wall"], "question": "which object is made of rust", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["red, eyes, rocket", "a, material, clay"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["building, plane, city", "color, shape, color"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "205251e4277e41d1aae6b2358267ad56"], "properties": ["Arms, Legs, Color", "image, color, white"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d printed figurine of an alien creature"], "question": "which entity is a picture of a man in a suit and mask", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, staircase, table", "building, plane, room"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "4806b382466247ad9265fc8240a22d3d"], "properties": ["rocky, rug, puddle", "rocky, rug, puddle"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity has a brown and white rug featuring a puddle on it?", "label": 0}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a clay pot with holes in it."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, base, warning", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, pink, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a person breaking through a brick wall."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["stair, table, chair", "image, brick, wall"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, shape, size", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "4389909667db472ea9a57a70eb940fa4"], "properties": ["a, desk, laptop", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window?", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", "a low-poly of a white, shattered sphere."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, material, shape", "sphere, color, texture"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", "a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "e04ad505d0c14dcbb593c49be7d04546"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "a, hand, holding, rock, paper, floating, fish, street, buildings"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a black and white image of a rock in the air", "a black and white image of a rock in the air"], "question": "which entity has a flying object", "label": 0}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["3D, toothpick, skateboard", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a spike on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spiral staircase with railings.", " a small wooden house with a green roof."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["railings, staircase, spiral", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with wooden framing and trusses."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, tan, brown, orange", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a window"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["- material is wood, metal, metal", "metal, rusted, paper"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a red, blue, and green striped tower building."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["wall, stairs, castle", "color, red, blue, green"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is more colorful", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["background, color, white", "glass, metal, balls"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a long white plastic strip on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["house, roof, toothbrushes", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, yard, surrounding buildings", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, black, green", "black, roof, green"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house with stairs and a roof."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a, bird, lake", "roof, stairs, house"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["- material is metal- color is silver- texture is textured", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a small black and white cube.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["color, shape, size", "ring, material, gold"], "captions_pred_pc": ["a black and white drawing of a city skyline", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a white wedding band with the words strength in weakness engraved on it"], "question": "which object is made of yellow gold", "label": 1}, {"captions": [" of a small red renault clio car.", " of a black and white striped fly in the air."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color is red, make is renault, model is clio", "black, white, fly"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a black and white photograph of a fly"], "question": "which is not a car", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, light", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["low poly, llama, kangaroo", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small building with windows and a roof."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["door, lock, handle", "roof, windows, building"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["red, mouse, handwriting", "metal, legs, wheels"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of an old metal locker"], "question": "which entity has wheels", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["Steel, Color, Yellow", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a white table with multiple cubes"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, metal, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a large white box", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a large metal building with a roof and truss structure."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "b85a99699ccd4bcba213322113bb253d"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house with a flat roof structure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, flat, structure", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, truss system, framing", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a piece of rock with a blue stick.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, rock, stick", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock formation", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, wheel, helmet", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, b, c", "a, outfit, green"], "captions_pred_pc": ["for a black square tile on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a line of white cubes with various insects on them", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["orange, forklift, parking lot", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a spiral staircase"], "question": "which image has a red arrow?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small wooden house with a green roof."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["collection, moose, skull", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, grass, moss", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have a rusty metal?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, brown, flat", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "a2354f13774340d392fbf33564934aab"], "properties": ["shape is box, color is white, door is present", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small house with a blue roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, red, blue, green", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["houses, trees, road", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, purple, beams", "house, roof, wooden"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a broken human skull and stone bowl.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["f7f1d8f726cb4ec6bda791aae99a10c2", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["skull, bowl, human", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a toilet bowl with dots all over it", "a black and white drawing of a tree"], "captions_pred_image": ["a ceramic bowl with a large crack in the middle", "a 3d model of a group of trees"], "question": "which entity has more plants", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["background, color, white", "image, color, pink"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d sculpture of an animal on a piece of paper"], "question": "which image has a pink sign?", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "star wars stormtrooper "], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["3d model, color, lights", "a, color, white"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a, rock, paper", "house, hill, forest"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a black motorcycle helmet with a visor on top"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large building with a roof and windows.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, windows, building", "Lights, number, five"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a white cube", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["aca5fa55596c42f093ca4d6d4b3eaea9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white square with dots all around it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white square table", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small orange piano with legs."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, material, texture", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small building with windows and a roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, table, ceiling", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, metal, white", "structure, roof, pitch"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["floor, staircase, railings", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, green, orange, star", "a room, a cake, a table"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["text, material, shape", "a, material, clay"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["Steel, Color, Yellow", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "an image of a white background with a few small cubes on it"], "question": "which entity is not a cube?", "label": 0}, {"captions": [" a small house with a tree and a rock.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["house, tree, rock", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, black, shade, black", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a house with a roof"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "7f8942ef51dd4246993a587a12df168c"], "properties": ["graffiti, bench, wall", "house, yard, surrounding buildings"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a truck on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["white dragon with wings, .", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "4a889132cc444d10bfcbf6c760984416"], "properties": ["wings, white, dragon", "a, color, white"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a desk and chair"], "question": "which entity is not a dragon?", "label": 0}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "star wars stormtrooper "], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["hat, bag, blanket", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, pattern", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, light, jewels", "gold, ring, animal"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a shark"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, blue, structure", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " a spider-like creature with long arms and legs."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["hoodie, ball, person", "arachnid, leg, arm"], "captions_pred_pc": ["for a person standing in front of a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, size", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden barrel."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "77ceb4db6ddc4a6c8c4a83ab1519e78b"], "properties": ["- material is plastic- color is white- shape is cylinder", "material is wood, shape is barrel, color is brown"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a gray and white barrel"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["metal, rusted, paper", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a building with a metal and wooden pole structure."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, beams, chimney", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, skyline, buildings", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a clay pot with holes in it."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof truss, insulation, suspended ceiling", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a modern white house with furniture and a black accent."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "e5025a1ca0034b1aa97a0d42edeeae0f"], "properties": ["color, white, logo", "color, white, furniture, black"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a white building with black and white tiles"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small house with a tree and a rock."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["a, plane, small plane", "house, tree, rock"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" of a white crocodile", " of a toy mushroom character with a white and brown head."], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, shape, size", "color, head, white and brown"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a piece of white paper", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a lamp, a syringe, a light pole", "house, tree, hill"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, b, c", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d rendering of a black and white object", "an image of a white background with a few small cubes on it"], "question": "which entity is a solid color?", "label": 0}, {"captions": [" a small white gravestone on a grassy field.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["location, field, gravestone", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small wooden house with a green roof."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, brown, flat", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, skyscraper, city", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["hat, cup, bowl", "roof, truss, lamp"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a house with a metal roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a small wooden house with a green roof."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, purple, beams", "roof, color, green"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "aae2c42740a04fd68068f5707111d26f"], "properties": ["image is a sculpture of an angel on a wall", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture of an angel on a wall?", "label": 0}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["3D, toothpick, skateboard", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["books, paper, lamp", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, blue, green, yellow, blue", "roof, color, blue"], "captions_pred_pc": ["a pair of sneakers on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of a white chest of drawers with legs."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["furniture, staircase, torn-apart", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, temperature, england", "torso, breasts, pattern"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["hat, color, white", "a, material, clay"], "captions_pred_pc": ["a black and white image of a doll made of beads", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, and size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "06a1c233fb444830b577aa06e2c01294"], "properties": ["hat, candy, strawberry", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["desk, chair, lamp", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, yard, surrounding buildings", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "e44009d33258425e8efedfbc6823bf70"], "properties": ["room, door, shelf", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a two-story small apartment building with a roof."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["lighthouse, building, tower", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with a red roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "085db9059b744673b5623b5338e02196"], "properties": ["A, a, a", "roof, red, house"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small shed in the snow"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["house, door, cross", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a large steel building with many columns and a pool."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, truss, suspended ceiling", "building material, pool, steel"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a wooden roof structure with a pink roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["resembles, toy, castle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["white of a small arch.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, size", "color, background, white"], "captions_pred_pc": ["for a black and white drawing of an arch", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a white 3d model of an arch", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["pink light saber.", "a white glass beer mug."], "sample_ids": ["c4c8ed95de4640fe8c0be1df68d816ba", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, pink, light", "color, white, glass"], "captions_pred_pc": ["of a black dot on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a light saber on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["ceiling, light, desks", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a wooden windmill with a red roof."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, shape, material", "roof, color, red"], "captions_pred_pc": ["of a black bracelet with dots on it", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, windows, building", "roof, beams, chimney"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which building has a roof", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, house, small", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color is white, yellow, plastic", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["mossy, rock, rocky", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green skull and sphere.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, skull, sphere", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color is white, material is plastic, shape is tube", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a broom on a stand", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, temperature, england", "buildings, houses, grass"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, awning, cover", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["floor plan, ceiling light, color", "roof, air conditioner, house"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a white 3d model of a house", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["light source, fixture, color", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, yellow, black", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of an airplane", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, roof, tray", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with many pillars"], "question": "which entity has a roof that is made of glass?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a wooden roof structure with a pink roof."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, island, resembles, hawaii", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "b896a0898efe4059a776193c02132129"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "09f2cf267e954c958828325067bcc36a"], "properties": ["earbud, earpiece, earpiece", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a white object on a grey background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof, room, ceiling", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, material", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a large steel building with a pool."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, stairs, table", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a wooden windmill with a red roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, green, lawn", "roof, color, red"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, hat, glasses", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "40921ffd69db479294554d261daf3035"], "properties": ["house, staircase, table", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, material, structure", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["stair, table, chair", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, room, table", "house, tree, pool"], "captions_pred_pc": ["a black square on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a white castle composed of small cubes."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "composed of, white, cubes"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a house with a pink roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, roof, pink", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["location, field, gravestone", "houses, trees, road"], "captions_pred_pc": ["a black and white illustration of a whale", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a black and white photograph of a small town"], "question": "which location has a road?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a, bird, lake", "hat, skull, bread"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, roof, tray", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a table with a stool on top"], "question": "which table has stairs?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a spider-like creature with long arms and legs."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor, table, wall", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["hat, color, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a doll made of beads", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["image, color, pink", "flower, color, pink"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has pink flowers", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a white round table with a red accent."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "fea62a865b4e40899d95785533818329"], "properties": ["color, white, red, pink", "color, white, red"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photograph of a person hanging from the ceiling"], "captions_pred_image": ["a 3d model of a white structure with stairs", "an empty white plate on a gray background"], "question": "which entity has more white", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small off-road toy vehicle with wheels."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "7ef2589539b84054b2185633112825cc"], "properties": ["color, shape, material", "wheel, toy, vehicle"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a black and white photo of a cross on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a dune buggy royalty free 3d model preview no 3"], "question": "which toy has wheels", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, black, white", "image, color, white"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["house, roof, wooden", "a, material, clay"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a low-poly of a white, shattered sphere."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, material", "sphere, color, texture"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a cracked egg"], "question": "which object is white", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["s, chimpanzee, human, wolf", "black, screen, blank"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a screen", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a large house/building structure with a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["A, a, a", "roof, structure, house"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a large white structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a large gray sphere", "a white of a man with arms outstretched."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["size, color, shape", "image, color, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is white- color is white- texture is textured", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a white of a woman with her arms outstretched."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, gun", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a portrait?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["floor plan, bathroom, pool", "door, lock, handle"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, stairs, house", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a roof structure"], "question": "which house has a roof with trusses and beams", "label": 1}, {"captions": [" a small wooden log cabin.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size, material, log", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["yellow metal barricade ", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color is yellow, material is metal, height is 0.5 m", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a white barrier on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["2563abff548c4479970c81491513b572", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, model, year", "mountainous, landmass, state"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a tree and a rock."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["apse, roof, floor plan", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a wooden-cased radio."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["a lamp, a syringe, a light pole", "case, material, wood"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object has a case made of wood", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "243cd2c469984313b1522dca099eefd3"], "properties": ["size, material, shape", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a white fox."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, table, blocks", "color, white, fox"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a white castle composed of small cubes."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["building, balcony, street", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["hat, bag, blanket", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["Cabinet, Drawers, Filing", "house, pool, balcony"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, b, c", "roof, color, yellow"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a small wooden house with two roofs."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["hat, sword, gun", "house, roof, wooden"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small barn"], "question": "which entity has a roof", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["orange, forklift, parking lot", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a small room with a bed, desk, and chair"], "question": "which has a bathroom", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["island, mountain, grass", "island, mountain, grass"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a floating small island with trees", "label": 0}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["background, color, white", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with a staircase in a room.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["room, staircase, building", "room, furniture, window"], "captions_pred_pc": ["a black and white image of the letter l", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, blue, structure", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with multiple levels"], "question": "which building has a roof that is yellow?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["door, stairs, color", "shape is box, color is white, door is present"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a white, open shelving unit"], "question": "which building has a door", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["- building is white, table is white, piles of paper are white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a small white house with a roof."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["size, material, logo", "roof, color, white"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a building with a white roof"], "question": "which object is made of wood", "label": 0}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, yellow, black", "moss, mushroom, grass"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a wooden-framed roof structure."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, lake, pool", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a house with a yellow roof, wooden beams, and yellow frames.", " of two rocks with ice elements."], "sample_ids": ["703dce44052e48cfb024bceb08141554", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, beams, frames", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a boat", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a wooden structure", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small white house with windows and a black lid."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "4b40af369c1149949f5ccb68becd8430"], "properties": ["Drawer, Pattern, White", "white, windows, lid"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a white house with three windows"], "question": "which object has a white top", "label": 0}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, background, white", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "be1376023c274bdda995d54f3694157f"], "properties": ["color, roof, tray", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " a white rocking chair with a curved backrest."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["flag, stand, color", "backrest, curved, yes"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["table, stairs, ladder", "island, terrain, water"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a rusted metal barrel with a yellow and red warning sign and stripe on it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["5a49ad82ef7a4d33badea2261720f518", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["rusty, warning, metal", "a, color, red"], "captions_pred_pc": ["a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white photograph of a barrel", "a 3d model of a castle with two towers"], "question": "which entity is not a toy?", "label": 0}, {"captions": [" a black and white cube-shaped building with a staircase.", " a small white house with a roof."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["shape is cube, color is black, white", "roof, color, white"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a building with a white roof"], "question": "which building is whiter", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, blue", "house, fence, playground"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["fireplace, bench, log", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white photograph of a birdhouse"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, purple, structure", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a bench", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house with a roof"], "question": "which roof is the color of the building", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["bread, knife, board", "stair, table, chair"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a person breaking through a brick wall."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, structure, truss", "image, brick, wall"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a brick wall?", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a white building with a red roof."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, material, wood", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "96d127abd21049689918e671ec613ef8"], "properties": ["image, color, black and white", "axe, hammer, spoon"], "captions_pred_pc": ["of a black and white knife on a white background", "of a black lace belt on a white background"], "captions_pred_image": ["a black and white image of a knife", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["a train, a ship, a boat", "a, island, resembles, hawaii"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small white house with a roof."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, hole, shelf", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "c3a82df41875402285608ef13a55df57"], "properties": ["frame, truss, roof", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["color, shape, size", "a, building, coin, ball"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a box with a coin next to it"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e6ff8537a6ba409296954984071218a3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "frame, screen, color"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a building with yellow lines."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, blue, components", "color, yellow, lines"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a map"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a drawing of an airplane flying over a city"], "question": "which entity has more yellow lines", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, wall, color", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small, snow-covered house."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, roof, toothbrushes", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "b896a0898efe4059a776193c02132129"], "properties": ["desk, chair, table", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "88eba412c78a4ced89eb857327653f6c"], "properties": ["house, roof, blue", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["fireplace, stick, surround", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which fireplace has a broom and a shovel?", "label": 1}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "a17477b445b3443189dad22f768b888b"], "properties": ["type, relief, statues", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a stone wall with a window and a clock."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["house, fence, dog", "window, clock, wall"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a small, snow-covered house."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, table, blocks", "house, snow, cover"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with four legs", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, metal, white", "roof, structure, suspended"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a house with a metal roof"], "question": "which roof structure is more complicated", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["base material is wood, color is red, message is welcome to northwich", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "an oval table with a mouse on top of it"], "question": "which object has a hanging wire?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", "a wooden-cased radio."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["stair, table, chair", "case, material, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a staircase in a room", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object has a case made of wood", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a wooden table with a plant on it."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["color, room, table", "table, plant, wood"], "captions_pred_pc": ["a black square on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small white house with a roof."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, bowl, cup", "roof, color, white"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["white sphere", " a house with wooden framing and trusses."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, shape, size", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", "two white spheres in a ."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, b, c", "two, spheres, white, in, a"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a white ball on a gray background"], "question": "which object is not a snake?", "label": 0}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, building, people", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["white 3d origami bird model", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, origami", "roof, brown, flat"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white umbrella on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["potted plant, table, shelf", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small house with a blue roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["image, building, painting", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which building has a blue roof", "label": 1}, {"captions": ["white 3d tank model", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["color is white, model is 3d, name is tank", "bowl, pottery, headpiece"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, pink", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "97e000ff41094665afd94ea565da8b13"], "properties": ["ruined building, stone floor, small stone structure", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["colorful of a dragon toy.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["8c0ec07322914726ad86cc4885052e08", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, toy, dragon", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of a stingray on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a small dragon toy", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a futuristic white sports racing car.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, futuristic", "- material is stone, metal, concrete"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, pier, stairway", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a white of a gun.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, gun", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a white object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["wall, stairs, castle", "throne, chair, building"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a pink, ear-shaped object.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0e08d777c7b948a784dc15748e7b173f", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is ear, color is pink, material is plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small white house with windows and a black lid."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "4b40af369c1149949f5ccb68becd8430"], "properties": ["mossy, rock, grass", "white, windows, lid"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a white house with three windows"], "question": "which object has a lid?", "label": 1}, {"captions": [" a ruined building with broken windows, concrete, wood, and a rock.", " a large steel building with a pool."], "sample_ids": ["81ca2e13dab34e9eabb2e345780aedd2", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, material, rock", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a truck with dots all over it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d image of a damaged piece of furniture", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "be1376023c274bdda995d54f3694157f"], "properties": ["lighthouse, fountain, crater", "roof, beams, chimney"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["room, door, shelf", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, material, pattern", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["runner, bed, bench", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a pig with an open mouth and a knife.", " of a hammer with a long metal handle."], "sample_ids": ["d2d3b56c704341198aebd3601a6bb624", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["mouth, open, knife", "handle, metal, long"], "captions_pred_pc": ["a black and white photo of a hippopotamus", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a pig with a knife in its mouth royalty free 3d model preview no.2", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a large building with a roof and windows."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "32d1fbd3ee91426882290305f70021e6"], "properties": ["shape is turtle, color is green, white", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house with wooden framing and trusses."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["graffiti, bench, wall", "frame, trusses, wood"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a window"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, material, shape", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof trusses, beams, suspended ceiling", "building, color, black and white"], "captions_pred_pc": ["above a black and white drawing of a building", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, roof, wall", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a building", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a person jumping on a trampoline."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["houses, trees, road", "person, jumping, trampoline"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white diamond belt"], "captions_pred_image": ["a black and white photograph of a small town", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which entity is a person jumping on a trampoline?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a stone wall featuring a statue and a window."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "09ab58e01e0d4393bc1e82f157e641be"], "properties": ["chair, table, refrigerator", "a, window, statue"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white photo of a sculpture of jesus on the cross"], "question": "which entity has a window", "label": 1}, {"captions": ["a white 3d mannequin human head.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, mannequin", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of an egyptian sarcophagus."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "6b745457e06840119058883b35f78f58"], "properties": ["- material is plastic- color is green- shape is box", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a pair of men's grey and tan leather lace-up sneakers with blue accents.", "a pair of men's grey and tan leather lace-up sneakers with blue accents."], "sample_ids": ["0070d09cecd94178b4217e244dd72efc", "0070d09cecd94178b4217e244dd72efc"], "properties": ["color, tan, grey, blue", "color, tan, grey, blue"], "captions_pred_pc": ["a black and white image of a shoe on a white background", "a black and white image of a shoe on a white background"], "captions_pred_image": ["a pair of gray shoes on a white background", "a pair of gray shoes on a white background"], "question": "which sneakers are made of leather?", "label": 0}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "61c172ff745848f29d2527f4e5eb1bdb"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "collection, plane, car"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a knife blade royalty-free 3d model preview no. 3"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a small house with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, house, small", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a177693cc8c7428292680816001b48c6"], "properties": ["color, shape, and size", "black, white, laptop"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a room with dots on the floor"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a dishwasher with a dish inside it"], "question": "which entity is a black and white color scheme?", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", "a pixelated-textured purple sphere ."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "fb68393941804e769d5c9b372864a642"], "properties": ["wing, color, white", "texture, color, shape"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white square made of dots on a white background"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, door, clock", "roof, material, wood"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of the roof of a building"], "question": "which building has a roof made of wood", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["low poly, llama, kangaroo", "house, building, people"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a small town in the middle of a field"], "question": "which entity does not feature houses", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a white of a man with arms outstretched."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, text", "image, color, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small house with a pond and situated on a rock."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "92859eb82a344134806b37cc209927c6"], "properties": ["roof, color, blue", "house, rock, pond"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["building, roof, white, cubes", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d rendering of a table and stool"], "question": "which roof is brown", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "c3a82df41875402285608ef13a55df57"], "properties": ["building, room, sky", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["red, mouse, handwriting", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["metal, roof, chest", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a black and white photograph of a birdhouse"], "question": "which object has a wooden roof", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["house, tree, hill", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, text", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "12093c89a60941e7884b252bdc05104c"], "properties": ["- color is red, blue, pink", "giraffe, bench, flower"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, yellow, roof, metal", "wood, board, shelf"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a large house with a roof on a platform."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, grass, moss", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a small house"], "question": "which object has a roof", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a spiral staircase with railings."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["balcony, stairs, house", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a broken human skull and stone bowl."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["color is white, yellow, plastic", "skull, bowl, human"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a white plastic container with a label on it", "a ceramic bowl with a large crack in the middle"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a train, a ship, a boat", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a house with a wooden-framed roof structure."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["stair, table, chair", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with stairs and a roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["bed, desk, window", "roof, stairs, house"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "c3a82df41875402285608ef13a55df57"], "properties": ["bread, chocolate, cake", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a loaf of bread", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "a17477b445b3443189dad22f768b888b"], "properties": ["white, top, writing", "roof, pillar, stairs"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small house with a road in front of it.", " of two rocks with ice elements."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, front, road", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["floor plan, heating system, ceiling light fixture", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white drawing of a house", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["low poly, plant, white", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a table with a stool on top"], "question": "which object is white", "label": 1}, {"captions": [" of a white human skull with broken bone elements.", "star wars stormtrooper "], "sample_ids": ["6ca0f91b85464d7a845b3977351dd0b5", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, skull", "a, color, white"], "captions_pred_pc": ["a black and white image of a cat's x-ray", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a human skull in white", "a 3d model of a star wars stormtrooper"], "question": "which is not a white color", "label": 0}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, character, mario", "table, stairs, ladder"], "captions_pred_pc": ["for a black and white sculpture of a person", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a pixelated-textured purple sphere ."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "fb68393941804e769d5c9b372864a642"], "properties": ["house, lake, pool", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " of a small white building with stairs and a lid."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["cover, torn, open", "building, stairs, lid"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, shape, size", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small house with a blue roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, blue", "house, rock, bird"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, temperature, england", "island, terrain, water"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a lidded trash can.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b166e9a1c5d540c19a1075b7f064f42f", "c3a82df41875402285608ef13a55df57"], "properties": ["lidded, trash can, color black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a circle of dots on a white background a circle of dots on a white background vector illustration of a circle of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a trash can", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a large metal building with a roof and truss structure."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b85a99699ccd4bcba213322113bb253d"], "properties": ["Arms, Legs, Color", "roof, truss, structure"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a large metal building with a roof and truss structure."], "sample_ids": ["6b745457e06840119058883b35f78f58", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, blue", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a building with dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a long metal fence"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a purple and green sphere.", " of a wooden table with metal legs and frame."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color, shape, size", "metal, legs, frame"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d rendering of a white wooden table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["striped, white, black", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stack of books", "a black and white photograph of a barrel"], "question": "which object is more likely to be a warning sign", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a person breaking through a brick wall."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["house, roof, green", "image, brick, wall"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of a small white building with stairs and a lid."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["water, boat, rock", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a surfboard", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a futuristic white sports racing car."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["frame, beams, trusses", "color, white, futuristic"], "captions_pred_pc": ["a black and white drawing of a metal grate", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, head, white and brown", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small wooden house."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["low poly, llama, kangaroo", "house, material, wood"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a small cottage"], "question": "which is not made of wood", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small wooden house with a green roof."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, roof, wall", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a small white house with a roof."], "sample_ids": ["2563abff548c4479970c81491513b572", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, model, year", "roof, color, white"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "06a1c233fb444830b577aa06e2c01294"], "properties": ["- color is red, blue, pink", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["houses, trees, road", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, room, ceiling", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small house with stairs and a roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["fireplace, bench, log", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, ceiling, kitchen", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "c3a82df41875402285608ef13a55df57"], "properties": ["color, wheel, helmet", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["food, leaves, shredded paper, rocks", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a building with blue lines and structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, structure", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building under construction", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", "a pixelated-textured purple sphere ."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "fb68393941804e769d5c9b372864a642"], "properties": ["leaf, color, shape", "texture, color, shape"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a gray sphere on a white background"], "question": "which entity has a texture that is pixelated?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["computer desk, laptop, monitor", "building, plane, room"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["97f487941d26472294e005fa97c403be", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an office building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a large metal building with a roof and truss structure."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, blue, white, handle", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a needle on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, hill, forest", "building, plane, city"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house with a flat roof structure."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "abc52d210d71415296730bb00352ce6f"], "properties": ["house, tree, pool", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof truss, insulation, suspended ceiling", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a building with a roof"], "question": "which entity has a roof that is not made of glass?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a house with a roof."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["Drawer, Pattern, White", "roof, house, roof"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which object has a roof", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a small white airplane flying in the air."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, black, white", "airplane, color, white"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a small airplane"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a white glass beer mug."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["roof, color, red", "color, white, glass"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a white building with a red roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, color, white", "color, white, roof, red"], "captions_pred_pc": ["above a black and white drawing of a bench", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of two rocks with ice elements."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, base, warning", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is not a rock?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["apse, roof, floor plan", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a house with a green, wooden-structured roof."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["earbuds, light, ring", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["bed, desk, window", "roof, truss, lamp"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a metal roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "46903bf029934b1989bc062dcb0a5531"], "properties": ["hat, food, bowl", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, color, purple", "house, table, chair"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d rendering of a house on a rock"], "question": "which image shows a house on an island?", "label": 1}, {"captions": [" of a black gun.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, black, gun", "black, screen, blank"], "captions_pred_pc": ["of a black leather bracelet on a white background", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which is not a screen", "label": 1}, {"captions": ["a white 3d-printed ring with intricate floral and leaf designs.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["da02455b180546f78f1eb0bb526aa5fe", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, material, design", "Eye color, Black, Purple"], "captions_pred_pc": ["a cross made of dots on a white background", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d printed white ring with intricate carvings", "a 3d model of a dragon with wings"], "question": "which entity has a color that is not black?", "label": 0}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["Drawer, Handle, Wood", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof truss, chimney, suspended ceiling", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["a, character, mario", "a, character, mario"], "captions_pred_pc": ["for a black and white sculpture of a person", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d model of a cartoon character jumping in the air"], "question": "which entity has a character that is running?", "label": 0}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, material, wood", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a building with yellow lines."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "f18e34286cf54876874f55ecc9018492"], "properties": ["composed of, white, cubes", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is plastic- shape is dice- color is white", "rusty, warning, metal"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["hat, bow, arrow", "a, material, clay"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, orange, white", "color, white, logo"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity has a logo", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a knife, blade, handle", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof truss, insulation, suspended ceiling", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["d6087023095446fbadef1721478373b2", "09f2cf267e954c958828325067bcc36a"], "properties": ["door, roof, window", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a white of a woman with her arms outstretched."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["floor plan, bathroom, pool", "image, color, white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d printed model of white and red robots on a red platform.", "a 3d printed model of white and red robots on a red platform."], "sample_ids": ["0fa560c2fd9f4422a97356c947ac3b46", "0fa560c2fd9f4422a97356c947ac3b46"], "properties": ["color, red, white", "color, red, white"], "captions_pred_pc": ["a black and white image of a person sitting on a bench", "a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a robot standing on top of a table", "a 3d model of a robot standing on top of a table"], "question": "which entity has a red platform?", "label": 0}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a clay pot with holes in it."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["desk, chair, lamp", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a white building with a red roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["building, roof, balcony", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, island, water", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, roof, tray", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a blue roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["house, roof, wooden", "roof, color, blue"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small white building with stairs and shelves."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, temperature, england", "building, stairs, shelves"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a white 3d model of a building with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1d1328346a464d2482463d6d5288e934"], "properties": ["color, shape, and size", "painting, door, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, texture", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["color, shape, texture", "pattern, color, shape"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d image of a city map on a black surface"], "question": "which entity has a pattern of blue and green?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["chocolate, mushroom, cake", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "832a022cdcc74763b0571e04af4e592b"], "properties": ["- color is red, blue, pink", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a lego model of a futuristic airplane"], "question": "which entity is not a spaceship?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small wooden house with a green roof."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, ceiling, kitchen", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a house with wooden framing and trusses."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, table, blocks", "frame, trusses, wood"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small black box on a purple square.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["75f209e543c046669099190953616acc", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of the letter l", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a black rock with writing on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, writing", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a white square with the words \"what tv\" on it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, red, blue, green", "color, white, words"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "c3a82df41875402285608ef13a55df57"], "properties": ["a, b, c", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["floor plan, heating system, ceiling light fixture", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of two rocks with ice elements."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, stairs, shelves", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " of two rocks with ice elements."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, room, table", "image is a rock with ice elements"], "captions_pred_pc": ["a black square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, grass, moss", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "a17477b445b3443189dad22f768b888b"], "properties": ["color, blue, green, yellow, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small white building with stairs and a white table."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "e30374c614f54fdb90f35b96b071349d"], "properties": ["Cabinet, Drawers, Filing", "building, stairs, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a black shark", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["black, mouth, teeth", "color, background, white"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "an image of a white background with a few small cubes on it"], "question": "which entity is not a shark?", "label": 0}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["bed, desk, window", "roof, color, yellow"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a large building with a roof and windows.", " a clay pot with holes in it."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, windows, building", "hole, material, clay"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["21639082215b4b179d574d2408124838", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, room, furniture", "house, rock, bird"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, white, black, white", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, head, bowl", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": [" a small house with a red roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["085db9059b744673b5623b5338e02196", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, red, house", "house, tree, hill"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, white, black, white", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a wooden shed with a gray roof."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["earbud, earpiece, earpiece", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " of a small white building with stairs and a lid."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, floorplan, gym", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, skyline, buildings", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a wine corkscrew"], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["variation, bread, pot", "a, type, corkscrew"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "832a022cdcc74763b0571e04af4e592b"], "properties": ["house, roof, blue", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a small house and barn", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, fence, snowy", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "c3a82df41875402285608ef13a55df57"], "properties": ["resembles, toy, castle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["island, terrain, water", "house, pool, balcony"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["roof, green, lawn", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with many windows"], "question": "which roof is blue", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a large metal building with a roof and truss structure."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "b85a99699ccd4bcba213322113bb253d"], "properties": ["shape is cube, color is black, white", "roof, truss, structure"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "of a metal grate on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["a, hole, rock", "desk, chair, lamp"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d rendering of a desk and chair in a room"], "question": "which entity has a desk?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", "star wars stormtrooper "], "sample_ids": ["9906caefe141465990aacb312e1025f0", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["light, floor, ceiling", "a, color, white"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 0}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["4f21fa937959487a96350af527d75421", "b494049bb15440949e465d54a72b2f02"], "properties": ["window, frame, room", "building, floorplan, gym"], "captions_pred_pc": ["a black and white drawing of a metal cage", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a white building with two floors"], "question": "which building has a floor plan?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "da8b5d21da9b4037982f29383d60b100"], "properties": ["shape is box, color is white, door is present", "resembles, toy, castle"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a tower made out of blocks"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "bf18bfd89efd43389781050230467d58"], "properties": ["tiers, building, stairs", "Lights, number, five"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["houses, trees, road", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a clay pot with holes in it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["chair, table, refrigerator", "hole, material, clay"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, tan, brown, orange", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black and white image of an object on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- material is wood, metal, metal", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a large metal building with a roof and truss structure."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a, hole, shelf", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, white, black, white", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["meat, bread, sausage", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["an image of a small white object on a gray background", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, roof, wooden", "house, tree, pool"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" of an old, rusty, green metal locker and a large wooden box.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["9797ff34c99a43be86d27868b3f9cb6d", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["metal, locker, box", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old metal locker", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, white, red, pink", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["Drawer, Pattern, White", "house, lake, pool"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a green, wooden-structured roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, door, window", "roof, color, green"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "854757ca755240f8b04576d899349151"], "properties": ["color, material, size", "cabinet, room, shelf"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, black, white", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, plane, sky", "roof, color, yellow"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" a black and gold pistol.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, black, gold", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["resembles, octopus, squid, spider, robot", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a piece of rock with a blue stick.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, rock, stick", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white photograph of a rock formation", "a 3d model of a house in the middle of a field"], "question": "which object is on a hill?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", "a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "1d2cfe3a03004b62b17d3ce065658302"], "properties": ["color, table, blocks", "color, table, blocks"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a table with four legs"], "question": "which entity has a table", "label": 0}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a house with a green, wooden-structured roof."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, handle, straps", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a spiral staircase with a railing in a small building."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["food, leaves, shredded paper, rocks", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["blue tarp, flower, small island", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " of a crab holding a rubik's cube."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, bench, rack", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a black and white image of a crab holding a cube"], "question": "which entity is not a crab?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a large metal building with a roof and truss structure."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a, bowl, cup", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, color, red", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a castle with two towers", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["broom, shovel, fireplace", "Wheels, laptop, robot"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", "a white of a woman with her arms outstretched."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["cover, black, plastic", "image, color, white"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is not a color image?", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["adec10493e06436c967d5797f7085225", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, material, shape", "box, paper clip, lock"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, light, jewels", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small red renault clio car.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color is red, make is renault, model is clio", "beige, white, round"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a 3d white cube with windows resembling a building."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "4a07a5293f024bb0a353954a056ef626"], "properties": ["a, head, bowl", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "18e392c5360146eda498c5edab25b15c"], "properties": ["location, area, material", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a building under construction"], "question": "which structure is made of beams and trusses", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a white castle composed of small cubes."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, color, green", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a house with a green, wooden-structured roof."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, eye, handle", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["box, cylinder, bottle", "throne, stairs, tree"], "captions_pred_pc": ["a black and white dots pattern on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, orange, leather", "resembles, toy, castle"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a tower made out of blocks"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof trusses, beams, suspended ceiling", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, structure, wall", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["texture, spikes, eyes", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "411c164757fc4de68dfecb35fa858223"], "properties": ["yellow, shape, wingspan", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, structure, greenhouse", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with a roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a spider-like creature with long arms and legs."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["tv, chair, laptop", "arachnid, leg, arm"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a building with blue metal framing and structure."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, shape, height", "color, blue, structure"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of dots on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a building under construction"], "question": "which building has a blue metal framing and structure?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of two rocks with ice elements."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, ceiling, hole", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small white building with stairs and a white table."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, texture", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "97e000ff41094665afd94ea565da8b13"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", "a white of a man with arms outstretched."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, tower", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["black, white, laptop", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a dishwasher with a dish inside it", "a white kite flying in the air against a gray background"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of toy story's cowgirl and woody characters wearing cowboy hats."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "dc2e01ffd285460ca85a47695626e011"], "properties": ["floor plan, heating system, ceiling light fixture", "image is toy story cowgirl and woody wearing cowboy hats"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a girl in a cowgirl costume"], "question": "which entity is a toy?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["floor, table, wall", "desk, chair, table"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a staircase in a room"], "question": "which entity has a desk", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color is purple, material is plastic, number of legs is four", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["of a black and white image of a baby carrier", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, shape, material", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "40921ffd69db479294554d261daf3035"], "properties": ["computer desk, laptop, monitor", "floor, railing, staircase"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a spiral staircase"], "question": "which entity has a floor?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "97e000ff41094665afd94ea565da8b13"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, material, wood"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", "a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "9050ebb69503447680d4757dfc708754"], "properties": ["a, character, person", "a, head, bowl"], "captions_pred_pc": ["a 3d model of a person", "in your own words a black and white illustration of a vase filled with beads"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a black and white drawing of a bunch of tangled wires"], "question": "which object has a head?", "label": 0}, {"captions": ["a 3d white cube with a square in the middle.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, size", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of the letter u", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an empty room"], "question": "which entity is a room?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, yellow, black", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, and size", "frame, beams, trusses"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building under construction"], "question": "which entity is not a building structure?", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a house with a green, wooden-structured roof."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["building, material, stone", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a house with a triangular roof"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, island, resembles, hawaii", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, text", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d6087023095446fbadef1721478373b2", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["door, roof, window", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["- color is white- shape is cubes- number is 1", "roof, air conditioner, house"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a window"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a spider-like creature with long arms and legs."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, suit, cell, phone, gun", "arachnid, leg, arm"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a spider-like creature with long arms and legs."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, beams, chimney", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["texture, spikes, eyes", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of a flower", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "a17477b445b3443189dad22f768b888b"], "properties": ["house, color, white", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, material, texture", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a skull", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, room, ceiling", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house with a wooden-framed roof structure."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, structure, truss", "roof, material, wood"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small building with windows and a roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, red, blue, green", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["books, paper, lamp", "box, paper clip, lock"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with a tree and a rock."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["bed, desk, window", "house, tree, rock"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, image, subject", "color, pattern, word"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, texture", "building, window, skeleton"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a white castle composed of small cubes."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, table, ceiling", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "cafc467aff2643e8b70149c4944263ee"], "properties": ["a, desk, laptop", "wing, knife, boat"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a roof and beams.", " a house with a wooden-framed roof structure."], "sample_ids": ["c139e8fcbdbc4f63a9c8a06152c4dc2e", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, beams, house", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a 3d object in the shape of a square", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white box with a green light.", " a white and blue building with a black roof."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, light", "color, white, blue, roof, black"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "bded33af34104b9686b845dfd18309a9"], "properties": ["building, floor, columns", "table, staircase, light"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["nut, bowl, ring", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["a box, a cup, a bottle, a jar", "desk, chair, lamp"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a desk and chair in a room"], "question": "which entity has more chairs", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, rock, pond", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a small white archway structure resembling a building."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "5ad02458cf394134a902e25001d2ffef"], "properties": ["location, area, material", "structure, building, archway"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d rendering of a white object on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": [" a table with a red and white striped base.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["1c5f4bb610644327ad0db547adb5499e", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["base, color, red, white", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of an object that is made up of many small dots", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a white desk with two legs", "a 3d model of a stack of books"], "question": "which object has a white and black striped base?", "label": 1}, {"captions": [" of a bench and lamp post.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "bf18bfd89efd43389781050230467d58"], "properties": ["A, bench, lamp post", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a white chandelier with five white shades"], "question": "which has more lights", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["light, floor, ceiling", "house, fence, playground"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["4ec4c815539f4f3f8cc2272e09f2aa41", "46903bf029934b1989bc062dcb0a5531"], "properties": ["earphones, wire, instrument", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a curved metal rod on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a small white house with windows and a black lid."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "4b40af369c1149949f5ccb68becd8430"], "properties": ["shape is cylinder, color is white, material is plastic", "white, windows, lid"], "captions_pred_pc": ["of a spike on a white background", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white house with three windows"], "question": "which object is white", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, skyline, buildings", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs and a ladder?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, room, ceiling", "roof, structure, suspended"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a white of a spaceship and building."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["water, river, island", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["chair, table, refrigerator", "house, tree, pool"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, size", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "b896a0898efe4059a776193c02132129"], "properties": ["lamp, harp, bowl", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a curved line", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["s, plane, house", "house, lake, pool"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a large building"], "question": "which entity has a lake?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "modern tan leather lounge chair."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["hair, legs, wings", "color, tan, leather"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a gray leather lounge chair with a metal base"], "question": "which entity is made of leather", "label": 1}, {"captions": [" of an egyptian temple featuring a pyramid, sphinx, and a building with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["40022305eaf44442915c9db03e25f781", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of an abstract design", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an ancient temple", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "ee440fcbc493488e879539d37a8d820e"], "properties": ["a, rock, paper", "island, fish, ice"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d map of the country of israel"], "question": "which object has more ice", "label": 1}, {"captions": ["white 3d canoe model", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["1d0342b454884db4bb88c939a69f6362", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, material", "roof, ceiling, hole"], "captions_pred_pc": ["of a black and white photo of a surfboard", "a black and white image of a square with dots on it"], "captions_pred_image": ["a white canoe on a gray background", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a computer with a green screen, keyboard, and white box."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "fb1e5a04ef4644f98219e1d5d52ab073"], "properties": ["s, stick, leaf", "screen, keyboard, box"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a vintage computer royalty-free 3d model preview"], "question": "which entity has a screen", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, pink", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white archway structure resembling a building."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5ad02458cf394134a902e25001d2ffef"], "properties": ["color, shape, and size", "structure, building, archway"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a white object on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["bedroom, bathroom, bed", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a wooden shed with a gray roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, tree, pool", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "d81d13362ae04371bb2cba46e4939665"], "properties": ["building, roof, white, cubes", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a city on a white background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a black and white of a knife/sword with a handle."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- material is plastic- color is white- shape is cylinder", "image, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a black and white knife on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["085db9059b744673b5623b5338e02196", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, red, house", "roof, material, wood"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["building, floorplan, gym", "color, frame, shape"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a building structure"], "question": "which building is a cube?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of an ak-47 rifle."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "18e1f60286d346728f650984f4ae70aa"], "properties": ["a, bird, hook", "AK-47 rifle is a weapon"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "of a black and white image of a fishing rod"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a rifle on a gray background"], "question": "which is a weapon", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, green, orange, star", "hat, skull, bread"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": [" of a drum set", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["0bf7985bf5f94236b8b5c2965270e08b", "411c164757fc4de68dfecb35fa858223"], "properties": ["size, color, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a toy tricycle on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a drum kit royalty free 3d model preview no 1", "a 3d model of a sea urchin"], "question": "which entity is made of a shell", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a four-legged metal workbench with shelves."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- material is wood, rusty, horned", "Four legs, Metal, Shelf"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a machine gun with additional items."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["ceiling, light, desks", "gun, type, machine gun"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a submachine gun"], "question": "which object is a type of gun", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "b896a0898efe4059a776193c02132129"], "properties": ["boat, table, chairs, umbrella, solar panel", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, yellow, blue", "metal, cross, clock"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["earbuds, light, ring", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small building with windows and a roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, stairs, shelves", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a train, a ship, a boat", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["glass, metal, balls", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a wine glass", "for a black and white image of an object on a white background"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a small wooden house with a roof."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, brown, flat", "roof, house, wooden"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Drawer, Handle, Wood", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a house with a roof"], "question": "which entity has a roof color", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "a177693cc8c7428292680816001b48c6"], "properties": ["color, white, holes", "black, white, laptop"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of a room with dots on the floor"], "captions_pred_image": ["a white bench with a shelf on top", "a dishwasher with a dish inside it"], "question": "which entity is a coffee table?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a wooden staircase with a railing and table."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "956247bea850458199c651037d4b1d7f"], "properties": ["color, table, ceiling", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a table with a staircase"], "question": "which staircase has a table", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "d81d13362ae04371bb2cba46e4939665"], "properties": ["cover, torn, open", "hat, bow, arrow"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white image of a torn bank note", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a house with a roof and beams."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, fence, playground", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" of a wheeled hospital bed", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["wheeled, bed, hospital", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["mossy, rock, grass", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a metal building with a purple roof and cage structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["color, shape, and size", "roof, purple, structure"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white image of a bench"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a metal roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "houses, trees, road"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, roof, block", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "4a889132cc444d10bfcbf6c760984416"], "properties": ["image is rock formation with a white cliff and a rock", "a, color, white"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a desk and chair"], "question": "which entity is not a rock formation?", "label": 0}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["apse, roof, floor plan", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, size", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "d81d13362ae04371bb2cba46e4939665"], "properties": ["water, boat, rock", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, green, leaf", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a green mountain with trees and grass."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["Lights, number, five", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small black box on a purple square.", " a wooden billiard table with legs."], "sample_ids": ["75f209e543c046669099190953616acc", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["chair, table, refrigerator", "meat, bread, sausage"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "333b77483f1b40468dec28906887151a"], "properties": ["color, white, pen, logo", "3D, material, white gold"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a black ring on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a white gold ring with an oval shaped diamond in the center"], "question": "which ring is white", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a potted christmas pine tree."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["a, hole, shelf", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, eagle, wood", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, shirt, pants", "roof, material, wood"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large building with a roof and windows."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "32d1fbd3ee91426882290305f70021e6"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a house", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["building, stairs, shelves", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small table"], "question": "which building has a bathroom?", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a wooden shed with a gray roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["picture, plaque, person", "roof, color, gray"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["bed, desk, window", "hat, pants, shirt"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["background, color, white", "roof, brown, flat"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small wooden house with a green roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, color, pink", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, material, size", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, and material", "platform, color, orange"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a motorcycle on a pedestal"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["color, shape, and size", "bed, desk, window"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white drawing of a curved line"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["house, tree, pool", "roof, ceiling, hole"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof and a square ceiling with a hole?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " of a machine gun with additional items."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["color, light, handle", "gun, type, machine gun"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a submachine gun"], "question": "which gun is a machine gun", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "7f8942ef51dd4246993a587a12df168c"], "properties": ["arm, light, sign", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, head, bowl", "roof, color, yellow"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a house with a roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, shape, light", "ashtray, color, gray"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is a ashtray?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "9b6a637ead444bd28452178c74697653"], "properties": ["color, leg, tail", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["a black and white image of a sword on a white background", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which entity is a skateboard?", "label": 1}, {"captions": ["a baseball card in a clear plastic case.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5046b4bb61e4480a8c0e8911c2053a04", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["case, baseball, card", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a pencil on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photo of a hockey player's autographed jersey hanging on a wall", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house with a wooden-framed roof structure."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, roof, green", "roof, material, wood"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a house with a wooden-framed roof structure."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["size, color, shape", "light, fixture, square"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a desk with a table on top"], "question": "which light fixture is square", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["table, staircase, light", "floor, staircase, table"], "captions_pred_pc": ["a black and white photo of the letter g", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["royalty-free of a golden gramophone with a wooden base and umbrella.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["90bd720f583c4130a6273f5a94f6ae69", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["image is royalty-free, gramophone, base", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a water droplet in the shape of a snowflake", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an antique gramophone", "a 3d model of an antique gramophone"], "question": "which image has a wooden base?", "label": 0}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, plane, room", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a green mountain with trees and grass."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["floor, wall, roof", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["mossy, rock, rocky", "house, building, people"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a small town in the middle of a field"], "question": "which entity does not feature houses", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a wooden table with a plant on it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["chair, table, refrigerator", "table, plant, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["metal, laptop, light fixture", "floor, staircase, balcony"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a clay pot with holes in it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["8ffcd902aa0a4efea55ca1dbab28f462", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["hole, material, clay", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a clay sculpture of a face with holes in it", "a 3d model of a bench on a wooden floor"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large orange pumpkin."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["floor plan, heating system, ceiling light fixture", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, tan, brown, orange", "roof, color, yellow"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "a2354f13774340d392fbf33564934aab"], "properties": ["image, building, painting", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["black, white, laptop", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a tree"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a white chest of drawers with legs."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, shape, and size", "chest of drawers, legs, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, shape, texture", "color, head, white and brown"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["roof, color, pink", "roof, purple, beams"], "captions_pred_pc": ["above a black and white image of a metal grate", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof structure royalty free 3d model no."], "question": "which roof is made of wood", "label": 1}, {"captions": [" a wooden staircase with a red and white railing and a red arrow.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["bb8bb4c9972d4b718b8bbd3ed5fdd14d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["arrow, red, white", "arrow, red, white"], "captions_pred_pc": ["above a black and white image of a square with a white cross in the center", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow pointing to the top?", "label": 0}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "d49d8ed244094349a99e4faca05e0690"], "properties": ["boxing gloves, heart, hand", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of two rocks with ice elements."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, fence, dog", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small white building with stairs and a white table."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "e30374c614f54fdb90f35b96b071349d"], "properties": ["resembles, octopus, squid, spider, robot", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "a, material, clay"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, black, blue", "house, tree, hill"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a large metal building with a roof and truss structure."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "b85a99699ccd4bcba213322113bb253d"], "properties": ["structure, roof, pitch", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a long metal fence"], "question": "which structure has a roof with a truss?", "label": 1}, {"captions": [" of a machine gun.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["gun, barrel, caliber", "house, roof, green"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " of two rocks with ice elements."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image, house, ceiling", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, eagle, wood", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["hat, cup, bowl", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white map of the island of malta"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a clay pot with holes in it."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, material", "hole, material, clay"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of two rocks with ice elements."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, roof, wooden", "image is a rock with ice elements"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " white crocs clogs with blue straps and holes."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "4622e88fd9264b37997671efeb73af85"], "properties": ["color, table, ceiling", "color, white, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity is a shoe?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a crab holding a rubik's cube."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["house, yard, surrounding buildings", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a wooden staircase.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["material is wood, staircase, wood", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "d81d13362ae04371bb2cba46e4939665"], "properties": ["building, floorplan, gym", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white building with two floors", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a wooden billiard table with legs."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a, color, white", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["blue tarp, flower, small island", "house, table, chair"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["red, mouse, handwriting", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, texture", "color, black, visor"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a cube with a wooden ball on top.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is cube, material is wood, color is white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a white human skull with broken bone elements."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " a wooden roof structure with a pink roof."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["wheeled, cart, cannon", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["shape, color, material", "shape is cube, color is black, white"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white 3d model of a building"], "question": "which entity is a cube shape?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "5414d75e47104589837f3df8b6de6d22"], "properties": ["background, color, white", "beige, white, round"], "captions_pred_pc": ["a black line on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white of a house with a hole in the ceiling."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["background, color, white", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "aae2c42740a04fd68068f5707111d26f"], "properties": ["location, field, gravestone", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "5017581716c7402581a82ebf08d427a3"], "properties": ["roof structure, truss, ceiling", "Shelf, color, white"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d rendering of a white shelf"], "question": "which object has a ceiling", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a yellow and blue toy submarine."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["turrets, flags, towers", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a submarine toy"], "question": "which toy is yellow and blue?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["bed, desk, window", "roof, trusses, ladder"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, rock, nail", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a 3d model of a group of trees"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e098706085a44898abbd549693d12a64"], "properties": ["room, bed, desk", "color is black, white, orange"], "captions_pred_pc": ["a black and white drawing of a door", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black and white?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a small wooden house."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, wall, color", "house, material, wood"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["b5afccae993346079483507296fbb029", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["shape is square, material is metal, color is rusty", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a small white table with a chair"], "question": "which object is made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["graffiti, chinese writing, door", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small white house with a roof."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "roof, color, white"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " a small white house with a roof."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["wing, color, white", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" an old lantern with moss on it.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["62925f26fd624310bd6b31136fe8e706", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["moss, lantern, old", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old lantern", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " of a large axe with a cross on top."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, text", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a screw", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, b, c", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, material, structure", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white drawing of a room with dots", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity is a statue?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white building with stairs and shelves."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "9e1f64d4fd514059be934077717536dc"], "properties": ["roof, room, ceiling", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a white of a spaceship and building."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, tan, brown, orange", "image, building, spaceship"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a tree"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white map of germany on a white background", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "4a889132cc444d10bfcbf6c760984416"], "properties": ["house, tree, rock", "a, color, white"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": ["a yellow circle with a black outline.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, outline, circle", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["background, color, white", "room, door, shelf"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["shape, color, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of an antique gramophone"], "question": "which object is made of a base", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "990f06da2ba4488da8371f68da6b4523"], "properties": ["building, stairs, shelves", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house with a wooden roof"], "question": "which building has a roof truss structure?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["collection, moose, skull", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a white human skull with broken bone elements."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, and material", "color, white, skull"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a human skull in white"], "question": "which entity is made of a material that is not food", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "06a1c233fb444830b577aa06e2c01294"], "properties": ["meat, bread, sausage", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a brush on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["an image of a small white object on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small wooden sailboat.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["size, material, sails", "color, frame, shape"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of a building structure"], "question": "which object is made of wire?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small white house with a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, lake, pool", "roof, color, white"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, staircase, window", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of two rocks with ice elements."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["desk, chair, lamp", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a large steel building with a pool."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, door, window", "building material, pool, steel"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a small wooden house with two roofs."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["roof, purple, suspended", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small barn"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["turrets, flags, towers", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small off-road toy vehicle with wheels.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["7ef2589539b84054b2185633112825cc", "bf18bfd89efd43389781050230467d58"], "properties": ["wheel, toy, vehicle", "Lights, number, five"], "captions_pred_pc": ["of a black and white photo of a cross on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dune buggy royalty free 3d model preview no 3", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a tree stump with roots."], "sample_ids": ["d6087023095446fbadef1721478373b2", "fa6e88ba438f4597a7230789124c8147"], "properties": ["door, roof, window", "root, tree, stump"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white illustration of a galaxy"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a tree stump in the middle of a field"], "question": "which entity is a stump?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["size, color, shape", "lion, statue, fountain"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a wooden roof structure with a pink roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, staircase, window", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "b896a0898efe4059a776193c02132129"], "properties": ["low poly, llama, kangaroo", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "b896a0898efe4059a776193c02132129"], "properties": ["image is rock formation with a white cliff and a rock", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white map of spain on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["resembles, toy, castle", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "c3a82df41875402285608ef13a55df57"], "properties": ["label, color, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a 3d white cube with windows resembling a building."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, black, shade, black", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a 3d white cube with windows resembling a building."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "4a07a5293f024bb0a353954a056ef626"], "properties": ["graffiti, bench, wall", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "a17477b445b3443189dad22f768b888b"], "properties": ["food, leaves, shredded paper, rocks", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["- material is stone - shape is bat", "door, lock, handle"], "captions_pred_pc": ["a black and white image of an object on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, skyline, buildings", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house with a roof"], "question": "which building is yellow", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["building, balcony, street", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " of a small white building with stairs and a lid."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["shape, color, material", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a pair of socks", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, eagle, wood", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["black, white, laptop", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a large white box"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a robotic warrior with a sword."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["floor plan, heating system, ceiling light fixture", "weapon, sword, robot"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a large building with a roof and windows.", " of two rocks with ice elements."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, windows, building", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["room, bed, desk", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a spider-like creature with long arms and legs."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, rock, paper", "arachnid, leg, arm"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, background", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " of a white chest of drawers with legs."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["desk, chair, table", "chest of drawers, legs, white"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a purple and green sphere.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " of a large axe with a cross on top."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, red, green, yellow", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a toothbrush", "for an axe on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small house with a yellow roof and chimney."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["house, fence, dog", "roof, yellow, chimney"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["building, roof, white, cubes", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a large steel building with many columns and a pool."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, floorplan, gym", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white building with a red roof."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, height", "color, white, roof, red"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a clay pot with holes in it."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["tiers, building, stairs", "hole, material, clay"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["building, tree, plane", "cup, bottle, chessboard"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which entity has a chessboard?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "9968e06a62e8487ea33460e640abc573"], "properties": ["resembles, toy, bookshelf", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "d5722274fb094222aca90bb59f4dff09"], "properties": ["background, color, white", "chest of drawers, cabinet, white"], "captions_pred_pc": ["a black and white image of a cat's head", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a white cabinet with a drawer"], "question": "which entity has a white chest of drawers?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of two rocks with ice elements."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["chair, table, refrigerator", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["earbuds, light, ring", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, sword, gun", "house, pool, balcony"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small house with a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, structure, truss", "roof, house, small"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a wooden shed with a gray roof."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, and material", "roof, color, gray"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a four-legged metal workbench with shelves."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["location, field, gravestone", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a whale", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, light, handle", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["size, material, color", "paint, rust, concrete"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of a concrete wall"], "question": "which object is made of rust", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "6b745457e06840119058883b35f78f58"], "properties": ["top, color, wood", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, horns, features", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d rendering of a small white table with a chair"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "b896a0898efe4059a776193c02132129"], "properties": ["image is a sculpture of an angel on a wall", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of an ancient statue"], "question": "which statue is made of stone", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["roof, truss, lamp", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ee440fcbc493488e879539d37a8d820e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["island, fish, ice", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a mountain on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d map of the country of israel", "a black and white image of a house in the middle of a field"], "question": "which island has a house?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with stairs and a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["A, a, a", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " of two rocks with ice elements."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, white, pink, eyes", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is not a rock?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, green, tiled", "house, roof, wooden"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "c3a82df41875402285608ef13a55df57"], "properties": ["color, yellow, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white helicopter flying in the air", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a large steel building with a pool."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, material, stone", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small house with a roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, house, small", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- color is white- shape is flower- pattern is lace", "lion, statue, fountain"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white image of a metal object"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d image of a lion statue on a wall"], "question": "which is not a statue", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, table, blocks", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a stone wall featuring carvings and statues."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, shape, text", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["shape is sphere, color is white, material is plastic", "ring, helmet, bowl"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d printed ring in white 3d printed material"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small building with a staircase in a room."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["house, table, chair", "room, staircase, building"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of the letter l"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase in a room?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["floor plan, heating system, ceiling light fixture", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "an oval table with a mouse on top of it"], "question": "which entity has a table lamp and a ceiling light?", "label": 1}, {"captions": ["\"multiple white cubes arranged in a row on a gray background.\"", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["17c8222d4ce04e518117078e7de6aaed", "a17477b445b3443189dad22f768b888b"], "properties": ["color, background, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a box with the words 'box 2' and 'thoughtful'", "a black and white image of a square with dots"], "captions_pred_image": ["an image of a white background with a few small cubes on it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a stone wall with a window and a clock."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["- color is red, blue, pink", "window, clock, wall"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white barn with a metal roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "4ca3342a96824684845f7d0e062ab176"], "properties": ["water, river, island", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a barn"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is wood, metal, metal", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a white chest of drawers with legs."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["black, white, coffee table", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small wooden house with a green roof."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, hill, deer", "roof, color, green"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "7f8942ef51dd4246993a587a12df168c"], "properties": ["lighthouse, fountain, crater", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a house with a blue roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, blue", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "c3a82df41875402285608ef13a55df57"], "properties": ["image, color, pink", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, yellow, chimney", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small building with windows and a roof."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, fence, dog", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white and yellow knife with a wooden stick design.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["623bbf500b754624b535b79976c65616", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a knife on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white image of a tall pole with a blade on top", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "92498f398e244020a867686729633610"], "properties": ["a room, a cake, a table", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" of a spider-man mask and head.", "a pixelated eagle with a yellow and white head and yellow beak."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "9ce77b4cc05c4060a74b8f2568e6bbe8"], "properties": ["a, head, mask", "eagle, head, beak"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white image of a knife on a white background"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d image of a penguin in a pixelated world"], "question": "which entity has a yellow beak", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "9968e06a62e8487ea33460e640abc573"], "properties": ["red, sphere, resembles", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, grass, moss", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "Headstock, Guitar, Head"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["roof trusses, beams, suspended ceiling", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a wooden-cased radio."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["size, material, lighthouse", "case, material, wood"], "captions_pred_pc": ["a black and white photo of a water droplet", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a white 3d-printed skull model."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "10fb0de0bec64ec8a424e0b404670ba5"], "properties": ["color, red, blue, structure", "color, white, model"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "in 15 words or less a black and white drawing of a fish"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of an animal's head on a gray background"], "question": "which entity is a model?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a futuristic white sports racing car."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["a, hole, rock", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a lace belt", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a futuristic sports car"], "question": "which object is white", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["throne, stairs, tree", "3d, model, collection"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of objects?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a clay pot with holes in it."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a train, a ship, a boat", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a house with wooden framing and trusses."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, pink, green", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "glass, metal, balls"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a low poly 3d model of a rock", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["- material is plastic- color is green- shape is box", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "990f06da2ba4488da8371f68da6b4523"], "properties": ["- color is white- shape is cube- material is plastic", "roof truss, beams, structure"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a house with a wooden roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a barrel and a cube together.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a, barrel, cube", "room, staircase, bus"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, pattern", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a large house with a roof on a platform."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, yard, surrounding buildings", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a blue plastic stool."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["Headstock, Guitar, Head", "color, plastic, blue"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, sphere, molecule", "throne, stairs, tree"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "bded33af34104b9686b845dfd18309a9"], "properties": ["structure, columns, roof", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a window", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a small house with a blue roof.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, color, blue", "building, plane, room"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small building with windows and a roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, roof, wooden", "roof, windows, building"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small wooden house with a green roof."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, green, tiled", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a house with a ladder"], "question": "which roof is greener", "label": 0}, {"captions": [" a small house with stairs and a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, stairs, house", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, glasses, character", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a, booth, bed", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- color is white - shape is box - material is plastic", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, island, resembles, hawaii", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["collection, plane, car", "plane, ship, bird"], "captions_pred_pc": ["above a black and white image of a piece of paper", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a white and blue building with a black roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, background, gray", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a white roof", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["frame, roof, trusses", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, red, blue, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a table and chairs on a white background"], "question": "which structure has a roof that is yellow?", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a large white and metal building with a metal roof structure."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["a, material, steel", "roof, metal, white"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a clay pot with holes in it."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- color is red, blue, pink", "hole, material, clay"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white and yellow knife with a wooden stick design.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["623bbf500b754624b535b79976c65616", "92498f398e244020a867686729633610"], "properties": ["color, shape, material", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white image of a tall pole with a blade on top", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["building, balcony, street", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", "3d silver sculpture resembling a triangular wing with a white arrow design."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "578cb910905042939d876af28e29eb2f"], "properties": ["a, ball, mushroom", "wing, silver, white"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white illustration of a pair of hands"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a white paper airplane flying against a gray background"], "question": "which object has a white arrow design?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["shape is sphere, color is white, material is plastic", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which object is made of wood", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["hat, food, bowl", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d image of a room with a person in it"], "question": "which entity has a broken window", "label": 1}, {"captions": [" a small building with a roof.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, building, small", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a large house with a roof on a platform."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, purple", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, pair", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "6b745457e06840119058883b35f78f58"], "properties": ["color is white, yellow, plastic", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a building with dots"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["3D, toothpick, skateboard", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a house with wooden framing and trusses."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, rock, paper", "frame, trusses, wood"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a gun with red wires and a red handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, red, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of an object", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendered image of a gun", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, model, luggage", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, window, statue", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a celtic stone cross.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "e2645ac544844f3c981203134a99c30c"], "properties": ["- material is stone- shape is cross- color is black", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["for a black and white image of a watch", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white circular pattern on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "4806b382466247ad9265fc8240a22d3d"], "properties": ["red, mouse, handwriting", "rocky, rug, puddle"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity is a puddle on?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- material is plastic- color is white- shape is cube", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a small wooden house with a green roof."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, green, handle", "roof, color, green"], "captions_pred_pc": ["of a small black object on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pair of blue wireless earbuds with a black case.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["88d8bccf701145dea3fc4df8781ddb13", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["blue, case, earbuds", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a pair of earrings in the shape of a butterfly", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a pair of earphones royalty free 3d model preview no.1", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["roof, room, ceiling", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white plastic tray"], "question": "which object is white", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["a, booth, bed", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "40921ffd69db479294554d261daf3035"], "properties": ["table, staircase, light", "floor, railing, staircase"], "captions_pred_pc": ["a black and white photo of the letter g", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a multicolored metal building structure with a roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, structure, greenhouse", "color, roof, structure"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a machine gun.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "cafc467aff2643e8b70149c4944263ee"], "properties": ["gun, barrel, caliber", "wing, knife, boat"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a curved wing and knife?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "bded33af34104b9686b845dfd18309a9"], "properties": ["white, top, writing", "table, staircase, light"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, light", "platform, color, orange"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white illustration of a bicycle"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of a motorcycle on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small wooden house with a green roof."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["- material is plastic- color is green- shape is box", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "a17477b445b3443189dad22f768b888b"], "properties": ["orange, forklift, parking lot", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "3d silver sculpture resembling a triangular wing with a white arrow design."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "578cb910905042939d876af28e29eb2f"], "properties": ["a, desk, laptop", "wing, silver, white"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a pair of hands"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a white paper airplane flying against a gray background"], "question": "which object is made of silver", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small white box with a shelf and a hole in it."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["a, bird, lake", "a, hole, shelf"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a white box on a gray background"], "question": "which entity has a hole in it", "label": 1}, {"captions": ["\"ak47 : high-quality, versatile model for sale, compatible with 3ds max, maya, blender, and other 3d software.\"", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c9cc23ce760c4cb1bd0eedf5d79f77e7", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["ak47, software, 3ds max", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a camera on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ak-47 rifle royalty free 3d model preview no 2", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["table, bench, deer", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" of a white cross with a statue of jesus and a man on a pedestal.", " of a wine corkscrew"], "sample_ids": ["39b72b2ea03345c595c1d63a7b54987e", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, pedestal, statue", "a, type, corkscrew"], "captions_pred_pc": ["for a black and white photo of a cell phone on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of the crucifixion of jesus on the cross royalty-free 3d model", "a 3d model of a wine bottle opener"], "question": "which object is not a type of corkscrew?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["sandbox, sand bucket, wooden blocks", "building, plane, room"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor, staircase, table", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, black, green", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, plane, sky", "roof, material, wood"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a sword with a wooden handle."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["texture, spikes, eyes", "handle, material, wood"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a sword"], "question": "which object has a handle made of wood", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a small, snow-covered house."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a person's face", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", "a low-poly of a white, shattered sphere."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, material", "sphere, color, texture"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a white glass beer mug."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- material is stone - color is blue - shape is arrowhead", "color, white, glass"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a small wooden house with a green roof."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "a2354f13774340d392fbf33564934aab"], "properties": ["staircase, railing, building", "building, roof, yellow"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["bed, desk, window", "island, mountain, grass"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["painting, door, wall", "island, mountain, grass"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["roof, air conditioner, house", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["background, color, white", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a large house with a roof on a platform."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "cb3e09a301b746918a682a595037c7f7"], "properties": ["books, paper, lamp", "roof, platform, house"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white round table with a red accent.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["fea62a865b4e40899d95785533818329", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, white, red", "roof, green, tiled"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": ["purple speech bubble and circle", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white speech bubble on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["nut, bowl, ring", "box, paper clip, lock"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small white building with stairs and a white table."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "e30374c614f54fdb90f35b96b071349d"], "properties": ["house, staircase, window", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, yard, surrounding buildings", "building, room, sky"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a wooden billiard table with legs."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["table, stairs, ladder", "legs, material, wood"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a black and white image of a pool table"], "question": "which table has legs", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a wooden roof structure with a pink roof."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, bird, hook", "roof, color, pink"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, shape, and size", "image, city, spoon"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["- material is white- color is white- texture is textured", "color, background, white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a cube", "an image of a white background with a few small cubes on it"], "question": "which object is whiter", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a white glass beer mug."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, material, frame", "color, white, glass"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a small wooden house with a green roof."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, size", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["light switch, electrical outlet, furniture", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["fireplace, bench, log", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["white balloon floating in the air.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["033a61d66f7646ceaac357b502a5f5dc", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is white, shape is balloon, material is air", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white circular pattern on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a white balloon on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a character wearing glasses and a hat."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["water, river, island", "hat, glasses, character"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a green skull and sphere.", " a small triangular-shaped object."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, skull, sphere", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", " a small white building with stairs and a white table."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "e30374c614f54fdb90f35b96b071349d"], "properties": ["texture, color, shape", "building, stairs, table"], "captions_pred_pc": ["a black and white square made of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small wooden house."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, structure, greenhouse", "house, material, wood"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["shape is sphere, color is white, material is plastic", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, pattern, material", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a throne with a tree on it"], "question": "which entity is not a throne?", "label": 0}, {"captions": [" a two-story small apartment building with a roof.", " a small white house with a roof."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["two-story, roof, building", "roof, color, white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, material", "building, plane, room"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small building with windows and a roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["chair, table, refrigerator", "roof, windows, building"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, roof, structure", "moss, mushroom, grass"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a clay pot with holes in it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, black, white", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, head, bowl", "house, rock, bird"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d rendering of a house on a rock"], "question": "which object has a bird on it?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["texture, spikes, eyes", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a flower", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a white box with colored buttons on it.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small white house with a staircase and a window."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, base, warning", "house, staircase, window"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d rendering of a small room with a staircase"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "990f06da2ba4488da8371f68da6b4523"], "properties": ["house, fence, dog", "roof truss, beams, structure"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a house with a wooden roof"], "question": "which house has a wooden roof truss structure and ceiling with wood beams", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, white, containers", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a character wearing glasses and a hat."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["earbud, earpiece, earpiece", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, city, train", "island, terrain, water"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a large house with a roof on a platform."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, structure, wall", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["hat, bag, blanket", "hat, mustache, chef"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "887e410d07854396b563325ae1929583"], "properties": ["roof, air conditioner, house", "hat, mouse, bear"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color is white, material is plastic, shape is box", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", "star wars stormtrooper "], "sample_ids": ["fb68393941804e769d5c9b372864a642", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["texture, color, shape", "a, color, white"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small white building with stairs and a white table."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e30374c614f54fdb90f35b96b071349d"], "properties": ["hat, sword, gun", "building, stairs, table"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, hole, shelf", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Title, Image, Color", "a, material, clay"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small purple plastic chair with holes."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["location, field, gravestone", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a whale", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["window, clock, wall", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a close up of a mushroom?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["image, color, pink", "house, fence, dog"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which image has a fence?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small building with a staircase in a room."], "sample_ids": ["d6087023095446fbadef1721478373b2", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["door, roof, window", "room, staircase, building"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, roof, toothbrushes", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a large metal building with a roof and truss structure."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "b85a99699ccd4bcba213322113bb253d"], "properties": ["Headstock, Guitar, Head", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a long metal fence"], "question": "which object has a roof and truss structure", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with a tree and a rock."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["A, a, a", "house, tree, rock"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "887e410d07854396b563325ae1929583"], "properties": ["color, shape, and size", "hat, mouse, bear"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is a teddy bear?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, roof, blue", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a brick building with a roof structure and roof truss."], "sample_ids": ["d6087023095446fbadef1721478373b2", "84e8acad28664a738df69d719df9e263"], "properties": ["door, roof, window", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["floor plan, bathroom, pool", "building, material, stone"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a, booth, bed", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, bowl, cup", "a, material, clay"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "5414d75e47104589837f3df8b6de6d22"], "properties": ["building, stairs, lid", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, purple", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a, hill, deer", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["size, material, logo", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in the title the logo for maria ruiz", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a small white building with stairs and a white table."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, text", "building, stairs, table"], "captions_pred_pc": ["the logo for carl meyer", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of a building with a staircase"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a wooden roof structure with a pink roof."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, yellow, white, wheels", "roof, color, pink"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, black", "a, material, clay"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "b896a0898efe4059a776193c02132129"], "properties": ["metal, rusted, paper", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a cube with a wooden ball on top."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "874f49c0bdd04c9cbcc54fcac1a337ad"], "properties": ["color, shape, and size", "shape is cube, material is wood, color is white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in one line a black and white image of a square made up of tiny dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a ball sitting on top of a cube"], "question": "which object is a cube?", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, metal, white", "roof, material, wood"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a white and blue building with a black roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, metal, white", "color, white, blue, roof, black"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["hill, field, castle", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a spider-like creature with long arms and legs."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["boxing gloves, heart, hand", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of the human heart", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a white castle composed of small cubes."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, room, table", "composed of, white, cubes"], "captions_pred_pc": ["a black square on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small white house with a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, structure, truss", "roof, color, white"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a house with a green, wooden-structured roof."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a small wooden house with two roofs."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["background, color, white", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a cat's head", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a small barn"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, plane, small plane", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "bedroom, bathroom, bed"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, structure, truss", "house, roof, blue"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a wooden barrel."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "77ceb4db6ddc4a6c8c4a83ab1519e78b"], "properties": ["- material is plastic- color is green- shape is box", "material is wood, shape is barrel, color is brown"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a gray and white barrel"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["candle, color, shape", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a shower head", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, table, ceiling", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a building with blue lines and structure."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "3bf337b699664ca0adf0817962d58718"], "properties": ["color, horns, features", "color, shape, structure"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a building under construction"], "question": "which entity is a building?", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a house with a wooden-framed roof structure."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, black, green", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, blue, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "be1376023c274bdda995d54f3694157f"], "properties": ["color, shape, gun", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, stairs, house", "roof, structure, suspended"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a metal roof"], "question": "which house has a roof with a structure?", "label": 1}, {"captions": ["white korean word on a gray background.", " a white castle composed of small cubes."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, background, font", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a small black box on a purple square.", " a small white house with a roof."], "sample_ids": ["75f209e543c046669099190953616acc", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, size", "roof, color, white"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["white 3d printed skull, shell, snowy mountain, spiked head sculpture, and blob.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["2a99681d7ec0460790da639cecec9a24", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["3D Printed, white, skull", "broom, shovel, fireplace"], "captions_pred_pc": ["a 3d model of a molecule on a white background a 3d model of a molecule on a white background royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d sculpture of a seashell on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, truss system, framing", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["building, color, black and white", "bedroom, bathroom, bed"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a small room with a bed, desk, and chair"], "question": "which building is white", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, bowl, cup", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a wooden roof structure with a pink roof."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, ball, mushroom", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of a mushroom?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "b896a0898efe4059a776193c02132129"], "properties": ["mossy, rock, rocky", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "6b745457e06840119058883b35f78f58"], "properties": ["black, white, laptop", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a building with dots"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house with a blue roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, plane, town", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a green skull and sphere.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "b896a0898efe4059a776193c02132129"], "properties": ["color, skull, sphere", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "a17477b445b3443189dad22f768b888b"], "properties": ["color, umbrella, coat", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["background, color, white", "door, lock, handle"], "captions_pred_pc": ["a black line on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a white of a spaceship and building."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, roof, toothbrushes", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a twisted white rope."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "7dce7f24ef2d4f6e88e3bf5cee50e603"], "properties": ["color, horns, features", "color, white, twist"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a spiral on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a white rope tied into a knot on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a small wooden house with a roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, color, pink", "roof, house, wooden"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, truss, lamp", "roof, beams, chimney"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["bedroom, bathroom, bed", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c017bfb82db1460cafff604c0808793f"], "properties": ["color, light, jewels", "a, suit, cell, phone, gun"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man in a suit holding a cell phone and a gun?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, white, black, white", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a wooden-cased radio."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, background, white", "case, material, wood"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, head, bowl", "roof, material, wood"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a piece of fabric", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, text", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a room"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["color, shape, material", "building, door, clock"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white image of a church with a steeple"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small house with a red roof.", " a small white house with a roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, red, house", "roof, color, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, staircase, window", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["roof, green, lawn", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "411c164757fc4de68dfecb35fa858223"], "properties": ["shattered, resembles, broken phone", "resembles, sea urchin, shell"], "captions_pred_pc": ["for black ink brush strokes on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "star wars stormtrooper "], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a lamp, a syringe, a light pole", "a, color, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "94704d86c22c4bdfb86ac24979926066"], "properties": ["blue tarp, flower, small island", "blue tarp, flower, small island"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a 3d rendering of a fish in the air"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white image of a piece of paper on the ground"], "question": "which entity has a blue tarp", "label": 0}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a person breaking through a brick wall."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["a, b, c", "image, brick, wall"], "captions_pred_pc": ["above a black and white drawing of a submarine", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of a white chest of drawers with legs."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["boat, table, chairs, umbrella, solar panel", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a white box.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["068453935e42406da0e8bc12c3db36f3", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a white box on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["food, leaves, shredded paper, rocks", "color, shape, color"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is wood, metal, metal", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, desk, laptop", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a black building.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, building", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, handle, zipper", "door, lock, handle"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, plane, town", "building, plane, city"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it?", "label": 1}, {"captions": [" a small building with windows and a roof.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, windows, building", "box, paper clip, lock"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["candle, color, shape", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a shower head", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a potted christmas pine tree."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["house, lake, pool", "a, color, green"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, tan, brown, orange", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a floor plan"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["- material is plastic- shape is dice- color is white", "Brown, metal, lock"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "b896a0898efe4059a776193c02132129"], "properties": ["roof, wall, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "b896a0898efe4059a776193c02132129"], "properties": ["house, roof, wooden", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of an object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, front, road", "house, lake, pool"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a large building"], "question": "which house has a lake and a pool?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "88eba412c78a4ced89eb857327653f6c"], "properties": ["room, door, shelf", "lighthouse, building, tower"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, yellow, black", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d image of a small island in the middle of a lake"], "question": "which object is more likely to be in the water", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, texture", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "be1376023c274bdda995d54f3694157f"], "properties": ["floor plan, ceiling light, color", "roof, beams, chimney"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, hat, handle", "hat, color, tan"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, yellow, black", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "db74ee1621464be1b164be26a1af050e"], "properties": ["white, windows, lid", "window, arches, wall"], "captions_pred_pc": ["above a black and white image of dots on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["house, table, chair", "roof, brown, flat"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "bded33af34104b9686b845dfd18309a9"], "properties": ["size, material, wheels", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a small table with a staircase"], "question": "which object is smaller", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " of two rocks with ice elements."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["tiers, building, stairs", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a large house with a roof on a platform.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, platform, house", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small house", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" an old castle in a grassy field.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["field, grass, castle", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "205251e4277e41d1aae6b2358267ad56"], "properties": ["green, hat, cream", "image, color, white"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a roof and beams."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, structure, house", "roof, beams, house"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["purple speech bubble and circle", " a wooden billiard table with legs."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "a24872444e5c468a9264d503a9ca7276"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white map of germany on a white background", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a human skull", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "c3a82df41875402285608ef13a55df57"], "properties": ["a, b, c", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a white plastic object on a gray background"], "question": "which object is not a human skull?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a large metal building with a roof and truss structure."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, yellow", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a room", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a long metal fence"], "question": "which roof is made of metal", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a small white house with windows and a black lid."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "4b40af369c1149949f5ccb68becd8430"], "properties": ["bedside table, wheels, white", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a white house with three windows"], "question": "which object has a lid?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small building with a staircase in a room."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["color, shape, and material", "room, staircase, building"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of the letter l"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a staircase on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a house with a flat roof structure."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, handle", "roof, flat, structure"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["color, white, black, white", "meat, bread, sausage"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, white, containers", "mossy, rock, grass"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a piece of wood on a white background"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small white house with a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, roof, green", "roof, color, white"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with a white roof"], "question": "which house has a white roof?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["s of, snowboard, shoes, mask", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["- material is white- color is white- texture is textured", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "d49d8ed244094349a99e4faca05e0690"], "properties": ["bread, knife, board", "low poly, plant, white"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["yellow, table, roof", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a table with a stool on top"], "question": "which table has stairs", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["frame, roof, trusses", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a large house with a roof on a platform."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "cb3e09a301b746918a682a595037c7f7"], "properties": ["houses, trees, road", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a potted christmas pine tree."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["a lamp, a syringe, a light pole", "a, color, green"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 0}, {"captions": [" a child's room in a small house with windows.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "6b745457e06840119058883b35f78f58"], "properties": ["room, house, windows", "roof, color, blue"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a green mountain with trees and grass."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["water, river, island", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of an egyptian sarcophagus."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["graffiti, bench, wall", "sarcophagus, material, wood"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white circular pattern on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["hat, sword, gun", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a wooden billiard table with legs."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["location, highway, train station", "building, plane, room"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, pants, shirt", "hat, skull, bread"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["house, yard, surrounding buildings", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, material, shape", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house with a roof and beams."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, tree, pool", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a white castle composed of small cubes."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a pond and situated on a rock."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "92859eb82a344134806b37cc209927c6"], "properties": ["house, staircase, window", "house, rock, pond"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["color, shape, and size", "building, roof, balcony"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black and white striped box.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, black, white", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a four-legged metal workbench with shelves."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- color is white - shape is box - material is plastic", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white square with dots all over it", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "star wars stormtrooper "], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a, bird, hook", "a, color, white"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a gray ashtray with a cigarette in it."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, shape, text", "ashtray, color, gray"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is a ashtray?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["screen, keyboard, box", "building, plane, room"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, grass, moss", "box, handle, gun"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle?", "label": 1}, {"captions": [" of a house with a pink roof.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["color, roof, pink", "roof, truss, lamp"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house with a metal roof"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, building, staircase", "house, tree, hill"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "c3a82df41875402285608ef13a55df57"], "properties": ["blue, lid, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["smiley-faced banana .", " of a crab holding a rubik's cube."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a black and white image of a crab holding a cube"], "question": "which entity is holding a yellow object?", "label": 0}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " of two rocks with ice elements."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a train, a ship, a boat", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d image of two rocks on a gray surface"], "question": "which image is of a rock with ice elements?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " white crocs clogs with blue straps and holes."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "4622e88fd9264b37997671efeb73af85"], "properties": ["color, room, table", "color, white, blue"], "captions_pred_pc": ["a black square on a white background", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity is a pair of shoes?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["houses, trees, road", "plane, ship, bird"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a white rocking chair with a curved backrest."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["resembles, toy, bookshelf", "backrest, curved, yes"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a curved backrest", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", " a wooden billiard table with legs."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["image, color, black and white", "legs, material, wood"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of a knife", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a house with a roof and beams."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, number", "roof, beams, house"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, structure, house", "roof, brown, flat"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d rendering of a table and stool"], "question": "which house has a flat roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a large metal building with a roof and truss structure."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, material, texture", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a spider's head", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a long metal fence"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " of a stone wall with a window and a clock."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["window, clock, wall", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of a brick wall"], "question": "which entity has a clock on the wall?", "label": 0}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, table, ceiling", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a box, a cup, a bottle, a jar", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["buildings, houses, grass", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has more houses", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a wooden staircase with a railing and table."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "956247bea850458199c651037d4b1d7f"], "properties": ["runner, bed, bench", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, green, orange, star", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a green, wooden-structured roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, structure, wall", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["texture, spikes, eyes", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "97f487941d26472294e005fa97c403be"], "properties": ["Lights, number, five", "color, white, green"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, head, white and brown", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Steel, Color, Yellow", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "a2354f13774340d392fbf33564934aab"], "properties": ["boat, table, chairs, umbrella, solar panel", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "c3a82df41875402285608ef13a55df57"], "properties": ["color, hat, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "d49d8ed244094349a99e4faca05e0690"], "properties": ["door, white, structure", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a potted christmas pine tree."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["stair, table, chair", "a, color, green"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a pink, ear-shaped object."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["shape is cylinder, color is white, material is plastic", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["of a spike on a white background", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white object on a gray background"], "question": "which object is pink", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, table, chair", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["rusty, sink, graffiti", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a green pickle", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color is green, shape is cylinder, material is plastic", "lion, statue, fountain"], "captions_pred_pc": ["of a black object on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a man with arms outstretched."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, material, structure", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a white bunny head", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, head", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d white bunny head on a gray background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, orange, white", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d image of an animal laying on the ground"], "question": "which object is in the water?", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "c3a82df41875402285608ef13a55df57"], "properties": ["potted plant, table, shelf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a plant in a pot", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["background, color, white", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black line on a white background", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is whiter", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a large metal building with a roof and truss structure."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, pink, green, cord, white", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a white and red lego gazebo with a pixelated design and 3d structure.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9c628774529c489aaa7abb1a6dfb2140", "12093c89a60941e7884b252bdc05104c"], "properties": ["gazebo, color, white, red", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background, resembling a snowflake", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a gazebo in white 3d printed material", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "20a02705a66f460492e07345e84a62ed"], "properties": ["holder, spring, box", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity is a container?", "label": 1}, {"captions": [" a small trailer and a white box.", "a white glass beer mug."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "1d686cbd3e9a4c629a43088658989286"], "properties": ["box, trailer, white", "color, white, glass"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, shape, gun", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white 3d model of a building"], "question": "which entity is a cube shape?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a building with a metal and wooden pole structure."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["building, floor, columns", "structure, material, pole"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a structure with multiple tables and chairs"], "question": "which building has a metal and wooden pole structure?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, blue, roof, black", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a blue plastic stool.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["2ea7d871e2f64c7daa6977a8d268b45e", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, plastic, blue", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white drawing of a chair with dots", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white chair", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["black and white image of a motorcycle", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a bench and lamp post.", " of two rocks with ice elements."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["A, bench, lamp post", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white image of two rocks on a white background"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " of two rocks with ice elements."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, roof, blue", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["6b745457e06840119058883b35f78f58", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, blue", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a building with dots", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a, bowl, cup", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["blue, lid, handle", "box, handle, gun"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d rendering of a metal box with a handle"], "question": "which box has a gun inside", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a wooden billiard table with legs."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["metal, legs, wheels", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of an old metal locker", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, b, c", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white drawing of a submarine", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["shape is sphere, color is white, material is plastic", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white image of an object on top of a pedestal"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["graffiti, bench, wall", "house, rock, bird"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a black and white object", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, pink, green", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "c3a82df41875402285608ef13a55df57"], "properties": ["red, pile, garbage", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a black box with an open lid and an orange handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2a916894edd54029b325cf51f96b0904", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, lid, open, orange, handle", "roof, pillar, stairs"], "captions_pred_pc": ["a piece of paper with black dots on a white background a piece of paper with black dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white cardboard box with an open lid", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house with a flat roof structure."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, brown, flat", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a house with a roof"], "question": "which house has a flat roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a building with blue metal framing and structure."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["shape is box, color is white, door is present", "color, blue, structure"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a building under construction"], "question": "which building is blue", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a red mushroom on top of various piles, including dirt, leaves, wood, and garbage."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "21d3bd3978f74308a312b4379e665dbd"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "red, pile, garbage"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of a triangle"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a mushroom in a pile of leaves"], "question": "which pile has more garbage", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a house with a flat roof structure."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, purple, beams", "roof, flat, structure"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "34257a26ad2e4c6d91ef6d5cd4bd7c43"], "properties": ["color, pier, stairway", "color, pier, stairway"], "captions_pred_pc": ["above a black and white illustration of an open door", "above a black and white illustration of an open door"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a long bench on a white background royalty free 3d model no."], "question": "which entity has a pier?", "label": 0}, {"captions": [" of white spheres resembling a molecule.", " of a small white building with stairs and a lid."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, number", "building, stairs, lid"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "d81d13362ae04371bb2cba46e4939665"], "properties": ["house, plane, town", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a damaged building", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "a white glass beer mug."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["hair, legs, wings", "color, white, glass"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, window, statue", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a white and blue building with a black roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, roof, tray", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a house with wooden framing and trusses."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, orange, white", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, red, pink", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["wall, stairs, castle", "shape is cube, color is black, white"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a wooden windmill with a red roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, shape, material", "roof, color, red"], "captions_pred_pc": ["a black and white image of a decorative tile", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a, desk, laptop"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of an office desk on a white background"], "question": "which entity is a building?", "label": 0}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "d49d8ed244094349a99e4faca05e0690"], "properties": ["building, floor, columns", "low poly, plant, white"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a plant growing out of a rock"], "question": "which object is not a building?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["texture, spikes, eyes", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large bird with a nest and a piece of wood."], "sample_ids": ["d6087023095446fbadef1721478373b2", "839f4875365a4fbab4b57790b102ff7b"], "properties": ["door, roof, window", "bird, nest, wood"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white map of malaysia on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of a bird in mid-flight"], "question": "which entity has a door", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " of a white chest of drawers with legs."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["low poly, llama, kangaroo", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, shape, text", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a metal object"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a lion statue on a wall"], "question": "which entity is a fountain?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["yellow, table, roof", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["frame, roof, trusses", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, hat, handle", "box, handle, gun"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["white of a small arch.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["for a black and white drawing of an arch", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white 3d model of an arch", "a black and white image of a house in the middle of a field"], "question": "which entity is a hill?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a lamp, a syringe, a light pole", "houses, trees, road"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, black, shade, black", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden bench with a metal frame.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["c27b018330da406680e58b94266c310b", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["frame, material, wood", "color, silver, white"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["mountain, grass, tree", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["blue tarp, flower, small island", "building, room, sky"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small white building with stairs and a white table."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a, ball, mushroom", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", " a small purple plastic chair with holes."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["ring, material, gold", "color, plastic, purple"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a small purple plastic chair with holes."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, pattern, material", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a large white vase on a grey background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "bf18bfd89efd43389781050230467d58"], "properties": ["3d model, color, lights", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white of a woman with her arms outstretched."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["background, color, white", "image, color, white"], "captions_pred_pc": ["a black line on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["earbuds, light, ring", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a wooden windmill with a red roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["s, stick, leaf", "roof, color, red"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a windmill on a gray background"], "question": "which object has a roof", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["Cabinet, Drawers, Filing", "a, desk, laptop"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of an office desk on a white background"], "question": "which entity is a desk?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a small white building with stairs and a white table."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "e30374c614f54fdb90f35b96b071349d"], "properties": ["rusty, hat, dartboard", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "red heart-shaped object."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- color is white- shape is cube- material is plastic", "shape, heart, red"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, table, ceiling", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, shape, text", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a spike on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "1da865c75a5e4a57a17652975dae5474"], "properties": ["- color is red, blue, pink", "color, white, plastic"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white ornate airplane design.", " of two rocks with ice elements."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a black castle with stairs and a door."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "036d34dec6274f6a99d8f9689d19a77d"], "properties": ["balcony, stairs, house", "door, stairs, color"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a medieval castle on a white background royalty free 3d model"], "question": "which entity has a door?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "bf18bfd89efd43389781050230467d58"], "properties": ["hat, bag, blanket", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["s, plane, house", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white silhouette of a map", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a white kite flying in the air against a gray background"], "question": "which entity has more s", "label": 1}, {"captions": [" a cube with a wooden ball on top.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "127753bf17de4252aaa7ea88f274545e"], "properties": ["shape is cube, material is wood, color is white", "face, mask, tail"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", "a featuring a staircase, small red and white building, red box, table, and ceiling light."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "11e2e8ca1f8849e394dfbf532c6d7ae0"], "properties": ["a, building, staircase", "a, building, staircase"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "for a black and white photograph of a piece of metal"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a staircase in the middle of a floor"], "question": "which building has a staircase?", "label": 0}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small building with windows and a roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["tiers, building, stairs", "roof, windows, building"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, shape, material", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d map of the country of israel"], "question": "which entity is a sphere?", "label": 0}, {"captions": [" a small white gravestone on a grassy field.", " of a white sheet of paper or box on a gray background."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "7b0c1e02d9b14f2fae4f1f7040661cc7"], "properties": ["location, field, gravestone", "color, white, background, gray"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white photograph of an object"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a yellow and blue toy submarine."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["- material is plastic- color is green- shape is box", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a submarine toy"], "question": "which toy is yellow and blue?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a wooden shed with a gray roof."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, bird, lake", "roof, color, gray"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, screen, drawer", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a spiral staircase with a railing in a small building."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a box, a cup, a bottle, a jar", "staircase, railing, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" of a barrel and a cube together.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["a, barrel, cube", "ceiling, beams, light"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a ceiling featuring wood beams and light", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["Drawer, Pattern, White", "black, white, coffee table"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white 3d model of a building"], "question": "which object has a white top", "label": 0}, {"captions": ["modern tan leather lounge chair.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, tan, leather", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "aae2c42740a04fd68068f5707111d26f"], "properties": ["light source, fixture, color", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape, bathroom, refrigerator", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, truss, suspended ceiling", "roof, beams, chimney"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with a roof"], "question": "which entity has a roof with wooden beams?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, light, jewels", "Eye color, Black, Purple"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black and purple?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "1da865c75a5e4a57a17652975dae5474"], "properties": ["house, roof, blue", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, purple, suspended", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " of two rocks with ice elements."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["mannequin head, plague mask, straps", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a small white building with stairs and a lid."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, material", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["metal, rusted, paper", "paint, rust, concrete"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, color, blue", "Lights, number, five"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, room, ceiling", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["white of a rhino head with horns.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["image, rhino, head", "house, fence, playground"], "captions_pred_pc": ["of a penguin skull in black and white", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "a 3d model of a room with a lot of wires"], "question": "which image shows a house with a fence?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["texture, spikes, eyes", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["island, terrain, rocks", "house, table, chair"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d rendering of a small white table with a chair"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, structure, greenhouse", "roof, structure, greenhouse"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 0}, {"captions": ["a piece of rock with a blue stick.", " a large metal building with a roof and truss structure."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, rock, stick", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a rock formation", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small white house with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with a white roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a building with blue metal framing and structure."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["building, color, black and white", "color, blue, structure"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a building under construction"], "question": "which building is blue?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small house with a tree and a rock."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["color, roof, pink", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": ["white sphere", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, size", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " of a wooden table with two barrels."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "8bba7567253040d88973320107e48055"], "properties": ["Object, Table, Oranges", "table, barrels, wood"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "in 15 words or less a black circle on a white background"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a 3d model of a barrel table royalty free 3d model preview no.2"], "question": "which table is made of wood", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["potted plant, table, shelf", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a white glass beer mug."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "1d686cbd3e9a4c629a43088658989286"], "properties": ["black, white, coffee table", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " of a white human skull with broken bone elements."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["collection, moose, skull", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a human skull in white"], "question": "which skull is white", "label": 1}, {"captions": [" a black triangular metal object with a clock and cross on it, and a small machine on top.", "a white of a man with arms outstretched."], "sample_ids": ["b198a81dc41c4fde8be3ca51c3b0e676", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["metal, cross, clock", "image, color, white"], "captions_pred_pc": ["above a black and white image of an object on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a house with a wooden-framed roof structure."], "sample_ids": ["97f487941d26472294e005fa97c403be", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, green", "roof, material, wood"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a white and blue building with a black roof."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, railing, black", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, white, pair", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "a black and white illustration of a curved line"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a 3d model of a harp in a white room"], "question": "which entity has a lamp with a harp?", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small white barn with a metal roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "4ca3342a96824684845f7d0e062ab176"], "properties": ["house, roof, toothbrushes", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["3D, toothpick, skateboard", "paper, hole, sign"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "c1536f68727947ff9e7810799fac583a"], "properties": ["wall, stairs, castle", "level, stairs, columns"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of an apartment building"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["a, island, resembles, hawaii", "a, island, resembles, hawaii"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 0}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, bird, hook", "houses, trees, road"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a large metal building with a roof and truss structure."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "b85a99699ccd4bcba213322113bb253d"], "properties": ["house, roof, green", "roof, truss, structure"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a long metal fence"], "question": "which entity has a roof with a truss structure", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, size", "box, paper clip, lock"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " of two rocks with ice elements."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, texture", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small house with a yellow roof and chimney."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["house, roof, blue", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a small red and white spaceship.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a house with a blue roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["picture, plaque, person", "roof, color, blue"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color blue", "label": 1}, {"captions": [" of a black tire.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b645118910b54e2a9f3a97d5598ce1de", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, tire", "a, material, clay"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tire on a white background royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small, snow-covered house."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["frame, roof, trusses", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, texture", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "db74ee1621464be1b164be26a1af050e"], "properties": ["- color is red, blue, pink", "window, arches, wall"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a lamp, a syringe, a light pole", "house, staircase, table"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "09f2cf267e954c958828325067bcc36a"], "properties": ["fireplace, bench, log", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["chair, table, refrigerator", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["books, paper, lamp", "table, bench, deer"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small building with windows and a roof."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["a train, a ship, a boat", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a two-story small apartment building with a roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, color, pink", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "40921ffd69db479294554d261daf3035"], "properties": ["rusty, sink, graffiti", "floor, railing, staircase"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white image of a computer screen"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "97e000ff41094665afd94ea565da8b13"], "properties": ["floor, table, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a spiral staircase with railings.", " a wooden shed with a gray roof."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["railings, staircase, spiral", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a shed with a gray roof"], "question": "which has a gray roof", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["roof, color, gray", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a building with many pillars"], "question": "which entity has a roof that is made of glass?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, red, pink", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "cafc467aff2643e8b70149c4944263ee"], "properties": ["wing, knife, boat", "wing, knife, boat"], "captions_pred_pc": ["a black umbrella on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing and knife?", "label": 0}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a gray, metal pillar/cylinder."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a, island, resembles, hawaii", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, table, light", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "e602ac60041f4b4f84c044161e478781"], "properties": ["building, roof, white, cubes", "floor, wall, roof"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a house with a blue roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["castle, island, house", "roof, color, blue"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a house with a wooden-framed roof structure."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["frame, roof, trusses", "house, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["hat, bag, blanket", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small building with windows and a roof."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["- color is red, blue, pink", "roof, windows, building"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["color is white, yellow, plastic", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white plastic container with a label on it", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat.", " featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat."], "sample_ids": ["c553ba67fa914165a07a1f1d20581f19", "c553ba67fa914165a07a1f1d20581f19"], "properties": ["cat, bowl, donut", "cat, bowl, donut"], "captions_pred_pc": ["a close up view of the back of the chair", "a close up view of the back of the chair"], "captions_pred_image": ["a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting", "a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting"], "question": "which entity has a cat in a bowl?", "label": 0}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "b896a0898efe4059a776193c02132129"], "properties": ["a, color, red", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a castle with two towers", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large building with a roof and windows.", " a white castle composed of small cubes."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, windows, building", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, color, purple", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, house, small", "house, staircase, table"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, tail, cord", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, light, jewels", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["A, a, a", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, temperature, england", "hat, candy, strawberry"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, and size", "color, pattern, word"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small white house with a roof."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["table, stairs, ladder", "roof, color, white"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "bf18bfd89efd43389781050230467d58"], "properties": ["room, door, shelf", "Lights, number, five"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is metal- color is silver- texture is textured", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "46903bf029934b1989bc062dcb0a5531"], "properties": ["runner, bed, bench", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, green, tiled", "structure, columns, roof"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small house on a hill in a field."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["building, plane, room", "house, hill, field"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["roof, color, blue", "moss, mushroom, grass"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a roof that is covered in moss?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small building with windows and a roof."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, roof, blue", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, hat, glasses", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a hat?", "label": 1}, {"captions": [" a brick wall with grass.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["brick, grass, wall", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of an old, rusty, green metal locker and a large wooden box."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "9797ff34c99a43be86d27868b3f9cb6d"], "properties": ["Steel, Color, Yellow", "metal, locker, box"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of an old metal locker"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a human bone", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white of a spaceship and building."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["apse, roof, floor plan", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is stone - color is blue - shape is arrowhead", "rusty, warning, metal"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a wooden billiard table with legs."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, pier, railings", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a white castle composed of small cubes."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["chair, table, refrigerator", "composed of, white, cubes"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["food, leaves, shredded paper, rocks", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, letter", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of the letter 'x'", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a white crocodile", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, size", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a piece of white paper", "a 3d model of a room with a lot of wires"], "question": "which entity is a house?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "bea8441c08d94366b96b53775391d8e6"], "properties": ["backrest, curved, yes", "color, white, logo"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity is a t-shirt", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, ball, mushroom", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, material, structure", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" an old castle in a grassy field.", " a small wooden house with a green roof."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["field, grass, castle", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["meat, bread, sausage", "meat, bread, sausage"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white image of a brush on a white background"], "captions_pred_image": ["an image of a small white object on a gray background", "an image of a small white object on a gray background"], "question": "which entity has a meat skewer with a small piece of bread and a sausage on a stick?", "label": 0}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, shape, material", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "1da865c75a5e4a57a17652975dae5474"], "properties": ["- material is wood, metal, metal", "color, white, plastic"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white of a small archway gate.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image, color, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "12093c89a60941e7884b252bdc05104c"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["room, bed, desk", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, trusses, beams", "house, tree, hill"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a wooden staircase with a railing and table."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "956247bea850458199c651037d4b1d7f"], "properties": ["desk, chair, lamp", "railing, table, staircase"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a large gray sphere", "a black and white of a knife/sword with a handle."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["size, color, shape", "image, color, black and white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, pattern", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, umbrella, coat", "color, shape, color"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["rusty, hat, dartboard", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, island, resembles, hawaii", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a black and white image of a house in the middle of a field"], "question": "which island has a house", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " of a green tent with a green cover and white awning."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "5168d23199604fa6b8fd982c2e2cf9e9"], "properties": ["color, awning, cover", "color, awning, cover"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "a black and white illustration of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a skateboard ramp royalty free 3d model preview no.2"], "question": "which tent has a white awning?", "label": 0}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, color, yellow", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of a room", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a set of stainless steel shelves"], "question": "which roof is made of tiles", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["color, shape, gun", "ring, material, gold"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a white wedding band with the words strength in weakness engraved on it"], "question": "which object is made of gold", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, black, white, handle, armrest", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a green mountain with trees and grass."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, skyline, buildings", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a wooden billiard table with legs."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a, b, c", "legs, material, wood"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, grass, moss", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a house with a wooden-framed roof structure."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, stairs, table", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d model of a building with a roof"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a broken bowl with a hole in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["55e883c09dbf4f22bee0da608128f4f8", "c3a82df41875402285608ef13a55df57"], "properties": ["a, material, bowl", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a bowl on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a white bowl on a gray background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "73e7107ff3634516846bccad04c5dc87"], "properties": ["resembles, toy, bookshelf", "blue, curved, resembles"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a white bathroom sink"], "question": "which object resembles a wall", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["a, b, c", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a beige bottle, teddy bear, and head."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "f2fcfd53946e48f59c7bfd992ef658b1"], "properties": ["color, head, white and brown", "beige, head, bottle"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white image of a flower in the shape of a dandelion"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a light bulb royalty free 3d model preview no. 3"], "question": "which entity has a head that is beige?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["screen, monitor, stand", "bread, knife, board"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a loaf of bread and a knife on a cutting board"], "question": "which object is on a cutting board?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "ee440fcbc493488e879539d37a8d820e"], "properties": ["metal, laptop, light fixture", "island, fish, ice"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d map of the country of israel"], "question": "which entity has more ice", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "small purple teapot with a hook."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d9e9171f6d284331a6975c1fb40f9766"], "properties": ["bed, desk, window", "color, purple, hook"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a bowl"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white ceramic teapot on a gray background"], "question": "which object has a hook", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, pink, green", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a wooden shed with a gray roof."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, purple, beams", "roof, color, gray"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a white castle composed of small cubes."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, yellow, black", "composed of, white, cubes"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a chair with a yellow seat."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, shape, number", "color, yellow, seat"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity is a chair?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, desk, laptop", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "06a1c233fb444830b577aa06e2c01294"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a white shelf with holes and brackets."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["location, field, gravestone", "color, white, holes"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small white building with stairs and shelves."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, white, black, white", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": ["small airplane flying in the air.", " a small house on a hill in a field."], "sample_ids": ["903dd2d9d2b7499580a0c1645df88a22", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["airplane, fly, air", "house, hill, field"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a panda holding a light bulb", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of an airplane royalty-free 3d model", "a black and white image of a small house"], "question": "which object is on a hill?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "7407a108e0354925b83b750339bc03df"], "properties": ["turrets, flags, towers", "platform, color, orange"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a platform?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, roof, tray", "arrow, mountain, area"], "captions_pred_pc": ["a black and white image of a metal object", "a line with a square on it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity has a green field?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "aef9b23a78a7450286a961cc13448d00"], "properties": ["two-story, roof, building", "roof, green, tiled"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a set of stainless steel shelves"], "question": "which building has a green roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, horns, features", "flower, color, pink"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a pink and green cube and chair."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c6faf508072b4d0ea014bd9c748b79c3"], "properties": ["color, white, red, pink", "color, chair, pink, green"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a curved line made up of dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a simple white chair"], "question": "which chair is pinker", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["buildings, houses, grass", "ashtray, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is made of wood", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "bb01282cb8b64470866260455b0b46fa"], "properties": ["color, shape, material", "liquid, ice, lid"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a plastic bottle on a white background"], "question": "which entity is a liquid?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "a, material, clay"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "c3a82df41875402285608ef13a55df57"], "properties": ["a, color, case", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, table, blocks", "roof, material, wood"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["ceiling, light, desks", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": ["a wooden-handled axe .", " of a beige and white round soap dish/small bowl."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "5414d75e47104589837f3df8b6de6d22"], "properties": ["handle material is wood, head material is metal, overall length is long", "beige, white, round"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["house, yard, surrounding buildings", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a truck on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small, snow-covered house.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, snow, cover", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["frame, truss, roof", "roof, house, small"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a spider-like creature with long arms and legs."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, light, jewels", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, hill, deer", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, logo", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " of two rocks with ice elements."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which object is made of ice", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a house with a flat roof structure."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "abc52d210d71415296730bb00352ce6f"], "properties": ["metal, roof, chest", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a large steel building with a pool."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, structure, wall", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " of a large axe with a cross on top."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "4b6734945e204158b076a429a30ce2e9"], "properties": ["axe, hammer, spoon", "axe, cross, top"], "captions_pred_pc": ["of a black lace belt on a white background", "for an axe on a white background"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["4f21fa937959487a96350af527d75421", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["window, frame, room", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, head, white and brown", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "6398f4e75a2d480da58396827ac64249"], "properties": ["black, white, coffee table", "- color is red, blue, pink"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which object is more colorful", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a house with a pink roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "6162909df6294848a8eea83c3aa9585b"], "properties": ["bed, desk, window", "color, roof, pink"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white building with stairs and shelves."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, grass, moss", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, roof, soup", "building, room, sky"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, brown, flat", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["floor plan, heating system, ceiling light fixture", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "7f8942ef51dd4246993a587a12df168c"], "properties": ["door, white, structure", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a house in the middle of a field"], "question": "which structure has a yard", "label": 1}, {"captions": [" of a house with a pink roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, roof, pink", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["small purple teapot with a hook.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, purple, hook", "color, head, white and brown"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["770e577c9795435898209fd24191635b", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["image, color, light", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a white 3d model of a small town", "a 3d model of a piece of fabric"], "question": "which entity is a multicolored cube?", "label": 1}, {"captions": ["a white of a spaceship and building.", " a small white house with a roof."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image, building, spaceship", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a building with a white roof"], "question": "which building is white", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, tan, brown, orange", "building, plane, room"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " of two rocks with ice elements."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", "star wars stormtrooper "], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["s, cat, fish, person, pig, bird", "a, color, white"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house with a roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["runner, bed, bench", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, temperature, england", "house, roof, blue"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", "white hospital bed, medical cart, and bedside table with wheels."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "e3ef6fd54af440efa31984214dd6f11d"], "properties": ["table lamp, ceiling light, table", "bedside table, wheels, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a stool on wheels"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d illustration of a white medical trolley on wheels"], "question": "which table has wheels", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, hat, handle", "island, terrain, water"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " of two rocks with ice elements."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, black, blue", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "7407a108e0354925b83b750339bc03df"], "properties": ["color, green, orange, star", "platform, color, orange"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a bicycle"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a platform that is orange?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["water, river, island", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, shape, texture", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "white balloon floating in the air."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "033a61d66f7646ceaac357b502a5f5dc"], "properties": ["shape is sphere, color is white, material is plastic", "color is white, shape is balloon, material is air"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "in 15 words or less a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a white balloon on a gray background"], "question": "which object is made of air", "label": 1}, {"captions": ["3d printed panther head with open mouth.", " a large orange keg with a white lid."], "sample_ids": ["dfe4f73a25a94b2c8449a2818c32a3bd", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["3D Printed, mouth, open", "color, lid, orange"], "captions_pred_pc": ["a 3d model of a dog head on a white background 3d model of a dog head on a white background stock illustration 3d model of a dog head on a white background 3d model of a dog head on a white background royalty free illustration", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a panther head royalty-free 3d model", "a gray keg with a white lid sits on top of a gray surface"], "question": "which object is not a keg?", "label": 0}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["rocky, rug, puddle", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d image of a small island in the middle of a lake"], "question": "which island has grass?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a white building with a red roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["shape is box, color is white, door is present", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["potted plant, table, shelf", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small orange piano with legs."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "d793de7c08d74414beeb8ea50f730705"], "properties": ["earbuds, light, ring", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a bench"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, black, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of a small red renault clio car.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "9968e06a62e8487ea33460e640abc573"], "properties": ["color is red, make is renault, model is clio", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a white object on a gray background"], "question": "which is not a car", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "d49d8ed244094349a99e4faca05e0690"], "properties": ["chest of drawers, cabinet, white", "low poly, plant, white"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a gray, metal pillar/cylinder."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a, roof, soup", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design.", " of two rocks with ice elements."], "sample_ids": ["80cc05e292b0437ba3189b68f6da0ca0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["buddha, chair, design", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a cactus on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["3d model of a buddha statue royalty free 3d model preview no 3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large steel building with many columns and a pool."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, structure, house", "building material, pool, steel"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, pattern", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, material, ceramic", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a wooden roof structure with a pink roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Headstock, Guitar, Head", "a, material, clay"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an axe head", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["mossy, rock, grass", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is plastic- color is white- shape is cube", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["roof truss, insulation, suspended ceiling", "spiked, baseball bat, hammer"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "for a black star on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a baseball bat"], "question": "which object is not a baseball bat?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["earbud, earpiece, earpiece", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small, snow-covered house."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["door, white, structure", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, green, handle", "island, mountain, grass"], "captions_pred_pc": ["of a small black object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "d81d13362ae04371bb2cba46e4939665"], "properties": ["castle, island, house", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small house on an island", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a wooden roof structure with a pink roof."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, staircase, table", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["tv, chair, laptop", "house, rock, bird"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["red, pile, garbage", "island, terrain, water"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, texture", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small building with a roof.", " of two rocks with ice elements."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, building, small", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a pink and white gun.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, pink, white", "beige, white, round"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, plane, town", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["Drawer, Handle, Wood", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color is purple, material is plastic, number of legs is four", "color, white, gold"], "captions_pred_pc": ["of a black and white image of a baby carrier", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, white, red, pink", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, helmet, airplane wing", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["room, bed, desk", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["color, shape, texture", "pattern, color, shape"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d image of a city map on a black surface"], "question": "which entity has a pattern of color and shape?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color is white, material is plastic, shape is box", "a, color, red"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a blue roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, color, blue", "house, roof, green"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "7d76c44cb9dd4948b8766d83994ca5f3"], "properties": ["color, blue, white, handle", "- material is stl, obj, fbx- size is 240px- color is red, white"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white 3d model of a gun", "a close-up view of a black ball with a screw in the center"], "question": "which entity is a red and white color?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a large steel building with many columns and a pool."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["house, tree, pool", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a potted christmas pine tree.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["a, color, green", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a 3d model of a piece of paper"], "question": "which entity is not green?", "label": 0}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small white building with stairs and a white table."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "e30374c614f54fdb90f35b96b071349d"], "properties": ["floor, table, light", "building, stairs, table"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a building with a staircase"], "question": "which building has a white table?", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a house with a roof and beams."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, rock, bird", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " featuring a chair, table, and refrigerator."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["a lamp, a syringe, a light pole", "chair, table, refrigerator"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "b896a0898efe4059a776193c02132129"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "4e82177059204292899fa7415164a05e"], "properties": ["load, crates, snow", "yellow, tires, load"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a monster truck with spikes"], "question": "which truck has a load of sticks", "label": 1}, {"captions": [" a small wooden house.", " a small, snow-covered house."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, material, wood", "house, snow, cover"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cottage", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["building, tree, plane", "color, sphere, molecule"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity has more spheres", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "d81d13362ae04371bb2cba46e4939665"], "properties": ["s, batman, batman character", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " of a white human skull with broken bone elements."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["shape is cylindrical, color is silver, material is metal", "color, white, skull"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a white chest of drawers with legs."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["mossy, rock, rocky", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a multicolored metal building structure with a roof."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, pier, stairway", "color, roof, structure"], "captions_pred_pc": ["above a black and white illustration of an open door", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, truss, structure", "roof, metal, white"], "captions_pred_pc": ["of a metal grate on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["s, plane, house", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, and material", "color, frame, shape"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "c8936ace72954650b4e2d84246964849"], "properties": ["room, bed, desk", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " of two rocks with ice elements."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["window, clock, wall", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "a17477b445b3443189dad22f768b888b"], "properties": ["a box, a cup, a bottle, a jar", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a white motorcycle with wings."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, material", "color, white, wings"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a, head, bowl", "wood, board, shelf"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is plastic- color is white- shape is cube", "box, handle, gun"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["variation, bread, pot", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white drawing of an object", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a wooden nightstand with a hexagonal pattern, white top, and drawer."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "e6f2dbec6d464b4da4aa47bce242f6e5"], "properties": ["light source, fixture, color", "Drawer, Pattern, White"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a wooden box with a handle"], "question": "which object has a pattern", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof, structure, wall", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "a17477b445b3443189dad22f768b888b"], "properties": ["throne, stairs, tree", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a wooden shed with a gray roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["fireplace, bench, log", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["stair, table, chair", "Cabinet, drawer, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, base, slanted", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a chair", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a white building with a red roof."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["building, color, black and white", "color, white, roof, red"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a stone wall featuring carvings and statues."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["food, leaves, shredded paper, rocks", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small white house with a roof."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, size", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, truss, lamp", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "d49d8ed244094349a99e4faca05e0690"], "properties": ["white, top, writing", "low poly, plant, white"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " of two rocks with ice elements."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, eagle, wood", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small house with a blue roof."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["location, field, gravestone", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a whale", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["55b26130f1514032be078e13fd982905", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, material", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white house with a roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, white", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small house with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, house, small", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small house", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, tan, brown, orange", "wood, board, shelf"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white building."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "4decc6a3d12c47888f8fec543153a985"], "properties": ["color, white, red, pink", "color, white, building"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a bottle"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building on a white background"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "bf18bfd89efd43389781050230467d58"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is wood - color is white - height is 1.8 m", "wood, board, shelf"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a large house with a roof on a platform."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, rock, pond", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house"], "question": "which house is on a platform?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "46903bf029934b1989bc062dcb0a5531"], "properties": ["desk, chair, lamp", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " of a large axe with a cross on top."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, material", "axe, cross, top"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["shape, bathroom, refrigerator", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, handle, orange, rake, knife", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, yellow, black", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of an airplane", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["white plastic cone-shaped hat, 3d printed.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["5cfd092fb5c44c9f8ae62c6e4c62903d", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is cone, material is plastic, color is white", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a dome shaped object made of dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a toilet paper holder", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "a17477b445b3443189dad22f768b888b"], "properties": ["table, staircase, light", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, framing, material", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, bird, hook", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, green", "roof, metal, white"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, air conditioner, house", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a spider-like creature with long arms and legs."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["metal, laptop, light fixture", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a building with blue lines and structure.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, structure", "frame, beams, trusses"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building under construction"], "question": "which structure has more beams", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "bf18bfd89efd43389781050230467d58"], "properties": ["Cabinet, Drawers, Filing", "Lights, number, five"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["bedroom, bathroom, bed", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "6b745457e06840119058883b35f78f58"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, color, blue"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, white, red, pink", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, material, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small house with stairs and a roof."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["graffiti, chinese writing, door", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "c3a82df41875402285608ef13a55df57"], "properties": ["house, yard, surrounding buildings", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, skull, bread", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a stone sculpture", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "770e577c9795435898209fd24191635b"], "properties": ["room, door, shelf", "image, color, light"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a white 3d model of a small town"], "question": "which image has a ceiling light", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small white box with a shelf and a hole in it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["A, a, a", "a, hole, shelf"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white box on a gray background"], "question": "which entity has a shelf with a hole in it?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- material is plastic- color is white- shape is cube", "torso, breasts, pattern"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a witch wearing a black and white hat."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["resembles, octopus, squid, spider, robot", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a black and white hat?", "label": 1}, {"captions": [" a small house with a red roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["085db9059b744673b5623b5338e02196", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, red, house", "house, staircase, table"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "205251e4277e41d1aae6b2358267ad56"], "properties": ["runner, bed, bench", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a white building.", " a small building with windows and a roof."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, building", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a bottle", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, roof, block", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a vibrant city skyline featuring various colored buildings, trees, and skyscrapers."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "1a1fb9b0d83845f6b1238fb45e0defff"], "properties": ["building, skyscraper, city", "color, skyline, buildings"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white 3d model of a city skyline"], "question": "which entity has a skyline featuring various colored buildings", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "46903bf029934b1989bc062dcb0a5531"], "properties": ["chair, table, refrigerator", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is not a chair", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a multicolored metal building structure with a roof."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["structure, roof, pitch", "color, roof, structure"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small wooden house with a green roof."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["black, white, laptop", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a red, blue, and green striped tower building."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["roof, structure, house", "color, red, blue, green"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is more colorful", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, plate, yellow", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " of two rocks with ice elements."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, bench, rack", "image is a rock with ice elements"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, purple", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["169855ca6adc4f36814f17d275cb1e95", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, watch, clock", "hat, watch, clock"], "captions_pred_pc": ["in 15 words or less a silhouette of a man smoking a cigarette", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a futuristic chair", "a 3d model of a futuristic chair"], "question": "which entity has a clock that is orange and blue?", "label": 0}, {"captions": [" a house with a roof structure and toothbrushes.", " a green mountain with trees and grass."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, roof, toothbrushes", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, color, yellow", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, material, size", "floor, staircase, balcony"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["broom, shovel, fireplace", "lion, statue, fountain"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue?", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["hoodie, ball, person", "building, plane, room"], "captions_pred_pc": ["for a person standing in front of a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small building with windows and a roof."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, material", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "3d pixelated cactus model on a table."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "07c2b9e39ae5438d9b7ab6495b86f896"], "properties": ["A, a, a", "cactus, model, table"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a cross on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a table with a cube on top"], "question": "which object is on a table?", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, building, coin, ball", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, table, ceiling", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a white and blue building with a black roof."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, furniture, black", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["white candle with a yellow flame in a candle holder.", " a large white and metal building with a metal roof structure."], "sample_ids": ["c3d85aaabddf4585b2468a5bca9f51d5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, flame, white", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background a black and white image of a dotted circle on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a white candle in the shape of a teapot", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a clay pot with holes in it."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["house, building, people", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a red, blue, and green striped tower building."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["building, tree, plane", "color, red, blue, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is red", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "7f8942ef51dd4246993a587a12df168c"], "properties": ["resembles, toy, bookshelf", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["room, house, windows", "house, roof, wooden"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["building, stairs, shelves", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["bread, chocolate, cake", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a loaf of bread", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, hill, forest", "house, hill, forest"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill", "label": 0}, {"captions": [" a two-story small apartment building with a roof.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["two-story, roof, building", "a, material, clay"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color is white, material is plastic, shape is box", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["house, lake, pool", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a photograph of a rock?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["a, hole, shelf", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["shape, bathroom, refrigerator", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, mattress, pillows", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "a17477b445b3443189dad22f768b888b"], "properties": ["color, horns, eyes", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, pool, balcony", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 0}, {"captions": [" a black castle with stairs and a door.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["door, stairs, color", "broom, shovel, fireplace"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof truss, insulation, suspended ceiling", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a wooden table and chair."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["lighthouse, fountain, crater", "table, chair, wood"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small wooden table"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small white building with stairs and a white table."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, roof, block", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["b5afccae993346079483507296fbb029", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is square, material is metal, color is rusty", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, island, water", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, roof, green", "house, staircase, table"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" of a yellow bird with black eyes.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "e694d53545d449319a64cceb0280c3c6"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "3d, slide, swing"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "7f8942ef51dd4246993a587a12df168c"], "properties": ["yellow, table, roof", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, roof, wall", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is cube, material is wood, color is white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "a17477b445b3443189dad22f768b888b"], "properties": ["color, orange, leather", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white image of a square with dots"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, yellow, roof, metal", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a house with a pink roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, roof, pink", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, wheel, helmet", "hat, candy, strawberry"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["31c00c8337de4854a20299d719136cce", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, black, shade, black", "image, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity has a pink color?", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " of an ipad stand with a small speaker and blue-white light on a cylindrical base."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "e0694fef8e414d69a6a89cdffd212c86"], "properties": ["shape, color, material", "base, speaker, light"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "above a black and white illustration of a clock"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a tablet stand on a pedestal royalty-free 3d model"], "question": "which object has a speaker and a light?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["food, leaves, shredded paper, rocks", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["white dragon with wings, .", " a small black, white, and orange walkie-talkie."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "e098706085a44898abbd549693d12a64"], "properties": ["wings, white, dragon", "color is black, white, orange"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is not a white dragon with wings?", "label": 1}, {"captions": ["a black rock with writing on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, black, writing", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small wooden house."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["structure, roof, pitch", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, texture", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, lake, boat", "image, city, spoon"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, poles", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a steeple on top"], "question": "which structure has a roof that is blue?", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a white shelf with holes and brackets."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, pattern, material", "color, white, holes"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a large white vase on a grey background", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": [" a small building with a roof.", " a small building with windows and a roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, building, small", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "a17477b445b3443189dad22f768b888b"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, pillar, stairs"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["a, rock, paper", "paper, hole, sign"], "captions_pred_pc": ["for a flock of birds in the sky", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white of a spaceship and building."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["bed, desk, window", "image, building, spaceship"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["97f487941d26472294e005fa97c403be", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, white, green", "hat, candy, strawberry"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of an office building", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with a flat roof structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, color, pink", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a black and white striped box."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["roof, structure, house", "color, black, white"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, umbrella, coat", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a pink, ear-shaped object."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["- color is white- shape is cube- material is plastic", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, white, logo", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a white of a man with arms outstretched."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["Drawer, Pattern, White", "image, color, white"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a man with his arms outstretched"], "question": "which entity is not a white image?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["graffiti, chinese writing, door", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a room"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a clay pot with holes in it."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["room, door, shelf", "hole, material, clay"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a pond and situated on a rock."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "92859eb82a344134806b37cc209927c6"], "properties": ["roof, purple, suspended", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "7f8942ef51dd4246993a587a12df168c"], "properties": ["red, sphere, resembles", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["metal, roof, chest", "roof, ceiling, hole"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, door, cross", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, structure, wall", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, dress, flower", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof truss, insulation, suspended ceiling", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house"], "question": "which house has a door", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a character wearing glasses and a hat."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["cup, bottle, chessboard", "hat, glasses, character"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", " a black and white striped box."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, handle, gray", "color, black, white"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d image of a black and white striped surface"], "question": "which box is black and white?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " an old lantern with moss on it."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "62925f26fd624310bd6b31136fe8e706"], "properties": ["apse, roof, floor plan", "moss, lantern, old"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of an old lantern"], "question": "which object has moss on it", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small wooden house with a green roof."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["room, house, windows", "roof, color, green"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["graffiti, bench, wall", "building, plane, room"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["color, black, white", "hat, mustache, chef"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": [" a clay pot with holes in it.", " a house with wooden framing and trusses."], "sample_ids": ["8ffcd902aa0a4efea55ca1dbab28f462", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["hole, material, clay", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a clay sculpture of a face with holes in it", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a black and white striped fly in the air."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, brown, flat", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, structure, house", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a house with a flat roof structure."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["two-story, roof, building", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, pink, green, cord, white", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a purple and green sphere.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, size", "resembles, toy, castle"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a tower made out of blocks"], "question": "which object is a toy?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["floor, table, wall", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["house, lake, pool", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a large building", "a black and white image of an object on top of a pedestal"], "question": "which island has a lighthouse", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["arm, light, sign", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d6087023095446fbadef1721478373b2", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["door, roof, window", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, light", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a wooden staircase with a railing and table."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "956247bea850458199c651037d4b1d7f"], "properties": ["roof, stairs, house", "railing, table, staircase"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a table with a staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "832a022cdcc74763b0571e04af4e592b"], "properties": ["resembles, octopus, squid, spider, robot", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, red, blue, structure", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a house with wooden framing and trusses."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["brown, paint, tape", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a house under construction"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " of a wooden windmill with a red roof."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["building, color, yellow-green", "roof, color, red"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a windmill on a gray background"], "question": "which building is red", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with stairs and a roof."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["red, mouse, handwriting", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["water, river, island", "roof, structure, wall"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["size, material, image", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a black and white striped fly in the air."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["ceiling, light, desks", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a spider-like creature with long arms and legs."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["resembles, toy, bookshelf", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, tower", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "d81d13362ae04371bb2cba46e4939665"], "properties": ["island, mountain, grass", "hat, bow, arrow"], "captions_pred_pc": ["a black and white map of the island of malta", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "d49d8ed244094349a99e4faca05e0690"], "properties": ["backrest, curved, yes", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["building, stairs, shelves", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black plastic ring on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "f39783d05dec49e49482c407d656e0f7"], "properties": ["color, shape, material", "a, plane, small plane"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "of a black and white photo of an airplane propeller"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d printed model of a fighter plane in the air"], "question": "which entity is a plane?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e44009d33258425e8efedfbc6823bf70"], "properties": ["background, color, white", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a white rocket ship.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, shape, size", "metal, legs, wheels"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, tree, pool", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, metal, white", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a purple and green sphere.", "a white glass beer mug."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, size", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a white of a man with arms outstretched."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["mossy, rock, grass", "image, color, white"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "854757ca755240f8b04576d899349151"], "properties": ["color, shape, and size", "cabinet, room, shelf"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a clay pot with holes in it."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a knife, blade, handle", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a piece of white plastic on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a stone archway in a grassy area.", " of a wooden windmill with a red roof."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["location, area, material", "roof, color, red"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a windmill on a gray background"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "a2354f13774340d392fbf33564934aab"], "properties": ["image, building, stairs", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a house with a roof"], "question": "which entity is larger", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, white, containers", "image, building, stairs"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, gazebo, table", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a small white box with a shelf and a hole in it."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["color, green, handle", "a, hole, shelf"], "captions_pred_pc": ["of a small black object on a white background", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a white box on a gray background"], "question": "which object has a hole in it", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " of a green pickle"], "sample_ids": ["44723e86bdd14071b0544745879604de", "4c7904175d6d4676b73866c25110e8d3"], "properties": ["resembles, bar, soap", "color is green, shape is cylinder, material is plastic"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a peanut on a white background royalty free 3d model preview no.3"], "question": "which object is green?", "label": 1}, {"captions": [" a small black box on a purple square.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["75f209e543c046669099190953616acc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "b57936676e9d43abb635fa1217992287"], "properties": ["color, grass, moss", "a, hole, rock"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a lace belt"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which rock has a hole", "label": 1}, {"captions": [" of a machine gun.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["gun, barrel, caliber", "house, fence, playground"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a room with a lot of wires"], "question": "which entity has a slide?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, pattern, wall", "house, fence, playground"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["a lamp, a syringe, a light pole", "lighthouse, fountain, crater"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, pen, logo", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["food, leaves, shredded paper, rocks", "a, character, mario"], "captions_pred_pc": ["a black and white image of a bird in flight", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, pink, green, cord, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, material, structure", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, purple", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "b896a0898efe4059a776193c02132129"], "properties": ["color, blue, white, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a needle on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a white glass beer mug."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["image is a sculpture of an angel on a wall", "color, white, glass"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, helmet, airplane wing", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a close up of a mushroom?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a white of a man with arms outstretched."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["room, bed, desk", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a door", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["background, color, white", "mossy, rock, grass"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a piece of wood on a white background"], "question": "which entity has a mossy rock?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", "a white of a man with arms outstretched."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["blue, curved, resembles", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small, snow-covered house.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, snow, cover", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a, island, water", "table, staircase, light"], "captions_pred_pc": ["a black and white photo of a boat in the water", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, model, luggage", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, yellow, black", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white helicopter flying in the air", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["A, a, a", "hat, watch, clock"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a small white building with stairs and a white table."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, framing, material", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, green, lawn", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" a blue and white bird.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "c8936ace72954650b4e2d84246964849"], "properties": ["color, shape, size", "roof, color, pink"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "a black and white drawing of a toilet"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a 3d model of a house with a roof"], "question": "which entity is larger", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a small wooden house with two roofs."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small barn"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, room, ceiling", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a, box, wall", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a house in the middle of a field"], "question": "which object has a tree in front of it", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a wooden roof structure with a pink roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, red, green, blue", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a glove", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["books, paper, lamp", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a small purple plastic chair with holes."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, black, white", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color is white, material is plastic, shape is tube", "resembles, toy, castle"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a tower made out of blocks"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, roof, soup", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, color, purple", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a house with a wooden-framed roof structure."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["structure, building, archway", "roof, material, wood"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, orange, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, door, window", "house, tree, hill"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["room, door, shelf", "house, tree, pool"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": [" a wooden staircase with a red and white railing and a red arrow.", "a white of a man with arms outstretched."], "sample_ids": ["bb8bb4c9972d4b718b8bbd3ed5fdd14d", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["arrow, red, white", "image, color, white"], "captions_pred_pc": ["above a black and white image of a square with a white cross in the center", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a small wooden house with a green roof."], "sample_ids": ["40921ffd69db479294554d261daf3035", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["floor, railing, staircase", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", "a white of a woman with her arms outstretched."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, handle, gray", "image, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, hole, rock", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a lace belt", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["castle, island, house", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, head, mask", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a person's head", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image is a laptop?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, black, shade, black", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["graffiti, bench, wall", "wood, board, shelf"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["moss, mushroom, grass", "house, tree, hill"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["food, leaves, shredded paper, rocks", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, color, purple", "roof, structure, suspended"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a metal roof"], "question": "which roof is suspended", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "97e000ff41094665afd94ea565da8b13"], "properties": ["arm, light, sign", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of an egyptian sarcophagus."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["lighthouse, fountain, crater", "sarcophagus, material, wood"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, logo", "- material is stone, metal, concrete"], "captions_pred_pc": ["in the title the logo for maria ruiz", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, material, steel", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a building on top of a table"], "question": "which entity has a chair?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, white, material, ceramic", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a piece of paper"], "captions_pred_image": ["a white vase on a grey background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, hill, deer", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["building, material, steel", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a building with a roof"], "question": "which structure is made of brick", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a spider-like creature with long arms and legs."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["buildings, houses, grass", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "d81d13362ae04371bb2cba46e4939665"], "properties": ["- material is metal - weight is 0 - height is 0", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a sculpture of an african man sitting on a pedestal"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["runner, bed, bench", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "6b745457e06840119058883b35f78f58"], "properties": ["balcony, stairs, house", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a large white and metal building with a metal roof structure."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, shape, text", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a screw", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, dress, flower", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small white house with a roof."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, b, c", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a building with a white roof"], "question": "which object is white", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "bf18bfd89efd43389781050230467d58"], "properties": ["resembles, octopus, squid, spider, robot", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, staircase, table", "house, fence, playground"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["screen, keyboard, box", "house, roof, green"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["size, material, color", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, base, slanted", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chair", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a deer and a crystal tree on an island, with a rock and bird nearby.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["2ce5ec0844114576a247b1de2011e0c7", "4a889132cc444d10bfcbf6c760984416"], "properties": ["image is a deer and a crystal tree on an island, with a rock and bird nearby", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a flying saucer", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a deer standing on an icy island", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, red, blue, structure", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["orange, forklift, parking lot", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white illustration of a cell phone", "of a black and white bracelet on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "b896a0898efe4059a776193c02132129"], "properties": ["a, hole, shelf", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "b896a0898efe4059a776193c02132129"], "properties": ["Title, Image, Color", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a white of a woman with her arms outstretched."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, number", "image, color, white"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a stone wall with a window and a clock."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "window, clock, wall"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a brick wall"], "question": "which wall has a window and a clock", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a white sheet of paper or box on a gray background."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "7b0c1e02d9b14f2fae4f1f7040661cc7"], "properties": ["light source, fixture, color", "color, white, background, gray"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white photograph of an object"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a paper airplane"], "question": "which entity is white", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["eead0dd97023415da05c97df37337473", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["a, balloon, color, blue", "roof, ceiling, hole"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a small, snow-covered house."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["structure, columns, roof", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, color, white", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white ornate airplane design.", " a white castle composed of small cubes."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a small white house with a roof."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["resembles, toy, castle", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["roof, structure, wall", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "c8936ace72954650b4e2d84246964849"], "properties": ["a, dress, flower", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": ["rainbow dash pony with rainbow mane (available in 3ds max, obj, fbx formats)", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["e8aee8de3ab24849bad537ad0d732eea", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["3ds max, obj, fbx", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of an octopus", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of my little pony princess celestia royalty free 3d model", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["A, a, a", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "411c164757fc4de68dfecb35fa858223"], "properties": ["base material is wood, color is red, message is welcome to northwich", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["size, color, shape", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small white building with stairs and a white table."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, white, containers", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["building, room, sky", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["roof, room, ceiling", "cloak, sword, spear"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, tree, plane", "throne, chair, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a black building.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, black, building", "- material is wood, rusty, horned"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, white, holes", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["background, color, white", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a table with stairs"], "question": "which entity has a light fixture?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, rock, paper", "roof, material, wood"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small, snow-covered house.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, snow, cover", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a large building with a roof and windows."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["frame, truss, roof", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "b896a0898efe4059a776193c02132129"], "properties": ["color, red, black", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a house with a roof and beams."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, house, wooden", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a house with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a large white and metal building with a metal roof structure."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, red, green, yellow", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "92498f398e244020a867686729633610"], "properties": ["graffiti, wall, wheelbarrow", "a, house, cat, dog"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a person standing in front of a wall"], "question": "which entity has a robot?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, brown, flat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a table and stool"], "question": "which object has a flat roof", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of a clear glass display case with a square light fixture."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "980ded888795417f94b46750105e1597"], "properties": ["floor, table, light", "light, fixture, square"], "captions_pred_pc": ["above a black and white photograph of a window", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a clear plastic box"], "question": "which light is square", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, fence, dog", "door, roof, pool"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, roof, green", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with a black roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a spider-like creature with long arms and legs."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["structure, columns, roof", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["apse, roof, floor plan", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, color, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a white 3d model of a city skyline"], "question": "which entity is a single image?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a white shelf with holes and brackets."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["shape is sphere, color is white, material is plastic", "color, white, holes"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "6b745457e06840119058883b35f78f58"], "properties": ["roof, color, green", "roof, color, blue"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, grass, moss", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a small house with stairs and a roof."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["orange, forklift, parking lot", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "c3a82df41875402285608ef13a55df57"], "properties": ["houses, trees, road", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a small town", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["chair, table, refrigerator", "cartoon, bear, diaper"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white house with a staircase and a window."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, grass, moss", "house, staircase, window"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["cylinder, marble, pillar", "plane, ship, bird"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "97e000ff41094665afd94ea565da8b13"], "properties": ["case, player, football", "roof, material, wood"], "captions_pred_pc": ["of a black and white image of a pair of boots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "a room, a cake, a table"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["houses, trees, road", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white bunny head", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, white, head", "cloak, sword, spear"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "b896a0898efe4059a776193c02132129"], "properties": ["candle, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a shower head", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["house, lake, pool", "house, building, people"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a white castle composed of small cubes."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is wood, metal, metal", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a castle made of white cubes"], "question": "which object is composed of cubes", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a clay pot with holes in it."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "hole, material, clay"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" tall grass, plants, rocks, and a tree.", " a house with a wooden-framed roof structure."], "sample_ids": ["eefed882ed5f4711bc5a76332d9712f3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["grass, plants, rocks", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a group of trees", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["55b26130f1514032be078e13fd982905", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, material", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, bird, lake", "roof, brown, flat"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a wooden billiard table with legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b20ad62516fa467ba6e8de063998e8e4", "a17477b445b3443189dad22f768b888b"], "properties": ["legs, material, wood", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a rectangular shaped object", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a pool table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, roof, wooden", "door, roof, pool"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["- material is white- color is white- texture is textured", "building, room, sky"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a cube", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a sky?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a box, a cup, a bottle, a jar", "stair, table, chair"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, staircase, window", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "pink light saber."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "c4c8ed95de4640fe8c0be1df68d816ba"], "properties": ["color, orange, leather", "color, pink, light"], "captions_pred_pc": ["a black and white illustration of a chair", "of a black dot on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a light saber on a gray background"], "question": "which object is made of light", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "b896a0898efe4059a776193c02132129"], "properties": ["light source, fixture, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small wooden house."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, material, wood"], "captions_pred_pc": ["a black and white image of a flying saucer", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a white castle composed of small cubes."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, texture", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a clay pot with holes in it."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["light, floor, ceiling", "hole, material, clay"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white tile floor", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a wooden house with a roof and framing.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, framing, material", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, red, apples, tree, cactus, dots", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small house on a hill in a field."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, skyline, buildings", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white image of a small house"], "question": "which is not a building", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, truss system, framing", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor, staircase, railings", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "411c164757fc4de68dfecb35fa858223"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white circular pattern on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "97e000ff41094665afd94ea565da8b13"], "properties": ["door, roof, pool", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["building, balcony, street", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with various objects", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "703dce44052e48cfb024bceb08141554"], "properties": ["floor, wall, roof", "roof, beams, frames"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a wooden structure"], "question": "which entity has wooden beams", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["pattern, color, shape", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a japanese-style pagoda house in a pixelated village."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "42c4e6ca4a0c4b7b9a97d543b2442222"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "image is a japanese-style pagoda house in a pixelated village"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a japanese temple and pagoda"], "question": "which entity has a caption of a japanese-style pagoda house in a pixelated village?", "label": 0}, {"captions": [" a large house with a roof on a platform.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "b896a0898efe4059a776193c02132129"], "properties": ["roof, platform, house", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a piece of paper", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, material, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a table and chairs on a white background"], "question": "which structure has a yellow roof", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, white, railing, black", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d rendering of a house on a rock"], "question": "which image shows a bird on a rock?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "c3a82df41875402285608ef13a55df57"], "properties": ["black, laptop, shelf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "a095621f2d5845af83db3f59f5685982"], "properties": ["low poly, plant, white", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a metal tray with two rolls of paper in it"], "question": "which object is round?", "label": 1}, {"captions": ["a wooden-handled axe .", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["handle material is wood, head material is metal, overall length is long", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, texture", "color, black, visor"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "6b745457e06840119058883b35f78f58"], "properties": ["color, table, ceiling", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small wooden house."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, lake, pool", "house, material, wood"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a black and white of a knife/sword with a handle."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["top, color, wood", "image, color, black and white"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a house with wooden framing and trusses."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["buildings, houses, grass", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a house under construction"], "question": "which entity has more wood", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a spiral staircase with a railing in a small building."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["pos machine, credit card machine, cash register", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white photograph of a light switch"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["d6087023095446fbadef1721478373b2", "97f487941d26472294e005fa97c403be"], "properties": ["door, roof, window", "color, white, green"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an office building"], "question": "which building has a green door", "label": 0}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b5afccae993346079483507296fbb029", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is square, material is metal, color is rusty", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a concrete column", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "7407a108e0354925b83b750339bc03df"], "properties": ["roof, green, tiled", "platform, color, orange"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, green, lawn", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of two rocks with ice elements."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, blue", "image is a rock with ice elements"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["roof truss, insulation, suspended ceiling", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" a white motorcycle with wings.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, white, wings", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a concrete wall"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a green mountain with trees and grass."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["apse, roof, floor plan", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a mountain with snow on it"], "question": "which entity has grass and trees", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["building, skyscraper, city", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["blue, lid, handle", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["resembles, toy, bookshelf", "frame, truss, roof"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a bridge over a road"], "question": "which entity is a building frame?", "label": 1}, {"captions": ["a black rock with writing on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, writing", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a house with a flat roof structure."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "abc52d210d71415296730bb00352ce6f"], "properties": ["- material is plastic- color is green- shape is box", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "12093c89a60941e7884b252bdc05104c"], "properties": ["hat, sword, gun", "giraffe, bench, flower"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["white table lamp with a white shade.", "a white glass beer mug."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, shade", "color, white, glass"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white table lamp with a white shade", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["Drawer, Handle, Wood", "color, head, white and brown"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a gray and white cartoon character"], "question": "which entity is not a toy?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["base, speaker, light", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small house with a blue roof."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "bded33af34104b9686b845dfd18309a9"], "properties": ["room, bed, desk", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, yellow", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "6813afb531d041e48532088d01b00db9"], "properties": ["color, shape, and size", "- color is blue- shape is pear-like- structure is flame-like"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a low poly 3d model of a rock"], "question": "which entity is blue?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["shape is turtle, color is green, white", "paint, rust, concrete"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, white, background, gray", "building, plane, room"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["yellow, table, roof", "frame, truss, roof"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a purple chair with holes in it."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "833151c8e0f4489a9fa966635a948452"], "properties": ["- color is white- shape is cubes- number is 1", "color, purple, holes"], "captions_pred_pc": ["a close up of a black and white striped scarf", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a white chair"], "question": "which object has holes in it", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a large metal building with a roof and truss structure."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, wheel, helmet", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["chair, table, refrigerator", "house, roof, blue"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small house and barn"], "question": "which entity has a roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " of two rocks with ice elements."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, building, people", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a large steel building with a pool."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, color, white", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fee48e4d25934ebb85ef6888d517d398", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["red, rock, ceiling", "a, material, clay"], "captions_pred_pc": ["a black and white image of a circular object with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a deer and a crystal tree on an island, with a rock and bird nearby.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2ce5ec0844114576a247b1de2011e0c7", "b896a0898efe4059a776193c02132129"], "properties": ["image is a deer and a crystal tree on an island, with a rock and bird nearby", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a flying saucer", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a deer standing on an icy island", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house with a roof and beams."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, brown, flat", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a house with a roof and beams."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, purple, beams", "roof, beams, house"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with a pond and situated on a rock."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "92859eb82a344134806b37cc209927c6"], "properties": ["background, color, white", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["books, paper, lamp", "island, terrain, water"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "06a1c233fb444830b577aa06e2c01294"], "properties": ["hat, sword, gun", "house, tree, hill"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d white cube with windows resembling a building."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, light, jewels", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["floor, ceiling, poles", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a small table"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " of a small white building with stairs and a lid."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, toilet, robot", "building, stairs, lid"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["top, color, wood", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a large house with a roof on a platform."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, white, red, pink", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, bird, lamp", "island, mountain, grass"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", "a white glass beer mug."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "1d686cbd3e9a4c629a43088658989286"], "properties": ["metal, rusted, paper", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "6b745457e06840119058883b35f78f58"], "properties": ["color, bird, green, yellow, blue", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of a building with dots"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a house with a green, wooden-structured roof."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["b5afccae993346079483507296fbb029", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["shape is square, material is metal, color is rusty", "box, handle, gun"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, green, orange, star", "a, material, steel"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, door, cross", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white drawing of a house", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, color, white", "a, landscape, sand"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a rock in the middle of the ocean"], "question": "which object has a landscape with sand and grass?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["size, color, shape", "paper, hole, sign"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white hospital operating room with blue containers and medical equipment."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "a10f3196831647bc8842eacac640047d"], "properties": ["color, white, containers", "color, white, containers"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of the letter 'f' made up of tiny dots"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room"], "question": "which entity has containers that are blue?", "label": 0}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of two rocks with ice elements."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["Steel, Color, Yellow", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d image of two rocks on a gray surface"], "question": "which entity is not made of ice?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "e098706085a44898abbd549693d12a64"], "properties": ["boat, table, chairs, umbrella, solar panel", "color is black, white, orange"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black and white?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["yellow, table, roof", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a, booth, bed", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small purple plastic chair with holes."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a lamp, a syringe, a light pole", "color, plastic, purple"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["paper, hole, mouse", "paint, rust, concrete"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "bf18bfd89efd43389781050230467d58"], "properties": ["color, black, white", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house with a roof and beams."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["ceiling, light, desks", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, height", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a room"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a table and chairs on a white background"], "question": "which building structure has a yellow roof", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, white, base, slanted", "house, fence, dog"], "captions_pred_pc": ["above a black and white drawing of a chair", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, words", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a long line of numbers", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white bunny head", " a large metal building with a roof and truss structure."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, head", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "of a metal grate on a white background"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["chair, table, refrigerator", "door, roof, pool"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" of a hans wegner modern lounge chair in black and wood.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["133c1231b9de4cc19d470bd6182c3a6e", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, material, shape", "building, room, sky"], "captions_pred_pc": ["above a black and white illustration of a chair", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a modern lounge chair royalty free 3d model preview no 2", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["wing, knife, boat", "color, background, white"], "captions_pred_pc": ["a black umbrella on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a white dragon with red horns and eyes.", "a white of a man with arms outstretched."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, horns, eyes", "image, color, white"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a wooden-handled axe .", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "97f487941d26472294e005fa97c403be"], "properties": ["handle material is wood, head material is metal, overall length is long", "color, white, green"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of an office building"], "question": "which object is white and green", "label": 1}, {"captions": [" a small grassy island in the water.", " a house with wooden framing and trusses."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["location, water, island", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, shape, and size", "roof, color, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with many windows"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of two rocks with ice elements."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["room, door, shelf", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["blue tarp, flower, small island", "torso, breasts, pattern"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["Arms, Legs, Color", "paint, rust, concrete"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a concrete wall"], "question": "which entity has more paint", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " of a wine corkscrew"], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a wine bottle opener"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, white, containers", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, white, yellow, roof, metal", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a white chest of drawers with legs."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["a, head, mask", "lighthouse, fountain, crater"], "captions_pred_pc": ["above a black and white image of a person's head", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a black and white image of an object on top of a pedestal"], "question": "which object has a fountain", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["boxing gloves, heart, hand", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the human heart", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["apse, roof, floor plan", "black, screen, blank"], "captions_pred_pc": ["a black and white drawing of a room", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a screen", "label": 1}, {"captions": ["a pair of blue wireless earbuds with a black case.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["88d8bccf701145dea3fc4df8781ddb13", "c3a82df41875402285608ef13a55df57"], "properties": ["blue, case, earbuds", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a pair of earrings in the shape of a butterfly", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a pair of earphones royalty free 3d model preview no.1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a large metal building with a roof and truss structure."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a, b, c", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a submarine", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a fish with green spots, green eyes, green and blue fins, and green and blue stripes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["adee50e7a19c4c219e5a2edac18fb28e", "a17477b445b3443189dad22f768b888b"], "properties": ["Eye color is green, Spot color is green, Fin color is green and blue", "roof, pillar, stairs"], "captions_pred_pc": ["of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a fish on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", " of two rocks with ice elements."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a black and white object", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["Cabinet, Drawers, Filing", "house, tree, pool"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity is a house?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["frame, roof, trusses", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color yellow", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a white of a spaceship and building."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, white, pen, logo", "image, building, spaceship"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a tree"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a white box on a wooden floor"], "question": "which entity has a laptop on top?", "label": 1}, {"captions": [" a green skull and sphere.", "a white glass beer mug."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, skull, sphere", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a white and blue building with a black roof."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, truss, lamp", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a white of a woman with her arms outstretched."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, and material", "image, color, white"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a celtic stone cross.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "9968e06a62e8487ea33460e640abc573"], "properties": ["- material is stone- shape is cross- color is black", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["shape is hot dog, design is dragon, color is black", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["desk, chair, lamp", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a, color, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "832a022cdcc74763b0571e04af4e592b"], "properties": ["- material is white- color is white- texture is textured", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a cube", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["image is royalty-free, beaver, skateboard", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["frame, beams, trusses", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " of a large axe with a cross on top."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, material", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a patterned rug", "for an axe on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["floor plan, bathroom, pool", "house, table, chair"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a featuring a staircase, small red and white building, red box, table, and ceiling light."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "11e2e8ca1f8849e394dfbf532c6d7ae0"], "properties": ["house, staircase, window", "a, building, staircase"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "for a black and white photograph of a piece of metal"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a staircase in the middle of a floor"], "question": "which building has a staircase", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["yellow, table, roof", "desk, chair, table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a staircase in a room"], "question": "which entity has a desk and chair?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, red, blue, structure", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e602ac60041f4b4f84c044161e478781"], "properties": ["water, river, island", "floor, wall, roof"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, base, warning", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object has a box", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, red, blue, green", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- material is wood, metal, metal", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["island, mountain, grass", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white map of the island of malta", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["a, ball, mushroom", "a, desk, laptop"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a small white building with stairs and a white table."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "e30374c614f54fdb90f35b96b071349d"], "properties": ["wing, knife, boat", "building, stairs, table"], "captions_pred_pc": ["a black umbrella on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "star wars stormtrooper "], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, material", "a, color, white"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, horns, features", "box, handle, gun"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, shape, material", "color, shape, color"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a white building with a red roof."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["bedside table, wheels, white", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a red sphere, resembling a ball, balloon, or lipstick."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f09589903f6146dfb623a6c1a07c5bfa"], "properties": ["color, shape, and size", "red, sphere, resembles"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black balloon floating in the air on a gray background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, background, white", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, toilet, robot", "beige, white, round"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, material, shape", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, fence, snowy", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house with a roof structure and toothbrushes."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["building, roof, white, cubes", "house, roof, toothbrushes"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of a small white building with stairs and a lid."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a room, a cake, a table", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small, snow-covered house."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, color, white", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a bench", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a white of a man with arms outstretched."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["a, dress, flower", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " of a white human skull with broken bone elements."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, green, handle", "color, white, skull"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a white of a woman with her arms outstretched."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, head, white and brown", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["metal, laptop, light fixture", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of a corner shelf", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "be1376023c274bdda995d54f3694157f"], "properties": ["color, handle, zipper", "roof, beams, chimney"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "9968e06a62e8487ea33460e640abc573"], "properties": ["a, hole, rock", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["resembles, toy, bookshelf", "resembles, toy, bookshelf"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a book cover"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is a puzzle toy", "label": 0}, {"captions": [" a large industrial building, including a factory and warehouse.", " a wooden shed with a gray roof."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["building, type, factory", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["collection, color, black, handle, wooden", "room, door, shelf"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of an empty room"], "question": "which entity has a door and a shelf?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a spiral staircase with a railing in a small building."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["hair, legs, wings", "staircase, railing, building"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a white human skull with broken bone elements."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["- material is plastic- color is green- shape is box", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["s, stick, leaf", "color, shape, color"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "bded33af34104b9686b845dfd18309a9"], "properties": ["a box, a cup, a bottle, a jar", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["3d superman logo in red and yellow", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, red, yellow", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["color, tan, brown, orange", "tv, chair, laptop"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a loaf of bread and a piece of cake.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["e9a56b5d4f344d5699ddb629f4b94ef8", "d49d8ed244094349a99e4faca05e0690"], "properties": ["bread, cake, loaf", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a piece of fabric with dots", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a loaf of bread royalty free 3d model preview no 3", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small, snow-covered house."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["building, roof, balcony", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" of a white pedestal sink with blue water.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b4ad53e3057f4922b273f86e7adb3466", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["water, sink, color", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a letter 'l'", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white pedestal sink royalty free 3d model preview", "a 3d model of a room with a lot of wires"], "question": "which has more fences", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["s, chimpanzee, human, wolf", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["b5afccae993346079483507296fbb029", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["shape is square, material is metal, color is rusty", "house, fence, dog"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d rendering of a metal box with a handle"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["a, island, water", "house, fence, dog"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["apse, roof, floor plan", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, roof, green, frame, red", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a white cube-shaped shelf"], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "1fc0969de9bf47cab82cae4cc8fe6c2f"], "properties": ["building, roof, white, cubes", "shape is cube, color is white, material is wood"], "captions_pred_pc": ["above a black and white image of a map", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d rendering of a white shelf on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a large metal building with a roof and truss structure."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, green, leaf", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a large rock with a hole in it.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, shape, material", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white drawing of a floor plan"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a white of a spaceship and building."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["frame, roof, trusses", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "703dce44052e48cfb024bceb08141554"], "properties": ["a, shirt, pants", "roof, beams, frames"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a boat"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a wooden structure"], "question": "which entity has more yellow", "label": 1}, {"captions": [" a small white house with a roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a house with a wooden-framed roof structure."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["potted plant, table, shelf", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a building surrounded by various structures, including a skyscraper, in a city setting."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "3b780ced7a814f86b3ee67f3596dddce"], "properties": ["house, plane, town", "building, skyscraper, city"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of an airplane"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a knife with a building on top of it"], "question": "which entity is in a city setting?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a barrel and a cube together."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["black, white, coffee table", "a, barrel, cube"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a cube?", "label": 0}, {"captions": [" a small white building with stairs and shelves.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, stairs, shelves", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a large white and metal building with a metal roof structure."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, room, table", "roof, metal, white"], "captions_pred_pc": ["a black square on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a large white box"], "question": "which building has a white roof?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "411c164757fc4de68dfecb35fa858223"], "properties": ["size, material, color", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a black plastic ring on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, roof, wooden"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["- color is white- shape is cube- material is plastic", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, roof, balcony", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, yellow, black", "room, furniture, window"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d image of a room with a person in it"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, horns, features", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a gun with red wires and a red handle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, red, handle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of an object", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendered image of a gun", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a black and green sphere with blue lights."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "de9edcb24820415da05370c37bb908c3"], "properties": ["color, shape, and material", "color, shape, light"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white map of a city with dots on it royalty free illustration"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a black and white image of the sun in the sky"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["bedroom, bathroom, bed", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a snowy mountain island.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["fe8520ec650248fa92ba07bb95712b09", "bf18bfd89efd43389781050230467d58"], "properties": ["mountain, island, snowy", "Lights, number, five"], "captions_pred_pc": ["for a black cross on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a volcanic eruption", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "bded33af34104b9686b845dfd18309a9"], "properties": ["table, staircase, light", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a small table with a staircase"], "question": "which table has a staircase and a square ceiling light", "label": 0}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, toilet, robot", "color, frame, shape"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof truss, insulation, suspended ceiling", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a set of stainless steel shelves"], "question": "which roof is more likely to be tiled", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, white, red, pink", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor plan, bathroom, pool", "box, paper clip, lock"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "a17477b445b3443189dad22f768b888b"], "properties": ["face, handle, spout", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a square with dots"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["structure, columns, roof", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "97e000ff41094665afd94ea565da8b13"], "properties": ["boxing gloves, heart, hand", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, structure, wall", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a building"], "question": "which roof has trusses", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a green roof and red frame."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "00d9a408067d46afa127a404f63b4f65"], "properties": ["roof, green, lawn", "color, roof, green, frame, red"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a metal roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a white purse with a strap.", " a small purple plastic chair with holes."], "sample_ids": ["dae133bae5cb4496b956f03e1fb7e402", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, strap", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a watch with dots on it", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a white purse with a strap", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a white of a man with arms outstretched."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, material, pattern", "image, color, white"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["wheeled, cart, cannon", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " of a small wooden house with a roof."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["room, house, windows", "roof, house, wooden"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, landscape, sand", "plane, ship, bird"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a wooden shed with a gray roof."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["- material is plastic- color is green- shape is box", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a small wooden house."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["two-story, roof, building", "house, material, wood"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a white bowl", " of a toy mushroom character with a white and brown head."], "sample_ids": ["1ef5a7e9ce464ebb95d21fe298252128", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, shape, material", "color, head, white and brown"], "captions_pred_pc": ["a black and white image of a circle made up of many small dots", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a white bowl on a white background", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a hammer with a long metal handle.", "a black and white of a knife/sword with a handle."], "sample_ids": ["30f4b6bcbbb44f568cab4fd439d05145", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["handle, metal, long", "image, color, black and white"], "captions_pred_pc": ["a black and white toothbrush on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a hammer with a wooden handle and metal head", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "bf18bfd89efd43389781050230467d58"], "properties": ["hat, sword, gun", "Lights, number, five"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, horns, features", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a metal building with a purple roof and cage structure."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["color, shape, pattern", "roof, purple, structure"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a building with a metal roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small house on a hill in a field."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, roof, toothbrushes", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white building with stairs and shelves."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "9e1f64d4fd514059be934077717536dc"], "properties": ["room, door, shelf", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of an empty room", "a white 3d model of a building with stairs"], "question": "which building has stairs?", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["e098706085a44898abbd549693d12a64", "7407a108e0354925b83b750339bc03df"], "properties": ["color is black, white, orange", "platform, color, orange"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a platform that is orange?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, house, small", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, door, clock", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a spiral staircase with railings."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["image, building, stairs", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color is white, material is plastic, shape is bottle", "a room, a cake, a table"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, green, lawn", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": ["white 3d paper airplane map model", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["85b15741a9cb4e0bbb859f1319ac4b5b", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color is white, material is paper, shape is airplane", "color, silver, white"], "captions_pred_pc": ["black glitter africa map on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of the state of new york", "a 3d model of a silver ball on a gray background"], "question": "which object is made of paper", "label": 0}, {"captions": [" a white rocking chair with a curved backrest.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["backrest, curved, yes", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a small white box or bench."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "dfc7c96b45b74328bce7418560fe76fe"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "white, bench, small"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white illustration of a person standing on top of a skyscraper"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d rendering of a white object on a white surface"], "question": "which object is white", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a wooden shed with a gray roof."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick wall with grass.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "766a075b4760433bafdbe88bee546796"], "properties": ["brick, grass, wall", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a wall with graffiti on it"], "question": "which wall is covered in graffiti", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["bed, desk, window", "roof, brown, flat"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small wooden house with a green roof."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, color, green"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "674a36147ffb47059e48abc9fa19d923"], "properties": ["color, green, squirt gun", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, table, ceiling", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house with stairs and a roof."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["hat, food, bowl", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["box, paper clip, lock", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["bedside table, wheels, white", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a group of trees"], "question": "which entity has more plants", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["graffiti, chinese writing, door", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a house with a blue roof.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, color, blue", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a box, a cup, a bottle, a jar", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a metal building with a purple roof and cage structure."], "sample_ids": ["6b745457e06840119058883b35f78f58", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, color, blue", "roof, purple, structure"], "captions_pred_pc": ["a black and white image of a building with dots", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a building with a metal roof"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small building with windows and a roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["room, door, shelf", "roof, windows, building"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["white, rock, shell", "moss, mushroom, grass"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is covered in moss", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["a room, a cake, a table", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a rusted metal barrel with a yellow and red warning sign and stripe on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["5a49ad82ef7a4d33badea2261720f518", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["rusty, warning, metal", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration", "of a black candle on a white background"], "captions_pred_image": ["a black and white photograph of a barrel", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e098706085a44898abbd549693d12a64", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color is black, white, orange", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a white and black clutch with a flower design", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a camera", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, shape, material", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a white bathroom sink"], "question": "which entity is a curved object?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, truss, suspended ceiling", "box, paper clip, lock"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a city, train, dragon", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a black tire.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b645118910b54e2a9f3a97d5598ce1de", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, tire", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a tire on a white background royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house with a roof and beams."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, roof, wall", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a building", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small purple plastic chair with four legs."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["red, eyes, rocket", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["of a black and white image of a clock", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["throne, stairs, tree", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["houses, trees, road", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "f1b557775310478893242180defa4d80"], "properties": ["color, hat, glasses", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, hat, flower", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a metal tray with two rolls of paper in it"], "question": "which object is silver in color", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "411c164757fc4de68dfecb35fa858223"], "properties": ["shape is sphere, color is white, material is plastic", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, pattern, wall", "lamp, harp, bowl"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is wood - color is white - height is 1.8 m", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a gray, metal pillar/cylinder."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["rusty, hat, dartboard", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "of a black candle on a white background"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "40022305eaf44442915c9db03e25f781"], "properties": ["- color is white- shape is cube- material is plastic", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, white, plastic", "box, paper clip, lock"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["backrest, heart, wooden", "table, stairs, ladder"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "411c164757fc4de68dfecb35fa858223"], "properties": ["size, material, logo", "resembles, sea urchin, shell"], "captions_pred_pc": ["in the title the logo for maria ruiz", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", " a white origami bird with silver wings."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "d9574287572c47f7a2b712cf1d919374"], "properties": ["color, shape, size", "color, white, wings"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a 3d model of the human body"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a house with a purple roof and glass block structure."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["color, green, handle", "roof, color, purple"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a building with a glass roof"], "question": "which object is made of glass?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "ceee98c20f23424195da092156905ec4"], "properties": ["texture, spikes, eyes", "face, handle, spout"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a small, circular object"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a white ceramic vase with a face on it"], "question": "which entity is a jug?", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, metal, white", "a, material, clay"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a large white box", "a sculpture of a man's head on a pedestal"], "question": "which entity is not made of clay?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["blue tarp, flower, small island", "island, terrain, water"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d image of a small island in the middle of a lake"], "question": "which island has a rocky terrain?", "label": 1}, {"captions": ["a small chicken figurine on a green base.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["a8abd4ab2a6943bfa4ac1e01caa109ef", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["base color, chicken, figurine", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white illustration of a fish in the shape of a butterfly", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["size, material, lighthouse", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white illustration of a curved line"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a harp in a white room"], "question": "which object is made of plastic", "label": 0}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a, plane, small plane", "door, lock, handle"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, green, lawn", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["earbuds, light, ring", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a house with a roof and beams."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["furniture, room, kitchen", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small wooden house."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, structure, truss", "house, material, wood"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a white castle composed of small cubes."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, bench, rack", "composed of, white, cubes"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a castle made of white cubes"], "question": "which structure is composed of small cubes", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a wooden table with a plant on it."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["a, roof, soup", "table, plant, wood"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "pink light saber."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "c4c8ed95de4640fe8c0be1df68d816ba"], "properties": ["color, red, blue, green", "color, pink, light"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of a black dot on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a light saber on a gray background"], "question": "which object is pink?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["background, color, white", "shape is cube, color is black, white"], "captions_pred_pc": ["a black line on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, bowl, green", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small orange piano with legs."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "d793de7c08d74414beeb8ea50f730705"], "properties": ["books, paper, lamp", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white illustration of a bench"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is not a stack of books", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["hat, sword, gun", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a gray, metal pillar/cylinder."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a, desk, laptop", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a piece of furniture", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of two rocks with ice elements."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d printed model of a small white house.", " a small wooden house with a green roof."], "sample_ids": ["d62a9376f8be4c7585d15ccf68c51239", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["size, material, color", "roof, color, green"], "captions_pred_pc": ["a black and white image of a building with a lot of dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small white birdhouse", "a 3d model of a house with a ladder"], "question": "which house is made of wood", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "4a889132cc444d10bfcbf6c760984416"], "properties": ["Headstock, Guitar, Head", "a, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, temperature, england", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, orange, white", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["image, color, pink", "house, roof, blue"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a small house and barn"], "question": "which image has a roof that is blue?", "label": 1}, {"captions": [" a white pendant floor lamp.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["073a3fb2e9bd42d1affed98ed2d64794", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["height, lamp, shade", "paint, rust, concrete"], "captions_pred_pc": ["of a black circle on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a light bulb on a pedestal royalty free 3d model preview no.", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a child's room in a small house with windows."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "88847a6445044bcbab9611e6028a19b9"], "properties": ["buildings, houses, grass", "room, house, windows"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white drawing of a snowflake"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity has more windows", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "c3a82df41875402285608ef13a55df57"], "properties": ["island, terrain, water", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, house, small", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which house has a roof", "label": 1}, {"captions": [" of a soldier with outstretched arms", " of two rocks with ice elements."], "sample_ids": ["4982a7018e6f4503b5708c714b733ab4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["arms, outstretched, soldier", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a bird's wing", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a soldier with his arms outstretched royalty-free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, background, arrows", "box, paper clip, lock"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, text", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " of a small white building with stairs and a lid."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, roof, wall", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a building", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, gazebo, table", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small triangular-shaped object."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "2d02985030804209a26c2c53b96a06f9"], "properties": ["a lamp, a syringe, a light pole", "shape, triangle, small"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a house with a roof and beams."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["building, ceiling, kitchen", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, truss system, framing", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["screen, monitor, stand", "throne, stairs, tree"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "5414d75e47104589837f3df8b6de6d22"], "properties": ["bed, desk, window", "beige, white, round"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of two rocks with ice elements."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["Cabinet, Drawers, Filing", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["chair, table, refrigerator", "building, balcony, street"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small house with a roof."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["- material is wood, metal, metal", "roof, house, small"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a house with a triangular roof"], "question": "which object has a roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["black, white, laptop", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white map of the island of malta"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["earbuds, light, ring", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " of a house with a roof."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["house, roof, wooden", "roof, house, roof"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a spider-like creature with long arms and legs."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["giraffe, bench, flower", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["a, bird, lake", "color, sphere, molecule"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, material, shape", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a green mountain with trees and grass."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["bed, desk, window", "mountain, grass, tree"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a green mountain with trees and grass."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["painting, door, wall", "mountain, grass, tree"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "97f487941d26472294e005fa97c403be"], "properties": ["color, blue, structure", "color, white, green"], "captions_pred_pc": ["a black and white image of dots on a white background", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of an office building"], "question": "which building has a white and green paper clip?", "label": 1}, {"captions": ["purple speech bubble and circle", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "06a1c233fb444830b577aa06e2c01294"], "properties": ["rusty, hat, dartboard", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["- color is white- shape is cube- material is plastic", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white cube", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "b57936676e9d43abb635fa1217992287"], "properties": ["color, shape, size", "a, hole, rock"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white image of a lace belt"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small white house with a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, stairs, house", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, material, size", "blue, curved, resembles"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["base material, wood, shade color, white, beige", "box, paper clip, lock"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a small white building with stairs and a lid."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, green, orange, star", "building, stairs, lid"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, roof, tray", "black, roof, green"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, color", "color, pattern, word"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a piece of fabric", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["low poly, llama, kangaroo", "low poly, llama, kangaroo"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d low poly animal standing on its hind legs"], "question": "which entity has a llama?", "label": 0}, {"captions": [" a red and white robot.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, red, white", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, white, furniture, black", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "a, color, red"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, green, orange, star", "roof, brown, flat"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, dress, flower", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["shape is sphere, color is white, material is plastic", "bed, desk, window"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity is a room?", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is stone - shape is bat", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["bird, nest, wood", "room, door, shelf"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["a, roof, soup", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a wooden table with a plant on it."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["roof truss, chimney, suspended ceiling", "table, plant, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a side table with a potted plant sitting on top of it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a24872444e5c468a9264d503a9ca7276"], "properties": ["chair, table, refrigerator", "rusty, hat, dartboard"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["bedside table, wheels, white", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["d6087023095446fbadef1721478373b2", "e602ac60041f4b4f84c044161e478781"], "properties": ["door, roof, window", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, door, window", "mountainous, landmass, state"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "8a319c41f6214ee78bf11069ec8535ab"], "properties": ["A, a, a", "yellow, table, roof"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white structure with multiple tables and chairs"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, horns, eyes", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, blue, structure", "building, window, skeleton"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window?", "label": 1}, {"captions": [" a building with yellow lines.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, yellow, lines", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a map", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "b896a0898efe4059a776193c02132129"], "properties": ["wing, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a bird in flight", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of an ancient statue"], "question": "which entity is not made of metal and concrete?", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, head, body", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a wooden table with two barrels.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8bba7567253040d88973320107e48055", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["table, barrels, wood", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black circle on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a barrel table royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "92498f398e244020a867686729633610"], "properties": ["red, mouse, handwriting", "a, house, cat, dog"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": ["yellow metal barricade ", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color, green, squirt gun"], "captions_pred_pc": ["a white barrier on a white background", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["apse, roof, floor plan", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, white, blue", "roof, ceiling, hole"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof and a ceiling with a hole?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " of a small white building with stairs and a lid."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, ceiling, kitchen", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["red, mouse, handwriting", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["metal, roof, chest", "a, building, roof"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of the space shuttle"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a spider-like creature with long arms and legs."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, green, lawn", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "d81d13362ae04371bb2cba46e4939665"], "properties": ["ceiling, light, desks", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a brick building with a roof structure and roof truss."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "84e8acad28664a738df69d719df9e263"], "properties": ["frame, roof, trusses", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, material, structure", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building with multiple levels"], "question": "which building structure is made of wood", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "4a889132cc444d10bfcbf6c760984416"], "properties": ["light, toilet, faucet", "a, color, white"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a desk and chair"], "question": "which entity is not a bathroom?", "label": 0}, {"captions": [" a white staircase with a black railing in a room.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["color, white, railing, black", "floor, staircase, table"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a spider-like creature with long arms and legs."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, hill, forest", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white of a small archway gate.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["image, color, white", "flower, color, pink"], "captions_pred_pc": ["above a black and white illustration of an arch", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a wooden roof structure with a pink roof."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color is white, material is plastic, shape is box", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "b896a0898efe4059a776193c02132129"], "properties": ["house, lake, pool", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, horns, features", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["pos machine, credit card machine, cash register", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a cell phone"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small white box with a green light.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, white, light", "a, color, red"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a castle with two towers"], "question": "which object has a red roof", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "f1b557775310478893242180defa4d80"], "properties": ["base material, wood, shade color, white, beige", "shack, roof, door"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, background, white", "color, green, squirt gun"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "two white spheres in a ."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "1c02212a35134545ab63ab180d629c31"], "properties": ["building, floor, columns", "two, spheres, white, in, a"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a white ball on a gray background"], "question": "which entity has no columns?", "label": 0}, {"captions": [" a white and blue building with a black roof.", " a house with a flat roof structure."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, blue, roof, black", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which building has a flat roof", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", "a 3d white cube with windows resembling a building."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "4a07a5293f024bb0a353954a056ef626"], "properties": ["red, sphere, resembles", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small building with a staircase in a room."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["A, a, a", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of the letter l"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "a17477b445b3443189dad22f768b888b"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["- material is plastic- color is white- shape is cylinder", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a tv stand/shelf", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["size, material, color", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a large steel building with a pool."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, trusses, beams", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, metal, white", "roof structure, truss, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a wooden truss and ceiling with a light", "label": 1}, {"captions": ["yellow metal barricade ", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is yellow, material is metal, height is 0.5 m", "Cabinet, drawer, wood"], "captions_pred_pc": ["a white barrier on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, wheel, helmet", "house, staircase, table"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, plane, city", "house, rock, bird"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["color, black, shade, black", "tv, chair, laptop"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a person sitting on a couch"], "question": "which entity has a tv", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["boat, table, chairs, umbrella, solar panel", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["s, plane, house", "house, roof, wooden"], "captions_pred_pc": ["a black and white silhouette of a map", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, pink, blue", "roof, color, yellow"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["room, house, windows", "island, mountain, grass"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a spider-like creature with long arms and legs."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["food, leaves, shredded paper, rocks", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a white chest of drawers with legs."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a, hole, shelf", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is plastic- shape is dice- color is white", "lion, statue, fountain"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a metal object"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a wooden roof structure with a pink roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a small house with a road in front of it.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "6b745457e06840119058883b35f78f58"], "properties": ["house, front, road", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["rusty, sink, graffiti", "turrets, flags, towers"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "b896a0898efe4059a776193c02132129"], "properties": ["leaf, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white fox."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, material, structure", "color, white, fox"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a fish"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["two-story, roof, building", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a house with roof trusses"], "question": "which building has a roof", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, texture", "metal, rusted, paper"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be a rusted metal?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is wood - color is white - height is 1.8 m", "metal, cross, clock"], "captions_pred_pc": ["an illustration of a barbed wire fence", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " of two rocks with ice elements."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, helmet, airplane wing", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "c3a82df41875402285608ef13a55df57"], "properties": ["house, rock, pond", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["sandbox, sand bucket, wooden blocks", "house, pool, balcony"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white toy cannon."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a414258c6bf149708404913a89ab8dbc"], "properties": ["color, shape, and size", "color, white, toy"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": [" a building with yellow lines.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, yellow, lines", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a map", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a white 3d model of a city skyline"], "question": "which image has more holes", "label": 1}, {"captions": [" a small house with a roof.", " a small, snow-covered house."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, house, small", "house, snow, cover"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, fence, dog", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["balcony, stairs, house", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "5414d75e47104589837f3df8b6de6d22"], "properties": ["metal, roof, chest", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a wooden chest", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["size, material, image", "broom, shovel, fireplace"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a 3d model of an outdoor fireplace"], "question": "which entity is a painting?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a blue cityscape with water elements, featuring a lake and a boat."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "6b4e3485993048ae86301a9720782751"], "properties": ["color, skyline, buildings", "color, lake, boat"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white silhouette of an island on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2"], "question": "which entity has a lake?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white barn with a metal roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "4ca3342a96824684845f7d0e062ab176"], "properties": ["frame, roof, trusses", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a barn"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "6b745457e06840119058883b35f78f58"], "properties": ["color, red, blue, green", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "b896a0898efe4059a776193c02132129"], "properties": ["a lamp, a syringe, a light pole", "- material is stone, metal, concrete"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small white house with a roof."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["earbuds, light, ring", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of two rocks with ice elements."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, roof, soup", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, truss, structure", "house, roof, wooden"], "captions_pred_pc": ["of a metal grate on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "a17477b445b3443189dad22f768b888b"], "properties": ["hair, legs, wings", "roof, pillar, stairs"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["21639082215b4b179d574d2408124838", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, room, furniture", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, house, small", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "hat, skull, bread"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a, rock, paper", "wood, board, shelf"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["small purple teapot with a hook.", " a wooden roof structure with a pink roof."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, purple, hook", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a bowl", "above a black and white image of a metal grate"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " a white rocking chair with a curved backrest."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["mannequin, scarf, color", "backrest, curved, yes"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of an egyptian sarcophagus."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["color, light, jewels", "sarcophagus, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, white, black, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["nut, bowl, ring", "island, terrain, water"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a large white and metal building with a metal roof structure."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, roof, wooden", "roof, metal, white"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small white barn with a metal roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4ca3342a96824684845f7d0e062ab176"], "properties": ["A, a, a", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a person breaking through a brick wall."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, structure, wall", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a brick wall?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c4c09479570943e2845fbd4c6a450568"], "properties": ["roof, green, lawn", "castle, island, house"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house on an island"], "question": "which entity has a floating house", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["metal, legs, wheels", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "white of a rhino head with horns."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "8481aade84de47cab1a9accf8067e678"], "properties": ["houses, trees, road", "image, rhino, head"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "of a penguin skull in black and white"], "captions_pred_image": ["a black and white photograph of a small town", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["building, color, white", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "an image of a pile of trash on the ground"], "question": "which building has grass", "label": 1}, {"captions": [" an old lantern with moss on it.", " of two rocks with ice elements."], "sample_ids": ["62925f26fd624310bd6b31136fe8e706", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["moss, lantern, old", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of an old lantern", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["graffiti, bench, wall", "house, roof, green"], "captions_pred_pc": ["for a black and white image of a boat", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["building, balcony, street", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an old building", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a house with a roof structure and toothbrushes."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, handle, zipper", "house, roof, toothbrushes"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d rendering of a white box with a lot of blades"], "question": "which object has a roof structure", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, plane, town", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small, snow-covered house."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, material, structure", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a piece of broken glass on a white background"], "question": "which structure is covered in snow", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["s, stick, leaf", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a small house with a roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "b896a0898efe4059a776193c02132129"], "properties": ["roof, house, small", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a blue character with arms outstretched.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "92498f398e244020a867686729633610"], "properties": ["color, shape, pattern", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "411c164757fc4de68dfecb35fa858223"], "properties": ["black, roof, green", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of mario bros yellow question block cube.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["efac007aa9214bcaaa5bcb2cf23aeb47", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color is yellow, shape is cube, name is question block", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d printed cube with a question mark on it", "a 3d model of a dragon with wings"], "question": "which entity has a color that is not black?", "label": 0}, {"captions": [" a gun with red wires and a red handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of an object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendered image of a gun", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", "a 3d white cube with windows resembling a building."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "4a07a5293f024bb0a353954a056ef626"], "properties": ["chest of drawers, cabinet, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a blue roof.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["roof, color, blue", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof that is made of metal", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "c3a82df41875402285608ef13a55df57"], "properties": ["color, model, luggage", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["color, shape, and size", "ceiling, light, desks"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, light, jewels", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a metal tray with two rolls of paper in it"], "question": "which object is silver", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["color, white, black, white", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["roof, purple, suspended", "building, room, sky"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["house, rock, pond", "meat, bread, sausage"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " of a small white building with stairs and a lid."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, awning, cover", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["house, roof, toothbrushes", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["color, roof, block", "books, paper, lamp"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white photograph of a toilet paper holder"], "question": "which entity has a black and white shade", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, white, logo", "window, arches, wall"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "bea8441c08d94366b96b53775391d8e6"], "properties": ["roof, color, red", "color, white, logo"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity has a logo", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["building, roof, white, cubes", "striped, white, black"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["A, a, a", "roof, purple, beams"], "captions_pred_pc": ["a black and white illustration of a bench", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of the roof structure royalty free 3d model no."], "question": "which entity has a purple roof", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small wooden house with a green roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["balcony, stairs, house", "roof, color, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, texture", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a white box, a white lid, and a white container"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" colorful cubes and balls.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["598e319509a54ddd9a7220959b2bc5a7", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, shape, size", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d rendering of a group of cubes and a ball", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " of a black and white striped fly in the air."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["rocky, rug, puddle", "black, white, fly"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a black and white photograph of a fly"], "question": "which entity is not a striped fly?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, grass, moss", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a, hole, rock", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a green pickle"], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "4c7904175d6d4676b73866c25110e8d3"], "properties": ["resembles, toy, bookshelf", "color is green, shape is cylinder, material is plastic"], "captions_pred_pc": ["a black and white image of a book cover", "of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a peanut on a white background royalty free 3d model preview no.3"], "question": "which entity is a cylinder?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, trusses, beams", "house, fence, playground"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "6b745457e06840119058883b35f78f58"], "properties": ["building, stairs, shelves", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a group of ponies in a row."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["hat, food, bowl", "group, row, pony"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small building with windows and a roof."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["Cabinet, Drawers, Filing", "roof, windows, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with stairs and a roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["room, bed, desk", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building material, pool, steel", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a room with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a concrete structure", "a black and white photograph of a birdhouse"], "question": "which building is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c3a82df41875402285608ef13a55df57"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a white sofa, chair, and box."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "4c59733ebd634594a921b7ace60e4142"], "properties": ["ceiling, beams, light", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a white chair"], "question": "which entity has a box?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["furniture, staircase, torn-apart", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["Drawer, Pattern, White", "roof, color, yellow"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, shape, material", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["door, lock, handle", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["shattered, resembles, broken phone", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["for black ink brush strokes on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, roof, blue", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small house"], "question": "which house has a pool", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["texture, spikes, eyes", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a white building with a red roof."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["white, windows, lid", "color, white, roof, red"], "captions_pred_pc": ["above a black and white image of dots on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["white korean word on a gray background.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "6b745457e06840119058883b35f78f58"], "properties": ["color, background, font", "roof, color, blue"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white image of a building with dots"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof truss, beams, structure", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["image size, image, origami", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white illustration of an airplane", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an origami dragon", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a house with wooden framing and trusses."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["food, leaves, shredded paper, rocks", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house with stairs and a roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["s, plane, house", "roof, stairs, house"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with blue lines and structure.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, structure", "color, pattern, word"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a building under construction", "a beaded necklace with the word banned on it"], "question": "which entity has a word in it?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "a243183445184d2e977044a5b6916e55"], "properties": ["a, b, c", "painting, frame, door"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white image of a large group of people"], "captions_pred_image": ["a line of white cubes with various insects on them", "a picture frame with a black and white photograph"], "question": "which entity has a painting on it?", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["a, bird, lake", "mossy, rock, rocky"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which object is not a mountain?", "label": 0}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["windmills, silhouette, city model", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a gun with red wires and a red handle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, red, handle", "box, handle, gun"], "captions_pred_pc": ["above a black and white image of an object", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendered image of a gun", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with a roof and beams."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, pink", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["broom, shovel, fireplace", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a large white and metal building with a metal roof structure."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, windows, building", "roof, metal, white"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which building has a roof made of metal", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, purple, suspended", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, stairs, house", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a long metal fence"], "question": "which entity has a roof with a truss structure", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["b5afccae993346079483507296fbb029", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["shape is square, material is metal, color is rusty", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a human skull", " a cartoon panda bear wearing a diaper."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["a, b, c", "cartoon, bear, diaper"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a cute panda bear"], "question": "which entity is not a cartoon?", "label": 0}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["floor, table, light", "building, room, sky"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["metal, rusted, paper", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, roof, green, frame, red", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a chair with a yellow seat."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, green, orange, star", "color, yellow, seat"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a white glass beer mug."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "1d686cbd3e9a4c629a43088658989286"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a house with a green, wooden-structured roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["size, color, shape", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house with a triangular roof"], "question": "which entity is larger", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small white building with stairs and shelves."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, texture", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a white 3d model of a building with stairs"], "question": "which entity has a lot of stairs?", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " a small wooden house with a green roof."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a city, train, dragon", "roof, color, green"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, fence, snowy", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with stairs and a roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["balcony, stairs, house", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house on a hill in a field."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["apse, roof, floor plan", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of a crab holding a rubik's cube."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["building, skyscraper, city", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white image of a crab holding a cube"], "question": "which entity is a puzzle?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["a, b, c", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white drawing of a building"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a roof truss?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a train, a ship, a boat", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a submarine", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "68e0d097351843a3980421f2ae624c59"], "properties": ["color, grass, moss", "white, top, writing"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "9d03ee6c9fcc458e9485aa7cb0d1f4cb"], "properties": ["houses, trees, road", "a, city, train"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a toy train set on a table"], "question": "which entity is a city?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["low poly, plant, white", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["ruined building, stone floor, small stone structure", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a metal box with a handle"], "question": "which entity has a gun inside?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a house with a roof and beams."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a building with a roof"], "question": "which house has a roof and beams?", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, character, mario", "building, plane, room"], "captions_pred_pc": ["for a black and white sculpture of a person", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, yellow, black", "roof, green, tiled"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "034c093c73fd48758422feee0b10c5d8"], "properties": ["color, tail, cord", "a, backpack, stick"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white drawing of a bird in flight"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a pencil drawing of a person holding a sword"], "question": "which object has a backpack?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, light, jewels", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, white, black, white", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["black and white image of a motorcycle", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, black, white", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "meat, bread, sausage"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a box, a cup, a bottle, a jar", "house, hill, forest"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["d6087023095446fbadef1721478373b2", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["door, roof, window", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a clay pot with holes in it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is white- color is white- texture is textured", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, green, handle", "a, material, steel"], "captions_pred_pc": ["of a small black object on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a large stone buddha statue atop a rock, on a monumental pillar.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["478ab30e64cd4dbc8fa09ba76f5b95cb", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["buddha, rock, pillar", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a tombstone", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a blue roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["house, staircase, window", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["low poly, llama, kangaroo", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a blue security booth featuring a locked door and a \"clean way\" inscription.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["d2ba0001656f477787b7df4567346a2f", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, inscription, booth", "grass, plants, rocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free stock illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a gray metal box with an open door", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, height", "island, mountain, grass"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, hat, handle", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a graffiti-covered train, bench, wall, and skateboard."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "6de9fcac063d45df9424decdc215b379"], "properties": ["fireplace, bench, log", "graffiti, bench, wall"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white image of a boat"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a graffiti-covered wall in a black and white photograph"], "question": "which entity has a bench that is covered in graffiti?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, wheel, helmet", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small red and white spaceship.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, shape, size", "ashtray, color, gray"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is a ashtray?", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["handle, knife, shotgun", "throne, stairs, tree"], "captions_pred_pc": ["of a popsicle on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small building with windows and a roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, texture", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, ball, mushroom", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a two-story small apartment building with a roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["floor plan, heating system, ceiling light fixture", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, material, structure", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d image of an animal laying on the ground"], "question": "which entity is a boat?", "label": 1}, {"captions": [" of a black shark", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["black, mouth, teeth", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["mossy, rock, rocky", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, rock, pond", "house, fence, dog"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small wooden house with a green roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, table, ceiling", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "white of a rhino head with horns."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "8481aade84de47cab1a9accf8067e678"], "properties": ["color, horns, features", "image, rhino, head"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which entity has horns", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "990f06da2ba4488da8371f68da6b4523"], "properties": ["- color is white - shape is box - material is plastic", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a house with a wooden roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "5f8c7eda0f464019a4acea243114555d"], "properties": ["- material is plastic- color is white- shape is cylinder", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of an arrow"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a brick building with a roof structure and roof truss."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "84e8acad28664a738df69d719df9e263"], "properties": ["color, shape, text", "roof, structure, truss"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["boxing gloves, heart, hand", "building, plane, room"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["a lamp, a syringe, a light pole", "a, building, coin, ball"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" of a numbered rock.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["number, color, shape", "Steel, Color, Yellow"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white illustration of a building"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "c3a82df41875402285608ef13a55df57"], "properties": ["island, terrain, rocks", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, grass, moss", "house, roof, blue"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["bread, chocolate, cake", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a loaf of bread", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, desk, laptop", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a piece of furniture", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, laptop, teddy bear", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a large steel building with many columns and a pool."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["turrets, flags, towers", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, roof, tray", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a ceiling with a light", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["chest of drawers, cabinet, white", "roof, color, yellow"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a metal tool with a yellow handle, a laptop, and a ceiling light fixture."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b714bf13e9e54acb867c2c1b3ccf8ae8"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "metal, laptop, light fixture"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white image of a corner shelf"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a telescope on a stand"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a white origami bird with silver wings.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d9574287572c47f7a2b712cf1d919374", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, wings", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d model of the human body", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a futuristic bird in flight on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " of a crab holding a rubik's cube."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["house, pool, balcony", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a modern house", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small white building with stairs and a white table."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "e30374c614f54fdb90f35b96b071349d"], "properties": ["sandbox, sand bucket, wooden blocks", "building, stairs, table"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, staircase, window", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape, bathroom, refrigerator", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "84ecc9f87efc4638acb5532ecd55b809"], "properties": ["color, light, jewels", "color, head, body"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a teddy bear made of dots on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a robot in low poly style"], "question": "which robot has a yellow head", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white house with a roof."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["texture, spikes, eyes", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a wine corkscrew"], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, island, resembles, hawaii", "a, type, corkscrew"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a barrel and a cube together."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["image is rock formation with a white cliff and a rock", "a, barrel, cube"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a rock formation?", "label": 0}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["type, relief, statues", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small house with stairs and a roof."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["door, lock, handle", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, shape, size", "Steel, Color, Yellow"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["light switch, electrical outlet, furniture", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, room, ceiling", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " of a character wearing glasses and a hat."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, card, case", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, green, lawn", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, b, c", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, blue, green, yellow, blue", "a, outfit, green"], "captions_pred_pc": ["a pair of sneakers on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, purple", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["blue, curved, resembles", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a large metal building with a roof and truss structure."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "b85a99699ccd4bcba213322113bb253d"], "properties": ["earbuds, light, ring", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "of a metal grate on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a 3d white cube with windows resembling a building."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, blue, green, yellow, blue", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, roof, soup", "floor, stairs, bathroom"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, light, jewels", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a wine corkscrew", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["07047b273add4f6fb2075fd176a50cd9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, type, corkscrew", "a, material, clay"], "captions_pred_pc": ["a black and white image of a corkscrew", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wine bottle opener", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small orange piano with legs."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, horns, features", "color is orange, size is small, legs"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "09f2cf267e954c958828325067bcc36a"], "properties": ["graffiti, chinese writing, door", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a small wooden house with a green roof."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, bird, green, yellow, blue", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white map of hawaii on a white background"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a house with a wooden-framed roof structure."], "sample_ids": ["adec10493e06436c967d5797f7085225", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, material, shape", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["room, door, shelf", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a snowy landscape"], "question": "which building has a white table?", "label": 1}, {"captions": [" a small wooden sailboat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["size, material, sails", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, and size", "gold, ring, animal"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a shark"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, trusses, beams", "black, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["hat, candy, strawberry", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a 3d red and white santa claus teddy bear with a flying plane and floating hat."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "0797e97b272c43d59bfeb5821421c5eb"], "properties": ["size, color, shape", "hat, color, white"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of a doll made of beads"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white photo of a snowflake falling from the sky"], "question": "which entity is white", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["resembles, toy, castle", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, shape, height", "water, boat, rock"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, structure, truss", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a building with a roof"], "question": "which entity has a roof structure that includes a greenhouse?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["backrest, curved, yes", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["table, staircase, light", "houses, trees, road"], "captions_pred_pc": ["a black and white photo of the letter g", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a table with stairs", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, brown, flat", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a large metal building with a roof and truss structure."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, gazebo, table", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["tiers, building, stairs", "building, balcony, street"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["hat, sword, gun", "house, tree, pool"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a wooden roof structure with a pink roof."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["location, highway, train station", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of an egyptian sarcophagus."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["roof, truss, lamp", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "small airplane flying in the air."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "903dd2d9d2b7499580a0c1645df88a22"], "properties": ["s, plane, house", "airplane, fly, air"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black and white illustration of a panda holding a light bulb"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of an airplane royalty-free 3d model"], "question": "which entity has a plane flying in the air?", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, laptop, teddy bear", "a, outfit, green"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["location, field, gravestone", "house, lake, pool"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a large building"], "question": "which location has a pool", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a, bird, lake", "throne, chair, building"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "a white glass beer mug."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "1d686cbd3e9a4c629a43088658989286"], "properties": ["ring, material, gold", "color, white, glass"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a white of a man with arms outstretched."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a small wooden house with a green roof."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["green, hat, cream", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small wooden house.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, material, wood", "house, rock, bird"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small cottage", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, white, red, pink", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["background, color, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a white plastic container with a label on it"], "question": "which entity is a container?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["broom, shovel, fireplace", "hat, dress, racket"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, white, black, white", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, red", "structure, roof, pitch"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["ceiling, light, desks", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, b, c", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white, labeled stone resembling a block of ice, bar of soap, or rock."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "44723e86bdd14071b0544745879604de"], "properties": ["resembles, toy, bookshelf", "resembles, bar, soap"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble"], "question": "which entity is a block of ice?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["floor, wall, roof", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", "a white of a woman with her arms outstretched."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["collection, moose, skull", "image, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a woman with her arms outstretched"], "question": "which image is of a woman?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["bed, desk, window", "door, lock, handle"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, blue, components", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, structure, house", "roof, beams, chimney"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a small wooden house with a roof."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, house, wooden"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small white toy cannon."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "a414258c6bf149708404913a89ab8dbc"], "properties": ["color, white, holes", "color, white, toy"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a tree and a rock."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["room, bed, desk", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["roof truss, chimney, suspended ceiling", "floor, stairs, bathroom"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small table"], "question": "which house has a bathroom?", "label": 1}, {"captions": [" a pink and green cube and chair.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c6faf508072b4d0ea014bd9c748b79c3", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, chair, pink, green", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a curved line made up of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a simple white chair", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["- material is wood, metal, metal", "room, furniture, window"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a slice of rainbow cake with multicolored sprinkles on it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["fc515651480c43b7a0712215939cc510", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, rainbow, sprinkles", "a, color, red"], "captions_pred_pc": ["a silhouette of the state of oregon on a white background silhouette of the state of oregon on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white photograph of a slice of cake", "a 3d model of a castle with two towers"], "question": "which object has a red color?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white castle composed of small cubes."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["room, door, shelf", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" of a bow and arrow set", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["arrows, bow, set", "throne, stairs, tree"], "captions_pred_pc": ["for a black and white illustration of a bee", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house with a blue roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, blue", "house, fence, playground"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["A, a, a", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small white building with stairs and shelves."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "9e1f64d4fd514059be934077717536dc"], "properties": ["resembles, octopus, squid, spider, robot", "building, stairs, shelves"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": [" a small house with a red roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["085db9059b744673b5623b5338e02196", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, red, house", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white dotted square on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a crab holding a rubik's cube."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["s, chimpanzee, human, wolf", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["resembles, toy, castle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["island, terrain, rocks", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small black box on a purple square.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["75f209e543c046669099190953616acc", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of the letter l", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["tv, chair, laptop", "tv, chair, laptop"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop?", "label": 0}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a large steel building with many columns and a pool."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, ceiling, kitchen", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["image size, image, origami", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of an origami dragon", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a stone wall featuring a statue and a window."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "09ab58e01e0d4393bc1e82f157e641be"], "properties": ["a, desk, laptop", "a, window, statue"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a black and white photo of a sculpture of jesus on the cross"], "question": "which entity has a window", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house with a tree and a rock."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["s, plane, house", "house, tree, rock"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["background, color, white", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a white rectangular shelf or light fixture on a gray background."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "a84221f27ed0416280f8e67563f95ed7"], "properties": ["location, field, gravestone", "background, color, white"], "captions_pred_pc": ["a black and white illustration of a whale", "a black line on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a long white plastic strip on a gray background"], "question": "which entity is not white?", "label": 0}, {"captions": [" a small black and white cube.", "a wooden-cased radio."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, size", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a city skyline", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white statue of a woman holding a baby.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7cf1c30a98fc4ae796e040c2ce18c03a", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, statue", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a heart", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d printed figurine of a woman holding a cat", "a 3d model of an ancient statue"], "question": "which statue is made of stone", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["shape, bathroom, refrigerator", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["s, chimpanzee, human, wolf", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["broom, shovel, fireplace", "roof, color, yellow"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, and size", "stair, table, chair"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "be1376023c274bdda995d54f3694157f"], "properties": ["house, tree, pool", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["table, bench, deer", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "1da865c75a5e4a57a17652975dae5474"], "properties": ["house, rock, pond", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["A, a, a", "a, building, roof"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of the space shuttle"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "6b745457e06840119058883b35f78f58"], "properties": ["house, fence, dog", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat."], "sample_ids": ["5c04dac989a64d228283687588484b93", "a21baaacd25041a9a50ede5e583ddab9"], "properties": ["color, shape, material", "pattern, color, shape"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d image of a city map on a black surface"], "question": "which entity is a square?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "766a075b4760433bafdbe88bee546796"], "properties": ["building, floorplan, gym", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wall covered in graffiti", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, purple, suspended", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a wooden-framed roof structure."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, structure, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "c3a82df41875402285608ef13a55df57"], "properties": ["metal, legs, frame", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a multicolored metal building structure with a roof."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, metal, white", "color, roof, structure"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a barn structure"], "question": "which structure is multicolored?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, skyline, buildings", "frame, screen, color"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a black and white cross on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small house on a hill in a field."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["door, roof, pool", "house, hill, field"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, color, green", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is stone - shape is bat", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is made of paper", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "97e000ff41094665afd94ea565da8b13"], "properties": ["door, white, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", "white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "92052c493bf141a08b56f30f9c5e2d61"], "properties": ["light, toilet, faucet", "light, toilet, faucet"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a white plastic toilet paper holder on a gray background"], "question": "which entity has a toilet with a handle?", "label": 0}, {"captions": [" of a machine gun.", "a low-poly of a white, shattered sphere."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["gun, barrel, caliber", "sphere, color, texture"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a cracked egg"], "question": "which entity has a texture?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["houses, trees, road", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a wooden windmill with a red roof."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["mossy, rock, rocky", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a black tire."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "b645118910b54e2a9f3a97d5598ce1de"], "properties": ["shape is hot dog, design is dragon, color is black", "color, black, tire"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a tire on a white background royalty free 3d model preview no.2"], "question": "which is not a tire", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a hammer with a long metal handle."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, light, jewels", "handle, metal, long"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "6b745457e06840119058883b35f78f58"], "properties": ["house, roof, wooden", "roof, color, blue"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small wooden sailboat.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["size, material, sails", "striped, white, black"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a white castle composed of small cubes."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["a knife, blade, handle", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a wooden table with a plant on it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["- material is white- color is white- texture is textured", "table, plant, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a side table with a potted plant sitting on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "a black and white of a knife/sword with a handle."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["holder, spring, box", "image, color, black and white"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a small house with stairs and a roof."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, orange, leather", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "bded33af34104b9686b845dfd18309a9"], "properties": ["face, handle, spout", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["house, roof, green", "roof, structure, greenhouse"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["door, lock, handle", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, yellow, black", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of an airplane", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["- material is white- color is white- texture is textured", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a cube", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, roof, white, cubes", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a four-legged metal workbench with shelves."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["metal, legs, wheels", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of an egyptian sarcophagus."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["yellow, table, roof", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a green mountain with trees and grass."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["frame, roof, trusses", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "88eba412c78a4ced89eb857327653f6c"], "properties": ["building, skyscraper, city", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a brick wall with grass."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "53f2d948091f417cb580e22469c94db2"], "properties": ["house, tree, rock", "brick, grass, wall"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "a17477b445b3443189dad22f768b888b"], "properties": ["lamp, harp, bowl", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a stone wall with a window and a clock."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["a, ball, mushroom", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a black and white striped box."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["bed, desk, window", "color, black, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, blue, green, yellow, blue", "roof, color, yellow"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " of a hammer with a long metal handle."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, shape, material", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["background, color, white", "striped, white, black"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a stack of books"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, air conditioner, house", "structure, material, pool"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": ["small purple teapot with a hook.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, purple, hook", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a bowl", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a large gray sphere", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["size, color, shape", "roof, brown, flat"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["21639082215b4b179d574d2408124838", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, room, furniture", "house, fence, playground"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, hill, deer", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small white building with stairs and shelves."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "9e1f64d4fd514059be934077717536dc"], "properties": ["house, rock, pond", "building, stairs, shelves"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof truss, insulation, suspended ceiling", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["cover, torn, open", "box, paper clip, lock"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a large house with a roof on a platform."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, white, yellow, roof, metal", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, sphere, molecule", "color, pattern, word"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a beaded necklace with the word banned on it"], "question": "which entity has a word that is a color?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, floor, columns", "roof, material, wood"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a small white airplane flying in the air."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, shape, material", "airplane, color, white"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "of a black and white image of a clock"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a small airplane"], "question": "which object is white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a green mountain with trees and grass."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["A, a, a", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "b896a0898efe4059a776193c02132129"], "properties": ["a, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, b, c", "a, landscape, sand"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, chair, table, light", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "a17477b445b3443189dad22f768b888b"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "sonic the hedgehog with a red nose and blue monster features."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "f2a462cfea214cd894692af7544f8441"], "properties": ["color, head, white and brown", "color, nose, blue"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white illustration of a funny monster"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a cartoon character"], "question": "which entity has a blue nose", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a potted christmas pine tree."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["earbuds, light, ring", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "97e000ff41094665afd94ea565da8b13"], "properties": ["metal, laptop, light fixture", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["building, stairs, shelves", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with various objects", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a large building with a roof and windows."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, grass, moss", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["shape is box, color is white, door is present", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a white castle composed of small cubes."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["houses, trees, road", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a landscape?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["location, highway, train station", "building, color, black and white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", "star wars stormtrooper "], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a, character, person", "a, color, white"], "captions_pred_pc": ["a 3d model of a person", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a 3d model of a star wars stormtrooper"], "question": "which character is white", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["s, stick, leaf", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small white archway structure resembling a building."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "5ad02458cf394134a902e25001d2ffef"], "properties": ["house, lake, pool", "structure, building, archway"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a large building", "a 3d rendering of a white object on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["roof, metal, white", "room, door, shelf"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of an empty room"], "question": "which building has a room with a door and a white shelf?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a green, wooden-structured roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["floor plan, bathroom, pool", "roof, color, green"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "6b745457e06840119058883b35f78f58"], "properties": ["desk, chair, lamp", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["b5afccae993346079483507296fbb029", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["shape is square, material is metal, color is rusty", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a chocolate cake with a mushroom on top, displayed on a stand."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "728e8c8600584eacae80208bba7eece4"], "properties": ["color, shape, and size", "chocolate, mushroom, cake"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a mushroom on top of a cake royalty free 3d model preview"], "question": "which entity is a cake?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small house with stairs and a roof."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a, dress, flower", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "c3a82df41875402285608ef13a55df57"], "properties": ["color, roof, green, frame, red", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["metal, legs, wheels", "a, desk, laptop"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of an office desk on a white background"], "question": "which object has a laptop", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a large metal building with a roof and truss structure."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "b85a99699ccd4bcba213322113bb253d"], "properties": ["texture, spikes, eyes", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a flower", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["text, material, shape", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, stairs, house", "roof, green, tiled"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", "star wars stormtrooper "], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, handle, straps", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a camera with a blue screen and lens.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["screen, lens, color", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, ceiling, hole", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- color is white- shape is cubes- number is 1", "Headstock, Guitar, Head"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a small white airplane flying in the air."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, black, blue", "airplane, color, white"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "of a black and white image of a clock"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a small airplane"], "question": "which airplane is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a large building with a roof and windows."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "32d1fbd3ee91426882290305f70021e6"], "properties": ["texture, spikes, eyes", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a flower", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a house with a roof and beams."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["of a black and white doily on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["resembles, toy, bookshelf", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house with a pond and situated on a rock."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "92859eb82a344134806b37cc209927c6"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, rock, pond"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" of a white shelf", " a large metal building with a roof and truss structure."], "sample_ids": ["bd39ae69218a4ec28c453936e245f175", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, material, shape", "roof, truss, structure"], "captions_pred_pc": ["of a black and white image of a long, thin object", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "12093c89a60941e7884b252bdc05104c"], "properties": ["background, color, white", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a house with a blue roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, blue", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["earbuds, light, ring", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "an oval table with a mouse on top of it"], "question": "which entity has a table lamp?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["hat, food, bowl", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large building with a roof and windows.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "6b745457e06840119058883b35f78f58"], "properties": ["roof, windows, building", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a white of a man with arms outstretched."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["desk, chair, table", "image, color, white"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, texture", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, gold", "house, roof, wooden"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, red, pink", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " of two rocks with ice elements."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, staircase, window", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, color, red", "low poly, plant, white"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["roof truss, insulation, suspended ceiling", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " of an egyptian sarcophagus."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["buildings, houses, grass", "sarcophagus, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white circular pattern on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "88eba412c78a4ced89eb857327653f6c"], "properties": ["color, white, containers", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a robotic warrior with a sword.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["weapon, sword, robot", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a vehicle with wheels and tires"], "question": "which entity is not a robot?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["roof, room, ceiling", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["yellow, table, roof", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "f1b557775310478893242180defa4d80"], "properties": ["water, boat, rock", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["backrest, curved, yes", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["floor plan, heating system, ceiling light fixture", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "12093c89a60941e7884b252bdc05104c"], "properties": ["building, skyscraper, city", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a wooden staircase with a railing and table."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "956247bea850458199c651037d4b1d7f"], "properties": ["houses, trees, road", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a pair of dumbbells.", "a white glass beer mug."], "sample_ids": ["c4274da2e5a145faaffa2bfa75e0134d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["weight, pair, dumbbells", "color, white, glass"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model preview no 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a black motorcycle helmet with a visor on top"], "question": "which object is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "6b745457e06840119058883b35f78f58"], "properties": ["chair, table, refrigerator", "roof, color, blue"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a steeple on top"], "question": "which entity has a clock tower", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a house with a roof and beams."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["hat, pants, shirt", "roof, beams, house"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a black rock with writing on it.", " a white castle composed of small cubes."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, black, writing", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a clay pot with holes in it."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a, desk, laptop", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["854757ca755240f8b04576d899349151", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["cabinet, room, shelf", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "06a1c233fb444830b577aa06e2c01294"], "properties": ["background, color, white", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house on a hill in a field."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["bed, desk, window", "house, hill, field"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of a small house"], "question": "which entity is outside?", "label": 1}, {"captions": [" of a large gray sphere", " of a beige and white round soap dish/small bowl."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "5414d75e47104589837f3df8b6de6d22"], "properties": ["size, color, shape", "beige, white, round"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is rounder", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "d49d8ed244094349a99e4faca05e0690"], "properties": ["a box, a cup, a bottle, a jar", "low poly, plant, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small house with a roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["house, yard, surrounding buildings", "roof, house, small"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["A, a, a", "black, screen, blank"], "captions_pred_pc": ["a black and white illustration of a bench", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which screen is blank", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, rings", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, containers", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["roof, room, ceiling", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "e602ac60041f4b4f84c044161e478781"], "properties": ["a, plane, small plane", "floor, wall, roof"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, city, train", "a, material, clay"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "a78520b929314d7c8477322e000bc481"], "properties": ["ceiling, light, desks", "polygonal, helmet, triangular details"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a piece of fabric with dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a gray, triangular shaped object"], "question": "which entity has a polygonal owl?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small purple plastic chair with holes."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, size", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["a, b, c", "a, box, wall"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a flower"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which entity has a box?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a tree stump with roots."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "fa6e88ba438f4597a7230789124c8147"], "properties": ["backrest, curved, yes", "root, tree, stump"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "above a black and white illustration of a galaxy"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a tree stump in the middle of a field"], "question": "which object has roots", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a white glass beer mug."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "1d686cbd3e9a4c629a43088658989286"], "properties": ["shape is sphere, color is white, material is plastic", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a white of a man with arms outstretched."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["black, white, coffee table", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, material, structure", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a natural formation?", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " of a large axe with a cross on top."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, material, texture", "axe, cross, top"], "captions_pred_pc": ["above a black and white drawing of a skull", "for an axe on a white background"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, skyscraper, city", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of an airplane", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["shape is cylindrical, color is silver, material is metal", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white image of a cone shaped object", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of two rocks with ice elements."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, sword, gun", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, color, purple", "roof, house, small"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "island, mountain, grass"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["a box, a cup, a bottle, a jar", "lion, statue, fountain"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d image of a lion statue on a wall"], "question": "which entity is a fountain?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a small wooden house with a green roof."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, gold", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, horns, features", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, material", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a robotic warrior with a sword."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["color, white, black, white", "weapon, sword, robot"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "c3a82df41875402285608ef13a55df57"], "properties": ["shape, bathroom, refrigerator", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, size", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "c3a82df41875402285608ef13a55df57"], "properties": ["color, mattress, pillows", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["metal, roof, chest", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, green, tiled", "beige, white, round"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["frame, beams, trusses", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a witch wearing a black and white hat."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, white, containers", "color, black, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a witch?", "label": 1}, {"captions": ["yellow metal barricade ", " a small purple plastic chair with holes."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color, plastic, purple"], "captions_pred_pc": ["a white barrier on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a wooden staircase with a railing and table."], "sample_ids": ["b5afccae993346079483507296fbb029", "956247bea850458199c651037d4b1d7f"], "properties": ["shape is square, material is metal, color is rusty", "railing, table, staircase"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a table with a staircase"], "question": "which staircase has a table?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "bf18bfd89efd43389781050230467d58"], "properties": ["size, material, lighthouse", "Lights, number, five"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["building, plane, room", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["food, leaves, shredded paper, rocks", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a bird in flight", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "ee440fcbc493488e879539d37a8d820e"], "properties": ["house, plane, town", "island, fish, ice"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small white building with stairs and a white table."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "e30374c614f54fdb90f35b96b071349d"], "properties": ["rusty, sink, graffiti", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky.", " a small white building with stairs and a white table."], "sample_ids": ["e694d53545d449319a64cceb0280c3c6", "e30374c614f54fdb90f35b96b071349d"], "properties": ["3d, slide, swing", "building, stairs, table"], "captions_pred_pc": ["for a 3d model of the letter 'j'", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a playground slide", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a black and white striped box."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["building, ceiling, kitchen", "color, black, white"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a white glass beer mug."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, hole, shelf", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a white human skull with broken bone elements."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["black, white, laptop", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a multicolored metal building structure with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["frame, truss, roof", "color, roof, structure"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a barn structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["bird, nest, wood", "turrets, flags, towers"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": ["four white computer desks in a 3d arrangement.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Arrangement, Desks, White", "house, tree, hill"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a series of white 3d objects on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" a house with a blue roof.", " of two rocks with ice elements."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, blue", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, glasses, character", "hat, watch, clock"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, green, leaf", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "bf18bfd89efd43389781050230467d58"], "properties": ["color, roof, block", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a multicolored metal building structure with a roof."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, ceiling, hole", "color, roof, structure"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, white, yellow, roof, metal", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a roof structure"], "question": "which entity has a roof structure made of wood", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["a, b, c", "building, ceiling, kitchen"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a white building on a gray background"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a white of a spaceship and building."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["backrest, curved, yes", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", "a pixelated-textured purple sphere ."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "fb68393941804e769d5c9b372864a642"], "properties": ["pattern, color, shape", "texture, color, shape"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a gray sphere on a white background"], "question": "which entity has a texture that is pixelated?", "label": 1}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", " of a small white building with stairs and a lid."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["e-cigarette, cartridge, bottle", "building, stairs, lid"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a house with a roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof trusses, beams, suspended ceiling", "roof, house, roof"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", "a white glass beer mug."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, bowl, cup", "color, white, glass"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a small triangular-shaped object."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "2d02985030804209a26c2c53b96a06f9"], "properties": ["size, material, lighthouse", "shape, triangle, small"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a house with a roof and beams."], "sample_ids": ["f1b557775310478893242180defa4d80", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["shack, roof, door", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a white chest of drawers with legs."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a lamp, a syringe, a light pole", "chest of drawers, legs, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a wooden house with a roof and framing."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "4634a9bdf54549a99f68be77f1464b0a"], "properties": ["roof, air conditioner, house", "roof, framing, material"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of an abstract pattern"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a barn structure"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["color, shape, material", "a, desk, laptop"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white image of a piece of furniture"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of an office desk on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "7f8942ef51dd4246993a587a12df168c"], "properties": ["mannequin, scarf, color", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "a black and white image of a truck on a white background"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a flat roof structure."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "abc52d210d71415296730bb00352ce6f"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "d49d8ed244094349a99e4faca05e0690"], "properties": ["shape is box, color is white, door is present", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "c8936ace72954650b4e2d84246964849"], "properties": ["tiers, building, stairs", "roof, color, pink"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color pink?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of two rocks with ice elements."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["table, staircase, light", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a large house with a roof on a platform."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "cb3e09a301b746918a682a595037c7f7"], "properties": ["ceiling, beams, light", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a small house"], "question": "which entity has a roof on a platform", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " of a small white building with stairs and a lid."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["Object, Table, Oranges", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a 3d model of a white box on a gray background"], "question": "which object has a lid", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, pink, green, cord, white", "paint, rust, concrete"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "766a075b4760433bafdbe88bee546796"], "properties": ["house, fence, playground", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a wall with graffiti on it"], "question": "which entity has a fence", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["shape, bathroom, refrigerator", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["A, a, a", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a white square with the words \"what tv\" on it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["- material is white- color is white- texture is textured", "color, white, words"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d model of a cube", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["variation, bread, pot", "hat, skull, bread"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a building with blue metal framing and structure."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["image, building, stairs", "color, blue, structure"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a building under construction"], "question": "which building has a blue metal framing and structure?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, white, containers", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", "two white spheres in a ."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "1c02212a35134545ab63ab180d629c31"], "properties": ["building, roof, balcony", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a white ball on a gray background"], "question": "which object has a roof", "label": 0}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "a17477b445b3443189dad22f768b888b"], "properties": ["low poly, llama, kangaroo", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["s, chimpanzee, human, wolf", "building, room, sky"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a large steel building with a pool."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor plan, ceiling light, color", "building material, pool, steel"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["color, shape, material", "resembles, toy, bookshelf"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a book cover"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a white of a spaceship and building."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, color, white", "image, building, spaceship"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a white object on a gray background"], "question": "which image shows a building and a spaceship?", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["label, color, shape", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["rainbow dash pony with rainbow mane (available in 3ds max, obj, fbx formats)", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e8aee8de3ab24849bad537ad0d732eea", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["3ds max, obj, fbx", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of an octopus", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of my little pony princess celestia royalty free 3d model", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a small purple plastic chair with holes."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["metal, legs, wheels", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of an old metal locker", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", "a white of a man with arms outstretched."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["design, poles, table", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square with dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a man with his arms outstretched"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " of a white human skull with broken bone elements."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, black, white, handle, armrest", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["yellow, table, roof", "a city, train, dragon"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" of a japanese geisha in a metal frame with a triangular-shaped metal door.", " of a wooden table with metal legs and frame."], "sample_ids": ["0a75511848d74b7f97422ad85a27ec2e", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["frame, door, shape", "metal, legs, frame"], "captions_pred_pc": ["a line of black dots on a white background", "a black and white image of a patterned rug"], "captions_pred_image": ["a framed picture of a geisha with a fan in her hand", "a 3d rendering of a white wooden table"], "question": "which object has metal legs and frame", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, red, blue, green", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", "a black and white of a knife/sword with a handle."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, material", "image, color, black and white"], "captions_pred_pc": ["of a black and white drawing of a purse", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, plate, yellow", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, white, red, pink", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["background, color, white", "house, table, chair"], "captions_pred_pc": ["a black line on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a white box?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, model, white house", "house, table, chair"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " of two rocks with ice elements."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, window, statue", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "c1536f68727947ff9e7810799fac583a"], "properties": ["house, tree, pool", "level, stairs, columns"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of an apartment building"], "question": "which building has stairs?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["roof, stairs, house", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " of a small white building with stairs and a lid."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, material, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a white glass beer mug."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["light source, fixture, color", "color, white, glass"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, roof, green, frame, red", "house, fence, dog"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["roof, green, tiled", "black, screen, blank"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a screen that is blank?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, roof, blue", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a large white box"], "question": "which building has a white roof?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a two-story small apartment building with a roof."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["building, balcony, street", "two-story, roof, building"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor, wall, roof", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "411c164757fc4de68dfecb35fa858223"], "properties": ["resembles, sea urchin, shell", "resembles, sea urchin, shell"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d model of a sea urchin"], "question": "which entity is a sea shell?", "label": 0}, {"captions": [" a small building with a roof.", " a large building with a roof and windows."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, building, small", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a small purple plastic chair with four legs."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["color is white, yellow, plastic", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a black and white image of a baby carrier"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["earbuds, light, ring", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a spiral staircase?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "three white paper windmills and a city model with a nativity scene silhouette."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "fa5ee6165f31465d9d75d046818f4006"], "properties": ["color, material, shape", "windmills, silhouette, city model"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white photo of a pair of sunglasses"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a cityscape on a white background"], "question": "which entity is made of paper?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["location, highway, train station", "house, fence, playground"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["shape is cylinder, color is white, material is plastic", "lion, statue, fountain"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, handle, zipper", "house, table, chair"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "above a black and white photograph of an open door"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d rendering of a small white table with a chair"], "question": "which object has a table and chair?", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small wooden house with a green roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, front, road", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["colorful of a dragon toy.", " a red, blue, and green striped tower building."], "sample_ids": ["8c0ec07322914726ad86cc4885052e08", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["color, toy, dragon", "color, red, blue, green"], "captions_pred_pc": ["above a black and white image of a stingray on a white background", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small dragon toy", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which is not a building", "label": 1}, {"captions": [" a house with a blue roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, color, blue", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a box, a cup, a bottle, a jar", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, tan, brown, orange", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white of a small archway gate.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "c3a82df41875402285608ef13a55df57"], "properties": ["image, color, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white arch", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e602ac60041f4b4f84c044161e478781"], "properties": ["a, bird, lake", "floor, wall, roof"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["shape, bathroom, refrigerator", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, yellow, black", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white helicopter flying in the air", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, and size", "floor, staircase, balcony"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a set of three white shelves or ceiling panels with lines."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "ff6f8c2347ab4c17a2b3e319b205f191"], "properties": ["- material is white- color is white- texture is textured", "set, white, lines"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a set of black and white dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d illustration of a set of three white trays on a gray surface"], "question": "which entity is a set?", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["roof, metal, white", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d sculpture of an apple on a white background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small building with windows and a roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, staircase, window", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, roof, block", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["40921ffd69db479294554d261daf3035", "402601779d1d4146b4cde106dfff1b27"], "properties": ["floor, railing, staircase", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a spiral staircase", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, glasses, character", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, material, pattern", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["b5afccae993346079483507296fbb029", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["shape is square, material is metal, color is rusty", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a concrete column", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", " a gray, metal pillar/cylinder."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is stainless steel- color is silver- shape is round", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["of a black ribbon on a white background", "of a black candle on a white background"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small house with a tree and a rock."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["a, dress, flower", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "red heart-shaped object."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- color is white - shape is box - material is plastic", "shape, heart, red"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["base material is wood, color is red, message is welcome to northwich", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["shape is cylinder, color is white, material is plastic", "hat, pants, shirt"], "captions_pred_pc": ["of a spike on a white background", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a cartoon character wearing a hat"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a white castle composed of small cubes."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, texture", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a cube with a wooden ball on top.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is cube, material is wood, color is white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a spiral staircase with a railing in a small building."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["chocolate, mushroom, cake", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white photograph of a light switch"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "09f2cf267e954c958828325067bcc36a"], "properties": ["light switch, electrical outlet, furniture", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " a house with a wooden-framed roof structure."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, words", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a long line of numbers", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d model of a building with a roof"], "question": "which entity is not made of wood", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a multicolored metal building structure with a roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, room, ceiling", "color, roof, structure"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a house with a pink roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, roof, pink", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small wooden house with a green roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, red, blue, green", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, plane, town", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, stairs, shelves", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["collection, color, black, handle, wooden", "house, pool, balcony"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "white ceramic urn with a red lid."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color, white, plastic", "color, white, lid, red"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["image, color, pink", "a, material, clay"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["55b26130f1514032be078e13fd982905", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a house with a wooden-framed roof structure."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, horns, features", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a small orange piano with legs."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, model, luggage", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, white, black, white", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, red, green, yellow", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a black and white image of a stone sculpture"], "question": "which object has a hat?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, material, texture", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a spider's head", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["color, white, material, ceramic", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a white table with multiple cubes"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "ee440fcbc493488e879539d37a8d820e"], "properties": ["a box, a cup, a bottle, a jar", "island, fish, ice"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d map of the country of israel"], "question": "which entity has a fish", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "97e000ff41094665afd94ea565da8b13"], "properties": ["buildings, houses, grass", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a white of a spaceship and building."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["graffiti, chinese writing, door", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a white sofa, chair, and box."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "4c59733ebd634594a921b7ace60e4142"], "properties": ["house, fence, playground", "sofa, chair, box"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a white chair"], "question": "which entity has a box?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small, snow-covered house."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["mossy, rock, grass", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a piece of broken glass on a white background"], "question": "which is not covered in snow", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["roof, green, lawn", "earbuds, light, ring"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a light?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is white- color is white- texture is textured", "window, arches, wall"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, blue, rim, blue", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, orange, leather", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a chair", "of a spike on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, height", "platform, color, orange"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a bicycle"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a motorcycle on a pedestal"], "question": "which object is a toy?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small wooden house with a green roof."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, base, warning", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "92498f398e244020a867686729633610"], "properties": ["a, booth, bed", "a, house, cat, dog"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "5017581716c7402581a82ebf08d427a3"], "properties": ["door, white, structure", "Shelf, color, white"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a wooden shed with a gray roof."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["room, house, windows", "roof, color, gray"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, pink, green", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a brick building with a roof structure and roof truss."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "84e8acad28664a738df69d719df9e263"], "properties": ["color, blue, green, yellow, blue", "roof, structure, truss"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a black and white of a knife/sword with a handle."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["s, plane, house", "image, color, black and white"], "captions_pred_pc": ["a black and white silhouette of a map", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": ["two white 3d egg-shaped spheres.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["922b10ec49fa4b2eb43e257ff5b2b1ef", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is egg-shaped, color is white, number is two", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white object on a grey background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["height, material, shelves", "roof, brown, flat"], "captions_pred_pc": ["a black ladder on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a multicolored metal building structure with a roof."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, pier, railings", "color, roof, structure"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, material", "building, plane, room"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small house with stairs and a roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, front, road", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "c017bfb82db1460cafff604c0808793f"], "properties": ["s, stick, leaf", "a, suit, cell, phone, gun"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity has a cell phone and a gun?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, door, window", "house, staircase, table"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building surrounded by various structures, including a skyscraper, in a city setting."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3b780ced7a814f86b3ee67f3596dddce"], "properties": ["color, shape, and size", "building, skyscraper, city"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of an airplane"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a knife with a building on top of it"], "question": "which entity is a building?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a small white box with a green light."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["Lights, number, five", "color, white, light"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d rendering of a small white box"], "question": "which entity has a white light", "label": 0}, {"captions": [" a house with a green roof and lawn.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, green, lawn", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small wooden house."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, room, ceiling", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, image", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, red, green, blue", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a glove", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white and gray glove", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["image, house, ceiling", "outfit, color, green"], "captions_pred_pc": ["above a black and white drawing of a house", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is a top and pants?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small wooden house with a green roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, stairs, shelves", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, grass, moss", "roof, green, tiled"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, handle, zipper", "box, paper clip, lock"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "7f8942ef51dd4246993a587a12df168c"], "properties": ["door, panel, staircase", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, hill, forest", "roof, color, yellow"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color yellow", "label": 1}, {"captions": [" a small house with a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, house, small", "building, roof, yellow"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, mouth, eyes", "roof, color, yellow"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small house with stairs and a roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, red, blue, green", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d rendering of a podium on a wooden floor"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white house.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["c7ad04db657c42d8a3de4d90aaed0cd5", "a2354f13774340d392fbf33564934aab"], "properties": ["size, color, shape", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of two pieces of plastic", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small white house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["room, bed, desk", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["books, paper, lamp", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["image, color, pink", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, texture", "color, black, visor"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, shape, and material", "color, white, gold"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["roof, metal, white", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, horns, features", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a white plastic container with a label on it"], "question": "which entity is white and yellow?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["Drawer, Pattern, White", "water, boat, rock"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a large steel building with a pool."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor plan, bathroom, pool", "building material, pool, steel"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, fence, playground", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a hole?", "label": 1}, {"captions": [" of a white chest of drawers with legs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f00dfa8b5e7e4fc6bbf97d718b66f390", "a17477b445b3443189dad22f768b888b"], "properties": ["chest of drawers, legs, white", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white leopard print rug", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white dresser", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a house with a roof and beams."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, hat, glasses", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a brake pad", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["apse, roof, floor plan", "mossy, rock, grass"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a piece of wood on a white background"], "question": "which entity has a mossy rock?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "bded33af34104b9686b845dfd18309a9"], "properties": ["frame, chalkboard, color", "table, staircase, light"], "captions_pred_pc": ["of a black and white image of a television on a wall", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a small white building with stairs and shelves."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "9e1f64d4fd514059be934077717536dc"], "properties": ["metal, legs, frame", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": ["white korean word on a gray background.", " a small wooden house with a green roof."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, background, font", "roof, color, green"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "7407a108e0354925b83b750339bc03df"], "properties": ["level, stairs, columns", "platform, color, orange"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["room, house, windows", "roof, ceiling, hole"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof and a square ceiling with a hole?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["chair, table, refrigerator", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["graffiti, bench, wall", "box, cylinder, bottle"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white dots pattern on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["food, leaves, shredded paper, rocks", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a grayscale of a mountain.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, grayscale, mountain", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["shape is cylinder, color is white, material is plastic", "roof, trusses, ladder"], "captions_pred_pc": ["of a spike on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["s, plane, house", "island, mountain, grass"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white motorcycle with wings.", " of a black and white striped fly in the air."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, white, wings", "black, white, fly"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a pink and white gun.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, pink, white", "color, white, gold"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["lamp, harp, bowl", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["background, color, white", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small white house with a roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, yard, surrounding buildings", "roof, color, white"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, roof, tray", "house, roof, green"], "captions_pred_pc": ["a black and white image of a metal object", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "dd3a9323ed514ccab330973ff9588015"], "properties": ["a box, a cup, a bottle, a jar", "room, bed, desk"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house with a roof structure and toothbrushes."], "sample_ids": ["d6087023095446fbadef1721478373b2", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["door, roof, window", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, stairs, house", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a 3d pixelated minecraft model of a small city with buildings, trees, and a village.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["36fedf68eee24461886fb8d4a38eea00", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["pixelated, model, village", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a snowflake in the shape of a virus 3d illustration a black and white illustration of a snowflake in the shape of a virus royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a futuristic city", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["desk, chair, table", "floor, staircase, balcony"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["- color is white- shape is cubes- number is 1", "house, rock, bird"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small wooden house with a green roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a wooden shelf featuring a laptop, sand dune, and ceiling with holes.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["6192773417e04fa49d2bf8b9eed20640", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["image is a shelf, laptop, sand dune", "plane, ship, bird"], "captions_pred_pc": ["above a black and white image of a person sitting on a bench", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a white 3d model of a city skyline", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["balcony, stairs, house", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small triangular-shaped object."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, shape, size", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["door, roof, pool", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large rock with a hole in it.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["size, shape, material", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a black and white of a knife/sword with a handle."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["roof, color, green", "image, color, black and white"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, chair, table, light", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["boat, table, chairs, umbrella, solar panel", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "f1b557775310478893242180defa4d80"], "properties": ["color, handle, zipper", "shack, roof, door"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white house with a roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, color, purple", "roof, color, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small wooden house with a green roof."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["frame, trusses, wood", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a tree with green leaves."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1a902b67735845198efb1b84f434b580"], "properties": ["resembles, toy, bookshelf", "leaf, color, green"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, trusses, ladder"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a white rectangular shelf or light fixture on a gray background."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "a84221f27ed0416280f8e67563f95ed7"], "properties": ["Cabinet, Drawers, Filing", "background, color, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black line on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a long white plastic strip on a gray background"], "question": "which entity is not a cabinet?", "label": 0}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, light, jewels", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, red, pink", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["mossy, rock, grass", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small building with a staircase in a room."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["house, color, white", "room, staircase, building"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a large steel building with a pool."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, truss, suspended ceiling", "building material, pool, steel"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["a knife, blade, handle", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of an old metal locker"], "question": "which object has a handle", "label": 1}, {"captions": [" a small house with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, house, small", "roof, color, yellow"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small white house with a staircase and a window."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "9eb88d17310d42dda9e17883e9922525"], "properties": ["resembles, octopus, squid, spider, robot", "house, staircase, window"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d rendering of a small room with a staircase"], "question": "which entity has a window?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["building, fence, snowy", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of an empty room"], "question": "which building has a door and a shelf", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color is white, material is plastic, shape is bottle", "island, mountain, grass"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d image of a small island in the middle of a lake"], "question": "which object is made of grass", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, glasses, character", "hat, dress, racket"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a wooden roof structure with a pink roof."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a cross", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a brick building with a roof structure and roof truss."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "84e8acad28664a738df69d719df9e263"], "properties": ["house, color, white", "roof, structure, truss"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["apse, roof, floor plan", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " various fruits and vegetables."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "885fa3a9c60e4279ba7eb0d29c64ae3d"], "properties": ["graffiti, bench, wall", "color, shape, size"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a sponge-like object"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a collection of various fruits and vegetables arranged on a table"], "question": "which entity is not a train?", "label": 0}, {"captions": [" a wooden table with black and white square design and metal poles.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "bded33af34104b9686b845dfd18309a9"], "properties": ["design, poles, table", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a square with dots", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small wooden house with a green roof."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, ceiling, hole", "roof, color, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a tree with green leaves."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1a902b67735845198efb1b84f434b580"], "properties": ["yellow, table, roof", "leaf, color, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a tree with a lot of foliage"], "question": "which leaf is green", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of two rocks with ice elements."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, ball, mushroom", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house with a roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["houses, trees, road", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, pants, shirt", "hat, bow, arrow"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a white building with a red roof."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, roof, wooden", "color, white, roof, red"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "06a1c233fb444830b577aa06e2c01294"], "properties": ["wing, knife, boat", "house, tree, hill"], "captions_pred_pc": ["a black umbrella on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["frame, truss, roof", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["lighthouse, fountain, crater", "house, roof, green"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["room, bed, desk", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": ["a 3d lego character wearing a black helmet, gloves, and holding a gun.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f71842519d2f44ceb9fa57e0c0db4aa0", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- color is black- material is plastic- shape is 3d", "box, paper clip, lock"], "captions_pred_pc": ["a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a lego ninja turtle wearing a black helmet and gloves", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is made of paper?", "label": 1}, {"captions": [" a house with a blue roof.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "67701617472e4051b95955c596561aac"], "properties": ["roof, color, blue", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a house with a roof", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, pattern", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small triangular-shaped object."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, background, white", "shape, triangle, small"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, purple, suspended", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " a wooden roof structure with a pink roof."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["hoodie, ball, person", "roof, color, pink"], "captions_pred_pc": ["for a person standing in front of a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, roof, tray", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a house with a roof and beams."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["graffiti, wall, wheelbarrow", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a brick building with a roof structure and roof truss."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "84e8acad28664a738df69d719df9e263"], "properties": ["building, roof, balcony", "roof, structure, truss"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss?", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, black, rings", "island, terrain, water"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a red roof.", " a metal building with a purple roof and cage structure."], "sample_ids": ["085db9059b744673b5623b5338e02196", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, red, house", "roof, purple, structure"], "captions_pred_pc": ["a black and white dotted square on a white background", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, shape, material", "arrow, mountain, area"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a line with a square on it"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is not a mountain range?", "label": 0}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small house with a roof."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["blue tarp, flower, small island", "roof, house, small"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["size, color, shape", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white illustration of a building"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a fruit bowl with an apple, on a table.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["64c3d61ba7b549b5b7c72b37d7532b48", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["apple, bowl, table", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a white object on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a table with two bowls and a cup on it."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "41842c8d2ebd402da04def3c53c41633"], "properties": ["a, bowl, cup", "a, bowl, cup"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white image of two eyes in the sky"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a table on a marble floor royalty free 3d model preview no. 3"], "question": "which table has a bowl", "label": 0}, {"captions": [" a small house with a tree and a rock.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, tree, rock", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, yellow, black", "axe, handle, wood"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a knife on a white background"], "question": "which entity has a handle made of wood", "label": 1}, {"captions": [" a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag.", " a gray, metal pillar/cylinder."], "sample_ids": ["120bf1525e8649d9bdf3a593fe8f5ddc", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["resembles, sculpture, rock", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a piece of paper with dots on it", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a bag with a zipper on it", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of two rocks with ice elements."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, desk, laptop", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", "star wars stormtrooper "], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["box, paper clip, lock", "a, color, white"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 0}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " of two rocks with ice elements."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, landscape, sand", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["s, plane, house", "water, boat, rock"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a pixelated of a striped brown and white coffee mug."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "656fca269cb042e68b1fb5b629bfa873"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "mug, color, brown, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a coffee cup with multiple layers"], "question": "which mug is brown and white", "label": 1}, {"captions": [" a celtic stone cross.", "a small blue plastic box with a lid and handle."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "3e5cc957c888491ba1a5773299d3daa9"], "properties": ["- material is stone- shape is cross- color is black", "blue, lid, handle"], "captions_pred_pc": ["for a black and white image of a watch", "in 15 or fewer words a black and white illustration of a rectangular tray"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d rendering of a gray plastic container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small white building with stairs and a white table."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, tan, brown, orange", "building, stairs, table"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, shape, size", "cloak, sword, spear"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["shape, bathroom, refrigerator", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["runner, bed, bench", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, mattress, pillows", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a stone wall featuring carvings and statues."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, shape, and size", "carving, statue, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white building with stairs and shelves."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, white, red, pink", "building, stairs, shelves"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["floor plan, bathroom, pool", "table, staircase, light"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["sandbox, sand bucket, wooden blocks", "lamp, harp, bowl"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of a wooden windmill with a red roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, sphere, molecule", "roof, color, red"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is the color red?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["door, lock, handle", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "c8936ace72954650b4e2d84246964849"], "properties": ["house, tree, rock", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, blue, green, yellow, blue", "roof, material, wood"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["purple speech bubble and circle", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white speech bubble on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, umbrella, coat", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a tree made of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a large gray sphere", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["size, color, shape", "door, lock, handle"], "captions_pred_pc": ["a black and white circular pattern on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a black and white image of a door with a crack in it"], "question": "which entity is a door?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small building with a staircase in a room."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["graffiti, chinese writing, door", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of the letter l"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a yellow and blue toy submarine."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, red, green, yellow", "color, yellow, blue"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a submarine toy"], "question": "which toy is blue?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " of a small white building with stairs and a lid."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, blue, roof, black", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, light", "room, door, shelf"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a spider-like creature with long arms and legs."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a box, a cup, a bottle, a jar", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["floor, table, light", "house, tree, pool"], "captions_pred_pc": ["above a black and white photograph of a window", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a metal building with a purple roof and cage structure."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["house, roof, green", "roof, purple, structure"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white house with a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, structure, wall", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["graffiti, bench, wall", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, grass, moss", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity is a building?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a spider-like creature with long arms and legs."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["throne, stairs, tree", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "bf18bfd89efd43389781050230467d58"], "properties": ["color, red, green, blue", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and gray glove", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["bowl, pottery, headpiece", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["Brown, metal, lock", "glass, metal, balls"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a black box with a lock", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, windows, building", "roof, material, wood"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a building with a roof"], "question": "which building has a roof made of wood", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, table, wall", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "c3a82df41875402285608ef13a55df57"], "properties": ["color, plate, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a robot with a blue, purple, and white body."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, horns, features", "body, color, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of a robot"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body?", "label": 0}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, white, red, pink", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses?", "label": 1}, {"captions": [" a blue character with arms outstretched.", " of a black tray with three green rings on it."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, shape, size", "color, black, rings"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d rendering of a tray with three rings on it"], "question": "which object is black?", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small house with a tree and a rock."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["house, front, road", "house, tree, rock"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock in front of it?", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a white rocking chair with a curved backrest."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["headboard, wall, strip", "backrest, curved, yes"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, shape, and size", "color, white, logo"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity is a logo?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, material, frame", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a table and chairs on a white background"], "question": "which building structure has a yellow roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white keyboard"], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "632fe78818124555b147c81fd423577b"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is white, shape is keyboard, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a black and white rug on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a white keyboard on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, fence, dog", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white photograph of a birdhouse"], "question": "which house has a green roof", "label": 0}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, color, blue", "door, roof, pool"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small house"], "question": "which house has a door?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a vibrant city skyline featuring various colored buildings, trees, and skyscrapers."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "1a1fb9b0d83845f6b1238fb45e0defff"], "properties": ["graffiti, bench, wall", "color, skyline, buildings"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a city skyline"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white 3d model of a city skyline"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, material", "color, sphere, molecule"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, shape, text", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a black and white of a knife/sword with a handle."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["shape is cylinder, color is white, material is plastic", "image, color, black and white"], "captions_pred_pc": ["of a spike on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["building, balcony, street", "image, city, spoon"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "6b745457e06840119058883b35f78f58"], "properties": ["- color is red, blue, pink", "roof, color, blue"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["a, door, suitcase", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a white, open shelving unit"], "question": "which building has a door", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a yellow window frame."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "b6777659013d4386987c5e26d7dc3f84"], "properties": ["color, shape, size", "color, yellow, frame"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white image of a wall mounted shelf"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a white shelving unit"], "question": "which entity is yellow", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small house with stairs and a roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["image, building, painting", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d rendering of a podium on a wooden floor"], "question": "which image shows a house with a roof?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "c3a82df41875402285608ef13a55df57"], "properties": ["color, line, gray", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "a17477b445b3443189dad22f768b888b"], "properties": ["mossy, rock, rocky", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green skull and sphere.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "a17477b445b3443189dad22f768b888b"], "properties": ["color, skull, sphere", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["building, stairs, shelves", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a spaceship and building."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, material, structure", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, mouth, eyes", "image size, image, royalty"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small, snow-covered house."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["shape is box, color is white, door is present", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a green and red toy gun with a scope and yellow accents."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "4b7263b58a6647c3a03226b39c42108a"], "properties": ["color, shape, material", "color, red, green, yellow"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of an assault rifle on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, white, holes", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of a wallet"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a house with a roof and beams."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["top, color, wood", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a fireplace", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": [" a gun with red wires and a red handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, red, handle", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of an object", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendered image of a gun", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, roof, wooden", "house, roof, wooden"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 0}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, white, plastic", "table, staircase, light"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, containers", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a room, a cake, a table", "room, staircase, bus"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a computer desk with a metal cube and a black and blue object on it."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "ccae0199457440e68db47a936191afe5"], "properties": ["color, shape, material", "a, color, black, blue"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white illustration of a sofa with a cushion on top"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a desk with a laptop on it"], "question": "which object is made of metal", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, hat, glasses", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a clay pot with holes in it."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, blue, rim, blue", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white bowl on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "a17477b445b3443189dad22f768b888b"], "properties": ["chocolate, mushroom, cake", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white image of a square with dots"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["houses, trees, road", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["metal, laptop, light fixture", "wood, board, shelf"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "97e000ff41094665afd94ea565da8b13"], "properties": ["backrest, curved, yes", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["Drawer, Handle, Wood", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small building with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, building, small", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", "two white spheres in a ."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "1c02212a35134545ab63ab180d629c31"], "properties": ["orange, forklift, parking lot", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a white ball on a gray background"], "question": "which object is in a", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["background, color, white", "broom, shovel, fireplace"], "captions_pred_pc": ["a black line on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "a17477b445b3443189dad22f768b888b"], "properties": ["house, roof, wooden", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, and size", "house, hill, forest"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small blue robot with a windmill."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["arm, light, sign", "color, blue, robot"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, purple, suspended", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a wooden staircase with a railing and table."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "956247bea850458199c651037d4b1d7f"], "properties": ["house, rock, pond", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["face, handle, spout", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a room"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["floor, table, light", "table, plant, wood"], "captions_pred_pc": ["above a black and white photograph of a window", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a white castle composed of small cubes."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, model, luggage", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "7f8942ef51dd4246993a587a12df168c"], "properties": ["castle, island, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "c3a82df41875402285608ef13a55df57"], "properties": ["house, door, cross", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white drawing of a house", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["base material is wood, color is red, message is welcome to northwich", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, grass, moss", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "703dce44052e48cfb024bceb08141554"], "properties": ["apse, roof, floor plan", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a wooden structure"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small building with windows and a roof."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["a, ball, mushroom", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a numbered rock.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["number, color, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rock with a number on it", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a large metal building with a roof and truss structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, purple", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["black, laptop, shelf", "hat, candy, strawberry"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["houses, trees, road", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a purple and green sphere.", "a white of a man with arms outstretched."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, head, bowl", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a vehicle with wheels and tires"], "question": "which object has a stuffed animal?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small wooden house with a green roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, roof, wooden", "roof, color, green"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a clay pot with holes in it."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, texture", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a house with wooden framing and trusses."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a box, a cup, a bottle, a jar", "frame, trusses, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d6087023095446fbadef1721478373b2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["door, roof, window", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["floor plan, bathroom, pool", "black, roof, green"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small house with a red roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["085db9059b744673b5623b5338e02196", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, red, house", "building, roof, yellow"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["desk, chair, lamp", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " of a black and white striped fly in the air."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, black, white", "black, white, fly"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small house with a blue roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["room, door, shelf", "door, roof, pool"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small house"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, sphere, molecule", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["apse, roof, floor plan", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, and size", "table, stairs, ladder"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["texture, spikes, eyes", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "832a022cdcc74763b0571e04af4e592b"], "properties": ["resembles a jet fighter, futuristic, small", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a lego model of a futuristic airplane", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 0}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["a city, train, dragon", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white image of a toy car", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a white ornate airplane design.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "bded33af34104b9686b845dfd18309a9"], "properties": ["boat, table, chairs, umbrella, solar panel", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["yellow, table, roof", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["shape is cube, material is wood, color is white", "box, handle, gun"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black base", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "c3a82df41875402285608ef13a55df57"], "properties": ["building, pattern, field", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["building, color, yellow-green", "a, character, mario"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, table, blocks", "house, pool, balcony"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, image", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["food, leaves, shredded paper, rocks", "paper, hole, sign"], "captions_pred_pc": ["a black and white image of a bird in flight", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, white, base, slanted", "house, roof, blue"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is sphere, color is white, material is plastic", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a large house with a roof on a platform."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof structure, truss, ceiling", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a small house"], "question": "which entity has a roof on a platform", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, tan, brown, orange", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["image, building, painting", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a room"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a white of a man with arms outstretched."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["image is a sculpture of an angel on a wall", "image, color, white"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a man with his arms outstretched"], "question": "which image is of a man with arms outstretched?", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, texture", "box, handle, gun"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["windmills, silhouette, city model", "roof, trusses, beams"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, door, clock", "building, room, sky"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, white, plastic", "hat, color, tan"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of an object with a hole in it"], "question": "which is not a hat", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["size, material, logo", "rusty, warning, metal"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", " a black and white striped box."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["Four legs, Metal, Shelf", "color, black, white"], "captions_pred_pc": ["for a black and white illustration of a cross", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house with a green, wooden-structured roof."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["building, roof, white, cubes", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "a85d3bb5c7e14a8f87b073cb4498cd2e"], "properties": ["hoodie, ball, person", "hoodie, ball, person"], "captions_pred_pc": ["for a person standing in front of a white background", "for a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of a person wearing a hoodie royalty free 3d model preview no.2"], "question": "which entity has a person wearing a hoodie", "label": 0}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, skyline, buildings", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["frame, roof, trusses", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a roof"], "question": "which house has a brick wall and a suspended box?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a building with a metal and wooden pole structure."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, material, frame", "structure, material, pole"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of wood", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["wing, silver, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["screen, monitor, stand", "cover, black, plastic"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hill, field, castle", "house, pool, balcony"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "770e577c9795435898209fd24191635b"], "properties": ["color, white, containers", "image, color, light"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a white 3d model of a small town"], "question": "which image has more light", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "a17477b445b3443189dad22f768b888b"], "properties": ["box, cylinder, bottle", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, color, black and white", "island, mountain, grass"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", "star wars stormtrooper "], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["s of, snowboard, shoes, mask", "a, color, white"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["house, building, people", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d image of a room with a person in it"], "question": "which entity does not feature a kitchen", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["blue, lid, handle", "a, material, clay"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a large house with a roof on a platform."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "cb3e09a301b746918a682a595037c7f7"], "properties": ["floor, wall, roof", "roof, platform, house"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["earbuds, light, ring", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a green skull and sphere.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, skull, sphere", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " of a wine corkscrew"], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["light, toilet, faucet", "a, type, corkscrew"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a wooden-framed house with roof trusses."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "e60dd370c5ec468da4689a801f951157"], "properties": ["roof, room, ceiling", "frame, roof, trusses"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["Wheels, laptop, robot", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a cell phone", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a beige and white round soap dish/small bowl.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5414d75e47104589837f3df8b6de6d22", "c3a82df41875402285608ef13a55df57"], "properties": ["beige, white, round", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white ceramic bowl sitting on top of a gray surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a large metal building with a roof and truss structure."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["books, paper, lamp", "roof, truss, structure"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["pattern, color, shape", "resembles, sculpture, rock"], "captions_pred_pc": ["a black circle on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "40921ffd69db479294554d261daf3035"], "properties": ["wall, stairs, castle", "floor, railing, staircase"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["a, hole, shelf", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large metal bomb.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["00c6c9da8a3943e8b096c1a3134d1d8d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, shape", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a dome shaped object", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of an industrial ventilation fan", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a black and white striped box."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["- material is plastic- color is green- shape is box", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d image of a black and white striped surface"], "question": "which box is black and white?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["rusty, sink, graffiti", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, table, ceiling", "a train, a ship, a boat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "09f2cf267e954c958828325067bcc36a"], "properties": ["Drawer, Pattern, White", "island, terrain, rocks"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small wooden house with a green roof."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["desk, chair, lamp", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a purple chair with holes in it.", "a white of a woman with her arms outstretched."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, purple, holes", "image, color, white"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "a2354f13774340d392fbf33564934aab"], "properties": ["house, roof, green", "building, roof, yellow"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with stairs and a roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, roof, wooden", "roof, stairs, house"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, truss, suspended ceiling", "black, roof, green"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "a2354f13774340d392fbf33564934aab"], "properties": ["a, color, white", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, dress, flower", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["variation, bread, pot", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, hat, glasses", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a brake pad", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of two rocks with ice elements."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, purple, suspended", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["texture, spikes, eyes", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["size, color, shape", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["fireplace, stick, surround", "a, material, clay"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, hat, handle", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["water, river, island", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a palm tree with leaves."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["roof, ceiling, hole", "leaf, tree, leaf"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of an animal with wings"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a palm tree"], "question": "which entity has leaves", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["floor plan, heating system, ceiling light fixture", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a rock formation on a gray background"], "question": "which entity is a rock formation?", "label": 1}, {"captions": ["white 3d tank model", " a small purple plastic chair with holes."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color is white, model is 3d, name is tank", "color, plastic, purple"], "captions_pred_pc": ["a close-up view of the back of the phone case", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large building with a roof and windows.", " a small wooden house with a green roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, windows, building", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which building has a roof that is the color of green", "label": 1}, {"captions": [" of a large gray sphere", "a white of a woman with her arms outstretched."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["size, color, shape", "image, color, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a house with wooden framing and trusses."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["shape is box, color is white, door is present", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house under construction"], "question": "which house is made of wood", "label": 1}, {"captions": ["a wooden-handled axe .", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["handle material is wood, head material is metal, overall length is long", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["cover, black, plastic", "black, roof, green"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, horns, features", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, handle, orange, rake, knife", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "s of chimpanzee, human, and wolf skulls."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "16a6e8b5830b4da6828af63e91f75f9b"], "properties": ["color, white, black, white", "s, chimpanzee, human, wolf"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white photograph of a skull on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a gorilla skull royalty free 3d model preview no.2"], "question": "which entity has more skulls", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, temperature, england", "paint, rust, concrete"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a concrete wall"], "question": "which entity has a lot of rust?", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["location, area, material", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a large metal building with a roof and truss structure."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, structure, wall", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a long metal fence"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small white building with stairs and a white table."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, black, shade, black", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["boat, table, chairs, umbrella, solar panel", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a pistol, rifle, and colt 1911 in three different colors.", " of a pistol, rifle, and colt 1911 in three different colors."], "sample_ids": ["82a62cfa49194aeea91f19e5c750b40f", "82a62cfa49194aeea91f19e5c750b40f"], "properties": ["color, pistol, rifle", "color, pistol, rifle"], "captions_pred_pc": ["a black and white drawing of a pistol on a white background", "a black and white drawing of a pistol on a white background"], "captions_pred_image": ["3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt", "3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt 1911 pistol 3d model of a colt"], "question": "which pistol is in the same color as the rifle?", "label": 0}, {"captions": [" featuring a chair, table, and refrigerator.", " a small wooden house with a green roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["chair, table, refrigerator", "roof, color, green"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["food, leaves, shredded paper, rocks", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "water, boat, rock"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, truss, lamp", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " of a wooden windmill with a red roof."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["size, material, color", "roof, color, red"], "captions_pred_pc": ["of a black plastic ring on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["nut, bowl, ring", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, orange, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["house, roof, wooden", "roof, truss, lamp"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a metal roof"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small wooden house with a green roof."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, pink, eyes", "roof, color, green"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["house, door, cross", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "an image of a pile of trash on the ground"], "question": "which entity has grass?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, and size", "structure, roof, pitch"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["fireplace, stick, surround", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a spider-like creature with long arms and legs."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["table lamp, ceiling light, table", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["an oval table with a mouse on top of it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["yellow, table, roof", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of two rocks with ice elements."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, table, light", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["fireplace, bench, log", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": ["3d white cube model", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["eadb261bd34342aa8fb16d76af86a798", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white tote bag with dots all over it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white box on a gray background royalty-free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " of a small white building with stairs and a lid."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["shape is turtle, color is green, white", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a white box on a gray background"], "question": "which object is a building?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "b896a0898efe4059a776193c02132129"], "properties": ["color, wheel, helmet", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, skyline, buildings", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "e694d53545d449319a64cceb0280c3c6"], "properties": ["blue tarp, flower, small island", "3d, slide, swing"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, table, chair", "house, table, chair"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table", "label": 0}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", "a white of a woman with her arms outstretched."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["rocky, rug, puddle", "image, color, white"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["acropolis, city, building", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, shape, size", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a human bone structure", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small white house with a staircase and a window."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "9eb88d17310d42dda9e17883e9922525"], "properties": ["hat, sword, gun", "house, staircase, window"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "4df70180f2ea400782d2e2de76063894"], "properties": ["color is white, yellow, plastic", "color, black, blue"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is a black and blue color?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["background, color, white", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a yellow and blue toy submarine."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["building, stairs, shelves", "color, yellow, blue"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a submarine toy"], "question": "which object is yellow and blue?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["color, pier, stairway", "3d, model, collection"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of items?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a brick building with a roof structure and roof truss."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "84e8acad28664a738df69d719df9e263"], "properties": ["color, material, structure", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": [" a small building with a staircase in a room.", " of a small white building with stairs and a lid."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["room, staircase, building", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of the letter l", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, pair", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a white human skull with broken bone elements."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "color, white, skull"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "09f2cf267e954c958828325067bcc36a"], "properties": ["room, bed, desk", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a small wooden house with a green roof."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, yellow, black", "roof, color, green"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, pattern", "a, material, steel"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["stacked, racks, toy train", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, house, wooden", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a chimney", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a spider-like creature with long arms and legs."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["lighthouse, building, tower", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, purple, suspended", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a spider-like creature with long arms and legs."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["furniture, staircase, torn-apart", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "d49d8ed244094349a99e4faca05e0690"], "properties": ["- color is white- shape is cube- material is plastic", "low poly, plant, white"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, trusses, beams", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a wooden crate", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e2a74e97b8014a1d8a2b2ea3fd3b8fb8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, shape", "a, material, clay"], "captions_pred_pc": ["in one sentence a black and white image of a dotted square on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wooden crate with a lid", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a pixelated-textured purple sphere ."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "fb68393941804e769d5c9b372864a642"], "properties": ["lighthouse, fountain, crater", "texture, color, shape"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a pig with an open mouth and a knife.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["d2d3b56c704341198aebd3601a6bb624", "bf18bfd89efd43389781050230467d58"], "properties": ["mouth, open, knife", "Lights, number, five"], "captions_pred_pc": ["a black and white photo of a hippopotamus", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pig with a knife in its mouth royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" of a drum set", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0bf7985bf5f94236b8b5c2965270e08b", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["size, color, material", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a toy tricycle on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a drum kit royalty free 3d model preview no 1", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, door, cross", "house, fence, dog"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a white of a woman with her arms outstretched."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, green, handle", "image, color, white"], "captions_pred_pc": ["of a small black object on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["variation, bread, pot", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["Steel, Color, Yellow", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a bag with a zipper on it"], "question": "which entity is made of a material that is not rock?", "label": 0}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["red, pile, garbage", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is a wrecked plane", "label": 1}, {"captions": [" of a white bunny head", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, head", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "b896a0898efe4059a776193c02132129"], "properties": ["color, pier, railings", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white toy cannon.", " a small purple plastic chair with holes."], "sample_ids": ["a414258c6bf149708404913a89ab8dbc", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, toy", "color, plastic, purple"], "captions_pred_pc": ["for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a cannon on a white background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "b5afccae993346079483507296fbb029"], "properties": ["color, blue, green, yellow, blue", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "09f2cf267e954c958828325067bcc36a"], "properties": ["s, plane, house", "island, terrain, rocks"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["lizard, rock, stuffed animal", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["rusty, sink, graffiti", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a harp in a white room"], "question": "which entity has a white bowl?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof structure, truss, ceiling", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "3d lego model of the white house with a garden and tennis racket."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "349d70e3f3d24c72ad05d5ceeee291b6"], "properties": ["house, lake, pool", "a, model, white house"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white photo of a person sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of the white house royalty free 3d model"], "question": "which entity is a model of a white house?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "243cd2c469984313b1522dca099eefd3"], "properties": ["light source, fixture, color", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white vase on a grey background"], "question": "which object is white", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["building, roof, balcony", "a, building, roof"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": ["a 3d white cube with windows resembling a building.", " a white castle composed of small cubes."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is white- color is white- texture is textured", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "832a022cdcc74763b0571e04af4e592b"], "properties": ["building, door, clock", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a black and white image of a church with a steeple", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- color is white- shape is cube- material is plastic", "lion, statue, fountain"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a white cube", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, white, plastic", "box, handle, gun"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a multicolored metal building structure with a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, stairs, house", "color, roof, structure"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, yellow, chimney", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "bded33af34104b9686b845dfd18309a9"], "properties": ["image is rock formation with a white cliff and a rock", "table, staircase, light"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["earbud, earpiece, earpiece", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a building with blue metal framing and structure."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["- color is white - shape is box - material is plastic", "color, blue, structure"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a building under construction"], "question": "which entity is made of metal", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "c553ba67fa914165a07a1f1d20581f19"], "properties": ["A, a, a", "cat, bowl, donut"], "captions_pred_pc": ["a black and white illustration of a bench", "a close up view of the back of the chair"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting"], "question": "which entity has a cat?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, green, lawn", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a wooden roof structure with a pink roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, white, background, gray", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of an object", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of the roof of a building"], "question": "which entity has a pink roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, shape, text", "costume, color, black"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["size, color, shape", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "b896a0898efe4059a776193c02132129"], "properties": ["a, b, c", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a submarine", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a green mountain with trees and grass."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["backrest, curved, yes", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["color, silver, white", "spheres, lamp, city"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a 3d model of a futuristic spaceship"], "question": "which entity has more spheres", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "09f2cf267e954c958828325067bcc36a"], "properties": ["balcony, stairs, house", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a white of a woman with her arms outstretched."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a set of ladders.", " of a set of ladders."], "sample_ids": ["5152e8c6dd094e49b02b54ef1cd2fabc", "5152e8c6dd094e49b02b54ef1cd2fabc"], "properties": ["a, set, ladders", "a, set, ladders"], "captions_pred_pc": ["above a white wall with a black square on it", "above a white wall with a black square on it"], "captions_pred_image": ["a 3d model of a shelving unit with multiple shelves", "a 3d model of a shelving unit with multiple shelves"], "question": "which set of ladders is shown in the image?", "label": 0}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["floor, wall, roof", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a roof structure"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" of a numbered rock.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["number, color, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a white plastic container with a label on it"], "question": "which object is white and yellow?", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, material", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a black and white object", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a small wooden house with a roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["building, stairs, shelves", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a house with dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small house"], "question": "which building has a roof?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small white barn with a metal roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, material, structure", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a barn"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a wooden-cased radio."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, blue, components", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, hill, forest", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of the roof of a building"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["roof, brown, flat", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a building with many pillars"], "question": "which entity has a roof made of glass?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a wooden shed with a gray roof."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, color, gray"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small white house with a roof."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, horns, features", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a wine corkscrew"], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, desk, laptop", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a wine bottle opener"], "question": "which object is used to open a bottle of wine", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white building with stairs and shelves."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "9e1f64d4fd514059be934077717536dc"], "properties": ["roof, purple, suspended", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a spider-like creature with long arms and legs."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor, staircase, balcony", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a spiral staircase with railings."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["a, bird, hook", "railings, staircase, spiral"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "b896a0898efe4059a776193c02132129"], "properties": ["resembles, toy, castle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["apse, roof, floor plan", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a wooden billiard table with legs."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white box with a black base", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["building, plane, city", "tv, chair, laptop"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["floor plan, bathroom, pool", "house, fence, dog"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a white of a woman with her arms outstretched."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["yellow, table, roof", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a white box with a black base", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, table, chair", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a box with a hole?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, brown, flat", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a table with a stool on top"], "question": "which table has stairs and a ladder", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small, snow-covered house."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof truss, beams, structure", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, black, shade, black", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a table with stairs"], "question": "which entity has a light fixture?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["graffiti, bench, wall", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white photo of the letter g"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "97e000ff41094665afd94ea565da8b13"], "properties": ["food, leaves, shredded paper, rocks", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a train, a ship, a boat", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a wooden staircase with a railing and table."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "956247bea850458199c651037d4b1d7f"], "properties": ["hat, sword, gun", "railing, table, staircase"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a house with a roof and beams."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["black, white, laptop", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a white castle composed of small cubes."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["acropolis, city, building", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["white sphere", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, size", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity is a building?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a stone wall with a window and a clock."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["computer desk, laptop, monitor", "window, clock, wall"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a gray, metal pillar/cylinder."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is white, material is plastic, shape is box", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small wooden house."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, stairs, house", "house, material, wood"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a green mountain with trees and grass."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["building, roof, balcony", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a small white house with a roof."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, material", "roof, color, white"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a house with a wooden-framed roof structure."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, yellow, roof, metal", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small building with windows and a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, purple, suspended", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a building with yellow lines."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, green, orange, star", "color, yellow, lines"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a map"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a set of ladders."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "5152e8c6dd094e49b02b54ef1cd2fabc"], "properties": ["a, island, resembles, hawaii", "a, set, ladders"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a white wall with a black square on it"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a shelving unit with multiple shelves"], "question": "which object is not a set?", "label": 0}, {"captions": [" a small table with a staircase and a square ceiling light.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["table, staircase, light", "desk, chair, table"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a staircase in a room"], "question": "which entity has a desk and chair?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "24f7d0a06d494c26a1678d81b2b7b093"], "properties": ["a, b, c", "a, laptop, teddy bear"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of an umbrella on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of a white room with various objects"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["building, roof, yellow", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a pink, ear-shaped object."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["shape is sphere, color is white, material is plastic", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a pair of yellow pliers.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, yellow, pliers", "a room, a cake, a table"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " a house with a wooden-framed roof structure."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["room, furniture, window", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, brown, flat", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a house with a roof"], "question": "which house has a chimney", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, light, jewels", "color, head, white and brown"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": ["small 3d white boat model", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b06d2d878ad2429498baa5c157dc6080", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["size is small, color is white, model is boat", "house, fence, playground"], "captions_pred_pc": ["the product in the image", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white rowing boat on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, orange, white", "metal, cross, clock"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["cover, torn, open", "table, bench, deer"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white image of a torn bank note", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object has a deer head on it?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of two rocks with ice elements."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, roof, block", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a potted christmas pine tree."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["roof, structure, wall", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, house, small", "roof, material, wood"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "b896a0898efe4059a776193c02132129"], "properties": ["color, green, leaf", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a white cube.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["00bacff4f6be4b3d9b93946106b9e588", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a piece of paper with dots on it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white staircase on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "f1b557775310478893242180defa4d80"], "properties": ["house, table, chair", "shack, roof, door"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a small house in the middle of a field"], "question": "which house has a roof and door", "label": 1}, {"captions": [" of an orange life ring", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e27df4cbd35c4666b4690b58e1a3dad6", "c3a82df41875402285608ef13a55df57"], "properties": ["color is orange, material is plastic, shape is ring", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a silver bracelet with black dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an inflatable life preserver on a white background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a small building with a staircase in a room."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["level, stairs, columns", "room, staircase, building"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "97e000ff41094665afd94ea565da8b13"], "properties": ["lizard, rock, stuffed animal", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " an old lantern with moss on it."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color, material, structure", "moss, lantern, old"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of an old lantern"], "question": "which object is made of moss", "label": 1}, {"captions": [" a small building with windows and a roof.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, windows, building", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a pink and white gun.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, pink, white", "striped, white, black"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a clay pot with holes in it."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["computer desk, laptop, monitor", "hole, material, clay"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, texture", "island, terrain, water"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["black, white, laptop", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["a, bird, lake", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white 3d model of a building"], "question": "which building is black and white?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "4e82177059204292899fa7415164a05e"], "properties": ["a, rock, paper", "yellow, tires, load"], "captions_pred_pc": ["for a flock of birds in the sky", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a monster truck with spikes"], "question": "which object has a load of sticks", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "bded33af34104b9686b845dfd18309a9"], "properties": ["color is white, material is plastic, shape is tube", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a broom on a stand", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a small white building with stairs and shelves."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, size", "building, stairs, shelves"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, material, pattern", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, shape, and size", "low poly, plant, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a plant growing out of a rock"], "question": "which entity is a plant?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["- color is white- shape is cube- material is plastic", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house with a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["house, rock, pond", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a potted christmas pine tree."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, leg, tail", "a, color, green"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a christmas tree in a vase"], "question": "which is not a green color", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a green mountain with trees and grass."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["graffiti, chinese writing, door", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["- color is white- shape is cubes- number is 1", "building, plane, room"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["house, door, cross", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white drawing of a house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "white cube "], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "1fbd3b1130854a02ae19b1b665b47d44"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is white, shape is cube, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in one sentence the image is a black and white drawing of a dotted pattern on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white box on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["color, white, background, gray", "color, white, yellow, roof, metal"], "captions_pred_pc": ["above a black and white photograph of an object", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a house with a flat roof structure."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, color, green", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["handle, knife, shotgun", "house, plane, town"], "captions_pred_pc": ["of a popsicle on a white background", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a damaged building"], "question": "which entity is a town?", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a large building with a roof and windows."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "32d1fbd3ee91426882290305f70021e6"], "properties": ["building, tower, color", "roof, windows, building"], "captions_pred_pc": ["for a black square on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, head, white and brown", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a stack of books"], "question": "which entity is a box?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a house with a roof and beams."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["room, house, windows", "roof, beams, house"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a stone wall featuring carvings and statues."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["boat, table, chairs, umbrella, solar panel", "carving, statue, wall"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "06a1c233fb444830b577aa06e2c01294"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white image of a house in the middle of a field"], "question": "which entity has a house", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["location, field, gravestone", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a whale", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a large orange pumpkin."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["houses, trees, road", "orange, large, pumpkin"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a small house with a blue roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, red, green, blue", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a glove", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, tree, rock", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a black shark", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["black, mouth, teeth", "door, roof, pool"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof truss, chimney, suspended ceiling", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, light, jewels", "room, door, shelf"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "703dce44052e48cfb024bceb08141554"], "properties": ["bed, desk, window", "roof, beams, frames"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a wooden structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, shape, and size", "lion, statue, fountain"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a metal object"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "06a1c233fb444830b577aa06e2c01294"], "properties": ["sandbox, sand bucket, wooden blocks", "house, tree, hill"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a small white house with windows and a black lid."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, yellow, white, wheels", "white, windows, lid"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a white house with three windows"], "question": "which object has a black lid?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, shape, and size", "blue, curved, resembles"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a white bathroom sink"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["backrest, heart, wooden", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, white, background, gray", "color, background, white"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a paper airplane", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["house, fence, dog", "hat, pants, shirt"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["building, skyscraper, city", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of an airplane", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "443554d4d7044c66aa8cbff63c737589"], "properties": ["building, roof, yellow", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["shape is sphere, color is white, material is plastic", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small white house with a roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, color, white", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a white roof", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, grass, moss", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " of a small white building with stairs and a lid."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, rock, nail", "building, stairs, lid"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, red, blue, green", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color is white, yellow, plastic", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a white plastic container with a label on it", "a sculpture of an african man sitting on a pedestal"], "question": "which object is made of wood", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a white glass beer mug."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, pink, green, cord, white", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a small wooden house with a green roof."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["21639082215b4b179d574d2408124838", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, room, furniture", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, blue, structure", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "f1b557775310478893242180defa4d80"], "properties": ["roof, structure, house", "shack, roof, door"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, shape, pattern", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a building with many windows"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " of a character wearing glasses and a hat."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["hat, glasses, character", "hat, glasses, character"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a person wearing sunglasses"], "question": "which entity has a character wearing a hat and glasses?", "label": 0}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, white, logo", "room, furniture, window"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a green trash can with graffiti on it.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["388f3f2e2a98442f9b8a71d3c33defae", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, trash, can", "image size, image, royalty"], "captions_pred_pc": ["above a black and white image of an object in the water", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a trash can royalty free 3d model preview no 2", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["bedside table, wheels, white", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["building, floor, columns", "floor, ceiling, poles"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a building with multiple levels"], "question": "which building has a wooden floor?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, roof, tray", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a wooden billiard table with legs."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["roof, trusses, beams", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a roof structure", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, skyline, buildings", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["Drawer, Pattern, White", "earbuds, light, ring"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a light?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a large steel building with a pool."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["water, boat, rock", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a black and white striped box."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, hat, glasses", "color, black, white"], "captions_pred_pc": ["a black and white image of a brake pad", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a robotic warrior with a sword.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "12093c89a60941e7884b252bdc05104c"], "properties": ["weapon, sword, robot", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "20a02705a66f460492e07345e84a62ed"], "properties": ["hat, bag, blanket", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, base, warning", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", "a white glass beer mug."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small triangular-shaped object."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "2d02985030804209a26c2c53b96a06f9"], "properties": ["table, staircase, light", "shape, triangle, small"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a table with stairs", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", "a white of a man with arms outstretched."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, pattern, wall", "window, arches, wall"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of an old brick wall"], "question": "which wall has a window", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house with wooden framing and trusses."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof truss, beams, structure", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house under construction"], "question": "which entity has a wooden frame?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["3D, toothpick, skateboard", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "5414d75e47104589837f3df8b6de6d22"], "properties": ["black, white, laptop", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a dishwasher with a dish inside it", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a four-legged metal workbench with shelves."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["rusty, sink, graffiti", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", "star wars stormtrooper "], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, size", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, mattress, pillows", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a black castle with stairs and a door.", "a pixelated-textured purple sphere ."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "fb68393941804e769d5c9b372864a642"], "properties": ["door, stairs, color", "texture, color, shape"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, roof, toothbrushes", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["s, chimpanzee, human, wolf", "box, handle, gun"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a house with a roof and beams."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, pier, stairway", "roof, beams, house"], "captions_pred_pc": ["above a black and white illustration of an open door", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, color, red", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, white, blue", "gold, ring, animal"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is not a ring?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, black, white, handle, armrest", "color, black, blue"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black cat?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Drawer, Pattern, White", "roof, color, yellow"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a house with a roof"], "question": "which entity has a roof color of yellow", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "e602ac60041f4b4f84c044161e478781"], "properties": ["frame, roof, trusses", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a wooden roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["a lamp, a syringe, a light pole", "house, lake, pool"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small black box on a purple square.", "a white glass beer mug."], "sample_ids": ["75f209e543c046669099190953616acc", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, size", "color, white, glass"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a house with a roof and beams."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, tree, hill", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["ceiling, light, desks", "ceiling, beams, light"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a ceiling with wood beams and light?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["base material is wood, color is red, message is welcome to northwich", "Brown, metal, lock"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", "a white of a woman with her arms outstretched."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, tower", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "92498f398e244020a867686729633610"], "properties": ["building, stairs, shelves", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and dog?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a white plastic container with a label on it"], "question": "which entity is a container?", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, pattern, material", "sphere, pedestal, statue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a sculpture on top of a pedestal"], "question": "which object has a pedestal?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "887e410d07854396b563325ae1929583"], "properties": ["green, hat, cream", "hat, mouse, bear"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of a character wearing glasses and a hat."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["orange, forklift, parking lot", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of a cell phone", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of two rocks with ice elements."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, skyscraper, city", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["tiers, building, stairs", "house, roof, wooden"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, stairs, shelves", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large building with a roof and windows.", " a group of ponies in a row."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["roof, windows, building", "group, row, pony"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a wine corkscrew"], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["bedroom, bathroom, bed", "a, type, corkscrew"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, leg, tail", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a sword on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a black and white photograph of a small town"], "question": "which entity has a road", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, white, material, ceramic", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white vase on a grey background", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a box, a cup, a bottle, a jar", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a large metal building with a roof and truss structure."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, horns, features", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "resembles, sculpture, rock"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock structure?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["Drawer, Pattern, White", "glass, metal, balls"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a clear acrylic foosball table"], "question": "which table has a clear glass top?", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " of two rocks with ice elements."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, skull, bread", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a stone sculpture", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is plastic- color is white- shape is cube", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["hill, field, castle", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["A, a, a", "building, fence, snowy"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which entity has a fence?", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, mustache, chef", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, truss, suspended ceiling", "island, terrain, water"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, blue", "roof, metal, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "be1376023c274bdda995d54f3694157f"], "properties": ["fireplace, bench, log", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["red, mouse, handwriting", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a wooden shed with a gray roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["s, plane, house", "roof, color, gray"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, roof, wall", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a building with many pillars"], "question": "which entity has a roof made of glass?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["door, white, structure", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of an empty room"], "question": "which entity has a door", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a house with a green, wooden-structured roof."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["mountain, grass, tree", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "46903bf029934b1989bc062dcb0a5531"], "properties": ["hat, sword, gun", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a pontoon boat with two seats and a canopy.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["seat, canopy, pontoon", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, shirt, pants", "house, tree, hill"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small building with windows and a roof.", " a small white house with a roof."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, windows, building", "roof, color, white"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["arm, light, sign", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a skateboard", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a blue roof.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, color, blue", "Lights, number, five"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, umbrella, coat", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, plastic", "island, terrain, water"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island with trees", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, stairs, house", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with roof trusses"], "question": "which house has a roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small building with windows and a roof."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, roof, block", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" of a wooden chair.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["b2fc4bd184944704ad43d3a31817a676", "402601779d1d4146b4cde106dfff1b27"], "properties": ["wood, chair, seat", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a close-up view of the bristle brush on a white background", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a chair", "a snowflake in the air on a cloudy day"], "question": "which entity is a picture of a cat", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white cube-shaped shelf"], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "1fc0969de9bf47cab82cae4cc8fe6c2f"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape is cube, color is white, material is wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a white shelf on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a 3d wooden pole with a metal spear handle."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "1d5cf234576e41f0ba209c5e19d2db47"], "properties": ["color, yellow, black", "- material is wood, metal, metal"], "captions_pred_pc": ["a black and white illustration of an airplane", "of a black and white illustration of a vase on a pedestal"], "captions_pred_image": ["a black and white helicopter flying in the air", "a black and white image of an old-fashioned pitchfork"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["color, white, yellow, roof, metal", "roof, structure, suspended"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a metal roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, roof, white, cubes", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a map", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a large steel building with a pool."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, floorplan, gym", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", "a computer mouse on a piece of paper with a hole in it."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "453edfa600a0493f9379738ea8393273"], "properties": ["paper, hole, mouse", "paper, hole, mouse"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "above a black and white illustration of an object in the shape of a cloud"], "captions_pred_image": ["a mouse on top of a piece of paper", "a mouse on top of a piece of paper"], "question": "which entity has a hole in it?", "label": 0}, {"captions": [" a small house with stairs and a balcony.", " a wooden shed with a gray roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["balcony, stairs, house", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is the color gray", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", "a white of a man with arms outstretched."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small wooden house with a green roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["tiers, building, stairs", "roof, color, green"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "be1376023c274bdda995d54f3694157f"], "properties": ["shape is cylindrical, color is silver, material is metal", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a house with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "d49d8ed244094349a99e4faca05e0690"], "properties": ["black, white, coffee table", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "c8936ace72954650b4e2d84246964849"], "properties": ["hat, bag, blanket", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["a train, a ship, a boat", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a black and white striped fly in the air."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["hat, food, bowl", "black, white, fly"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["furniture, room, kitchen", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a building with many pillars"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, color, green", "house, tree, hill"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "bf18bfd89efd43389781050230467d58"], "properties": ["color is white, material is plastic, shape is box", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a white chandelier with five white shades"], "question": "which object is made of glass?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["3D, toothpick, skateboard", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with a wooden-framed roof structure."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, red, pink", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["white 3d tank model", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "b896a0898efe4059a776193c02132129"], "properties": ["color is white, model is 3d, name is tank", "- material is stone, metal, concrete"], "captions_pred_pc": ["a close-up view of the back of the phone case", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a large metal building with a roof and truss structure."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "b85a99699ccd4bcba213322113bb253d"], "properties": ["nut, bowl, ring", "roof, truss, structure"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["mossy, rock, grass", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["- material is plastic- color is white- shape is cube", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a white 3d model of a city skyline"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, shape, and size", "island, fish, ice"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d map of the country of israel"], "question": "which entity is a island?", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " of two rocks with ice elements."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, pool, balcony", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a modern house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["color, shape, material", "resembles, toy, bookshelf"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a book cover"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "97e000ff41094665afd94ea565da8b13"], "properties": ["frame, beams, trusses", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["floor plan, bathroom, pool", "roof, trusses, beams"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which house has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, structure, wall", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a white of a woman with her arms outstretched."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, hat, glasses", "image, color, white"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "be1376023c274bdda995d54f3694157f"], "properties": ["color, roof, wall", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a house with a roof"], "question": "which building has a roof made of wood?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["- color is red, blue, pink", "house, roof, wooden"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a spiral staircase with a railing in a small building."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a, hole, shelf", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "bf18bfd89efd43389781050230467d58"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a building with blue lines and structure.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, shape, structure", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", " a white building with a red roof."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, silver, white", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "402601779d1d4146b4cde106dfff1b27"], "properties": ["green, hat, cream", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white image of a pair of earrings", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a snowflake in the air on a cloudy day"], "question": "which entity has a pig in a green hat?", "label": 1}, {"captions": ["a white of a small archway gate.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["image, color, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white illustration of an arch", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white arch", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, green, squirt gun", "color, silver, white"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["- material is wood - color is white - height is 1.8 m", "metal, rusted, paper"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a machine gun with additional items."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["desk, chair, lamp", "gun, type, machine gun"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a submachine gun"], "question": "which object is a type of gun", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, rock, paper", "house, pool, balcony"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "97e000ff41094665afd94ea565da8b13"], "properties": ["container, powder, white", "roof, material, wood"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a clear plastic container with a white label on it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small, snow-covered house.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, snow, cover", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "e602ac60041f4b4f84c044161e478781"], "properties": ["a, hill, deer", "floor, wall, roof"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a white round table with a red accent.", " of a small white building with stairs and a lid."], "sample_ids": ["fea62a865b4e40899d95785533818329", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, red", "building, stairs, lid"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a white human skull with broken bone elements."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, table, ceiling", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a wooden tv stand with two drawers and handles."], "sample_ids": ["b5afccae993346079483507296fbb029", "6409380e790442e6a5733eb447d4c510"], "properties": ["shape is square, material is metal, color is rusty", "Drawer, Handle, Wood"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a wooden entertainment center"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["room, door, shelf", "roof, metal, white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "40022305eaf44442915c9db03e25f781"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white image of an abstract design"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "ee440fcbc493488e879539d37a8d820e"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["shape is cube, material is wood, color is white", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a person breaking through a brick wall."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["floor, staircase, railings", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a light switch", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a spiral staircase with a railing in a small building."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a, bowl, cup", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["s of, snowboard, shoes, mask", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, red, blue, green", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a submarine"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small white building with stairs and shelves."], "sample_ids": ["55b26130f1514032be078e13fd982905", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, material", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small silver handgun.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["107a70cd0305435e8d38c08bcf0a7483", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["size, color, material", "color, frame, shape"], "captions_pred_pc": ["a black and white illustration of a sock on a white background royalty free illustration", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a hand-held device on a white background", "a 3d model of a building structure"], "question": "which entity is larger", "label": 1}, {"captions": [" an old castle in a grassy field.", " a red, blue, and green striped tower building."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["field, grass, castle", "color, red, blue, green"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is more colorful", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small house with stairs and a roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["tiers, building, stairs", "roof, stairs, house"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["case, player, football", "house, pool, balcony"], "captions_pred_pc": ["of a black and white image of a pair of boots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof truss, beams, structure", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of the roof of a house"], "question": "which entity has a roof truss system", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small, snow-covered house."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["image, building, painting", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a piece of broken glass on a white background"], "question": "which image shows a house covered in snow?", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a house with a wooden-framed roof structure."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["shape, bathroom, refrigerator", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "443554d4d7044c66aa8cbff63c737589"], "properties": ["color, shape, and size", "roof, color, pink, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white square with dots all over it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which entity has a roof that is pink and blue?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small building with windows and a roof."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, texture", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a two-story small apartment building with a roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof truss, insulation, suspended ceiling", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, truss, suspended ceiling", "roof, trusses, beams"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "b896a0898efe4059a776193c02132129"], "properties": ["label, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, shape, size", "mountainous, landmass, state"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", "a low-poly of a white, shattered sphere."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["moss, mushroom, grass", "sphere, color, texture"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a cracked egg"], "question": "which entity is a low poly?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white square with the words \"what tv\" on it."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, white, containers", "color, white, words"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small wooden house with a green roof."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["- color is red, blue, pink", "roof, color, green"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "92498f398e244020a867686729633610"], "properties": ["building, room, sky", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, plane, small plane", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a green circuit board."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, red, blue, green", "color, green, circuit board"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of the item in the image"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["door, roof, pool", "house, pool, balcony"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a blue roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small purple plastic chair with holes."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["screen, keyboard, box", "color, plastic, purple"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a green mountain with trees and grass."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, material, structure", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, color, purple", "a, material, clay"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a black castle with stairs and a door.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["door, stairs, color", "turrets, flags, towers"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which castle has turrets", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["image, building, painting", "house, color, white"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of a bench"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small building with windows and a roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["background, color, white", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["giraffe, bench, flower", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small building with windows and a roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, material", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a close up of a black object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a two-story small apartment building with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["frame, truss, roof", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["97f487941d26472294e005fa97c403be", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, white, green", "resembles, sea urchin, shell"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a sea urchin"], "question": "which entity is white and brown?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "dd3a9323ed514ccab330973ff9588015"], "properties": ["color, shape, and size", "room, bed, desk"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a door"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["desk, chair, table", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a white of a spaceship and building."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["room, bed, desk", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, rock, pond", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["house, lake, pool", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["cover, torn, open", "hat, color, tan"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of an object with a hole in it"], "question": "which object has a hole in it?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["metal, rusted, paper", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["adec10493e06436c967d5797f7085225", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, yellow, roof, metal", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["- color is white - shape is box - material is plastic", "black, white, coffee table"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a black and white 3d model of a building"], "question": "which entity is not a coffee table?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house with wooden framing and trusses."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, material, frame", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "white of a rhino head with horns."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "8481aade84de47cab1a9accf8067e678"], "properties": ["floor plan, bathroom, pool", "image, rhino, head"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a small house", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "096e42b466ec438d95c5d89a85191534"], "properties": ["screen, monitor, stand", "white, rock, shell"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a green letter p", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ccd770b6eee245d18538b50126977e51", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, letter", "roof, color, yellow"], "captions_pred_pc": ["a 3d model of a black and white dots on a white background 3d model of a black and white dots on a white background, isolated on a white background, 3d illustration, 3d model, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art,", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the letter p royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", " a sword with a wooden handle."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["type, handle, feature", "handle, material, wood"], "captions_pred_pc": ["for a black and white drawing of an axe", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a black and white image of a sword"], "question": "which handle is made of wood", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, mustache, chef", "hat, dress, racket"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a chef's hat", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity is a woman?", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["roof, green, lawn", "image, color, pink"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d sculpture of an animal on a piece of paper"], "question": "which image has a pink sign?", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a small wooden house."], "sample_ids": ["4f21fa937959487a96350af527d75421", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["window, frame, room", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["tv, chair, laptop", "house, fence, playground"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "f1b557775310478893242180defa4d80"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, size", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a close up of a mushroom?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, texture", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a gray, metal pillar/cylinder."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["rusty, sink, graffiti", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "of a black candle on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["- material is wood, metal, metal", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["pos machine, credit card machine, cash register", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white map of the island of malta"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a person's head wearing a hat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4ad7ba52fa6f42ef89b52766daf1e2b9", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["head, hat, person", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of a half moon", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a person's head with a hat on it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "68e0d097351843a3980421f2ae624c59"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "white, top, writing"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, pattern", "a, material, clay"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["base, speaker, light", "island, terrain, water"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, yellow, chimney", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["face, handle, spout", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white illustration of a surfboard"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4389909667db472ea9a57a70eb940fa4", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, window, skeleton", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a piece of paper", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white photo of a person's reflection in a mirror", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["color, roof, tray", "bread, knife, board"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a 3d model of the roof of a building", "a loaf of bread and a knife on a cutting board"], "question": "which object is on a cutting board?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, shape, and size", "house, yard, surrounding buildings"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house in the middle of a field"], "question": "which entity is larger", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["red, mouse, handwriting", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["island, terrain, rocks", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["low poly, llama, kangaroo", "house, hill, forest"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["frame, roof, trusses", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, beams, chimney", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a large stone buddha statue atop a rock, on a monumental pillar.", " a large stone buddha statue atop a rock, on a monumental pillar."], "sample_ids": ["478ab30e64cd4dbc8fa09ba76f5b95cb", "478ab30e64cd4dbc8fa09ba76f5b95cb"], "properties": ["buddha, rock, pillar", "buddha, rock, pillar"], "captions_pred_pc": ["above a black and white illustration of a tombstone", "above a black and white illustration of a tombstone"], "captions_pred_image": ["a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3", "a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3"], "question": "which entity has a buddha statue atop a rock", "label": 0}, {"captions": [" featuring a chair, table, and refrigerator.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "1d1328346a464d2482463d6d5288e934"], "properties": ["chair, table, refrigerator", "painting, door, wall"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a painting on the wall?", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, green, lawn", "building, plane, room"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "411c164757fc4de68dfecb35fa858223"], "properties": ["a, b, c", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white drawing of a submarine", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["bed, desk, window", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, size", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a green skull and sphere.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, skull, sphere", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "b896a0898efe4059a776193c02132129"], "properties": ["image, color, pink", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, green", "roof, material, wood"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small house on a hill in a field."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["broom, shovel, fireplace", "house, hill, field"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "f1b557775310478893242180defa4d80"], "properties": ["color, shape, and material", "shack, roof, door"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a small house in the middle of a field"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, hill, forest", "building, plane, room"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small white house with windows and a black lid."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "4b40af369c1149949f5ccb68becd8430"], "properties": ["bedroom, bathroom, bed", "white, windows, lid"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a white house with three windows"], "question": "which house has a black lid", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, light, jewels", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["21639082215b4b179d574d2408124838", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, room, furniture", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, white, holes", "blue, curved, resembles"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a white origami bird with silver wings."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "d9574287572c47f7a2b712cf1d919374"], "properties": ["color, material, texture", "color, white, wings"], "captions_pred_pc": ["a black and white image of a spider's head", "a 3d model of the human body"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity has wings", "label": 1}, {"captions": [" of a white human skull with broken bone elements.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["6ca0f91b85464d7a845b3977351dd0b5", "40022305eaf44442915c9db03e25f781"], "properties": ["color, white, skull", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white image of a cat's x-ray", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a human skull in white", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["building, roof, balcony", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, table, ceiling", "roof, ceiling, hole"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": [" a small wooden sailboat.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, sails", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["load, crates, snow", "island, terrain, water"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which has more water", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a house with wooden framing and trusses."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["face, handle, spout", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a window"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a tree with green leaves."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "1a902b67735845198efb1b84f434b580"], "properties": ["color, shape, material", "leaf, color, green"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "411c164757fc4de68dfecb35fa858223"], "properties": ["resembles, toy, castle", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["light, floor, ceiling", "grass, plants, rocks"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a child's room in a small house with windows.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "d81d13362ae04371bb2cba46e4939665"], "properties": ["room, house, windows", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["island, terrain, rocks", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a black and white image of a person wearing a hat"], "question": "which entity is a still life?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["metal, laptop, light fixture", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a pontoon boat with two seats and a canopy."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "dccff5eccf6943f8b14cd269710ae6ff"], "properties": ["backrest, curved, yes", "seat, canopy, pontoon"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a leopard print purse"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10"], "question": "which entity has a canopy", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a large house with a roof on a platform."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, table, chair", "roof, platform, house"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["rusty, sink, graffiti", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, plane, small plane", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["food, leaves, shredded paper, rocks", "building, plane, room"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, shape, number", "arrow, mountain, area"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a line with a square on it"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of two rocks with ice elements."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["computer desk, laptop, monitor", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, truss, lamp", "house, roof, green"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, trusses, ladder", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["Headstock, Guitar, Head", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bed", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["turrets, flags, towers", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a small building with windows and a roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, windows, building", "roof, truss, structure"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a long metal fence"], "question": "which building has a roof with trusses", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, blue, components", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a house with a roof and beams."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["table, bench, deer", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a wooden roof structure with a pink roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["lighthouse, fountain, crater", "roof, color, pink"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color of pink", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["background, color, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["034c093c73fd48758422feee0b10c5d8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, backpack, stick", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a bird in flight", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a pencil drawing of a person holding a sword", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["s, chimpanzee, human, wolf", "island, terrain, water"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, yellow, white, wheels", "arrow, red, white"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": [" a large orange pumpkin.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["684df453535b4ec28c4d5b64dcd60f59", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["orange, large, pumpkin", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a pumpkin on a white background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is more likely to be found in a garden", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a potted plant on a wooden table or shelf."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white image of a plant in a pot"], "question": "which entity has a potted plant on it?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, light, jewels", "wing, knife, boat"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black umbrella on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small wooden house with a green roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, black, white", "roof, color, green"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, plane, sky", "building, room, sky"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building", "label": 1}, {"captions": ["a pile of mint green soap cubes.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, mint, soap", "island, fish, ice"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a 3d map of the country of israel"], "question": "which entity is not a pile of mint green soap cubes?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a cone shaped object"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["Drawer, Pattern, White", "paper, hole, sign"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["color, hat, shoes", "hat, dress, racket"], "captions_pred_pc": ["a black and white image of a teddy bear", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor, staircase, railings", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["metal, roof, chest", "color, white, gold"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, dress, flower", "a, outfit, green"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a red and pink apple.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c99acf979dda44dea009727513247b22", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, red, pink", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of an apple", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " of a tree stump and rock with flowers on them."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["flower, rock, tree stump", "flower, rock, tree stump"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has a rock with flowers on it?", "label": 0}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a house", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of two rocks with ice elements."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a two-story small apartment building with a roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, room, ceiling", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small building with windows and a roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof, windows, building", "building, color, black and white"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["shape is cylindrical, color is silver, material is metal", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, yellow, black", "paint, rust, concrete"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a concrete wall"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small white box with a shelf and a hole in it."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["building, stairs, shelves", "a, hole, shelf"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a white box on a gray background"], "question": "which object has a hole in it?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a wooden roof structure with a pink roof."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, white, railing, black", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of the roof of a building"], "question": "which structure has a pink roof?", "label": 1}, {"captions": [" of a wooden barrel", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3431ad88681b43df88d6aab9c43533b3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, shape", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wooden barrel royalty free 3d model preview no 2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["graffiti, chinese writing, door", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a large steel building with a pool."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, fence, playground", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a molecule with two pink and blue spheres."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "926fb2e23c56440a86287e98c1440336"], "properties": ["house, yard, surrounding buildings", "color, shape, size"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of three spheres on a white background"], "question": "which entity is not a molecule?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white house with a staircase and a window."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "9eb88d17310d42dda9e17883e9922525"], "properties": ["roof, purple, suspended", "house, staircase, window"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a small room with a staircase"], "question": "which house has a window?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a house with a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["house, roof, green", "roof, house, roof"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which house has a roof", "label": 0}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["structure, columns, roof", "floor, ceiling, poles"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with multiple levels"], "question": "which building has a wooden floor", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, roof, wooden", "island, mountain, grass"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small barn", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "887e410d07854396b563325ae1929583"], "properties": ["color, temperature, england", "hat, mouse, bear"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a wooden-cased radio."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["size, color, shape", "case, material, wood"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a brick building with a roof structure and roof truss."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "84e8acad28664a738df69d719df9e263"], "properties": ["Drawer, Pattern, White", "roof, structure, truss"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof trusses, beams, suspended ceiling", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a building", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small white house with a roof."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, size", "roof, color, white"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["level, stairs, columns", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an apartment building", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["stair, table, chair", "bedroom, bathroom, bed"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, shape, texture", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a green mountain with trees and grass."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["light switch, electrical outlet, furniture", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " of a white chest of drawers with legs."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, pier, railings", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["3D, toothpick, skateboard", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white photograph of an open door"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["resembles, toy, bookshelf", "a, color, red"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a castle with two towers"], "question": "which toy is red", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "5d0b9c038a1847f29384ec09cffc43d9"], "properties": ["- material is plastic- shape is dice- color is white", "- material is metal - weight is 0 - height is 0"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white illustration of a person flying a kite"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d rendering of a metal clamp with a spike on top of it"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a large house/building structure with a roof."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["location, field, gravestone", "roof, structure, house"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a large white structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" of a green pickle", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color is green, shape is cylinder, material is plastic", "metal, cross, clock"], "captions_pred_pc": ["of a black object on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a white of a spaceship and building."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["a box, a cup, a bottle, a jar", "image, building, spaceship"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["shape is box, color is white, door is present", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["wood, board, shelf", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a, island, water", "house, staircase, table"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, truss, lamp", "house, tree, hill"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a silver iphone 6, 6s plus, and 8 plus."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d68994adb2ee49faa4f51b5cb0b500c0"], "properties": ["color, light, jewels", "color, silver, phone"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a smartphone royalty-free 3d model preview no."], "question": "which is not a phone", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, metal, white", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, shape, material", "arrow, mountain, area"], "captions_pred_pc": ["a black and white image of a decorative tile", "a line with a square on it"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a white of a house with a hole in the ceiling."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["buildings, houses, grass", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of a house"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small house with a roof."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["color, roof, green, frame, red", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["building, floorplan, gym", "black, roof, green"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a small black building"], "question": "which building is black?", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, shape, size", "a, color, white"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, bird, hook", "bedroom, bathroom, bed"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bedroom with a bed and desk?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " of a white human skull with broken bone elements."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, text", "color, white, skull"], "captions_pred_pc": ["a black and white image of a screw", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a white chest of drawers with legs."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a, b, c", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a wooden roof structure with a pink roof."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, fence, snowy", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a white building with a red roof."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, platform, house", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a piece of paper", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "c3a82df41875402285608ef13a55df57"], "properties": ["ruined building, stone floor, small stone structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a blue and white bird.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a 3d model of a house with a roof"], "question": "which entity is larger", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a train, a ship, a boat", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, color, pink", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d81d13362ae04371bb2cba46e4939665"], "properties": ["floor plan, heating system, ceiling light fixture", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small house with a tree and a rock."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["tiers, building, stairs", "house, tree, rock"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": ["colorful of a dragon toy.", " a white rocking chair with a curved backrest."], "sample_ids": ["8c0ec07322914726ad86cc4885052e08", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, toy, dragon", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white image of a stingray on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small dragon toy", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, type, factory", "building, material, stone"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["ceiling, beams, light", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a barrel and a cube together.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["a, barrel, cube", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a castle with two towers"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a, desk, laptop", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a, bird, lamp", "throne, chair, building"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "92498f398e244020a867686729633610"], "properties": ["desk, chair, lamp", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "red heart-shaped object."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["a, color, white", "shape, heart, red"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a heart shaped object"], "question": "which object is red?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["- material is white- color is white- texture is textured", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a wooden windmill with a red roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["house, lake, pool", "roof, color, red"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is the color red", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a person breaking through a brick wall."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["floor plan, bathroom, pool", "image, brick, wall"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["desk, chair, lamp", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["40921ffd69db479294554d261daf3035", "d81d13362ae04371bb2cba46e4939665"], "properties": ["floor, railing, staircase", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a spiral staircase", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a wooden base?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a spider-like creature with long arms and legs."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, yellow, chimney", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " of a white human skull with broken bone elements."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, material, pattern", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor plan, ceiling light, color", "house, tree, hill"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, plane, sky", "house, tree, hill"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, black, shade, black", "metal, rusted, paper"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have rusted metal", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small white house with a roof."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["island, terrain, rocks", "roof, color, white"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["moss, mushroom, grass", "building, material, rock"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d image of a damaged piece of furniture"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["yellow, table, roof", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a house with a wooden-framed roof structure."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, color, shape", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " of two rocks with ice elements."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, truss system, framing", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "e6ff8537a6ba409296954984071218a3"], "properties": ["frame, roof, trusses", "frame, screen, color"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, red, blue, structure", "frame, screen, color"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen that is colorful?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, gazebo, table", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["house, tree, rock", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["water, river, island", "flower, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["green dumbbell ", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is green, shape is dumbbell, material is metal", "mountainous, landmass, state"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, plate, yellow", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a hat on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a sword and knife."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "8b567403ba614523a298f1c5b2009f92"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a, sword, knife"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black silhouette of a knife on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a samurai sword royalty free 3d model preview no 2"], "question": "which object is not a hook?", "label": 0}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small building with a staircase in a room."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["room, bed, desk", "room, staircase, building"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase in a room?", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a white sofa, chair, and box."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "4c59733ebd634594a921b7ace60e4142"], "properties": ["floor, staircase, table", "sofa, chair, box"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, pink", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c4c09479570943e2845fbd4c6a450568"], "properties": ["color, shape, and size", "castle, island, house"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small house on an island"], "question": "which entity is a castle?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small, snow-covered house."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["desk, chair, table", "house, snow, cover"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a house with a roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["bedroom, bathroom, bed", "roof, house, roof"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small blue robot with a windmill."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, light, jewels", "color, blue, robot"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a wind turbine"], "question": "which robot is blue", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a wooden-cased radio."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, gun", "case, material, wood"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " of a white human skull with broken bone elements."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, red, green, yellow", "color, white, skull"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a large building with a roof and windows."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "32d1fbd3ee91426882290305f70021e6"], "properties": ["house, rock, pond", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small white house with a roof."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["building, roof, white, cubes", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "an image of a pile of trash on the ground"], "question": "which city has more buildings", "label": 1}, {"captions": [" a white building.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, building", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a bottle", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building on a white background", "a black and white photograph of a birdhouse"], "question": "which building is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["base material is wood, color is red, message is welcome to northwich", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["Arms, Legs, Color", "roof, air conditioner, house"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["water, boat, rock", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["metal, laptop, light fixture", "metal, cross, clock"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "a17477b445b3443189dad22f768b888b"], "properties": ["a, hole, shelf", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, shape, texture", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, horns, features", "house, staircase, table"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["Drawer, Handle, Wood", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a white castle composed of small cubes."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a small wooden house with a green roof."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, background", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with wooden framing and trusses."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, shape, and size", "frame, trusses, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["building, material, stone", "building, material, rock"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d image of a damaged piece of furniture"], "question": "which building is made of rock", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink."], "sample_ids": ["d6087023095446fbadef1721478373b2", "1ee3df6f94ea4c329a9c5245634e34d5"], "properties": ["door, roof, window", "graffiti, chinese writing, door"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a bridge with dots"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of a bathroom with a sink and a toilet"], "question": "which building has a door with graffiti?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, sphere, molecule", "stair, table, chair"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a green and red toy gun with a scope and yellow accents."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "4b7263b58a6647c3a03226b39c42108a"], "properties": ["texture, spikes, eyes", "color, red, green, yellow"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an assault rifle on a gray background"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "6b745457e06840119058883b35f78f58"], "properties": ["Steel, Color, Yellow", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a wooden billiard table with legs."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, color, shape", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["- material is stone - color is blue - shape is arrowhead", "nut, bowl, ring"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d rendering of a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with stairs and a roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, tree, rock", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "a17477b445b3443189dad22f768b888b"], "properties": ["a, bowl, cup", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["water, river, island", "color, yellow, black"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white helicopter flying in the air"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, green, lawn", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a wooden table and chair."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["building, tree, plane", "table, chair, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small wooden table"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["pattern, color, shape", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a white 3d model of a city skyline"], "question": "which entity is a still image?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "26c47880756b4876b4f263373c3c5303"], "properties": ["floor plan, heating system, ceiling light fixture", "building, material, steel"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a large structure with multiple levels"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small triangular-shaped object."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "2d02985030804209a26c2c53b96a06f9"], "properties": ["screen, keyboard, box", "shape, triangle, small"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a small white building with stairs and a lid."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["hat, food, bowl", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a house with a roof and beams."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, beams, house"], "captions_pred_pc": ["a black and white map of germany on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a clay pot with holes in it."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color is white, material is plastic, shape is box", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "a17477b445b3443189dad22f768b888b"], "properties": ["color, red, black", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a wooden shed with a gray roof."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, red, green, yellow", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a wooden staircase with a railing and table."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "956247bea850458199c651037d4b1d7f"], "properties": ["floor, table, light", "railing, table, staircase"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a table with a staircase"], "question": "which staircase has a table", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large house with a roof on a platform."], "sample_ids": ["d6087023095446fbadef1721478373b2", "cb3e09a301b746918a682a595037c7f7"], "properties": ["door, roof, window", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a small house"], "question": "which building has a roof on a platform?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a futuristic white sports racing car."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["roof, color, yellow", "color, white, futuristic"], "captions_pred_pc": ["a black and white drawing of a room", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a futuristic sports car"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "6b745457e06840119058883b35f78f58"], "properties": ["room, door, shelf", "roof, color, blue"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small orange piano with legs."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, white, yellow, roof, metal", "color is orange, size is small, legs"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a house with a green, wooden-structured roof."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["earbud, earpiece, earpiece", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, material", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a small wooden house with a green roof."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["buildings, houses, grass", "house, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a wooden barrel.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["77ceb4db6ddc4a6c8c4a83ab1519e78b", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["material is wood, shape is barrel, color is brown", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a gray and white barrel", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "b896a0898efe4059a776193c02132129"], "properties": ["color, handle, straps", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, plane, town", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a clay pot with holes in it."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "c3a82df41875402285608ef13a55df57"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small building with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, building, small", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a small house", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" of a round birthday cake with a single candle in the middle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["76c834f15f664dbdb7c08ca1ff936e7c", "a17477b445b3443189dad22f768b888b"], "properties": ["candle, color, shape", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a shower head", "a black and white image of a square with dots"], "captions_pred_image": ["a birthday cake with a candle on top royalty free 3d model", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["hat, sword, gun", "door, roof, pool"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "7407a108e0354925b83b750339bc03df"], "properties": ["color, red, blue, green", "platform, color, orange"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a color that is not red", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "12093c89a60941e7884b252bdc05104c"], "properties": ["Drawer, Handle, Wood", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "db74ee1621464be1b164be26a1af050e"], "properties": ["wing, knife, boat", "window, arches, wall"], "captions_pred_pc": ["a black umbrella on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a white castle composed of small cubes."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, texture", "composed of, white, cubes"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house with wooden framing and trusses."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof, yellow, chimney", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": [" a black and gold pistol.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, gold", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["white space shuttle model.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, model is space shuttle, size is small", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, roof, structure", "house, roof, wooden"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a black and white photograph of a birdhouse"], "question": "which structure has a wooden roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["color, temperature, england", "building, roof, balcony"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["shattered, resembles, broken phone", "low poly, plant, white"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a plant growing out of a rock"], "question": "which object is a low poly of a plant on a white object?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a house with a green, wooden-structured roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, table, chair", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["type, handle, feature", "box, handle, gun"], "captions_pred_pc": ["for a black and white drawing of an axe", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a two-story small apartment building with a roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["chair, table, refrigerator", "two-story, roof, building"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, hole, rock", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "c3a82df41875402285608ef13a55df57"], "properties": ["floor, wall, roof", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, head, white and brown", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a small white house with windows and a black lid."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, blue, rim, blue", "white, windows, lid"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "above a black and white image of dots on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a white house with three windows"], "question": "which object has a black lid", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, alternator, fan", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a small white building with stairs and a lid."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, stairs, lid"], "captions_pred_pc": ["a black and white map of germany on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["low poly, plant, white", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, rock, paper", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a vehicle with wheels and tires"], "question": "which object has more stuffed animals", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["a, bird, lamp", "Object, Tray, Tray"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white image of a piece of paper"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d image of a white tray with an intricate design"], "question": "which object has a bird on it?", "label": 0}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a large white and metal building with a metal roof structure."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["a, roof, soup", "roof, metal, white"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Drawer, Handle, Wood", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house with a blue roof.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, color, blue", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a door?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "887e410d07854396b563325ae1929583"], "properties": ["roof truss, insulation, suspended ceiling", "hat, mouse, bear"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, island, water", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " an old lantern with moss on it."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "62925f26fd624310bd6b31136fe8e706"], "properties": ["mossy, rock, grass", "moss, lantern, old"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white image of an old lantern"], "question": "which object has moss on it", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "6b745457e06840119058883b35f78f58"], "properties": ["a knife, blade, handle", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a wooden billiard table with legs."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, gun", "legs, material, wood"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["frame, beams, trusses", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["cup, bottle, chessboard", "house, table, chair"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2563abff548c4479970c81491513b572", "a17477b445b3443189dad22f768b888b"], "properties": ["color, model, year", "roof, pillar, stairs"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["- color is white- shape is flower- pattern is lace", "house, pool, balcony"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a large metal building with a roof and truss structure."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, size", "roof, truss, structure"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a long metal fence"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1c389c8f46b345838e515b9747c1f982", "a17477b445b3443189dad22f768b888b"], "properties": ["plate, fruit, knife", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a hedgehog", "a black and white image of a square with dots"], "captions_pred_image": ["a person riding a skateboard on a wooden surface", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "73e7107ff3634516846bccad04c5dc87"], "properties": ["shattered, resembles, broken phone", "blue, curved, resembles"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d rendering of a white bathroom sink"], "question": "which object is more likely to resemble a wall", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", "white airplane in flight."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "7dccc62d436c40efa2ea23b9c8179451"], "properties": ["light, floor, ceiling", "airplane, white, in flight"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a 3d model of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a white airplane toy on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["color, black, shade, black", "books, paper, lamp"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white photograph of a toilet paper holder"], "question": "which lamp is black", "label": 1}, {"captions": ["a black rock with writing on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, writing", "a, material, clay"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a wooden-cased radio."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["yellow, table, roof", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object has a case made of wood", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a computer desk with a metal cube and a black and blue object on it."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "ccae0199457440e68db47a936191afe5"], "properties": ["color, shape, texture", "a, color, black, blue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a sofa with a cushion on top"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a desk with a laptop on it"], "question": "which entity has a black and blue object on it?", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["case, player, football", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white image of a pair of boots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a house with a roof and beams."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, poles", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["acropolis, city, building", "house, building, people"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a white cylinder with a blue light and ring around it.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f91e2e3340604001bd6ea2ab25886e46", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, light, ring", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white image of a plastic sponge on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a clear plastic tube", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "box, handle, gun"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, tan, brown, orange", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a tree with green leaves.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1a902b67735845198efb1b84f434b580", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["leaf, color, green", "roof, color, yellow"], "captions_pred_pc": ["for a black and white drawing of a tree", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a lot of foliage", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, purple", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a brick building with a roof structure and roof truss."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "84e8acad28664a738df69d719df9e263"], "properties": ["a box, a cup, a bottle, a jar", "roof, structure, truss"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, tan, brown, orange", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a house with a green, wooden-structured roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["building, material, steel", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a house with a triangular roof"], "question": "which building has a green roof", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", "a white glass beer mug."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, green", "color, white, glass"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small orange piano with legs."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "d793de7c08d74414beeb8ea50f730705"], "properties": ["s, chimpanzee, human, wolf", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "09f2cf267e954c958828325067bcc36a"], "properties": ["face, handle, spout", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a white ceramic vase with a face on it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of a barrel and a cube together."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "a, barrel, cube"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, head, bowl", "house, tree, hill"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small wooden sailboat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, sails", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a small purple plastic chair with holes."], "sample_ids": ["c27b018330da406680e58b94266c310b", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["frame, material, wood", "color, plastic, purple"], "captions_pred_pc": ["a black line on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a bench", "3d model of a chair royalty free 3d model preview no 3"], "question": "which chair is made of plastic", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a wooden billiard table with legs."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, dragon, cloth", "legs, material, wood"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["door, roof, pool", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " of a large axe with a cross on top."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, blue, rim, blue", "axe, cross, top"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "for an axe on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "402601779d1d4146b4cde106dfff1b27"], "properties": ["building, stairs, shelves", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a snowflake in the air on a cloudy day"], "question": "which entity has a cat", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["collection, color, black, handle, wooden", "roof, trusses, beams"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a roof structure"], "question": "which entity has wooden beams?", "label": 1}, {"captions": [" of a wall featuring various potted plants.", " of a crab holding a rubik's cube."], "sample_ids": ["54d03259a316434e9c670a52a7e5a92e", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["image, wall, plants", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a black and white image of a wall with bullet holes", "a black and white image of a crab holding a cube"], "question": "which image shows a crab holding a rubik's cube?", "label": 1}, {"captions": ["a 3d checkered fish-shaped paper toy with blue and black stripes.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["3e272385b91d4439baef6a5cbc90930e", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["of a 3d model of a fish on a white background 3d model of a fish on a white background 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a white background, 3d model of a fish on a", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a black and white 3d model of an airplane shaped like a fish", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a house with a pink roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, red, blue, green", "color, roof, pink"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which building has a pink roof", "label": 1}, {"captions": ["white balloon floating in the air.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["033a61d66f7646ceaac357b502a5f5dc", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, shape is balloon, material is air", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white circular pattern on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white balloon on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, air conditioner, house", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["hat, sword, gun", "room, furniture, window"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, structure, house", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a triangular roof"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, roof, tray", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, table, ceiling", "a, material, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a barrel and a cube together."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["house, lake, pool", "a, barrel, cube"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a house with wooden framing and trusses."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["shape is hot dog, design is dragon, color is black", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white drawing of a window"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a house under construction"], "question": "which object is made of wood", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, tan, brown, orange", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small purple plastic chair with a handle and white base.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["cc5abae412db4e4b952eee1e4747af05", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, plastic, base", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a necklace", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, shape, size", "axe, handle, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["Headstock, Guitar, Head", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an axe head", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a spider-like creature with long arms and legs."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a room, a cake, a table", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a pig with an open mouth and a knife.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["d2d3b56c704341198aebd3601a6bb624", "1da865c75a5e4a57a17652975dae5474"], "properties": ["mouth, open, knife", "color, white, plastic"], "captions_pred_pc": ["a black and white photo of a hippopotamus", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a pig with a knife in its mouth royalty free 3d model preview no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " of two rocks with ice elements."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["windmills, silhouette, city model", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, truss, suspended ceiling", "house, tree, hill"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["- material is white- color is white- texture is textured", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cube", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "b896a0898efe4059a776193c02132129"], "properties": ["texture, spikes, eyes", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a flower", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, table, chairs", "throne, stairs, tree"], "captions_pred_pc": ["a close-up of a white object on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["apse, roof, floor plan", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, color, white", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["size, material, shape", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue plastic stool.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2ea7d871e2f64c7daa6977a8d268b45e", "c3a82df41875402285608ef13a55df57"], "properties": ["color, plastic, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a chair with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white chair", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["room, house, windows", "roof, air conditioner, house"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof and ceiling-mounted air conditioner?", "label": 1}, {"captions": ["\"3d white flower, black and white tree and plant silhouettes, and heart with leaves\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1ffbc9486bce4634ba09914be33af4e0", "c3a82df41875402285608ef13a55df57"], "properties": ["color, heart, leaves", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white drawing of a tree with branches", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", " a wooden roof structure with a pink roof."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of the roof of a building"], "question": "which roof is pink", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a white human skull with broken bone elements."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, red, blue, green", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a white glass beer mug."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, size", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small wooden house with a green roof."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, eagle, wood", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a white of a woman with her arms outstretched."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["black, white, laptop", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, screen, drawer", "a, material, steel"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["bed, desk, window", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["painting, door, wall", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["size, material, color", "gold, ring, animal"], "captions_pred_pc": ["of a black plastic ring on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "5414d75e47104589837f3df8b6de6d22"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "beige, white, round"], "captions_pred_pc": ["a black and white map of germany on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["lighthouse, fountain, crater", "table, staircase, light"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a character wearing glasses and a hat."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["room, bed, desk", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " of two rocks with ice elements."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["ruined building, stone floor, small stone structure", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, horns, features", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f39783d05dec49e49482c407d656e0f7"], "properties": ["color, shape, and size", "a, plane, small plane"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white photo of an airplane propeller"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d printed model of a fighter plane in the air"], "question": "which entity has more planes", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house with a green, wooden-structured roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, tree, pool", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["- material is plastic- color is white- shape is cylinder", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white photograph of an open door"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a small white table with a chair"], "question": "which object is whiter", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, white, gold", "glass, metal, balls"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["flag, stand, color", "houses, trees, road"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a banner on a stand", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a large metal building with a roof and truss structure."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "b85a99699ccd4bcba213322113bb253d"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "of a metal grate on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house with a flat roof structure."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "abc52d210d71415296730bb00352ce6f"], "properties": ["runner, bed, bench", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a roof"], "question": "which entity has a flat roof", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small white building with stairs and a white table."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "e30374c614f54fdb90f35b96b071349d"], "properties": ["boxing gloves, heart, hand", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["floor, wall, roof", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["size, color, shape", "color, background, white"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a white object on a gray background", "an image of a white background with a few small cubes on it"], "question": "which entity is whiter", "label": 0}, {"captions": ["yellow metal barricade ", "a white glass beer mug."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color, white, glass"], "captions_pred_pc": ["a white barrier on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["a, hole, rock", "a city, train, dragon"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["a, box, wall", "a, building, coin, ball"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a box with a coin next to it"], "question": "which object has a coin?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["throne, stairs, tree", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["orange, forklift, parking lot", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a cell phone", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white photograph of a forklift", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["building, skyscraper, city", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof truss, beams, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a white and yellow sword with a yellow handle.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["776a9df9cead4b70b3480ef9fecadaea", "67701617472e4051b95955c596561aac"], "properties": ["color, handle, blade", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["fireplace, bench, log", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small white house with a staircase and a window."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "9eb88d17310d42dda9e17883e9922525"], "properties": ["background, color, white", "house, staircase, window"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a small room with a staircase"], "question": "which entity has a window?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a character wearing glasses and a hat."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["s, plane, house", "hat, glasses, character"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["21639082215b4b179d574d2408124838", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, room, furniture", "house, tree, pool"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, window, statue", "cloak, sword, spear"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a small house with a road in front of it.", " a wooden shed with a gray roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, front, road", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a white castle composed of small cubes."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, texture", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a spiral staircase with a railing in a small building."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["house, lake, pool", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a staircase in a white room"], "question": "which entity is indoors?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white house with a roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, white, red, pink", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["lighthouse, fountain, crater", "house, fence, playground"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, bird, lake", "house, table, chair"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, sphere, molecule", "table, staircase, light"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, roof, tray", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, green, tiled", "roof, beams, chimney"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " of two rocks with ice elements."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, door, clock", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small white building with stairs and a white table."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, light", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, yellow, chimney", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "b896a0898efe4059a776193c02132129"], "properties": ["fireplace, stick, surround", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a stack of wooden blocks.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["841c01e8ff464b529ddd668e9345ab73", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, stack, blocks", "a, material, clay"], "captions_pred_pc": ["a 3d illustration of a molecule 3d illustration of a molecule on a white background 3d illustration of a molecule on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a stack of wooden blocks royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["paper, hole, mouse", "color, shape, color"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", " a house with a wooden-framed roof structure."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, image", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a 3d model of a building with a roof"], "question": "which is not made of wood", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "333b77483f1b40468dec28906887151a"], "properties": ["- material is wood, rusty, horned", "3D, material, white gold"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "of a black ring on a white background"], "captions_pred_image": ["3d model of a plague doctor's mask", "a white gold ring with an oval shaped diamond in the center"], "question": "which object is made of white gold", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["color, red, apples, tree, cactus, dots", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["building, balcony, street", "building, plane, city"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a city in black and white"], "question": "which building is in a city?", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", "a drawing of a bird, fish, and white-blue dragon with a tail."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "7136a3a6819e49e4b855f45fa1e2cded"], "properties": ["size, material, image", "animal, tail, white-blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a white and black bird flying in the sky stock illustration \u00a9 2019 iStock"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "an illustration of a bird with its wings outstretched on a gray background"], "question": "which entity is a drawing?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a large building with a roof and windows."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "32d1fbd3ee91426882290305f70021e6"], "properties": ["hat, sword, gun", "roof, windows, building"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a wooden shed with a gray roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, red, blue, green", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is gray", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " of a small white building with stairs and a lid."], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["resembles, sea urchin, shell", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a small 3d bowl with a bird and button detail.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c672264047cb423dbdc93d40ee539579", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a ceiling light", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a silver bowl on a piece of cloth", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a white castle composed of small cubes."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["background, color, white", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["shape is sphere, color is white, material is plastic", "mannequin head, plague mask, straps"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a plague doctor's mask on a mannequin head"], "question": "which object is made of leather", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a house with a green, wooden-structured roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["picture, plaque, person", "roof, color, green"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", "a white of a man with arms outstretched."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, material, texture", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a skull", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " of a white human skull with broken bone elements."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, room, table", "color, white, skull"], "captions_pred_pc": ["a black square on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small building with a roof.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, building, small", "roof, truss, lamp"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a house with a metal roof"], "question": "which building has a roof", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["background, color, white", "Steel, Color, Yellow"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a building"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a table with multiple tables and chairs"], "question": "which entity has a yellow color", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color is white, material is plastic, shape is box", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a white plastic tray", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, pier, stairway", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, shape, and material", "building, floorplan, gym"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, window, statue", "room, furniture, window"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["nut, bowl, ring", "a, material, clay"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "bf18bfd89efd43389781050230467d58"], "properties": ["color, white, material, ceramic", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a white chandelier with five white shades"], "question": "which object is made of glass?", "label": 1}, {"captions": [" of a wooden-handled dagger", " of a wine corkscrew"], "sample_ids": ["1e460892f8f14d9bba9eb5c9e0491ed2", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["handle, material, blade", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a screw with a screwdriver", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a wooden-framed roof structure."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["floor plan, bathroom, pool", "roof, material, wood"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white of a woman with her arms outstretched."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, black, white", "image, color, white"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a set of ladders."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "5152e8c6dd094e49b02b54ef1cd2fabc"], "properties": ["a, bird, hook", "a, set, ladders"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a white wall with a black square on it"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a shelving unit with multiple shelves"], "question": "which object is not a set?", "label": 0}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a damaged desert house with an open door and a cross, surrounded by sand and dirt."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "95e9d8f8ba3849feba93c2a7c7932a8c"], "properties": ["roof, purple, suspended", "house, door, cross"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white image of a map"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white drawing of a house"], "question": "which house has a door?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["apse, roof, floor plan", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["- material is white- color is white- texture is textured", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a bag with a zipper on it"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " of a small wooden house with a roof."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, roof, blue", "roof, house, wooden"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 0}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["hat, bag, blanket", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " of an egyptian sarcophagus."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["picture, plaque, person", "sarcophagus, material, wood"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "b896a0898efe4059a776193c02132129"], "properties": ["red, pile, garbage", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white illustration of a triangle", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, texture", "building, window, skeleton"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["glass, metal, balls", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a wine glass", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a wooden windmill with a red roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, structure, truss", "roof, color, red"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" a blue and green penguin.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["50e0e11060df4c0db6a44daf3f32639d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, blue, green", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a ball with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a penguin sitting down", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "an oval table with a mouse on top of it"], "question": "which entity has a table lamp?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, pen, logo", "house, pool, balcony"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, color, gray", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["background, color, white", "torso, breasts, pattern"], "captions_pred_pc": ["a black line on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small wooden house."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, yard, surrounding buildings", "house, material, wood"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small white house with a roof."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["shape, bathroom, refrigerator", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "bf18bfd89efd43389781050230467d58"], "properties": ["Drawer, Handle, Wood", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color is white, material is plastic, shape is tube", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white image of a metal object"], "captions_pred_image": ["a white object on a gray background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a large orange pumpkin."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["- material is white- color is white- texture is textured", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a small house with a roof.", " a small house on a hill in a field."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, house, small", "house, hill, field"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["lighthouse, fountain, crater", "houses, trees, road"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is plastic- color is white- shape is cylinder", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, material", "table, stairs, ladder"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a table with a stool on top"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["image is rock formation with a white cliff and a rock", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, red", "roof, material, wood"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of the roof of a building"], "question": "the roof of the windmill is made of wood", "label": 0}, {"captions": [" a small house with stairs and a balcony.", " a house with a roof and beams."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["balcony, stairs, house", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a green and black robot with cube-like features.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "09f2cf267e954c958828325067bcc36a"], "properties": ["3ds max, obj, fbx, c", "island, terrain, rocks"], "captions_pred_pc": ["a black and white insect on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["house, table, chair", "table, bench, deer"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a table and bench?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a stone wall with a window and a clock."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["screen, keyboard, box", "window, clock, wall"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": ["a pair of men's grey and tan leather lace-up sneakers with blue accents.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0070d09cecd94178b4217e244dd72efc", "a17477b445b3443189dad22f768b888b"], "properties": ["color, tan, grey, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a shoe on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a pair of gray shoes on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "7adf9de5fb734455a3a3a7f084e3d628"], "properties": ["chair, table, refrigerator", "cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a flying saucer"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a fighter plane flying upside down"], "question": "which entity has a toilet?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a futuristic white sports racing car."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, screen, drawer", "color, white, futuristic"], "captions_pred_pc": ["above a black and white image of a brush", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, blue, green, yellow, blue", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["background, color, white", "buildings, houses, grass"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a white and blue building with a black roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, air conditioner, house", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a blue roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, door, window", "roof, color, blue"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["mug is purple, cup is black, candle is black", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a staircase in a room"], "question": "which entity has a square ceiling light", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a machine gun with additional items."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["color, white, black, white", "gun, type, machine gun"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a submachine gun"], "question": "which object is a gun", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, purple, suspended", "roof, house, small"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, umbrella, coat", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "97e000ff41094665afd94ea565da8b13"], "properties": ["a box, a cup, a bottle, a jar", "roof, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a blue pickup truck", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color is blue, make is ford, model is f150", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of an egyptian sarcophagus."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["color, shape, material", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a green mountain with trees and grass."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["Drawer, Pattern, White", "mountain, grass, tree"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a purple chair with holes in it.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, purple, holes", "color, white, gold"], "captions_pred_pc": ["of a silver pendant with an intricate design", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["house, fence, playground", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, shape, material", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, truss, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["frame, beams, trusses", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["graffiti, bench, wall", "building, room, sky"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "ee440fcbc493488e879539d37a8d820e"], "properties": ["low poly, llama, kangaroo", "island, fish, ice"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d map of the country of israel"], "question": "which entity has a fish", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small, snow-covered house."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["boat, table, chairs, umbrella, solar panel", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a, building, staircase", "a room, a cake, a table"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 0}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "97e000ff41094665afd94ea565da8b13"], "properties": ["throne, stairs, tree", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, color, pink, blue", "roof, beams, frames"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a wooden structure"], "question": "which house has a roof that is yellow?", "label": 1}, {"captions": ["white korean word on a gray background.", " a wooden shed with a gray roof."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, background, font", "roof, color, gray"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["water, river, island", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["graffiti, bench, wall", "a, island, resembles, hawaii"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a spiral staircase with a railing in a small building."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["stair, table, chair", "staircase, railing, building"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, pattern, wall", "arrow, red, white"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a black castle with stairs and a door.", "star wars stormtrooper "], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["door, stairs, color", "a, color, white"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["wall, stairs, castle", "building, color, white"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a spider-like creature with long arms and legs."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["lamp, harp, bowl", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is plastic- shape is dice- color is white", "wood, board, shelf"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["plane, ship, bird", "house, tree, hill"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, white, pair", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "a black and white drawing of a cell phone"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a metal building with a purple roof and cage structure."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, stairs, house", "roof, purple, structure"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "for a black and white image of a bench"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": [" a small wooden log cabin.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, log", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a house with a wooden-framed roof structure."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["cover, black, plastic", "roof, material, wood"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white drawing of a staircase"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a building with a roof"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a house with a flat roof structure."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "abc52d210d71415296730bb00352ce6f"], "properties": ["house, fence, dog", "roof, flat, structure"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["desk, chair, table", "desk, chair, table"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a staircase in a room"], "question": "which entity has a desk", "label": 0}, {"captions": [" a small table with a staircase and a square ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "97e000ff41094665afd94ea565da8b13"], "properties": ["table, staircase, light", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a wooden shed with a gray roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white castle composed of small cubes."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, containers", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a spiral staircase with a railing in a small building."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a, bird, hook", "staircase, railing, building"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "c3a82df41875402285608ef13a55df57"], "properties": ["a, b, c", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a line of white cubes with various insects on them", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["a, ball, mushroom", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["tiers, building, stairs", "island, mountain, grass"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a wooden shed with a gray roof."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["frame, trusses, wood", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is the same color as the shed?", "label": 1}, {"captions": [" of a black shark", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "6b745457e06840119058883b35f78f58"], "properties": ["black, mouth, teeth", "roof, color, blue"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, material, texture", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "aef9b23a78a7450286a961cc13448d00"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["white butterfly wall lamp with a white shade and bead, .", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fd63194cf4f94d5e96bd2b85f542b936", "b896a0898efe4059a776193c02132129"], "properties": ["shade, white, bead", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a light bulb on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a wall lamp with a white shade and a butterfly design", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a green mountain with trees and grass."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["mossy, rock, grass", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["roof, green, tiled", "color, white, gold"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a wooden billiard table with legs."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["roof, truss, suspended ceiling", "legs, material, wood"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["castle, island, house", "house, rock, bird"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a white cross with a statue of jesus and a man on a pedestal.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["39b72b2ea03345c595c1d63a7b54987e", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, pedestal, statue", "a, outfit, green"], "captions_pred_pc": ["for a black and white photo of a cell phone on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of the crucifixion of jesus on the cross royalty-free 3d model", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Lights, number, five", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a black and white striped box."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["light switch, electrical outlet, furniture", "color, black, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, black, shade, black", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["chair, table, refrigerator", "image, city, spoon"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "12093c89a60941e7884b252bdc05104c"], "properties": ["graffiti, bench, wall", "giraffe, bench, flower"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, red, apples, tree, cactus, dots", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["backrest, curved, yes", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, texture", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "06a1c233fb444830b577aa06e2c01294"], "properties": ["bird, nest, wood", "house, tree, hill"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a robotic warrior with a sword."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["hat, sword, gun", "weapon, sword, robot"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "f1b557775310478893242180defa4d80"], "properties": ["hat, cup, bowl", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, pink, green, cord, white", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, white, black, white", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a concrete wall"], "question": "which object is made of concrete", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "703dce44052e48cfb024bceb08141554"], "properties": ["height, material, shelves", "roof, beams, frames"], "captions_pred_pc": ["a black ladder on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d model of a wooden structure"], "question": "which entity has more beams", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a green mountain with trees and grass."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["room, bed, desk", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "88eba412c78a4ced89eb857327653f6c"], "properties": ["house, roof, toothbrushes", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["Four legs, Metal, Shelf", "color, white, gold"], "captions_pred_pc": ["for a black and white illustration of a cross", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a roof and beams."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, table, ceiling", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "f1b557775310478893242180defa4d80"], "properties": ["color, white, handle", "shack, roof, door"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a large metal building with a roof and truss structure."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, roof, green, frame, red", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a long metal fence"], "question": "which building has a roof with a truss structure?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a two-story small apartment building with a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, stairs, house", "two-story, roof, building"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white box with a green light."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, white, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a small white box"], "question": "which object is white", "label": 0}, {"captions": [" of a black tray with three green rings on it.", " of a black tray with three green rings on it."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, black, rings", "color, black, rings"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d rendering of a tray with three rings on it"], "question": "which entity has a black tray with three green rings on it?", "label": 0}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof truss, insulation, suspended ceiling", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, material, frame", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house with a roof"], "question": "which building has a roof that is yellow", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a white glass beer mug."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, wheel, helmet", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small wooden house."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, structure, wall", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["floor, wall, roof", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, black, shade, black", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, blue, rim, blue", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "06a1c233fb444830b577aa06e2c01294"], "properties": ["graffiti, bench, wall", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white image of a house in the middle of a field"], "question": "which entity has a house", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, material, structure", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which structure is made of brick", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["roof, room, ceiling", "building, roof, balcony"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with a clock tower"], "question": "which building has a roof", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of two rocks with ice elements."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d image of two rocks on a gray surface"], "question": "which image is a close up of a rock?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, yellow, black", "image, city, spoon"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["- material is wood, metal, metal", "paint, rust, concrete"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a concrete wall"], "question": "which entity is made of rust", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["hat, food, bowl", "color, sphere, molecule"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a house with a green, wooden-structured roof."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["stacked, racks, toy train", "roof, color, green"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a house with a triangular roof"], "question": "which object has a roof that is green?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a green mountain with trees and grass."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["s, plane, house", "mountain, grass, tree"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "cafc467aff2643e8b70149c4944263ee"], "properties": ["base material, wood, shade color, white, beige", "wing, knife, boat"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a curved wing", "label": 1}, {"captions": [" a large metal bomb.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["00c6c9da8a3943e8b096c1a3134d1d8d", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, material, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a dome shaped object", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an industrial ventilation fan", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["- material is plastic- color is green- shape is box", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["s, stick, leaf", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "06a1c233fb444830b577aa06e2c01294"], "properties": ["floor, table, wall", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a black and white image of a house in the middle of a field"], "question": "which entity has a house", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, pink", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "c4e45a41478e42418399074b88d8920f"], "properties": ["a knife, blade, handle", "axe, handle, wood"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a large metal building with a roof and truss structure."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, red, pink", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a wooden staircase with a red and white railing and a red arrow.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["bb8bb4c9972d4b718b8bbd3ed5fdd14d", "5414d75e47104589837f3df8b6de6d22"], "properties": ["arrow, red, white", "beige, white, round"], "captions_pred_pc": ["above a black and white image of a square with a white cross in the center", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a spiral staircase", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of two rocks with ice elements."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["sandbox, sand bucket, wooden blocks", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a house with a flat roof structure."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "abc52d210d71415296730bb00352ce6f"], "properties": ["desk, chair, lamp", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a house with a roof structure and toothbrushes."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["A, a, a", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a pink, ear-shaped object."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["a, color, white", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a white object on a gray background"], "question": "which object is pink", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a wooden house with a roof and birdcage structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "3e4527c9c8e940b5806b8a69967a90b8"], "properties": ["roof, purple, suspended", "roof, structure, material"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of the letter 'f' on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which roof is made of a different material", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["image, building, stairs", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", "white hospital bed, medical cart, and bedside table with wheels."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "e3ef6fd54af440efa31984214dd6f11d"], "properties": ["railing, table, staircase", "bedside table, wheels, white"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white illustration of a stool on wheels"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d illustration of a white medical trolley on wheels"], "question": "which table is on wheels", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, green, handle", "shape is cube, color is black, white"], "captions_pred_pc": ["of a small black object on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a black and white 3d model of a building"], "question": "which object is a cube?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["building, color, white", "color, green, squirt gun"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is not a building?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, table, blocks", "building, room, sky"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["water, river, island", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a table with a staircase"], "question": "which entity is indoors?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "887e410d07854396b563325ae1929583"], "properties": ["chair, table, refrigerator", "hat, mouse, bear"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a large rock or stone.", " of two rocks with ice elements."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["boulder size, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d image of two rocks on a gray surface"], "question": "which is a rock", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["yellow, table, roof", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, color, green", "a, building, roof"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- color is red, blue, pink", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, tail, cord", "house, table, chair"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d rendering of a small white table with a chair"], "question": "which object has a table and chair?", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, pattern", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white image of a shark"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, black, white", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a black and white image of a suitcase on wheels"], "question": "which entity has more wheels", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a white of a house with a hole in the ceiling."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, hill, forest", "image, house, ceiling"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white drawing of a house"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " of two rocks with ice elements."], "sample_ids": ["21639082215b4b179d574d2408124838", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, room, furniture", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", "star wars stormtrooper "], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, text", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large steel building with a pool."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, structure, house", "building material, pool, steel"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a small white building with stairs and a lid."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, table, ceiling", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden roof structure with a pink roof."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, light, jewels", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["5c04dac989a64d228283687588484b93", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["furniture, staircase, torn-apart", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small white building with stairs and a white table."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, white, furniture, black", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["runner, bed, bench", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["face, handle, spout", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a white glass beer mug."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, b, c", "color, white, glass"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house with wooden framing and trusses."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["boat, table, chairs, umbrella, solar panel", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " of two rocks with ice elements."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house with a flat roof structure."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "abc52d210d71415296730bb00352ce6f"], "properties": ["chair, table, refrigerator", "roof, flat, structure"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a white castle composed of small cubes.", "star wars stormtrooper "], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["composed of, white, cubes", "a, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a star wars stormtrooper"], "question": "which is not a white color", "label": 0}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, material", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a machine gun.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["gun, barrel, caliber", "bedroom, bathroom, bed"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["- material is plastic- color is green- shape is box", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a small white building with stairs and a lid."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, screen, drawer", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", " a potted christmas pine tree."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["color, material, structure", "floor, ceiling, poles"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building with multiple levels"], "question": "which building has a wooden floor", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a wooden roof structure with a pink roof."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["background, color, white", "island, terrain, water"], "captions_pred_pc": ["a black line on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, roof, tray", "color, green, squirt gun"], "captions_pred_pc": ["a black and white image of a metal object", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is green?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d white cube with windows resembling a building."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, shape, and size", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, blue, structure", "building, room, sky"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a large steel building with a pool."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, tree, pool", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["holder, spring, box", "door, lock, handle"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", " a white sofa, chair, and box."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "4c59733ebd634594a921b7ace60e4142"], "properties": ["polygonal, helmet, triangular details", "sofa, chair, box"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a 3d model of a white chair"], "question": "which object is not a polygonal owl", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "a pixelated-textured purple sphere ."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "fb68393941804e769d5c9b372864a642"], "properties": ["color, background, arrows", "texture, color, shape"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white square made of dots on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a gray sphere on a white background"], "question": "which entity has a pixelated texture", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "20a02705a66f460492e07345e84a62ed"], "properties": ["house, staircase, window", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object has a lid", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["floor plan, ceiling light, color", "mountainous, landmass, state"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small, snow-covered house."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["image is rock formation with a white cliff and a rock", "house, snow, cover"], "captions_pred_pc": ["above a black and white map of spain on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a piece of broken glass on a white background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["castle, island, house", "a city, train, dragon"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a small house on an island", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a small house with a tree in front, situated on a hill.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3bde44b5f10946398f1bb9843dc14caa", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, tree, hill", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photo of a cell phone in a puddle of water", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a white 3d dragon-bat hybrid with wings."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "8cb88b6f02c549ee812e092a2e948e1c"], "properties": ["- color is red, blue, pink", "wing, color, white"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a bird in flight"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a white 3d model of a bat flying in the air"], "question": "which entity has wings", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, color, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "46903bf029934b1989bc062dcb0a5531"], "properties": ["background, color, white", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a cat's head", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a white chest of drawers with legs."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["earbuds, light, ring", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, color, purple", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with roof trusses"], "question": "which roof is made of trusses", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- color is white- shape is cube- material is plastic", "glass, metal, balls"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a white cube", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " of a small white building with stairs and a lid."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, bird, green, yellow, blue", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a bird in flight", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, staircase, window", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, white, yellow, roof, metal", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a stone wall featuring carvings and statues."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, sphere, molecule", "carving, statue, wall"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a 3d white cube with windows resembling a building."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "4a07a5293f024bb0a353954a056ef626"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "d5722274fb094222aca90bb59f4dff09"], "properties": ["roof, green, lawn", "chest of drawers, cabinet, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a white cabinet with a drawer"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a large rock or stone.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "1da865c75a5e4a57a17652975dae5474"], "properties": ["boulder size, color, shape", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a metal structure", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a table with a staircase"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["water, river, island", "hat, color, tan"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of an object with a hole in it"], "question": "which object is not a small island with trees", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, purple, structure", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["for a black and white image of a bench", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building with a roof"], "question": "which building has a glass roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, grass, moss", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": [" of a human bone", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "832a022cdcc74763b0571e04af4e592b"], "properties": ["a, b, c", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a lego model of a futuristic airplane"], "question": "which entity is not a spaceship?", "label": 0}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a white and blue building with a black roof."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, brown, flat", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, pink, green", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have rusted metal", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "a17477b445b3443189dad22f768b888b"], "properties": ["leaf, color, shape", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a roof truss?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a blue roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, table, ceiling", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a white round table with a red accent."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "fea62a865b4e40899d95785533818329"], "properties": ["black, white, laptop", "color, white, red"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white photograph of a person hanging from the ceiling"], "captions_pred_image": ["a dishwasher with a dish inside it", "an empty white plate on a gray background"], "question": "which table has a red accent", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a house with a wooden-framed roof structure."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["s, chimpanzee, human, wolf", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["s, stick, leaf", "a city, train, dragon"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a toy car"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a small house with a blue roof.", " a small building with windows and a roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, color, blue", "roof, windows, building"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "aef9b23a78a7450286a961cc13448d00"], "properties": ["- material is white- color is white- texture is textured", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, material, steel", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "97e000ff41094665afd94ea565da8b13"], "properties": ["table lamp, ceiling light, table", "roof, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " a white sofa, chair, and box."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "4c59733ebd634594a921b7ace60e4142"], "properties": ["floor, stairs, bathroom", "sofa, chair, box"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a small table", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a wooden shed with a gray roof."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, fence, dog", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a person breaking through a brick wall."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["building, roof, white, cubes", "image, brick, wall"], "captions_pred_pc": ["above a black and white image of a map", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, material, shape", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small wooden house with a green roof."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["hat, bag, blanket", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["red, eyes, rocket", "Eye color, Black, Purple"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black and purple?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, building, people", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["hat, bag, blanket", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": [" of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture.", " of a red spider on a rock and a robot on a round ceiling with a ceiling light fixture."], "sample_ids": ["fee48e4d25934ebb85ef6888d517d398", "fee48e4d25934ebb85ef6888d517d398"], "properties": ["red, rock, ceiling", "red, rock, ceiling"], "captions_pred_pc": ["a black and white image of a circular object with dots on it", "a black and white image of a circular object with dots on it"], "captions_pred_image": ["a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2", "a 3d model of a robotic spider on a rocky surface royalty free 3d model preview no.2"], "question": "which entity has a rock on a ceiling?", "label": 0}, {"captions": [" a small building with a staircase in a room.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["room, staircase, building", "room, staircase, bus"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus in it?", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["Wheels, laptop, robot", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof truss, beams, structure", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["room, bed, desk", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a, bird, lake", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of an outdoor fireplace"], "question": "which entity is a man?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a white rectangular shelf or light fixture on a gray background."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "a84221f27ed0416280f8e67563f95ed7"], "properties": ["color, background, white", "background, color, white"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black line on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a long white plastic strip on a gray background"], "question": "which object is white", "label": 0}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "a17477b445b3443189dad22f768b888b"], "properties": ["Headstock, Guitar, Head", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, purple, suspended", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "97e000ff41094665afd94ea565da8b13"], "properties": ["furniture, staircase, torn-apart", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, pink", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["above a black and white image of a metal grate", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a black and white striped box."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["holder, spring, box", "color, black, white"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d image of a black and white striped surface"], "question": "which box is black and white?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["Arms, Legs, Color", "floor, staircase, balcony"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["lighthouse, fountain, crater", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a potted plant on a wooden table or shelf."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["table, stairs, ladder", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a black and white image of a plant in a pot"], "question": "which table is on a shelf?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a large white and metal building with a metal roof structure."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- material is white- color is white- texture is textured", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "be1376023c274bdda995d54f3694157f"], "properties": ["color, hat, glasses", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, purple, structure", "roof, structure, suspended"], "captions_pred_pc": ["for a black and white image of a bench", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, text", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small wooden house."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["houses, trees, road", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "bf18bfd89efd43389781050230467d58"], "properties": ["graffiti, bench, wall", "Lights, number, five"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is wood, rusty, horned", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["a train, a ship, a boat", "a train, a ship, a boat"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a submarine"], "question": "which entity has a train", "label": 0}, {"captions": ["a white 3d mannequin human head.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, white, mannequin", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, structure, greenhouse", "structure, roof, pitch"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, plane, town", "building, plane, room"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a black gun.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, black, gun", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black leather bracelet on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["staircase, railing, building", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photograph of a light switch", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a pair of men's grey and tan leather lace-up sneakers with blue accents.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["0070d09cecd94178b4217e244dd72efc", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, tan, grey, blue", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a shoe on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a pair of gray shoes on a white background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is not a ring?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of two rocks with ice elements."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, b, c", "image is a rock with ice elements"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, house, small", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a sword and knife."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "8b567403ba614523a298f1c5b2009f92"], "properties": ["hat, sword, gun", "a, sword, knife"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black silhouette of a knife on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a samurai sword royalty free 3d model preview no 2"], "question": "which entity has a sword and a knife?", "label": 1}, {"captions": [" a small wooden house.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, material, wood", "house, pool, balcony"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small cottage", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "5850d5c7223447db816081d50292fec0"], "properties": ["color, pier, stairway", "structure, material, pool"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, material, size", "building, window, skeleton"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, shape, and size", "earbuds, light, ring"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has more light", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, background, white", "arrow, red, white"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a spiral staircase"], "question": "which entity has a white arrow?", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["color, table, sphere", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a black and white image of a bench and table with a deer's head on the table"], "question": "which table has a deer head on it?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a white and blue building with a black roof."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, holes", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["rusty, hat, dartboard", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a house with a blue roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, blue", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a clay pot with holes in it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, material, ceramic", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a black and gold pistol.", " a small white box with a green light."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, black, gold", "color, white, light"], "captions_pred_pc": ["a black and white image of a toothbrush", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["room, door, shelf", "house, roof, wooden"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["base material is wood, color is red, message is welcome to northwich", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, skyline, buildings", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " of a white human skull with broken bone elements."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, material, shape", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, furniture, black", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["- color is red, blue, pink", "a train, a ship, a boat"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, bowl, cup", "table, staircase, light"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with a roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["balcony, stairs, house", "roof, house, small"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["frame, chalkboard, color", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white image of a television on a wall", "for a black and white image of an object on a white background"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small wooden house with a green roof."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, building, people", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a tree with green leaves."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "1a902b67735845198efb1b84f434b580"], "properties": ["building, tree, plane", "leaf, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "for a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a tree with a lot of foliage"], "question": "which entity has green leaves", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["fireplace, bench, log", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "c3a82df41875402285608ef13a55df57"], "properties": ["water, river, island", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small house with stairs and a roof."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["hat, bag, blanket", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small, snow-covered house."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, tree, rock", "house, snow, cover"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house with a wooden-framed roof structure."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["ceiling, beams, light", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a building with a roof"], "question": "which entity has a wooden-framed roof structure", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a wooden-framed house with roof trusses."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "e60dd370c5ec468da4689a801f951157"], "properties": ["roof, color, purple", "frame, roof, trusses"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house under construction"], "question": "which house has a roof that is made of wood?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e44009d33258425e8efedfbc6823bf70"], "properties": ["color, light, jewels", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["color, shape, material", "spiked, baseball bat, hammer"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "for a black star on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a baseball bat"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a two-story small apartment building with a roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, white, black, white", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a large metal bomb.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["00c6c9da8a3943e8b096c1a3134d1d8d", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, material, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a dome shaped object", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of an industrial ventilation fan", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["turrets, flags, towers", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a small house with a blue roof.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "67701617472e4051b95955c596561aac"], "properties": ["roof, color, blue", "color, white, 3d-printed"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["house, roof, wooden", "roof, ceiling, hole"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a square ceiling with a hole", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, and size", "roof, color, yellow"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a yellow window frame.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["b6777659013d4386987c5e26d7dc3f84", "67701617472e4051b95955c596561aac"], "properties": ["color, yellow, frame", "color, white, 3d-printed"], "captions_pred_pc": ["above a black and white image of a wall mounted shelf", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a white shelving unit", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["a knife, blade, handle", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a piece of white plastic on a gray background", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["roof truss, insulation, suspended ceiling", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a rock formation on a gray background"], "question": "which image is of a rock formation?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a hammer with a long metal handle."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, shape, material", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["floor plan, bathroom, pool", "mountainous, landmass, state"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a wooden shed with a gray roof."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["desk, chair, lamp", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small wooden house."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["a, island, water", "house, material, wood"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["house, color, white", "building, material, stone"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " of a white human skull with broken bone elements."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, pink, eyes", "color, white, skull"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a human skull in white"], "question": "which entity is not a skull?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "46903bf029934b1989bc062dcb0a5531"], "properties": ["base, speaker, light", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white illustration of a clock", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small wooden house with a green roof."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["Steel, Color, Yellow", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a house with wooden framing and trusses."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["low poly, llama, kangaroo", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a window"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["white space shuttle model.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color is white, model is space shuttle, size is small", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["frame, roof, trusses", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, red, blue, structure", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["chocolate, mushroom, cake", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of the roof of a building"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, tree, rock", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small red fighter jet.", "a green and red toy gun with a scope and yellow accents."], "sample_ids": ["f1508f285bbd42a9a6526149aa818d80", "4b7263b58a6647c3a03226b39c42108a"], "properties": ["color, fighter, jet", "color, red, green, yellow"], "captions_pred_pc": ["above a fighter jet is shown on a white background", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d model of a futuristic fighter jet on a gray background", "a 3d model of an assault rifle on a gray background"], "question": "which object is a toy?", "label": 1}, {"captions": [" of a numbered rock.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["number, color, shape", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "4806b382466247ad9265fc8240a22d3d"], "properties": ["hat, sword, gun", "rocky, rug, puddle"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity is not a rocky island?", "label": 1}, {"captions": ["white 3d origami bird model", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, origami", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white umbrella on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, wall, color", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "a17477b445b3443189dad22f768b888b"], "properties": ["light, toilet, faucet", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a hammer with a long metal handle."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["s, stick, leaf", "handle, metal, long"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white toothbrush on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small white building with stairs and a white table."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, light, jewels", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "a24872444e5c468a9264d503a9ca7276"], "properties": ["rusty, hat, dartboard", "rusty, hat, dartboard"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is a toy?", "label": 0}, {"captions": ["a wooden-handled axe .", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["handle material is wood, head material is metal, overall length is long", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, roof, balcony", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "d6087023095446fbadef1721478373b2"], "properties": ["color, door, window", "door, roof, window"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of an apartment building"], "question": "which building has a green door", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small wooden house with a green roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["room, door, shelf", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "be1376023c274bdda995d54f3694157f"], "properties": ["color, white, blue, roof, black", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which building has a chimney?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["A, a, a", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green and black robot with cube-like features.", " a small blue robot with a windmill."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, shape, material", "color, blue, robot"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, candy, strawberry", "hat, watch, clock"], "captions_pred_pc": ["a black and white illustration of two spheres", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["size, material, color", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large house with a roof on a platform."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "cb3e09a301b746918a682a595037c7f7"], "properties": ["apse, roof, floor plan", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white box with a black base", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a lamp, a syringe, a light pole", "Wheels, laptop, robot"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a white of a cat with a long tail.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["d7bfdc30f37c438f9b9ab40769d6f7da", "4a889132cc444d10bfcbf6c760984416"], "properties": ["tail, white, cat", "a, color, white"], "captions_pred_pc": ["above a black and white image of an animal toy", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white 3d model of a cartoon cat", "a 3d model of a desk and chair"], "question": "which entity is not a cat?", "label": 0}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, pink, blue", "house, pool, balcony"], "captions_pred_pc": ["a black and white square with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a black shark", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["black, mouth, teeth", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, hat, glasses", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a wooden shed with a gray roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["chair, table, refrigerator", "roof, color, gray"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small white building with stairs and a white table."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, material", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a wooden roof structure with a pink roof."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["wall, stairs, castle", "roof, color, pink"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "4389909667db472ea9a57a70eb940fa4"], "properties": ["- material is plastic- shape is dice- color is white", "building, window, skeleton"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small blue and red blimp.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small red renault clio car.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color is red, make is renault, model is clio", "a, color, red"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a castle with two towers"], "question": "which is not a car", "label": 0}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "f1b557775310478893242180defa4d80"], "properties": ["turrets, flags, towers", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["floor, table, wall", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a clay pot with holes in it."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, tan, brown, orange", "hole, material, clay"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["Drawer, Pattern, White", "door, lock, handle"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a door with a crack in it"], "question": "which object has a lock", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "a2354f13774340d392fbf33564934aab"], "properties": ["color, door, window", "building, roof, yellow"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, material", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of an empty room"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, truss, suspended ceiling", "mountainous, landmass, state"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small triangular-shaped object."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "2d02985030804209a26c2c53b96a06f9"], "properties": ["roof, structure, wall", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a building with a roof", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "e098706085a44898abbd549693d12a64"], "properties": ["color, background, white", "color is black, white, orange"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is white", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a brick building with a roof structure and roof truss."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "84e8acad28664a738df69d719df9e263"], "properties": ["color, material, frame", "roof, structure, truss"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": [" of a white cross with a statue of jesus and a man on a pedestal.", " of a white cross with a statue of jesus and a man on a pedestal."], "sample_ids": ["39b72b2ea03345c595c1d63a7b54987e", "39b72b2ea03345c595c1d63a7b54987e"], "properties": ["a, pedestal, statue", "a, pedestal, statue"], "captions_pred_pc": ["for a black and white photo of a cell phone on a white background", "for a black and white photo of a cell phone on a white background"], "captions_pred_image": ["a 3d model of the crucifixion of jesus on the cross royalty-free 3d model", "a 3d model of the crucifixion of jesus on the cross royalty-free 3d model"], "question": "which entity has a pedestal?", "label": 0}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a black and white of a knife/sword with a handle."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, material", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a patterned rug", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, color, blue", "roof, truss, lamp"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house with a metal roof"], "question": "which roof is pink", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, roof, green, frame, red", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["earbud, earpiece, earpiece", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white square with dots on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "c8936ace72954650b4e2d84246964849"], "properties": ["a lamp, a syringe, a light pole", "roof, color, pink"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a gray, metal pillar/cylinder."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["roof, beams, chimney", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a man holding various objects on top of a truck.", " of two rocks with ice elements."], "sample_ids": ["db283f7e62074326b7d25634fc53106c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, truck, hold", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a spoon and a screw", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a person riding on top of a truck with an umbrella in their hand", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a large rock or stone.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "67701617472e4051b95955c596561aac"], "properties": ["boulder size, color, shape", "color, white, 3d-printed"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a pair of white plastic shoes on a gray background"], "question": "which entity is not a boulder?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a, character, mario"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a game?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["building, balcony, street", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of an old building", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, texture", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " of a white round table with a red accent."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "fea62a865b4e40899d95785533818329"], "properties": ["color, material, structure", "color, white, red"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white photograph of a person hanging from the ceiling"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "an empty white plate on a gray background"], "question": "which entity is a table?", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color is purple, material is plastic, number of legs is four", "turrets, flags, towers"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which object is made of wood", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, bowl, cup", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a bench on a wooden floor"], "question": "which object has a wooden floor", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, purple", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a human skull.", " a house with a wooden-framed roof structure."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a white of a man with arms outstretched."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, black, white", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a white origami bird with silver wings."], "sample_ids": ["97f487941d26472294e005fa97c403be", "d9574287572c47f7a2b712cf1d919374"], "properties": ["color, white, green", "color, white, wings"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a 3d model of the human body"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, plastic", "mountainous, landmass, state"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, table, ceiling", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a house with a roof and beams."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, gold", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a red roof.", " a white building with a red roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, red, house", "color, white, roof, red"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["graffiti, chinese writing, door", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["adec10493e06436c967d5797f7085225", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of an object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, rock, bird", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 0}, {"captions": [" a slice of rainbow cake with multicolored sprinkles on it.", "a low-poly of a white, shattered sphere."], "sample_ids": ["fc515651480c43b7a0712215939cc510", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, rainbow, sprinkles", "sphere, color, texture"], "captions_pred_pc": ["a silhouette of the state of oregon on a white background silhouette of the state of oregon on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a black and white photograph of a slice of cake", "a 3d model of a cracked egg"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "1c389c8f46b345838e515b9747c1f982"], "properties": ["furniture, staircase, torn-apart", "plate, fruit, knife"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a person riding a skateboard on a wooden surface"], "question": "which entity has a plate with fruit and bread?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, roof, tray", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white house with a roof."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, door, cross", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "5414d75e47104589837f3df8b6de6d22"], "properties": ["variation, bread, pot", "beige, white, round"], "captions_pred_pc": ["above a black and white drawing of an object", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with a roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["color, white, yellow, roof, metal", "roof, house, small"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white building.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, building", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a bottle", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, door, cross", "house, roof, blue"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, size", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white box with a black base", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a green mountain with trees and grass."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, dress, flower", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["island, terrain, rocks", "a, material, clay"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["building, stairs, shelves", "building, door, clock"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white image of a church with a steeple"], "question": "which building has a door?", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "06a1c233fb444830b577aa06e2c01294"], "properties": ["tv, chair, laptop", "house, tree, hill"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" of a white bunny head", " a white origami bird with silver wings."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "d9574287572c47f7a2b712cf1d919374"], "properties": ["color, white, head", "color, white, wings"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a 3d model of the human body"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity has white wings", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof truss, chimney, suspended ceiling", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 0}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["3D, toothpick, skateboard", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["white dragon with wings, .", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["wings, white, dragon", "roof, color, yellow"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small house with a tree and a rock."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["location, field, gravestone", "house, tree, rock"], "captions_pred_pc": ["a black and white illustration of a whale", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a small house with a tree in front of it"], "question": "which location has a tree and a rock?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, bird, lake", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, screen, drawer", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, plate, yellow", "cloak, sword, spear"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" a white origami bird with silver wings.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d9574287572c47f7a2b712cf1d919374", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, wings", "a, material, clay"], "captions_pred_pc": ["a 3d model of the human body", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a futuristic bird in flight on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, pattern", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a white wooden climbing frame with swing set and ladders."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "f2935306c64a479685462220e33e6f3c"], "properties": ["a box, a cup, a bottle, a jar", "- material is wood - color is white - height is 1.8 m"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "an illustration of a barbed wire fence"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a playground ladder set royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a mountainous landmass, resembling a small island or state like kentucky or wyoming.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8ca9b999b69c4965bd9eb4445d605bf2", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["mountainous, landmass, state", "island, terrain, water"], "captions_pred_pc": ["a black and white map of the state of new york", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a piece of paper", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d white horse sculpture on a square base.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9434e687ddb440e3bad790dff7a9d9d4", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["base, color, shape", "a, color, red"], "captions_pred_pc": ["of a deer figurine on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d printed sculpture of a person standing on a pedestal", "a 3d model of a castle with two towers"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["desk, chair, table", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, hill, deer", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a green circuit board."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, white, black, white", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of the item in the image"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an electronic component"], "question": "which object is green?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["house, tree, pool", "black, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["rusty, hat, dartboard", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, material", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " of a person breaking through a brick wall."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["Lights, number, five", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "b494049bb15440949e465d54a72b2f02"], "properties": ["- material is plastic- color is white- shape is cylinder", "building, floorplan, gym"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " of a deer and a crystal tree on an island, with a rock and bird nearby."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "2ce5ec0844114576a247b1de2011e0c7"], "properties": ["color, white, logo", "image is a deer and a crystal tree on an island, with a rock and bird nearby"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white illustration of a flying saucer"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a deer standing on an icy island"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, bird, hook", "Wheels, laptop, robot"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "f1b557775310478893242180defa4d80"], "properties": ["color, green, orange, star", "shack, roof, door"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a small white house with a roof."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, pattern, field", "roof, color, white"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, hand, flowers", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a hand", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["water, river, island", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "f1b557775310478893242180defa4d80"], "properties": ["metal, roof, chest", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "e44009d33258425e8efedfbc6823bf70"], "properties": ["color, shape, text", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a white cube"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, bag, blanket", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a large steel building with many columns and a pool."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, color, green", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["royalty-free of a golden gramophone with a wooden base and umbrella.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["90bd720f583c4130a6273f5a94f6ae69", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["image is royalty-free, gramophone, base", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a water droplet in the shape of a snowflake", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an antique gramophone", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a wooden roof structure with a pink roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["resembles, toy, bookshelf", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color, yellow, blue", "rusty, hat, dartboard"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which toy is not rusty?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "205251e4277e41d1aae6b2358267ad56"], "properties": ["background, color, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["55b26130f1514032be078e13fd982905", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d printed figurine of an alien creature"], "question": "which entity is a white color", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["color, material, structure", "building, fence, snowy"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["room, bed, desk", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["shape is hot dog, design is dragon, color is black", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a house with a roof"], "question": "which object is a building?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, desk, laptop", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, light, jewels", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large building with a roof and windows."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, purple, suspended", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, size", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of the letter u", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a white building with a red roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, roof, green", "color, white, roof, red"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["A, a, a", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small white house with a roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["floor plan, bathroom, pool", "roof, color, white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a white roof"], "question": "which house has a white roof?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["earbud, earpiece, earpiece", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a stone wall with a window and a clock."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["s of, snowboard, shoes, mask", "window, clock, wall"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white image of a shark"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a person breaking through a brick wall."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["floor, wall, roof", "image, brick, wall"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of brick?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["island, terrain, rocks", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", " a spider-like creature with long arms and legs."], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["cloak, sword, spear", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["cup, bottle, chessboard", "flower, color, pink"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "bf18bfd89efd43389781050230467d58"], "properties": ["color, material, shape", "Lights, number, five"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small white building with stairs and a white table."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, text", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "f1b557775310478893242180defa4d80"], "properties": ["building, ceiling, kitchen", "shack, roof, door"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a black billboard with a blank screen on a metal stand.", " of two rocks with ice elements."], "sample_ids": ["0c809d7bc6ff40b39d1d81bbb5f1b25e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["black, screen, blank", "image is a rock with ice elements"], "captions_pred_pc": ["of a 3d illustration of a smartphone with a charging cable", "a black and white image of two rocks on a white background"], "captions_pred_image": ["3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["s, plane, house", "door, lock, handle"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["background, color, white", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white image of a cat's head", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a cute panda bear"], "question": "which bear is wearing a diaper", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a large steel building with a pool."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, trusses, ladder", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "096e42b466ec438d95c5d89a85191534"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "white, rock, shell"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small building with a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, building, small", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a small house", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is purple, material is plastic, number of legs is four", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "40921ffd69db479294554d261daf3035"], "properties": ["door, panel, staircase", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, tan, brown, orange", "house, tree, pool"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a white rocking chair with a curved backrest."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["top, color, wood", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, white, red, pink", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", "a wooden-cased radio."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["cover, torn, open", "case, material, wood"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a black and white image of a torn bank note", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object has a case made of wood", "label": 1}, {"captions": ["a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["034c093c73fd48758422feee0b10c5d8", "b896a0898efe4059a776193c02132129"], "properties": ["a, backpack, stick", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a bird in flight", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a pencil drawing of a person holding a sword", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a large white and metal building with a metal roof structure."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, yellow, white, wheels", "roof, metal, white"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a white castle composed of small cubes."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["windmills, silhouette, city model", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a castle made of white cubes"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "4e82177059204292899fa7415164a05e"], "properties": ["broom, shovel, fireplace", "yellow, tires, load"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["red, sphere, resembles", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["building, material, steel", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow steel", "label": 1}, {"captions": [" a large orange keg with a white lid.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, lid, orange", "a, color, white"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a 3d model of a desk and chair"], "question": "which object has a white lid", "label": 0}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a person jumping on a trampoline."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["color, shape, text", "person, jumping, trampoline"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white diamond belt"], "captions_pred_image": ["a white paper airplane flying over a gray background", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which entity is a person jumping on a trampoline?", "label": 1}, {"captions": [" a house with a yellow roof, wooden beams, and yellow frames.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["703dce44052e48cfb024bceb08141554", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, beams, frames", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a boat", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a wooden structure", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, color, yellow", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d rendering of a small house with a covered porch"], "question": "which roof is not yellow", "label": 1}, {"captions": ["white korean word on a gray background.", " a futuristic white sports racing car."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, background, font", "color, white, futuristic"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a metal structure", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["building, roof, yellow", "roof, purple, beams"], "captions_pred_pc": ["a black and white image of a cell phone", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of the roof structure royalty free 3d model no."], "question": "which building has a purple roof", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["size, material, color", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a small square with black dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "c3a82df41875402285608ef13a55df57"], "properties": ["collection, color, black, handle, wooden", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, structure, truss", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a black shark", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["black, mouth, teeth", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d rendering of a white box on a wooden floor"], "question": "which object has a white box?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small house with a tree and a rock."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["hat, bag, blanket", "house, tree, rock"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small white building with stairs and a white table."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "e30374c614f54fdb90f35b96b071349d"], "properties": ["metal, laptop, light fixture", "building, stairs, table"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["collection, color, black, handle, wooden", "house, tree, pool"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a wooden barrel", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3431ad88681b43df88d6aab9c43533b3", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a wooden barrel royalty free 3d model preview no 2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, material", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["a, desk, laptop", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a box, a cup, a bottle, a jar", "wood, board, shelf"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "bea8441c08d94366b96b53775391d8e6"], "properties": ["Arms, Legs, Color", "color, white, logo"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a white t-shirt with a supreme logo"], "question": "which object has a logo", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["6b745457e06840119058883b35f78f58", "bea8441c08d94366b96b53775391d8e6"], "properties": ["roof, color, blue", "color, white, logo"], "captions_pred_pc": ["a black and white image of a building with dots", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity has a logo", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["image, building, stairs", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "6b745457e06840119058883b35f78f58"], "properties": ["house, staircase, window", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "b896a0898efe4059a776193c02132129"], "properties": ["color, leg, tail", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, material, pattern", "color, frame, shape"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small white house with a roof."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, truss, suspended ceiling", "roof, color, white"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house with a wooden-framed roof structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, roof, white, cubes", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small black box on a purple square.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["75f209e543c046669099190953616acc", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["cup, bottle, chessboard", "color, yellow, black"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["Steel, Color, Yellow", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": [" of a black table, road with white lines, and rectangular ceiling panel.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["bdc9b72d13604f5a8c7bd6ace2ca3177", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["black, road, panel", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of an empty road", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a gray background featuring a white arrow, black arrow, and white and black lines in the middle.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b96714473acd40f888d4d005c48b10dc", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, arrow, background", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a person holding a toothbrush in the shape of a toothbrush on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["lamp, harp, bowl", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a curved line", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a person's head wearing a hat.", " a person's head wearing a hat."], "sample_ids": ["4ad7ba52fa6f42ef89b52766daf1e2b9", "4ad7ba52fa6f42ef89b52766daf1e2b9"], "properties": ["head, hat, person", "head, hat, person"], "captions_pred_pc": ["above a black and white illustration of a half moon", "above a black and white illustration of a half moon"], "captions_pred_image": ["a 3d model of a person's head with a hat on it", "a 3d model of a person's head with a hat on it"], "question": "which entity is a person's head wearing a hat?", "label": 0}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, balcony, street", "throne, chair, building"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "9968e06a62e8487ea33460e640abc573"], "properties": ["floor plan, heating system, ceiling light fixture", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a white object on a gray background"], "question": "which object is not a house?", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "333b77483f1b40468dec28906887151a"], "properties": ["color, silver, white", "3D, material, white gold"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "of a black ring on a white background"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a white gold ring with an oval shaped diamond in the center"], "question": "which ring is made of white gold", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["Cabinet, Drawers, Filing", "house, roof, wooden"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a black and white photograph of a birdhouse"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "be1376023c274bdda995d54f3694157f"], "properties": ["color is white, yellow, plastic", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a house with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a large building with a roof and windows."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, shape, size", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of the letter u", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a futuristic white sports racing car."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["frame, truss, roof", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a white building with a red roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["bedroom, bathroom, bed", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, light, jewels", "color, black, visor"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black motorcycle helmet with a visor on top"], "question": "which entity is a motorcycle helmet?", "label": 1}, {"captions": [" a small black and white cube.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a city skyline", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, gold", "beige, white, round"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white and beige?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["floor plan, ceiling light, color", "building, color, black and white"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["buildings, houses, grass", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d6087023095446fbadef1721478373b2", "c3a82df41875402285608ef13a55df57"], "properties": ["door, roof, window", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an apartment building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a red roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["085db9059b744673b5623b5338e02196", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, red, house", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a flying saucer", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "3d silver sculpture resembling a triangular wing with a white arrow design."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "578cb910905042939d876af28e29eb2f"], "properties": ["- color is white- shape is cubes- number is 1", "wing, silver, white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a pair of hands"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a white paper airplane flying against a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a simpsons character in costume, holding a skateboard.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6eda1456d69c44c9863908f0cd438629", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["costume, character, skateboard", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a person holding a skateboard", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a person wearing a hat and holding an umbrella royalty-free 3d model preview", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a large house with a roof on a platform."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "cb3e09a301b746918a682a595037c7f7"], "properties": ["door, roof, pool", "roof, platform, house"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, material, frame", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small building with windows and a roof."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["screen, keyboard, box", "roof, windows, building"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["boat, table, chairs, umbrella, solar panel", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a yellow circle with a black outline.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "c3a82df41875402285608ef13a55df57"], "properties": ["color, outline, circle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, hat, glasses", "cloak, sword, spear"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["color, roof, tray", "a, desk, laptop"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["chest of drawers, cabinet, white", "house, pool, balcony"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, temperature, england", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["house, lake, pool", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "star wars stormtrooper "], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, gun", "a, color, white"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, white, red, pink", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": ["3d object featuring a blue and white tile, mattress, book with a sign, and a hanging notice sign, all representing god's family faith in action.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4b1d361630b949889282755fb6fb46bc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Object, color, white", "a, material, clay"], "captions_pred_pc": ["a black and white image of a line of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["god's family faith in action", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, booth, bed", "s, laptop, printer"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white image of an electronic device"], "question": "which entity has a booth?", "label": 0}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["apse, roof, floor plan", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a house with a blue roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, temperature, england", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of an egyptian sarcophagus."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["color, shape, and size", "sarcophagus, material, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "6b745457e06840119058883b35f78f58"], "properties": ["- material is white- color is white- texture is textured", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["castle, island, house", "building, plane, room"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, material, shape", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["Lights, number, five", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with five white shades", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "c3a82df41875402285608ef13a55df57"], "properties": ["color, skyline, buildings", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["yellow, table, roof", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white table with multiple cubes"], "question": "which table has a roof", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "c3a82df41875402285608ef13a55df57"], "properties": ["wing, silver, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a small white building with stairs and a lid."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, red, blue, green", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, shape, material", "window, arches, wall"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small building with windows and a roof.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["roof, windows, building", "house, building, people"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, pattern, material", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small white box with a green light."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, orange, white", "color, white, light"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["55b26130f1514032be078e13fd982905", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, material", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, rock, paper", "building, room, sky"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a wooden shed with a gray roof."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a blue plastic stool."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["cover, black, plastic", "color, plastic, blue"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a table with a red and white striped tablecloth, a bowl of eggs, a book, and a bowl of ice cream on it.", " a wooden table with a plant on it."], "sample_ids": ["45f9d3998d904aa4a77f45e1744b581f", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["bowl, ice cream, bowl", "table, plant, wood"], "captions_pred_pc": ["in 150 words a black and white illustration of a square with dots on it", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a table with a bible and a bowl of fruit on it", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a house with wooden framing and trusses."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["metal, rusted, paper", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a tree with leaves and roots."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "1c8dbf1b79c44cd09369d54897402528"], "properties": ["color, light, jewels", "leaf, root, trunk"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a tree on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a tree with roots"], "question": "which entity has more leaves", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " of two rocks with ice elements."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "a17477b445b3443189dad22f768b888b"], "properties": ["a, color, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, shape, and size", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black ribbon on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a metal tray with two rolls of paper in it"], "question": "which object is round?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "68e0d097351843a3980421f2ae624c59"], "properties": ["color, white, containers", "white, top, writing"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": [" of a white cube.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["00bacff4f6be4b3d9b93946106b9e588", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a piece of paper with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white staircase on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a small white building with stairs and a lid."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, base, warning", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a pink coffee mug with a white handle and lid, featuring white foam or icing on top.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f50ca961cbcc4182a6f10074943d63c4", "b896a0898efe4059a776193c02132129"], "properties": ["color, handle, lid", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a coffee mug on a white background a black and white image of a coffee mug on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a coffee mug royalty free 3d model preview no.1", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a white of a man with arms outstretched."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["a lamp, a syringe, a light pole", "image, color, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a man with his arms outstretched"], "question": "which entity is a 2d image?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a clay pot with holes in it."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, black, shade, black", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a clay pot with holes in it."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["graffiti, bench, wall", "hole, material, clay"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a wooden table and chair."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["roof, brown, flat", "table, chair, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["composed of, white, cubes", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, pink, green", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a barrel and a cube together."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["color, temperature, england", "a, barrel, cube"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" an ancient, broken clay mask held by a hand.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["28e7a932fe074667ac6a1b3b324b9e22", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["hand, mask, hold", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a butterfly", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken cer", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small house with stairs and a roof."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house on a hill in a field."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["room, bed, desk", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a wooden-handled axe .", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "c3a82df41875402285608ef13a55df57"], "properties": ["handle material is wood, head material is metal, overall length is long", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["s, chimpanzee, human, wolf", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["base material is wood, color is red, message is welcome to northwich", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, shape, text", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, skyline, buildings", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["frame, roof, trusses", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["earbud, earpiece, earpiece", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white object on a grey background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a transparent blue cube.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, shape, transparency", "metal, legs, wheels"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["an empty white box on a gray background", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, green, orange, star", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["chair, table, refrigerator", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a rock formation on a gray background"], "question": "which image is of a rock formation with a white cliff and a rock?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a wooden table and chair."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["ceiling, light, desks", "table, chair, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small wooden table"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "73e7107ff3634516846bccad04c5dc87"], "properties": ["base material is wood, color is red, message is welcome to northwich", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a white bathroom sink"], "question": "which object is curved", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["door, roof, pool", "building, room, sky"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a white, three-legged chair with a wooden heart-shaped backrest."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "60a15d2032dc41b38dc8544e1a01f3cc"], "properties": ["backrest, curved, yes", "backrest, heart, wooden"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a white chair with a wooden seat and legs"], "question": "which chair has a heart-shaped backrest", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a small white building with stairs and a lid."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, stairs, shelves", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, material, structure", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " of a small white building with stairs and a lid."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, room, table", "building, stairs, lid"], "captions_pred_pc": ["a black square on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, grass, moss", "image, city, spoon"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["white floor lamp with a white shade and base, resembling a white plastic stick or column, featuring a camera on top.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["f1230cbf5653463bbda1bdf55543ba4d", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["shade, base, height", "color, background, white"], "captions_pred_pc": ["for a black square on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a white plastic toothbrush on a gray background", "an image of a white background with a few small cubes on it"], "question": "which object has a white base?", "label": 0}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, tan, brown, orange", "house, fence, dog"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["house, building, people", "hat, pants, shirt"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has fewer houses", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a house with a roof and beams."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["frame, trusses, wood", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a large white and metal building with a metal roof structure."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, yellow, blue", "roof, metal, white"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, air conditioner, house", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a house with wooden framing and trusses."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["mossy, rock, rocky", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, rock, paper", "roof, trusses, beams"], "captions_pred_pc": ["for a flock of birds in the sky", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, material", "roof, ceiling, hole"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a wooden windmill with a red roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["frame, truss, roof", "roof, color, red"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small house with stairs and a roof."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["Cabinet, Drawers, Filing", "roof, stairs, house"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["white, top, writing", "house, pool, balcony"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["a, roof, soup", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large building with a roof and windows.", " of a black and white striped fly in the air."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, windows, building", "black, white, fly"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a low poly 3d model of a rock", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["bedroom, bathroom, bed", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "40921ffd69db479294554d261daf3035"], "properties": ["house, tree, pool", "floor, railing, staircase"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a spiral staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["table, staircase, light", "table, structure, roof"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a green and red toy gun with a scope and yellow accents."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "4b7263b58a6647c3a03226b39c42108a"], "properties": ["color, horns, features", "color, red, green, yellow"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an assault rifle on a gray background"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, red, pink", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a red roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["085db9059b744673b5623b5338e02196", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, red, house", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "c3a82df41875402285608ef13a55df57"], "properties": ["color, table, sphere", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, white, containers", "house, roof, blue"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of a wooden table and chair."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["a room, a cake, a table", "table, chair, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": ["rainbow dash pony with rainbow mane (available in 3ds max, obj, fbx formats)", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e8aee8de3ab24849bad537ad0d732eea", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["3ds max, obj, fbx", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of an octopus", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of my little pony princess celestia royalty free 3d model", "a sculpture of a man's head on a pedestal"], "question": "which entity is not a clay sculpture?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small purple plastic chair with holes."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["building, color, white", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a spider-man mask and head.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, head, mask", "s, laptop, printer"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white image of a pair of scissors"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a black and white image of an electronic device"], "question": "which entity is not a head?", "label": 0}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["metal, laptop, light fixture", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, structure, greenhouse", "roof, color, pink, blue"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of pink and blue", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["collection, color, black, handle, wooden", "house, fence, dog"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house with a roof and beams."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, ceiling, hole", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a white of a woman with her arms outstretched."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["s, plane, house", "image, color, white"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small wooden house with a green roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, texture", "roof, color, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["house, table, chair", "island, terrain, water"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a house with wooden framing and trusses."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["chocolate, mushroom, cake", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white drawing of a window"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a black and white striped fly in the air."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["chair, table, refrigerator", "black, white, fly"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white photograph of a fly"], "question": "which entity is not a chair", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "star wars stormtrooper "], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["resembles, toy, bookshelf", "a, color, white"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["roof, truss, lamp", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is plastic- shape is dice- color is white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["background, color, white", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["black, white, laptop", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a map with dots"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a building with many pillars"], "question": "which table has a wooden structure", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a large house with a roof on a platform."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "cb3e09a301b746918a682a595037c7f7"], "properties": ["bed, desk, window", "roof, platform, house"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a house with a green, wooden-structured roof."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["railings, staircase, spiral", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["background, color, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, rock, paper", "house, tree, hill"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is metal- color is silver- texture is textured", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small, snow-covered house.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, snow, cover", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a piece of broken glass on a white background", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "c3a82df41875402285608ef13a55df57"], "properties": ["stacked, racks, toy train", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["broom, shovel, fireplace", "house, pool, balcony"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, temperature, england", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, material", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, roof, green, frame, red", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a green wooden door with a wavy pattern.", "star wars stormtrooper "], "sample_ids": ["9bf4a9a2dedd46af98e310a4b5951e23", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, pattern, material", "a, color, white"], "captions_pred_pc": ["of a black and white photo of a long, rectangular object on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a wooden door royalty free 3d model preview no 3", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a white sofa, chair, and box."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4c59733ebd634594a921b7ace60e4142"], "properties": ["A, a, a", "sofa, chair, box"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a black and gold pistol.", " a witch wearing a black and white hat."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, black, gold", "color, black, white"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which object is black and white?", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a large house with a roof on a platform."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "cb3e09a301b746918a682a595037c7f7"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, skyline, buildings", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a black tray with three green rings on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, rings", "a, material, clay"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a small white building with stairs and a lid."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof truss, insulation, suspended ceiling", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "lion, statue, fountain"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d image of a lion statue on a wall"], "question": "which is not a statue", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["door, roof, pool", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a roof structure"], "question": "which house has a roof with trusses and beams", "label": 1}, {"captions": [" a tan, cylindrical hat with a hole in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["00c350e9f5f24fcd8bcc378da2963d4c", "c3a82df41875402285608ef13a55df57"], "properties": ["hat, color, tan", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a mushroom on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an object with a hole in it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white house with a staircase and a window."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "9eb88d17310d42dda9e17883e9922525"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, staircase, window"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase and a window", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a wooden shed with a gray roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["tiers, building, stairs", "roof, color, gray"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a white glass beer mug."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "1d686cbd3e9a4c629a43088658989286"], "properties": ["earbuds, light, ring", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " a wooden table with a plant on it."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["glass, metal, balls", "table, plant, wood"], "captions_pred_pc": ["a black and white image of a wine glass", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a clear acrylic foosball table", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white and blue building with a black roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, pink", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, truss, lamp", "house, fence, playground"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "0434eb3aa73e42a5a2570ec9c1a9b96b"], "properties": ["color, blue, green, yellow, blue", "green, hat, cream"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a pair of earrings"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no."], "question": "which entity has more cream", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["bedroom, bathroom, bed", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" of a black shark", " a small house with stairs and a roof."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["black, mouth, teeth", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a large metal building with a roof and truss structure."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "b85a99699ccd4bcba213322113bb253d"], "properties": ["railing, glass, table", "roof, truss, structure"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, white, material, ceramic", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of two rocks with ice elements."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, tan, brown, orange", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d image of two rocks on a gray surface"], "question": "which entity is not a rock?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b5afccae993346079483507296fbb029", "b896a0898efe4059a776193c02132129"], "properties": ["shape is square, material is metal, color is rusty", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a large house with a roof on a platform."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "cb3e09a301b746918a682a595037c7f7"], "properties": ["turrets, flags, towers", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small purple plastic chair with holes."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, roof, tray", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a metal object", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of the roof of a building", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["Arms, Legs, Color", "structure, roof, pitch"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of the roof of a house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["lighthouse, fountain, crater", "house, building, people"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a small wooden house with a roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, color, blue", "roof, house, wooden"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a brick wall with grass.", " a wooden roof structure with a pink roof."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["brick, grass, wall", "roof, color, pink"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color of pink", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, shape, height", "building, material, stone"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a small white building with stairs and a lid."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, ceiling, hole", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a white box on a gray background"], "question": "which building has stairs?", "label": 1}, {"captions": ["white 3d printed skull, shell, snowy mountain, spiked head sculpture, and blob.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2a99681d7ec0460790da639cecec9a24", "b896a0898efe4059a776193c02132129"], "properties": ["3D Printed, white, skull", "- material is stone, metal, concrete"], "captions_pred_pc": ["a 3d model of a molecule on a white background a 3d model of a molecule on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a seashell on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", "a white glass beer mug."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, gazebo, table", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "09f2cf267e954c958828325067bcc36a"], "properties": ["house, tree, rock", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "127753bf17de4252aaa7ea88f274545e"], "properties": ["size, material, wheels", "face, mask, tail"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a goat's head"], "question": "which entity has a tail", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["lamp, harp, bowl", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, tower", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue and pink spiked fish.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["60032d1c1dcc43129b6e54bac3ebf68a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a spiky brush on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an object with spikes", "a 3d model of a house with a roof"], "question": "which entity is larger", "label": 1}, {"captions": [" of a machine gun.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "e34088fc7b5344c4ab29fef067750225"], "properties": ["gun, barrel, caliber", "sphere, pedestal, statue"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a sculpture on top of a pedestal"], "question": "which object has a pedestal?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "5414d75e47104589837f3df8b6de6d22"], "properties": ["building, stairs, shelves", "beige, white, round"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a white 3d model of a building with stairs", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "1da865c75a5e4a57a17652975dae5474"], "properties": ["Drawer, Handle, Wood", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " of two rocks with ice elements."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["collection, color, black, handle, wooden", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["wood, board, shelf", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a throne with a tree on it"], "question": "which object has more stairs", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small white house with a roof."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["s, chimpanzee, human, wolf", "roof, color, white"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor plan, ceiling light, color", "house, fence, playground"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, and material", "box, handle, gun"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, hill, deer", "house, table, chair"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, purple, suspended", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a set of stainless steel shelves"], "question": "which roof is made of tiles", "label": 1}, {"captions": [" of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock.", " a spider-like creature with long arms and legs."], "sample_ids": ["cc4ccf85d4c1425cb5975b8b5664d38a", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["paper, hole, sign", "arachnid, leg, arm"], "captions_pred_pc": ["a silhouette of a map of the state of karnataka, india on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["an image of a torn piece of paper in the shape of a map", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a black and gold pistol.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, black, gold", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a toothbrush", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a table with a red and white striped tablecloth, a bowl of eggs, a book, and a bowl of ice cream on it.", " of two rocks with ice elements."], "sample_ids": ["45f9d3998d904aa4a77f45e1744b581f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bowl, ice cream, bowl", "image is a rock with ice elements"], "captions_pred_pc": ["in 150 words a black and white illustration of a square with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a table with a bible and a bowl of fruit on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "97e000ff41094665afd94ea565da8b13"], "properties": ["location, area, material", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a wooden roof structure with a pink roof."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["- color is white- shape is cubes- number is 1", "roof, color, pink"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a cube with a wooden ball on top."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "874f49c0bdd04c9cbcc54fcac1a337ad"], "properties": ["texture, spikes, eyes", "shape is cube, material is wood, color is white"], "captions_pred_pc": ["a black and white drawing of a flower", "in one line a black and white image of a square made up of tiny dots"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a ball sitting on top of a cube"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small blue robot with a windmill.", "a white of a man with arms outstretched."], "sample_ids": ["5f915b161cc74fedad52d8663b41f87a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, blue, robot", "image, color, white"], "captions_pred_pc": ["a black and white image of a 3d sculpture", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a wind turbine", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a white of a woman with her arms outstretched."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["roof, color, green", "image, color, white"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "096e42b466ec438d95c5d89a85191534"], "properties": ["screen, keyboard, box", "white, rock, shell"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["white dragon with wings, .", " a small white barn with a metal roof."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "4ca3342a96824684845f7d0e062ab176"], "properties": ["wings, white, dragon", "roof, metal, white"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a small blue robot with a windmill."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, green, squirt gun", "color, blue, robot"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a wind turbine"], "question": "which object is blue?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, air conditioner, house", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, bowl, green", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a wooden shed with a gray roof."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a train, a ship, a boat", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "46903bf029934b1989bc062dcb0a5531"], "properties": ["ruined building, stone floor, small stone structure", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, lake, pool", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "hat, skull, bread"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, mattress, pillows", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a white 3d model of a city skyline"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a blue roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["s, cat, fish, person, pig, bird", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a white of a woman with her arms outstretched."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["door, lock, handle", "image, color, white"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["apse, roof, floor plan", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a, dress, flower", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of an ak-47 rifle."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "18e1f60286d346728f650984f4ae70aa"], "properties": ["water, boat, rock", "AK-47 rifle is a weapon"], "captions_pred_pc": ["a black and white illustration of a surfboard", "of a black and white image of a fishing rod"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a rifle on a gray background"], "question": "which is a weapon", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large white and metal building with a metal roof structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, purple, suspended", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a building with yellow lines."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "f18e34286cf54876874f55ecc9018492"], "properties": ["level, stairs, columns", "color, yellow, lines"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of an apartment building", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": [" a gray, metal pillar/cylinder.", " a gray, metal pillar/cylinder."], "sample_ids": ["11391e6bab574dc0be8f2440fbc3b724", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is gray, material is metal, shape is cylinder", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["of a black candle on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a candlestick", "a 3d model of a candlestick"], "question": "which entity is a gray", "label": 0}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["yellow, table, roof", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a table with stairs"], "question": "which table has a staircase?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " of a character wearing glasses and a hat."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["3ds max, obj, fbx, c", "hat, glasses, character"], "captions_pred_pc": ["a black and white insect on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "b0427ff55c4346e293c1241c71d30528"], "properties": ["backrest, curved, yes", "a, rock, nail"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d image of a rock with a screw in it"], "question": "which object has a screw and a nail sticking out of it?", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, words", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a long line of numbers", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a house with a pink roof.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, roof, pink", "striped, white, black"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, plane, small plane", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "an image of a pile of trash on the ground"], "question": "which entity has grass?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["building, stairs, shelves", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a building structure"], "question": "which building has a frame?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["Cabinet, Drawers, Filing", "hat, skull, bread"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["white sphere", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, size", "cover, black, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "of a black and white image of a skateboard"], "captions_pred_image": ["a white sphere on a gray background", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, tail, cord", "flower, color, pink"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink color?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "a17477b445b3443189dad22f768b888b"], "properties": ["color, bowl, green", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "b896a0898efe4059a776193c02132129"], "properties": ["color, horns, features", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a blue roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["frame, truss, roof", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["stacked, racks, toy train", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, and material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a small white house with a roof."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "roof, color, white"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, material, texture", "color, shape, color"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a futuristic black sphere with blue lights and a helmet.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["b8231fa79abe45239df6c6dca8d3f251", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a monkey face made of dots on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a spherical object with various geometric shapes on it royalty-free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white of a woman with her arms outstretched."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, table, ceiling", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["- material is plastic- color is white- shape is cylinder", "table, bench, deer"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["roof truss, insulation, suspended ceiling", "building, plane, city"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, white, logo", "hat, skull, bread"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a white rocking chair with a curved backrest."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["red, mouse, handwriting", "backrest, curved, yes"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a backrest", "label": 1}, {"captions": ["a pair of blue wireless earbuds with a black case.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["88d8bccf701145dea3fc4df8781ddb13", "b896a0898efe4059a776193c02132129"], "properties": ["blue, case, earbuds", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a pair of earrings in the shape of a butterfly", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a pair of earphones royalty free 3d model preview no.1", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a table with a red and white striped base.", "a 3d rendered coffee table with a black and brown base and a square ceiling light."], "sample_ids": ["1c5f4bb610644327ad0db547adb5499e", "27a365f067004d9c9c58e40c12827ce0"], "properties": ["base, color, red, white", "baseColor, black, brown, tableTopColor, brown, black"], "captions_pred_pc": ["a black and white illustration of an object that is made up of many small dots", "a black and white image of a patterned square on a white background"], "captions_pred_image": ["a 3d model of a white desk with two legs", "a 3d model of a coffee table"], "question": "which table has a brown and black table top?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["yellow, table, roof", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, white, railing, black", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" of a machine gun.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["gun, barrel, caliber", "grass, plants, rocks"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a group of trees"], "question": "which entity has more plants", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["location, field, gravestone", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" of a blue ford escort car.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "6b745457e06840119058883b35f78f58"], "properties": ["color, blue, ford escort", "roof, color, blue"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", "a black and white of a knife/sword with a handle."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["3d model, color, lights", "image, color, black and white"], "captions_pred_pc": ["above a black and white image of an object on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small white house with a roof."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["ceiling, beams, light", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, pink, green, cord, white", "color, shape, color"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is plastic- shape is dice- color is white", "metal, cross, clock"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["a, bird, lake", "table, bench, deer"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" a small trailer and a white box.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "97e000ff41094665afd94ea565da8b13"], "properties": ["box, trailer, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, yellow, chimney", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["white 3d canoe model", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["1d0342b454884db4bb88c939a69f6362", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, material", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white photo of a surfboard", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a white canoe on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of an egyptian sarcophagus."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a room, a cake, a table", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a green mountain with trees and grass."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["face, handle, spout", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a small, circular object", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a small house with a blue roof.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, color, blue", "house, lake, pool"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a house with a roof and beams."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, fence, dog", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["shape is cube, color is black, white", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of a room"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small red and white spaceship.", "a purple and yellow pixelated ethereum logo in pixel art style."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "bcf111e592d64b6490003680cae9407f"], "properties": ["color, shape, size", "color, style, pixel"], "captions_pred_pc": ["above a black and white image of a drone in the air", "in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "an image of an electronic device with the letter 'z' on it"], "question": "which entity is a logo?", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "f1b557775310478893242180defa4d80"], "properties": ["color, card, case", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": [" a small house with stairs, a roof, and a pillar.", " a large steel building with a pool."], "sample_ids": ["a17477b445b3443189dad22f768b888b", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, pillar, stairs", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a square with dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small building with a balcony", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a person's face", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small wooden house with a green roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["white 3d origami bird model", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, origami", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "a black and white map of the state of new york"], "captions_pred_image": ["a white umbrella on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, head, white and brown", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a woman's chest"], "question": "which entity has a pattern on the shirt", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a metal building with a purple roof and cage structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, color, purple", "roof, purple, structure"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with a metal roof"], "question": "which structure is made of glass blocks", "label": 0}, {"captions": [" of a black shark", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["black, mouth, teeth", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": [" a house with a blue roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, blue", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small wooden house with a green roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, green", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house with a ladder", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "97e000ff41094665afd94ea565da8b13"], "properties": ["hair, legs, wings", "roof, material, wood"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a snowy mountain island.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["fe8520ec650248fa92ba07bb95712b09", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["mountain, island, snowy", "a room, a cake, a table"], "captions_pred_pc": ["for a black cross on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white photograph of a volcanic eruption", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a roof and beams."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, roof, wooden", "roof, beams, house"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a small wooden sailboat.", " a wooden billiard table with legs."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, material, sails", "legs, material, wood"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a black and white image of a pool table"], "question": "which is made of wood", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["color, table, ceiling", "throne, chair, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a house with a wooden-framed roof structure."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, fence, playground", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "a17477b445b3443189dad22f768b888b"], "properties": ["table, stairs, ladder", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["hat, skull, bread", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white image of a stone sculpture", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large steel building with a pool."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["apse, roof, floor plan", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["s, boat, bird, airplane, kite", "box, paper clip, lock"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["house, roof, blue", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["44723e86bdd14071b0544745879604de", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["resembles, bar, soap", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is a wrecked plane", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "12093c89a60941e7884b252bdc05104c"], "properties": ["building, fence, snowy", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, roof, block", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["roof trusses, beams, suspended ceiling", "hat, pants, shirt"], "captions_pred_pc": ["above a black and white drawing of a building", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a black and white of a knife/sword with a handle."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["roof, color, blue", "image, color, black and white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, shape, height", "frame, screen, color"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a black and white cross on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d rendering of a black screen with a circular pattern"], "question": "which object is more colorful", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a small white building with stairs and shelves."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "9e1f64d4fd514059be934077717536dc"], "properties": ["collection, color, black, handle, wooden", "building, stairs, shelves"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a white 3d model of a building with stairs"], "question": "which entity has stairs and shelves", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["roof, structure, truss", "stair, table, chair"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a white of a house with a hole in the ceiling."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, plane, town", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["building, skyscraper, city", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of an airplane", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of an old building"], "question": "which building is on a street?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "12093c89a60941e7884b252bdc05104c"], "properties": ["low poly, plant, white", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a potted christmas pine tree."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["railing, glass, table", "a, color, green"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["hat, sword, gun", "a room, a cake, a table"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "703dce44052e48cfb024bceb08141554"], "properties": ["orange, forklift, parking lot", "roof, beams, frames"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white drawing of a boat"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a wooden structure"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["island, mountain, grass", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white map of the island of malta", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a wooden billiard table with legs."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["background, color, white", "legs, material, wood"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["black, white, laptop", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a standing mirror on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, style, pixel", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "c3a82df41875402285608ef13a55df57"], "properties": ["color, blue, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building under construction", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a large metal building with a roof and truss structure."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "b85a99699ccd4bcba213322113bb253d"], "properties": ["base, speaker, light", "roof, truss, structure"], "captions_pred_pc": ["above a black and white illustration of a clock", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small building with windows and a roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, tan, brown, orange", "roof, windows, building"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, helmet, airplane wing", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["house, roof, toothbrushes", "meat, bread, sausage"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a small white building with stairs and a lid."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, fence, dog", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a hammer with a long metal handle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, shape, and size", "handle, metal, long"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white toothbrush on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "97e000ff41094665afd94ea565da8b13"], "properties": ["desk, chair, table", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of the roof of a building"], "question": "which entity has a wooden roof structure", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["- color is white- shape is cubes- number is 1", "color, background, white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "an image of a white background with a few small cubes on it"], "question": "which entity has a white background?", "label": 0}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["building, roof, white, cubes", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white image of a map", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a white glass beer mug."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "1d686cbd3e9a4c629a43088658989286"], "properties": ["texture, spikes, eyes", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["ceiling, light, desks", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a house on a rock"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, skyline, buildings", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small house with a pond and situated on a rock."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "92859eb82a344134806b37cc209927c6"], "properties": ["yellow, table, roof", "house, rock, pond"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["buildings, houses, grass", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, bird, hook", "table, staircase, light"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, material", "platform, color, orange"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a motorcycle on a pedestal"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a black and white striped box."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, shape, text", "color, black, white"], "captions_pred_pc": ["a black and white image of a screw", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a blue roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, room, ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house with a green, wooden-structured roof."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["painting, door, wall", "roof, color, green"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, character, mario", "house, tree, hill"], "captions_pred_pc": ["for a black and white sculpture of a person", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, bowl, green", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "c3a82df41875402285608ef13a55df57"], "properties": ["3D, toothpick, skateboard", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white toothbrush on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green skull and sphere.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["color, skull, sphere", "nut, bowl, ring"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d rendering of a white object on a gray background"], "question": "which entity has a ring?", "label": 1}, {"captions": ["white rectangular box in a .", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["171d8702ca004ed787b8c7eb0de9a4fd", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["box, white, rectangular", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white diamond on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a white bowl on a gray background royalty free 3d model preview no.1", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is in the grass", "label": 1}, {"captions": ["white plastic hook", " a gray, metal pillar/cylinder."], "sample_ids": ["69b23b509df94ee9bc8dda128c75bd10", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is white, material is plastic, shape is hook", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["of a black and white image of a shower head", "of a black candle on a white background"], "captions_pred_image": ["a white plastic hook on a gray background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a green light.", " of two rocks with ice elements."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, white, light", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a two-story small apartment building with a roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, color, purple", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "73e7107ff3634516846bccad04c5dc87"], "properties": ["size, material, color", "blue, curved, resembles"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["Title, Image, Color", "light, fixture, square"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a 3d model of a desk with a table on top"], "question": "which entity has a light fixture that is square?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is plastic- color is green- shape is box", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": [" of a white round table with a red accent.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["fea62a865b4e40899d95785533818329", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, white, red", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a table with a stool on top"], "question": "which table has stairs", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "97e000ff41094665afd94ea565da8b13"], "properties": ["shape is hot dog, design is dragon, color is black", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a red roof.", "a white of a man with arms outstretched."], "sample_ids": ["085db9059b744673b5623b5338e02196", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, red, house", "image, color, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a wooden roof structure with a pink roof."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["size, color, design", "roof, color, pink"], "captions_pred_pc": ["a black and white pattern on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of the roof of a building"], "question": "which is not a roof", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a room, a cake, a table", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["house, roof, wooden", "roof, brown, flat"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "12093c89a60941e7884b252bdc05104c"], "properties": ["boxing gloves, heart, hand", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["house, color, white", "image, building, stairs"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white archway structure resembling a building."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "5ad02458cf394134a902e25001d2ffef"], "properties": ["roof, structure, wall", "structure, building, archway"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a white object on a white surface"], "question": "which structure is a building?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, color, blue", "island, mountain, grass"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["water, boat, rock", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house with a green, wooden-structured roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["fireplace, bench, log", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["4ec4c815539f4f3f8cc2272e09f2aa41", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["earphones, wire, instrument", "earphones, wire, instrument"], "captions_pred_pc": ["of a curved metal rod on a white background", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which entity has earphones with wire sculpture", "label": 0}, {"captions": [" a clear glass table with metal legs and balls on top.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["glass, metal, balls", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a wine glass", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "1d1328346a464d2482463d6d5288e934"], "properties": ["houses, trees, road", "painting, door, wall"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " of two rocks with ice elements."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bird, nest, wood", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house with a roof and beams."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, windows, building", "roof, beams, house"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof with beams", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["roof, color, pink", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a metal grate", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d lego character wearing a black helmet, gloves, and holding a gun.", " a house with a wooden-framed roof structure."], "sample_ids": ["f71842519d2f44ceb9fa57e0c0db4aa0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- color is black- material is plastic- shape is 3d", "roof, material, wood"], "captions_pred_pc": ["a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a staircase"], "captions_pred_image": ["a lego ninja turtle wearing a black helmet and gloves", "a 3d model of a building with a roof"], "question": "which is not made of wood", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a large metal building with a roof and truss structure."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "b85a99699ccd4bcba213322113bb253d"], "properties": ["s, chimpanzee, human, wolf", "roof, truss, structure"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["97f487941d26472294e005fa97c403be", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, white, green", "building, plane, city"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a house with a flat roof structure."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, roof, structure", "roof, flat, structure"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a large steel building with a pool."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, house, wooden", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a sword with a wooden handle."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["- material is plastic- color is white- shape is cylinder", "handle, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a knife on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of a sword"], "question": "which object is made of wood", "label": 1}, {"captions": [" a stone knife.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["material is stone, blade is sharp, handle is wooden", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a house with a roof and beams."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, material, shape", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "832a022cdcc74763b0571e04af4e592b"], "properties": ["building, fence, snowy", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a lego model of a futuristic airplane"], "question": "which entity is not a small spaceship?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["a, door, suitcase", "a city, train, dragon"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "06a1c233fb444830b577aa06e2c01294"], "properties": ["boxing gloves, heart, hand", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of the human heart", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["building, color, white", "building, material, rock"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d image of a damaged piece of furniture"], "question": "which building is made of rock", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "9968e06a62e8487ea33460e640abc573"], "properties": ["building, balcony, street", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of an old building", "a white object on a gray background"], "question": "which object is not a building?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a gray, metal pillar/cylinder."], "sample_ids": ["44723e86bdd14071b0544745879604de", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["resembles, bar, soap", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "of a black candle on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a character wearing glasses and a hat."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["black, white, coffee table", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a person wearing sunglasses"], "question": "which entity is a hat?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of two rocks with ice elements."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["graffiti, bench, wall", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "a2354f13774340d392fbf33564934aab"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof trusses, beams, suspended ceiling", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "room, staircase, bus"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a piece of paper with writing on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["57950d2e2e254d9c8d9631cedd584adf", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["paper, writing, piece", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a close-up view of the back of a tablet on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a piece of torn paper on a white background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, pier, stairway", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " of two rocks with ice elements."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, table, wall", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white and black helmet", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a small red renault clio car.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is red, make is renault, model is clio", "mountainous, landmass, state"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which is not a state", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, door, cross", "house, staircase, table"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a white building with a red roof."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, background, white", "color, white, roof, red"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of an office building"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, lighting, booth", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, roof, block", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a large white box"], "question": "which building has a roof made of metal", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, orange, leather", "roof, structure, wall"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a building with a roof"], "question": "which object has a roof structure", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["apse, roof, floor plan", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "d49d8ed244094349a99e4faca05e0690"], "properties": ["shape is cube, color is black, white", "low poly, plant, white"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "star wars stormtrooper "], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["- color is white- shape is cubes- number is 1", "a, color, white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a star wars stormtrooper?", "label": 0}, {"captions": [" a yellow monster-sphere with teeth.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, texture", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["- color is white - shape is box - material is plastic", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, base, warning", "color, sphere, molecule"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, ceiling, hole", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["shape is sphere, color is white, material is plastic", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["floor plan, heating system, ceiling light fixture", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure with brick detailing?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "97f487941d26472294e005fa97c403be"], "properties": ["building, color, black and white", "color, white, green"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of an office building"], "question": "which building is white and green?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, roof, pink", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, size", "color, frame, shape"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a building structure"], "question": "which entity is a cube", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["railing, glass, table", "houses, trees, road"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, plane, town", "house, roof, green"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["giraffe, bench, flower", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a large steel building with many columns and a pool."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, stairs, shelves", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["wing, knife, boat", "room, furniture, window"], "captions_pred_pc": ["a black umbrella on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "745fed115c5343dab9d7f0c389c98902"], "properties": ["s, stick, leaf", "costume, color, black"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["painting, door, wall", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a small purple plastic chair with holes."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, blue, components", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, green, squirt gun", "mountainous, landmass, state"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["size, material, logo", "lion, statue, fountain"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a house with a roof and beams."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, yellow, black", "roof, beams, house"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, shape, gun", "color, green, squirt gun"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object has a gun", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5414d75e47104589837f3df8b6de6d22"], "properties": ["house, roof, wooden", "beige, white, round"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a small barn", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, toy, gnome", "hat, watch, clock"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a small white bowl with a light blue glaze and blue rim."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "6f7201fbb58649379398a8d1d5c0cc7a"], "properties": ["color, white, containers", "color, blue, rim, blue"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a dotted circle on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a white bowl on a gray background"], "question": "which object has a blue rim?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["floor, staircase, railings", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "db74ee1621464be1b164be26a1af050e"], "properties": ["s of, snowboard, shoes, mask", "window, arches, wall"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " of a white human skull with broken bone elements."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["size, color, shape", "house, tree, hill"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["roof, room, ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with many windows"], "question": "which roof is blue", "label": 1}, {"captions": [" of a human bone", " of two rocks with ice elements."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, b, c", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a small white building with stairs and a lid."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["chair, table, refrigerator", "building, stairs, lid"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a small purple plastic chair with holes."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["shape, color, material", "color, plastic, purple"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, color, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a doll made of beads", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "f1b557775310478893242180defa4d80"], "properties": ["hat, pants, shirt", "shack, roof, door"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a large metal building with a roof and truss structure."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "b85a99699ccd4bcba213322113bb253d"], "properties": ["ceiling, beams, light", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a window", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a long metal fence"], "question": "which entity has a roof with trusses", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a, bird, lake", "table, staircase, light"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["liquid, ice, lid", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["floor plan, bathroom, pool", "house, staircase, table"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a white chest of drawers with legs."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, leg, tail", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d rendering of a white dresser"], "question": "which entity has legs", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a white of a woman with her arms outstretched."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, material, pattern", "image, color, white"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a silver vintage racing car.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, silver, vintage", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a vintage racing car", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small white house with a roof."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, roof, white, cubes", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 0}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["shape is turtle, color is green, white", "Eye color, Black, Purple"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, black, shade, black", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["color, table, blocks", "roof, structure, suspended"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a house with a metal roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a green and black robot with cube-like features.", "star wars stormtrooper "], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, material", "a, color, white"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, green, lawn", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a person breaking through a brick wall."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["house, table, chair", "image, brick, wall"], "captions_pred_pc": ["above a black and white photograph of an open door", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is stone - color is blue - shape is arrowhead", "wood, board, shelf"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green skull and sphere.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, skull, sphere", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "c3a82df41875402285608ef13a55df57"], "properties": ["animal, head, fox, chihuahua, cat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a fox's head", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a brass pipe handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["21ffdd08f3714ad6bfad4038a2e4d2db", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, material, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a pipe", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal pipe with two pipes connected to it", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, hill, forest", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a wall featuring various potted plants.", " of two rocks with ice elements."], "sample_ids": ["54d03259a316434e9c670a52a7e5a92e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image, wall, plants", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a wall with bullet holes", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a large steel building with a pool."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, brown, flat", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, mouth, eyes", "house, pool, balcony"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small building with a staircase in a room."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["tiers, building, stairs", "room, staircase, building"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e602ac60041f4b4f84c044161e478781"], "properties": ["room, bed, desk", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which room has a wooden floor", "label": 1}, {"captions": ["white plastic cone-shaped hat, 3d printed.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["5cfd092fb5c44c9f8ae62c6e4c62903d", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["shape is cone, material is plastic, color is white", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a dome shaped object made of dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a toilet paper holder", "a black and white image of a person wearing a hat"], "question": "which hat is red", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a small purple plastic chair with holes."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["wood, board, shelf", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of a piece of marble", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, door, window", "house, lake, pool"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a stone wall featuring a statue and a window."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "09ab58e01e0d4393bc1e82f157e641be"], "properties": ["a, rock, paper", "a, window, statue"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white image of dots on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a black and white photo of a sculpture of jesus on the cross"], "question": "which object has a window", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["roof, truss, lamp", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", "a white of a man with arms outstretched."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["bedroom, bathroom, bed", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a white of a woman with her arms outstretched."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, red, green, yellow", "image, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["light source, fixture, color", "low poly, plant, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of two rocks with ice elements."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, roof, toothbrushes", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, staircase, window", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a wooden shed with a gray roof."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["face, mask, tail", "Object, Tray, Tray"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d image of a white tray with an intricate design"], "question": "which object has a white tray with a decorative pattern?", "label": 0}, {"captions": [" a snowy small village with farm buildings and a fence.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "bf18bfd89efd43389781050230467d58"], "properties": ["building, fence, snowy", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof trusses, beams, suspended ceiling", "structure, columns, roof"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["flower, rock, tree stump", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small white house with a roof."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["water, boat, rock", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["food, leaves, shredded paper, rocks", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", " of two rocks with ice elements."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, bench, door", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, structure, greenhouse", "roof, truss system, framing"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house with a blue roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, windows, building", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["railing, glass, table", "house, staircase, table"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a small house with a spiral staircase"], "question": "which staircase is in a house?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["lamp, harp, bowl", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small white box with a green light.", " a small building with windows and a roof."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, light", "roof, windows, building"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a large white and metal building with a metal roof structure."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["background, color, white", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a cat's head", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["desk, chair, lamp", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e098706085a44898abbd549693d12a64", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color is black, white, orange", "box, paper clip, lock"], "captions_pred_pc": ["of a white and black clutch with a flower design", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["table, bench, deer", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white image of a map with dots"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["d6087023095446fbadef1721478373b2", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["door, roof, window", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, stairs, house", "rusty, warning, metal"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color is white, material is plastic, shape is bottle", "earphones, wire, instrument"], "captions_pred_pc": ["of a black circular object on a white background", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": [" a black and gold pistol.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, black, gold", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["white space shuttle model.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, model is space shuttle, size is small", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["light source, fixture, color", "lion, statue, fountain"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d image of a lion statue on a wall"], "question": "which entity is a fountain?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a futuristic white sports racing car."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, yellow, black", "color, white, futuristic"], "captions_pred_pc": ["a black and white illustration of an airplane", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a futuristic sports car"], "question": "which vehicle is white", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a white and blue building with a black roof."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, blue", "color, white, blue, roof, black"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a white and blue roof?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "6b745457e06840119058883b35f78f58"], "properties": ["roof, purple, suspended", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a small orange piano with legs."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, material, shape", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["backrest, curved, yes", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["bed, desk, window", "table, bench, deer"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a wooden house with a roof and framing."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "4634a9bdf54549a99f68be77f1464b0a"], "properties": ["roof, structure, truss", "roof, framing, material"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of an abstract pattern"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a barn structure"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small building with a roof.", " a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "2a31c42de6f74ddba6b19b3467066e11"], "properties": ["roof, building, small", "color, roof, block"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a table with multiple tables stacked on top of each other"], "question": "which building has a roof", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["painting, door, wall", "table, bench, deer"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "92498f398e244020a867686729633610"], "properties": ["houses, trees, road", "a, house, cat, dog"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", "a 3d white cube with windows resembling a building."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "4a07a5293f024bb0a353954a056ef626"], "properties": ["mossy, rock, rocky", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a cube"], "question": "which entity is not textured?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color is white, material is plastic, shape is box", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small building with a staircase in a room."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["a train, a ship, a boat", "room, staircase, building"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small purple plastic chair with four legs."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["color, white, black, white", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white plastic chair"], "question": "which chair has four legs", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "db74ee1621464be1b164be26a1af050e"], "properties": ["floor, table, wall", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["6b745457e06840119058883b35f78f58", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, color, blue", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is blue", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small wooden house with a green roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, staircase, window", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, structure, wall", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small house with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, house, small", "house, pool, balcony"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "e602ac60041f4b4f84c044161e478781"], "properties": ["color is white, material is plastic, shape is bottle", "floor, wall, roof"], "captions_pred_pc": ["of a black circular object on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, shape, height", "color, white, gold"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large house with a roof on a platform."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "cb3e09a301b746918a682a595037c7f7"], "properties": ["frame, roof, trusses", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, color, yellow-green", "building, plane, room"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["chair, table, refrigerator", "building, plane, city"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a gray, metal pillar/cylinder."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["composed of, white, cubes", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, material, color", "roof, material, wood"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of the roof of a building"], "question": "which is made of wood", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a white of a spaceship and building."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, tree, rock", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "hat, candy, strawberry"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, cup, bowl", "hat, color, tan"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["resembles, toy, bookshelf", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, tail, cord", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["house, roof, toothbrushes", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, roof, balcony", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, shape, and size", "image, color, pink"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a pink color?", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "766a075b4760433bafdbe88bee546796"], "properties": ["graffiti, wall, wheelbarrow", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a wall with graffiti on it"], "question": "which entity has graffiti on the wall?", "label": 0}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a large house with a roof on a platform."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "cb3e09a301b746918a682a595037c7f7"], "properties": ["A, a, a", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small house"], "question": "which object is on a platform?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, light", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house on a hill in a field.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, hill, field", "house, fence, playground"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, white, containers", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["- color is red, blue, pink", "a, material, steel"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a large metal structure"], "question": "which object is made of metal", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, bowl, cup", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which object has a ladder?", "label": 1}, {"captions": [" of a white crocodile", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["525e4c1c86564ea287acbe93397d6d91", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a bird flying in the sky", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a piece of white paper", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["floor, wall, roof", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a green mountain with trees and grass."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["black, white, coffee table", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["graffiti, bench, wall", "floor, stairs, bathroom"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["screen, keyboard, box", "house, lake, pool"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a witch wearing a black and white hat."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, white, pen, logo", "color, black, white"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a hat", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a house with a wooden-framed roof structure."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["Wheels, laptop, robot", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "e694d53545d449319a64cceb0280c3c6"], "properties": ["ruined building, stone floor, small stone structure", "3d, slide, swing"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a playground slide"], "question": "which entity has a slide?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "4806b382466247ad9265fc8240a22d3d"], "properties": ["background, color, white", "rocky, rug, puddle"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity has a puddle on it?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small wooden house with a green roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["hat, sword, gun", "roof, color, green"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["roof, truss, lamp", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " of a hammer with a long metal handle."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, light, handle", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a hammer with a wooden handle and metal head"], "question": "which handle is made of metal", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " a wooden shed with a gray roof."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["window, clock, wall", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of a shed with a gray roof"], "question": "which entity has a clock", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, lake, pool", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a large building", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, horns, features", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["Drawer, Pattern, White", "building, material, stone"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, roof, green", "table, staircase, light"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["mossy, rock, grass", "mossy, rock, grass"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a piece of wood on a white background"], "question": "which entity has a tree stump", "label": 0}, {"captions": [" a small white house with a staircase and a window.", " a small house with stairs and a roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, staircase, window", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof trusses, beams, suspended ceiling", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, table, chair", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["bowl, pottery, headpiece", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a building with a metal and wooden pole structure."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["structure, roof, pitch", "structure, material, pole"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " featuring a chair, table, and refrigerator."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["yellow, table, roof", "chair, table, refrigerator"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["backrest, curved, yes", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "97e000ff41094665afd94ea565da8b13"], "properties": ["lamp, harp, bowl", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a house with a roof and beams."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a black and white of a knife/sword with a handle."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["Cabinet, Drawers, Filing", "image, color, black and white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["color, white, pair", "shade, white, bead"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a wall lamp with a white shade and a butterfly design"], "question": "which lamp has a white shade", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", "a low-poly of a white, shattered sphere."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, text", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of a cracked egg"], "question": "which object is a sphere?", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, red, black", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d map of the country of israel"], "question": "which entity is not a pair of red-handled pliers and wire cutters", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a black and white striped fly in the air."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, white, black, white", "black, white, fly"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white photograph of a fly"], "question": "which entity is a fly?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, island, resembles, hawaii", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d image of a small island in the middle of a lake"], "question": "which island has grass?", "label": 1}, {"captions": [" a small wooden sailboat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["size, material, sails", "hat, candy, strawberry"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, door, cross", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white drawing of a house", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["cup, bottle, chessboard", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, furniture, black", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a black and white image of a house in the middle of a field"], "question": "which house has more trees", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["apse, roof, floor plan", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "building, plane, room"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["a, hole, rock", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["building, tree, plane", "house, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "67701617472e4051b95955c596561aac"], "properties": ["color, black, shade, black", "color, white, 3d-printed"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, black, white", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "97e000ff41094665afd94ea565da8b13"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, white, pen, logo", "flower, color, pink"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small white building with stairs and a white table."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, texture", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, hat, glasses", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["mossy, rock, rocky", "earbuds, light, ring"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity is not a ring?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["3D, toothpick, skateboard", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a green skull and sphere.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, skull, sphere", "earbuds, light, ring"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "09f2cf267e954c958828325067bcc36a"], "properties": ["location, field, gravestone", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a black and white image of a piece of dirt on the ground"], "question": "which location has more rocks", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["- material is plastic- color is green- shape is box", "Black, Shelf, Metal"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a black shelf with square tiles"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a small wooden house with a green roof."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a house with a ladder"], "question": "which entity is a building?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a large steel building with a pool."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["turrets, flags, towers", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["floor, staircase, balcony", "floor, ceiling, poles"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a building with multiple levels"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["computer desk, laptop, monitor", "grass, plants, rocks"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small triangular-shaped object."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "2d02985030804209a26c2c53b96a06f9"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", " of a character wearing glasses and a hat."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, table, ball", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small wooden house."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["shape, bathroom, refrigerator", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a large pile of garbage.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5d0d3fecdaf7482d83b509954a8f3bd0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a large piece of debris on the ground", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a red and black broken heart-shaped grenade with a chess piece fragment."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a95b5e1807614532994845fb3d18e953"], "properties": ["color, shape, and size", "shape, heart, fragment"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a pair of sunglasses"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a person's head with a piece of paper on it"], "question": "which entity is a heart shape?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, background, white", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["cup, bottle, chessboard", "buildings, houses, grass"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is plastic- color is white- shape is cylinder", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white square with dots on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white ornate airplane design.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, material", "a, material, steel"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a large steel building with many columns and a pool."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["house, fence, dog", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["color, gazebo, table", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, pattern, field", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a green mountain with trees and grass."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["design, poles, table", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a square with dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["color, shape, text", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a black and white photograph of a toilet paper holder"], "question": "which entity is a pile of books?", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " a wooden roof structure with a pink roof."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["flower, color, pink", "roof, color, pink"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a 3d model of the roof of a building"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" colorful cubes and balls.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["598e319509a54ddd9a7220959b2bc5a7", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a group of cubes and a ball", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["picture, plaque, person", "a, color, red"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a castle with two towers"], "question": "which entity has a color that is not red?", "label": 0}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["image, building, painting", "door, lock, handle"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "5017581716c7402581a82ebf08d427a3"], "properties": ["black, white, coffee table", "Shelf, color, white"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, material, structure", "image, building, stairs"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with stairs?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small white house with a staircase and a window."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "9eb88d17310d42dda9e17883e9922525"], "properties": ["Drawer, Handle, Wood", "house, staircase, window"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["s, stick, leaf", "room, door, shelf"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["Cabinet, Drawers, Filing", "island, mountain, grass"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a small white building with stairs and a white table."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, mouth, eyes", "building, stairs, table"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["arm, light, sign", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a skateboard", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["floor, staircase, table", "island, terrain, water"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, pink", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small orange piano with legs."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, shape, and material", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, black, white", "Eye color, Black, Purple"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, roof, white, cubes", "building, color, black and white"], "captions_pred_pc": ["above a black and white image of a map", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["- material is plastic- color is white- shape is cylinder", "Steel, Color, Yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a building"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof truss, insulation, suspended ceiling", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": [" of a metal screw", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["67c7d3e9744e4f5f865af34e803dca80", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["metal, screw, head", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a screw on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a screw on a white background", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, material, shape", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d printed ring with a unique design", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a wooden roof structure with a pink roof."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a large house with a roof on a platform."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, green, tiled", "roof, platform, house"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a small orange piano with legs.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color is orange, size is small, legs", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which object has turrets", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small white house with a roof."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["floor, wall, roof", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " of two rocks with ice elements."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["tv, chair, laptop", "image is a rock with ice elements"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["roof trusses, beams, suspended ceiling", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a silver vintage racing car.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, silver, vintage", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a vintage racing car", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a small triangular-shaped object."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "2d02985030804209a26c2c53b96a06f9"], "properties": ["shape, color, material", "shape, triangle, small"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small white building with stairs and a white table."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "e30374c614f54fdb90f35b96b071349d"], "properties": ["food, leaves, shredded paper, rocks", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is cylinder, color is white, material is plastic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a white rocking chair with a curved backrest."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["hat, food, bowl", "backrest, curved, yes"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["small purple teapot with a hook.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, purple, hook", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "127753bf17de4252aaa7ea88f274545e"], "properties": ["- material is plastic- shape is dice- color is white", "face, mask, tail"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a small blue and red blimp.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black circular object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, light", "island, terrain, water"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["rusty, sink, graffiti", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "1c389c8f46b345838e515b9747c1f982"], "properties": ["size, material, color", "plate, fruit, knife"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a person riding a skateboard on a wooden surface"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["- material is wood, metal, metal", "a, material, steel"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a large metal structure"], "question": "which object is made of metal", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["computer desk, laptop, monitor", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["wing, knife, boat", "grass, plants, rocks"], "captions_pred_pc": ["a black umbrella on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["frame, truss, roof", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["mug is purple, cup is black, candle is black", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, white, pink, eyes", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a bear's head", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, tree, pool", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, plastic", "a, material, clay"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- material is plastic- color is white- shape is cylinder", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a small white house with a roof."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, number", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["apse, roof, floor plan", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "an image of a pile of trash on the ground"], "question": "which entity has grass?", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " of two rocks with ice elements."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, suit, cell, phone, gun", "image is a rock with ice elements"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "5414d75e47104589837f3df8b6de6d22"], "properties": ["white, windows, lid", "beige, white, round"], "captions_pred_pc": ["above a black and white image of dots on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a white house with three windows", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["castle, island, house", "house, roof, green"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " of two rocks with ice elements."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, beams, chimney", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a wooden roof structure with a pink roof."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["hat, shirt, bearded", "roof, color, pink"], "captions_pred_pc": ["of a black and white bracelet on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" a white cube.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ac106824231a491aba5bca1bc03824fc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white image of a dotted square on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white cube on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["c553ba67fa914165a07a1f1d20581f19", "e694d53545d449319a64cceb0280c3c6"], "properties": ["cat, bowl, donut", "3d, slide, swing"], "captions_pred_pc": ["a close up view of the back of the chair", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "09f2cf267e954c958828325067bcc36a"], "properties": ["hat, bag, blanket", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, screen, drawer", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " of a white sheet of paper or box on a gray background."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "7b0c1e02d9b14f2fae4f1f7040661cc7"], "properties": ["color, blue, components", "color, white, background, gray"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white photograph of an object"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, brown, flat", "black, roof, green"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, white, plastic", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["smiley-faced banana .", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["a, rock, paper", "house, tree, pool"], "captions_pred_pc": ["for a flock of birds in the sky", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " of a white human skull with broken bone elements."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a, bird, lake", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a house with a blue roof.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, color, blue", "roof, truss, lamp"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a metal roof"], "question": "which roof is pink", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["- material is plastic- color is white- shape is cylinder", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["house, lake, pool", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure with brick detailing?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a white of a house with a hole in the ceiling."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["floor, staircase, balcony", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["frame, beams, trusses", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, white, containers", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": ["a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["4839e3b998ff4f6a84de50488ffae3ba", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["a, building, roof", "a, building, roof"], "captions_pred_pc": ["for a black and white drawing of a person holding a pencil", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of the space shuttle", "a 3d model of the space shuttle"], "question": "which entity has a flying plane", "label": 0}, {"captions": [" a pink-framed building structure with beams and trusses.", " a wooden roof structure with a pink roof."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["frame, beams, trusses", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["apse, roof, floor plan", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a house with a wooden-framed roof structure."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, table, chair", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["fireplace, bench, log", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a large steel building with a pool."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, ceiling, kitchen", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["water, river, island", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a spider-like creature with long arms and legs."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["shape is sphere, color is white, material is plastic", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, bag, blanket", "hat, watch, clock"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- material is plastic- color is green- shape is box", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small white house with a roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["background, color, white", "roof, color, white"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["a, bird, lake", "buildings, houses, grass"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a bow and arrow set", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "c8936ace72954650b4e2d84246964849"], "properties": ["arrows, bow, set", "roof, color, pink"], "captions_pred_pc": ["for a black and white illustration of a bee", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d model of a house with a roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["container, powder, white", "house, pool, balcony"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a clear plastic container with a white label on it", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["e098706085a44898abbd549693d12a64", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color is black, white, orange", "broom, shovel, fireplace"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house with a blue roof.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, color, blue", "door, roof, pool"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a door?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, temperature, england", "stair, table, chair"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, purple, suspended", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " a wooden roof structure with a pink roof."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["container, powder, white", "roof, color, pink"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a clear plastic container with a white label on it", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, roof, green, frame, red", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a yellow circle with a black outline."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "eb66c6426b50452ab8c92adfeec13d85"], "properties": ["color, skyline, buildings", "color, outline, circle"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a dotted circle on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "the silhouette of an island in the shape of a circle on a gray background"], "question": "which object has a black outline?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "c3a82df41875402285608ef13a55df57"], "properties": ["door, roof, pool", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "a17477b445b3443189dad22f768b888b"], "properties": ["a, b, c", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a crab holding a rubik's cube.", " of a crab holding a rubik's cube."], "sample_ids": ["d351e74340e14ef09fb24b69dd4a6502", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["image is a crab holding a rubik's cube", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of a spider on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a black and white image of a crab holding a cube", "a black and white image of a crab holding a cube"], "question": "which entity is a photograph of a crab holding a rubik's cube?", "label": 0}, {"captions": [" a house with a green roof and lawn.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["roof, green, lawn", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a table with stairs"], "question": "which object has a light fixture", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["door, roof, pool", "house, tree, pool"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, stairs, shelves", "throne, chair, building"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["leaf, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small white house with a roof."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, handle, zipper", "roof, color, white"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, texture", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["hat, cup, bowl", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "c8936ace72954650b4e2d84246964849"], "properties": ["color, red, green, blue", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a wooden shed with a gray roof."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, sword, gun", "hat, skull, bread"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["location, highway, train station", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a wooden staircase with a railing and table."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "956247bea850458199c651037d4b1d7f"], "properties": ["a, head, bowl", "railing, table, staircase"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a table with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, texture", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["color, table, ceiling", "shape is box, color is white, door is present"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white, open shelving unit"], "question": "which building is white", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "b896a0898efe4059a776193c02132129"], "properties": ["door, stairs, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a black and gold pistol.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, gold", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["color, sphere, molecule", "nut, bowl, ring"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d rendering of a white object on a gray background"], "question": "which entity has more rings", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small house with stairs and a roof."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a, bird, hook", "roof, stairs, house"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, shape, and size", "roof structure, truss, ceiling"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house with a flat roof structure."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, color, blue", "roof, flat, structure"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a four-legged metal workbench with shelves."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, dragon, cloth", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, background, arrows", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "3f010c9478164c3db00cab997fdafa40"], "properties": ["apse, roof, floor plan", "arm, light, sign"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on"], "question": "which entity has a sign?", "label": 1}, {"captions": ["a gray background featuring a white arrow, black arrow, and white and black lines in the middle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b96714473acd40f888d4d005c48b10dc", "b896a0898efe4059a776193c02132129"], "properties": ["color, arrow, background", "- material is stone, metal, concrete"], "captions_pred_pc": ["a person holding a toothbrush in the shape of a toothbrush on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a black and white striped box.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, black, white", "a, color, red"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a white castle composed of small cubes."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, shape", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, green, lawn", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, letter", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the letter 'x'", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a person jumping on a trampoline."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["color, material, structure", "person, jumping, trampoline"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white diamond belt"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which entity is a person jumping on a trampoline?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "be1376023c274bdda995d54f3694157f"], "properties": ["color, shape, poles", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a177693cc8c7428292680816001b48c6"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "black, white, laptop"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a dishwasher with a dish inside it"], "question": "which entity is a coffee table?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["painting, door, wall", "hat, color, tan"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of an object with a hole in it"], "question": "which object has a hole in it", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is purple, material is plastic, number of legs is four", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, orange, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a wooden staircase with a railing and table."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "956247bea850458199c651037d4b1d7f"], "properties": ["color, tan, brown, orange", "railing, table, staircase"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white drawing of a window"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a white building with a red roof."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, trusses, beams", "color, white, roof, red"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "6b745457e06840119058883b35f78f58"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["black, white, laptop", "striped, white, black"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["55b26130f1514032be078e13fd982905", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, material", "color, frame, shape"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a white castle composed of small cubes."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, shape", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a red, blue, and green striped tower building."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["house, roof, wooden", "color, red, blue, green"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is more colorful", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, hill, forest", "house, fence, playground"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a room with a lot of wires"], "question": "which entity has a house with a fence?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, structure, house", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with a roof"], "question": "which structure has a roof made of wood", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, mouth, eyes", "house, fence, playground"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building with yellow lines."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, table, ceiling", "color, yellow, lines"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a drawing of an airplane flying over a city"], "question": "which building has a yellow line?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "3f010c9478164c3db00cab997fdafa40"], "properties": ["- material is plastic- color is white- shape is cylinder", "arm, light, sign"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of a skateboard"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on"], "question": "which object has a light?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["ceiling, light, desks", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a house with a roof and beams."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, roof, blue", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a clay pot with holes in it."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["building, fence, snowy", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["cup, bottle, chessboard", "island, terrain, water"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["roof, room, ceiling", "ceiling, light, desks"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a white human skull with broken bone elements."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["location, field, gravestone", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a roof.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, house, small", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "6b745457e06840119058883b35f78f58"], "properties": ["building, skyscraper, city", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["white cube", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7ddfa25dc0d448c390b2227ed83616cc", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, shape is cube, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a train, a ship, a boat", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a machine gun.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "bded33af34104b9686b845dfd18309a9"], "properties": ["gun, barrel, caliber", "table, staircase, light"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, bow, arrow", "hat, dress, racket"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity is a woman?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a pontoon boat with two seats and a canopy."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "dccff5eccf6943f8b14cd269710ae6ff"], "properties": ["color, shape, and size", "seat, canopy, pontoon"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a leopard print purse"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10"], "question": "which entity has a canopy", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["base, speaker, light", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a room, a cake, a table", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a plane?", "label": 1}, {"captions": ["a small yellow portable power generator.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9127ac84a3c84d56be6e3993ed350eff", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["power, yellow, generator", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white drawing of a speaker", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a portable generator", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["shape is turtle, color is green, white", "frame, truss, roof"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a bridge over a road"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, color, white", "house, table, chair"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["097c2f404b6c45c98da55ed95cc24f72", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["spheres, lamp, city", "spheres, lamp, city"], "captions_pred_pc": ["a black and white photograph of a turtle in the shape of a molecule", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a 3d model of a futuristic spaceship", "a 3d model of a futuristic spaceship"], "question": "which entity has a city", "label": 0}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "a17477b445b3443189dad22f768b888b"], "properties": ["color, green, leaf", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a small building with a balcony"], "question": "which entity has more pillars", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a small white building with stairs and a lid."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["- color is red, blue, pink", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a white of a man with arms outstretched."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a white castle composed of small cubes."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, skyline, buildings", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a large rock with a hole in it.", " a clay pot with holes in it."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["size, shape, material", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a large white and metal building with a metal roof structure."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, truss system, framing", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, lake, boat", "house, rock, bird"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "7f8942ef51dd4246993a587a12df168c"], "properties": ["floor plan, heating system, ceiling light fixture", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["handle, knife, shotgun", "stair, table, chair"], "captions_pred_pc": ["of a popsicle on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a gnome toy wearing a striped hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "72f220d616de466fa1315c1c9bbb5c4c"], "properties": ["hat, sword, gun", "hat, toy, gnome"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white photograph of a crocodile"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a stuffed gnome wearing a striped hat"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a four-legged metal workbench with shelves."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["resembles, toy, bookshelf", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": [" of a person breaking through a brick wall.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0708be2186d24d52815e8ac9d751fc37", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["image, brick, wall", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white illustration of an ice cream cone", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a person breaking through a brick wall", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a white shelf with holes and brackets."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, blue, components", "color, white, holes"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a house with a green, wooden-structured roof."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["a, hill, deer", "roof, color, green"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a house with a triangular roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white and red lego gazebo with a pixelated design and 3d structure.", "a featuring white and red cubes, and a pink and white chair."], "sample_ids": ["9c628774529c489aaa7abb1a6dfb2140", "f2c44a82ba744ba8b93e9a1c2272c117"], "properties": ["gazebo, color, white, red", "color, white, red, pink"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background, resembling a snowflake", "a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a gazebo in white 3d printed material", "a 3d model of a white structure with stairs"], "question": "which entity has more white", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a house with wooden framing and trusses."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["size, material, logo", "frame, trusses, wood"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "a17477b445b3443189dad22f768b888b"], "properties": ["beige, head, bottle", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["metal, rusted, paper", "paper, hole, sign"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has more holes", "label": 1}, {"captions": [" of a green trash can with graffiti on it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["388f3f2e2a98442f9b8a71d3c33defae", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, trash, can", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of an object in the water", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a trash can royalty free 3d model preview no 2", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "d49d8ed244094349a99e4faca05e0690"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, floor, columns", "building, room, sky"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a lantern on a table.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a, table, lantern", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a lantern on a table", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a flat roof structure.", " a large house with a roof on a platform."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, flat, structure", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a wooden-cased radio."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, material", "case, material, wood"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, orange, leather", "mossy, rock, grass"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": [" of a set of three white shelves or ceiling panels with lines.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ff6f8c2347ab4c17a2b3e319b205f191", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["set, white, lines", "box, paper clip, lock"], "captions_pred_pc": ["a set of black and white dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d illustration of a set of three white trays on a gray surface", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a house with wooden framing and trusses."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["shape is cube, color is black, white", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of a window"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, hat, glasses", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a brake pad", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a four-legged metal workbench with shelves."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["yellow, table, roof", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a blue human brain.", " a black and white striped box."], "sample_ids": ["06b780971c1d474faadc005c1036f1f7", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, shape, size", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a human skull with dots", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a human brain royalty free 3d model preview no. 1", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["shape is box, color is white, door is present", "building, material, stone"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["houses, trees, road", "image, city, spoon"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a house with wooden framing and trusses."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a, hole, shelf", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "61c172ff745848f29d2527f4e5eb1bdb"], "properties": ["s, plane, house", "collection, plane, car"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a piece of paper"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a knife blade royalty-free 3d model preview no. 3"], "question": "which entity has a plane", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["Brown, metal, lock", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "c3a82df41875402285608ef13a55df57"], "properties": ["bed, desk, window", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " of a crab holding a rubik's cube."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["chest of drawers, cabinet, white", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1d1328346a464d2482463d6d5288e934"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "painting, door, wall"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a painting on the wall?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "c3a82df41875402285608ef13a55df57"], "properties": ["painting, door, wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["image, color, pink", "roof, color, blue"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a building with many windows"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, lake, pool", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a plant growing out of a rock"], "question": "which object is on a white object", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["image is royalty-free, beaver, skateboard", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " of a wooden table and chair."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["Object, Table, Oranges", "table, chair, wood"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a white sculpture, resembling a horse and paper plane, on a gray background."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "179b4438edfc4a43a27a83784f38ff4b"], "properties": ["light source, fixture, color", "color, background, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white image of a sculpture in the shape of a bird"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d printed sculpture of a horse's head on a gray background"], "question": "which entity is white", "label": 0}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["sandbox, sand bucket, wooden blocks", "room, furniture, window"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small building with stairs and a glass floor, featuring a square table and a black square ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8aaad713b8834739b008ccf2f3d86cce"], "properties": ["color, shape, and size", "floor, table, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a window"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white 3d model of a staircase on a platform"], "question": "which entity has a floor", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "7e7272f3ddc24551905eccb63f3da42e"], "properties": ["hat, toy, gnome", "hat, bag, blanket"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white illustration of a cell with dots"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d printed sculpture of a baseball player holding a bat"], "question": "which toy is holding a bag", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with a roof and beams."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, black, white", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["floor plan, bathroom, pool", "lighthouse, fountain, crater"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, shape, text", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a large metal building with a roof and truss structure."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, number", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["brown, paint, tape", "building, room, sky"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a small purple plastic chair with holes."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["bowl, pottery, headpiece", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["lizard, rock, stuffed animal", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 0}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a white of a woman with her arms outstretched."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["orange, forklift, parking lot", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "c3a82df41875402285608ef13a55df57"], "properties": ["fireplace, bench, log", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small house with stairs and a roof."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a, ball, mushroom", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["roof, trusses, beams", "grass, plants, rocks"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["mossy, rock, rocky", "paper, hole, sign"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["earbuds, light, ring", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a large metal bomb.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["00c6c9da8a3943e8b096c1a3134d1d8d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, shape", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a dome shaped object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an industrial ventilation fan", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, plastic", "throne, stairs, tree"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a throne with a tree on it"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, white, material, ceramic", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a close up of a black object on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, yellow", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["graffiti, chinese writing, door", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, roof, white, cubes", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "c3a82df41875402285608ef13a55df57"], "properties": ["turrets, flags, towers", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small house with a yellow roof and chimney."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, metal, white", "roof, yellow, chimney"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which building has a chimney", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small white building with stairs and a white table."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "e30374c614f54fdb90f35b96b071349d"], "properties": ["frame, beams, trusses", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a wooden roof structure with a pink roof."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, color, pink"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["table, stairs, ladder", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["metal, laptop, light fixture", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a corner shelf", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, structure, greenhouse", "roof, color, yellow"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a green circuit board."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, texture", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of the item in the image"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a spider-like creature with long arms and legs."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor plan, heating system, ceiling light fixture", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "887e410d07854396b563325ae1929583"], "properties": ["houses, trees, road", "hat, mouse, bear"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a small white building with stairs and a white table."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "e30374c614f54fdb90f35b96b071349d"], "properties": ["compartments, wall-mounted, vents", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a numbered rock.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["number, color, shape", "paint, rust, concrete"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a 3d model of a concrete wall"], "question": "which object is more likely to be a rusted metal feature", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a house with a green, wooden-structured roof."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["- material is plastic- color is green- shape is box", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white wooden crate.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["8f4cf8c72e424d9386406b40dbe56501", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, material, shape", "structure, roof, pitch"], "captions_pred_pc": ["a black and white square with dots on it", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a wooden crate royalty free 3d model preview no 3", "a 3d model of the roof of a house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a pink and white gun.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, pink, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a rocket launcher", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["two-story, roof, building", "structure, roof, pitch"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, white, red, pink", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a large metal building with a roof and truss structure."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "b85a99699ccd4bcba213322113bb253d"], "properties": ["background, color, white", "roof, truss, structure"], "captions_pred_pc": ["a black line on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a building with blue metal framing and structure."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, door, window", "color, blue, structure"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building under construction"], "question": "which building has a blue structure?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, shape, and size", "costume, color, black"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "a, material, clay"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a small white building with stairs and a lid."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, black, white", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["floor plan, ceiling light, color", "house, building, people"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "127753bf17de4252aaa7ea88f274545e"], "properties": ["Drawer, Pattern, White", "face, mask, tail"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", "a white of a woman with her arms outstretched."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["3ds max, obj, fbx, c", "image, color, white"], "captions_pred_pc": ["a black and white insect on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["frame, chalkboard, color", "door, lock, handle"], "captions_pred_pc": ["of a black and white image of a television on a wall", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, material, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small white house with a staircase and a window."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, black, shade, black", "house, staircase, window"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["size, material, wheels", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is smaller", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "832a022cdcc74763b0571e04af4e592b"], "properties": ["door, white, structure", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, green, squirt gun", "house, fence, playground"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " of a crab holding a rubik's cube."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["white, top, writing", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a large metal building with a roof and truss structure."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, handle, zipper", "roof, truss, structure"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "of a metal grate on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house with a roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, house, small", "low poly, plant, white"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, holes", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, red, pink", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an ancient statue"], "question": "which entity is made of more metal", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "bf18bfd89efd43389781050230467d58"], "properties": ["color, light, jewels", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["turrets, flags, towers", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small building with windows and a roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, metal, white", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " of a small wooden house with a roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["house, staircase, window", "roof, house, wooden"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", "s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "a267d906e4cf4d36bfe841c6cc9e698b"], "properties": ["s of, snowboard, shoes, mask", "s of, snowboard, shoes, mask"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white image of a person standing on a piece of paper"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a black and white image of a surfboard flying through the air"], "question": "which entity has a skateboard", "label": 0}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["apse, roof, floor plan", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a wooden shed with a gray roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, color, blue", "roof, color, gray"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " of a small white building with stairs and a lid."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, texture", "building, stairs, lid"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a potted plant on a wooden table or shelf."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["red, pile, garbage", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, brown, flat", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["a lamp, a syringe, a light pole", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "of a spike on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, pink, green", "color, white, plastic"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, trusses, ladder", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["bed, desk, window", "torso, breasts, pattern"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, shape, material", "color, white, gold"], "captions_pred_pc": ["of a black and white drawing of a purse", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["painting, door, wall", "torso, breasts, pattern"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color is purple, material is plastic, number of legs is four", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white image of a baby carrier", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a small white house with a roof."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, color, pink", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["shape is cylindrical, color is silver, material is metal", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3cbdd3ff48804f9a8041b890838613ec"], "properties": ["color, shape, and size", "acropolis, city, building"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview"], "question": "which entity is a city?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, table, ceiling", "table, structure, roof"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with many pillars"], "question": "which entity has a table with a roof?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a green mountain with trees and grass."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["low poly, llama, kangaroo", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a cube with a wooden ball on top."], "sample_ids": ["b5afccae993346079483507296fbb029", "874f49c0bdd04c9cbcc54fcac1a337ad"], "properties": ["shape is square, material is metal, color is rusty", "shape is cube, material is wood, color is white"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "in one line a black and white image of a square made up of tiny dots"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a ball sitting on top of a cube"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, rings", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["- material is metal - weight is 0 - height is 0", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["building, room, sky", "color, shape, color"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, green", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["building, plane, room", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a wooden shed with a gray roof."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, building, people", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["resembles, toy, bookshelf", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a small island?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["fireplace, bench, log", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "bf18bfd89efd43389781050230467d58"], "properties": ["bread, knife, board", "Lights, number, five"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, structure, truss", "structure, roof, pitch"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "674a36147ffb47059e48abc9fa19d923"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity is more likely to be found in a playground?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "411c164757fc4de68dfecb35fa858223"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "4df70180f2ea400782d2e2de76063894"], "properties": ["- material is wood, metal, metal", "color, black, blue"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is a black and blue color?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "745fed115c5343dab9d7f0c389c98902"], "properties": ["hair, legs, wings", "costume, color, black"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a white of a spaceship and building."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["location, field, gravestone", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "b896a0898efe4059a776193c02132129"], "properties": ["shape, bathroom, refrigerator", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, shape, and size", "building, window, skeleton"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a small building with a staircase in a room."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["image, building, stairs", "room, staircase, building"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- material is metal- color is silver- texture is textured", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a building with yellow lines."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, material, pattern", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white drawing of a map"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["building, floor, columns", "apse, roof, floor plan"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a building in the shape of a pyramid"], "question": "which building has a flat roof", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["boxing gloves, heart, hand", "meat, bread, sausage"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of the human heart", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "ee440fcbc493488e879539d37a8d820e"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, shape, texture", "color, black, blue"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is black and blue?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, purple, suspended", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "97e000ff41094665afd94ea565da8b13"], "properties": ["text, material, shape", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["44723e86bdd14071b0544745879604de", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["resembles, bar, soap", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["yellow, table, roof", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a spiral staircase with a railing in a small building."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, gazebo, table", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a gray, metal pillar/cylinder."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["resembles, toy, bookshelf", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a book cover", "of a black candle on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["throne, chair, building", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["roof, structure, house", "building, color, white"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a small building with windows and a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, windows, building", "building, roof, yellow"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": ["white dragon with wings, .", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "745fed115c5343dab9d7f0c389c98902"], "properties": ["wings, white, dragon", "costume, color, black"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a green mountain with trees and grass."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["image is a sculpture of an angel on a wall", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a wooden frame with a picture in it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9dcf94c293de427daba9dceee624e728", "bf18bfd89efd43389781050230467d58"], "properties": ["picture, frame, material", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a long, decorative piece of jewelry", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a framed picture on a wall", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["bed, desk, window", "house, fence, dog"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a house with a wooden-framed roof structure."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, and material", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a tree stump and rock with flowers on them."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["color, temperature, england", "flower, rock, tree stump"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has more flowers", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small house on a hill in a field."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["desk, chair, table", "house, hill, field"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, white, black, white", "building, plane, city"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a wooden-handled axe .", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["handle material is wood, head material is metal, overall length is long", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a two-story small apartment building with a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, rock, pond", "two-story, roof, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a house with a blue roof.", " of a small wooden house with a roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, color, blue", "roof, house, wooden"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "be1376023c274bdda995d54f3694157f"], "properties": ["color, table, ceiling", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "887e410d07854396b563325ae1929583"], "properties": ["color, horns, features", "hat, mouse, bear"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is a teddy bear?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "97e000ff41094665afd94ea565da8b13"], "properties": ["metal, rusted, paper", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a wooden shed with a gray roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["room, door, shelf", "roof, color, gray"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, house, wooden", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which house has a roof", "label": 1}, {"captions": [" of a city map", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1c498634f9ef42e6b686ee7370aaca26", "b896a0898efe4059a776193c02132129"], "properties": ["location, scale, type", "- material is stone, metal, concrete"], "captions_pred_pc": ["a line of black and white dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d printed map of london royalty-free 3d model", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["A, a, a", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small wooden house."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, door, cross", "house, material, wood"], "captions_pred_pc": ["above a black and white image of a map", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a white castle composed of small cubes."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "building, color, black and white"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["screen, keyboard, box", "door, roof, pool"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small pink stone pillar/column.", " of a clear glass display case with a square light fixture."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "980ded888795417f94b46750105e1597"], "properties": ["size, material, color", "light, fixture, square"], "captions_pred_pc": ["a black and white image of a small square with black dots", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a clear plastic box"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["roof, room, ceiling", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a gray, metal pillar/cylinder."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["yellow, table, roof", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "7407a108e0354925b83b750339bc03df"], "properties": ["roof trusses, beams, suspended ceiling", "platform, color, orange"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange in color?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, wheel, helmet", "stair, table, chair"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["building, tree, plane", "building, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a small white house.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["4ca5999ea9eb4184a7d1f486687ad989", "a2354f13774340d392fbf33564934aab"], "properties": ["size, color, shape", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a person holding a box", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small house on a white background", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["water, river, island", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a wooden billiard table with legs."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "white ceramic urn with a red lid."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["- material is plastic- color is green- shape is box", "color, white, lid, red"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, pier, railings", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "c3a82df41875402285608ef13a55df57"], "properties": ["color, orange, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a small building with windows and a roof."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, pink, green", "roof, windows, building"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white box with a green light.", " white crocs clogs with blue straps and holes."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "4622e88fd9264b37997671efeb73af85"], "properties": ["color, white, light", "color, white, blue"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity is white with blue?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white teapot with pink flowers and a handle."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f6c5e8931d164979a71914127c7e5438"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, handle"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a white tea kettle with a black handle and floral design"], "question": "which object has a handle", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, texture", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a house with a roof and beams."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a patterned rug", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["texture, spikes, eyes", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " a gray, metal pillar/cylinder."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["red, sphere, resembles", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a black candle on a white background"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "12093c89a60941e7884b252bdc05104c"], "properties": ["yellow, table, roof", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is stone - color is blue - shape is arrowhead", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, green, orange, star", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["white pendant light fixture ()", "a black and white of a knife/sword with a handle."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color is white, material is metal, light source is incandescent", "image, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "of a black and white knife on a white background"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house with wooden framing and trusses."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["structure, roof, pitch", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house under construction"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["green, hat, cream", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a pair of earrings", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, house, small", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a large steel building with many columns and a pool."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["tiers, building, stairs", "building material, pool, steel"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["background, color, white", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green skull and sphere.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, skull, sphere", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["55b26130f1514032be078e13fd982905", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, green", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large building with a roof and windows.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["roof, windows, building", "throne, chair, building"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a wooden billiard table with legs."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, and material", "legs, material, wood"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "modern tan leather lounge chair."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["color, blue, components", "color, tan, leather"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a gray leather lounge chair with a metal base"], "question": "which object is made of leather", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a house with a flat roof structure."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, logo", "roof, flat, structure"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "7407a108e0354925b83b750339bc03df"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "platform, color, orange"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, sphere, molecule", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "a2354f13774340d392fbf33564934aab"], "properties": ["color, roof, tray", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a wooden shed with a gray roof."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a knife, blade, handle", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a shed with a gray roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, metal, white", "roof truss, beams, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["roof truss, insulation, suspended ceiling", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "d81d13362ae04371bb2cba46e4939665"], "properties": ["house, roof, blue", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small house and barn", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" a purple chair with holes in it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, purple, holes", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white chair", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "06a1c233fb444830b577aa06e2c01294"], "properties": ["yellow, table, roof", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["resembles, toy, castle", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["balcony, stairs, house", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a black and white 3d model of a building"], "question": "which building has a staircase?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "bded33af34104b9686b845dfd18309a9"], "properties": ["metal, legs, wheels", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["red, mouse, handwriting", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a sword and knife.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, sword, knife", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "97e000ff41094665afd94ea565da8b13"], "properties": ["flower, rock, tree stump", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a green mountain with trees and grass."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, tree, rock", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, size", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["854757ca755240f8b04576d899349151", "06a1c233fb444830b577aa06e2c01294"], "properties": ["cabinet, room, shelf", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "dd3a9323ed514ccab330973ff9588015"], "properties": ["house, lake, pool", "room, bed, desk"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["- material is wood - color is white - height is 1.8 m", "metal, legs, wheels"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " of a small white building with stairs and a lid."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, material", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a patterned rug", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, wall, color", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["house, yard, surrounding buildings", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a rock formation on a gray background"], "question": "which image has a rock formation?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a white glass beer mug."], "sample_ids": ["b5afccae993346079483507296fbb029", "1d686cbd3e9a4c629a43088658989286"], "properties": ["shape is square, material is metal, color is rusty", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a white glass beer mug."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, island, water", "color, white, glass"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, shape, and size", "color, head, white and brown"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a white castle composed of small cubes."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, blue, structure", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a castle made of white cubes"], "question": "which structure is composed of small cubes", "label": 1}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["polygonal, helmet, triangular details", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "two white spheres in a ."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "1c02212a35134545ab63ab180d629c31"], "properties": ["base material is wood, color is red, message is welcome to northwich", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a white ball on a gray background"], "question": "which object is more abstract", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, white, containers", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, city, train", "s, laptop, printer"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a black and white image of an electronic device"], "question": "which entity has a train track?", "label": 0}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, red, apples, tree, cactus, dots", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a house with a green, wooden-structured roof."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, tower", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is stone - shape is bat", "a, material, clay"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a white of a house with a hole in the ceiling."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, air conditioner, house", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " of two rocks with ice elements."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, character, mario", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white sculpture of a person", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["light, toilet, faucet", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a pixelated-textured purple sphere ."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, and material", "texture, color, shape"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, structure, house", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a yellow toy truck with large tires and a load of sticks.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4e82177059204292899fa7415164a05e", "b896a0898efe4059a776193c02132129"], "properties": ["yellow, tires, load", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a monster truck with spikes", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["color, table, ceiling", "ceiling, beams, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a brick wall with a roof on top"], "question": "which ceiling is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is plastic- color is white- shape is cube", "rusty, warning, metal"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a house with a hole in the ceiling."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, shape, and size", "image, house, ceiling"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a house"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["color, shape, material", "building, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["sandbox, sand bucket, wooden blocks", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, staircase, window", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a table with a red and white striped base.", "a white glass beer mug."], "sample_ids": ["1c5f4bb610644327ad0db547adb5499e", "1d686cbd3e9a4c629a43088658989286"], "properties": ["base, color, red, white", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of an object that is made up of many small dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white desk with two legs", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small triangular-shaped object."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "2d02985030804209a26c2c53b96a06f9"], "properties": ["floor, staircase, railings", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["face, handle, spout", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a white human skull with broken bone elements."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["roof trusses, beams, suspended ceiling", "color, white, skull"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a human skull in white"], "question": "which entity is not a human skull?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small wooden house."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, truss, suspended ceiling", "house, material, wood"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["f1b557775310478893242180defa4d80", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["shack, roof, door", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", "white ceramic urn with a red lid."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color, white, blue", "color, white, lid, red"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is white with a red lid?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "f1b557775310478893242180defa4d80"], "properties": ["red, mouse, handwriting", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white house with a roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["water, river, island", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a house with a flat roof structure."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, shape, texture", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": ["3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e694d53545d449319a64cceb0280c3c6", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["3d, slide, swing", "room, furniture, window"], "captions_pred_pc": ["for a 3d model of the letter 'j'", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a playground slide", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a large house with a roof on a platform."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, material, wood", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a group of ponies in a row."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["a, desk, laptop", "group, row, pony"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, truss, lamp", "Lights, number, five"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a wooden roof structure with a pink roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, plane, town", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["bed, desk, window", "island, terrain, water"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["bird, nest, wood", "arrow, red, white"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["painting, door, wall", "island, terrain, water"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, pink", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a metal grate", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a long metal fence"], "question": "which structure has a truss roof", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, house, small", "roof, color, pink, blue"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which house has a roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["color, tan, brown, orange", "spiked, baseball bat, hammer"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black star on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a baseball bat"], "question": "which object is not a baseball bat?", "label": 1}, {"captions": [" of a large axe with a cross on top.", " of two rocks with ice elements."], "sample_ids": ["4b6734945e204158b076a429a30ce2e9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["axe, cross, top", "image is a rock with ice elements"], "captions_pred_pc": ["for an axe on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of an axe on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a white of a spaceship and building."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, sphere, molecule", "image, building, spaceship"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["white ferris wheel ", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["07020a01030c40869ceece7b739621b5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color is white, wheel is ferris, color is white", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a cross", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ferris wheel royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["broom, shovel, fireplace", "plane, ship, bird"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, and size", "room, door, shelf"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an empty room"], "question": "which entity has a door", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small, snow-covered house."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a flying saucer", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" a snowy mountain island.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fe8520ec650248fa92ba07bb95712b09", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["mountain, island, snowy", "island, mountain, grass"], "captions_pred_pc": ["for a black cross on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a volcanic eruption", "a 3d image of a small island in the middle of a lake"], "question": "which island has grass?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, white, black, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["house, tree, pool", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "d81d13362ae04371bb2cba46e4939665"], "properties": ["mannequin head, plague mask, straps", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "832a022cdcc74763b0571e04af4e592b"], "properties": ["red, sphere, resembles", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["cc4ccf85d4c1425cb5975b8b5664d38a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["paper, hole, sign", "house, rock, bird"], "captions_pred_pc": ["a silhouette of a map of the state of karnataka, india on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["an image of a torn piece of paper in the shape of a map", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small white house with a roof."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["earbud, earpiece, earpiece", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " of two rocks with ice elements."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["boxing gloves, heart, hand", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the human heart", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c1536f68727947ff9e7810799fac583a"], "properties": ["balcony, stairs, house", "level, stairs, columns"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of an apartment building"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["collection, plane, car", "a, material, steel"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, dragon, cloth", "a, color, white"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a desk and chair"], "question": "which entity is not a painting?", "label": 0}, {"captions": [" of a blue and white shelf, cube, and tube.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, material", "room, furniture, window"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, white, containers", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with various objects", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["building, stairs, shelves", "room, staircase, bus"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a wooden roof structure with a pink roof."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, hole, rock", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["color, red, blue, green", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a white, open shelving unit"], "question": "which building is white", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["roof, air conditioner, house", "tv, chair, laptop"], "captions_pred_pc": ["a black and white illustration of a window", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "7e7272f3ddc24551905eccb63f3da42e"], "properties": ["hat, bag, blanket", "hat, bag, blanket"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a cell with dots"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d printed sculpture of a baseball player holding a bat"], "question": "which entity has a hat", "label": 0}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a house with a flat roof structure."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "abc52d210d71415296730bb00352ce6f"], "properties": ["a, roof, soup", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " of a small white building with stairs and a lid."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["meat, bread, sausage", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a brush on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a white glass beer mug."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, horns, features", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a glass pitcher"], "question": "which object is white", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["a, desk, laptop", "hat, pants, shirt"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a white human skull with broken bone elements."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "color, white, skull"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a human skull in white"], "question": "which entity is a skull?", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", "a white of a man with arms outstretched."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["beige, head, bottle", "image, color, white"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a small building with camouflage pattern in a field."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "0c75e4ce947a4c25ad1b7e5cb4e7a9a1"], "properties": ["graffiti, chinese writing, door", "building, pattern, field"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 or fewer words a black and white image of a couch"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a small building in the middle of a desert"], "question": "which building has a pattern", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a white building with a red roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, door, window", "color, white, roof, red"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["turrets, flags, towers", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a blue roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, blue", "roof, metal, white"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "1d1328346a464d2482463d6d5288e934"], "properties": ["color, white, red, pink", "painting, door, wall"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a painting on the wall?", "label": 1}, {"captions": [" a small house with a red roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["085db9059b744673b5623b5338e02196", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, red, house", "low poly, plant, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of two rocks with ice elements."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, light", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, roof, block", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "4a889132cc444d10bfcbf6c760984416"], "properties": ["floor plan, ceiling light, color", "a, color, white"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a desk and chair"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a person breaking through a brick wall."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["apse, roof, floor plan", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- material is white- color is white- texture is textured", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a cube", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["water, boat, rock", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, roof, white, cubes", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a city on a white background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a small white airplane flying in the air."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, plane, sky", "airplane, color, white"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "of a black and white image of a clock"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a small airplane"], "question": "which airplane is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a staircase, small red and white building, red box, table, and ceiling light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "11e2e8ca1f8849e394dfbf532c6d7ae0"], "properties": ["yellow, table, roof", "a, building, staircase"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white photograph of a piece of metal"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a staircase in the middle of a floor"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "b896a0898efe4059a776193c02132129"], "properties": ["size, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small white house with a roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, table, chair", "roof, color, white"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, texture", "metal, rusted, paper"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white image of a piece of debris on the ground"], "question": "which entity is more rusted", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is stone - color is blue - shape is arrowhead", "metal, cross, clock"], "captions_pred_pc": ["above a black and white drawing of an arrow", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, pen, logo", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white toothbrush on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["structure, roof, pitch", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, white, pen, logo", "house, tree, pool"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["broom, shovel, fireplace", "building, room, sky"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a wooden shed with a gray roof."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, island, resembles, hawaii", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a small trailer and a white box.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["box, trailer, white", "room, door, shelf"], "captions_pred_pc": ["a black and white image of a cell phone", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a person breaking through a brick wall."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["- material is plastic- color is white- shape is cylinder", "image, brick, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a spider-like creature with long arms and legs."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, lake, pool", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a large building", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " of a white human skull with broken bone elements."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, logo", "color, white, skull"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of a white chest of drawers with legs."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a multicolored metal building structure with a roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, white, yellow, roof, metal", "color, roof, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a white building with a red roof."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, size", "color, white, roof, red"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " of two rocks with ice elements."], "sample_ids": ["44723e86bdd14071b0544745879604de", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["resembles, bar, soap", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, staircase, table", "house, roof, wooden"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a small house with stairs and a roof."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["screen, monitor, stand", "roof, stairs, house"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of two rocks with ice elements."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["size, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, chair, table, light", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a snowy mountain island."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "fe8520ec650248fa92ba07bb95712b09"], "properties": ["building, tree, plane", "mountain, island, snowy"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "for a black cross on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white photograph of a volcanic eruption"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["water, boat, rock", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "bf18bfd89efd43389781050230467d58"], "properties": ["resembles, toy, bookshelf", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["building, stairs, shelves", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a white, open shelving unit"], "question": "which building has a door?", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "b896a0898efe4059a776193c02132129"], "properties": ["bowl, pottery, headpiece", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["low poly of a christmas tree", " featuring a chair, table, and refrigerator."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["low poly, christmas, tree", "chair, table, refrigerator"], "captions_pred_pc": ["above a black and white image of a small, round object", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "a 3d model of a chair, a table, and a refrigerator"], "question": "which object is not a christmas tree", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, hole, shelf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["white, top, writing", "roof, trusses, beams"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a castle on a hill in the middle of a field."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "5c6965cc9640450d91ba7d788d4e01fe"], "properties": ["houses, trees, road", "hill, field, castle"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white photograph of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a castle on a hill"], "question": "which entity has a castle on a hill?", "label": 1}, {"captions": ["a wooden-handled axe .", "a pixelated eagle with a yellow and white head and yellow beak."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "9ce77b4cc05c4060a74b8f2568e6bbe8"], "properties": ["handle material is wood, head material is metal, overall length is long", "eagle, head, beak"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white image of a knife on a white background"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d image of a penguin in a pixelated world"], "question": "which entity has a yellow and white head and yellow beak?", "label": 1}, {"captions": [" the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood.", " of a small white building with stairs and a lid."], "sample_ids": ["ee440fcbc493488e879539d37a8d820e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["island, fish, ice", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a mountain on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d map of the country of israel", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["house, yard, surrounding buildings", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small white house with a roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, material, steel", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, roof, green", "low poly, plant, white"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "c8936ace72954650b4e2d84246964849"], "properties": ["roof, color, blue", "roof, color, pink"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " of two rocks with ice elements."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, handle, orange, rake, knife", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, roof, structure", "beige, white, round"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a barn structure", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, plane, sky", "room, furniture, window"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a wooden shed with a gray roof."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["light, floor, ceiling", "roof, color, gray"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["low poly, llama, kangaroo", "wood, board, shelf"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "bf18bfd89efd43389781050230467d58"], "properties": ["yellow, table, roof", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with a roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["house, tree, rock", "roof, house, small"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a hans wegner modern lounge chair in black and wood.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["133c1231b9de4cc19d470bd6182c3a6e", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, material, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white illustration of a chair", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a modern lounge chair royalty free 3d model preview no 2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a house with a pink roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, shape, texture", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a sword and knife."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "8b567403ba614523a298f1c5b2009f92"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "a, sword, knife"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black silhouette of a knife on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a samurai sword royalty free 3d model preview no 2"], "question": "which object is not a house?", "label": 0}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "a17477b445b3443189dad22f768b888b"], "properties": ["earbuds, light, ring", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["rocky, rug, puddle", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a table with a staircase"], "question": "which entity is indoors?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " of a small white building with stairs and a lid."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, bench, rack", "building, stairs, lid"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small house with a roof.", " a small, snow-covered house."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, house, small", "house, snow, cover"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small triangular-shaped object."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "2d02985030804209a26c2c53b96a06f9"], "properties": ["resembles, toy, bookshelf", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["color is white, yellow, plastic", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": ["white table lamp with a white shade.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "b5afccae993346079483507296fbb029"], "properties": ["color, white, shade", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a white table lamp with a white shade", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", "a white of a man with arms outstretched."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, trusses, beams", "image, color, white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a white of a woman with her arms outstretched."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a white and blue building with a black roof."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, pier, stairway", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a featuring multiple animal heads, including a fox, chihuahua, and cat with ears."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "f37b1515c52248d887b9b415576f5253"], "properties": ["color, shape, and material", "animal, head, fox, chihuahua, cat"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a butterfly shaped object"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a fox's head"], "question": "which entity is a head?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a clay pot with holes in it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, light, jewels", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small wooden house with a green roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["- color is white- shape is cubes- number is 1", "a, island, resembles, hawaii"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, roof, green, frame, red", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building under construction"], "question": "which building has a pink frame?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["building, floorplan, gym", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a wooden box with a lid"], "question": "which entity is a cabinet?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "854757ca755240f8b04576d899349151"], "properties": ["- material is plastic- color is white- shape is cube", "cabinet, room, shelf"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which object is made of wood", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, gun", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["roof truss, insulation, suspended ceiling", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small building with windows and a roof."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, fence, snowy", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["size, material, color", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["roof trusses, beams, suspended ceiling", "glass, metal, balls"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, blue, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["throne, stairs, tree", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "703dce44052e48cfb024bceb08141554"], "properties": ["roof truss, beams, structure", "roof, beams, frames"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a small purple plastic chair with four legs."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["color, white, base, slanted", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["above a black and white drawing of a chair", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a white plastic chair"], "question": "which chair is made of plastic", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a white human skull with broken bone elements."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, texture", "color, white, skull"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "839a873262a544c9906f3f5799ca4648"], "properties": ["Title, Image, Color", "a, outfit, green"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "443554d4d7044c66aa8cbff63c737589"], "properties": ["two-story, roof, building", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a clay pot with holes in it."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, material", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a hans wegner modern lounge chair in black and wood.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["133c1231b9de4cc19d470bd6182c3a6e", "92498f398e244020a867686729633610"], "properties": ["color, material, shape", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white illustration of a chair", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a modern lounge chair royalty free 3d model preview no 2", "a 3d model of a person standing in front of a wall"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design.", "a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design."], "sample_ids": ["80cc05e292b0437ba3189b68f6da0ca0", "80cc05e292b0437ba3189b68f6da0ca0"], "properties": ["buddha, chair, design", "buddha, chair, design"], "captions_pred_pc": ["a black and white image of a cactus on a white background", "a black and white image of a cactus on a white background"], "captions_pred_image": ["3d model of a buddha statue royalty free 3d model preview no 3", "3d model of a buddha statue royalty free 3d model preview no 3"], "question": "which entity has a statue of a buddha sitting on a wooden chair with an eagle design?", "label": 0}, {"captions": [" tall grass, plants, rocks, and a tree.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["eefed882ed5f4711bc5a76332d9712f3", "a17477b445b3443189dad22f768b888b"], "properties": ["grass, plants, rocks", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a group of trees", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wheeled hospital bed", " a wooden shed with a gray roof."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["wheeled, bed, hospital", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, white, red, pink", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "46903bf029934b1989bc062dcb0a5531"], "properties": ["house, roof, toothbrushes", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["desk, chair, table", "tv, chair, laptop"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a gray, metal pillar/cylinder."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- color is white- shape is cubes- number is 1", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a close up of a black and white striped scarf", "of a black candle on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- color is white - shape is box - material is plastic", "glass, metal, balls"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "c3a82df41875402285608ef13a55df57"], "properties": ["A, a, a", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, staircase, light", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, skyline, buildings", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["building, color, black and white", "color, white, gold"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["type, handle, feature", "a, material, clay"], "captions_pred_pc": ["for a black and white drawing of an axe", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["3d printed panther head with open mouth.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["dfe4f73a25a94b2c8449a2818c32a3bd", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["3D Printed, mouth, open", "- material is wood, rusty, horned"], "captions_pred_pc": ["a 3d model of a dog head on a white background 3d model of a dog head on a white background stock illustration 3d model of a dog head on a white background 3d model of a dog head on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a panther head royalty-free 3d model", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, screen, drawer", "blue, curved, resembles"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "a17477b445b3443189dad22f768b888b"], "properties": ["a, box, wall", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green skull and sphere.", " a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "40285a60f32749a8ae38957c7b073fe8"], "properties": ["color, skull, sphere", "color, yellow, black"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a set of three black and white keychains on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["giraffe, bench, flower", "books, paper, lamp"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, blue, green, yellow, blue", "giraffe, bench, flower"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a white round table with a red accent.", " a white and blue building with a black roof."], "sample_ids": ["fea62a865b4e40899d95785533818329", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, red", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a black roof", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small white building with stairs and shelves."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, light", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a white square with the words \"what tv\" on it."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, orange, white", "color, white, words"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d rendering of a white box on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with wooden framing and trusses."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["house, lake, pool", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house under construction"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["Drawer, Pattern, White", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a red roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["085db9059b744673b5623b5338e02196", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, red, house", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "1ee3df6f94ea4c329a9c5245634e34d5"], "properties": ["graffiti, chinese writing, door", "graffiti, chinese writing, door"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a bridge with dots"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a bathroom with a sink and a toilet"], "question": "which entity has a door with graffiti?", "label": 0}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small house with a blue roof."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["color, light, jewels", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small house with stairs and a roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, material", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["costume, color, black", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, bird, hook", "island, mountain, grass"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, size", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, temperature, england", "table, stairs, ladder"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "bf18bfd89efd43389781050230467d58"], "properties": ["buildings, houses, grass", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["yellow, table, roof", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["light switch, electrical outlet, furniture", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["water, boat, rock", "a, landscape, sand"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a lamp, a syringe, a light pole", "water, boat, rock"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "c3a82df41875402285608ef13a55df57"], "properties": ["color, card, case", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, handle, straps", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, structure, greenhouse", "roof, material, wood"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a building"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "a17477b445b3443189dad22f768b888b"], "properties": ["moss, mushroom, grass", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["glass, metal, balls", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a wine glass", "a black and white illustration of two spheres"], "captions_pred_image": ["a clear acrylic foosball table", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a wooden shed with a gray roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, texture", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of mushroom cloud?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, roof, wall", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small white building with stairs and a white table."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e30374c614f54fdb90f35b96b071349d"], "properties": ["house, plane, town", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a lidded trash can."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "b166e9a1c5d540c19a1075b7f064f42f"], "properties": ["- material is plastic- color is green- shape is box", "lidded, trash can, color black"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a circle of dots on a white background a circle of dots on a white background vector illustration of a circle of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a trash can"], "question": "which is not a trash can", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "a24872444e5c468a9264d503a9ca7276"], "properties": ["rusty, sink, graffiti", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a house with a pink roof.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, roof, pink", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "a, material, clay"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a wooden staircase with a railing and table."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "956247bea850458199c651037d4b1d7f"], "properties": ["a, plane, small plane", "railing, table, staircase"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "e694d53545d449319a64cceb0280c3c6"], "properties": ["- material is wood - color is white - height is 1.8 m", "3d, slide, swing"], "captions_pred_pc": ["an illustration of a barbed wire fence", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a playground slide"], "question": "which playground set has a slide?", "label": 1}, {"captions": [" of a machine gun.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["gun, barrel, caliber", "roof, color, yellow"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["black, white, laptop", "Black, Shelf, Metal"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a black shelf with square tiles"], "question": "which table has a metal shelf", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small wooden house with a green roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a green pickle", " a clay pot with holes in it."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color is green, shape is cylinder, material is plastic", "hole, material, clay"], "captions_pred_pc": ["of a black object on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["Cabinet, Drawers, Filing", "glass, metal, balls"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a clear acrylic foosball table"], "question": "which table has metal legs", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["background, color, white", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black line on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "887e410d07854396b563325ae1929583"], "properties": ["house, rock, pond", "hat, mouse, bear"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is metal- color is silver- texture is textured", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", "a black and white of a knife/sword with a handle."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, yellow, white, wheels", "image, color, black and white"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a large house with a roof on a platform."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "cb3e09a301b746918a682a595037c7f7"], "properties": ["graffiti, chinese writing, door", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, shape, and size", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is plastic- color is white- shape is cylinder", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, truss system, framing", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a purple chair with holes in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "c3a82df41875402285608ef13a55df57"], "properties": ["color, purple, holes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white chair", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, hat, shoes", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a teddy bear", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["- color is red, blue, pink", "roof, air conditioner, house"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a large metal building with a roof and truss structure."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "b85a99699ccd4bcba213322113bb253d"], "properties": ["earbud, earpiece, earpiece", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "of a metal grate on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a transparent blue cube.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, transparency", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["an empty white box on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, color, white", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["roof, green, lawn", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a wooden roof structure with a pink roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, tree, plane", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["floor, wall, roof", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c553ba67fa914165a07a1f1d20581f19", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["cat, bowl, donut", "a, material, clay"], "captions_pred_pc": ["a close up view of the back of the chair", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["size, material, lighthouse", "roof, color, yellow"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white drawing of a room"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["location, city, boat", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of a map", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["building, tree, plane", "bread, knife, board"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a loaf of bread and a knife on a cutting board"], "question": "which object is on a cutting board?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["image is a sculpture of an angel on a wall", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["earbuds, light, ring", "ceiling, light, desks"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a house with a roof and beams."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor, ceiling, poles", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["height, material, shelves", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black ladder on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "white candle with a yellow flame in a candle holder."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "c3d85aaabddf4585b2468a5bca9f51d5"], "properties": ["color, shape, texture", "color, flame, white"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white image of a dotted circle on a white background a black and white image of a dotted circle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a white candle in the shape of a teapot"], "question": "which object has a white flame?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["house, roof, green", "roof, trusses, ladder"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["mossy, rock, grass", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, green, tiled", "black, roof, green"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, color, white", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, roof, blue", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, material, pattern", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, number", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, red, blue, structure", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["water, boat, rock", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a surfboard", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["stair, table, chair", "water, boat, rock"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["screen, keyboard, box", "grass, plants, rocks"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black mascara brush on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["- material is wood, metal, metal", "Brown, metal, lock"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a square with dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, size", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white image of a small island in the middle of a body of water"], "question": "which entity is a small island?", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["description, material, shape", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "096e42b466ec438d95c5d89a85191534"], "properties": ["lighthouse, fountain, crater", "white, rock, shell"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["room, bed, desk", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["blue, curved, resembles", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["image, color, pink", "gold, ring, animal"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "above a black and white image of a shark"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, yellow, white, wheels", "island, mountain, grass"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "b494049bb15440949e465d54a72b2f02"], "properties": ["graffiti, chinese writing, door", "building, floorplan, gym"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a white building with two floors"], "question": "which building has a floor plan?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a3c50635c2a04e548e57d4f027899131"], "properties": ["color, shape, and size", "building, roof, white, cubes"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a map"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a city on a white background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", "star wars stormtrooper "], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, image, subject", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a star wars stormtrooper"], "question": "which entity is a white color", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, house, wooden", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["A, a, a", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "b896a0898efe4059a776193c02132129"], "properties": ["house, door, cross", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a map", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["buildings, houses, grass", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has grass", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["Drawer, Pattern, White", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["table, stairs, ladder", "light, fixture, square"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a desk with a table on top"], "question": "which table has a square ceiling light fixture", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, bird, hook", "water, boat, rock"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" a white building.", " a large steel building with many columns and a pool."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["color, white, building", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a bottle", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["blue tarp, flower, small island", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white map of spain on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white image of a rock formation on a gray background"], "question": "which image is of a rock formation?", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a wooden roof structure with a pink roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["picture, plaque, person", "roof, color, pink"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["bread, knife, board", "house, tree, pool"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["tiers, building, stairs", "throne, chair, building"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small orange piano with legs."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "d793de7c08d74414beeb8ea50f730705"], "properties": ["fireplace, bench, log", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, color, pink", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "096e42b466ec438d95c5d89a85191534"], "properties": ["color, white, railing, black", "white, rock, shell"], "captions_pred_pc": ["above a black and white image of a computer screen", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["s, plane, house", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["rusty, sink, graffiti", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a green circuit board."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, size", "color, green, circuit board"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "of the item in the image"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": ["3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e694d53545d449319a64cceb0280c3c6", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["3d, slide, swing", "grass, plants, rocks"], "captions_pred_pc": ["for a 3d model of the letter 'j'", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a playground slide", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a blue ford escort car.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, blue, ford escort", "island, mountain, grass"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is hot dog, design is dragon, color is black", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small wooden house."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["ceiling, beams, light", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a white chest of drawers with legs."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, white, red, pink", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["background, color, white", "a, material, clay"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["room, door, shelf", "building, door, clock"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of an empty room", "a black and white image of a church with a steeple"], "question": "which building has a clock", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["A, a, a", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a two-story small apartment building with a roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, white, red, pink", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["floor plan, bathroom, pool", "roof, structure, greenhouse"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": ["halo 4 sniper rifle ", "halo 4 sniper rifle "], "sample_ids": ["ddb78bd428fa4be7a8b3613be5480192", "ddb78bd428fa4be7a8b3613be5480192"], "properties": ["sniper rifle, halo 4, weapon", "sniper rifle, halo 4, weapon"], "captions_pred_pc": ["there is an image of a gun on a white background", "there is an image of a gun on a white background"], "captions_pred_image": ["a 3d model of a futuristic gun", "a 3d model of a futuristic gun"], "question": "which weapon is used to kill enemies in halo 4?", "label": 0}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, booth, bed", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["house, color, white", "flower, color, pink"], "captions_pred_pc": ["above a black and white drawing of a bench", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity is pink", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a wooden roof structure with a pink roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["castle, island, house", "roof, color, pink"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["moss, mushroom, grass", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["frame, roof, trusses", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["house, tree, rock", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["balcony, stairs, house", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " of a wooden windmill with a red roof."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["image size, image, origami", "roof, color, red"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["island, mountain, grass", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, ball, mushroom", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["house, plane, town", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["black, white, coffee table", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["giraffe, bench, flower", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small black and white cube.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, shape, size", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a white vase on a grey background"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a large building with a roof and windows."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "32d1fbd3ee91426882290305f70021e6"], "properties": ["Drawer, Handle, Wood", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a chair with a yellow seat."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, bench, rack", "color, yellow, seat"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "766a075b4760433bafdbe88bee546796"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wheelbarrow?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, trusses, beams", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "c8936ace72954650b4e2d84246964849"], "properties": ["color, door, window", "roof, color, pink"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["roof, truss, lamp", "a, building, coin, ball"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a box with a coin next to it"], "question": "which entity has a roof", "label": 0}, {"captions": [" of a large gray sphere", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["size, color, shape", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["bedroom, bathroom, bed", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, white, black, white", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a small house with a covered porch"], "question": "which object has a roof", "label": 1}, {"captions": [" a person jumping on a white circle.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["dfcfe9bdefce436ebd9d3b0e14dc1242", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["person, jump, circle", "table, stairs, ladder"], "captions_pred_pc": ["a 3d illustration of a grinding wheel on a white background 3d illustration of a grinding wheel on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a person walking on a white surface", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a chessboard on a beige ceiling tile."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "7dccc542a68f470a947bf5f698c27bbd"], "properties": ["A, a, a", "beige, tile, chessboard"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a leopard print banner"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "3d chess board royalty free 3d model preview no 2"], "question": "which entity is not a chessboard?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small white building with stairs and a white table."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a box, a cup, a bottle, a jar", "building, stairs, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a wooden roof structure with a pink roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "703dce44052e48cfb024bceb08141554"], "properties": ["color, material, frame", "roof, beams, frames"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" of a clear glass display case with a square light fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["980ded888795417f94b46750105e1597", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["light, fixture, square", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a room with dots on the floor", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a clear plastic box", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "b896a0898efe4059a776193c02132129"], "properties": ["floor plan, bathroom, pool", "- material is stone, metal, concrete"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a white table.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["19a580515406462d9e73213276a8e12d", "6b745457e06840119058883b35f78f58"], "properties": ["color, material, shape", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a patterned surface", "a black and white image of a building with dots"], "captions_pred_image": ["a white bench on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, white, containers", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a purple chair with holes in it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, purple, holes", "torso, breasts, pattern"], "captions_pred_pc": ["of a silver pendant with an intricate design", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "443554d4d7044c66aa8cbff63c737589"], "properties": ["house, roof, green", "roof, color, pink, blue"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which house has a roof that is a different color than the rest of the house?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["apse, roof, floor plan", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a potted plant on a wooden table or shelf."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["roof, structure, wall", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " of two rocks with ice elements."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, plane, city", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["s, boat, bird, airplane, kite", "box, handle, gun"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "a black and white square with dots on a white background"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": ["a white glass beer mug.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, glass", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a glass pitcher", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a beige and white round soap dish/small bowl.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5414d75e47104589837f3df8b6de6d22", "b896a0898efe4059a776193c02132129"], "properties": ["beige, white, round", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic bowl sitting on top of a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["location, highway, train station", "roof, metal, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a white castle composed of small cubes."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, pink, green", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "e694d53545d449319a64cceb0280c3c6"], "properties": ["glass, metal, balls", "3d, slide, swing"], "captions_pred_pc": ["a black and white image of a wine glass", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a playground slide"], "question": "which object is made of metal", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small white house with a roof."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, plane, town", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof, structure, house", "building, color, black and white"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["s, stick, leaf", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small building with a roof.", " a large steel building with many columns and a pool."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, building, small", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a bridge structure with a pier, stairway, railings, and red and green elements."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "23701a9674204ea881fb8af9914b1924"], "properties": ["color, pier, railings", "color, pier, railings"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a computer keyboard"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a staircase in the middle of a field"], "question": "which bridge has a pier", "label": 0}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, desk, laptop", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, model, white house", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " of a white chest of drawers with legs."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["shape, bathroom, refrigerator", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a wooden roof structure with a pink roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["s, stick, leaf", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a, hill, deer", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "a17477b445b3443189dad22f768b888b"], "properties": ["color, hat, handle", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a small wooden house with a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, purple, suspended", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, shape, text", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "703dce44052e48cfb024bceb08141554"], "properties": ["building, roof, yellow", "roof, beams, frames"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a wooden structure"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a wooden shed with a gray roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, tower", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a table with a staircase"], "question": "which staircase is more simple", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a building with yellow lines."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "f18e34286cf54876874f55ecc9018492"], "properties": ["image, house, ceiling", "color, yellow, lines"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a house with a balcony", "a drawing of an airplane flying over a city"], "question": "which image shows a building with yellow lines?", "label": 1}, {"captions": [" a large house with a roof on a platform.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, platform, house", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "be1376023c274bdda995d54f3694157f"], "properties": ["building, stairs, shelves", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house with a roof"], "question": "which building has a roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, grass, moss", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a spider-like creature with long arms and legs."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, structure, truss", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a person breaking through a brick wall."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["painting, door, wall", "image, brick, wall"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a person breaking through a brick wall"], "question": "which wall is made of brick", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, bench, rack", "hat, bow, arrow"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, white, pen, logo", "color, white, plastic"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["house, hill, forest", "plane, ship, bird"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, brown, flat", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a small white house with a roof."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["stacked, racks, toy train", "roof, color, white"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a house with a wooden-framed roof structure."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, bird, lake", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small house with stairs and a roof."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, background, white", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "c3a82df41875402285608ef13a55df57"], "properties": ["building, floor, columns", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["furniture, staircase, torn-apart", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["building, roof, balcony", "color, yellow, black"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, shape, texture", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["holder, spring, box", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock?", "label": 1}, {"captions": [" of a clear glass display case with a square light fixture.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["980ded888795417f94b46750105e1597", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["light, fixture, square", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a room with dots on the floor", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a clear plastic box", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a wooden house with a roof and birdcage structure."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "3e4527c9c8e940b5806b8a69967a90b8"], "properties": ["house, roof, toothbrushes", "roof, structure, material"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of the letter 'f' on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a wooden billiard table with legs."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["apse, roof, floor plan", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "b896a0898efe4059a776193c02132129"], "properties": ["roof, truss, suspended ceiling", "- material is stone, metal, concrete"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, metal, white", "house, lake, pool"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, hat, glasses", "color, silver, white"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a house with a wooden-framed roof structure."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["carving, statue, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a clay pot with holes in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8ffcd902aa0a4efea55ca1dbab28f462", "c3a82df41875402285608ef13a55df57"], "properties": ["hole, material, clay", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a clay sculpture of a face with holes in it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "a17477b445b3443189dad22f768b888b"], "properties": ["red, pile, garbage", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["chair, table, refrigerator", "room, staircase, bus"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "6b745457e06840119058883b35f78f58"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["rusty, sink, graffiti", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["computer desk, laptop, monitor", "house, roof, wooden"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a black and white striped fly in the air."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "black, white, fly"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a small white box with a green light.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, white, light", "door, roof, pool"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["background, color, white", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hat, food, bowl", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a white motorcycle with wings."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["s, stick, leaf", "color, white, wings"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a motorcycle on a white background"], "question": "which entity has wings", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, plastic", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden billiard table with legs."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is plastic- color is white- shape is cylinder", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["white space shuttle model.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, model is space shuttle, size is small", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "c3a82df41875402285608ef13a55df57"], "properties": ["brown, paint, tape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a large steel building with a pool."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, white, blue, roof, black", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a large steel building with a pool."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["graffiti, wall, wheelbarrow", "building material, pool, steel"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["collection, plane, car", "building, plane, city"], "captions_pred_pc": ["above a black and white image of a piece of paper", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "be1376023c274bdda995d54f3694157f"], "properties": ["roof truss, insulation, suspended ceiling", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a roof"], "question": "which entity has a roof with wooden beams?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "97e000ff41094665afd94ea565da8b13"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "roof, material, wood"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a house with a roof and beams."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, building, people", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a white castle composed of small cubes."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["door, roof, pool", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a small wooden house with a green roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, red, green, blue", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house with a pond and situated on a rock."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "92859eb82a344134806b37cc209927c6"], "properties": ["house, plane, town", "house, rock, pond"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, screen, drawer", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["bird, nest, wood", "door, roof, pool"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["white sphere", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, size", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "5414d75e47104589837f3df8b6de6d22"], "properties": ["location, field, gravestone", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a whale", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["black, laptop, shelf", "rusty, warning, metal"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["mossy, rock, rocky", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d rendering of a piece of marble"], "question": "which object has more wood", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "12093c89a60941e7884b252bdc05104c"], "properties": ["giraffe, bench, flower", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers", "label": 0}, {"captions": [" a green skull and sphere.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, skull, sphere", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a blue roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, color, purple", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a large axe with a cross on top."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, roof, tray", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a metal object", "for an axe on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": ["3d superman logo in red and yellow", " of two rocks with ice elements."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, red, yellow", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" an ancient, broken clay mask held by a hand.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["28e7a932fe074667ac6a1b3b324b9e22", "c3a82df41875402285608ef13a55df57"], "properties": ["hand, mask, hold", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a butterfly", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken cer", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, staircase, balcony", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large metal building with a roof and truss structure."], "sample_ids": ["d6087023095446fbadef1721478373b2", "b85a99699ccd4bcba213322113bb253d"], "properties": ["door, roof, window", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a long metal fence"], "question": "which building has a roof with trusses", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["house, roof, toothbrushes", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, yard, surrounding buildings", "building, plane, city"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, skull, bread", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a stone sculpture", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 0}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["b5afccae993346079483507296fbb029", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is square, material is metal, color is rusty", "rusty, warning, metal"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "a black and white photograph of a barrel"], "question": "which object is rusty", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small, snow-covered house."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, roof, green", "house, snow, cover"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small blue robot with a windmill."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, shape, and size", "color, blue, robot"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a wind turbine"], "question": "which object is blue?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of an egyptian sarcophagus."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["Arms, Legs, Color", "sarcophagus, material, wood"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large building with a roof and windows."], "sample_ids": ["d6087023095446fbadef1721478373b2", "32d1fbd3ee91426882290305f70021e6"], "properties": ["door, roof, window", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a house with a purple roof and glass block structure."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, purple"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a building with a glass roof"], "question": "which entity has a roof that is the color purple?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "b896a0898efe4059a776193c02132129"], "properties": ["color, background, arrows", "- material is stone, metal, concrete"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "of a white candle in the shape of a buddha"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, stairs, house", "structure, material, pool"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a clay pot with holes in it."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["yellow, table, roof", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, red, blue, structure", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small house with a pond and situated on a rock."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "92859eb82a344134806b37cc209927c6"], "properties": ["a, hole, rock", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a lace belt", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, color, blue", "roof, brown, flat"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, pink, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["light switch, electrical outlet, furniture", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "f3edc84dc71649c1a11270437279255b"], "properties": ["a, door, suitcase", "hippo, hind, legs"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity has a suitcase?", "label": 0}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["image size, image, origami", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white illustration of an airplane", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an origami dragon", "a black and white image of a bird in flight"], "question": "which bird is a crow and a pigeon?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["graffiti, bench, wall", "door, roof, pool"], "captions_pred_pc": ["for a black and white image of a boat", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["metal, laptop, light fixture", "meat, bread, sausage"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["food, leaves, shredded paper, rocks", "building, room, sky"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": ["a black rock with writing on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, black, writing", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "star wars stormtrooper "], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["building, tree, plane", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["screen, monitor, stand", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of the roof of a building"], "question": "which object has a ladder?", "label": 1}, {"captions": [" of a white bunny head", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, white, head", "color, white, logo"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity is a white logo?", "label": 1}, {"captions": [" a small building with windows and a roof.", " of a house with a roof."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, windows, building", "roof, house, roof"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white glass beer mug."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", " a white castle composed of small cubes."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, letter", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small wooden house with a green roof."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["computer desk, laptop, monitor", "roof, color, green"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, tail, cord", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small white house with a roof."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["island, mountain, grass", "roof, color, white"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "white ceramic urn with a red lid."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color is white, yellow, plastic", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white photograph of a vase"], "captions_pred_image": ["a white plastic container with a label on it", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a house with wooden framing and trusses."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, pink, green, cord, white", "frame, trusses, wood"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["- material is plastic- shape is dice- color is white", "metal, rusted, paper"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a small white house with windows and a black lid."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, white, railing, black", "white, windows, lid"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a white house with three windows"], "question": "which object has a black lid?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "a095621f2d5845af83db3f59f5685982"], "properties": ["size, material, color", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["of a black plastic ring on a white background", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a metal tray with two rolls of paper in it"], "question": "which object is made of stainless steel", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of two rocks with ice elements."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, light, jewels", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock with ice elements?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, blue, structure", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "b896a0898efe4059a776193c02132129"], "properties": ["base material, wood, shade color, white, beige", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["color, white, black, white", "throne, chair, building"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a house with a flat roof structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, flat, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a large metal building with a roof and truss structure."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, skyline, buildings", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a metal grate on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a47dcf3d3cf34c58af17b6715d6f1232", "a17477b445b3443189dad22f768b888b"], "properties": ["room, staircase, bus", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d image of a building with a lot of debris", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " of a small white building with stairs and a lid."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, building, people", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a white box on a gray background"], "question": "which entity has fewer houses", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, color, blue", "a, building, roof"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, texture", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is box, color is white, door is present", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, red, blue, green", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house with a blue roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["resembles, toy, bookshelf", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a book cover", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["image is a sculpture of an angel on a wall", "roof, structure, wall"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof truss, beams, structure", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house on a hill in a field."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, tree, rock", "house, hill, field"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a house with a pink roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "c3a82df41875402285608ef13a55df57"], "properties": ["color, roof, pink", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["3D, toothpick, skateboard", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of two spheres"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a building with yellow lines."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "f18e34286cf54876874f55ecc9018492"], "properties": ["chair, table, refrigerator", "color, yellow, lines"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["books, paper, lamp", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " of two rocks with ice elements."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["mannequin head, plague mask, straps", "mannequin head, plague mask, straps"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a plague doctor's mask on a mannequin head"], "question": "which entity has a plague mask with straps?", "label": 0}, {"captions": [" of a tv stand/shelf", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["size, material, color", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a box, a cup, a bottle, a jar", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color, tan, brown, orange", "rusty, hat, dartboard"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is not a toy?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, shape", "building, plane, room"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a small purple plastic chair with a handle and white base.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["cc5abae412db4e4b952eee1e4747af05", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, plastic, base", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white illustration of a necklace", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small house with a red roof.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["085db9059b744673b5623b5338e02196", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["roof, red, house", "water, boat, rock"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is metal- color is silver- texture is textured", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e098706085a44898abbd549693d12a64", "c3a82df41875402285608ef13a55df57"], "properties": ["color is black, white, orange", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["white butterfly wall lamp with a white shade and bead, .", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fd63194cf4f94d5e96bd2b85f542b936", "a17477b445b3443189dad22f768b888b"], "properties": ["shade, white, bead", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a light bulb on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a wall lamp with a white shade and a butterfly design", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a building with yellow lines."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, pink, eyes", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a yellow and blue toy submarine."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, roof, block", "color, yellow, blue"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a submarine toy"], "question": "which toy is yellow and blue?", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, purple, structure", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a bench", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["hat, mustache, chef", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a white glass beer mug."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, size", "color, white, glass"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["- color is red, blue, pink", "Object, Tray, Tray"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a piece of paper"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d image of a white tray with an intricate design"], "question": "which object has more trays", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "09f2cf267e954c958828325067bcc36a"], "properties": ["a lamp, a syringe, a light pole", "island, terrain, rocks"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a green mountain with trees and grass.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["mountain, grass, tree", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is cylinder, color is white, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, truss system, framing", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " of two rocks with ice elements."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bread, knife, board", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", "star wars stormtrooper "], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["frame, screen, color", "a, color, white"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["painting, door, wall", "house, tree, hill"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a group of ponies in a row."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["background, color, white", "group, row, pony"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of my little pony"], "question": "which entity has a row of ponies?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["black, white, laptop", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "88eba412c78a4ced89eb857327653f6c"], "properties": ["color, material, structure", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["frame, truss, roof", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, hill, forest", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 0}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, mouth, eyes", "house, tree, hill"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "c3a82df41875402285608ef13a55df57"], "properties": ["height, material, shelves", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black ladder on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a small white house with windows and a black lid."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "4b40af369c1149949f5ccb68becd8430"], "properties": ["low poly, plant, white", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a white house with three windows"], "question": "which object is white", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, shape, size", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a building with many windows"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, roof, toothbrushes", "house, roof, blue"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a building with yellow lines."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, yellow, black", "color, yellow, lines"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a drawing of an airplane flying over a city"], "question": "which entity has lines", "label": 1}, {"captions": [" a pink and green cube and chair.", " of two rocks with ice elements."], "sample_ids": ["c6faf508072b4d0ea014bd9c748b79c3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, chair, pink, green", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a curved line made up of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a simple white chair", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small white building with stairs and a white table."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, material", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a building with a staircase"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5c04dac989a64d228283687588484b93", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a house with a roof and beams."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a knife, blade, handle", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a red and white robot.", "a white of a man with arms outstretched."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, red, white", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, shape, text", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a clay pot with holes in it."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["buildings, houses, grass", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6b745457e06840119058883b35f78f58", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, blue", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, orange, leather", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["shape is turtle, color is green, white", "bowl, pottery, headpiece"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a, b, c", "house, hill, forest"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["graffiti, bench, wall", "room, furniture, window"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, handle, zipper", "throne, stairs, tree"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a throne with a tree on it"], "question": "which object has a tree?", "label": 1}, {"captions": [" a small house with a roof.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof, house, small", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a small island?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "06a1c233fb444830b577aa06e2c01294"], "properties": ["food, leaves, shredded paper, rocks", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, tower", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["roof, color, purple", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with many windows"], "question": "which roof is blue", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a large metal building with a roof and truss structure."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "b85a99699ccd4bcba213322113bb253d"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof structure, truss, ceiling", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white building with stairs and a white table."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["s, stick, leaf", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["two-story, roof, building", "roof, truss system, framing"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of the roof of a house"], "question": "which building has a roof", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, color, pink", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a large black mat with square grid design.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "bf18bfd89efd43389781050230467d58"], "properties": ["size, color, design", "Lights, number, five"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is metal- color is silver- texture is textured", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["runner, bed, bench", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, roof, green", "water, boat, rock"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " of a large axe with a cross on top."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, style, pixel", "axe, cross, top"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "for an axe on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, color, white", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, hill, deer", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, house, small", "roof, trusses, beams"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a roof structure"], "question": "which house has a roof", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "c3a82df41875402285608ef13a55df57"], "properties": ["color, head, body", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a small white building with stairs and a white table."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "e30374c614f54fdb90f35b96b071349d"], "properties": ["table lamp, ceiling light, table", "building, stairs, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of a building with a staircase"], "question": "which table is whiter", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "star wars stormtrooper "], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, material", "a, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, green, leaf", "color, white, logo"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity has a white logo", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["water, river, island", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which entity is indoors?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", "a white glass beer mug."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["island, terrain, rocks", "color, white, glass"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", "a white of a man with arms outstretched."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, handle, straps", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a man with his arms outstretched"], "question": "which image is white?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "09f2cf267e954c958828325067bcc36a"], "properties": ["stair, table, chair", "island, terrain, rocks"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, truss system, framing", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, texture", "a, material, steel"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a small white house with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, color, black and white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, material", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " of two rocks with ice elements."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["door, white, structure", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small white box with a shelf and a hole in it."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["a, ball, mushroom", "a, hole, shelf"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, material", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, material, steel", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["top, color, wood", "color, silver, white"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a large metal building with a roof and truss structure."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "b85a99699ccd4bcba213322113bb253d"], "properties": ["stacked, racks, toy train", "roof, truss, structure"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "a17477b445b3443189dad22f768b888b"], "properties": ["box, paper clip, lock", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a large metal building with a roof and truss structure."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, and material", "roof, truss, structure"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a robot with a blue, purple, and white body."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["- material is plastic- color is white- shape is cylinder", "body, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of a robot"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity is white", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a small white building with stairs and a lid."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a knife, blade, handle", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", "a pixelated-textured purple sphere ."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "fb68393941804e769d5c9b372864a642"], "properties": ["color, toilet, robot", "texture, color, shape"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small purple plastic chair with four legs."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["resembles, octopus, squid, spider, robot", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a white plastic chair"], "question": "which entity has four legs", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a white of a man with arms outstretched."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, eye, handle", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a room", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["earbud, earpiece, earpiece", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, bird, hook", "island, terrain, rocks"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "127753bf17de4252aaa7ea88f274545e"], "properties": ["face, handle, spout", "face, mask, tail"], "captions_pred_pc": ["a black and white image of a small, circular object", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a goat's head"], "question": "which entity has a face", "label": 0}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["s of, snowboard, shoes, mask", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", "a white of a woman with her arms outstretched."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, green, tiled", "island, terrain, water"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, dress, flower", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["fa06167d83e54b05bdfbeeae2ca7c8a6", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["table, structure, roof", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a map with dots", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a building with many pillars", "a 3d model of a building with many pillars"], "question": "which entity has a wooden structure", "label": 0}, {"captions": [" a child's room in a small house with windows.", " a house with a green, wooden-structured roof."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["room, house, windows", "roof, color, green"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a spiral staircase with a railing in a small building."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["books, paper, lamp", "staircase, railing, building"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a staircase in a white room"], "question": "which object is in a building", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, structure, greenhouse", "building, plane, room"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["s, plane, house", "house, table, chair"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["nut, bowl, ring", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["meat, bread, sausage", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white illustration of a window"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "c4e45a41478e42418399074b88d8920f"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "axe, handle, wood"], "captions_pred_pc": ["a black mascara brush on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "desk, chair, lamp"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a desk and chair in a room"], "question": "which entity has a desk?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, pink", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a metal grate", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the roof of a building", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["color, horns, features", "low poly, llama, kangaroo"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d low poly animal standing on its hind legs"], "question": "which entity is a low poly of a deer", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a white sofa, chair, and box."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "4c59733ebd634594a921b7ace60e4142"], "properties": ["room, bed, desk", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["black, white, laptop", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "b896a0898efe4059a776193c02132129"], "properties": ["s, chimpanzee, human, wolf", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, roof, tray", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a white glass beer mug."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, blue, components", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, yellow, black", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a black castle with stairs and a door.", "a white glass beer mug."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["door, stairs, color", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["hoodie, ball, person", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["for a person standing in front of a white background", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a white of a woman with her arms outstretched."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a black and gold pistol.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, black, gold", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a wooden windmill with a red roof."], "sample_ids": ["b5afccae993346079483507296fbb029", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["shape is square, material is metal, color is rusty", "roof, color, red"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "be1376023c274bdda995d54f3694157f"], "properties": ["house, fence, dog", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["castle, island, house", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, background, white", "low poly, plant, white"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["a47dcf3d3cf34c58af17b6715d6f1232", "747110c073314ee39ef2f4a8d63222da"], "properties": ["room, staircase, bus", "s, laptop, printer"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d image of a building with a lot of debris", "a black and white image of an electronic device"], "question": "which entity has a staircase?", "label": 0}, {"captions": [" a white rocking chair with a curved backrest.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["backrest, curved, yes", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a stone archway in a grassy area.", "a pair of white wall lamps with two shades."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "73e026c5b19c4cadb087d14da7810e3e"], "properties": ["location, area, material", "color, white, pair"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white illustration of a bicycle wheel"], "captions_pred_image": ["a 3d model of a stone archway", "a wall lamp with a white shade and a cord hanging from it"], "question": "which object is made of a pair of shades?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a black and white of a knife/sword with a handle."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["screen, monitor, stand", "image, color, black and white"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, room, ceiling", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["hat, shirt, bearded", "hat, mustache, chef"], "captions_pred_pc": ["of a black and white bracelet on a white background", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["hat, sword, gun", "building, roof, balcony"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "674a36147ffb47059e48abc9fa19d923"], "properties": ["color, red, blue, green", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sandbox?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, tree, plane", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white photograph of a small town"], "question": "which entity has fewer buildings", "label": 1}, {"captions": [" of a human skull.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "4a889132cc444d10bfcbf6c760984416"], "properties": ["a, b, c", "a, color, white"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a 3d model of a desk and chair"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["a, b, c", "a, character, mario"], "captions_pred_pc": ["above a black and white drawing of a submarine", "for a black and white sculpture of a person"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a cartoon character jumping in the air"], "question": "which entity has a character running?", "label": 1}, {"captions": [" a wooden frame with a picture in it.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["9dcf94c293de427daba9dceee624e728", "1da865c75a5e4a57a17652975dae5474"], "properties": ["picture, frame, material", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a long, decorative piece of jewelry", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a framed picture on a wall", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of two rocks with ice elements."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["metal, laptop, light fixture", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["furniture, room, kitchen", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a spiral staircase with railings."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["door, stairs, color", "railings, staircase, spiral"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Wheels, laptop, robot", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a small white building with stairs and a lid."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["houses, trees, road", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, hole, shelf", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["graffiti, chinese writing, door", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small building with windows and a roof."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, light, jewels", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a large steel building with many columns and a pool."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["floor, ceiling, poles", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a two-story small apartment building with a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, purple, suspended", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "be1376023c274bdda995d54f3694157f"], "properties": ["house, roof, wooden", "roof, beams, chimney"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a roof"], "question": "which house has wooden beams", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a table with stairs"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a small white building with stairs and a white table."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "e30374c614f54fdb90f35b96b071349d"], "properties": ["floor, staircase, balcony", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6b745457e06840119058883b35f78f58", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, color, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["castle, island, house", "house, fence, playground"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, roof, block", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with multiple levels"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, material, pattern", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, color, pink, blue", "roof, structure, suspended"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["building, ceiling, kitchen", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shape, color, material", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a pair of socks", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a multicolored metal building structure with a roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof structure, truss, ceiling", "color, roof, structure"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small building with windows and a roof."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, material", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["computer desk, laptop, monitor", "hat, skull, bread"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, tail, cord", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a white plastic container with a label on it"], "question": "which object is white and yellow?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["room, bed, desk", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["blue, curved, resembles", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["s, stick, leaf", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white photo of the letter g"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["chest of drawers, cabinet, white", "house, tree, pool"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["roof, stairs, house", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a white castle composed of small cubes."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, light", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "e694d53545d449319a64cceb0280c3c6"], "properties": ["floor, staircase, table", "3d, slide, swing"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a house with a wooden-framed roof structure."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["mug is purple, cup is black, candle is black", "a city, train, dragon"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white image of a toy car"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a stone wall with a window and a clock."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["- color is white- shape is cubes- number is 1", "window, clock, wall"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof, beams, chimney", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small red and white spaceship.", " a small white box with a green light."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, shape, size", "color, white, light"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "white of a rhino head with horns."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "8481aade84de47cab1a9accf8067e678"], "properties": ["A, a, a", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of a bench", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a house with a flat roof structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, flat, structure", "roof, structure, suspended"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a metal roof"], "question": "which roof structure is more complicated", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a futuristic white sports racing car."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, shape, texture", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a futuristic sports car"], "question": "which entity is white", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["screen, monitor, stand", "island, mountain, grass"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "6b745457e06840119058883b35f78f58"], "properties": ["screen, keyboard, box", "roof, color, blue"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "18e392c5360146eda498c5edab25b15c"], "properties": ["building, pattern, field", "frame, beams, trusses"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a building under construction"], "question": "which building has a frame?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a black and white of a knife/sword with a handle."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["size, material, lighthouse", "image, color, black and white"], "captions_pred_pc": ["a black and white photo of a water droplet", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house with a wooden-framed roof structure."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["fireplace, bench, log", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["a, b, c", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small house on a hill in a field."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["mossy, rock, rocky", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white image of a small house"], "question": "which is not a hill", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a city, train, dragon", "house, table, chair"], "captions_pred_pc": ["a black and white image of a toy car", "above a black and white photograph of an open door"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "bded33af34104b9686b845dfd18309a9"], "properties": ["earbuds, light, ring", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["color, material, structure", "color, yellow, black"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white helicopter flying in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " white crocs clogs with blue straps and holes."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "4622e88fd9264b37997671efeb73af85"], "properties": ["color, white, railing, black", "color, white, blue"], "captions_pred_pc": ["above a black and white image of a computer screen", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity has a white and blue color scheme?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["s, plane, house", "box, paper clip, lock"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e602ac60041f4b4f84c044161e478781"], "properties": ["a train, a ship, a boat", "floor, wall, roof"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a wooden shed with a gray roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["hat, sword, gun", "roof, color, gray"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "34a49861e7744acfb71de471a755e917"], "properties": ["stacked, racks, toy train", "text, material, shape"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d rendering of a marble slab with text on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, white, railing, black", "house, lake, pool"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, structure, house", "house, staircase, table"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["building, floor, columns", "island, terrain, water"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house with a wooden-framed roof structure."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["turrets, flags, towers", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a building with a roof"], "question": "which structure has a wooden roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["s, stick, leaf", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "f1b557775310478893242180defa4d80"], "properties": ["mossy, rock, grass", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a white and blue building with a black roof."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "c893118316ee43e18322e5964b2806c5"], "properties": ["two-story, roof, building", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building is white and blue?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a wooden windmill with a red roof."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, horns, features", "roof, color, red"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a small white barn with a metal roof."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "4ca3342a96824684845f7d0e062ab176"], "properties": ["light source, fixture, color", "roof, metal, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a white van with a logo on the side.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, logo, side", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, green, tiled", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of the roof of a building"], "question": "which roof is made of trusses", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a wooden shed with a gray roof."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["- material is white- color is white- texture is textured", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["roof, stairs, house", "room, staircase, bus"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof trusses, beams, suspended ceiling", "roof, brown, flat"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d rendering of a table and stool"], "question": "which house has a flat roof", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, gazebo, table", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["castle, island, house", "houses, trees, road"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["white of a rhino head with horns.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "7407a108e0354925b83b750339bc03df"], "properties": ["image, rhino, head", "platform, color, orange"], "captions_pred_pc": ["of a penguin skull in black and white", "a black and white illustration of a bicycle"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "a 3d model of a motorcycle on a pedestal"], "question": "which image shows a toy motorcycle", "label": 1}, {"captions": [" a small red and white spaceship.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["chair, table, refrigerator", "table, stairs, ladder"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a table with a stool on top"], "question": "which table has stairs and a ladder", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, pattern, wall", "island, mountain, grass"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of an egyptian sarcophagus."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["floor plan, heating system, ceiling light fixture", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small wooden house."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof structure, truss, ceiling", "house, material, wood"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a house with a roof and beams."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["Cabinet, Drawers, Filing", "roof, beams, house"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a wooden billiard table with legs."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["painting, door, wall", "legs, material, wood"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["giraffe, bench, flower", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, shape, structure", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["light, toilet, faucet", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["bed, desk, window", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a small white box with a green light."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, shape, material", "color, white, light"], "captions_pred_pc": ["of a black and white drawing of a purse", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, truss, structure", "box, paper clip, lock"], "captions_pred_pc": ["of a metal grate on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, windows, building", "roof, beams, chimney"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which building has a roof with wooden beams?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "b0427ff55c4346e293c1241c71d30528"], "properties": ["- color is white- shape is cube- material is plastic", "a, rock, nail"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a 3d model of a white cube", "a 3d image of a rock with a screw in it"], "question": "which object is made of rock?", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, material, logo", "roof, material, wood"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- material is plastic- color is white- shape is cylinder", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white map of the state of new york"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["house, lake, pool", "hat, dress, racket"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a large building", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a house with a roof and beams."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, logo", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["furniture, staircase, torn-apart", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, island, resembles, hawaii", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " of a clear glass display case with a square light fixture."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "980ded888795417f94b46750105e1597"], "properties": ["table, staircase, light", "light, fixture, square"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a clear plastic box"], "question": "which light is square", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small white building with stairs and shelves."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, text", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["table, stairs, ladder", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "4a889132cc444d10bfcbf6c760984416"], "properties": ["- material is stone - shape is bat", "a, color, white"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["s of, snowboard, shoes, mask", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "770e577c9795435898209fd24191635b"], "properties": ["house, color, white", "image, color, light"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a white 3d model of a small town"], "question": "which image is white", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "97e000ff41094665afd94ea565da8b13"], "properties": ["shape is cube, color is black, white", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a house with a steeple on top"], "question": "which object is made of wood", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, hat, glasses", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a brake pad", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "c3a82df41875402285608ef13a55df57"], "properties": ["white, top, writing", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house with a wooden-framed roof structure."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, roof, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, shape, texture", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is more like a mushroom", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["houses, trees, road", "building, plane, city"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e80eca95874c4bffb8aec54044824d87"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "arrow, mountain, area"], "captions_pred_pc": ["a black and white map of germany on a white background", "a line with a square on it"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a potted christmas pine tree."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["stacked, racks, toy train", "a, color, green"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["white, top, writing", "house, tree, pool"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " of a hammer with a long metal handle."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["size, material, color", "handle, metal, long"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a wooden billiard table with legs."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["turrets, flags, towers", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small purple plastic chair with four legs."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a large orange pumpkin."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["house, roof, toothbrushes", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", "a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "ee85486b41c1442aaf35fc2563381ad0"], "properties": ["color, dragon, cloth", "color, dragon, cloth"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a 3d rendering of an alien toy on a white background royalty free 3d illustration"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3"], "question": "which entity has a flying dragon?", "label": 0}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, material, frame", "image, building, stairs"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which building has stairs", "label": 1}, {"captions": ["yellow metal barricade ", " a wooden staircase."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "98fa820a050e47659135907c6f7b198c"], "properties": ["color is yellow, material is metal, height is 0.5 m", "material is wood, staircase, wood"], "captions_pred_pc": ["a white barrier on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", "white ceramic urn with a red lid."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["a, material, steel", "color, white, lid, red"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a large metal structure", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, bird, hook", "a, outfit, green"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a house with a wooden-framed roof structure."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, green, orange, star", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a staircase"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["base material is wood, color is red, message is welcome to northwich", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a city, train, dragon", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a toy car", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" colorful cubes and balls.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["598e319509a54ddd9a7220959b2bc5a7", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, size", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white dots pattern on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a group of cubes and a ball", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a wooden billiard table with legs."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["shape is cylindrical, color is silver, material is metal", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a, eagle, wood", "throne, chair, building"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": ["smiley-faced banana .", " a house with a roof and beams."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, pier, stairway", "house, rock, bird"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["Cabinet, Drawers, Filing", "roof, brown, flat"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "c3a82df41875402285608ef13a55df57"], "properties": ["broom, shovel, fireplace", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " of a wooden table and chair."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["table, bench, deer", "table, chair, wood"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a wooden table with metal legs and frame."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["background, color, white", "metal, legs, frame"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a patterned rug"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "4a889132cc444d10bfcbf6c760984416"], "properties": ["cover, torn, open", "a, color, white"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a desk and chair"], "question": "which box is white", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "832a022cdcc74763b0571e04af4e592b"], "properties": ["color, shape, material", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor, staircase, balcony", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, eye, handle", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a room", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a gray, metal pillar/cylinder."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["striped, white, black", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of two rocks with ice elements."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["yellow, table, roof", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["metal, legs, wheels", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small house with a roof."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["door, roof, pool", "roof, house, small"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a triangular roof"], "question": "which house has a door?", "label": 0}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, staircase, table", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["water, river, island", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a robotic warrior with a sword.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["weapon, sword, robot", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a white 3d mannequin human head.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, white, mannequin", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d model of a concrete wall"], "question": "which entity is more likely to be a rusted metal feature", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a green mountain with trees and grass."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof trusses, beams, suspended ceiling", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a house with a roof and beams."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, texture", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a black gun.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, gun", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black leather bracelet on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a house with a wooden-framed roof structure."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, ceiling, kitchen", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a wooden-framed roof structure", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a building with a metal and wooden pole structure."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, pier, railings", "structure, material, pole"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a white knight's helmet.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["9d89aae6a7c84bbc97c63c06055ecedd", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, helmet", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a person's head wearing a helmet", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a building", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, structure, greenhouse", "roof structure, truss, ceiling"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof structure has a wooden truss?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house with a flat roof structure."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "abc52d210d71415296730bb00352ce6f"], "properties": ["a, desk, laptop", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, color, pink", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a toilet", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " of two rocks with ice elements."], "sample_ids": ["854757ca755240f8b04576d899349151", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["cabinet, room, shelf", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["house, plane, town", "lamp, harp, bowl"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a harp in a white room"], "question": "which entity has a bowl?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, pattern, wall", "water, boat, rock"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["leaf, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a rock formation on a gray background"], "question": "which image is of a rock formation with a white cliff and a rock?", "label": 1}, {"captions": [" of a hammer with a long metal handle.", " a sword with a wooden handle."], "sample_ids": ["30f4b6bcbbb44f568cab4fd439d05145", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["handle, metal, long", "handle, material, wood"], "captions_pred_pc": ["a black and white toothbrush on a white background", "a black and white image of a knife on a white background"], "captions_pred_image": ["a hammer with a wooden handle and metal head", "a black and white image of a sword"], "question": "which handle is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["- material is wood, metal, metal", "earphones, wire, instrument"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a curved metal rod on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white glass beer mug."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, red, pink", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white cube", " of a toy mushroom character with a white and brown head."], "sample_ids": ["aca5fa55596c42f093ca4d6d4b3eaea9", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, shape, size", "color, head, white and brown"], "captions_pred_pc": ["a black and white square with dots all around it", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a white square table", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["40921ffd69db479294554d261daf3035", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["floor, railing, staircase", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["black, roof, green", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small black building", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e098706085a44898abbd549693d12a64", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color is black, white, orange", "island, terrain, water"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["house, roof, wooden", "shape is cube, color is black, white"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a small barn", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["mannequin, scarf, color", "throne, stairs, tree"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a wine corkscrew"], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, light, jewels", "a, type, corkscrew"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " of two rocks with ice elements."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["red, sphere, resembles", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " of a character wearing glasses and a hat."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a 3d model of a person wearing sunglasses"], "question": "which entity has a character wearing a hat and glasses?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "a2354f13774340d392fbf33564934aab"], "properties": ["floor plan, ceiling light, color", "building, roof, yellow"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a white 3d model of a house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a crab holding a rubik's cube."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["Drawer, Pattern, White", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a crab holding a cube"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["Parts, Luggage, Truck", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a wooden billiard table with legs."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, green, orange, star", "legs, material, wood"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["ceiling, light, desks", "turrets, flags, towers"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has turrets", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "e694d53545d449319a64cceb0280c3c6"], "properties": ["cup, bottle, chessboard", "3d, slide, swing"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "225e4094141d416faba7c5598dc55ff8"], "properties": ["floor plan, heating system, ceiling light fixture", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small white house with windows and a black lid."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, white, furniture, black", "white, windows, lid"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a white house with three windows"], "question": "which house has a black lid?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, roof, green"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a building with a black roof"], "question": "which house has a green roof?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a, b, c", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["for a black square tile on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a house with a roof structure and toothbrushes."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["image, building, painting", "house, roof, toothbrushes"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d rendering of a white box with a lot of blades"], "question": "which image shows a house with a roof?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a lamp, a syringe, a light pole", "roof, color, yellow"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a black shark", " of a small white building with stairs and a lid."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["black, mouth, teeth", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of an object on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a wooden billiard table with legs."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["furniture, room, kitchen", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a house with a roof and beams."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, roof, soup", "roof, beams, house"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small black and white cube.", " a white building with a red roof."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, size", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a city skyline", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["height, material, shelves", "island, terrain, water"], "captions_pred_pc": ["a black ladder on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["low poly, plant, white", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a spiral staircase"], "question": "which object is white", "label": 1}, {"captions": [" of a black shark", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["black, mouth, teeth", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a white cube-shaped shelf"], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "1fc0969de9bf47cab82cae4cc8fe6c2f"], "properties": ["- color is white- shape is cube- material is plastic", "shape is cube, color is white, material is wood"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "a 3d rendering of a white shelf on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a blue and green penguin."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, bird, green, yellow, blue", "color, blue, green"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of a ball with dots on it"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a penguin sitting down"], "question": "which animal is blue and green?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "096e42b466ec438d95c5d89a85191534"], "properties": ["color, light, jewels", "white, rock, shell"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", "a yellow and blue toy submarine."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, stone, green, blue", "color, yellow, blue"], "captions_pred_pc": ["a circle of black dots on a white background", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a 3d model of a submarine toy"], "question": "which object is made of a yellow and blue color?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["floor, table, wall", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a spider-like creature with long arms and legs."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, temperature, england", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a243183445184d2e977044a5b6916e55"], "properties": ["color, shape, and size", "painting, frame, door"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a large group of people"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a picture frame with a black and white photograph"], "question": "which entity is a painting?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, texture", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a mouse wearing a top hat and a teddy bear holding a spoon.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["887e410d07854396b563325ae1929583", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, mouse, bear", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a mouse wearing a top hat and bow tie", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a white chest of drawers with legs."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["floor plan, bathroom, pool", "chest of drawers, legs, white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a large white and metal building with a metal roof structure."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a cross", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "b57936676e9d43abb635fa1217992287"], "properties": ["A, a, a", "a, hole, rock"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a lace belt"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which entity has a hole", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white house with a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["apse, roof, floor plan", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["tv, chair, laptop", "room, furniture, window"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a small white building with stairs and a lid."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, texture", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small purple plastic chair with holes."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, handle, zipper", "color, plastic, purple"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a wooden roof structure with a pink roof."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, color, yellow-green", "roof, color, pink"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of the roof of a building"], "question": "which building is not pink?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["stair, table, chair", "earbuds, light, ring"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, tower", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["floor plan, heating system, ceiling light fixture", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a piece of ancient pottery"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["770e577c9795435898209fd24191635b", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["image, color, light", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a white 3d model of a small town", "a 3d rendering of white clouds floating in the air"], "question": "which image has a sky?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "5414d75e47104589837f3df8b6de6d22"], "properties": ["Cabinet, Drawers, Filing", "beige, white, round"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a white of a spaceship and building."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, lake, pool", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a small house with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, house, small", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["background, color, white", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", "a white glass beer mug."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "1d686cbd3e9a4c629a43088658989286"], "properties": ["shape, bathroom, refrigerator", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is white, material is plastic, shape is tube", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, color, pink", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "09f2cf267e954c958828325067bcc36a"], "properties": ["house, roof, green", "island, terrain, rocks"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a black roof", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a wooden table with a plant on it."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["broom, shovel, fireplace", "table, plant, wood"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " of two rocks with ice elements."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["buildings, houses, grass", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a white sofa, chair, and box."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "4c59733ebd634594a921b7ace60e4142"], "properties": ["color, orange, leather", "sofa, chair, box"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a white chair"], "question": "which is not a chair", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "4a889132cc444d10bfcbf6c760984416"], "properties": ["building, floorplan, gym", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a desk and chair"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["base material is wood, color is red, message is welcome to northwich", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a white building."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "4decc6a3d12c47888f8fec543153a985"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, building"], "captions_pred_pc": ["of a spike on a white background", "a black and white drawing of a bottle"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a building on a white background"], "question": "which is not a building", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "bf18bfd89efd43389781050230467d58"], "properties": ["flower, color, pink", "Lights, number, five"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, structure, truss", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["s of, snowboard, shoes, mask", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, air conditioner, house", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "a17477b445b3443189dad22f768b888b"], "properties": ["books, paper, lamp", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["hat, bag, blanket", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white teapot with pink flowers and a handle."], "sample_ids": ["55b26130f1514032be078e13fd982905", "f6c5e8931d164979a71914127c7e5438"], "properties": ["color, shape, material", "color, white, handle"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white dots on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a white tea kettle with a black handle and floral design"], "question": "which object has a handle", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, brown, flat", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a small white box with a green light.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, light", "roof, metal, white"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small white house with a roof."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, bird, lake", "roof, color, white"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["nut, bowl, ring", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with a blue roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, blue", "house, roof, wooden"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a wheeled hospital bed", " of a beige and white round soap dish/small bowl."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "5414d75e47104589837f3df8b6de6d22"], "properties": ["wheeled, bed, hospital", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, and size", "house, pool, balcony"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a modern house"], "question": "which entity is larger", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, pink", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a metal grate", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["lighthouse, fountain, crater", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity is a dollhouse?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["s, chimpanzee, human, wolf", "paint, rust, concrete"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " of a white chest of drawers with legs."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["roof, truss, suspended ceiling", "chest of drawers, legs, white"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, dress, flower", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a small white house with a roof."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["carving, statue, wall", "roof, color, white"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "c3a82df41875402285608ef13a55df57"], "properties": ["backrest, curved, yes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small house with stairs and a roof."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["table, staircase, light", "roof, stairs, house"], "captions_pred_pc": ["a black and white photo of the letter g", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a computer mouse on a piece of paper with a hole in it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "453edfa600a0493f9379738ea8393273"], "properties": ["houses, trees, road", "paper, hole, mouse"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white illustration of an object in the shape of a cloud"], "captions_pred_image": ["a black and white photograph of a small town", "a mouse on top of a piece of paper"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" of a house with a pink roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, roof, pink", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of the roof of a building"], "question": "which roof is pinker", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, orange, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["hat, sword, gun", "cup, bottle, chessboard"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which entity has a chessboard?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "9968e06a62e8487ea33460e640abc573"], "properties": ["- material is wood, metal, metal", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a broom on a stand"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["black, white, laptop", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": ["a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["034c093c73fd48758422feee0b10c5d8", "a17477b445b3443189dad22f768b888b"], "properties": ["a, backpack, stick", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a bird in flight", "a black and white image of a square with dots"], "captions_pred_image": ["a pencil drawing of a person holding a sword", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white 3d dragon-bat hybrid with wings."], "sample_ids": ["55b26130f1514032be078e13fd982905", "8cb88b6f02c549ee812e092a2e948e1c"], "properties": ["color, shape, material", "wing, color, white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white image of a bird in flight"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a white 3d model of a bat flying in the air"], "question": "which entity is white", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a small white bowl with a light blue glaze and blue rim."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "6f7201fbb58649379398a8d1d5c0cc7a"], "properties": ["color, blue, structure", "color, blue, rim, blue"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a dotted circle on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a white bowl on a gray background"], "question": "which entity has a blue rim", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "18e392c5360146eda498c5edab25b15c"], "properties": ["base, speaker, light", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["house, tree, pool", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["image is rock formation with a white cliff and a rock", "mossy, rock, grass"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a piece of wood on a white background"], "question": "which entity has a rock with grass?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, white, logo", "color, frame, shape"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, orange, leather", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is made of paper", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small white house with a roof."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, house, wooden", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " of two rocks with ice elements."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["structure, columns, roof", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a green roof and lawn.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "770e577c9795435898209fd24191635b"], "properties": ["roof, green, lawn", "image, color, light"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a white 3d model of a small town"], "question": "which image has a light that is not the color of the image?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a white sofa, chair, and box."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "4c59733ebd634594a921b7ace60e4142"], "properties": ["a, dress, flower", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, skyline, buildings", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white drawing of a building"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, handle, gray", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, grass, moss", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "b896a0898efe4059a776193c02132129"], "properties": ["water, boat, rock", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a surfboard", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["floor, wall, roof", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "ee440fcbc493488e879539d37a8d820e"], "properties": ["bread, chocolate, cake", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d map of the country of israel"], "question": "which entity has more ice", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["location, field, gravestone", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white illustration of a whale", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is whiter", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["height, material, shelves", "roof, trusses, beams"], "captions_pred_pc": ["a black ladder on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d model of the roof of a building"], "question": "which entity has more wooden beams", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a wooden table and chair."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "table, chair, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a small wooden table"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["a box, a cup, a bottle, a jar", "metal, rusted, paper"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a piece of debris on the ground"], "question": "which entity has more metal", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof truss, insulation, suspended ceiling", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "1da865c75a5e4a57a17652975dae5474"], "properties": ["buildings, houses, grass", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a white box, a white lid, and a white container"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "c3a82df41875402285608ef13a55df57"], "properties": ["building, roof, balcony", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a white plastic object on a gray background"], "question": "which object is not a building?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, leg, tail", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, yellow, chimney", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " of a black and white striped fly in the air."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["white, rock, shell", "black, white, fly"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["a, booth, bed", "hat, dress, racket"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white motorcycle with wings."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, and size", "color, white, wings"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a motorcycle on a white background"], "question": "which entity is not a motorcycle?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small building with windows and a roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["yellow, table, roof", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["flower, color, pink", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["backrest, curved, yes", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, shape, texture", "building, plane, city"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, wheels", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["red, mouse, handwriting", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "c017bfb82db1460cafff604c0808793f"], "properties": ["chair, table, refrigerator", "a, suit, cell, phone, gun"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "97e000ff41094665afd94ea565da8b13"], "properties": ["structure, roof, pitch", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a building"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" of an orange shopping bag with handles and a \"t\" logo.", " of a small white building with stairs and a lid."], "sample_ids": ["392dcf37195e43948cfbffe099082108", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, logo, handle", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a purse with a chain", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a shopping bag royalty free 3d model no.2", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, material, structure", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["roof, stairs, house", "house, hill, forest"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "bf18bfd89efd43389781050230467d58"], "properties": ["container, powder, white", "Lights, number, five"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a clear plastic container with a white label on it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a, handle, orange, rake, knife", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["earbud, earpiece, earpiece", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["A, a, a", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, color, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, dress, flower", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a large metal building with a roof and truss structure."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "b85a99699ccd4bcba213322113bb253d"], "properties": ["cup, bottle, chessboard", "roof, truss, structure"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a long metal fence"], "question": "which entity has a roof", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, table, chairs", "roof, pillar, stairs"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "703dce44052e48cfb024bceb08141554"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, beams, frames"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a wooden structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a green mountain with trees and grass."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, bowl, cup", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, material, shape", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a yellow circle with a black outline.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, outline, circle", "a, material, clay"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, texture", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a building structure"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small white box with a green light."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["shape is box, color is white, door is present", "color, white, light"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d rendering of a small white box"], "question": "which box is white", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["two-story, roof, building", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color of yellow", "label": 1}, {"captions": [" of a barrel and a cube together.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, barrel, cube", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, truss, lamp", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a wooden roof"], "question": "which house has a wooden roof truss structure and ceiling with wood beams?", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["Brown, metal, lock", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "6b745457e06840119058883b35f78f58"], "properties": ["color, tan, brown, orange", "roof, color, blue"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a building with dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, helmet, airplane wing", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, pattern", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small wooden house with a green roof."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, color, green"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["face, handle, spout", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "c3a82df41875402285608ef13a55df57"], "properties": ["graffiti, chinese writing, door", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["desk, chair, table", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a crab holding a rubik's cube."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, color, red", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a black and white striped fly in the air."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["- material is white- color is white- texture is textured", "black, white, fly"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a cube", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a flat roof structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, purple, suspended", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which roof is flat", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["house, table, chair", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a throne with a tree on it"], "question": "which entity has stairs", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " featuring a chair, table, and refrigerator."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["castle, island, house", "chair, table, refrigerator"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity is a chair", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, room, ceiling", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pink", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["hat, shirt, bearded", "moss, mushroom, grass"], "captions_pred_pc": ["of a black and white bracelet on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, card, case", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a pokemon card is displayed on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a clay pot with holes in it."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, green, lawn", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["building, tree, plane", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, shape, size", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "ee440fcbc493488e879539d37a8d820e"], "properties": ["a, b, c", "island, fish, ice"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d map of the country of israel"], "question": "which entity has a fish", "label": 1}, {"captions": [" a small white house with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of the roof of a building"], "question": "the roof of the house is made of wood", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["image is a sculpture of an angel on a wall", "building, material, stone"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color is white, material is plastic, shape is tube", "mossy, rock, grass"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a clay pot with holes in it."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["house, hill, forest", "hole, material, clay"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["house, tree, pool", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a wooden windmill with a red roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["house, rock, pond", "roof, color, red"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" of a hammer with a long metal handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["30f4b6bcbbb44f568cab4fd439d05145", "c3a82df41875402285608ef13a55df57"], "properties": ["handle, metal, long", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white toothbrush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a hammer with a wooden handle and metal head", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "da8b5d21da9b4037982f29383d60b100"], "properties": ["size, color, shape", "resembles, toy, castle"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a tower made out of blocks"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small building with windows and a roof."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["buildings, houses, grass", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has more windows", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["frame, beams, trusses", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a metal grate", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a two-story small apartment building with a roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, white, containers", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a purple chair with holes in it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, purple, holes", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a silver pendant with an intricate design", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["earbud, earpiece, earpiece", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a white object on a grey background", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "b85a99699ccd4bcba213322113bb253d"], "properties": ["apse, roof, floor plan", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a room", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a long metal fence"], "question": "which building has a roof with a truss structure", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, building, people", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small silver camera with a lens.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["62829a25b4634d63a2ba2b0220335b3e", "97e000ff41094665afd94ea565da8b13"], "properties": ["lens, silver, camera", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a toothbrush on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "936714802d2849bea3efb1eb5c83cee6"], "properties": ["variation, bread, pot", "variation, bread, pot"], "captions_pred_pc": ["above a black and white drawing of an object", "above a black and white drawing of an object"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of an ancient pottery bowl"], "question": "which entity has a variation of bread?", "label": 0}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a wooden roof structure with a pink roof."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["collection, moose, skull", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, height", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["- material is plastic- color is green- shape is box", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a small wooden house with a green roof."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "674a36147ffb47059e48abc9fa19d923"], "properties": ["chair, table, refrigerator", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a clay pot with holes in it."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["food, leaves, shredded paper, rocks", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a white of a woman with her arms outstretched."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["pattern, color, shape", "image, color, white"], "captions_pred_pc": ["a black circle on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["black, white, laptop", "black, roof, green"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a large orange keg with a white lid."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["Headstock, Guitar, Head", "color, lid, orange"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an axe head", "a gray keg with a white lid sits on top of a gray surface"], "question": "which object has a white lid", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "770e577c9795435898209fd24191635b"], "properties": ["color, material, structure", "image, color, light"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a white 3d model of a small town"], "question": "which image has a ceiling light?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["turrets, flags, towers", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["hat, color, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a doll made of beads", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "s of chimpanzee, human, and wolf skulls."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "16a6e8b5830b4da6828af63e91f75f9b"], "properties": ["color, tan, brown, orange", "s, chimpanzee, human, wolf"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white photograph of a skull on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a gorilla skull royalty free 3d model preview no.2"], "question": "which entity has more s", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a large house with a roof on a platform."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "cb3e09a301b746918a682a595037c7f7"], "properties": ["room, bed, desk", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["house, yard, surrounding buildings", "mannequin head, plague mask, straps"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a plague doctor's mask on a mannequin head"], "question": "which entity is not a mannequin head?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["building, material, steel", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, color, blue", "roof, truss, lamp"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house with a metal roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" of a large gray sphere", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, color, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white circular pattern on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e44009d33258425e8efedfbc6823bf70"], "properties": ["color, shape, and size", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, background, white", "water, boat, rock"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, skyline, buildings", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a white 3d model of a city skyline"], "question": "which image shows a shelf?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a spider-like creature with long arms and legs."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, ceiling, hole", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "4df70180f2ea400782d2e2de76063894"], "properties": ["resembles, octopus, squid, spider, robot", "color, black, blue"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has more colors", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["ring, material, gold", "door, lock, handle"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, room, ceiling", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "ee440fcbc493488e879539d37a8d820e"], "properties": ["building, stairs, table", "island, fish, ice"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small white house with a staircase and a window."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, shape, material", "house, staircase, window"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["shape is cylindrical, color is silver, material is metal", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["fireplace, bench, log", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small white building with stairs and a white table."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, air conditioner, house", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["giraffe, bench, flower", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a low poly 3d model of a rock", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "854757ca755240f8b04576d899349151"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "cabinet, room, shelf"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which entity has a cabinet?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["building, roof, balcony", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "an image of a pile of trash on the ground"], "question": "which entity has grass?", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, text", "a, material, steel"], "captions_pred_pc": ["the logo for carl meyer", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, size", "gold, ring, animal"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a large metal building with a roof and truss structure."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a, bird, lake", "roof, truss, structure"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["turrets, flags, towers", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a pink, ear-shaped object.", " a spider-like creature with long arms and legs."], "sample_ids": ["0e08d777c7b948a784dc15748e7b173f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["shape is ear, color is pink, material is plastic", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, green, tiled", "house, tree, hill"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small white building with stairs and a white table."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, and size", "building, stairs, table"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, table, sphere", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a house with a blue roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a computer desk with a metal cube and a black and blue object on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ccae0199457440e68db47a936191afe5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, color, black, blue", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a sofa with a cushion on top", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a desk with a laptop on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a small white building with stairs and a lid."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, rock, pond", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, red, blue, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["castle, island, house", "lamp, harp, bowl"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["size, material, shape", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a table with a staircase"], "question": "which object is smaller", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, green, leaf", "island, fish, ice"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d map of the country of israel"], "question": "which entity has more ice", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, head, mask", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a small black box on a purple square.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["75f209e543c046669099190953616acc", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a twisted white rope."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "7dce7f24ef2d4f6e88e3bf5cee50e603"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, twist"], "captions_pred_pc": ["of a spike on a white background", "a black and white drawing of a spiral on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a white rope tied into a knot on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "990f06da2ba4488da8371f68da6b4523"], "properties": ["yellow, table, roof", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with a wooden roof"], "question": "which entity has a roof truss structure", "label": 1}, {"captions": ["white 3d tank model", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["ac17fa1c967e4af382de4a445049f231", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["color is white, model is 3d, name is tank", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white photo of a small object on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a tank on a white background royalty free 3d model preview no 2", "a 3d model of a small table"], "question": "which entity has a bathroom", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["chocolate, mushroom, cake", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a white fox."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, pier, railings", "color, white, fox"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a stone wall featuring carvings and statues."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- material is wood, metal, metal", "carving, statue, wall"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d image of a group of statues on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", "a white glass beer mug."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["bowl, pottery, headpiece", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a wine corkscrew"], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["resembles, toy, bookshelf", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": ["a white statue of a woman holding a baby.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7cf1c30a98fc4ae796e040c2ce18c03a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, statue", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a heart", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed figurine of a woman holding a cat", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of an egyptian temple featuring a pyramid, sphinx, and a building with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["40022305eaf44442915c9db03e25f781", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of an abstract design", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ancient temple", "a 3d model of a house with a roof"], "question": "which building has a roof", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, helmet, airplane wing", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, rock, paper", "room, furniture, window"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["stacked, racks, toy train", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["graffiti, chinese writing, door", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["house, tree, pool", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree", "label": 1}, {"captions": ["a drawing of a bird, fish, and white-blue dragon with a tail.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7136a3a6819e49e4b855f45fa1e2cded", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["animal, tail, white-blue", "Wheels, laptop, robot"], "captions_pred_pc": ["a white and black bird flying in the sky stock illustration \u00a9 2019 iStock", "a black and white drawing of a cell phone"], "captions_pred_image": ["an illustration of a bird with its wings outstretched on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "f1b557775310478893242180defa4d80"], "properties": ["color, red, green, yellow", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, umbrella, coat", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a tree made of dots", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, stairs, house", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": [" a small house on a hill in a field.", " of two rocks with ice elements."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, hill, field", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, white, gold", "box, paper clip, lock"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["Drawer, Pattern, White", "roof, trusses, beams"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "5017581716c7402581a82ebf08d427a3"], "properties": ["light source, fixture, color", "Shelf, color, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a white shelf"], "question": "which entity is white", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["building, fence, snowy", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a large metal building with a roof and truss structure."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, handle", "roof, truss, structure"], "captions_pred_pc": ["a black and white dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["adec10493e06436c967d5797f7085225", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, material, shape", "gold, ring, animal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a house with a pink roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "6162909df6294848a8eea83c3aa9585b"], "properties": ["roof, purple, suspended", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which roof is pink", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a small white building with stairs and a white table."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "e30374c614f54fdb90f35b96b071349d"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a building with a staircase"], "question": "which table is white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, hole, rock", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a wooden roof structure with a pink roof."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["ceiling, light, desks", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "b896a0898efe4059a776193c02132129"], "properties": ["floor, wall, roof", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, furniture, black", "arrow, red, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", " a large steel building with a pool."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["location, city, boat", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a map", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", "a yellow and blue toy submarine."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["roof, trusses, beams", "color, yellow, blue"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["image size, image, origami", "gold, ring, animal"], "captions_pred_pc": ["above a black and white illustration of an airplane", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is not a ring?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, roof, soup", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a low poly 3d model of a rock", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a small white box with a green light.", "3d white square with a person and objects on it."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "d6ee341a90164c6abc30abd9dd74f31f"], "properties": ["color, white, light", "3D, white, person"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a black object on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d image of a person standing in the middle of a white floor"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, front, road", "house, table, chair"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["roof, purple, suspended", "building, roof, balcony"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a clock tower"], "question": "which building has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, roof, blue", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, table, sphere", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small white building with stairs and a white table."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, yellow, chimney", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, number", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, roof, block", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["table lamp, ceiling light, table", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, suit, cell, phone, gun", "grass, plants, rocks"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a spider-like creature with long arms and legs."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, room, ceiling", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small, snow-covered house."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, pier, railings", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["food, leaves, shredded paper, rocks", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a bird in flight", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small white house with a roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["bed, desk, window", "roof, color, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small white house with a roof."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["painting, door, wall", "roof, color, white"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, white, pen, logo", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a close up of a black object on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a still life?", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, size", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a staircase in a room"], "question": "which entity is a staircase?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, trusses, beams", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a building"], "question": "which roof has trusses", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["wood, board, shelf", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bathroom?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a spider-like creature with long arms and legs."], "sample_ids": ["97f487941d26472294e005fa97c403be", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, white, green", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an office building", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a blue roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, rock, pond", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a celtic stone cross.", " a small purple plastic chair with holes."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- material is stone- shape is cross- color is black", "color, plastic, purple"], "captions_pred_pc": ["for a black and white image of a watch", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a small white house with a roof."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, color, white"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a carved eagle sculpture on a yellow california map.", " of two rocks with ice elements."], "sample_ids": ["5bf0c9c6b7454bc3846302ead23635e4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, eagle, map", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a long piece of lace", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of an eagle with its wings outstretched", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["- color is white - shape is box - material is plastic", "door, lock, handle"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a black and white image of a door with a crack in it"], "question": "which door is made of wood", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["building, floor, columns", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, roof, green", "roof, color, yellow"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["A, a, a", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white building.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, white, building", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a bottle", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building on a white background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["house, building, people", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small white house with a roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["fireplace, bench, log", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "09f2cf267e954c958828325067bcc36a"], "properties": ["house, staircase, table", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["hat, food, bowl", "bowl, pottery, headpiece"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a piece of ancient pottery"], "question": "which entity has more pottery", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small white building with stairs and shelves."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, blue, green, yellow, blue", "building, stairs, shelves"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "4a889132cc444d10bfcbf6c760984416"], "properties": ["shape, color, material", "a, color, white"], "captions_pred_pc": ["a black and white image of a pair of socks", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["houses, trees, road", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a window"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " of a machine gun with additional items."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["ruined building, stone floor, small stone structure", "gun, type, machine gun"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a submachine gun"], "question": "which object is more likely to be used in a war", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a spiral staircase with railings."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["wall, stairs, castle", "railings, staircase, spiral"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, tail, cord", "cloak, sword, spear"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "b896a0898efe4059a776193c02132129"], "properties": ["background, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black line on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white box with a green light.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "6b745457e06840119058883b35f78f58"], "properties": ["color, white, light", "roof, color, blue"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["black, white, laptop", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["white of a small stool and toilet paper holder.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["b7b32b690a2942878e3bd386de75d29d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, stool", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of an object in the shape of an open umbrella", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a toilet paper holder royalty free 3d model preview no. 1", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small white house with a roof."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["turrets, flags, towers", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a brick wall with grass."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, roof, tray", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photo of a brick wall and a puddle"], "question": "which wall is made of brick", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, white, pink, eyes", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black and purple?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a black rock with writing on it."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["a knife, blade, handle", "color, black, writing"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a piece of white plastic on a gray background", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a house with a wooden-framed roof structure."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, hill, deer", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "333b77483f1b40468dec28906887151a"], "properties": ["building, material, stone", "3D, material, white gold"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "of a black ring on a white background"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a white gold ring with an oval shaped diamond in the center"], "question": "which entity is made of white gold", "label": 1}, {"captions": [" a small house with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, house, small", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, lighting, booth", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small white house with windows and a black lid."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "4b40af369c1149949f5ccb68becd8430"], "properties": ["liquid, ice, lid", "white, windows, lid"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a white house with three windows"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "door, lock, handle"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a building with yellow lines."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, shape, material", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a red roof.", "a white of a spaceship and building."], "sample_ids": ["085db9059b744673b5623b5338e02196", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, red, house", "image, building, spaceship"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["sandbox, sand bucket, wooden blocks", "hat, skull, bread"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a white ornate airplane design.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, material", "table, stairs, ladder"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of a table with a stool on top"], "question": "which object is white", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "97e000ff41094665afd94ea565da8b13"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "db74ee1621464be1b164be26a1af050e"], "properties": ["- color is white- shape is cubes- number is 1", "window, arches, wall"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "4389909667db472ea9a57a70eb940fa4"], "properties": ["base material is wood, color is red, message is welcome to northwich", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, background, gray", "roof, metal, white"], "captions_pred_pc": ["above a black and white photograph of an object", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a white castle composed of small cubes."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, text", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a building with yellow lines."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, black, blue", "color, yellow, lines"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white drawing of a map"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a four-legged metal workbench with shelves."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["building, tree, plane", "Four legs, Metal, Shelf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["island, mountain, grass", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a, eagle, wood", "room, staircase, bus"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["shape is sphere, color is white, material is plastic", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, plane, town", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, air conditioner, house", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a house with a wooden-framed roof structure."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, type, factory", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "a17477b445b3443189dad22f768b888b"], "properties": ["color, horns, features", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["hat, food, bowl", "table, bench, deer"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a pile of mint green soap cubes."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "edd35e0657b640b1b8fcf86942e1a9e5"], "properties": ["color, shape, and material", "color, mint, soap"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background"], "question": "which object is made of soap", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a potted christmas pine tree."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["- material is plastic- color is white- shape is cylinder", "a, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, lake, pool", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, white, material, ceramic", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a house with a roof and beams."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, staircase, window", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "b896a0898efe4059a776193c02132129"], "properties": ["house, fence, playground", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small building with windows and a roof."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["- color is white- shape is cubes- number is 1", "roof, windows, building"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, light, jewels", "house, lake, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["table, stairs, ladder", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a white castle composed of small cubes."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["building, floor, columns", "composed of, white, cubes"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "two white spheres in a ."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "1c02212a35134545ab63ab180d629c31"], "properties": ["house, roof, green", "two, spheres, white, in, a"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a white ball on a gray background"], "question": "which object is not a house?", "label": 0}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house with a wooden-framed roof structure."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, green, tiled", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, and size", "house, fence, playground"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "c3a82df41875402285608ef13a55df57"], "properties": ["arrow, mountain, area", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a line with a square on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a purple chair with holes in it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, purple, holes", "color is white, yellow, plastic"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a white chair", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a blue and green penguin."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, base, warning", "color, blue, green"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a penguin sitting down"], "question": "which entity is not blue and green?", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small blue robot with a windmill."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["red, eyes, rocket", "color, blue, robot"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["throne, stairs, tree", "plane, ship, bird"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "6b745457e06840119058883b35f78f58"], "properties": ["graffiti, bench, wall", "roof, color, blue"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a building with dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c3a82df41875402285608ef13a55df57"], "properties": ["color, material, structure", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "bded33af34104b9686b845dfd18309a9"], "properties": ["acropolis, city, building", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a, hole, shelf", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a piece of marble"], "question": "which object has a shelf", "label": 1}, {"captions": [" of a wooden table and chair.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["884d232f9cd54b6c8c41b6bf357c704f", "b896a0898efe4059a776193c02132129"], "properties": ["table, chair, wood", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small wooden table", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, shape, and size", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, orange, white", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d printed figurine of an alien creature"], "question": "which entity is a white color?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, color, pink", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a metal grate", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with roof trusses"], "question": "which structure has a roof truss", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a brick wall with grass."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "53f2d948091f417cb580e22469c94db2"], "properties": ["lighthouse, fountain, crater", "brick, grass, wall"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4be12bf79ead47a68cd67fc01a6e5c8c"], "properties": ["color, shape, and size", "a, door, suitcase"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a dog in a cage"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a robot standing in front of an open door"], "question": "which entity has a door?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "ec2de6c604e44e6782ffab0c46daf33b"], "properties": ["a, dress, flower", "a, dress, flower"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a vase and a book next to each other"], "question": "which entity has a dress with a flower?", "label": 0}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, purple, suspended", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a ceiling with a hole", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "d81d13362ae04371bb2cba46e4939665"], "properties": ["resembles, octopus, squid, spider, robot", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", "a white glass beer mug."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "1d686cbd3e9a4c629a43088658989286"], "properties": ["shape is cube, material is wood, color is white", "color, white, glass"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["red, mouse, handwriting", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "c3a82df41875402285608ef13a55df57"], "properties": ["size, material, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white shelf with holes and brackets."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["background, color, white", "color, white, holes"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white bench with a shelf on top"], "question": "which shelf has holes", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["frame, truss, roof", "frame, truss, roof"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof structure?", "label": 0}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["color, shape, and material", "a, landscape, sand"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "c3a82df41875402285608ef13a55df57"], "properties": ["Brown, metal, lock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a black box with a lock", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "table, bench, deer"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "a17477b445b3443189dad22f768b888b"], "properties": ["nut, bowl, ring", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a black and white striped box."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "color, black, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d image of a black and white striped surface"], "question": "which entity is a black and white striped box?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a house featuring furniture, people, a staircase, and torn-apart sections."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "85335d3349894b5884dbf6f3e7d68fcc"], "properties": ["furniture, staircase, torn-apart", "furniture, staircase, torn-apart"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white image of a pixelated cityscape on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a damaged room with broken furniture and debris on the floor"], "question": "which house has a staircase?", "label": 0}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "ceee98c20f23424195da092156905ec4"], "properties": ["A, a, a", "face, handle, spout"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a small, circular object"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white ceramic vase with a face on it"], "question": "which entity has a face", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a white of a man with arms outstretched."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, structure, wall", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, and size", "color, black, visor"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a clay pot with holes in it."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["frame, beams, trusses", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a wooden cube.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is cube, material is wood, color is brown", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["a room, a cake, a table", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white building with stairs and shelves."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "9e1f64d4fd514059be934077717536dc"], "properties": ["house, color, white", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a small white building", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, size", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a, color, case", "room, staircase, bus"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a human bone", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "6b745457e06840119058883b35f78f58"], "properties": ["a, b, c", "roof, color, blue"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small wooden house."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, table, chair", "house, material, wood"], "captions_pred_pc": ["above a black and white photograph of an open door", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["floor plan, heating system, ceiling light fixture", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small wooden house with a green roof."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["rusty, sink, graffiti", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a house with a pink roof.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, roof, pink", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a japanese geisha in a metal frame with a triangular-shaped metal door.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["0a75511848d74b7f97422ad85a27ec2e", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["frame, door, shape", "frame, truss, roof"], "captions_pred_pc": ["a line of black dots on a white background", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a framed picture of a geisha with a fan in her hand", "a 3d rendering of a bridge over a road"], "question": "which frame is made of wood", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["shape is hot dog, design is dragon, color is black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["lamp, harp, bowl", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a house with a flat roof structure."], "sample_ids": ["55b26130f1514032be078e13fd982905", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, shape, material", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, blue, structure", "a, material, clay"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building under construction", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a spiral staircase with railings.", " a potted christmas pine tree."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["railings, staircase, spiral", "a, color, green"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, tan, brown, orange", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a white rocking chair with a curved backrest."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["- material is wood, metal, metal", "backrest, curved, yes"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a backrest", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, door, window", "roof, color, yellow"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", "a white of a man with arms outstretched."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, leg, tail", "image, color, white"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["face, handle, spout", "house, table, chair"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white photograph of an open door"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["graffiti, chinese writing, door", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a door", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, light, jewels", "arrow, red, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, red", "roof, trusses, beams"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, red, green, yellow", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a toothbrush", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a house with a pink roof."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, roof, block", "color, roof, pink"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which roof is pink", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c553ba67fa914165a07a1f1d20581f19"], "properties": ["base material is wood, color is red, message is welcome to northwich", "cat, bowl, donut"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a close up view of the back of the chair"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting"], "question": "which entity has a cat?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, ceiling, hole", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, white, containers", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a city skyline in white"], "question": "which image is a city?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a white building with a red roof."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["building, color, white", "color, white, roof, red"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small wooden house with a green roof."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["black, white, coffee table", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small house with stairs and a roof."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["screen, keyboard, box", "roof, stairs, house"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["staircase, railing, building", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["boat, table, chairs, umbrella, solar panel", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house on a hill in a field."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof trusses, beams, suspended ceiling", "house, hill, field"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "c1536f68727947ff9e7810799fac583a"], "properties": ["tiers, building, stairs", "level, stairs, columns"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of an apartment building"], "question": "which building has stairs", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["- building is white, table is white, piles of paper are white", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a small white building with stairs and a lid."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["hat, sword, gun", "building, stairs, lid"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["stacked, racks, toy train", "throne, stairs, tree"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a throne with a tree on it"], "question": "which object has a fireplace?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["Cabinet, Drawers, Filing", "mossy, rock, rocky"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which entity is not a cabinet?", "label": 0}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a wooden billiard table with legs."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is plastic- color is green- shape is box", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["Brown, metal, lock", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d rendering of a metal box with a handle"], "question": "which box has a gun inside", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "white hospital bed, medical cart, and bedside table with wheels."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e3ef6fd54af440efa31984214dd6f11d"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "bedside table, wheels, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a stool on wheels"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d illustration of a white medical trolley on wheels"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " of a crab holding a rubik's cube."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["floor, staircase, balcony", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["runner, bed, bench", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "12093c89a60941e7884b252bdc05104c"], "properties": ["a box, a cup, a bottle, a jar", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a futuristic white sports racing car."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, white, red, pink", "color, white, futuristic"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["cup, bottle, chessboard", "house, staircase, table"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["railing, table, staircase", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, booth, bed", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of two rocks with ice elements."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, green, lawn", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a fruit bowl with an apple, on a table.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["64c3d61ba7b549b5b7c72b37d7532b48", "d49d8ed244094349a99e4faca05e0690"], "properties": ["apple, bowl, table", "low poly, plant, white"], "captions_pred_pc": ["for a white object on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in", "a 3d model of a plant growing out of a rock"], "question": "which object is on a white object", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a white of a house with a hole in the ceiling."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["base material is wood, color is red, message is welcome to northwich", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["frame, roof, trusses", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["- color is red, blue, pink", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, material, structure", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a colorful 3d paper toy hammer with a green handle and numbers on it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ee06311cc3d542b0aed18ccdb4e824db", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["of a hammer on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "f1b557775310478893242180defa4d80"], "properties": ["building, stairs, shelves", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a large metal building with a roof and truss structure."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "b85a99699ccd4bcba213322113bb253d"], "properties": ["bed, desk, window", "roof, truss, structure"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a large metal building with a roof and truss structure."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "b85a99699ccd4bcba213322113bb253d"], "properties": ["painting, door, wall", "roof, truss, structure"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of two rocks with ice elements."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, hill, forest", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of two rocks with ice elements."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, mouth, eyes", "image is a rock with ice elements"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a black shark", " a black and white striped box."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["black, mouth, teeth", "color, black, white"], "captions_pred_pc": ["a black and white image of an object on a white background", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["room, bed, desk", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small, snow-covered house."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, trusses, beams", "house, snow, cover"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["building, roof, balcony", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of the roof of a building"], "question": "which building has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, color, pink", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["desk, chair, table", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["house, tree, pool", "house, building, people"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, background, white", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a white building with a red roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, roof, tray", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a box, a cup, a bottle, a jar", "house, tree, hill"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, text", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "5414d75e47104589837f3df8b6de6d22"], "properties": ["white, rock, shell", "beige, white, round"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["A, a, a", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small white airplane flying in the air."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "747fb98f64794cdd96486debaf20a02c"], "properties": ["size, color, shape", "airplane, color, white"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a small airplane"], "question": "which entity is white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, grass, moss", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "06a1c233fb444830b577aa06e2c01294"], "properties": ["throne, stairs, tree", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" of a black shark", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["black, mouth, teeth", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a large steel building with a pool."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, balcony, street", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["s, plane, house", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": [" a black and green sphere with blue lights.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, light", "a, material, clay"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of the sun in the sky", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["shape is hot dog, design is dragon, color is black", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["light source, fixture, color", "door, lock, handle"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["black, white, laptop", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a molecule with two pink and blue spheres."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "926fb2e23c56440a86287e98c1440336"], "properties": ["house, roof, toothbrushes", "color, shape, size"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of three spheres on a white background"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["s, stick, leaf", "a, desk, laptop"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a piece of furniture"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop?", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, house, small", "roof, structure, suspended"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a metal roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a small white building with stairs and a white table."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, lighting, booth", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "star wars stormtrooper "], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, holes", "a, color, white"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a star wars stormtrooper?", "label": 0}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " a window with a colorful frame."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "59c7c35a04ce42dbb24e8f8e882c4127"], "properties": ["color, background, arrows", "frame, color, window"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white image of a banner on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d rendering of a window in a wall"], "question": "which window has a colorful frame?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["apse, roof, floor plan", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, shape, height", "Steel, Color, Yellow"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a building"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a table with multiple tables and chairs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "white of a rhino head with horns."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "8481aade84de47cab1a9accf8067e678"], "properties": ["backrest, curved, yes", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with a flat roof structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, containers", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "b494049bb15440949e465d54a72b2f02"], "properties": ["building, color, black and white", "building, floorplan, gym"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a white building with two floors"], "question": "which building is not a floor plan of a gym?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, room, ceiling", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a small house with stairs and a balcony.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["balcony, stairs, house", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a house with a blue roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["hat, sword, gun", "roof, color, blue"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a house with a roof"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " of a small white building with stairs and a lid."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["metal, legs, frame", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a patterned rug", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "bf18bfd89efd43389781050230467d58"], "properties": ["house, plane, town", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["black, white, coffee table", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a white of a man with arms outstretched."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, material, shape", "image, color, white"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["staircase, railing, building", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, material, structure", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a lion statue", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["ef45a94abce44c8980363602489f218c", "40022305eaf44442915c9db03e25f781"], "properties": ["a, material, statue", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["in 15 words or less 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustr", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d sculpture of a lion sitting on its hind legs", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["railings, staircase, spiral", "houses, trees, road"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "c3a82df41875402285608ef13a55df57"], "properties": ["location, city, boat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a map", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "92498f398e244020a867686729633610"], "properties": ["ruined building, stone floor, small stone structure", "a, house, cat, dog"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a house with a pink roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "6162909df6294848a8eea83c3aa9585b"], "properties": ["background, color, white", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": ["smiley-faced banana .", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a tree and a rock."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["color, door, window", "house, tree, rock"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "40921ffd69db479294554d261daf3035"], "properties": ["color, pier, stairway", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white illustration of an open door", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["hat, food, bowl", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a table with a staircase"], "question": "which entity has a light?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a sword with a wooden handle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bf448dbb4b6a43d89b2514929e8f7c43"], "properties": ["color, shape, and size", "handle, material, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a sword on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a sword with two blades"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a wooden shed with a gray roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a, building, coin, ball", "3d, slide, swing"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, table, ceiling", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a white of a woman with her arms outstretched."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, logo", "image, color, white"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a woman with her arms outstretched"], "question": "which is not a white supreme logo t-shirt", "label": 1}, {"captions": [" a red and white robot.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, red, white", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["shattered, resembles, broken phone", "house, pool, balcony"], "captions_pred_pc": ["for black ink brush strokes on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a wooden shed with a gray roof."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, blue, rim, blue", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, height", "torso, breasts, pattern"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a sword with a wooden handle.", "a black and white of a knife/sword with a handle."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["handle, material, wood", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white image of a sword with two blades", "a black and white image of a knife"], "question": "which image is in black and white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "bf18bfd89efd43389781050230467d58"], "properties": ["a, hole, rock", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, brown, flat", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["houses, trees, road", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "97f487941d26472294e005fa97c403be"], "properties": ["light, floor, ceiling", "color, white, green"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of an office building"], "question": "which entity has a white ceiling light", "label": 1}, {"captions": [" of a house with a pink roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, roof, pink", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["texture, color, shape", "color, frame, shape"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a 3d model of a building structure"], "question": "which entity is a cube", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "674a36147ffb47059e48abc9fa19d923"], "properties": ["a train, a ship, a boat", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["collection, moose, skull", "houses, trees, road"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["shape is cylinder, color is white, material is plastic", "roof, trusses, beams"], "captions_pred_pc": ["of a spike on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, pink, green", "roof, green, tiled"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a large metal building with a roof and truss structure."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, roof, wall", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a building", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": ["\"multiple white cubes arranged in a row on a gray background.\"", " of two rocks with ice elements."], "sample_ids": ["17c8222d4ce04e518117078e7de6aaed", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, background, white", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a box with the words 'box 2' and 'thoughtful'", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an image of a white background with a few small cubes on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "97e000ff41094665afd94ea565da8b13"], "properties": ["two-story, roof, building", "roof, material, wood"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which building has a roof made of wood", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, pink", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a metal grate", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small purple plastic chair with holes."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, number", "color, plastic, purple"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["computer desk, laptop, monitor", "railing, chair, light"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair with a glass top?", "label": 1}, {"captions": ["a wooden-cased radio.", "a white glass beer mug."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "1d686cbd3e9a4c629a43088658989286"], "properties": ["case, material, wood", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " of a white human skull with broken bone elements."], "sample_ids": ["55b26130f1514032be078e13fd982905", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a, bird, lake", "house, staircase, table"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a potted plant on a wooden table or shelf."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["shape, bathroom, refrigerator", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a black and white image of a plant in a pot"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", "a white of a man with arms outstretched."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a white building with a red roof."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, railing, black", "color, white, roof, red"], "captions_pred_pc": ["above a black and white image of a computer screen", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a wooden windmill with a red roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, white, red, pink", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e34088fc7b5344c4ab29fef067750225"], "properties": ["lighthouse, fountain, crater", "sphere, pedestal, statue"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue?", "label": 1}, {"captions": [" a small house with a red roof.", " a small white barn with a metal roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, red, house", "roof, metal, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["- material is plastic- color is white- shape is cylinder", "ring, helmet, bowl"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d printed ring in white 3d printed material"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, material, ceramic", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white vase on a grey background", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "887e410d07854396b563325ae1929583"], "properties": ["s, chimpanzee, human, wolf", "hat, mouse, bear"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["castle, island, house", "a, island, resembles, hawaii"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which island is smaller", "label": 1}, {"captions": [" a small red and white spaceship.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a stone wall featuring carvings and statues."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["a, color, case", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d image of a group of statues on a wall"], "question": "which object is more likely to be a statue", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, shape, height", "buildings, houses, grass"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a multicolored metal building structure with a roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, skyline, buildings", "color, roof, structure"], "captions_pred_pc": ["a black and white illustration of a city skyline", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a white and blue building with a black roof."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, ceiling, hole", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, fence, dog", "house, table, chair"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["screen, keyboard, box", "hat, skull, bread"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, orange, leather", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a chair", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a piece of paper with writing on it.", " of a piece of paper with writing on it."], "sample_ids": ["57950d2e2e254d9c8d9631cedd584adf", "57950d2e2e254d9c8d9631cedd584adf"], "properties": ["paper, writing, piece", "paper, writing, piece"], "captions_pred_pc": ["a close-up view of the back of a tablet on a white background", "a close-up view of the back of a tablet on a white background"], "captions_pred_image": ["a piece of torn paper on a white background", "a piece of torn paper on a white background"], "question": "which entity has a piece of writing on it?", "label": 0}, {"captions": [" a small island with trees, water, and a river.", " a cityscape featuring various buildings, trees, an airport runway, and a plane."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "9b45036d3f0342a78db9a25938dc77fc"], "properties": ["water, river, island", "building, tree, plane"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of an industrial area with buildings and trucks in the foreground"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a yellow roof and chimney."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, green, lawn", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", " of two rocks with ice elements."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["arrow, mountain, area", "image is a rock with ice elements"], "captions_pred_pc": ["a line with a square on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of an egyptian sarcophagus."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["color, screen, drawer", "sarcophagus, material, wood"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, material, pattern", "color, white, gold"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, shape, material", "window, arches, wall"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", "a white of a man with arms outstretched."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["dial, face, band", "image, color, white"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a set of three white shelves or ceiling panels with lines."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "ff6f8c2347ab4c17a2b3e319b205f191"], "properties": ["color, mouth, eyes", "set, white, lines"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a set of black and white dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d illustration of a set of three white trays on a gray surface"], "question": "which entity is a set?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["room, bed, desk", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" of an ak-47 assault rifle", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["7cb4d0ed471e4d71b3d60db6509292f8", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["weapon, caliber, type", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black airplane on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of an assault rifle royalty free 3d model preview no 2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["pos machine, credit card machine, cash register", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["a, head, bowl", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, roof, tray", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["color, temperature, england", "hat, dress, racket"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a wooden shed with a gray roof."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, texture", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, yellow", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a white castle composed of small cubes."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["buildings, houses, grass", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "white ceramic urn with a red lid."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color is white, material is plastic, shape is bottle", "color, white, lid, red"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a spiral staircase with a railing in a small building."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["structure, columns, roof", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a small house with a blue roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, color, blue", "structure, columns, roof"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a building with multiple levels"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, structure, wall", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, background, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["building, fence, snowy", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["image is rock formation with a white cliff and a rock", "house, pool, balcony"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["table, staircase, light", "island, mountain, grass"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["light switch, electrical outlet, furniture", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a green mountain with trees and grass."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a lamp, a syringe, a light pole", "mountain, grass, tree"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, plane, small plane", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a black rock with writing on it.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, black, writing", "color, shape, color"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, size", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a white 3d bowl with handles.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["277fc0f27a4a45f79b7a2cfc5e9f335c", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a sphere made up of tiny dots on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a white ceramic bowl with handles royalty free 3d model preview no. 3", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["s, plane, house", "table, bench, deer"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a white of a woman with her arms outstretched."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, texture", "image, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["floor plan, heating system, ceiling light fixture", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small building with windows and a roof."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, texture", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["rusty, sink, graffiti", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, pink, green, cord, white", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "703dce44052e48cfb024bceb08141554"], "properties": ["house, roof, wooden", "roof, beams, frames"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a wooden structure"], "question": "which house has wooden beams", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a wooden shed with a gray roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, food, bowl", "hat, color, tan"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a spiral staircase with a railing in a small building."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["door, stairs, color", "staircase, railing, building"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, mouth, eyes", "window, arches, wall"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, holes", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a white ornate airplane design.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, shape, material", "blue, curved, resembles"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, island, water", "stair, table, chair"], "captions_pred_pc": ["a black and white photo of a boat in the water", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", "a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "f7bb7dcf3c774149809444d6c7d20ab8"], "properties": ["color, plane, sky", "color, plane, sky"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d sculpture of a bird in flight on a gray background"], "question": "which plane is red", "label": 0}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["graffiti, wall, wheelbarrow", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, red, apples, tree, cactus, dots", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a building"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["base material is wood, color is red, message is welcome to northwich", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "6b745457e06840119058883b35f78f58"], "properties": ["color, white, background, gray", "roof, color, blue"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of an ipad stand with a small speaker and blue-white light on a cylindrical base."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "e0694fef8e414d69a6a89cdffd212c86"], "properties": ["color, base, warning", "base, speaker, light"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white illustration of a clock"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a tablet stand on a pedestal royalty-free 3d model"], "question": "which entity has a speaker on a base?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, color, red", "Lights, number, five"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a white chandelier with five white shades"], "question": "which object has fewer lights", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small building with windows and a roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, green, lawn", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, hole, rock", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a lace belt", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which rock is covered in moss", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "3cbdd3ff48804f9a8041b890838613ec"], "properties": ["shape is sphere, color is white, material is plastic", "acropolis, city, building"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview"], "question": "which entity is a model?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["earbuds, light, ring", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["animal, head, fox, chihuahua, cat", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a fox's head", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c017bfb82db1460cafff604c0808793f"], "properties": ["color, grass, moss", "a, suit, cell, phone, gun"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, structure, truss", "roof, material, wood"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["bird, nest, wood", "a room, a cake, a table"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a wooden shed with a gray roof."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["building, skyscraper, city", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "5850d5c7223447db816081d50292fec0"], "properties": ["houses, trees, road", "structure, material, pool"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["resembles, toy, bookshelf", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["smiley-faced banana .", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "throne, chair, building"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["collection, moose, skull", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a house?", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "f1b557775310478893242180defa4d80"], "properties": ["bedside table, wheels, white", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["height, material, shelves", "color is white, yellow, plastic"], "captions_pred_pc": ["a black ladder on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small white box with a green light."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["- color is white- shape is cube- material is plastic", "color, white, light"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a rusty green metal box with a handle and a gun inside.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["76cfd0e88ce243d483919a018a4f1a9e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["box, handle, gun", "box, paper clip, lock"], "captions_pred_pc": ["a black and white square with dots on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a metal box with a handle", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock?", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "be1376023c274bdda995d54f3694157f"], "properties": ["meat, bread, sausage", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a house with a roof"], "question": "which entity has more beams", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, temperature, england", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "an orange and white striped rocket model."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "9f19d5d47d174d3382c7dc31aaf22f0b"], "properties": ["color, horns, features", "color, orange, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a rocket on a gray background"], "question": "which entity is a model?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["house, roof, green", "roof, purple, beams"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of the roof structure royalty free 3d model no."], "question": "which roof is more colorful", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["mossy, rock, grass", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden crate", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["e2a74e97b8014a1d8a2b2ea3fd3b8fb8", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["size, material, shape", "structure, roof, pitch"], "captions_pred_pc": ["in one sentence a black and white image of a dotted square on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a wooden crate with a lid", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["house, staircase, window", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, table, chairs", "table, staircase, light"], "captions_pred_pc": ["a close-up of a white object on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, fence, dog", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a hole?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a potted christmas pine tree."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["fireplace, bench, log", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, plane, small plane", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["graffiti, bench, wall", "a room, a cake, a table"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["stair, table, chair", "mountain, grass, tree"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["yellow, table, roof", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a house with a roof and beams."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, ball, mushroom", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which object has a roof?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["- material is plastic- color is green- shape is box", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which object has turrets", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, screen, drawer", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, material, structure", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a white and blue building with a black roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, room, ceiling", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof?", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["770e577c9795435898209fd24191635b", "c3a82df41875402285608ef13a55df57"], "properties": ["image, color, light", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white 3d model of a small town", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["structure, roof, pitch", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which structure has a wooden truss?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "ee440fcbc493488e879539d37a8d820e"], "properties": ["earbuds, light, ring", "island, fish, ice"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "18e392c5360146eda498c5edab25b15c"], "properties": ["background, color, white", "frame, beams, trusses"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of a roman inscription on a stone plaque and paper scroll with writing.", " a small white building with stairs and shelves."], "sample_ids": ["0a281f5738b54febb835c052549ba399", "9e1f64d4fd514059be934077717536dc"], "properties": ["inscription, scroll, stone", "building, stairs, shelves"], "captions_pred_pc": ["a black and white photograph of a mirror", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white photograph of a plaque on a stone wall", "a white 3d model of a building with stairs"], "question": "which entity has fewer shelves", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a small wooden house with a green roof."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, head, bowl", "roof, color, green"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of two rocks with ice elements."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, stairs, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small house with a red roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["085db9059b744673b5623b5338e02196", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, red, house", "roof, material, wood"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a green mountain with trees and grass."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, bird, hook", "mountain, grass, tree"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "06a1c233fb444830b577aa06e2c01294"], "properties": ["s, batman, batman character", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "5017581716c7402581a82ebf08d427a3"], "properties": ["a lamp, a syringe, a light pole", "Shelf, color, white"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["building, type, factory", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, sword, gun", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house with a roof and beams."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, desk, laptop", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["s, stick, leaf", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["ruined building, stone floor, small stone structure", "a train, a ship, a boat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a submarine"], "question": "which entity has a ship", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small wooden house with a green roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, tan, brown, orange", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, horns, features", "stair, table, chair"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, red, pink", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["floor, staircase, balcony", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a wallet", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "7f8942ef51dd4246993a587a12df168c"], "properties": ["structure, building, archway", "house, yard, surrounding buildings"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, black, green", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, table, ball", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a red and white robot."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, roof, tray", "color, red, white"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a red and white robot?", "label": 1}, {"captions": [" a small house with a blue roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, color, blue", "island, mountain, grass"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "d81d13362ae04371bb2cba46e4939665"], "properties": ["- material is white- color is white- texture is textured", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a cube", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes."], "sample_ids": ["d6087023095446fbadef1721478373b2", "6d773d2b0ed9437ea2b9b352bd8a5c25"], "properties": ["door, roof, window", "building, floor, columns"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "in one line a black and white drawing of a dotted pattern on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d rendering of a large white table with multiple shelves"], "question": "which building has more floors", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white of a small archway gate."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["color, black, white", "image, color, white"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "above a black and white illustration of an arch"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is plastic- color is white- shape is cylinder", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white house with a roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["frame, roof, trusses", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "building, plane, room"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, plane, sky", "hat, skull, bread"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " of two rocks with ice elements."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, shirt, bearded", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, table, blocks", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["moss, mushroom, grass", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["frame, roof, trusses", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a piece of rock with a blue stick.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, rock, stick", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a rock formation", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["- material is stone - color is blue - shape is arrowhead", "books, paper, lamp"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a black and white photograph of a toilet paper holder"], "question": "which object is made of paper", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " a wooden billiard table with legs."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, label, shape", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["orange, forklift, parking lot", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d image of a small island in the middle of a lake"], "question": "which has more water", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a, ball, mushroom", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "4e82177059204292899fa7415164a05e"], "properties": ["mossy, rock, rocky", "yellow, tires, load"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a monster truck with spikes"], "question": "which object has large tires", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small white building with stairs and shelves."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, material, structure", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a small wooden house."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["stacked, racks, toy train", "house, material, wood"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a small cottage"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["headboard, wall, strip", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["white 3d triangular object", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color is white, shape is triangular, material is plastic", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["holder, spring, box", "box, handle, gun"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d rendering of a metal box with a handle"], "question": "which box has a gun inside", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " of two rocks with ice elements."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["frame, beams, trusses", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, roof, green", "roof, material, wood"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["A, a, a", "house, roof, blue"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a small white airplane flying in the air."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "747fb98f64794cdd96486debaf20a02c"], "properties": ["building, plane, city", "airplane, color, white"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a small airplane"], "question": "which plane is white", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a white chest of drawers with legs."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["floor, wall, roof", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "b896a0898efe4059a776193c02132129"], "properties": ["water, river, island", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a grayscale of a mountain.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "b896a0898efe4059a776193c02132129"], "properties": ["color, grayscale, mountain", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " of two rocks with ice elements."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["compartments, wall-mounted, vents", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- material is plastic- color is green- shape is box", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, bird, lake", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, shape, size", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small house with stairs and a balcony."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "0fbc5f16d301450c820b1f2158fd4f69"], "properties": ["wall, stairs, castle", "balcony, stairs, house"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building with two floors and a balcony"], "question": "which entity has a balcony", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a large white and metal building with a metal roof structure."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["lighthouse, fountain, crater", "roof, metal, white"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of the letter u", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, mattress, pillows", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a character wearing glasses and a hat."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["a, color, white", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a building with yellow lines.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, yellow, lines", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a map", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, rock, pond", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a spider-like creature with long arms and legs."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, stairs, house", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["white bowl, , small, stone ball", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["f56b16da42da49de8077499849c323c2", "d81d13362ae04371bb2cba46e4939665"], "properties": ["white, ball, bowl", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a white ceramic bowl on a gray background", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["shape is turtle, color is green, white", "a, color, red"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, wheel, helmet", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e694d53545d449319a64cceb0280c3c6"], "properties": ["A, a, a", "3d, slide, swing"], "captions_pred_pc": ["a black and white illustration of a bench", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["base material is wood, color is red, message is welcome to northwich", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a large steel building with a pool."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, color, green", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small triangular-shaped object."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "2d02985030804209a26c2c53b96a06f9"], "properties": ["building, tree, plane", "shape, triangle, small"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["shape is sphere, color is white, material is plastic", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a black triangular metal object with a clock and cross on it, and a small machine on top.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["b198a81dc41c4fde8be3ca51c3b0e676", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["metal, cross, clock", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d image of a small island in the middle of a lake"], "question": "which object has more water", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, railing, black", "roof, metal, white"], "captions_pred_pc": ["above a black and white image of a computer screen", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a large white box"], "question": "which building has a white roof?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["21639082215b4b179d574d2408124838", "92498f398e244020a867686729633610"], "properties": ["color, room, furniture", "a, house, cat, dog"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["room, bed, desk", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["background, color, white", "bed, desk, window"], "captions_pred_pc": ["a black line on a white background", "of a black and white drawing of a curved line"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["roof, air conditioner, house", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["wall, stairs, castle", "bedroom, bathroom, bed"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a person breaking through a brick wall."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["graffiti, chinese writing, door", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["21639082215b4b179d574d2408124838", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, room, furniture", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, shape, gun", "color, white, material, ceramic"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, bird, lake", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["lighthouse, fountain, crater", "Wheels, laptop, robot"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["d6087023095446fbadef1721478373b2", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["door, roof, window", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "f1b557775310478893242180defa4d80"], "properties": ["desk, chair, lamp", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": ["a white ornate airplane design.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["23ec5bf5dd154e4a9df3194da7b8267a", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, shape, material", "Eye color, Black, Purple"], "captions_pred_pc": ["of a black and white image of an ornate door knocker", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a decorative ornament on a white background", "a 3d model of a dragon with wings"], "question": "which entity is not a dragon?", "label": 0}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["s of, snowboard, shoes, mask", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a large steel building with many columns and a pool."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["- material is white- color is white- texture is textured", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, shape, material", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white image of a metal structure", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small white building with stairs and a white table."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["low poly, llama, kangaroo", "building, stairs, table"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["boat, table, chairs, umbrella, solar panel", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["light switch, electrical outlet, furniture", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof truss, beams, structure", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams?", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["level, stairs, columns", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small camera, black stereo system, speaker, and ceiling fan.", " of two rocks with ice elements."], "sample_ids": ["c6cef5b8f3a741e4a619e3441bee54d5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["camera, speaker, ceiling fan", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["s, plane, house", "table, staircase, light"], "captions_pred_pc": ["a black and white silhouette of a map", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small blue and red blimp.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, material", "island, mountain, grass"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["hat, sword, gun", "color, sphere, molecule"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white chest of drawers with legs."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["background, color, white", "chest of drawers, legs, white"], "captions_pred_pc": ["a black line on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture.", " a wooden table with a plant on it."], "sample_ids": ["6d0479f5b6d74e7ab69fad4091259e6c", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["light, fixture, square", "table, plant, wood"], "captions_pred_pc": ["above a black and white photograph of an object in the middle of a field", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk with a table on top", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a multicolored metal building structure with a roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["house, roof, toothbrushes", "color, roof, structure"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, and size", "metal, rusted, paper"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a piece of debris on the ground"], "question": "which entity is more rusted", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["color, light, jewels", "spheres, lamp, city"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a futuristic spaceship"], "question": "which entity has more spheres", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small white house with a roof."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, hill, deer", "roof, color, white"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, white, black, white", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["house, tree, pool", "building, material, rock"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d image of a damaged piece of furniture"], "question": "which building has more materials", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "c8936ace72954650b4e2d84246964849"], "properties": ["lighthouse, fountain, crater", "roof, color, pink"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " of two rocks with ice elements."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, umbrella, coat", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "c1536f68727947ff9e7810799fac583a"], "properties": ["color, shape, material", "level, stairs, columns"], "captions_pred_pc": ["a black and white image of a patterned rug", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of an apartment building"], "question": "which entity has more levels", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a large steel building with a pool."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, table, ceiling", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "bf18bfd89efd43389781050230467d58"], "properties": ["castle, island, house", "Lights, number, five"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["backrest, curved, yes", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "f1b557775310478893242180defa4d80"], "properties": ["color, material, shape", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a large white and metal building with a metal roof structure."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["building, fence, snowy", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["roof, color, green", "color, silver, white"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["throne, chair, building", "desk, chair, table"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a staircase in a room"], "question": "which entity has a desk and chair?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["balcony, stairs, house", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "096e42b466ec438d95c5d89a85191534"], "properties": ["roof, green, lawn", "white, rock, shell"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["a, chair, table, light", "hat, pants, shirt"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a white human skull with broken bone elements."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["bed, desk, window", "house, staircase, table"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a white and blue building with a black roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, windows, building", "color, white, blue, roof, black"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a roof that is black?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["low poly, plant, white", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a large white box"], "question": "which object is white", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["background, color, white", "cup, bottle, chessboard"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which entity has a chessboard?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, structure, house", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with a roof"], "question": "which structure has a roof", "label": 1}, {"captions": [" a spiral staircase with railings.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["railings, staircase, spiral", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "46903bf029934b1989bc062dcb0a5531"], "properties": ["buildings, houses, grass", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a close up of a black object on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "b896a0898efe4059a776193c02132129"], "properties": ["building, material, steel", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of an ancient statue"], "question": "which entity is made of more metal", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["room, door, shelf", "shape is box, color is white, door is present"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white, open shelving unit"], "question": "which building has a door", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["house, color, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white drawing of a bench", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small white house with a roof."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, green, tiled", "roof, color, white"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["text, material, shape", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, height", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["railing, table, staircase", "floor, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a window", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is in a room with wooden floor and ceiling?", "label": 1}, {"captions": ["a white glass beer mug.", " a small purple plastic chair with holes."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, glass", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a glass pitcher", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is cube, material is wood, color is white", "rusty, warning, metal"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["fireplace, bench, log", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a clay pot with holes in it."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["house, plane, town", "hole, material, clay"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "ceiling, light, desks"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a white origami bird with silver wings.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d9574287572c47f7a2b712cf1d919374", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, wings", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d model of the human body", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a futuristic bird in flight on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a wooden shed with a gray roof."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["computer desk, laptop, monitor", "roof, color, gray"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a person breaking through a brick wall."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["black, white, laptop", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["blue, curved, resembles", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, yard, surrounding buildings", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["costume, color, black", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "bf18bfd89efd43389781050230467d58"], "properties": ["s, stick, leaf", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with wooden framing and trusses."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof, stairs, house", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a red, blue, and green striped tower building."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["house, staircase, window", "color, red, blue, green"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building is more colorful", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "c3a82df41875402285608ef13a55df57"], "properties": ["Drawer, Pattern, White", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "a17477b445b3443189dad22f768b888b"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pig with an open mouth and a knife.", " a house with a flat roof structure."], "sample_ids": ["d2d3b56c704341198aebd3601a6bb624", "abc52d210d71415296730bb00352ce6f"], "properties": ["mouth, open, knife", "roof, flat, structure"], "captions_pred_pc": ["a black and white photo of a hippopotamus", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a pig with a knife in its mouth royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["blue tarp, flower, small island", "floor, staircase, balcony"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["table, stairs, ladder", "house, rock, bird"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["c27b018330da406680e58b94266c310b", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["frame, material, wood", "roof, color, yellow"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["a, plane, small plane", "lighthouse, fountain, crater"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a clay pot with holes in it."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a, hole, rock", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "92498f398e244020a867686729633610"], "properties": ["building, plane, room", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small building with a staircase in a room."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["house, staircase, table", "room, staircase, building"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a staircase on a white surface"], "question": "which staircase is in a room", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color, material, structure", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a destroyed building with a watercolor painting of a dilapidated house."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "5a33f024faf145ac80cdadcdfef8a797"], "properties": ["roof, room, ceiling", "image, building, painting"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white photograph of a damaged house"], "question": "which entity is a painting of a dilapidated house?", "label": 1}, {"captions": ["two white 3d egg-shaped spheres.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["922b10ec49fa4b2eb43e257ff5b2b1ef", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is egg-shaped, color is white, number is two", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a grey background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["size, material, color", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["floor plan, heating system, ceiling light fixture", "blue, yellow, frog"], "captions_pred_pc": ["a black and white drawing of a house", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["houses, trees, road", "room, staircase, bus"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a white building with a red roof."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["composed of, white, cubes", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "6b745457e06840119058883b35f78f58"], "properties": ["color, pink, green", "roof, color, blue"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, white, black, white", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, bird, lake", "a, landscape, sand"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", " of two rocks with ice elements."], "sample_ids": ["770e577c9795435898209fd24191635b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image, color, light", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white 3d model of a small town", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, color, white", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a doll made of beads", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, tan, brown, orange", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a barrel and a cube together.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, barrel, cube", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bed", "label": 1}, {"captions": [" a small house with a red roof.", " a green mountain with trees and grass."], "sample_ids": ["085db9059b744673b5623b5338e02196", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, red, house", "mountain, grass, tree"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["shape is turtle, color is green, white", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a roof and beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, purple, suspended", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small building with windows and a roof."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["frame, beams, trusses", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" of a tree with leaves and roots.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["leaf, root, trunk", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a tree with roots", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "4806b382466247ad9265fc8240a22d3d"], "properties": ["building, fence, snowy", "rocky, rug, puddle"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity is not a small rocky island?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["b5afccae993346079483507296fbb029", "9968e06a62e8487ea33460e640abc573"], "properties": ["shape is square, material is metal, color is rusty", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a concrete column", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large metal building with a roof and truss structure."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "b85a99699ccd4bcba213322113bb253d"], "properties": ["frame, roof, trusses", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["door, white, structure", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a small house and barn"], "question": "which structure has a blue roof", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["size, material, shape", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["ceiling, light, desks", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large building with a roof and windows."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "32d1fbd3ee91426882290305f70021e6"], "properties": ["frame, roof, trusses", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a black gun.", "a white glass beer mug."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, black, gun", "color, white, glass"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "92498f398e244020a867686729633610"], "properties": ["a, b, c", "a, house, cat, dog"], "captions_pred_pc": ["for a black square tile on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a red, blue, and green striped tower building."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["hat, sword, gun", "color, red, blue, green"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image is a sculpture of an angel on a wall", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house with a blue roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["house, plane, town", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["wood, board, shelf", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["bed, desk, window", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a roof truss?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, color, purple", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, blue, white, handle", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, light, jewels", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["- material is plastic- color is white- shape is cylinder", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a throne with a tree on it"], "question": "which entity is made of stone?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["color, door, window", "house, color, white"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "6b745457e06840119058883b35f78f58"], "properties": ["a, rock, paper", "roof, color, blue"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a small building with windows and a roof."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, material, size", "roof, windows, building"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["5c04dac989a64d228283687588484b93", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a purple chair with holes in it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "833151c8e0f4489a9fa966635a948452"], "properties": ["color, white, black, white", "color, purple, holes"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white chair"], "question": "which chair has holes in it", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["earbud, earpiece, earpiece", "a, building, coin, ball"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 0}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "c3a82df41875402285608ef13a55df57"], "properties": ["mossy, rock, grass", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a large metal building with a roof and truss structure."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "b85a99699ccd4bcba213322113bb253d"], "properties": ["A, a, a", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a bench", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, orange, leather", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a room, a cake, a table", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a wooden box with a lid"], "question": "which entity has a drawer", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a white of a woman with her arms outstretched."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, black, white", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "ee440fcbc493488e879539d37a8d820e"], "properties": ["red, pile, garbage", "island, fish, ice"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["flower, rock, tree stump", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a road in front of it.", " a house with a green, wooden-structured roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, front, road", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["s, stick, leaf", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a futuristic white sports racing car.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, white, futuristic", "metal, rusted, paper"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a black and white image of a piece of debris on the ground"], "question": "which car is more likely to be destroyed", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, orange, white", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": [" of a hammer with a long metal handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["30f4b6bcbbb44f568cab4fd439d05145", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["handle, metal, long", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white toothbrush on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a hammer with a wooden handle and metal head", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "c3a82df41875402285608ef13a55df57"], "properties": ["room, bed, desk", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, wall, color", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "c3a82df41875402285608ef13a55df57"], "properties": ["blue, curved, resembles", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "a17477b445b3443189dad22f768b888b"], "properties": ["wood, board, shelf", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, roof, wooden", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a crab holding a rubik's cube."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, yellow, chimney", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a wooden roof structure with a pink roof."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, green, handle", "roof, color, pink"], "captions_pred_pc": ["of a small black object on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["polygonal, helmet, triangular details", "a, material, clay"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["low poly, llama, kangaroo", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["image is rock formation with a white cliff and a rock", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white van with a logo on the side.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, logo, side", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white drawing of a room"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, gazebo, table", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["a, door, suitcase", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a harp in a white room"], "question": "which object is not a robot?", "label": 0}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a lamp, a syringe, a light pole", "door, lock, handle"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, room, ceiling", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "7f8942ef51dd4246993a587a12df168c"], "properties": ["texture, spikes, eyes", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " a large metal building with a roof and truss structure."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, card, case", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a wooden staircase with marble floor and wooden railings in a house."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "ee70964ce5e841bd87381cff40d59b88"], "properties": ["stair, table, chair", "floor, staircase, railings"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a light switch"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a staircase on a marble surface"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, truss system, framing", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["color, shape, material", "fireplace, bench, log"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of a snowflake"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a fireplace with snow on the ground"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is sphere, color is white, material is plastic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color is purple, material is plastic, number of legs is four", "arrow, red, white"], "captions_pred_pc": ["of a black and white image of a baby carrier", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a spiral staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, shape, material", "a train, a ship, a boat"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a green, wooden-structured roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, red, blue, green", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a triangular roof"], "question": "which building has a green roof", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["hat, cup, bowl", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color is white, yellow, plastic", "wing, knife, boat"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black umbrella on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, material is plastic, shape is tube", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["97f487941d26472294e005fa97c403be", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, green", "roof, color, yellow"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small house with stairs and a roof."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["bird, nest, wood", "roof, stairs, house"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a pixelated-textured purple sphere ."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "fb68393941804e769d5c9b372864a642"], "properties": ["top, color, wood", "texture, color, shape"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a gray sphere on a white background"], "question": "which object has a texture?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "e694d53545d449319a64cceb0280c3c6"], "properties": ["building, floor, columns", "3d, slide, swing"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, texture", "building, plane, room"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["mossy, rock, grass", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e65de9c4ec9242679a45e74733f7d61d"], "properties": ["A, a, a", "rusty, sink, graffiti"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a stainless steel toilet bowl on a pedestal"], "question": "which entity has a sink?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a potted plant on a wooden table or shelf."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["house, door, cross", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, temperature, england", "house, rock, bird"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["- material is plastic- color is white- shape is cylinder", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of an object on top of a pedestal"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hat, candy, strawberry", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a chevrolet express black van.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["09d718c9cf72401b8534d265a06a803f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, van", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a van with a roof rack royalty free 3d model preview no 1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "97e000ff41094665afd94ea565da8b13"], "properties": ["table, stairs, ladder", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is cube, color is black, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a robotic warrior with a sword.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["weapon, sword, robot", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "e694d53545d449319a64cceb0280c3c6"], "properties": ["metal, laptop, light fixture", "3d, slide, swing"], "captions_pred_pc": ["for a black and white image of a corner shelf", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a playground slide"], "question": "which entity has a slide?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "09f2cf267e954c958828325067bcc36a"], "properties": ["table, staircase, light", "island, terrain, rocks"], "captions_pred_pc": ["a black and white photo of the letter g", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a table with stairs", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a house with wooden framing and trusses."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, gazebo, table", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white of a house with a hole in the ceiling."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["floor plan, heating system, ceiling light fixture", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "white of a rhino head with horns."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "8481aade84de47cab1a9accf8067e678"], "properties": ["light switch, electrical outlet, furniture", "image, rhino, head"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d rendering of a room with a white background", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, tree, rock", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, pier, railings", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a spider-like creature with long arms and legs."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- material is wood, metal, metal", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["location, highway, train station", "island, mountain, grass"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating island?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, desk, laptop", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " a person jumping on a trampoline."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["color, shape, size", "person, jumping, trampoline"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black and white diamond belt"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["black, white, laptop", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["of a black and white drawing of a purse", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, roof, balcony", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a building with a roof"], "question": "which building has a roof made of wood", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, material", "box, paper clip, lock"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["eead0dd97023415da05c97df37337473", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, balloon, color, blue", "houses, trees, road"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["image is royalty-free, beaver, skateboard", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "above a black and white map of spain on a white background"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a black and white image of a rock formation on a gray background"], "question": "which image is a landscape?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, material, frame", "flower, color, pink"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, stairs, house", "roof, truss system, framing"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of the roof of a house"], "question": "which house has a roof with truss system", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a wooden roof structure with a pink roof."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["a, material, steel", "a, color, red"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["- color is white- shape is cubes- number is 1", "arrow, red, white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a white glass beer mug."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "1d686cbd3e9a4c629a43088658989286"], "properties": ["building, roof, white, cubes", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["- color is white - shape is box - material is plastic", "mossy, rock, grass"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a house with a wooden-framed roof structure."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, wheels", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a small wooden house with a green roof."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a large steel building with a pool."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, frame, shape", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "7f8942ef51dd4246993a587a12df168c"], "properties": ["fireplace, stick, surround", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["building, roof, yellow", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a cell phone", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a black and white striped fly in the air."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, white, containers", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "a2354f13774340d392fbf33564934aab"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "building, roof, yellow"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["screen, keyboard, box", "island, mountain, grass"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", " a marble wall plaque featuring a relief with statues of people."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "0b82ae7b151044de8404f93ea9a4557c"], "properties": ["color, silver, white", "type, relief, statues"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "a black and white photograph of a piece of paper with water droplets on it"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a 3d model of a marble plaque depicting a group of people"], "question": "which object is made of marble", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["fireplace, bench, log", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house with a green, wooden-structured roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["building, stairs, shelves", "roof, color, green"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a house with a triangular roof"], "question": "which building has a green roof", "label": 1}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "4e82177059204292899fa7415164a05e"], "properties": ["a, color, red", "yellow, tires, load"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a castle with two towers", "a 3d model of a monster truck with spikes"], "question": "which toy has large tires", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, pink", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, purple", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["tiers, building, stairs", "house, table, chair"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["small purple teapot with a hook.", " a small white box with a shelf and a hole in it."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["color, purple, hook", "a, hole, shelf"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a white box on a gray background"], "question": "which object has a shelf?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a blue roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, purple, suspended", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["turrets, flags, towers", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " of a small white building with stairs and a lid."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, size", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of the letter u", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["mossy, rock, grass", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "f1b557775310478893242180defa4d80"], "properties": ["hat, candy, strawberry", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, shape, pattern", "wing, knife, boat"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small wooden house with a green roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, roof, toothbrushes", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house with a ladder"], "question": "which house has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["a room, a cake, a table", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a, bird, hook", "door, lock, handle"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white image of a door with a crack in it"], "question": "which door has a lock?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small white house with a staircase and a window."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "9eb88d17310d42dda9e17883e9922525"], "properties": ["roof, green, lawn", "house, staircase, window"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a small white building with stairs and a white table."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "e30374c614f54fdb90f35b96b071349d"], "properties": ["text, material, shape", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", " a small white building with stairs and a white table."], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "e30374c614f54fdb90f35b96b071349d"], "properties": ["cloak, sword, spear", "building, stairs, table"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["Steel, Color, Yellow", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a building with many pillars"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, text", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " a white castle composed of small cubes."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a white castle composed of small cubes."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, texture", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a stone wall featuring carvings and statues."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["houses, trees, road", "carving, statue, wall"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "b57936676e9d43abb635fa1217992287"], "properties": ["size, material, shape", "a, hole, rock"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a lace belt"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which object is made of a rock?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small white house with a roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, roof, pink", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["color, black, shade, black", "roof, truss, lamp"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a house with a metal roof"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, type, factory", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["building, tree, plane", "a, building, coin, ball"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a large house/building structure with a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["color, roof, tray", "roof, structure, house"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a large white structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " of two rocks with ice elements."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["house, tree, pool", "a, building, coin, ball"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- color is white- shape is cube- material is plastic", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a white motorcycle with wings."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, material", "color, white, wings"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small white building with stairs and a white table."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "e30374c614f54fdb90f35b96b071349d"], "properties": ["metal, rusted, paper", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a building with a staircase"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["light source, fixture, color", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "745fed115c5343dab9d7f0c389c98902"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "costume, color, black"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["brown, paint, tape", "cloak, sword, spear"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a white castle composed of small cubes."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, green, lawn", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "two white spheres in a ."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, b, c", "two, spheres, white, in, a"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a white ball on a gray background"], "question": "which object is not a fish?", "label": 0}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, shape, texture", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["screen, monitor, stand", "roof, brown, flat"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d rendering of a table and stool"], "question": "which entity has a flat roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, white, yellow, roof, metal", "a, material, steel"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a large metal structure"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, shape, poles", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which structure has a roof structure", "label": 1}, {"captions": ["a white of a city with buildings and a gold spoon.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["2351471a2d2145c59fec5f68ffae4816", "4a889132cc444d10bfcbf6c760984416"], "properties": ["image, city, spoon", "a, color, white"], "captions_pred_pc": ["a black and white image of a diamond shaped piece of fabric", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a city skyline in white", "a 3d model of a desk and chair"], "question": "which image has a white spoon?", "label": 0}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["fireplace, bench, log", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["room, house, windows", "house, tree, hill"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a tree stump with roots.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fa6e88ba438f4597a7230789124c8147", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["root, tree, stump", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of a galaxy", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tree stump in the middle of a field", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a white building with a red roof."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, green", "color, white, roof, red"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["s, plane, house", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "b896a0898efe4059a776193c02132129"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a black floor lamp with a wooden round base, black shade, and attached cord.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["03db87a02e3847f8a712a362de9a314d", "5414d75e47104589837f3df8b6de6d22"], "properties": ["Base material is Wooden, Shade color is Black, Cord color is Black", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a bomb on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black floor lamp with a round shade on top", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house on a hill in a field."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, lake, pool", "house, hill, field"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a large building", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a train, a ship, a boat", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a submarine", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a white of a woman with her arms outstretched."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["hat, sword, gun", "image, color, white"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, temperature, england", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "building, material, stone"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "5850d5c7223447db816081d50292fec0"], "properties": ["house, rock, pond", "structure, material, pool"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house with a roof and beams."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, roof, block", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a roof"], "question": "which building has a roof with beams", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a stone wall featuring carvings and statues."], "sample_ids": ["b5afccae993346079483507296fbb029", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["shape is square, material is metal, color is rusty", "carving, statue, wall"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d image of a group of statues on a wall"], "question": "which is not a statue", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["color, shape, and size", "hat, mustache, chef"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a white of a woman with her arms outstretched."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["- material is white- color is white- texture is textured", "image, color, white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["frame, chalkboard, color", "broom, shovel, fireplace"], "captions_pred_pc": ["of a black and white image of a television on a wall", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, green, leaf", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["image, building, stairs", "image, building, stairs"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 0}, {"captions": [" a wooden staircase with a railing and table.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "40921ffd69db479294554d261daf3035"], "properties": ["railing, table, staircase", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white drawing of a window", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a spider-like creature with long arms and legs."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, hat, handle", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["hat, mustache, chef", "house, tree, pool"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["brown, paint, tape", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["composed of, white, cubes", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a white castle composed of small cubes."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["food, leaves, shredded paper, rocks", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["ceiling, light, desks", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a machine gun.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["gun, barrel, caliber", "roof, brown, flat"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["s, plane, house", "buildings, houses, grass"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["floor plan, heating system, ceiling light fixture", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a house", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["bird, nest, wood", "hat, skull, bread"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, orange, white", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["image, building, painting", "flower, color, pink"], "captions_pred_pc": ["above a black and white drawing of a building", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, pink, green, cord, white", "wood, board, shelf"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a building with blue lines and structure.", " a wooden roof structure with a pink roof."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, structure", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of an egyptian sarcophagus."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["frame, truss, roof", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "b896a0898efe4059a776193c02132129"], "properties": ["stacked, racks, toy train", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, and material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a house with a roof and beams."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, red, green, yellow", "color, silver, white"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "44be138ae8e2409bbbca44a96fc67d45"], "properties": ["color, tan, leather", "color, tan, brown, orange"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "above a black and white illustration of an office chair"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a grey leather lounge chair with ottoman and footstool"], "question": "which chair is made of leather", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["room, bed, desk", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, rings", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a stone wall with a window and a clock."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color, shape, material", "window, clock, wall"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["buildings, houses, grass", "cartoon, bear, diaper"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, color, yellow", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof structure has a wooden truss?", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["beige, head, bottle", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, white, yellow, roof, metal", "rusty, warning, metal"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "red swivel chair with a white base ."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7b78fb47a2684906bcc22ac6e848999a"], "properties": ["color, shape, and size", "color, red, base, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a sphere made up of many small dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a modern chair"], "question": "which entity is a chair?", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, metal, white", "roof, material, wood"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, furniture, black", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a spiral staircase with a railing in a small building."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["floor, staircase, railings", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["balcony, stairs, house", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["axe, hammer, spoon", "broom, shovel, fireplace"], "captions_pred_pc": ["of a black lace belt on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, black, shade, black", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which object has a hat on it", "label": 1}, {"captions": [" a pink and white gun.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "b896a0898efe4059a776193c02132129"], "properties": ["color, pink, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["hat, sword, gun", "throne, chair, building"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["black, white, laptop", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a staircase"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a pontoon boat with two seats and a canopy.", " of two rocks with ice elements."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["seat, canopy, pontoon", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "a black and white image of two rocks on a white background"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "c3a82df41875402285608ef13a55df57"], "properties": ["costume, color, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "a17477b445b3443189dad22f768b888b"], "properties": ["color, mattress, pillows", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["two-story, roof, building", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, and size", "building, room, sky"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a knife, blade, handle", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a table with a stool on top"], "question": "which object has a handle", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white toy cannon."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "a414258c6bf149708404913a89ab8dbc"], "properties": ["color, white, red, pink", "color, white, toy"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a wooden-cased radio."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, black, white", "case, material, wood"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of an airplane on a white background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, black, green", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["- material is metal- color is silver- texture is textured", "cloak, sword, spear"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a warrior?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a large building with a roof and windows."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "32d1fbd3ee91426882290305f70021e6"], "properties": ["building, floor, columns", "roof, windows, building"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, structure, wall", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, shape, and size", "a, island, resembles, hawaii"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a white and blue building with a black roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, stairs, house", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, roof, block", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "5414d75e47104589837f3df8b6de6d22"], "properties": ["screen, monitor, stand", "beige, white, round"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, green, orange, star", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a white 3d model of a city skyline"], "question": "which entity is a still image?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small white airplane flying in the air."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "747fb98f64794cdd96486debaf20a02c"], "properties": ["resembles, toy, bookshelf", "airplane, color, white"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white image of a clock"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a small airplane"], "question": "which object is white", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "b896a0898efe4059a776193c02132129"], "properties": ["color, head, white and brown", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a green mountain with trees and grass."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["screen, monitor, stand", "mountain, grass, tree"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, screen, drawer", "building, plane, room"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, color, purple", "structure, material, pole"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a robotic warrior with a sword."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["color, shape, material", "weapon, sword, robot"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a small house with a roof.", " a small house on a hill in a field."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, house, small", "house, hill, field"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is box, color is white, door is present", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a train, a ship, a boat", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["furniture, room, kitchen", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a house featuring furniture, people, a staircase, and torn-apart sections."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "85335d3349894b5884dbf6f3e7d68fcc"], "properties": ["color, white, holes", "furniture, staircase, torn-apart"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white image of a pixelated cityscape on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a damaged room with broken furniture and debris on the floor"], "question": "which entity is a house?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a house with a roof and beams."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, texture", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, leg, tail", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a spiral staircase with a railing in a small building."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["wall, stairs, castle", "staircase, railing, building"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Drawer, Pattern, White", "island, terrain, water"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "c3a82df41875402285608ef13a55df57"], "properties": ["color, hat, shoes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a teddy bear", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, roof, tray", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["blue tarp, flower, small island", "house, hill, forest"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "1da865c75a5e4a57a17652975dae5474"], "properties": ["Drawer, Pattern, White", "color, white, plastic"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["color, roof, block", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the space shuttle"], "question": "which building has a roof that is not broken?", "label": 0}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["s of, snowboard, shoes, mask", "hat, pants, shirt"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small wooden house."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["apse, roof, floor plan", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a room", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, material, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a house with wooden framing and trusses."], "sample_ids": ["4f21fa937959487a96350af527d75421", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["window, frame, room", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a house under construction"], "question": "which entity has a wooden frame?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, color, yellow-green", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, structure, greenhouse", "house, pool, balcony"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house on a hill in a field."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["stair, table, chair", "house, hill, field"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of a small house"], "question": "which entity is outside?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "aef9b23a78a7450286a961cc13448d00"], "properties": ["frame, roof, trusses", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of two rocks with ice elements."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, plane, town", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a white bunny head", " of a wildebeest with horns, royalty-free."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, white, head", "image size, image, royalty"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a green mountain with trees and grass."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, pattern, wall", "mountain, grass, tree"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a chocolate cake with a mushroom on top, displayed on a stand."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "728e8c8600584eacae80208bba7eece4"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "chocolate, mushroom, cake"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a mushroom on top of a cake royalty free 3d model preview"], "question": "which object is on a stand?", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "c3a82df41875402285608ef13a55df57"], "properties": ["color, dress, purse", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a spider on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small building with a staircase in a room."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["computer desk, laptop, monitor", "room, staircase, building"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house with a roof and white brick wall."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "00915b83a52b45d498962d0cd42af491"], "properties": ["house, roof, toothbrushes", "roof, wall, color"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of a rectangle with dots all over it"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small white house with a roof"], "question": "which house has a white brick wall?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, light, jewels", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, purple, suspended", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, light", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, staircase, light", "table, plant, wood"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a staircase", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a house with a roof and beams."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, framing, material", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a small wooden house with a green roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, background, gray", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, ceiling, hole", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["chocolate, mushroom, cake", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white image of a cone shaped object"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["roof, color, blue", "shape is cube, color is black, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a building with many windows", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "c3a82df41875402285608ef13a55df57"], "properties": ["color, orange, leather", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, hand, flowers", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a hand", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["water, river, island", "bed, desk, window"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a four-legged metal workbench with shelves."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["ceiling, light, desks", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a potted christmas pine tree."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["rocky, rug, puddle", "a, color, green"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "703dce44052e48cfb024bceb08141554"], "properties": ["roof trusses, beams, suspended ceiling", "roof, beams, frames"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["- material is wood, metal, metal", "frame, truss, roof"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a bridge over a road"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "c3a82df41875402285608ef13a55df57"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, green", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["broom, shovel, fireplace", "hat, candy, strawberry"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small trailer and a white box.", " a witch wearing a black and white hat."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["box, trailer, white", "color, black, white"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a black and white color?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["building, material, steel", "house, plane, town"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a damaged building"], "question": "which entity is not a building?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["top, color, wood", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["metal, rusted, paper", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a white of a man with arms outstretched."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["runner, bed, bench", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a clay pot with holes in it."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["furniture, staircase, torn-apart", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "034c093c73fd48758422feee0b10c5d8"], "properties": ["a, color, white", "a, backpack, stick"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a bird in flight"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a pencil drawing of a person holding a sword"], "question": "which object has a backpack?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, and size", "house, tree, hill"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["d6087023095446fbadef1721478373b2", "1d1328346a464d2482463d6d5288e934"], "properties": ["door, roof, window", "painting, door, wall"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["yellow, table, roof", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["fireplace, bench, log", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a snowflake", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a white chest of drawers with legs."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["water, river, island", "chest of drawers, legs, white"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "832a022cdcc74763b0571e04af4e592b"], "properties": ["yellow, shape, wingspan", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a small wooden house."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["carving, statue, wall", "house, material, wood"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, height", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["shape is cylinder, color is white, material is plastic", "box, handle, gun"], "captions_pred_pc": ["of a spike on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a house with wooden framing and trusses."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["red, pile, garbage", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, size", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["color, gazebo, table", "nut, bowl, ring"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d rendering of a white object on a gray background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "c3a82df41875402285608ef13a55df57"], "properties": ["building, color, black and white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, size", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" of a house with a pink roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, roof, pink", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " of two rocks with ice elements."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["door, panel, staircase", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a wooden table and chair."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["chair, table, refrigerator", "table, chair, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a large steel building with a pool."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, red, blue, green", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["description, material, shape", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small purple plastic chair with holes."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, bird, lake", "color, plastic, purple"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with blue lines and structure.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, structure", "color, background, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a building under construction", "an image of a white background with a few small cubes on it"], "question": "which entity is a building?", "label": 0}, {"captions": [" a blue circuit board with electronic components.", "a white of a man with arms outstretched."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, blue, components", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["room, bed, desk", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["background, color, white", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, yellow, chimney", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with a blue roof.", " of a house with a pink roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "6162909df6294848a8eea83c3aa9585b"], "properties": ["roof, color, blue", "color, roof, pink"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a 3d white cube with windows resembling a building."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, yellow, black", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["desk, chair, table", "building, room, sky"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " of a small white building with stairs and a lid."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, framing, material", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a small house with stairs, a roof, and a pillar.", "a low-poly of a white, shattered sphere."], "sample_ids": ["a17477b445b3443189dad22f768b888b", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["roof, pillar, stairs", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a square with dots", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a small building with a balcony", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " a house with a green, wooden-structured roof."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["3ds max, obj, fbx, c", "roof, color, green"], "captions_pred_pc": ["a black and white insect on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", "a white glass beer mug."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, number", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, room, sky", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a large axe with a cross on top."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, material", "axe, cross, top"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a building with a metal and wooden pole structure."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, structure, wall", "structure, material, pole"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is wood, rusty, horned", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a white and black chair with a black handle and armrest."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "cf1f435c54b046f68d6603cd3369a94f"], "properties": ["color, black, white, handle, armrest", "color, black, white, handle, armrest"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white drawing of a geometric shape"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d rendering of a white chair with a black handle"], "question": "which chair has a white and black handle and armrest?", "label": 0}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "c3a82df41875402285608ef13a55df57"], "properties": ["a, dress, flower", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["ceiling, light, desks", "a, desk, laptop"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "c3a82df41875402285608ef13a55df57"], "properties": ["variation, bread, pot", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["a, b, c", "paper, hole, sign"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a black and yellow train car with a door, featuring a bench and gold accents."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "8f005008294b4b5aa0f9e6e97efc8b26"], "properties": ["color, bench, rack", "color, bench, door"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of a bathroom faucet and shower head"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a toilet stall with two doors and a sink in the center of the stall"], "question": "which entity has a bench with a door?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["mossy, rock, rocky", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" a green skull and sphere.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, skull, sphere", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, material, shape", "roof, color, yellow"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["s, plane, house", "island, terrain, water"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["pos machine, credit card machine, cash register", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a small purple plastic chair with holes."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, handle", "color, plastic, purple"], "captions_pred_pc": ["a black and white dots on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, light, jewels", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a green, wooden-structured roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, roof, wooden", "roof, color, green"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " a house with a roof and beams."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, pool, balcony", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a white and blue building with a black roof."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, roof, blue", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image, building, stairs", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["a, island, water", "a, character, mario"], "captions_pred_pc": ["a black and white photo of a boat in the water", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["roof, truss, suspended ceiling", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, structure, wall", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of two rocks with ice elements."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, red", "image is a rock with ice elements"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, green, leaf", "image size, image, royalty"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a wildebeest"], "question": "which entity is a royalty free image?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["chocolate, mushroom, cake", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["houses, trees, road", "structure, roof, pitch"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure with brick detailing?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, room, ceiling", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, tree, rock", "house, table, chair"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, text", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a grayscale of a mountain.", "a grayscale of a mountain."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "17a86c6c9be0478c984ef36c7c22edea"], "properties": ["color, grayscale, mountain", "color, grayscale, mountain"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "above a black and white photograph of a galaxy"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a mountain range on a white background royalty-free 3d model"], "question": "which image is a grayscale of a mountain?", "label": 0}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["resembles, toy, bookshelf", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a bag with a zipper on it"], "question": "which entity is a natural formation?", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "c3a82df41875402285608ef13a55df57"], "properties": ["color, frame, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building structure", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["white 3d tank model", " a clear glass table with metal legs and balls on top."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, model is 3d, name is tank", "glass, metal, balls"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white image of a wine glass"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["description, material, shape", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a large steel building with a pool."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, stairs, shelves", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a building with blue lines and structure.", " a small white building with stairs and a white table."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, structure", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["bed, desk, window", "building, ceiling, kitchen"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a white building on a gray background"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["s, stick, leaf", "house, tree, pool"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, shape, material", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity is a container?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white glass beer mug."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "1d686cbd3e9a4c629a43088658989286"], "properties": ["background, color, white", "color, white, glass"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["97f487941d26472294e005fa97c403be", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, white, green", "house, rock, bird"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an office building", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["desk, chair, table", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a roof structure"], "question": "which entity has a wooden roof structure", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a white of a house with a hole in the ceiling."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, lake, pool", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of two rocks with ice elements."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a box, a cup, a bottle, a jar", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, metal, white", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a barn", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, green, orange, star", "throne, stairs, tree"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, tower, color", "structure, roof, pitch"], "captions_pred_pc": ["for a black square on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a white chest of drawers with legs."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, shape, material", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a metal structure", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d rendering of a white dresser"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a multicolored metal building structure with a roof."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["door, roof, pool", "color, roof, structure"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a house with a wooden-framed roof structure."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, shape", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a building with a roof"], "question": "which is made of wood", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "c3a82df41875402285608ef13a55df57"], "properties": ["color, material, pattern", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a small green chair with a slanted back and white base."], "sample_ids": ["c27b018330da406680e58b94266c310b", "7f93c12cbbc74e579d5f0430cfa0010f"], "properties": ["frame, material, wood", "color, white, base, slanted"], "captions_pred_pc": ["a black line on a white background", "above a black and white drawing of a chair"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a chair"], "question": "which object has a white base", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " of two rocks with ice elements."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, mustache, chef", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["white dragon with wings, .", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["wings, white, dragon", "flower, color, pink"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has pink flowers", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "torso, breasts, pattern"], "captions_pred_pc": ["a close up of a black object on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a woman's chest"], "question": "which entity has a torso?", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["glass, metal, balls", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a wine glass", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a clear acrylic foosball table", "a 3d model of a concrete wall"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, color, green", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house with a ladder", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a white glass beer mug."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, handle, zipper", "color, white, glass"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["shape is box, color is white, door is present", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, pier, railings", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, table, ceiling", "roof structure, truss, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a ceiling with a light", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "5414d75e47104589837f3df8b6de6d22"], "properties": ["background, color, white", "beige, white, round"], "captions_pred_pc": ["a black and white image of a cat's head", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a 3d white cube with windows resembling a building."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "4a07a5293f024bb0a353954a056ef626"], "properties": ["structure, building, archway", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a cube"], "question": "which entity is a building?", "label": 0}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "ee440fcbc493488e879539d37a8d820e"], "properties": ["house, yard, surrounding buildings", "island, fish, ice"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a sword and knife."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8b567403ba614523a298f1c5b2009f92"], "properties": ["color, light, jewels", "a, sword, knife"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black silhouette of a knife on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a samurai sword royalty free 3d model preview no 2"], "question": "which object has a blade?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["size, color, design", "metal, legs, wheels"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof.", " a wooden shed with a gray roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, color, blue", "roof, color, gray"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which roof is darker", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, material, frame", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a spiral staircase with a railing in a small building."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["floor plan, bathroom, pool", "staircase, railing, building"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a group of ponies in a row."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["house, roof, toothbrushes", "group, row, pony"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a house with a green, wooden-structured roof."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["desk, chair, lamp", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["label, color, shape", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["shattered, resembles, broken phone", "metal, rusted, paper"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have rusted metal", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, material, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["white cube", " a clear glass table with metal legs and balls on top."], "sample_ids": ["6ee7cfc920754f15afb8797ecb9bf2d8", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, shape is cube, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a white 3d cube on a gray background royalty free 3d model preview no. 3", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a green letter p", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["ccd770b6eee245d18538b50126977e51", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, letter", "color, white, plastic"], "captions_pred_pc": ["a 3d model of a black and white dots on a white background 3d model of a black and white dots on a white background, isolated on a white background, 3d illustration, 3d model, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art,", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of the letter p royalty free 3d model preview no 3", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " of two rocks with ice elements."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["table, staircase, light", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "a17477b445b3443189dad22f768b888b"], "properties": ["size, color, shape", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["frame, roof, trusses", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which house has a suspended ceiling", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, red, blue, structure", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a small white building with stairs and a lid."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, containers", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house with a roof structure and toothbrushes."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["roof, color, blue", "house, roof, toothbrushes"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d rendering of a white box with a lot of blades"], "question": "which house has a roof structure?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "bf18bfd89efd43389781050230467d58"], "properties": ["building, color, yellow-green", "Lights, number, five"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, pen, logo", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white toothbrush on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "46903bf029934b1989bc062dcb0a5531"], "properties": ["food, leaves, shredded paper, rocks", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a bird in flight", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small building with windows and a roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, plane, town", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["earbuds, light, ring", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color is white, material is plastic, shape is tube", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a broom on a stand", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is made of paper?", "label": 1}, {"captions": ["white floor lamp with a white shade and base, resembling a white plastic stick or column, featuring a camera on top.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["f1230cbf5653463bbda1bdf55543ba4d", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["shade, base, height", "resembles, sculpture, rock"], "captions_pred_pc": ["for a black square on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a white plastic toothbrush on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a black shark", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["black, mouth, teeth", "table, structure, roof"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white plastic tube or metal bar, resembling a knife."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "8fd3836862a44a8d8b4d224bfc30c2c3"], "properties": ["background, color, white", "a knife, blade, handle"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a shelf with a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a piece of white plastic on a gray background"], "question": "which object has a handle?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "e694d53545d449319a64cceb0280c3c6"], "properties": ["broom, shovel, fireplace", "3d, slide, swing"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house with a green, wooden-structured roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, windows, building", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a large gray sphere", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["size, color, shape", "house, staircase, table"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, model, luggage", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a potted plant on a wooden table or shelf."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a black and white image of a plant in a pot"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a white and blue building with a black roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, black, white", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, color, red", "color, white, plastic"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["floor, staircase, railings", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a group of trees"], "question": "which entity has more plants", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "46903bf029934b1989bc062dcb0a5531"], "properties": ["size, material, color", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, material, pattern", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["yellow, table, roof", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["apse, roof, floor plan", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a room", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a tree with green leaves."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "1a902b67735845198efb1b84f434b580"], "properties": ["color, red, blue, green", "leaf, color, green"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["building, skyscraper, city", "building, plane, city"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, material, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, tree, rock", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small white building with stairs and a white table."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, structure, greenhouse", "building, stairs, table"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, light", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " of a white human skull with broken bone elements."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a human skull in white"], "question": "which entity is a skull?", "label": 1}, {"captions": [" a white castle composed of small cubes.", "a white of a man with arms outstretched."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["composed of, white, cubes", "image, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["pos machine, credit card machine, cash register", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, temperature, england", "Shelf, color, white"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d rendering of a white shelf"], "question": "which entity is white", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["liquid, ice, lid", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a wooden shed with a gray roof."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, color, gray"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a white castle composed of small cubes."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["striped, white, black", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, and size", "Lights, number, five"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " of a wine corkscrew"], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["a, dress, flower", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "854757ca755240f8b04576d899349151"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "cabinet, room, shelf"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which object is made of wood", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, material", "house, table, chair"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d rendering of a small white table with a chair"], "question": "which entity is a house?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of an ak-47 rifle."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "18e1f60286d346728f650984f4ae70aa"], "properties": ["red, mouse, handwriting", "AK-47 rifle is a weapon"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a black and white image of a fishing rod"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a rifle on a gray background"], "question": "which is a weapon", "label": 1}, {"captions": [" of a black tray with three green rings on it.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, black, rings", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "411c164757fc4de68dfecb35fa858223"], "properties": ["wing, silver, white", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "a2354f13774340d392fbf33564934aab"], "properties": ["house, table, chair", "building, roof, yellow"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, room, ceiling", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["size, material, wheels", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a black and white image of a person wearing a hat"], "question": "which object is smaller", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of an egyptian sarcophagus."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["chair, table, refrigerator", "sarcophagus, material, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a green mountain with trees and grass."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, shape, size", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["rocky, rug, puddle", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a small house with a spiral staircase"], "question": "which entity is indoors?", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, alternator, fan", "color, shape, color"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a white and blue building with a black roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, grass, moss", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a black roof", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "e694d53545d449319a64cceb0280c3c6"], "properties": ["color, blue, green, yellow, blue", "3d, slide, swing"], "captions_pred_pc": ["a pair of sneakers on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a playground slide"], "question": "which entity has more slides", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, color, purple", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of more colors", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, box, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a flower", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "3d lego model of the white house with a garden and tennis racket."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "349d70e3f3d24c72ad05d5ceeee291b6"], "properties": ["a, model, white house", "a, model, white house"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white photo of a person sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of the white house royalty free 3d model"], "question": "which entity has a garden?", "label": 0}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a 3d white cube with windows resembling a building."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "4a07a5293f024bb0a353954a056ef626"], "properties": ["earbuds, light, ring", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a cube"], "question": "which entity is whiter", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["a, rock, paper", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["for a flock of birds in the sky", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a train, a ship, a boat", "broom, shovel, fireplace"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["roof, truss, lamp", "grass, plants, rocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, white, holes", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity is a painting?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "room, staircase, bus"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, horns, features", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a large orange pumpkin."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["buildings, houses, grass", "orange, large, pumpkin"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " of a stone wall with a window and a clock."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["- material is metal - weight is 0 - height is 0", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a brick wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with a red roof.", " a small house on a hill in a field."], "sample_ids": ["085db9059b744673b5623b5338e02196", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, red, house", "house, hill, field"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a green circuit board."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, size", "color, green, circuit board"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "of the item in the image"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of an electronic component"], "question": "which entity is green?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a spider-like creature with long arms and legs."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- material is plastic- color is white- shape is cube", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, structure, wall", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a building"], "question": "which roof is more complicated", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "a17477b445b3443189dad22f768b888b"], "properties": ["liquid, ice, lid", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["building, fence, snowy", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color is white, material is plastic, shape is bottle", "roof, trusses, beams"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a wooden billiard table with legs."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, height", "legs, material, wood"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "a black and white of a knife/sword with a handle."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "image, color, black and white"], "captions_pred_pc": ["above a black and white drawing of a cross", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, shape, material", "house, lake, pool"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, blue, structure", "a, material, clay"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "f1b557775310478893242180defa4d80"], "properties": ["house, tree, rock", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a house with a wooden-framed roof structure."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["level, stairs, columns", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, height", "color is white, yellow, plastic"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", "s of an octopus, squid, dog, and girl, accompanied by drawings of a frog, bird, and jellyfish, as well as a logo and t-shirt design for callum jelephant."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "13591ac0e4ea45749c29f5471eb0ab22"], "properties": ["shape, color, material", "s, squid, dog, girl, frog, bird, jellyfish, logo, t-shirt design, callum jelephant"], "captions_pred_pc": ["a black and white image of a pair of socks", "for the elephant is drawn in black ink on a white background"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a frog with the words 'it's a frog'"], "question": "which entity is a drawing?", "label": 1}, {"captions": ["a pair of yellow pliers.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, yellow, pliers", "broom, shovel, fireplace"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "c017bfb82db1460cafff604c0808793f"], "properties": ["houses, trees, road", "a, suit, cell, phone, gun"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, pier, railings", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a wooden shed with a gray roof."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a, desk, laptop", "throne, chair, building"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a wooden roof structure with a pink roof."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, bird, lamp", "roof, color, pink"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a white castle composed of small cubes."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is plastic- shape is dice- color is white", "composed of, white, cubes"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a building with blue lines and structure.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, structure", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a room with a lot of wires"], "question": "which building has a fence", "label": 1}, {"captions": [" of a bow and arrow set", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["arrows, bow, set", "roof, brown, flat"], "captions_pred_pc": ["for a black and white illustration of a bee", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d rendering of a table and stool"], "question": "which object has a brown roof", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, white, pink, eyes", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white image of a bear's head", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a metal tray with two rolls of paper in it"], "question": "which entity is not a light fixture?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small white building with stairs and shelves."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "9e1f64d4fd514059be934077717536dc"], "properties": ["a box, a cup, a bottle, a jar", "building, stairs, shelves"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, white, red, pink", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a blue and green penguin."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, shape, material", "color, blue, green"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a penguin sitting down"], "question": "which entity is a blue and green penguin?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, stairs, house", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color yellow", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "a2354f13774340d392fbf33564934aab"], "properties": ["building, material, steel", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "4a889132cc444d10bfcbf6c760984416"], "properties": ["- material is plastic- color is white- shape is cylinder", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a sword with a wooden handle."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["face, handle, spout", "handle, material, wood"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a knife on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a black and white image of a sword"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["graffiti, chinese writing, door", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, temperature, england", "image, color, pink"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a rainbow?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, red, green, yellow", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, white, containers", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a small building with windows and a roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, color, red", "roof, windows, building"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["white 3d cube", " a clear glass table with metal legs and balls on top."], "sample_ids": ["63f939f8c636457ebcb5ceda4d5067e6", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, shape is cube, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["a black and white square made up of dots on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a white cube on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a potted christmas pine tree."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, tower", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, b, c", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a large rock with a hole in it.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["size, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white illustration of an object on a white background"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "b896a0898efe4059a776193c02132129"], "properties": ["animal, head, fox, chihuahua, cat", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a fox's head", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is stone - shape is bat", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["shape is box, color is white, door is present", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["roof, air conditioner, house", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a window", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["a train, a ship, a boat", "Black, Shelf, Metal"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a black shelf with square tiles"], "question": "which entity has a metal shelf", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a small wooden house with a green roof."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, pink, green", "roof, color, green"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, color, purple", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "411c164757fc4de68dfecb35fa858223"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a black and white striped box."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["bedroom, bathroom, bed", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d image of a black and white striped surface"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["location, field, gravestone", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, structure, house", "building, roof, yellow"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "1da865c75a5e4a57a17652975dae5474"], "properties": ["shape is box, color is white, door is present", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["house, lake, pool", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "color, white, gold"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, mattress, pillows", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a two-story small apartment building with a roof."], "sample_ids": ["d6087023095446fbadef1721478373b2", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["door, roof, window", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating island?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, color, white", "house, roof, blue"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, red, blue, structure", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "e098706085a44898abbd549693d12a64"], "properties": ["water, boat, rock", "color is black, white, orange"], "captions_pred_pc": ["a black and white illustration of a surfboard", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["light, floor, ceiling", "color, white, gold"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a standing mirror on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["fireplace, bench, log", "house, building, people"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, card, case", "a, material, clay"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["chair, table, refrigerator", "house, rock, bird"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, bowl, green", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "a2354f13774340d392fbf33564934aab"], "properties": ["building, tree, plane", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["resembles, toy, bookshelf", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["black, white, laptop", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white map of the state of new york"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a building with blue lines and structure.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, structure", "color, black, visor"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a house with a roof and beams."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["wing, knife, boat", "roof, beams, house"], "captions_pred_pc": ["a black umbrella on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a building with a roof"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small wooden house."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["bed, desk, window", "house, material, wood"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small wooden house."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["painting, door, wall", "house, material, wood"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, tan, brown, orange", "a train, a ship, a boat"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white 3d model of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "bded33af34104b9686b845dfd18309a9"], "properties": ["wood, board, shelf", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["s, chimpanzee, human, wolf", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of two rocks with ice elements."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small, snow-covered house.", " a small wooden house with a green roof."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, snow, cover", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, and material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, purple, suspended", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, light", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small island with trees, water, and a river."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "5a9c593092c04deaa0f17a1c28a79476"], "properties": ["water, river, island", "water, river, island"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white polka dot pattern on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2"], "question": "which entity has a river?", "label": 0}, {"captions": [" a small white building with stairs and shelves.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["building, stairs, shelves", "floor, staircase, table"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "small purple teapot with a hook."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "d9e9171f6d284331a6975c1fb40f9766"], "properties": ["screen, keyboard, box", "color, purple, hook"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a bowl"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a white ceramic teapot on a gray background"], "question": "which object has a hook?", "label": 1}, {"captions": [" a small pink stone pillar/column.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["size, material, color", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["yellow, table, roof", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["throne, stairs, tree", "floor, stairs, bathroom"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a small table"], "question": "which entity has stairs", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a wooden table with a plant on it."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["roof truss, beams, structure", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a side table with a potted plant sitting on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small wooden house."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["fireplace, bench, log", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["earbuds, light, ring", "earbuds, light, ring"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a white spiral", "label": 0}, {"captions": [" of a house with a roof structure, including a greenhouse.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, structure, greenhouse", "house, fence, playground"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a large white and metal building with a metal roof structure."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, truss, lamp", "roof, metal, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": ["3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["e694d53545d449319a64cceb0280c3c6", "7407a108e0354925b83b750339bc03df"], "properties": ["3d, slide, swing", "platform, color, orange"], "captions_pred_pc": ["for a 3d model of the letter 'j'", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a playground slide", "a 3d model of a motorcycle on a pedestal"], "question": "which platform is orange", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of two rocks with ice elements."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["s, stick, leaf", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["854757ca755240f8b04576d899349151", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["cabinet, room, shelf", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white box with a green light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, light", "island, mountain, grass"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, skull, bread", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white image of a stone sculpture", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "97f487941d26472294e005fa97c403be"], "properties": ["house, roof, green", "color, white, green"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["A, a, a", "3D, toothpick, skateboard"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white toothbrush on a gray background"], "question": "which entity has a toothpick?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a house with wooden framing and trusses."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- material is plastic- color is white- shape is cube", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white drawing of a window"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a large gray sphere", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, color, shape", "a, material, clay"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a deer on a grassy hill.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, hill, deer", "a, material, clay"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "b57936676e9d43abb635fa1217992287"], "properties": ["Drawer, Pattern, White", "a, hole, rock"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a lace belt"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'"], "question": "which entity has a hole", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a white hat, plastic cup with a lid, and a bowl."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "4a9d79b48eda4ad797a652ee01b1b026"], "properties": ["resembles, octopus, squid, spider, robot", "hat, cup, bowl"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "in 15 words or less a black and white illustration of a funnel"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a white plastic hat and bowl on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["b5afccae993346079483507296fbb029", "73e7107ff3634516846bccad04c5dc87"], "properties": ["shape is square, material is metal, color is rusty", "blue, curved, resembles"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " of two rocks with ice elements."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["table lamp, ceiling light, table", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["a, booth, bed", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["apse, roof, floor plan", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a room", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a large steel building with a pool."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, fence, dog", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a pixelated-textured purple sphere ."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "fb68393941804e769d5c9b372864a642"], "properties": ["light switch, electrical outlet, furniture", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["water, boat, rock", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, card, case", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, black, white, handle, armrest", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, structure, greenhouse", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["3d printed panther head with open mouth.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["dfe4f73a25a94b2c8449a2818c32a3bd", "b896a0898efe4059a776193c02132129"], "properties": ["3D Printed, mouth, open", "- material is stone, metal, concrete"], "captions_pred_pc": ["a 3d model of a dog head on a white background 3d model of a dog head on a white background stock illustration 3d model of a dog head on a white background 3d model of a dog head on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a panther head royalty-free 3d model", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["throne, chair, building", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, texture", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d printed figurine of an alien creature"], "question": "which entity is a white color?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["image, building, painting", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a building", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a table with a staircase"], "question": "which image shows a staircase?", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a large steel building with a pool."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["image, house, ceiling", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["earbuds, light, ring", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["hat, bag, blanket", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["floor plan, heating system, ceiling light fixture", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["building, stairs, shelves", "black, roof, green"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small black building"], "question": "which building has a green roof", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", "a yellow and blue toy submarine."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, shape, size", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " of a small white building with stairs and a lid."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["wing, knife, boat", "building, stairs, lid"], "captions_pred_pc": ["a black umbrella on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["bird, nest, wood", "island, mountain, grass"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["Cabinet, Drawers, Filing", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", "a white glass beer mug."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "1d686cbd3e9a4c629a43088658989286"], "properties": ["roof, color, pink", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["roof, trusses, beams", "roof, purple, beams"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof structure royalty free 3d model no."], "question": "which building has a purple roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["roof, color, pink", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a throne with a tree on it"], "question": "which entity has a roof that is the color of a tree?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["base, speaker, light", "roof, color, blue"], "captions_pred_pc": ["above a black and white illustration of a clock", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "c8936ace72954650b4e2d84246964849"], "properties": ["color, shape, gun", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " of two rocks with ice elements."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["lighthouse, building, tower", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white and blue building with a black roof.", "star wars stormtrooper "], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, blue, roof, black", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 0}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of two rocks with ice elements."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["furniture, staircase, torn-apart", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a large steel building with a pool."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, roof, wooden", "building material, pool, steel"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, metal, white", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a barn", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "c927a45ebfd847e7a31b54cd2bb76b06"], "properties": ["color, hat, handle", "color, hat, handle"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "above a black and white illustration of a toy robot"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a person standing on top of a table"], "question": "which robot has a yellow hat?", "label": 0}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, black, white", "mountainous, landmass, state"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small white building with stairs and a white table."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, sphere, molecule", "building, stairs, table"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a wooden roof structure with a pink roof."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["shape is turtle, color is green, white", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "above a black and white image of a metal grate"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, green, tiled", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "b896a0898efe4059a776193c02132129"], "properties": ["apse, roof, floor plan", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a room", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a, dress, flower", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["s, boat, bird, airplane, kite", "a, material, clay"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["variation, bread, pot", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["door, roof, pool", "roof, truss, suspended ceiling"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss?", "label": 1}, {"captions": [" a large steel and metal structure with a pool and scaffolding system.", " a house with a wooden-framed roof structure."], "sample_ids": ["5850d5c7223447db816081d50292fec0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["structure, material, pool", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a bridge with chains", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a large concrete structure", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a fish with green spots, green eyes, green and blue fins, and green and blue stripes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["adee50e7a19c4c219e5a2edac18fb28e", "c3a82df41875402285608ef13a55df57"], "properties": ["Eye color is green, Spot color is green, Fin color is green and blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a fish on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["boat, table, chairs, umbrella, solar panel", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a molecule with two pink and blue spheres."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "926fb2e23c56440a86287e98c1440336"], "properties": ["frame, roof, trusses", "color, shape, size"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of three spheres on a white background"], "question": "which entity is not a molecule?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, black, shade, black", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "887e410d07854396b563325ae1929583"], "properties": ["water, river, island", "hat, mouse, bear"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["graffiti, bench, wall", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white map of the island of malta"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["e34088fc7b5344c4ab29fef067750225", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["sphere, pedestal, statue", "3d, model, collection"], "captions_pred_pc": ["the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a 3d model of a sculpture on top of a pedestal", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of objects?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "c8936ace72954650b4e2d84246964849"], "properties": ["wall, stairs, castle", "roof, color, pink"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color pink", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white origami bird with silver wings."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "d9574287572c47f7a2b712cf1d919374"], "properties": ["background, color, white", "color, white, wings"], "captions_pred_pc": ["a black line on a white background", "a 3d model of the human body"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity has white wings", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " of a character wearing glasses and a hat."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["beige, head, bottle", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["size, color, design", "door, roof, pool"], "captions_pred_pc": ["a black and white pattern on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["color, roof, tray", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white image of a metal object", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a wheeled hospital bed", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["wheeled, bed, hospital", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" of a large gray sphere", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["size, color, shape", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a stone wall featuring a statue and a window."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "09ab58e01e0d4393bc1e82f157e641be"], "properties": ["color, shape, and size", "a, window, statue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photo of a sculpture of jesus on the cross"], "question": "which entity is a window?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["- material is white- color is white- texture is textured", "room, staircase, bus"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a wooden billiard table with legs."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["table, bench, deer", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a black and white image of a pool table"], "question": "which table has legs", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["white, rock, shell", "shape is box, color is white, door is present"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a white, open shelving unit"], "question": "which object is whiter", "label": 1}, {"captions": ["white of a small arch.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, shape, size", "Eye color, Black, Purple"], "captions_pred_pc": ["for a black and white drawing of an arch", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white 3d model of an arch", "a 3d model of a dragon with wings"], "question": "which entity is not a shape?", "label": 0}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a white of a woman with her arms outstretched."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["roof, purple, suspended", "image, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a 3d white cube with windows resembling a building."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "4a07a5293f024bb0a353954a056ef626"], "properties": ["texture, spikes, eyes", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a cube"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large robotic elephant with blue wires and lines.", " of two rocks with ice elements."], "sample_ids": ["58dcedbbf3ef4133be9ac60c1d2f89af", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, wires, lines", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a face made up of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of an elephant made of various objects", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a large steel building with many columns and a pool."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, framing, material", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["rocky, rug, puddle", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, white, yellow, roof, metal", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- color is red, blue, pink", "Headstock, Guitar, Head"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" of a house with a pink roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, roof, pink", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["a, head, mask", "color, head, white and brown"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a gray and white cartoon character"], "question": "which entity has a head that is white and brown", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, city, train", "house, rock, bird"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, text", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a screw", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, box, wall", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d model of a house with a roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a spider-like creature with long arms and legs."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["books, paper, lamp", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, horns, features", "lion, statue, fountain"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a white chest of drawers with legs."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, shape, and material", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d rendering of a white dresser"], "question": "which object is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "6b745457e06840119058883b35f78f58"], "properties": ["color, light, jewels", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "b896a0898efe4059a776193c02132129"], "properties": ["a, bird, lake", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["building, door, clock", "building, door, clock"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a black and white image of a church with a steeple", "a black and white image of a church with a steeple"], "question": "which entity has a clock?", "label": 0}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["house, lake, pool", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " of two rocks with ice elements."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, staircase, balcony", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "c3a82df41875402285608ef13a55df57"], "properties": ["color, material, frame", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a metal frame structure", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6b745457e06840119058883b35f78f58", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, blue", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a building with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, orange, leather", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small purple plastic chair with holes."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, green, orange, star", "color, plastic, purple"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small, snow-covered house."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, structure, wall", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a wooden roof structure with a pink roof."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["Arms, Legs, Color", "roof, color, pink"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, material, frame", "house, tree, pool"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["red, pile, garbage", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white illustration of a triangle", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["yellow, table, roof", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" of a large rock or stone.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["boulder size, color, shape", "cup, bottle, chessboard"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is not a boulder?", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", "a 3d white cube with windows resembling a building."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "4a07a5293f024bb0a353954a056ef626"], "properties": ["blue, lid, handle", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a cube"], "question": "which object is made of a material that is white?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof truss, beams, structure", "roof, structure, suspended"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a metal roof"], "question": "which entity has a roof structure with a suspended ceiling?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a wooden shed with a gray roof."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["location, highway, train station", "roof, color, gray"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a shed with a gray roof"], "question": "which has a roof that is gray", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a person breaking through a brick wall."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["s, plane, house", "image, brick, wall"], "captions_pred_pc": ["a black and white silhouette of a map", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, texture", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is plastic- color is green- shape is box", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a white building with a red roof."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, gray", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, horns, features", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a spike on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a paper airplane"], "question": "which entity is not a demon?", "label": 0}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "06a1c233fb444830b577aa06e2c01294"], "properties": ["lamp, harp, bowl", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " a beige bottle, teddy bear, and head."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "f2fcfd53946e48f59c7bfd992ef658b1"], "properties": ["beige, head, bottle", "beige, head, bottle"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white image of a flower in the shape of a dandelion"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a light bulb royalty free 3d model preview no. 3"], "question": "which entity has a beige bottle", "label": 0}, {"captions": ["white table lamp with a white shade.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, white, shade", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white table lamp with a white shade", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small white house with a roof."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["black, white, laptop", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "770e577c9795435898209fd24191635b"], "properties": ["color, shape, and size", "image, color, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white 3d model of a small town"], "question": "which entity is a black and white image?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "b896a0898efe4059a776193c02132129"], "properties": ["roof, house, wooden", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a house with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["pink light saber.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c4c8ed95de4640fe8c0be1df68d816ba", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, pink, light", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black dot on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a light saber on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, material, texture", "a, color, red"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small red and white spaceship.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a drone in the air", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["moss, mushroom, grass", "glass, metal, balls"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a chessboard on a beige ceiling tile.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["beige, tile, chessboard", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a leopard print banner", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "c3a82df41875402285608ef13a55df57"], "properties": ["building, roof, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " of a white human skull with broken bone elements."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with wooden framing and trusses."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof, color, purple", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "f3edc84dc71649c1a11270437279255b"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "hippo, hind, legs"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "c8936ace72954650b4e2d84246964849"], "properties": ["resembles, toy, bookshelf", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of two rocks with ice elements."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof truss, beams, structure", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["- building is white, table is white, piles of paper are white", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a stone wall with a window and a clock."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["roof, air conditioner, house", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a house with a roof structure and toothbrushes."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["Cabinet, Drawers, Filing", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a white box with a lot of blades"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, umbrella, coat", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a 3d white ornate lace doily design resembling a flower with an arrow and cloud element."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "2cec19efecd74b34be9d85ed8198f212"], "properties": ["color, orange, white", "- color is white- shape is flower- pattern is lace"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a white doily with a pair of sunglasses on it"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a white lace doily on a gray background royalty free 3d model preview no 2"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof truss, insulation, suspended ceiling", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["Drawer, Pattern, White", "- material is wood, rusty, horned"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, shape, size", "glass, metal, balls"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a white circular object on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["house, roof, wooden", "table, staircase, light"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a stone wall with a window and a clock."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color, shape, and size", "window, clock, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a brick wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", " a white sofa, chair, and box."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "4c59733ebd634594a921b7ace60e4142"], "properties": ["bird, resembles, crow, pigeon", "sofa, chair, box"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a black and white image of a bird in flight", "a 3d model of a white chair"], "question": "which object is not a bird?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small white house with a staircase and a window."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "9eb88d17310d42dda9e17883e9922525"], "properties": ["Drawer, Pattern, White", "house, staircase, window"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d rendering of a small room with a staircase"], "question": "which entity has a window", "label": 1}, {"captions": [" a wooden cube.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is cube, material is wood, color is brown", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "b5afccae993346079483507296fbb029"], "properties": ["roof, room, ceiling", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, color, white", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small white house.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["4ca5999ea9eb4184a7d1f486687ad989", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["size, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a person holding a box", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small house on a white background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", "two white spheres in a ."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "1c02212a35134545ab63ab180d629c31"], "properties": ["moss, mushroom, grass", "two, spheres, white, in, a"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a white ball on a gray background"], "question": "which object is in a", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, white, base, slanted", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "c1536f68727947ff9e7810799fac583a"], "properties": ["color, shape, texture", "level, stairs, columns"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an apartment building"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, texture", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" a futuristic white sports racing car.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, futuristic", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a 3d printed green robot with two arms and two legs."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "04e3e8ce541e487b9e342570fe1b4eb2"], "properties": ["resembles, toy, bookshelf", "color is green, material is 3d printed, number of limbs is 2"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a robot in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a futuristic robot standing on its hind legs"], "question": "which entity has two limbs", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "46903bf029934b1989bc062dcb0a5531"], "properties": ["- material is plastic- shape is dice- color is white", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, mattress, pillows", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small building with windows and a roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["s, stick, leaf", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["color, roof, tray", "roof, truss, lamp"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a metal roof"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a small wooden house with a green roof."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, style, pixel", "roof, color, green"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white map of hawaii on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", "white of a rhino head with horns."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "8481aade84de47cab1a9accf8067e678"], "properties": ["color, horns, eyes", "image, rhino, head"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a goat's head with horns", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which entity has horns", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, blue, structure", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of dots on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["black, laptop, shelf", "Eye color, Black, Purple"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house with stairs and a roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["lighthouse, fountain, crater", "roof, stairs, house"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " of two rocks with ice elements."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is white- shape is cube- material is plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white cube", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "a17477b445b3443189dad22f768b888b"], "properties": ["cover, black, plastic", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white image of a square with dots"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "a white of a spaceship and building."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, door, window", "image, building, spaceship"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, glasses, character", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a black and gold pistol."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "402b57a5e32540b4938db1a9d3976220"], "properties": ["color, green, handle", "color, black, gold"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a gun royalty-free 3d model preview no."], "question": "which object is black and gold?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["design, poles, table", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a black and white image of a bench and table with a deer's head on the table"], "question": "which table has a deer head on it?", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "b896a0898efe4059a776193c02132129"], "properties": ["color, toilet, robot", "- material is stone, metal, concrete"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["base material is wood, color is red, message is welcome to northwich", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["building, roof, yellow", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, green, lawn", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a wooden shed with a gray roof."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a shed with a gray roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["size, color, shape", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["black, white, coffee table", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "6b745457e06840119058883b35f78f58"], "properties": ["door, white, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a house with a steeple on top"], "question": "which structure has a blue roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a clay pot with holes in it."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, air conditioner, house", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, hole, shelf", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a modern house"], "question": "which entity has a hole in it", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["low poly, plant, white", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": [" an ancient, broken clay mask held by a hand.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["28e7a932fe074667ac6a1b3b324b9e22", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["hand, mask, hold", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a butterfly", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken ceramic mask on a white background 3d model of a broken cer", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["runner, bed, bench", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a small building with windows and a roof."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["lighthouse, building, tower", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, sphere, molecule", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["face, handle, spout", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white square with dots on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "e44009d33258425e8efedfbc6823bf70"], "properties": ["shape is turtle, color is green, white", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a white cube"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a clay pot with holes in it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, and size", "hole, material, clay"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " of a wooden truck with a load of snow and crates, driving on a pile of wood."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "ac1e2dcbe71945d58204f95d16d658b1"], "properties": ["load, crates, snow", "load, crates, snow"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "above a 3d image of a bench with a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a truck with a pile of snow on top of it"], "question": "which truck is driving on a pile of wood?", "label": 0}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["texture, spikes, eyes", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a tree with leaves and roots.", " a large metal building with a roof and truss structure."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "b85a99699ccd4bcba213322113bb253d"], "properties": ["leaf, root, trunk", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["low poly, llama, kangaroo", "building, room, sky"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " of a white human skull with broken bone elements."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, plane, sky", "color, white, skull"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a white glass beer mug."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1d686cbd3e9a4c629a43088658989286"], "properties": ["water, river, island", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, pink, green, cord, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a metal building with a purple roof and cage structure."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["color, blue, structure", "roof, purple, structure"], "captions_pred_pc": ["a black and white image of dots on a white background", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof and cage structure?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a, hill, deer", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, light, handle", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a wooden billiard table with legs."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "legs, material, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, material", "building, plane, room"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- color is white- shape is cube- material is plastic", "box, handle, gun"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a two-story small apartment building with a roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, roof, toothbrushes", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, yellow, black", "color, silver, white"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "c3a82df41875402285608ef13a55df57"], "properties": ["bedside table, wheels, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, yellow, black", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "a17477b445b3443189dad22f768b888b"], "properties": ["base material, wood, shade color, white, beige", "roof, pillar, stairs"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a white glass beer mug."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "1d686cbd3e9a4c629a43088658989286"], "properties": ["earbud, earpiece, earpiece", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["- material is stone - color is blue - shape is arrowhead", "house, fence, dog"], "captions_pred_pc": ["above a black and white drawing of an arrow", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a white of a woman with her arms outstretched."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["size, material, lighthouse", "image, color, white"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "40921ffd69db479294554d261daf3035"], "properties": ["building, stairs, shelves", "floor, railing, staircase"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a computer screen"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["frame, roof, trusses", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["s, plane, house", "house, tree, hill"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it?", "label": 1}, {"captions": [" a white motorcycle with wings.", "star wars stormtrooper "], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, wings", "a, color, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a star wars stormtrooper"], "question": "which is not a white color", "label": 0}, {"captions": ["a 3d pink spiky spherical flower.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, texture", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a large house with a roof on a platform."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, tree, rock", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small house"], "question": "which house is on a platform", "label": 1}, {"captions": ["woman squatting and holding a water bottle in a .", "woman squatting and holding a water bottle in a ."], "sample_ids": ["1d6d7e9f9b1945e2b8b5178cf3d82e59", "1d6d7e9f9b1945e2b8b5178cf3d82e59"], "properties": ["woman, bottle, squat", "woman, bottle, squat"], "captions_pred_pc": ["a black and white image of a turtle's shell", "a black and white image of a turtle's shell"], "captions_pred_image": ["a woman squatting with her hands on her hips and knees", "a woman squatting with her hands on her hips and knees"], "question": "which woman is holding a water bottle in a.?", "label": 0}, {"captions": [" a house with a purple roof and glass block structure.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["roof, color, purple", "frame, truss, roof"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d rendering of a bridge over a road"], "question": "which structure has a roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["rusty, sink, graffiti", "glass, metal, balls"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a clear acrylic foosball table"], "question": "which table has more metal", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a, character, mario"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a house with a flat roof structure."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "abc52d210d71415296730bb00352ce6f"], "properties": ["- material is wood - color is white - height is 1.8 m", "roof, flat, structure"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["background, color, white", "rusty, warning, metal"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a green light.", " a small white box with a shelf and a hole in it."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["color, white, light", "a, hole, shelf"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a white box on a gray background"], "question": "which box has a shelf?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is metal- color is silver- texture is textured", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e098706085a44898abbd549693d12a64", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color is black, white, orange", "a, material, clay"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["roof, green, tiled", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne with stairs and a tree?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, truss, suspended ceiling", "Wheels, laptop, robot"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, tan, leather", "mossy, rock, grass"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, table, chairs", "water, boat, rock"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": ["yellow metal barricade ", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color is yellow, material is metal, height is 0.5 m", "door, lock, handle"], "captions_pred_pc": ["a white barrier on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which door is made of wood", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a clay pot with holes in it."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, yellow, chimney", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["image is rock formation with a white cliff and a rock", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white map of spain on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a roof structure"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "7f8942ef51dd4246993a587a12df168c"], "properties": ["a, island, water", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a house in the middle of a field"], "question": "which entity has a house with a yard", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["house, fence, dog", "black, roof, green"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small black building"], "question": "which house is black?", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["island, terrain, rocks", "house, hill, forest"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a black and white image of a small island in the middle of a body of water"], "question": "which island has a house on a hill?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "12093c89a60941e7884b252bdc05104c"], "properties": ["low poly, llama, kangaroo", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, skyline, buildings", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a house with a green, wooden-structured roof."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["- color is red, blue, pink", "roof, color, green"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, room, ceiling", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "09f2cf267e954c958828325067bcc36a"], "properties": ["acropolis, city, building", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "c8936ace72954650b4e2d84246964849"], "properties": ["railing, glass, table", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "4a889132cc444d10bfcbf6c760984416"], "properties": ["shape is cylindrical, color is silver, material is metal", "a, color, white"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["background, color, white", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, color, purple", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["height, material, shelves", "a, material, clay"], "captions_pred_pc": ["a black ladder on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a celtic stone cross.", "white ceramic face sculpture resembling an ice cream blob."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "8abc3a28cbba40428c9b364f90a4982a"], "properties": ["- material is stone- shape is cross- color is black", "blob, face, white"], "captions_pred_pc": ["for a black and white image of a watch", "above a black and white photograph of a starfish"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a head with eyes and a nose"], "question": "which object is made of ceramic?", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["box, paper clip, lock", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["color, material, size", "spiked, baseball bat, hammer"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "for a black star on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a baseball bat"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a large gray sphere", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["size, color, shape", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a black and white image of an object on top of a pedestal"], "question": "which entity is a crater?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a white of a woman with her arms outstretched."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a small wooden house with a roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, metal, white", "roof, house, wooden"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small house"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a house with a flat roof structure.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, flat, structure", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house with a roof", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["floor, staircase, balcony", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a small table"], "question": "which house has a bathroom?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", "a white glass beer mug."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["low poly, llama, kangaroo", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof trusses, beams, suspended ceiling", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a spider-like creature with long arms and legs."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["houses, trees, road", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a house with a pink roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, roof, pink", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["food, leaves, shredded paper, rocks", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "9050ebb69503447680d4757dfc708754"], "properties": ["a train, a ship, a boat", "a, head, bowl"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "in your own words a black and white illustration of a vase filled with beads"], "captions_pred_image": ["a 3d model of a submarine", "a black and white drawing of a bunch of tangled wires"], "question": "which object has a head?", "label": 0}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, tower", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a pixelated-textured purple sphere ."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "fb68393941804e769d5c9b372864a642"], "properties": ["building, balcony, street", "texture, color, shape"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a white bunny head", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, white, head", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small building with windows and a roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof truss, beams, structure", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure with brick detailing?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "402601779d1d4146b4cde106dfff1b27"], "properties": ["color, tan, brown, orange", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a snowflake in the air on a cloudy day"], "question": "which entity has more s", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, bird, lamp", "houses, trees, road"], "captions_pred_pc": ["a silhouette of a person standing in the air", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a large metal building with a roof and truss structure."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "b85a99699ccd4bcba213322113bb253d"], "properties": ["black, white, laptop", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "of a metal grate on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a long metal fence"], "question": "which structure is more complex", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a tree and a rock."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["color, roof, tray", "house, tree, rock"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, yellow, black", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a wine corkscrew"], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a wine bottle opener"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["face, handle, spout", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, yellow, white, wheels", "mossy, rock, grass"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a piece of wood on a white background"], "question": "which object is more likely to be in a forest", "label": 1}, {"captions": ["white korean word on a gray background.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, background, font", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- color is white - shape is box - material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, island, resembles, hawaii", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small red and white spaceship.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a spider-like creature with long arms and legs."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["blue tarp, flower, small island", "arachnid, leg, arm"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["image, building, painting", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "an image of a pile of trash on the ground"], "question": "which image shows a city with buildings", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, line, gray", "color, shape, color"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "e44009d33258425e8efedfbc6823bf70"], "properties": ["shape is sphere, color is white, material is plastic", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a white cube"], "question": "which object is whiter", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["hat, bag, blanket", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, material, shape", "water, boat, rock"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d image of an animal laying on the ground"], "question": "which entity has more water", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["bed, desk, window", "roof, structure, greenhouse"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["painting, door, wall", "roof, structure, greenhouse"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a spider-like creature with long arms and legs."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["black, laptop, shelf", "arachnid, leg, arm"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["image is a sculpture of an angel on a wall", "flower, color, pink"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "97e000ff41094665afd94ea565da8b13"], "properties": ["image, color, pink", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a white fox."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, horns, features", "color, white, fox"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a white fox on a gray background"], "question": "which animal is white", "label": 1}, {"captions": ["a 3d white geometric soccer ball.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8dd8ce98a0304753820115845741a6bd", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a soccer ball", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white 3d sphere on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small purple plastic chair with a handle and white base.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["cc5abae412db4e4b952eee1e4747af05", "b896a0898efe4059a776193c02132129"], "properties": ["color, plastic, base", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white illustration of a necklace", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a white human skull with broken bone elements."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["Drawer, Handle, Wood", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a human skull in white"], "question": "which entity is not a human skull?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, shape, size", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white illustration of the letter u", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["- color is white- shape is cube- material is plastic", "house, fence, dog"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a rusty green metal box with a handle and a gun inside.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["76cfd0e88ce243d483919a018a4f1a9e", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["box, handle, gun", "box, handle, gun"], "captions_pred_pc": ["a black and white square with dots on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal box with a handle", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 0}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a house with a wooden-framed roof structure."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["mossy, rock, grass", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof truss, insulation, suspended ceiling", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a spider-like creature with long arms and legs."], "sample_ids": ["b5afccae993346079483507296fbb029", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["shape is square, material is metal, color is rusty", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a spider-like creature with long arms and legs."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, island, water", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["house, roof, green", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, color, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large building with a roof and windows."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, green, lawn", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a green circuit board."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, table, blocks", "color, green, circuit board"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "of the item in the image"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of an electronic component"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green mountain with trees and grass.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["mountain, grass, tree", "bedroom, bathroom, bed"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, tower", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a wooden roof structure with a pink roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of the roof of a building"], "question": "which structure has a roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "b896a0898efe4059a776193c02132129"], "properties": ["bed, desk, window", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a house with a blue roof."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["ruined building, stone floor, small stone structure", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, size", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, label, shape", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house with a wooden-framed roof structure."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["room, bed, desk", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building with a roof"], "question": "which entity has a wooden-framed roof structure", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a potted plant on a wooden table or shelf."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["background, color, white", "potted plant, table, shelf"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white of a woman with her arms outstretched."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["background, color, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white of a woman with her arms outstretched."], "sample_ids": ["55b26130f1514032be078e13fd982905", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["windmills, silhouette, city model", "building, plane, city"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["frame, truss, roof", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, style, pixel", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, stairs, house", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, table, ceiling", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a brick building with a roof structure and roof truss."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "84e8acad28664a738df69d719df9e263"], "properties": ["color, door, window", "roof, structure, truss"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, yellow, chimney", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "96d127abd21049689918e671ec613ef8"], "properties": ["house, fence, dog", "axe, hammer, spoon"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a house?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a four-legged metal workbench with shelves."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["rocky, rug, puddle", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, suit, cell, phone, gun", "island, mountain, grass"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " of a person breaking through a brick wall."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["building, color, black and white", "image, brick, wall"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a brick wall?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, white, yellow, roof, metal", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "6b745457e06840119058883b35f78f58"], "properties": ["resembles, toy, bookshelf", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["e-cigarette, cartridge, bottle", "throne, stairs, tree"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["furniture, room, kitchen", "building, material, rock"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d image of a damaged piece of furniture"], "question": "which building has more materials", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["low poly, plant, white", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a black and white image of a stone sculpture"], "question": "which object is a skull?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small, snow-covered house."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, horns, features", "house, snow, cover"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "green and black ak-47 assault rifle with grenade launcher."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "9ffa5ac853354223a7f4f42d532f7633"], "properties": ["roof, color, pink", "color, black, green"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a cell phone on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2"], "question": "which entity has a roof that is black and green?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "97e000ff41094665afd94ea565da8b13"], "properties": ["structure, building, archway", "roof, material, wood"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a wooden shed with a gray roof."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["Drawer, Handle, Wood", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "b896a0898efe4059a776193c02132129"], "properties": ["turrets, flags, towers", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a roof and beams."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, blue", "roof, beams, house"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, material, frame", "island, terrain, water"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a, bird, lamp", "house, staircase, table"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["runner, bed, bench", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a ceiling with a light", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, shape, material", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "be1376023c274bdda995d54f3694157f"], "properties": ["- material is white- color is white- texture is textured", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a person breaking through a brick wall."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["variation, bread, pot", "image, brick, wall"], "captions_pred_pc": ["above a black and white drawing of an object", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a person breaking through a brick wall"], "question": "which image shows bricks?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["3ds max, obj, fbx, c", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white insect on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a house with a roof and beams."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, structure, suspended", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a piece of lace", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a small wooden house."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, red, blue, structure", "house, material, wood"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a small cottage"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small white house with a roof."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["light switch, electrical outlet, furniture", "roof, color, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a small white house with a roof."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["level, stairs, columns", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with a white roof"], "question": "which building has a roof", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["structure, roof, pitch", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hat, bag, blanket", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a four-legged metal workbench with shelves."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- material is plastic- color is green- shape is box", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, size", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a table with a stool on top"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a white shelf", " of a wildebeest with horns, royalty-free."], "sample_ids": ["bd39ae69218a4ec28c453936e245f175", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, material, shape", "image size, image, royalty"], "captions_pred_pc": ["of a black and white image of a long, thin object", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a wildebeest"], "question": "which entity is a royalty free image?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, windows, building", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which building has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a white rocking chair with a curved backrest."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["hat, sword, gun", "backrest, curved, yes"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a backrest that is curved", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, plane, town", "house, lake, pool"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, truss, structure", "roof, material, wood"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a white and blue building with a black roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, purple", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a house with a blue roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, blue", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white barn with a metal roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, door, window", "roof, metal, white"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a barn"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a wooden shed with a gray roof."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, head, bowl", "roof, color, gray"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a shed with a gray roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a black and white of a knife/sword with a handle."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["roof, metal, white", "image, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a barn", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, furniture, black", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a wooden cube.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is cube, material is wood, color is brown", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["- color is red, blue, pink", "bowl, pottery, headpiece"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a piece of ancient pottery"], "question": "which entity is made of pottery", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["boxing gloves, heart, hand", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of the human heart", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["a, plane, small plane", "bed, desk, window"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "411c164757fc4de68dfecb35fa858223"], "properties": ["apse, roof, floor plan", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a fruit bowl with an apple, on a table.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["64c3d61ba7b549b5b7c72b37d7532b48", "97e000ff41094665afd94ea565da8b13"], "properties": ["apple, bowl, table", "roof, material, wood"], "captions_pred_pc": ["for a white object on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is hot dog, design is dragon, color is black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["a train, a ship, a boat", "table, bench, deer"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "a095621f2d5845af83db3f59f5685982"], "properties": ["- material is wood, metal, metal", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a black ribbon on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white box with a green light.", " a house with a flat roof structure."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, light", "roof, flat, structure"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["Drawer, Handle, Wood", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a wooden-cased radio."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, table, ceiling", "case, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a wooden staircase with a railing and table."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "956247bea850458199c651037d4b1d7f"], "properties": ["a box, a cup, a bottle, a jar", "railing, table, staircase"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a table with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a clay pot with holes in it."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a room, a cake, a table", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["face, handle, spout", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a blue roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, color, blue", "roof, brown, flat"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which roof is brown", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["floor plan, bathroom, pool", "stair, table, chair"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "4ccf1ee1316e4a2b8f52e77e126a68c0"], "properties": ["roof, stairs, house", "roof, house, material"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a close-up view of the crystal chandelier on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a wooden roof"], "question": "which house has a roof made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "411c164757fc4de68dfecb35fa858223"], "properties": ["- material is plastic- color is white- shape is cylinder", "resembles, sea urchin, shell"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["shape is cylinder, color is white, material is plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a spike on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "c3a82df41875402285608ef13a55df57"], "properties": ["black, white, coffee table", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d model of a building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white house with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, white", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "c3a82df41875402285608ef13a55df57"], "properties": ["staircase, railing, building", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, room, ceiling", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a ceiling with a light", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a large steel building with a pool."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["tiers, building, stairs", "building material, pool, steel"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", "s of an octopus, squid, dog, and girl, accompanied by drawings of a frog, bird, and jellyfish, as well as a logo and t-shirt design for callum jelephant."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "13591ac0e4ea45749c29f5471eb0ab22"], "properties": ["s, batman, batman character", "s, squid, dog, girl, frog, bird, jellyfish, logo, t-shirt design, callum jelephant"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "for the elephant is drawn in black ink on a white background"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a 3d model of a frog with the words 'it's a frog'"], "question": "which entity has s of an octopus", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "a78520b929314d7c8477322e000bc481"], "properties": ["background, color, white", "polygonal, helmet, triangular details"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a piece of fabric with dots"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a gray, triangular shaped object"], "question": "which entity has a helmet?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, eagle, wood", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of an axe head"], "question": "which entity has a headstock?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "97e000ff41094665afd94ea565da8b13"], "properties": ["earbuds, light, ring", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a wooden-cased radio."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, screen, drawer", "case, material, wood"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which radio has a wooden case", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["building, stairs, shelves", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of the roof of a building"], "question": "which building has trusses", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a large building with a roof and windows."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, material, structure", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a house with a purple roof and glass block structure."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["Drawer, Handle, Wood", "roof, color, purple"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a building with a glass roof"], "question": "which entity has a roof that is the color purple", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a clay pot with holes in it."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, holes", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a pile of mint green soap cubes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "c3a82df41875402285608ef13a55df57"], "properties": ["color, mint, soap", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, pier, stairway", "building, color, black and white"], "captions_pred_pc": ["above a black and white illustration of an open door", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a potted christmas pine tree.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["a, color, green", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, roof, tray", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, material", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small house with a blue roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, color, blue", "a, building, roof"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white archway structure resembling a building."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "5ad02458cf394134a902e25001d2ffef"], "properties": ["- material is plastic- color is white- shape is cylinder", "structure, building, archway"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a white object on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, metal, white", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a barn", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["Arms, Legs, Color", "color, black, visor"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a black motorcycle helmet with a visor on top"], "question": "which object has a visor", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small wooden house with a green roof."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, furniture, black", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, orange, leather", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a chair", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white leather lounge chair and ottoman", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " of two rocks with ice elements."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, color, yellow-green", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house with a flat roof structure."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "abc52d210d71415296730bb00352ce6f"], "properties": ["graffiti, bench, wall", "roof, flat, structure"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, structure, suspended", "a, building, roof"], "captions_pred_pc": ["a black and white image of a piece of lace", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a white rocking chair with a curved backrest."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["metal, legs, frame", "backrest, curved, yes"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["hat, cup, bowl", "house, plane, town"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a damaged building"], "question": "which entity is a scene of a town?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a house with a roof and beams."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", "a white of a man with arms outstretched."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["railing, glass, table", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["bowl, pottery, headpiece", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a large axe with a cross on top."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, number", "axe, cross, top"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "for an axe on a white background"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a black building.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, black, building", "house, rock, bird"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d rendering of a house on a rock"], "question": "which building is on an island?", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "c3a82df41875402285608ef13a55df57"], "properties": ["color, material, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["floor plan, heating system, ceiling light fixture", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a house", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "73e7107ff3634516846bccad04c5dc87"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, color, pink", "rusty, warning, metal"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, white, red, pink", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", "a white of a man with arms outstretched."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, truss, suspended ceiling", "image, color, white"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["house, staircase, window", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" a small blue bottle with a lid and a small blue box.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["c1bc7f87f15943ba88f0410ef9e387e8", "5414d75e47104589837f3df8b6de6d22"], "properties": ["blue, bottle, box", "beige, white, round"], "captions_pred_pc": ["a black and white image of a sponge and a sponge holder", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a vase and a box royalty free 3d model preview no. 3", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["resembles, octopus, squid, spider, robot", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, text", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["black, white, coffee table", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a metal box with a handle"], "question": "which box has a handle", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["throne, chair, building", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, grass, moss", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a house on a rock"], "question": "which rock is on an island?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a, hole, rock", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a large metal building with a roof and truss structure."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "b85a99699ccd4bcba213322113bb253d"], "properties": ["orange, forklift, parking lot", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a cell phone", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a long metal fence"], "question": "which structure has a roof and truss?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of two rocks with ice elements."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, air conditioner, house", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small purple plastic chair with holes."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, hill, deer", "color, plastic, purple"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["color, white, black, white", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["building, floorplan, gym", "resembles, sculpture, rock"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of two rocks with ice elements."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, and size", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["- material is plastic- color is white- shape is cylinder", "bed, desk, window"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a black and white drawing of a curved line"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity is a room?", "label": 1}, {"captions": ["a white of a spaceship and building.", "a white of a house with a hole in the ceiling."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["image, building, spaceship", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a tree", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a house with a balcony"], "question": "which image shows a hole in the ceiling?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, white, red, pink", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["lighthouse, fountain, crater", "roof, trusses, ladder"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a potted christmas pine tree."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, black, white", "a, color, green"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " of a white human skull with broken bone elements."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "color, white, skull"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a human skull in white"], "question": "which is not a skull", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small wooden house."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, green, tiled", "house, material, wood"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a brick wall with grass."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "53f2d948091f417cb580e22469c94db2"], "properties": ["frame, beams, trusses", "brick, grass, wall"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "c3a82df41875402285608ef13a55df57"], "properties": ["design, poles, table", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "f1b557775310478893242180defa4d80"], "properties": ["Steel, Color, Yellow", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a small house in the middle of a field"], "question": "which entity is not a shack?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a crab holding a rubik's cube."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, structure, greenhouse", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" of a blue security booth featuring a locked door and a \"clean way\" inscription.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d2ba0001656f477787b7df4567346a2f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, inscription, booth", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a gray metal box with an open door", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a large metal building with a roof and truss structure."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, height", "roof, truss, structure"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a metal grate on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, grass, moss", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["houses, trees, road", "roof, truss system, framing"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of the roof of a house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["compartments, wall-mounted, vents", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a wooden staircase with a railing and table."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "956247bea850458199c651037d4b1d7f"], "properties": ["shape is cylinder, color is white, material is plastic", "railing, table, staircase"], "captions_pred_pc": ["of a spike on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, hole, shelf", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white glass beer mug."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a wooden table with a plant on it."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["black, white, coffee table", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "a85d3bb5c7e14a8f87b073cb4498cd2e"], "properties": ["floor plan, heating system, ceiling light fixture", "hoodie, ball, person"], "captions_pred_pc": ["a black and white drawing of a house", "for a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a person wearing a hoodie royalty free 3d model preview no.2"], "question": "which entity is a person?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a clay pot with holes in it."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["size, material, color", "hole, material, clay"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small white building with stairs and shelves."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "9e1f64d4fd514059be934077717536dc"], "properties": ["image, building, painting", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white photograph of a damaged house", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, yellow, chimney", "roof, structure, suspended"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["a, bird, lake", "bed, desk, window"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, material, shape", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["house, roof, green", "building, material, stone"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, blue, structure", "image, city, spoon"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a city skyline in white"], "question": "which image shows a city?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a house with a roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["house, tree, pool", "roof, house, roof"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which house has a roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a large axe with a cross on top."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, material", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a decorative tile", "for an axe on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "06a1c233fb444830b577aa06e2c01294"], "properties": ["metal, rusted, paper", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2563abff548c4479970c81491513b572", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, model, year", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a gray ashtray with a cigarette in it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c9c7fe9b477a4565a11fd2eaf868c23b", "c3a82df41875402285608ef13a55df57"], "properties": ["ashtray, color, gray", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an ashtray with a cigarette in it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, material", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " of two rocks with ice elements."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "e602ac60041f4b4f84c044161e478781"], "properties": ["screen, monitor, stand", "floor, wall, roof"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["staircase, railing, building", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["axe, hammer, spoon", "box, handle, gun"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of a human skull.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "40022305eaf44442915c9db03e25f781"], "properties": ["a, b, c", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "above a black and white image of an abstract design"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["books, paper, lamp", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["tiers, building, stairs", "table, staircase, light"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["hat, cup, bowl", "bed, desk, window"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "of a black and white drawing of a curved line"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "12093c89a60941e7884b252bdc05104c"], "properties": ["mossy, rock, rocky", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["top, color, wood", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a wooden box with a lid"], "question": "which object has a drawer", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a wooden staircase."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "98fa820a050e47659135907c6f7b198c"], "properties": ["color, white, railing, black", "material is wood, staircase, wood"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["graffiti, chinese writing, door", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white and blue building with a black roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "c893118316ee43e18322e5964b2806c5"], "properties": ["room, door, shelf", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["color, roof, tray", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white square with the words \"what tv\" on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, shape, and size", "color, white, words"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a long line of numbers"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a small trailer and a white box.", " of two rocks with ice elements."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["box, trailer, white", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of two rocks with ice elements."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, yellow, chimney", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["- material is white- color is white- texture is textured", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of an antique gramophone"], "question": "which object has a base", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a small purple plastic chair with holes."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, green, handle", "color, plastic, purple"], "captions_pred_pc": ["of a small black object on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a cannon with wheels", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, hat, glasses", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a brake pad", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a tree with leaves and roots.", "3d printed panther head with open mouth."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "dfe4f73a25a94b2c8449a2818c32a3bd"], "properties": ["leaf, root, trunk", "3D Printed, mouth, open"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "a 3d model of a dog head on a white background 3d model of a dog head on a white background stock illustration 3d model of a dog head on a white background 3d model of a dog head on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of a panther head royalty-free 3d model"], "question": "which entity has a trunk", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " of a white chest of drawers with legs."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["carving, statue, wall", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a large metal building with a roof and truss structure."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "b85a99699ccd4bcba213322113bb253d"], "properties": ["light switch, electrical outlet, furniture", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house with a tree in front, situated on a hill.", " of two rocks with ice elements."], "sample_ids": ["3bde44b5f10946398f1bb9843dc14caa", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, tree, hill", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a cell phone in a puddle of water", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a red mushroom on top of various piles, including dirt, leaves, wood, and garbage."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "21d3bd3978f74308a312b4379e665dbd"], "properties": ["food, leaves, shredded paper, rocks", "red, pile, garbage"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white illustration of a triangle"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a black and white image of a mushroom in a pile of leaves"], "question": "which pile has more garbage", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "c017bfb82db1460cafff604c0808793f"], "properties": ["hat, sword, gun", "a, suit, cell, phone, gun"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity has a man holding a cell phone and a gun?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small white building with stairs and a white table."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "e30374c614f54fdb90f35b96b071349d"], "properties": ["structure, roof, pitch", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a red circular object with a checkered pattern, resembling a round pillow or bed cover."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "9cf9fb6d07084488892422a5a5be00ef"], "properties": ["color, shape, texture", "pattern, color, shape"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black circle on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a round cushion royalty-free 3d model preview"], "question": "which entity has a checkered pattern", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, shape, material", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object is made of a box", "label": 1}, {"captions": [" a small white house with a roof.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["roof, color, white", "color, background, white"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a building with a white roof", "an image of a white background with a few small cubes on it"], "question": "which object has a white roof", "label": 0}, {"captions": [" a pink and white gun.", "a white glass beer mug."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, pink, white", "color, white, glass"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small triangular-shaped object."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "2d02985030804209a26c2c53b96a06f9"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a white and red lego gazebo with a pixelated design and 3d structure.", " a white and blue building with a black roof."], "sample_ids": ["9c628774529c489aaa7abb1a6dfb2140", "c893118316ee43e18322e5964b2806c5"], "properties": ["gazebo, color, white, red", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background, resembling a snowflake", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a gazebo in white 3d printed material", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["potted plant, table, shelf", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "06a1c233fb444830b577aa06e2c01294"], "properties": ["mossy, rock, rocky", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, shape, and size", "color, white, plastic"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a black and gold pistol.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, black, gold", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a building under construction"], "question": "which entity is not a building structure?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["image is rock formation with a white cliff and a rock", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, roof, green, frame, red", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "97f487941d26472294e005fa97c403be"], "properties": ["color, stone, green, blue", "color, white, green"], "captions_pred_pc": ["a circle of black dots on a white background", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["eead0dd97023415da05c97df37337473", "b896a0898efe4059a776193c02132129"], "properties": ["a, balloon, color, blue", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, island, resembles, hawaii", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["red, mouse, handwriting", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, structure, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, green, lawn", "roof, green, tiled"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, grass, moss", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a set of three white shelves or ceiling panels with lines.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ff6f8c2347ab4c17a2b3e319b205f191", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["set, white, lines", "a, material, clay"], "captions_pred_pc": ["a set of black and white dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d illustration of a set of three white trays on a gray surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["building, tree, plane", "house, lake, pool"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " of a white human skull with broken bone elements."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, black, shade, black", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a white glass beer mug."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, head, white and brown", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a white of a woman with her arms outstretched."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["red, pile, garbage", "house, rock, bird"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "9968e06a62e8487ea33460e640abc573"], "properties": ["color, line, gray", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white image of a broom on a stand"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "887e410d07854396b563325ae1929583"], "properties": ["3D, toothpick, skateboard", "hat, mouse, bear"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a train, a ship, a boat", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white box with a green light.", " a wooden shed with a gray roof."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, white, light", "roof, color, gray"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a white castle composed of small cubes."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["furniture, staircase, torn-apart", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a box, a cup, a bottle, a jar", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, white, red, pink", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of the roof of a house"], "question": "which entity has a roof structure with brick detailing?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "bded33af34104b9686b845dfd18309a9"], "properties": ["floor plan, bathroom, pool", "table, staircase, light"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, leg, tail", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a sword on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["color, shape, material", "building, balcony, street"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of an old building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large orange pumpkin.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["684df453535b4ec28c4d5b64dcd60f59", "5414d75e47104589837f3df8b6de6d22"], "properties": ["orange, large, pumpkin", "beige, white, round"], "captions_pred_pc": ["a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a pumpkin on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "a2354f13774340d392fbf33564934aab"], "properties": ["apse, roof, floor plan", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house with a yellow roof and chimney."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["color, shape, and size", "roof, yellow, chimney"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["roof, stairs, house", "floor, staircase, table"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, roof, block", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["design, poles, table", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a square with dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["backrest, curved, yes", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, color, black and white", "roof, material, wood"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " of a wooden tv stand with two drawers and handles."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "6409380e790442e6a5733eb447d4c510"], "properties": ["size, material, shape", "Drawer, Handle, Wood"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white drawing of a line of dots on a white background"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d rendering of a wooden entertainment center"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["texture, spikes, eyes", "a city, train, dragon"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a line drawing of an airplane flying in the sky"], "question": "which entity is a dragon?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["chair, table, refrigerator", "roof structure, truss, ceiling"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large white and metal building with a metal roof structure."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, green, lawn", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["shape is cylinder, color is white, material is plastic", "color is white, yellow, plastic"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "9968e06a62e8487ea33460e640abc573"], "properties": ["shape is cube, material is wood, color is white", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a wooden shed with a gray roof."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["bird, nest, wood", "roof, color, gray"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " of a small white building with stairs and a lid."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, b, c", "building, stairs, lid"], "captions_pred_pc": ["for a black square tile on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["handle, knife, shotgun", "room, door, shelf"], "captions_pred_pc": ["of a popsicle on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small purple plastic chair with four legs."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["color, tan, brown, orange", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["above a black and white illustration of an office chair", "of a black and white image of a baby carrier"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a white plastic chair"], "question": "which chair is made of plastic", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a small purple plastic chair with four legs."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["- material is wood - color is white - height is 1.8 m", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["an illustration of a barbed wire fence", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is white, yellow, plastic", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "db74ee1621464be1b164be26a1af050e"], "properties": ["roof, air conditioner, house", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["034c093c73fd48758422feee0b10c5d8", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, backpack, stick", "a, outfit, green"], "captions_pred_pc": ["a black and white drawing of a bird in flight", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a pencil drawing of a person holding a sword", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, pair", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "a black and white image of a cone shaped object"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a black tire."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "b645118910b54e2a9f3a97d5598ce1de"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "color, black, tire"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a tire on a white background royalty free 3d model preview no.2"], "question": "which object is black", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, rock, pond", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, lake, pool", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["Drawer, Pattern, White", "hat, candy, strawberry"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "6b745457e06840119058883b35f78f58"], "properties": ["- color is white- shape is cubes- number is 1", "roof, color, blue"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["color, light, jewels", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a white building."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "4decc6a3d12c47888f8fec543153a985"], "properties": ["- color is white - shape is box - material is plastic", "color, white, building"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a bottle"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a building on a white background"], "question": "which is not a building", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small, snow-covered house."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, roof, tray", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, shape, and size", "window, arches, wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an old brick wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["hat, candy, strawberry", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, table, chairs", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a close-up of a white object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, orange, leather", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof trusses, beams, suspended ceiling", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, shape, material", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4f21fa937959487a96350af527d75421", "97e000ff41094665afd94ea565da8b13"], "properties": ["window, frame, room", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a green mountain with trees and grass."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["earbuds, light, ring", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a wooden shed with a gray roof."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["graffiti, bench, wall", "roof, color, gray"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor plan, heating system, ceiling light fixture", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "09f2cf267e954c958828325067bcc36a"], "properties": ["dial, face, band", "island, terrain, rocks"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small wooden house with a green roof."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "be1376023c274bdda995d54f3694157f"], "properties": ["a, desk, laptop", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a small red renault clio car.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color is red, make is renault, model is clio", "grass, plants, rocks"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a group of trees"], "question": "which is not a car", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, roof, tray", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a wooden shed with a gray roof."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["floor, table, wall", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color gray", "label": 1}, {"captions": [" a modern house with a pool, balcony, and a small white box with a hole in it.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["795cebc8a9bd4780aa44c8dbccfd6d1a", "5850d5c7223447db816081d50292fec0"], "properties": ["house, pool, balcony", "structure, material, pool"], "captions_pred_pc": ["above a black and white image of a room with a lot of dots", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a modern house", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["image, color, pink", "image, color, pink"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d sculpture of an animal on a piece of paper"], "question": "which image has a pink sign?", "label": 0}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a vibrant city skyline featuring various colored buildings, trees, and skyscrapers."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "1a1fb9b0d83845f6b1238fb45e0defff"], "properties": ["house, lake, pool", "color, skyline, buildings"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a large building", "a black and white 3d model of a city skyline"], "question": "which entity has a skyline?", "label": 1}, {"captions": ["white table lamp with a white shade.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, white, shade", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white table lamp with a white shade", "a white chandelier with five white shades"], "question": "which has more lights", "label": 1}, {"captions": [" of a white cube", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["aca5fa55596c42f093ca4d6d4b3eaea9", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["a black and white square with dots all around it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white square table", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["40921ffd69db479294554d261daf3035", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor, railing, staircase", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small building with windows and a roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, and size", "roof, windows, building"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, island, resembles, hawaii", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "a17477b445b3443189dad22f768b888b"], "properties": ["screen, lens, color", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["b5afccae993346079483507296fbb029", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["shape is square, material is metal, color is rusty", "resembles, toy, bookshelf"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a book cover"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, hat, handle", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["castle, island, house", "house, lake, pool"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a large building"], "question": "which entity has a lake?", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, wheels", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["red, mouse, handwriting", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a house with a wooden-framed roof structure."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, text", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a house with a wooden-framed roof structure."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, frame, shape", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a wooden-framed house with roof trusses."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "e60dd370c5ec468da4689a801f951157"], "properties": ["frame, roof, trusses", "frame, roof, trusses"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house under construction"], "question": "which entity has a roof truss?", "label": 0}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a small white box with a green light."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, pattern, material", "color, white, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a large white vase on a grey background", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, purple", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a roof"], "question": "which roof is brighter", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["door, white, structure", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a black and white photograph of a birdhouse"], "question": "which structure has a roof", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "97e000ff41094665afd94ea565da8b13"], "properties": ["potted plant, table, shelf", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a blue circuit board with electronic components."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "4816a2780af54492b6692fd78347f1ac"], "properties": ["color, material, structure", "color, blue, components"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d printed circuit board with various electronic components"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, material is plastic, shape is tube", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white object on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["97f487941d26472294e005fa97c403be", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, white, green", "building, window, skeleton"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an office building", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", "a black and white of a knife/sword with a handle."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, railing, black", "image, color, black and white"], "captions_pred_pc": ["above a black and white image of a computer screen", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a black and white image of a knife"], "question": "which image is black and white?", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, material, pattern", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red, yellow, and blue building or toy box with colorful pipes and tubes.", "a low-poly of a white, shattered sphere."], "sample_ids": ["80069461444b4ac981fee9826c36534c", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, material", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white image of a 3d sculpture on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a building with many pipes and tubes", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a white round table with a red accent.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["fea62a865b4e40899d95785533818329", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, red", "house, fence, playground"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, white, plastic", "table, staircase, light"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "bded33af34104b9686b845dfd18309a9"], "properties": ["cover, black, plastic", "table, staircase, light"], "captions_pred_pc": ["of a black and white image of a skateboard", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a pink and green cube and chair.", " a small wooden house with a green roof."], "sample_ids": ["c6faf508072b4d0ea014bd9c748b79c3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, chair, pink, green", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a curved line made up of dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a simple white chair", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, white, material, ceramic", "a, material, steel"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a large metal structure"], "question": "which object is made of a material that is not ceramic?", "label": 1}, {"captions": [" a rusty boat, piece of wood, and brick wall.", " a four-legged metal workbench with shelves."], "sample_ids": ["4dec97bbe6fe46f89768ecd849003a13", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["rusty, piece, wall", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white photograph of a brick wall", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a stone slab on the ground royalty-free 3d model preview no.2", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small house with stairs and a roof."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, light, jewels", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, house, wooden", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["black and white image of a motorcycle", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, black, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["color, shape, and size", "floor, stairs, bathroom"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a small table"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a wooden billiard table with legs."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["variation, bread, pot", "legs, material, wood"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, shape, material", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a low-poly of a white, shattered sphere."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, material", "sphere, color, texture"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a cracked egg"], "question": "which object is a sphere?", "label": 1}, {"captions": [" of a pink coffee mug with a white handle and lid, featuring white foam or icing on top.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f50ca961cbcc4182a6f10074943d63c4", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, handle, lid", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a coffee mug on a white background a black and white image of a coffee mug on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a coffee mug royalty free 3d model preview no.1", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["building, plane, room", "building, plane, city"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "e80eca95874c4bffb8aec54044824d87"], "properties": ["house, building, people", "arrow, mountain, area"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a line with a square on it"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity has a mountain range?", "label": 1}, {"captions": [" a small red and white spaceship.", "a pair of red-handled pliers and wire cutters, with black accents."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "3ffc31b7e4cd43f3a3df5722ef8b9fca"], "properties": ["color, shape, size", "color, red, black"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of a toothbrush and a toothbrush"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d rendering of a pair of pliers on a white background"], "question": "which object is red and black?", "label": 1}, {"captions": [" a wooden cube.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "1da865c75a5e4a57a17652975dae5474"], "properties": ["shape is cube, material is wood, color is brown", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a hammer with a long metal handle."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, grass, moss", "handle, metal, long"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["s, plane, house", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" of a human bone", " a wooden shed with a gray roof."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, b, c", "roof, color, gray"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, tree, rock", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a gun with a blue handle."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["handle, knife, shotgun", "color, handle, blue"], "captions_pred_pc": ["of a popsicle on a white background", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a gun on a gray background"], "question": "which gun has a blue handle", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small white building with stairs and shelves."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "9e1f64d4fd514059be934077717536dc"], "properties": ["hair, legs, wings", "building, stairs, shelves"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["size, material, color", "cover, black, plastic"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7f8942ef51dd4246993a587a12df168c"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" of a large gray sphere", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, color, shape", "a, color, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, pattern", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a house with a roof"], "question": "which object is a building?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small house with stairs and a roof."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, material", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a house?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a black and white striped fly in the air."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, tan, brown, orange", "black, white, fly"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a black and white photograph of a fly"], "question": "which entity is a fly?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["lighthouse, fountain, crater", "island, mountain, grass"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["room, bed, desk", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "d81d13362ae04371bb2cba46e4939665"], "properties": ["sandbox, sand bucket, wooden blocks", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, black, green", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, yellow, white, wheels", "color, white, gold"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a standing mirror on a white background"], "question": "which object has a white and gold color scheme?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, temperature, england", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a house with a wooden-framed roof structure."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, red, green, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d pixelated minecraft model of a small city with buildings, trees, and a village.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["36fedf68eee24461886fb8d4a38eea00", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["pixelated, model, village", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a snowflake in the shape of a virus 3d illustration a black and white illustration of a snowflake in the shape of a virus royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic city", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", "a white of a house with a hole in the ceiling."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, ceiling, hole", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a hammer with a long metal handle."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["texture, spikes, eyes", "handle, metal, long"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, shape, material", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a wooden billiard table with legs."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, text", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a house with a roof and beams."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a wooden billiard table with legs."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, frame, shape", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a building structure", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a wooden roof structure with a pink roof."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, balcony, street", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "4389909667db472ea9a57a70eb940fa4"], "properties": ["a, b, c", "building, window, skeleton"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["black, white, coffee table", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a pond and situated on a rock."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "92859eb82a344134806b37cc209927c6"], "properties": ["floor plan, heating system, ceiling light fixture", "house, rock, pond"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["staircase, railing, building", "island, terrain, water"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a house with wooden framing and trusses."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["building, color, white", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "be1376023c274bdda995d54f3694157f"], "properties": ["color, yellow, blue", "roof, beams, chimney"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "5017581716c7402581a82ebf08d427a3"], "properties": ["earbuds, light, ring", "Shelf, color, white"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d rendering of a white shelf"], "question": "which entity has a light fixture", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, railing, black", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "9b6a637ead444bd28452178c74697653"], "properties": ["Cabinet, Drawers, Filing", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which entity is a picture of a beaver on a skateboard?", "label": 1}, {"captions": [" of a blue ford escort car.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, blue, ford escort", "color, white, gold"], "captions_pred_pc": ["of a black leather bracelet on a white background", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["ceiling, beams, light", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["top, color, wood", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a fireplace", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a throne with a tree on it"], "question": "which object has a tree?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white shelf with holes and brackets."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["roof, color, pink", "color, white, holes"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a house with a roof", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["structure, building, archway", "building, plane, room"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small red renault clio car.", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "40022305eaf44442915c9db03e25f781"], "properties": ["color is red, make is renault, model is clio", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of an ancient temple"], "question": "which is not a car", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of two rocks with ice elements."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a room, a cake, a table", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, roof, tray", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "4a889132cc444d10bfcbf6c760984416"], "properties": ["roof, green, tiled", "a, color, white"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["Drawer, Pattern, White", "house, roof, blue"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a small house and barn"], "question": "which object has a blue roof", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a sword with a wooden handle."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "bf448dbb4b6a43d89b2514929e8f7c43"], "properties": ["light source, fixture, color", "handle, material, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a sword on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a sword with two blades"], "question": "which object has a wooden handle", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is white, material is plastic, shape is bottle", "mountainous, landmass, state"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "b896a0898efe4059a776193c02132129"], "properties": ["color, red, blue, structure", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of an ancient statue"], "question": "which object is made of more metal", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["frame, chalkboard, color", "island, terrain, water"], "captions_pred_pc": ["of a black and white image of a television on a wall", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["white korean word on a gray background.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, background, font", "a, color, red"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a castle with two towers"], "question": "which entity has a red color", "label": 1}, {"captions": [" a wooden barrel.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["77ceb4db6ddc4a6c8c4a83ab1519e78b", "c3a82df41875402285608ef13a55df57"], "properties": ["material is wood, shape is barrel, color is brown", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a gray and white barrel", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, shape, material", "hat, bow, arrow"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a sculpture of an african man sitting on a pedestal"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, white", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "bded33af34104b9686b845dfd18309a9"], "properties": ["color is purple, material is plastic, number of legs is four", "table, staircase, light"], "captions_pred_pc": ["of a black and white image of a baby carrier", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "c8936ace72954650b4e2d84246964849"], "properties": ["cover, torn, open", "roof, color, pink"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a house with a roof"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" of a black shark", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["black, mouth, teeth", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "411c164757fc4de68dfecb35fa858223"], "properties": ["shape is cylindrical, color is silver, material is metal", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a cone shaped object", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["color, roof, block", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white, open shelving unit"], "question": "which building is white", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a clear glass display case with a square light fixture."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "980ded888795417f94b46750105e1597"], "properties": ["light source, fixture, color", "light, fixture, square"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a clear plastic box"], "question": "which light fixture is square", "label": 1}, {"captions": [" of a white and yellow knife with a wooden stick design.", " of two rocks with ice elements."], "sample_ids": ["623bbf500b754624b535b79976c65616", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a tall pole with a blade on top", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white building.", " a large steel building with a pool."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, white, building", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a bottle", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, structure, wall", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "67701617472e4051b95955c596561aac"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a coffee table", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, fence, snowy", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["yellow metal barricade ", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is yellow, material is metal, height is 0.5 m", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a white barrier on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a wooden roof structure with a pink roof."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, poles", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, base, warning", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which object is on a hill?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a wooden table with a plant on it."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["boat, table, chairs, umbrella, solar panel", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["bed, desk, window", "bed, desk, window"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 0}, {"captions": [" of a cannon with a wheeled cart.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["wheeled, cart, cannon", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, brown, flat", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "4a889132cc444d10bfcbf6c760984416"], "properties": ["- material is plastic- color is green- shape is box", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a desk and chair"], "question": "which box is white", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["compartments, wall-mounted, vents", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["image, color, black and white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white image of a knife", "a 3d model of a black and white object on a gray background"], "question": "which object is black and gold?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, white, red, pink", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "a24872444e5c468a9264d503a9ca7276"], "properties": ["- material is plastic- shape is dice- color is white", "rusty, hat, dartboard"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["nut, bowl, ring", "nut, bowl, ring"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a white object on a gray background"], "question": "which entity has a nut", "label": 0}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small white house with a roof."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["mossy, rock, grass", "roof, color, white"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof truss, insulation, suspended ceiling", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " of two rocks with ice elements."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, lighting, booth", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["lighthouse, fountain, crater", "water, boat, rock"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, leg, tail", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a pixelated-textured purple sphere ."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "fb68393941804e769d5c9b372864a642"], "properties": ["color, material, pattern", "texture, color, shape"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white square made of dots on a white background"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["shattered, resembles, broken phone", "house, tree, pool"], "captions_pred_pc": ["for black ink brush strokes on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a pokemon card in a clear display case.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "b896a0898efe4059a776193c02132129"], "properties": ["color, card, case", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["design, poles, table", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["shape, color, material", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a pair of socks", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "5414d75e47104589837f3df8b6de6d22"], "properties": ["screen, keyboard, box", "beige, white, round"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is not a computer?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, room, ceiling", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a wooden windmill with a red roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["water, river, island", "roof, color, red"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is the color of red", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["building, tree, plane", "bedroom, bathroom, bed"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small white house with a roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["room, bed, desk", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small house on a hill in a field."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, trusses, beams", "house, hill, field"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["mossy, rock, rocky", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which rock is covered in moss", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, table, ball", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with a roof.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, house, roof", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", "a white of a house with a hole in the ceiling."], "sample_ids": ["97f487941d26472294e005fa97c403be", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, white, green", "image, house, ceiling"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, light, jewels", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["a, hill, deer", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, table, ceiling", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a wooden roof structure with a pink roof."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, color, yellow", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of the roof of a building"], "question": "which roof is pink", "label": 1}, {"captions": [" a purple chair with holes in it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "b896a0898efe4059a776193c02132129"], "properties": ["color, purple, holes", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a silver pendant with an intricate design", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["runner, bed, bench", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a castle with two towers"], "question": "which object has a red roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "two white spheres in a ."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "1c02212a35134545ab63ab180d629c31"], "properties": ["roof, structure, wall", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a white ball on a gray background"], "question": "which object is not a house?", "label": 0}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a building with yellow lines."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, blue, rim, blue", "color, yellow, lines"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a white bowl on a gray background", "a drawing of an airplane flying over a city"], "question": "which entity has a yellow line?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["boxing gloves, heart, hand", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the human heart", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a small triangular-shaped object."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, shape, material", "shape, triangle, small"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a large rock or stone.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["0020acb8b03c4a1694a3a796904421d8", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["boulder size, color, shape", "color, sphere, molecule"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a piece of paper", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a piece of marble on a white background royalty-free 3d model preview no. 2", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "243cd2c469984313b1522dca099eefd3"], "properties": ["building, tree, plane", "color, white, material, ceramic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, black, white", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e80eca95874c4bffb8aec54044824d87"], "properties": ["houses, trees, road", "arrow, mountain, area"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a line with a square on it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": [" a small building with a roof.", " a large steel building with a pool."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, building, small", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["black, white, laptop", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a dishwasher with a dish inside it", "a white 3d model of a city skyline"], "question": "which image shows a laptop", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["location, field, gravestone", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of a whale", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" a wooden staircase.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "bf18bfd89efd43389781050230467d58"], "properties": ["material is wood, staircase, wood", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" of a large gray sphere", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "b896a0898efe4059a776193c02132129"], "properties": ["size, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white circular pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "an orange of a forklift truck in a parking lot."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "32d757fbd29640ffb5aab34925525a29"], "properties": ["buildings, houses, grass", "orange, forklift, parking lot"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a cell phone"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white photograph of a forklift"], "question": "which image shows a forklift truck?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "f1b557775310478893242180defa4d80"], "properties": ["color, helmet, airplane wing", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a 3d white cube with windows resembling a building."], "sample_ids": ["b5afccae993346079483507296fbb029", "4a07a5293f024bb0a353954a056ef626"], "properties": ["shape is square, material is metal, color is rusty", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": ["a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns.", " of two rocks with ice elements."], "sample_ids": ["15f0a38c3f134f2c801e92ac2ac5c124", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, pattern, word", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a pair of scissors", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a beaded necklace with the word banned on it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, booth, bed", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a large steel building with a pool."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, roof, structure", "building material, pool, steel"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", "a white of a spaceship and building."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, structure, wall", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "096e42b466ec438d95c5d89a85191534"], "properties": ["color, shape, and size", "white, rock, shell"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, purple, suspended", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small red and white spaceship.", " of a black tray with three green rings on it."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, shape, size", "color, black, rings"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d rendering of a tray with three rings on it"], "question": "which object is black?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a building surrounded by various structures, including a skyscraper, in a city setting."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "3b780ced7a814f86b3ee67f3596dddce"], "properties": ["building, skyscraper, city", "building, skyscraper, city"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of an airplane"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a knife with a building on top of it"], "question": "which building is surrounded by various structures", "label": 0}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a white castle composed of small cubes."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is stone - color is blue - shape is arrowhead", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["color, black, shade, black", "cup, bottle, chessboard"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is on a chessboard?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small white house with a roof."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["balcony, stairs, house", "roof, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["resembles, toy, bookshelf", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, balcony, street", "building, color, black and white"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "c8936ace72954650b4e2d84246964849"], "properties": ["flower, color, pink", "roof, color, pink"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a 3d model of a house with a roof"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["pattern, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": ["a pair of yellow pliers.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, yellow, pliers", "Steel, Color, Yellow"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white illustration of a building"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a table with multiple tables and chairs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["frame, trusses, wood", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["color, door, window", "roof, house, small"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, texture", "color, frame, shape"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a train, a ship, a boat", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a house with a roof.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["roof, house, roof", "color, frame, shape"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a small white house with a roof."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, truss, structure", "roof, color, white"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a house with wooden framing and trusses."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, model, luggage", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small house with a yellow roof and chimney."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["color, white, holes", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small house with stairs and a roof."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["liquid, ice, lid", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, material, texture", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small trailer and a white box.", " a small trailer and a white box."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "aabcf9b9c0f2458590f99509f369c9f9"], "properties": ["box, trailer, white", "box, trailer, white"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d model of a camper trailer royalty free 3d model preview no.2"], "question": "which trailer has a white box?", "label": 0}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color is white, material is plastic, shape is box", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house with a flat roof structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, metal, white", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small, snow-covered house."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a house with a roof and beams."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, size", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "88eba412c78a4ced89eb857327653f6c"], "properties": ["base material is wood, color is red, message is welcome to northwich", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["size, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a white castle composed of small cubes."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, frame", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["d6087023095446fbadef1721478373b2", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["door, roof, window", "building, door, clock"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of a church with a steeple"], "question": "which building has a door with a clock?", "label": 1}, {"captions": [" a green skull and sphere.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, skull, sphere", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small white airplane flying in the air."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "747fb98f64794cdd96486debaf20a02c"], "properties": ["house, plane, town", "airplane, color, white"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small airplane"], "question": "which plane is white", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "b896a0898efe4059a776193c02132129"], "properties": ["rocky, rug, puddle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, texture", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["screen, keyboard, box", "black, screen, blank"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which screen is blank", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with wooden framing and trusses."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", "white of a rhino head with horns."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "8481aade84de47cab1a9accf8067e678"], "properties": ["shape is hot dog, design is dragon, color is black", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "of a penguin skull in black and white"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a wooden-framed roof structure."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, red, blue, green", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small house with stairs and a roof."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["wall, stairs, castle", "roof, stairs, house"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " of two rocks with ice elements."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["lamp, harp, bowl", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "c3a82df41875402285608ef13a55df57"], "properties": ["image is a sculpture of an angel on a wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, pink, green, cord, white", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white box with a green light.", " of a black and white striped fly in the air."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, white, light", "black, white, fly"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a black and white photograph of a fly"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof structure, truss, ceiling", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a ceiling mounted air conditioner", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, rock, nail", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a small, snow-covered house."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["door, stairs, color", "house, snow, cover"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "b896a0898efe4059a776193c02132129"], "properties": ["Four legs, Metal, Shelf", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white illustration of a cross", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, material", "island, terrain, water"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "9968e06a62e8487ea33460e640abc573"], "properties": ["base, speaker, light", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a patterned rug", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": ["\"3d white flower, black and white tree and plant silhouettes, and heart with leaves\"", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1ffbc9486bce4634ba09914be33af4e0", "a17477b445b3443189dad22f768b888b"], "properties": ["color, heart, leaves", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white drawing of a tree with branches", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, stairs, house", "roof structure, truss, ceiling"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a wooden cube.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["shape is cube, material is wood, color is brown", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a wooden shed with a gray roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, white, background, gray", "roof, color, gray"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["image is rock formation with a white cliff and a rock", "meat, bread, sausage"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a brush on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a person breaking through a brick wall."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["house, fence, dog", "image, brick, wall"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["color, white, containers", "room, staircase, bus"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d image of a building with a lot of debris"], "question": "which room has a damaged bus?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["light switch, electrical outlet, furniture", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "plane, ship, bird"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a black and white photograph of a pile of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " of a white human skull with broken bone elements."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["roof, beams, chimney", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a human skull in white"], "question": "which entity is not a human skull?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a wooden staircase with a railing and table."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "956247bea850458199c651037d4b1d7f"], "properties": ["- material is stone - color is blue - shape is arrowhead", "railing, table, staircase"], "captions_pred_pc": ["above a black and white drawing of an arrow", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["red, mouse, handwriting", "3D, toothpick, skateboard"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a white toothbrush on a gray background"], "question": "which entity has a toothpick?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "6b745457e06840119058883b35f78f58"], "properties": ["roof, green, lawn", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a clay pot with holes in it."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, lake, boat", "hole, material, clay"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, shape, poles", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, room, ceiling", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, structure, truss", "house, pool, balcony"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of two rocks with ice elements."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["boat, table, chairs, umbrella, solar panel", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "a17477b445b3443189dad22f768b888b"], "properties": ["color, handle, zipper", "roof, pillar, stairs"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a square with dots"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["door, panel, staircase", "door, roof, pool"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a small house"], "question": "which door is blue", "label": 1}, {"captions": ["a white of a small archway gate.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "d49d8ed244094349a99e4faca05e0690"], "properties": ["image, color, white", "low poly, plant, white"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of a plant growing out of a rock"], "question": "which image is of a white object?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a four-legged metal workbench with shelves."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color is white, yellow, plastic", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "for a black and white illustration of a cross"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a potted christmas pine tree."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["hat, food, bowl", "a, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, blue, green, yellow, blue", "a room, a cake, a table"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "6b745457e06840119058883b35f78f58"], "properties": ["house, hill, forest", "roof, color, blue"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["nut, bowl, ring", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- color is white- shape is cube- material is plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a large metal building with a roof and truss structure."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "b85a99699ccd4bcba213322113bb253d"], "properties": ["Drawer, Pattern, White", "roof, truss, structure"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, white, black, white", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a cake with a black and white design on the top of the cake"], "question": "which object is white?", "label": 0}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " of a small white building with stairs and a lid."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, size", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a177693cc8c7428292680816001b48c6"], "properties": ["A, a, a", "black, white, laptop"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a room with dots on the floor"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a dishwasher with a dish inside it"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a knife, blade, handle", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a house with wooden framing and trusses."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, shape, size", "frame, trusses, wood"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a lamp, a syringe, a light pole", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a gray, metal pillar/cylinder."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["yellow, table, roof", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["house, plane, town", "room, furniture, window"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, structure", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a green pickle"], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "4c7904175d6d4676b73866c25110e8d3"], "properties": ["houses, trees, road", "color is green, shape is cylinder, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "of a black object on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a peanut on a white background royalty free 3d model preview no.3"], "question": "which is not a cylinder", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a wooden billiard table with legs."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, red, blue, green", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, truss, lamp", "roof, truss, lamp"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a metal roof"], "question": "which entity has a roof", "label": 0}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a brick wall with grass."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "53f2d948091f417cb580e22469c94db2"], "properties": ["house, plane, town", "brick, grass, wall"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "411c164757fc4de68dfecb35fa858223"], "properties": ["description, material, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a large metal building with a roof and truss structure."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["of a black and white drawing of a purse", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["a box, a cup, a bottle, a jar", "house, roof, blue"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, dress, purse", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a spider on a white background", "a black and white image of a person wearing a hat"], "question": "which object has more candy", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["- material is wood, metal, metal", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a cake with a black and white design on the top of the cake"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a wooden-handled axe .", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["handle material is wood, head material is metal, overall length is long", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, gun", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, door, clock", "throne, chair, building"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["collection, plane, car", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a roof structure"], "question": "which entity has a wooden roof", "label": 1}, {"captions": ["3d object featuring a blue and white tile, mattress, book with a sign, and a hanging notice sign, all representing god's family faith in action.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["4b1d361630b949889282755fb6fb46bc", "7f8942ef51dd4246993a587a12df168c"], "properties": ["Object, color, white", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a line of dots on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["god's family faith in action", "a 3d model of a house in the middle of a field"], "question": "which object has a yard", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["buildings, houses, grass", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, white, logo", "broom, shovel, fireplace"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a wooden shed with a gray roof."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, suit, cell, phone, gun", "roof, color, gray"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, orange, leather", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of two spheres"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["texture, spikes, eyes", "image, color, pink"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, wheel, helmet", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is wood, rusty, horned", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, shape", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a small orange piano with legs."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "d793de7c08d74414beeb8ea50f730705"], "properties": ["black, white, coffee table", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a bench"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is smaller", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", "a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "ce4453db136e4e9db2ca0f86814059b4"], "properties": ["s, batman, batman character", "s, batman, batman character"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "above a black and white illustration of a man in a batman costume"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2"], "question": "which entity has a person holding a bat", "label": 0}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house with stairs and a roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["resembles, toy, bookshelf", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "c3a82df41875402285608ef13a55df57"], "properties": ["house, tree, rock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "a17477b445b3443189dad22f768b888b"], "properties": ["mountain, grass, tree", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Brown, metal, lock", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black box with a lock", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "a78520b929314d7c8477322e000bc481"], "properties": ["ruined building, stone floor, small stone structure", "polygonal, helmet, triangular details"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of a piece of fabric with dots"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a gray, triangular shaped object"], "question": "which entity has a polygonal owl?", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["table, staircase, light", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a throne with a tree on it"], "question": "which entity has stairs", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, lake, pool", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a box, a cup, a bottle, a jar", "3d, slide, swing"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with a roof and beams."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, tan, brown, orange", "roof, beams, house"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, yard, surrounding buildings", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a pair of white 3d-printed crocodile clogs.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["67701617472e4051b95955c596561aac", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, white, 3d-printed", "box, paper clip, lock"], "captions_pred_pc": ["a black and white photograph of a pair of shells", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a pair of white plastic shoes on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", "a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "034c093c73fd48758422feee0b10c5d8"], "properties": ["a, character, person", "a, backpack, stick"], "captions_pred_pc": ["a 3d model of a person", "a black and white drawing of a bird in flight"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a pencil drawing of a person holding a sword"], "question": "which object has a backpack?", "label": 0}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, shape, size", "color, black, blue"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is black and blue?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["a box, a cup, a bottle, a jar", "door, roof, pool"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["resembles, octopus, squid, spider, robot", "resembles, toy, bookshelf"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a book cover"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, roof, block", "table, structure, roof"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with many pillars"], "question": "which entity has a roof made of glass?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white glass beer mug."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "1d686cbd3e9a4c629a43088658989286"], "properties": ["apse, roof, floor plan", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, blue", "roof, color, green"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a white shelf with holes and brackets."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, green, handle", "color, white, holes"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, plane, sky", "color, frame, shape"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a building structure"], "question": "which entity has a wire frame?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["graffiti, bench, wall", "a, material, steel"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["base material is wood, color is red, message is welcome to northwich", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, shape, tower", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a desk and chair"], "question": "which entity is not a staircase?", "label": 0}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "a2354f13774340d392fbf33564934aab"], "properties": ["color, roof, wall", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building structure", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " featuring a chair, table, and refrigerator."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["floor plan, heating system, ceiling light fixture", "chair, table, refrigerator"], "captions_pred_pc": ["a black and white drawing of a house", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is white, material is plastic, shape is tube", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white square with dots on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small building with windows and a roof.", " a child's room in a small house with windows."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "88847a6445044bcbab9611e6028a19b9"], "properties": ["roof, windows, building", "room, house, windows"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity has more windows", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, purple", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a large steel building with many columns and a pool."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, material, stone", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["tiers, building, stairs", "island, terrain, water"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["holder, spring, box", "houses, trees, road"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a black shark", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["black, mouth, teeth", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of an object on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a large metal building with a roof and truss structure."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "b85a99699ccd4bcba213322113bb253d"], "properties": ["room, bed, desk", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a door", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["broom, shovel, fireplace", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d rendering of a white box on a wooden floor"], "question": "which entity has a laptop on top?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["color, shape, and size", "fireplace, bench, log"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a snowflake"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a fireplace with snow on the ground"], "question": "which entity has more logs", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a yellow and blue toy submarine."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, light, jewels", "color, yellow, blue"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a submarine toy"], "question": "which object is blue", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, background, white", "building, material, stone"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a wooden staircase with a railing and table."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "956247bea850458199c651037d4b1d7f"], "properties": ["- color is white- shape is cube- material is plastic", "railing, table, staircase"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white glass beer mug."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["low poly, llama, kangaroo", "house, fence, dog"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small wooden house with a green roof."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["buildings, houses, grass", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a house with wooden framing and trusses."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a window"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, bird, hook", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["roof, purple, suspended", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a metal structure", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " of two rocks with ice elements."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["shattered, resembles, broken phone", "image is a rock with ice elements"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["building, balcony, street", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "e098706085a44898abbd549693d12a64"], "properties": ["color, head, white and brown", "color is black, white, orange"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is more colorful", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, height", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a large house with a roof on a platform."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof trusses, beams, suspended ceiling", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, white, pen, logo", "frame, beams, trusses"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a metal grate"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a building under construction"], "question": "which entity is not a building structure?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, red, blue, structure", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a concrete wall"], "question": "which wall is more likely to be rusted", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["4f21fa937959487a96350af527d75421", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["window, frame, room", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a metal cage", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["hat, food, bowl", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "db19e46828c94b1a8b9a6ca9f673c604"], "properties": ["a, roof, soup", "a, roof, soup"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "in 15 words or fewer a black and white illustration of the moon"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a bowl and chopsticks on a sheet of paper"], "question": "which entity has a roof with a hole in it?", "label": 0}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a wooden roof structure with a pink roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, table, ceiling", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "745fed115c5343dab9d7f0c389c98902"], "properties": ["image, color, pink", "costume, color, black"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a small white building with stairs and a lid."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, tan, brown, orange", "building, stairs, lid"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small purple plastic chair with holes."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["top, color, wood", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a fireplace", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white fox."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, white, red, pink", "color, white, fox"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox?", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, fence, playground", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, model, white house", "s, laptop, printer"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a black and white image of an electronic device"], "question": "which entity has a garden?", "label": 0}, {"captions": [" a pink, ear-shaped object.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["0e08d777c7b948a784dc15748e7b173f", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is ear, color is pink, material is plastic", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, roof, tray", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a white pendant floor lamp.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["073a3fb2e9bd42d1affed98ed2d64794", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["height, lamp, shade", "lamp, harp, bowl"], "captions_pred_pc": ["of a black circle on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a light bulb on a pedestal royalty free 3d model preview no.", "a 3d model of a harp in a white room"], "question": "which lamp is taller", "label": 0}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a green circuit board."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, light", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "of the item in the image"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "be1376023c274bdda995d54f3694157f"], "properties": ["color, roof, block", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a roof"], "question": "which building has a roof made of wood?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a brick building with a roof structure and roof truss."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "84e8acad28664a738df69d719df9e263"], "properties": ["roof, structure, wall", "roof, structure, truss"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["red, mouse, handwriting", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, black, white, handle, armrest", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, balcony, street", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a human bone", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, b, c", "a, material, steel"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a house with a pink roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, roof, pink", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a building with a roof"], "question": "which roof is more complex", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, label, shape", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["orange, forklift, parking lot", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a forklift", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a large rock with a hole in it.", " a small white box with a shelf and a hole in it."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["size, shape, material", "a, hole, shelf"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a white box on a gray background"], "question": "which object is smaller", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["image, house, ceiling", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a pixelated-textured purple sphere ."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "fb68393941804e769d5c9b372864a642"], "properties": ["building, stairs, shelves", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["books, paper, lamp", "house, rock, bird"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, door, window", "door, lock, handle"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["two white spheres in a .", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1c02212a35134545ab63ab180d629c31", "c3a82df41875402285608ef13a55df57"], "properties": ["two, spheres, white, in, a", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white ball on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small white building with stairs and a white table."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, material, texture", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, island, resembles, hawaii", "Headstock, Guitar, Head"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, roof, wooden", "house, tree, hill"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "97e000ff41094665afd94ea565da8b13"], "properties": ["collection, plane, car", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a piece of paper", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, material, shape", "a, color, red"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a stone wall featuring carvings and statues."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, white, containers", "carving, statue, wall"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d image of a group of statues on a wall"], "question": "which entity has more statues", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", "a white glass beer mug."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, handle", "color, white, glass"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a house with a green, wooden-structured roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["room, door, shelf", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a spiral staircase with a railing in a small building."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["earbud, earpiece, earpiece", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white photograph of a light switch"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["Arms, Legs, Color", "a, desk, laptop"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " of two rocks with ice elements."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["low poly, llama, kangaroo", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, height", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "d49d8ed244094349a99e4faca05e0690"], "properties": ["floor, staircase, railings", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["room, house, windows", "throne, stairs, tree"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["roof, structure, greenhouse", "moss, mushroom, grass"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["wheeled, cart, cannon", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["floor plan, heating system, ceiling light fixture", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "gold, ring, animal"], "captions_pred_pc": ["a black mascara brush on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["3D, toothpick, skateboard", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white map of spain on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a rock formation on a gray background"], "question": "which image is a rock formation?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "Headstock, Guitar, Head"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, yard, surrounding buildings", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a white rocking chair with a curved backrest."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, material", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white castle composed of small cubes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, and size", "composed of, white, cubes"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a white, labeled stone resembling a block of ice, bar of soap, or rock."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "44723e86bdd14071b0544745879604de"], "properties": ["a knife, blade, handle", "resembles, bar, soap"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a piece of paper with dots on it"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble"], "question": "which entity is a block of ice?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, yellow, white, wheels", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a crab holding a rubik's cube."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["light source, fixture, color", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white barn with a metal roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, structure, wall", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white hand, ear bud, teddy bear, earpiece, and utensil."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1c59287d496f4da6b245a01d25a7e2a4"], "properties": ["color, shape, and size", "earbud, earpiece, earpiece"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a hand holding a cup"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white object on a grey background"], "question": "which entity has a earbud?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, plane, sky", "hat, bow, arrow"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a gun with a blue handle and red trigger.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0913d4d3654449889f4bb443f9d25e4b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, handle, trigger", "a, material, clay"], "captions_pred_pc": ["of a gun made of frozen water droplets on a white background royalty free stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "6b745457e06840119058883b35f78f58"], "properties": ["flower, color, pink", "roof, color, blue"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, red, blue, structure", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a building under construction"], "question": "which structure has a pink frame?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a spiral staircase with a railing in a small building."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["house, table, chair", "staircase, railing, building"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a small white house with a roof."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, color, black and white", "roof, color, white"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a white and yellow knife with a wooden stick design.", " of a wine corkscrew"], "sample_ids": ["623bbf500b754624b535b79976c65616", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, shape, material", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a black and white image of a tall pole with a blade on top", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "46903bf029934b1989bc062dcb0a5531"], "properties": ["- material is stone - color is blue - shape is arrowhead", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["chair, table, refrigerator", "house, roof, green"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a gray, metal pillar/cylinder."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is white, yellow, plastic", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a black candle on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["house, plane, town", "building, balcony, street"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "40921ffd69db479294554d261daf3035"], "properties": ["color, grass, moss", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a spiral staircase"], "question": "which object has a wooden floor", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, color, purple", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with a blue roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, tan, brown, orange", "roof, color, blue"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["location, city, boat", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a map", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "b896a0898efe4059a776193c02132129"], "properties": ["height, material, shelves", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black ladder on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["hat, food, bowl", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, color, green", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of more colors", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a house with a wooden-framed roof structure."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["bedside table, wheels, white", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", "a white of a woman with her arms outstretched."], "sample_ids": ["21639082215b4b179d574d2408124838", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, room, furniture", "image, color, white"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a large steel building with a pool."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor, ceiling, poles", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["nut, bowl, ring", "roof, color, yellow"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- color is white- shape is cube- material is plastic", "color is white, yellow, plastic"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a white cube", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["desk, chair, lamp", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" of a crab holding a rubik's cube.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d351e74340e14ef09fb24b69dd4a6502", "b896a0898efe4059a776193c02132129"], "properties": ["image is a crab holding a rubik's cube", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a spider on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a crab holding a cube", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "18e392c5360146eda498c5edab25b15c"], "properties": ["A, a, a", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small wooden house."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, color, white", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a bench", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "1c389c8f46b345838e515b9747c1f982"], "properties": ["- material is plastic- color is white- shape is cube", "plate, fruit, knife"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a person riding a skateboard on a wooden surface"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "white ceramic face sculpture resembling an ice cream blob."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8abc3a28cbba40428c9b364f90a4982a"], "properties": ["color, shape, and size", "blob, face, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a starfish"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a head with eyes and a nose"], "question": "which entity is a blob?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small white house with a roof."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["variation, bread, pot", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small wooden house with two roofs."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["roof, room, ceiling", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small barn"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["flag, stand, color", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["level, stairs, columns", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a white 3d bowl with handles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["277fc0f27a4a45f79b7a2cfc5e9f335c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a sphere made up of tiny dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white ceramic bowl with handles royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a white of a woman with her arms outstretched."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a white of a spaceship and building."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, horns, features", "image, building, spaceship"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e34088fc7b5344c4ab29fef067750225"], "properties": ["house, plane, town", "sphere, pedestal, statue"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["hat, color, white", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a doll made of beads", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a large building with a roof and windows."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "32d1fbd3ee91426882290305f70021e6"], "properties": ["a box, a cup, a bottle, a jar", "roof, windows, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "b896a0898efe4059a776193c02132129"], "properties": ["color, head, body", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a white castle composed of small cubes."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, yellow, chimney", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["- color is white- shape is cubes- number is 1", "house, roof, wooden"], "captions_pred_pc": ["a close up of a black and white striped scarf", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a barrel and a cube together."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["house, tree, pool", "a, barrel, cube"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "bded33af34104b9686b845dfd18309a9"], "properties": ["building, roof, white, cubes", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, white, blue, roof, black", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a desk and chair"], "question": "which entity is a building?", "label": 0}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "411c164757fc4de68dfecb35fa858223"], "properties": ["A, a, a", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, green, lawn", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["color, base, warning", "building, color, white"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a small white house with a roof."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, text", "roof, color, white"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green skull and sphere.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, skull, sphere", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["hat, bag, blanket", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["screen, keyboard, box", "door, lock, handle"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house with a tree and a rock."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["resembles, toy, bookshelf", "house, tree, rock"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a potted christmas pine tree."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["blue, curved, resembles", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "97e000ff41094665afd94ea565da8b13"], "properties": ["books, paper, lamp", "roof, material, wood"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["location, field, gravestone", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, staircase, table"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white and blue building with a black roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c893118316ee43e18322e5964b2806c5"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a celtic stone cross.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["- material is stone- shape is cross- color is black", "black, white, coffee table"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a black and white 3d model of a building"], "question": "which object is black and white", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["two-story, roof, building", "house, fence, playground"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a room with a lot of wires"], "question": "which building has a fence", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["railing, table, staircase", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a window", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small house on a hill in a field."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, gazebo, table", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["chocolate, mushroom, cake", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, texture", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of an egyptian sarcophagus."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["houses, trees, road", "sarcophagus, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a wooden billiard table with legs."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a human bone structure", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "b896a0898efe4059a776193c02132129"], "properties": ["color, label, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["a, city, train", "a, color, red"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d model of a castle with two towers"], "question": "which toy is red", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a spiral staircase with a railing in a small building."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["building, tree, plane", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "c3a82df41875402285608ef13a55df57"], "properties": ["house, roof, wooden", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "a17477b445b3443189dad22f768b888b"], "properties": ["building, stairs, lid", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["s, stick, leaf", "door, roof, pool"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small wooden house with a green roof."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, blue, green, yellow, blue", "roof, color, green"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, blue, structure", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["table, bench, deer", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue character with arms outstretched.", " of a hammer with a long metal handle."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, shape, size", "handle, metal, long"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a wooden shed with a gray roof."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, rock, paper", "roof, color, gray"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "ceee98c20f23424195da092156905ec4"], "properties": ["face, handle, spout", "face, handle, spout"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white image of a small, circular object"], "captions_pred_image": ["a white ceramic vase with a face on it", "a white ceramic vase with a face on it"], "question": "which entity has a face", "label": 0}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, yellow, white, wheels", "striped, white, black"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a small, snow-covered house.", " a wooden shed with a gray roof."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, snow, cover", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is the color of gray", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small wooden house."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["graffiti, chinese writing, door", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, yellow, black", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a black and white of a knife/sword with a handle."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, light, jewels", "image, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house with wooden framing and trusses."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, roof, green, frame, red", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a spiral staircase with a railing in a small building."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["house, tree, pool", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, skyline, buildings", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a house with a flat roof structure."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "abc52d210d71415296730bb00352ce6f"], "properties": ["building, fence, snowy", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, white, containers", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a table with a stool on top"], "question": "which entity has a table with stairs and a ladder?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, structure, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a building"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of an egyptian sarcophagus."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["blue tarp, flower, small island", "sarcophagus, material, wood"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, size", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes.", " a house with a wooden-framed roof structure."], "sample_ids": ["fa06167d83e54b05bdfbeeae2ca7c8a6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["table, structure, roof", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a map with dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with many pillars", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a large metal building with a roof and truss structure."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["shape is box, color is white, door is present", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "a17477b445b3443189dad22f768b888b"], "properties": ["Wheels, laptop, robot", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a small white box with a green light."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, black, white", "color, white, light"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, pink, green", "roof, ceiling, hole"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": [" of an egyptian sarcophagus.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["70aa484af2ab44149a608dd81a6ff459", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["sarcophagus, material, wood", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white photograph of a sphere with egyptian hieroglyphics on it", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of an orange life ring"], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "e27df4cbd35c4666b4690b58e1a3dad6"], "properties": ["nut, bowl, ring", "color is orange, material is plastic, shape is ring"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "of a silver bracelet with black dots on it"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "an inflatable life preserver on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, white, plastic", "roof, color, yellow"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["3D, toothpick, skateboard", "building, door, clock"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a church with a steeple"], "question": "which entity has a door?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a chair with a yellow seat."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, tan, brown, orange", "color, yellow, seat"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which chair has a yellow seat", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with wooden framing and trusses."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, red, pink", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a clay pot with holes in it."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, material, shape", "hole, material, clay"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white box with a green light.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, light", "roof, brown, flat"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, shape, material", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of a black and white building", "a black and white 3d model of a building"], "question": "which entity is a cube shape?", "label": 1}, {"captions": [" a purple and green sphere.", " a small white building with stairs and shelves."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, size", "building, stairs, shelves"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, door, cross", "low poly, plant, white"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["image is royalty-free, beaver, skateboard", "table, stairs, ladder"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "12093c89a60941e7884b252bdc05104c"], "properties": ["Arms, Legs, Color", "giraffe, bench, flower"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " of an egyptian sarcophagus."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a, island, water", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "88eba412c78a4ced89eb857327653f6c"], "properties": ["shape is cube, color is black, white", "lighthouse, building, tower"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "97f487941d26472294e005fa97c403be"], "properties": ["color, gazebo, table", "color, white, green"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["metal, legs, frame", "frame, truss, roof"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d rendering of a bridge over a road"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a lamp, a syringe, a light pole", "house, table, chair"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is wood, rusty, horned", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["3d model of a plague doctor's mask", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, skyline, buildings", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a city in black and white"], "question": "which city has a plane flying over it?", "label": 1}, {"captions": ["sonic the hedgehog with a red nose and blue monster features.", " of two rocks with ice elements."], "sample_ids": ["f2a462cfea214cd894692af7544f8441", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, nose, blue", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a funny monster", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a cartoon character", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a two-story small apartment building with a roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["frame, roof, trusses", "two-story, roof, building"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "73e7107ff3634516846bccad04c5dc87"], "properties": ["shape is cube, material is wood, color is white", "blue, curved, resembles"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a black and white striped box."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["screen, keyboard, box", "color, black, white"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d image of a black and white striped surface"], "question": "which box is black and white?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " of a small white building with stairs and a lid."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["bird, nest, wood", "building, stairs, lid"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a small blue robot with a windmill."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["color, wheel, helmet", "color, blue, robot"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a wind turbine"], "question": "which robot is blue?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white of a man with arms outstretched."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["background, color, white", "image, color, white"], "captions_pred_pc": ["a black line on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, pink, green, cord, white", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a small white building with stairs and shelves."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "9e1f64d4fd514059be934077717536dc"], "properties": ["image is a sculpture of an angel on a wall", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a white 3d model of a building with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["s, chimpanzee, human, wolf", "house, hill, forest"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, material", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d image of a room with a person in it"], "question": "which entity is more likely to have a window", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, truss, lamp", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, light, jewels", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a green and black robot with cube-like features.", " a small wooden house with a green roof."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "white ceramic urn with a red lid."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["a knife, blade, handle", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a piece of white plastic on a gray background", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "06a1c233fb444830b577aa06e2c01294"], "properties": ["Arms, Legs, Color", "house, tree, hill"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a piece of rock with a blue stick.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, rock, stick", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a rock formation", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "c3a82df41875402285608ef13a55df57"], "properties": ["image, building, stairs", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, stairs, ladder", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " of two rocks with ice elements."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["red, eyes, rocket", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a two-story small apartment building with a roof."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["A, a, a", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large steel building with a pool."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, color, blue", "building material, pool, steel"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a small white building with stairs and a lid."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["graffiti, bench, wall", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of a boat", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, base, warning", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a large metal building with a roof and truss structure."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "b85a99699ccd4bcba213322113bb253d"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, truss, structure"], "captions_pred_pc": ["a close up of a black object on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, number", "resembles, sculpture, rock"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a yellow roof and chimney."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, color, pink", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a chimney", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, material", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, tan, brown, orange", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a wooden staircase."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "98fa820a050e47659135907c6f7b198c"], "properties": ["wall, stairs, castle", "material is wood, staircase, wood"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a small purple plastic chair with a handle and white base.", "a white glass beer mug."], "sample_ids": ["cc5abae412db4e4b952eee1e4747af05", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, plastic, base", "color, white, glass"], "captions_pred_pc": ["above a black and white illustration of a necklace", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small wooden house."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["black, white, laptop", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a house with wooden framing and trusses."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, mattress, pillows", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["black and white image of a motorcycle", " a silver vintage racing car."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "9d8a1e856251435f9596c031005520bd"], "properties": ["color, black, white", "color, silver, vintage"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white image of a chair with dots all over it"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d model of a vintage racing car"], "question": "which vehicle is silver", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "06a1c233fb444830b577aa06e2c01294"], "properties": ["mug is purple, cup is black, candle is black", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, roof, green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, color, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small white house with windows and a black lid."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, white, holes", "white, windows, lid"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "above a black and white image of dots on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a white house with three windows"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "d49d8ed244094349a99e4faca05e0690"], "properties": ["floor plan, bathroom, pool", "low poly, plant, white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a white of a house with a hole in the ceiling."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof, stairs, house", "image, house, ceiling"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["table lamp, ceiling light, table", "room, furniture, window"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small house with a roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["face, handle, spout", "roof, house, small"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a potted christmas pine tree."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["door, lock, handle", "a, color, green"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a witch wearing a black and white hat."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["shape is cube, color is black, white", "color, black, white"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is not a witch?", "label": 0}, {"captions": [" a multi-level building with yellow stairs and columns.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["level, stairs, columns", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a throne with a tree on it"], "question": "which entity has stairs", "label": 1}, {"captions": [" of a spider-man mask and head.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, head, mask", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a person's head", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d white plastic water bottle with a blue and green lid.", "white ceramic urn with a red lid."], "sample_ids": ["185d18b159994da8a74f3f48b360d93c", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color, material, shape", "color, white, lid, red"], "captions_pred_pc": ["a black water bottle on a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a white plastic water bottle on a gray background", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["blue tarp, flower, small island", "house, rock, bird"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["location, area, material", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["shape is sphere, color is white, material is plastic", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a person in a green outfit, resembling a cartoon character.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["839a873262a544c9906f3f5799ca4648", "c3a82df41875402285608ef13a55df57"], "properties": ["a, outfit, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a person jumping on a trampoline in slow motion", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a large steel building with a pool."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, building, people", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white glass beer mug."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1d686cbd3e9a4c629a43088658989286"], "properties": ["bed, desk, window", "color, white, glass"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["color, shape, pattern", "a, desk, laptop"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a piece of furniture"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of an office desk on a white background"], "question": "which entity is a desk?", "label": 1}, {"captions": [" a small white box with a green light.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, light", "beige, white, round"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a small white box", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, and material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white 3d dragon-bat hybrid with wings."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8cb88b6f02c549ee812e092a2e948e1c"], "properties": ["color, light, jewels", "wing, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a bird in flight"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white 3d model of a bat flying in the air"], "question": "which entity has a wing", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["furniture, staircase, torn-apart", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a group of people standing together in a line."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "96c9da7f3c2d4f4b90485f899ec5d605"], "properties": ["A, a, a", "group, people, line"], "captions_pred_pc": ["a black and white illustration of a bench", "a group of people walking in a line on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a group of people standing next to each other"], "question": "which entity has more people", "label": 1}, {"captions": [" a small house with a red roof.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["085db9059b744673b5623b5338e02196", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, red, house", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, white, containers", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["box, cylinder, bottle", "box, handle, gun"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d rendering of a metal box with a handle"], "question": "which box has a handle", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, white, yellow, roof, metal", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, island, water", "house, rock, bird"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d rendering of a house on a rock"], "question": "which image shows a bird on a rock?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, truss, suspended ceiling", "structure, material, pole"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "c3a82df41875402285608ef13a55df57"], "properties": ["bird, resembles, crow, pigeon", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a bird in flight", "a white plastic object on a gray background"], "question": "which object is not a bird?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "f1b557775310478893242180defa4d80"], "properties": ["- material is white- color is white- texture is textured", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, black, shade, black", "color, black, blue"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black cat?", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", "star wars stormtrooper "], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["face, mask, tail", "a, color, white"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "a17477b445b3443189dad22f768b888b"], "properties": ["water, river, island", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", " of two rocks with ice elements."], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["cloak, sword, spear", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a house with a roof and beams."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, table, blocks", "roof, beams, house"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a black and yellow train car with a door, featuring a bench and gold accents.", " a house with a roof and beams."], "sample_ids": ["8f005008294b4b5aa0f9e6e97efc8b26", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, bench, door", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a bathroom faucet and shower head", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a toilet stall with two doors and a sink in the center of the stall", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a clay pot with holes in it."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, structure, greenhouse", "hole, material, clay"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " featuring a chair, table, and refrigerator."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["hat, food, bowl", "chair, table, refrigerator"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "887e410d07854396b563325ae1929583"], "properties": ["color, orange, white", "hat, mouse, bear"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which object is a teddy bear?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, table, ceiling", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a table with stairs"], "question": "which table has a light fixture", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["house, roof, wooden", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["for a black and white image of an object on a white background", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a building with a roof"], "question": "which building has a roof made of glass?", "label": 1}, {"captions": ["a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["097c2f404b6c45c98da55ed95cc24f72", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["spheres, lamp, city", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white photograph of a turtle in the shape of a molecule", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a futuristic spaceship", "a 3d image of a white tray with an intricate design"], "question": "which object has a tray?", "label": 0}, {"captions": ["a 3d white cube with windows resembling a building.", " a white and blue building with a black roof."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "c893118316ee43e18322e5964b2806c5"], "properties": ["- material is white- color is white- texture is textured", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building is white", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["b5afccae993346079483507296fbb029", "225e4094141d416faba7c5598dc55ff8"], "properties": ["shape is square, material is metal, color is rusty", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " of two rocks with ice elements."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["metal, rusted, paper", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a chair with a yellow seat.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["a4de5f2055154465968f33d6289c64e6", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, yellow, seat", "beige, white, round"], "captions_pred_pc": ["above a black and white drawing of a square with small dots", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a chair on a white background royalty free 3d model no.", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["shape is cube, color is black, white", "flower, color, pink"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity is a tree?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["white, windows, lid", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of dots on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["color, roof, green, frame, red", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "a17477b445b3443189dad22f768b888b"], "properties": ["earbud, earpiece, earpiece", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white image of a square with dots"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a, island, resembles, hawaii", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["a, material, steel", "house, building, people"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a small town in the middle of a field"], "question": "which entity is a town?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small building with windows and a roof."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, bowl, cup", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "e34088fc7b5344c4ab29fef067750225"], "properties": ["building, tree, plane", "sphere, pedestal, statue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, black, white", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a wooden staircase."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "98fa820a050e47659135907c6f7b198c"], "properties": ["resembles, toy, bookshelf", "material is wood, staircase, wood"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a white wooden staircase"], "question": "which is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["room, bed, desk", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a blue roof.", " a white and blue building with a black roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, blue", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, yellow, black", "wing, knife, boat"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, table, ceiling", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", "a white of a woman with her arms outstretched."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, texture", "image, color, white"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a white building with a red roof."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, number", "color, white, roof, red"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, truss, lamp", "structure, columns, roof"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small white house with a roof."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, front, road", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "c1536f68727947ff9e7810799fac583a"], "properties": ["color, shape, texture", "level, stairs, columns"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of an apartment building"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["hat, candy, strawberry", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["image, building, stairs", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a house with a roof structure and toothbrushes."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, shape, material", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d rendering of a white box with a lot of blades"], "question": "which entity is a house?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["castle, island, house", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a small house on an island", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a wooden cube.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["shape is cube, material is wood, color is brown", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a small wooden house with a roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["yellow, table, roof", "roof, house, wooden"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a 3d white cube with windows resembling a building."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, shape, size", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof, color, blue", "table, staircase, light"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a tree stump with roots.", "a white glass beer mug."], "sample_ids": ["fa6e88ba438f4597a7230789124c8147", "1d686cbd3e9a4c629a43088658989286"], "properties": ["root, tree, stump", "color, white, glass"], "captions_pred_pc": ["above a black and white illustration of a galaxy", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a tree stump in the middle of a field", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["s, plane, house", "house, staircase, table"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a house with a green, wooden-structured roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, texture", "roof, color, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", "a white of a man with arms outstretched."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["shape, color, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a pair of socks", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " of a white chest of drawers with legs."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["rocky, rug, puddle", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "97f487941d26472294e005fa97c403be"], "properties": ["screen, keyboard, box", "color, white, green"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of an office building"], "question": "which entity has a white box?", "label": 0}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a multicolored metal building structure with a roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, material, structure", "color, roof, structure"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a barn structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small white house with a roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, red, blue, green", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "be1376023c274bdda995d54f3694157f"], "properties": ["computer desk, laptop, monitor", "roof, beams, chimney"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green skull and sphere.", " of two rocks with ice elements."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, skull, sphere", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white rocket ship.", "a pixelated-textured purple sphere ."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, size", "texture, color, shape"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d model of a gray sphere on a white background"], "question": "which object is a sphere?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["table, bench, deer", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, pattern", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "b896a0898efe4059a776193c02132129"], "properties": ["top, color, wood", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, red, black", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["- color is white- shape is cubes- number is 1", "hat, skull, bread"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a large metal building with a roof and truss structure."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, red, green, yellow", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, stairs, house", "house, roof, green"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", " of two rocks with ice elements."], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, color", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a piece of fabric", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "97e000ff41094665afd94ea565da8b13"], "properties": ["blue tarp, flower, small island", "roof, material, wood"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a small purple plastic chair with holes."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, material, steel", "color, plastic, purple"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a large metal structure", "3d model of a chair royalty free 3d model preview no 3"], "question": "the material of the chair is plastic", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a white glass beer mug."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, green, orange, star", "color, white, glass"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["balcony, stairs, house", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["s, batman, batman character", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a white kite flying in the air against a gray background"], "question": "which entity has s of a boat", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", "a white of a woman with her arms outstretched."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["room, furniture, window", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["screen, keyboard, box", "roof, structure, wall"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["light, toilet, faucet", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, shape, height", "axe, handle, wood"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "for a black and white image of a bird's wing"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color is white, material is plastic, shape is box", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small purple plastic chair with four legs."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["a, rock, paper", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["for a flock of birds in the sky", "of a black and white image of a baby carrier"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "bf18bfd89efd43389781050230467d58"], "properties": ["size, material, color", "Lights, number, five"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["base material, wood, shade color, white, beige", "shade, white, bead"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a wall lamp with a white shade and a butterfly design"], "question": "which lamp has a white shade", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, table, ceiling", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["light source, fixture, color", "flower, color, pink"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a light source that is pink?", "label": 1}, {"captions": ["white 3d canoe model", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1d0342b454884db4bb88c939a69f6362", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white photo of a surfboard", "a black and white image of a square with dots"], "captions_pred_image": ["a white canoe on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, island, water", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a white of a spaceship and building."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, roof, tray", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, background", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a green mountain with trees and grass."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, structure, wall", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a small red and white spaceship.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a house with a wooden-framed roof structure."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["design, poles, table", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "40921ffd69db479294554d261daf3035"], "properties": ["a, color, case", "floor, railing, staircase"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a computer screen"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a spiral staircase"], "question": "which object has a wooden floor", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a stone wall with a window and a clock."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["base material is wood, color is red, message is welcome to northwich", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a brick wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " of a hammer with a long metal handle."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, white, base, slanted", "handle, metal, long"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a chair", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, bag, blanket", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["floor plan, heating system, ceiling light fixture", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["ring, material, gold", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small wooden house."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, material, structure", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a small cottage"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a person breaking through a brick wall."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["- color is red, blue, pink", "image, brick, wall"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a white castle composed of small cubes."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["size, material, color", "composed of, white, cubes"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, pattern, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a large white vase on a grey background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, shape, material", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "bded33af34104b9686b845dfd18309a9"], "properties": ["background, color, white", "table, staircase, light"], "captions_pred_pc": ["a black line on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " of a clear glass display case with a square light fixture."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "980ded888795417f94b46750105e1597"], "properties": ["color, pink, green, cord, white", "light, fixture, square"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a clear plastic box"], "question": "which light fixture is square", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, model, white house", "table, staircase, light"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, screen, drawer", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a gray, metal pillar/cylinder."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color, pier, stairway", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["above a black and white illustration of an open door", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a candlestick"], "question": "which entity is not a cylinder?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, hill, forest", "house, roof, wooden"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a green circuit board."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, light, jewels", "color, green, circuit board"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of the item in the image"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "c3a82df41875402285608ef13a55df57"], "properties": ["location, field, gravestone", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["house, tree, pool", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, structure, house", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house with a blue roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, roof, toothbrushes", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Drawer, Pattern, White", "a, material, clay"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "bf18bfd89efd43389781050230467d58"], "properties": ["mug is purple, cup is black, candle is black", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, yellow, black", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["base material, wood, shade color, white, beige", "lion, statue, fountain"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d image of a lion statue on a wall"], "question": "which object has a lion statue", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, trusses, beams", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small white building with stairs and a white table."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "e30374c614f54fdb90f35b96b071349d"], "properties": ["table, stairs, ladder", "building, stairs, table"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a building with a staircase"], "question": "which entity has a table", "label": 1}, {"captions": [" of a set of three white shelves or ceiling panels with lines.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ff6f8c2347ab4c17a2b3e319b205f191", "b896a0898efe4059a776193c02132129"], "properties": ["set, white, lines", "- material is stone, metal, concrete"], "captions_pred_pc": ["a set of black and white dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d illustration of a set of three white trays on a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["floor, wall, roof", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a white bunk bed with a ladder.", " a house with a wooden-framed roof structure."], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["bed, ladder, color, white", "roof, material, wood"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "a black and white drawing of a staircase"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["boat, table, chairs, umbrella, solar panel", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["yellow, table, roof", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a harp in a white room"], "question": "which entity has a lamp?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, bowl, green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["handle, knife, shotgun", "house, pool, balcony"], "captions_pred_pc": ["of a popsicle on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["wall, stairs, castle", "island, mountain, grass"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, size", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, truss, lamp", "island, mountain, grass"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a green pickle"], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "4c7904175d6d4676b73866c25110e8d3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color is green, shape is cylinder, material is plastic"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a peanut on a white background royalty free 3d model preview no.3"], "question": "which object is greener", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["holder, spring, box", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, yard, surrounding buildings", "building, plane, room"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["wood, board, shelf", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has more speakers", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, truss, suspended ceiling", "roof, trusses, ladder"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "a17477b445b3443189dad22f768b888b"], "properties": ["house, tree, pool", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is plastic- color is white- shape is cylinder", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a wooden roof structure with a pink roof."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, base, warning", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a pink roof", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "37bdbc633c9545878a98ff47c3029e32"], "properties": ["a, island, water", "a, island, water"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white photo of a boat in the water"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a building with trees surrounding it"], "question": "which entity has a small island with trees", "label": 0}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["chocolate, mushroom, cake", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a house with a wooden-framed roof structure."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["white, windows, lid", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a white and blue building with a black roof."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, roof, green, frame, red", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small white house with windows and a black lid."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "4b40af369c1149949f5ccb68becd8430"], "properties": ["building, ceiling, kitchen", "white, windows, lid"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a white house with three windows"], "question": "which house has a black lid", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a yellow and black hazard sign that says \"authorized personnel only.\""], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "74e8408828da4ce9b0faead75c01e0dd"], "properties": ["color, skyline, buildings", "color, shape, text"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a screw"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3"], "question": "which entity is a sign?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a house with wooden framing and trusses."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["size, color, shape", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large rock with a hole in it.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["size, shape, material", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white image of a square with dots on it"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["screen, monitor, stand", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "12093c89a60941e7884b252bdc05104c"], "properties": ["floor plan, heating system, ceiling light fixture", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a wooden staircase."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "98fa820a050e47659135907c6f7b198c"], "properties": ["railing, glass, table", "material is wood, staircase, wood"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a black and white of a knife/sword with a handle."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["resembles, toy, bookshelf", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["- material is wood - color is white - height is 1.8 m", "Brown, metal, lock"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a small orange piano with legs."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, material, pattern", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, color, purple", "building, plane, room"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small wooden house with a green roof."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, hill, forest", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a small wooden house with a green roof."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, mouth, eyes", "roof, color, green"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "a, landscape, sand"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, umbrella, coat", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white image of a tree made of dots", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, white, plastic", "roof, trusses, ladder"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["building, roof, balcony", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, horns, features", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["floor plan, ceiling light, color", "island, mountain, grass"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a white 3d model of a house", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["Drawer, Pattern, White", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a white 3d model of a city skyline"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor, table, light", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["mossy, rock, grass", "a, material, clay"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white purse with a strap.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["dae133bae5cb4496b956f03e1fb7e402", "f1b557775310478893242180defa4d80"], "properties": ["color, white, strap", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a watch with dots on it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white purse with a strap", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a large steel building with many columns and a pool."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a large steel building with a pool."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof trusses, beams, suspended ceiling", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, door, cross", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, black, shade, black", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a wooden shed with a gray roof."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["size, color, shape", "roof, color, gray"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "d81d13362ae04371bb2cba46e4939665"], "properties": ["graffiti, bench, wall", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, grass, moss", "color, head, white and brown"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a white castle composed of small cubes."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["boat, table, chairs, umbrella, solar panel", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, red, green, blue", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white image of a glove", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a white and gray glove", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small wooden house with a green roof."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["food, leaves, shredded paper, rocks", "roof, color, green"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white of a house with a hole in the ceiling."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["- material is wood, metal, metal", "image, house, ceiling"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white drawing of a house"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a house with a balcony"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, ball, mushroom", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, pattern, wall", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, bird, lake", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a small building with a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, building, small", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of the roof of a building"], "question": "which building has a roof", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["blue, curved, resembles", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, pattern", "building, plane, room"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a box with a lot of items inside"], "question": "which entity has a building?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["house, fence, dog", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a piece of paper"], "question": "which entity is a state?", "label": 1}, {"captions": ["white korean word on a gray background.", " a wooden roof structure with a pink roof."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, background, font", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "above a black and white image of a metal grate"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of the roof of a building"], "question": "which entity has a pink roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, island, resembles, hawaii", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["A, a, a", "image, city, spoon"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, wheels", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, background, gray", "roof, brown, flat"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a small white building with stairs and shelves."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "9e1f64d4fd514059be934077717536dc"], "properties": ["flower, rock, tree stump", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white of a house with a hole in the ceiling."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, grass, moss", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["size, material, lighthouse", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " of a wooden windmill with a red roof."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["a, plane, small plane", "roof, color, red"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["hat, cup, bowl", "bedroom, bathroom, bed"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a room with dots"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["resembles, toy, bookshelf", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a train, a ship, a boat", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "6d773d2b0ed9437ea2b9b352bd8a5c25"], "properties": ["color, material, structure", "building, floor, columns"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in one line a black and white drawing of a dotted pattern on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d rendering of a large white table with multiple shelves"], "question": "which building has more floors", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, handle, zipper", "floor, staircase, balcony"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white drawing of a wallet"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a white round table with a red accent.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["fea62a865b4e40899d95785533818329", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, red", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " of two rocks with ice elements."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, material, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which object is made of ice", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, landscape, sand", "box, paper clip, lock"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a lock?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small white building with stairs and a white table."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, temperature, england", "building, stairs, table"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a wooden roof structure with a pink roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a tree with leaves and roots.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "b896a0898efe4059a776193c02132129"], "properties": ["leaf, root, trunk", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of an ancient statue"], "question": "which entity is not made of metal and concrete?", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["box, cylinder, bottle", "island, terrain, water"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, truss, suspended ceiling", "roof, color, pink, blue"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of pink and blue", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, roof, block", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a green circuit board."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, shape, text", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of the item in the image"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, grass, moss", "room, door, shelf"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["yellow, table, roof", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small wooden house."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["light switch, electrical outlet, furniture", "house, material, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["- color is red, blue, pink", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small white house with a roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image, building, painting", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " a small wooden house with a green roof."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["lizard, rock, stuffed animal", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["location, field, gravestone", "buildings, houses, grass"], "captions_pred_pc": ["a black and white illustration of a whale", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "c8936ace72954650b4e2d84246964849"], "properties": ["roof, structure, house", "roof, color, pink"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a roof"], "question": "which structure has a roof", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["case, player, football", "a, material, steel"], "captions_pred_pc": ["of a black and white image of a pair of boots", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a white origami bird with silver wings.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d9574287572c47f7a2b712cf1d919374", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, wings", "roof, color, yellow"], "captions_pred_pc": ["a 3d model of the human body", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic bird in flight on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, gray", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["room, bed, desk", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a wooden roof structure with a pink roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["frame, truss, roof", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, truss, structure", "a, material, clay"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a long metal fence", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, and size", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, tree, pool", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, text", "a, outfit, green"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a small house with a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, house, small", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with roof trusses"], "question": "which house has a roof", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, holes", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock.", " of two rocks with ice elements."], "sample_ids": ["cc4ccf85d4c1425cb5975b8b5664d38a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["paper, hole, sign", "image is a rock with ice elements"], "captions_pred_pc": ["a silhouette of a map of the state of karnataka, india on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an image of a torn piece of paper in the shape of a map", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a small white house with a staircase and a window."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "9eb88d17310d42dda9e17883e9922525"], "properties": ["shattered, resembles, broken phone", "house, staircase, window"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["texture, spikes, eyes", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " of a house with a roof."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["metal, roof, chest", "roof, house, roof"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which object has a roof", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a spider-like creature with long arms and legs."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, door, cross", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["base material is wood, color is red, message is welcome to northwich", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, material", "island, terrain, water"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of a rocky terrain", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "7407a108e0354925b83b750339bc03df"], "properties": ["building, plane, city", "platform, color, orange"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, red, blue, green", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["3d white square with a person and objects on it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["d6ee341a90164c6abc30abd9dd74f31f", "5414d75e47104589837f3df8b6de6d22"], "properties": ["3D, white, person", "beige, white, round"], "captions_pred_pc": ["of a black object on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d image of a person standing in the middle of a white floor", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["door, roof, pool", "a, material, steel"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a stone wall with a window and a clock."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color is white, yellow, plastic", "window, clock, wall"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a brick wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["pattern, color, shape", "torso, breasts, pattern"], "captions_pred_pc": ["a black circle on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small white house with a roof."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["pos machine, credit card machine, cash register", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["color, shape, and size", "cartoon, bear, diaper"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a hammer with a long metal handle."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, horns, features", "handle, metal, long"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a wooden roof structure with a pink roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["runner, bed, bench", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of the roof of a building"], "question": "which roof is pink", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["island, terrain, water", "house, rock, bird"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d rendering of a house on a rock"], "question": "which island has a bird on a rock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d silver knight's helmet."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "83c36d2cebd94939adbb0982fe547f5f"], "properties": ["color, shape, and size", "- material is metal- color is silver- texture is textured"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a heart shaped object"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a medieval knight's helmet royalty free 3d model preview no 3"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, texture", "a, color, red"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a castle with two towers"], "question": "which entity is not a toy?", "label": 0}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a wooden windmill with a red roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["apse, roof, floor plan", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a room", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "4a889132cc444d10bfcbf6c760984416"], "properties": ["a, material, steel", "a, color, white"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, door, suitcase", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", " a spider-like creature with long arms and legs."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["size, material, image", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["s, plane, house", "3D, toothpick, skateboard"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a white toothbrush on a gray background"], "question": "which entity has a toothpick in it?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "6b745457e06840119058883b35f78f58"], "properties": ["house, plane, town", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a white, open shelving unit"], "question": "which house is white", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "7d76c44cb9dd4948b8766d83994ca5f3"], "properties": ["orange, forklift, parking lot", "- material is stl, obj, fbx- size is 240px- color is red, white"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a close-up view of a black ball with a screw in the center"], "question": "which object is red and white", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a house with a wooden-framed roof structure."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["tiers, building, stairs", "roof, material, wood"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["resembles, toy, bookshelf", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, door, window", "floor, wall, roof"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a large building with a roof and windows.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, windows, building", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "68e0d097351843a3980421f2ae624c59"], "properties": ["color, shape, and size", "white, top, writing"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a table with writing on it and a mouse on top of it"], "question": "which entity has a white top", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a wooden roof structure with a pink roof."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["color, door, window", "building, fence, snowy"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["furniture, staircase, torn-apart", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has furniture", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["castle, island, house", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["door, roof, pool", "building, door, clock"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a church with a steeple"], "question": "which building has a door?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a stone wall featuring carvings and statues."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["floor, wall, roof", "carving, statue, wall"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "c8936ace72954650b4e2d84246964849"], "properties": ["picture, plaque, person", "roof, color, pink"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a grayscale of a mountain.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, grayscale, mountain", "color, shape, color"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of two rocks with ice elements."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, structure, greenhouse", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, grass, moss", "house, roof, green"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["houses, trees, road", "floor, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["ruined building, stone floor, small stone structure", "table, stairs, ladder"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["books, paper, lamp", "wood, board, shelf"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "b896a0898efe4059a776193c02132129"], "properties": ["black, white, laptop", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["shape, bathroom, refrigerator", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a purple and green sphere.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball with a face on it", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, size", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, mattress, pillows", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a building with a purple, glass roof and a suspended ceiling featuring beams.", " of two rocks with ice elements."], "sample_ids": ["a54c746bb2644e3ea4e53ee65e32df64", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, glass, purple, ceiling, beams", "image is a rock with ice elements"], "captions_pred_pc": ["the letter 't' is made up of tiny white dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a 3d white cube with windows resembling a building."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, white, red, pink", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a molecule with two pink and blue spheres."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "926fb2e23c56440a86287e98c1440336"], "properties": ["room, bed, desk", "color, shape, size"], "captions_pred_pc": ["a black and white drawing of a door", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of three spheres on a white background"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white barn with a metal roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, roof, tray", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a barn"], "question": "which roof is white", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "c4c09479570943e2845fbd4c6a450568"], "properties": ["house, door, cross", "castle, island, house"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small house on an island"], "question": "which house is on an island", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["door, lock, handle", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small, snow-covered house."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, truss, suspended ceiling", "house, snow, cover"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, temperature, england", "table, staircase, light"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape is cube, color is black, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["- material is white- color is white- texture is textured", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a large building with a roof and windows."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, material, frame", "roof, windows, building"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small white house with a roof."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, fence, dog", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a building with a white roof"], "question": "which house has a white roof?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "c8936ace72954650b4e2d84246964849"], "properties": ["castle, island, house", "roof, color, pink"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a house with a roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, room, ceiling", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["red, mouse, handwriting", "roof, structure, greenhouse"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["water, river, island", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["yellow, shape, wingspan", "door, roof, pool"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["ceiling, light, desks", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "bf18bfd89efd43389781050230467d58"], "properties": ["floor plan, heating system, ceiling light fixture", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a wooden roof structure with a pink roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, room, ceiling", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of the roof of a building"], "question": "which roof is pink", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a wooden billiard table with legs."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["tiers, building, stairs", "legs, material, wood"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["potted plant, table, shelf", "tv, chair, laptop"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house with a wooden-framed roof structure."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a train, a ship, a boat", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", " of two rocks with ice elements."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, color, red", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a castle with two towers", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["97f487941d26472294e005fa97c403be", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, green", "house, pool, balcony"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["bird, nest, wood", "door, lock, handle"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white image of a door with a crack in it"], "question": "which object has a lock", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, and material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, color, purple", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof structure is more complex", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a white motorcycle with wings."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, material", "color, white, wings"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a pink, ear-shaped object."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["- material is plastic- color is white- shape is cylinder", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white object on a gray background"], "question": "which object is pink", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a small, snow-covered house."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["cover, black, plastic", "house, snow, cover"], "captions_pred_pc": ["of a black and white image of a skateboard", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a victor calculator on a white background", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["house, lake, pool", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a large building", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a small white building with stairs and a lid."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, metal, white", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["b5afccae993346079483507296fbb029", "b5afccae993346079483507296fbb029"], "properties": ["shape is square, material is metal, color is rusty", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a concrete column"], "question": "which entity is a rusty", "label": 0}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a large white and metal building with a metal roof structure."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["lighthouse, building, tower", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a purple and green sphere.", " a white castle composed of small cubes."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small wooden house with a green roof."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white house with a roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, roof, wooden", "roof, color, white"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["color, shape, and size", "spheres, lamp, city"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a futuristic spaceship"], "question": "which entity has more spheres", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "ee440fcbc493488e879539d37a8d820e"], "properties": ["load, crates, snow", "island, fish, ice"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, metal, white", "roof, brown, flat"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d rendering of a table and stool"], "question": "which roof is brown", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof truss, insulation, suspended ceiling", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["cup, bottle, chessboard", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a house with a roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["4ccf1ee1316e4a2b8f52e77e126a68c0", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, house, material", "rusty, warning, metal"], "captions_pred_pc": ["a close-up view of the crystal chandelier on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "b896a0898efe4059a776193c02132129"], "properties": ["red, mouse, handwriting", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a house with a green, wooden-structured roof."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, black, white", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" of a human bone", "white 3d printed skull, shell, snowy mountain, spiked head sculpture, and blob."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "2a99681d7ec0460790da639cecec9a24"], "properties": ["a, b, c", "3D Printed, white, skull"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a 3d model of a molecule on a white background a 3d model of a molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d sculpture of a seashell on a gray background"], "question": "which entity is not a skull?", "label": 0}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["house, table, chair", "color, shape, color"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "c3a82df41875402285608ef13a55df57"], "properties": ["ring, material, gold", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a black and white striped fly in the air."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["low poly, plant, white", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["ruined building, stone floor, small stone structure", "a, character, mario"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": [" a pink and white gun.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "a17477b445b3443189dad22f768b888b"], "properties": ["color, pink, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white image of a square with dots"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, pier, railings", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["a, plane, small plane", "building, plane, city"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over a city?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["shape is hot dog, design is dragon, color is black", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a stone wall featuring a statue and a window."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "09ab58e01e0d4393bc1e82f157e641be"], "properties": ["a, hole, shelf", "a, window, statue"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white photo of a sculpture of jesus on the cross"], "question": "which entity has a window", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, screen, drawer", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, windows, building", "roof, material, wood"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of an egyptian sarcophagus."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "88eba412c78a4ced89eb857327653f6c"], "properties": ["house, lake, pool", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["color, tan, brown, orange", "throne, chair, building"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": ["a featuring a white table with a bird, a city, and a robot, accompanied by a white lamp.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["20e3fcaa2b56414c9c921a2f33d13267", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["table, lamp, color", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a circle with many small dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed table with a cityscape on top", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["s, cat, fish, person, pig, bird", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a spider-like creature with long arms and legs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["199bcb789e0c439bb2eeb32f2425cc36", "c3a82df41875402285608ef13a55df57"], "properties": ["arachnid, leg, arm", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a spider on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of an alien creature", "a white plastic object on a gray background"], "question": "which object is not an arachnid?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a large metal building with a roof and truss structure."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "b85a99699ccd4bcba213322113bb253d"], "properties": ["face, handle, spout", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a small, circular object", "of a metal grate on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["texture, spikes, eyes", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a wooden staircase with a railing and table."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "956247bea850458199c651037d4b1d7f"], "properties": ["image is rock formation with a white cliff and a rock", "railing, table, staircase"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a table with a staircase"], "question": "which image shows a staircase?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a white glass beer mug."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "1d686cbd3e9a4c629a43088658989286"], "properties": ["frame, roof, trusses", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a white glass beer mug."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, red, blue, structure", "color, white, glass"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "6b745457e06840119058883b35f78f58"], "properties": ["roof, color, red", "roof, color, blue"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a small wooden house with a green roof."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["hat, shirt, bearded", "roof, color, green"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a wooden table with a plant on it."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "table, plant, wood"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a side table with a potted plant sitting on top of it"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a clay pot with holes in it."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["paper, hole, mouse", "hole, material, clay"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a mouse on top of a piece of paper", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, size", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["hat, shirt, bearded", "hat, shirt, bearded"], "captions_pred_pc": ["of a black and white bracelet on a white background", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a man with a beard"], "question": "which entity has a bearded man wearing a green shirt and a hat?", "label": 0}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["- material is wood, metal, metal", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a lamp, a syringe, a light pole", "plane, ship, bird"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked planes", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "205251e4277e41d1aae6b2358267ad56"], "properties": ["black, white, coffee table", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, material is plastic, shape is tube", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a broom on a stand", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white object on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small rocky island with a brown and white rug featuring a puddle on it."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "4806b382466247ad9265fc8240a22d3d"], "properties": ["s, stick, leaf", "rocky, rug, puddle"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1"], "question": "which entity is a rocky island?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["bedroom, bathroom, bed", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["location, field, gravestone", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d image of a small island in the middle of a lake"], "question": "which location has more water", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, white, holes", "metal, legs, wheels"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of an old metal locker"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a095621f2d5845af83db3f59f5685982"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["light source, fixture, color", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white glass beer mug."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "1d686cbd3e9a4c629a43088658989286"], "properties": ["A, a, a", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small wooden house with a green roof."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["frame, beams, trusses", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["yellow metal barricade ", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is yellow, material is metal, height is 0.5 m", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a white barrier on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["runner, bed, bench", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a circular fence with black and white stripes"], "question": "which entity is a building?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small house with stairs and a roof."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, material", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a house?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["resembles, toy, castle", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["apse, roof, floor plan", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["shape is cylinder, color is white, material is plastic", "a, material, clay"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, grass, moss", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d sculpture of an apple on a white background"], "question": "which object is whiter", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["s, plane, house", "throne, stairs, tree"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne with stairs and a tree?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a wooden billiard table with legs."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- color is red, blue, pink", "legs, material, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["houses, trees, road", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["image, color, black and white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a knife", "a 3d model of a tall, slender object in the air"], "question": "which object is silver in color", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a palm tree with leaves."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["food, leaves, shredded paper, rocks", "leaf, tree, leaf"], "captions_pred_pc": ["a black and white image of a bird in flight", "for a black and white image of an animal with wings"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a palm tree"], "question": "which entity has leaves", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "a17477b445b3443189dad22f768b888b"], "properties": ["island, mountain, grass", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, horns, eyes", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, dress, purse", "a, material, clay"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a spider on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a wooden-cased radio."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["- material is wood, metal, metal", "case, material, wood"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "bea8441c08d94366b96b53775391d8e6"], "properties": ["background, color, white", "color, white, logo"], "captions_pred_pc": ["a black line on a white background", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity has a logo", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a wooden table with two barrels."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "8bba7567253040d88973320107e48055"], "properties": ["black, white, laptop", "table, barrels, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "in 15 words or less a black circle on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a barrel table royalty free 3d model preview no.2"], "question": "which table is made of wood", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["40921ffd69db479294554d261daf3035", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["floor, railing, staircase", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of a computer screen", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a house with a roof and beams."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, rock, paper", "roof, beams, house"], "captions_pred_pc": ["for a flock of birds in the sky", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a building with a roof"], "question": "which object has a roof?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small house with a pond and situated on a rock."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "92859eb82a344134806b37cc209927c6"], "properties": ["color, temperature, england", "house, rock, pond"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, background, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "7f8942ef51dd4246993a587a12df168c"], "properties": ["image is royalty-free, beaver, skateboard", "house, yard, surrounding buildings"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "a black and white image of a truck on a white background"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a house in the middle of a field"], "question": "which image shows a house with a yard", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "star wars stormtrooper "], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof truss, insulation, suspended ceiling", "a, color, white"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a black and white of a knife/sword with a handle."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- color is white- shape is cubes- number is 1", "image, color, black and white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["texture, spikes, eyes", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d sculpture of an apple on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a black table lamp with a black shade and a hat on top."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "31c00c8337de4854a20299d719136cce"], "properties": ["color, black, shade, black", "color, black, shade, black"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a table lamp royalty free 3d model preview no.2"], "question": "which lamp has a black shade?", "label": 0}, {"captions": [" of a pokemon card in a clear display case.", "a white glass beer mug."], "sample_ids": ["c6f276182826470c8d2dae6a205eee58", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, card, case", "color, white, glass"], "captions_pred_pc": ["a black and white image of a long line of text on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a pokemon card is displayed on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["balcony, stairs, house", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a throne with a tree on it"], "question": "which entity has stairs", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a white shelf with holes and brackets."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, black, white, handle, armrest", "color, white, holes"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a white bench with a shelf on top"], "question": "which object has holes", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["blue tarp, flower, small island", "building, plane, room"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "c3a82df41875402285608ef13a55df57"], "properties": ["roof trusses, beams, suspended ceiling", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, stairs, table", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d model of a modern house"], "question": "which building has a pool", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", "white airplane in flight."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "7dccc62d436c40efa2ea23b9c8179451"], "properties": ["s, batman, batman character", "airplane, white, in flight"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "above a 3d model of an airplane on a white background"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a white airplane toy on a gray background"], "question": "which is not a flying object", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "36d90269173b4d1a84dbd61664593f66"], "properties": ["a, eagle, wood", "a, eagle, wood"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white illustration of a map with dots all over it"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a person sitting on the edge of a cliff"], "question": "which entity has a rock formation with various statues", "label": 0}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "a, material, clay"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, green, squirt gun", "roof, color, yellow"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a black floor lamp with a wooden round base, black shade, and attached cord.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["03db87a02e3847f8a712a362de9a314d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["Base material is Wooden, Shade color is Black, Cord color is Black", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a bomb on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black floor lamp with a round shade on top", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, table, ceiling", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a harp in a white room"], "question": "which entity has a white bowl?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, red, pink", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a character wearing glasses and a hat."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, roof, tray", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, shape, and size", "room, furniture, window"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, lake, pool", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a house with a green, wooden-structured roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, staircase, window", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a purple chair with holes in it.", "a white glass beer mug."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, purple, holes", "color, white, glass"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color is white, material is plastic, shape is bottle", "throne, stairs, tree"], "captions_pred_pc": ["of a black circular object on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", "a white of a man with arms outstretched."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, handle, gray", "image, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "09f2cf267e954c958828325067bcc36a"], "properties": ["floor, staircase, railings", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, island, water", "building, plane, room"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["metal, legs, wheels", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is white - shape is box - material is plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, material, shape", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", "star wars stormtrooper "], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof, ceiling, hole", "a, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a star wars stormtrooper"], "question": "which entity has a white color", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, pattern, material", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["size, material, wheels", "paint, rust, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a concrete wall"], "question": "which object is made of rust", "label": 1}, {"captions": ["red fire hydrant ", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fa1e5e8c79154d5ca681d191d3261875", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, red, hydrant", "throne, stairs, tree"], "captions_pred_pc": ["a fire hydrant made of bubbles 3d illustration of a fire hydrant made of bubbles on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a grey fire hydrant with two chains hanging from it", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["handle, knife, shotgun", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a popsicle on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white of a man with arms outstretched."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["building, tree, plane", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a clay pot with holes in it."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["shape is sphere, color is white, material is plastic", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hat, bag, blanket", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small house with a red roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "085db9059b744673b5623b5338e02196"], "properties": ["roof, structure, house", "roof, red, house"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a large metal building with a roof and truss structure."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, size", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small house with a tree and a rock."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["cover, torn, open", "house, tree, rock"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a small house with a tree in front of it"], "question": "which object has a tree and a rock?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is cylindrical, color is silver, material is metal", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, shape, size", "costume, color, black"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "a177693cc8c7428292680816001b48c6"], "properties": ["black, white, laptop", "black, white, laptop"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a room with dots on the floor"], "captions_pred_image": ["a dishwasher with a dish inside it", "a dishwasher with a dish inside it"], "question": "which entity is a black and white coffee table with a laptop", "label": 0}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "745fed115c5343dab9d7f0c389c98902"], "properties": ["house, yard, surrounding buildings", "costume, color, black"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "e694d53545d449319a64cceb0280c3c6"], "properties": ["desk, chair, table", "3d, slide, swing"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a white human skull with broken bone elements."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, light, jewels", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "09f2cf267e954c958828325067bcc36a"], "properties": ["liquid, ice, lid", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a broken human skull and stone bowl."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["- color is white- shape is cube- material is plastic", "skull, bowl, human"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a 3d model of a white cube", "a ceramic bowl with a large crack in the middle"], "question": "which object is made of stone", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a house with wooden framing and trusses."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["cover, black, plastic", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white drawing of a window"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- color is white- shape is cubes- number is 1", "island, mountain, grass"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white rifle, a clear plastic knife, and a white saxophone.", " of a character wearing glasses and a hat."], "sample_ids": ["fdea34e69537480e969cd72bdb6b6781", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, material, type", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a small object on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a white rifle on a gray background", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of two rocks with ice elements."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, sphere, molecule", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["variation, bread, pot", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["balcony, stairs, house", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "c3a82df41875402285608ef13a55df57"], "properties": ["light, floor, ceiling", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white tile floor", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color is white, yellow, plastic", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a black and white image of a skateboard"], "captions_pred_image": ["a white plastic container with a label on it", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["stair, table, chair", "building, room, sky"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "443554d4d7044c66aa8cbff63c737589"], "properties": ["ceiling, beams, light", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pink and blue", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a white of a man with arms outstretched."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, number", "image, color, white"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "09f2cf267e954c958828325067bcc36a"], "properties": ["roof, truss, lamp", "island, terrain, rocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a clay pot with holes in it."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a, hole, shelf", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white box with a green light.", "a white of a woman with her arms outstretched."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, light", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["shape, bathroom, refrigerator", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a purple and green sphere.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, blue", "roof, beams, chimney"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["roof truss, insulation, suspended ceiling", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["white pyramid ", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["75accf3f561b4cf6a7b07c6ad0c918ec", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is white, shape is pyramid, material is plastic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of a square with many small dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a pyramid on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "18e392c5360146eda498c5edab25b15c"], "properties": ["house, color, white", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a building under construction"], "question": "which structure has a frame?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a spiral staircase with a railing in a small building."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["apse, roof, floor plan", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a staircase in a white room"], "question": "which building has a staircase with a railing?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["44723e86bdd14071b0544745879604de", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["resembles, bar, soap", "a, material, steel"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["- material is stone - shape is bat", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a spike on a white background"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, base, warning", "houses, trees, road"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["screen, monitor, stand", "box, paper clip, lock"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["a lamp, a syringe, a light pole", "flower, color, pink"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white building with stairs and a white table."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, room, ceiling", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with a staircase"], "question": "which building has a table?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a small white building with stairs and a white table."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, wheel, helmet", "building, stairs, table"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, text", "a, material, clay"], "captions_pred_pc": ["a black and white image of a screw", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, frame, shape", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", "a white of a man with arms outstretched."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["picture, plaque, person", "image, color, white"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a potted plant on a wooden table or shelf."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["painting, door, wall", "potted plant, table, shelf"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a small building with a staircase in a room."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["door, stairs, color", "room, staircase, building"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" a small house with a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, house, small", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a roof structure"], "question": "which house has a roof", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, red, green, blue", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black shark", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["black, mouth, teeth", "black, roof, green"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a small black building"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a building with blue lines and structure.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "990f06da2ba4488da8371f68da6b4523"], "properties": ["color, shape, structure", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a small white building with stairs and a white table."], "sample_ids": ["97f487941d26472294e005fa97c403be", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, white, green", "building, stairs, table"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a building with a staircase"], "question": "which building has a white table?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a large building with a roof and windows."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, shape, and size", "roof, windows, building"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a white fox."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "color, white, fox"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a white fox on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a blue roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, blue", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " of a white chest of drawers with legs."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["top, color, wood", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof truss, insulation, suspended ceiling", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a pile of mint green soap cubes."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "edd35e0657b640b1b8fcf86942e1a9e5"], "properties": ["color, orange, leather", "color, mint, soap"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background"], "question": "which object is made of soap", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a spider-like creature with long arms and legs."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["load, crates, snow", "arachnid, leg, arm"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a camera with a blue screen and lens.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "d49d8ed244094349a99e4faca05e0690"], "properties": ["screen, lens, color", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, pattern", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, height", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["roof trusses, beams, suspended ceiling", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a large house/building structure with a roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["building, tree, plane", "roof, structure, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a large white structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with wooden framing and trusses.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["frame, trusses, wood", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a window", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a house with a wooden-framed roof structure."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, tree, rock", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["floor, wall, roof", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, staircase, table", "house, table, chair"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a white of a woman with her arms outstretched."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, black, shade, black", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, stairs, shelves", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["bowl, pottery, headpiece", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["white bowl and sphere", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["84eab42d427545fcab4cffff9746eddc", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white circle made up of tiny dots on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white bowl on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "40921ffd69db479294554d261daf3035"], "properties": ["houses, trees, road", "floor, railing, staircase"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a computer screen"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a spiral staircase"], "question": "which entity has a wooden floor", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "97e000ff41094665afd94ea565da8b13"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["location, highway, train station", "building, material, stone"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, front, road", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a spiral staircase with a railing in a small building."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a, bird, lake", "staircase, railing, building"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a staircase in a white room"], "question": "which image shows a staircase with a railing?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, screen, drawer", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, roof, tray", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a table and stool"], "question": "which roof is brown", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a white of a woman with her arms outstretched."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["floor, table, wall", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a city, train, dragon"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a line drawing of an airplane flying in the sky"], "question": "which entity has a city?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["a knife, blade, handle", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["house, lake, pool", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof and floor plan", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a wooden table with metal legs and frame."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["Drawer, Pattern, White", "metal, legs, frame"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d rendering of a white wooden table"], "question": "which table has metal legs and frame", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["b5afccae993346079483507296fbb029", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["shape is square, material is metal, color is rusty", "wood, board, shelf"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, sphere, molecule", "color, white, plastic"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, green, yellow", "a, material, clay"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, skyline, buildings", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, ceiling, hole", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, white, logo", "box, handle, gun"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["Parts, Luggage, Truck", "house, table, chair"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d rendering of a small white table with a chair"], "question": "which object is not a part of the other?", "label": 0}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor, staircase, railings", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a light switch", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, shirt, bearded", "hat, skull, bread"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a man with a beard", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a white square with the words \"what tv\" on it."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "color, white, words"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a long line of numbers"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a large steel building with many columns and a pool."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, beams, chimney", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a white teapot with pink flowers and a handle."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "f6c5e8931d164979a71914127c7e5438"], "properties": ["backrest, curved, yes", "color, white, handle"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white dots on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a white tea kettle with a black handle and floral design"], "question": "which object has a handle", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, material, texture", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of a skull", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a woman's chest"], "question": "which torso is a female?", "label": 1}, {"captions": [" a black triangular metal object with a clock and cross on it, and a small machine on top.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b198a81dc41c4fde8be3ca51c3b0e676", "b896a0898efe4059a776193c02132129"], "properties": ["metal, cross, clock", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of an object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a small purple plastic chair with holes."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, poles", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a building with multiple levels", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small building with windows and a roof.", " a green mountain with trees and grass."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, windows, building", "mountain, grass, tree"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a spiral staircase with a railing in a small building."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["hat, cup, bowl", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white photograph of a light switch"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "09f2cf267e954c958828325067bcc36a"], "properties": ["resembles, toy, bookshelf", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has diverse terrain", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color is white, material is plastic, shape is tube", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white object on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a wooden windmill with a red roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["bed, desk, window", "roof, color, red"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" a small wooden house with a green roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, green", "roof, color, yellow"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["size, material, color", "cover, black, plastic"], "captions_pred_pc": ["of a black plastic ring on a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small white archway structure resembling a building."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "5ad02458cf394134a902e25001d2ffef"], "properties": ["building, roof, balcony", "structure, building, archway"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d rendering of a white object on a white surface"], "question": "which structure is not a building?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, metal, white", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a barn", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, bird, green, yellow, blue", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a bird in flight", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": ["\"royalty-free of a tulip and trident\"", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["818b259e489e4c8bb4f90012ba5e5e35", "bf18bfd89efd43389781050230467d58"], "properties": ["image, royalty, free", "Lights, number, five"], "captions_pred_pc": ["for a black and white snowflake on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of the shivling 3d model of", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small wooden sailboat.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["size, material, sails", "structure, roof, pitch"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is cube, color is black, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white 3d model of a building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["roof truss, insulation, suspended ceiling", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white photograph of a small town"], "question": "which entity is a village?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a tree with green leaves."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "1a902b67735845198efb1b84f434b580"], "properties": ["resembles, octopus, squid, spider, robot", "leaf, color, green"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, material, pattern", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["light, floor, ceiling", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["water, river, island", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a low-poly of a white, shattered sphere."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["building, balcony, street", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "09f2cf267e954c958828325067bcc36a"], "properties": ["yellow, table, roof", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" of a human bone", "a white of a woman with her arms outstretched."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["a, b, c", "image, color, white"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["house, plane, town", "outfit, color, green"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is a top and pants?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a stone wall with a window and a clock."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["floor plan, heating system, ceiling light fixture", "window, clock, wall"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["houses, trees, road", "roof structure, truss, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of a wooden windmill with a red roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["fireplace, bench, log", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "6b745457e06840119058883b35f78f58"], "properties": ["s, stick, leaf", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is the color blue", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["floor, table, wall", "throne, chair, building"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a building on top of a table"], "question": "which entity has a chair?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a spiral staircase with a railing in a small building."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["railings, staircase, spiral", "staircase, railing, building"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a staircase in a white room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a large orange pumpkin."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["roof, yellow, chimney", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small white building with stairs and shelves."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, sphere, molecule", "building, stairs, shelves"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a white 3d model of a building with stairs"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, red", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, material", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a spider-like creature with long arms and legs."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["building, roof, white, cubes", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a wooden table with two barrels.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["8bba7567253040d88973320107e48055", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["table, barrels, wood", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black circle on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a barrel table royalty free 3d model preview no.2", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pile of mint green soap cubes.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["edd35e0657b640b1b8fcf86942e1a9e5", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, mint, soap", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background 3d illustration of a pile of white cubes on a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small house with stairs, a roof, and a pillar.", " a white building with a red roof."], "sample_ids": ["a17477b445b3443189dad22f768b888b", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, pillar, stairs", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a square with dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small building with a balcony", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, white, logo", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a woman's chest"], "question": "which shirt has a pattern", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "bf18bfd89efd43389781050230467d58"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["- color is red, blue, pink", "turrets, flags, towers"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, city, train", "house, pool, balcony"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small building with windows and a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " a gray, metal pillar/cylinder."], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["resembles, sea urchin, shell", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["roof, room, ceiling", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "b896a0898efe4059a776193c02132129"], "properties": ["location, city, boat", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a map", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a white castle composed of small cubes."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["mossy, rock, rocky", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a green skull and sphere.", " a white castle composed of small cubes."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, skull, sphere", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["building, stairs, shelves", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small house with a spiral staircase"], "question": "which building has a spiral staircase?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a clay pot with holes in it."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, pier, stairway", "hole, material, clay"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["bread, chocolate, cake", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["roof, color, pink", "arrow, red, white"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a spiral staircase"], "question": "which entity has a white arrow?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, blue, green, yellow, blue", "a train, a ship, a boat"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a submarine"], "question": "which entity has more water", "label": 1}, {"captions": [" a large building with a roof and windows.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof, windows, building", "building, color, black and white"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "674a36147ffb47059e48abc9fa19d923"], "properties": ["ruined building, stone floor, small stone structure", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": [" a small house with a red roof.", " a large house with a roof on a platform."], "sample_ids": ["085db9059b744673b5623b5338e02196", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, red, house", "roof, platform, house"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "6b745457e06840119058883b35f78f58"], "properties": ["lighthouse, building, tower", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a house with a steeple on top"], "question": "which building has a clock tower", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a green mountain with trees and grass."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, roof, tray", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small wooden house."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["mossy, rock, grass", "house, material, wood"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "white ceramic urn with a red lid."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["- material is white- color is white- texture is textured", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a cube", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, gun", "a, outfit, green"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "c3a82df41875402285608ef13a55df57"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden cube.", " a large metal building with a roof and truss structure."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "b85a99699ccd4bcba213322113bb253d"], "properties": ["shape is cube, material is wood, color is brown", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a long metal fence"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a flat roof structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "abc52d210d71415296730bb00352ce6f"], "properties": ["yellow, table, roof", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a two-story small apartment building with a roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, color, white", "two-story, roof, building"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building is two-story?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["water, boat, rock", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a lamp, a syringe, a light pole", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a green letter p", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["ccd770b6eee245d18538b50126977e51", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, letter", "a room, a cake, a table"], "captions_pred_pc": ["a 3d model of a black and white dots on a white background 3d model of a black and white dots on a white background, isolated on a white background, 3d illustration, 3d model, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art, 3d design, 3d illustration, 3d graphics, 3d art,", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of the letter p royalty free 3d model preview no 3", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white 3d bowl with handles.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["277fc0f27a4a45f79b7a2cfc5e9f335c", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a sphere made up of tiny dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic bowl with handles royalty free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a clay pot with holes in it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["floor plan, heating system, ceiling light fixture", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", "a low-poly of a white, shattered sphere."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, poles", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, room, ceiling", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a house with a wooden-framed roof structure."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, black, blue", "roof, material, wood"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "1da865c75a5e4a57a17652975dae5474"], "properties": ["ring, material, gold", "color, white, plastic"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a black motorcycle helmet with a visor on top"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small wooden house."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["room, bed, desk", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a door", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a clay pot with holes in it."], "sample_ids": ["40921ffd69db479294554d261daf3035", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["floor, railing, staircase", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a spiral staircase", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a chair with a yellow seat."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "a4de5f2055154465968f33d6289c64e6"], "properties": ["a, rock, paper", "color, yellow, seat"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", "3d white model featuring a boat, block, turbo text, puma logo, box, and shelf."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "1fe7018cb01a4be58c0f211b8e2db93f"], "properties": ["windmills, silhouette, city model", "3d, model, white"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "of a black and white usb drive with the word 'turbo' on it"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d printed object with the word turbo on it"], "question": "which model is white", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["97f487941d26472294e005fa97c403be", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, green", "house, fence, playground"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "c3a82df41875402285608ef13a55df57"], "properties": ["light source, fixture, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a robotic warrior with a sword."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["color, shape, and size", "weapon, sword, robot"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, tree, pool", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, umbrella, coat", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a spiked baseball bat and a spiked hammer.", "white airplane in flight."], "sample_ids": ["6ce3aa0ecf76431e9e50256a57c92330", "7dccc62d436c40efa2ea23b9c8179451"], "properties": ["spiked, baseball bat, hammer", "airplane, white, in flight"], "captions_pred_pc": ["for a black star on a white background", "above a 3d model of an airplane on a white background"], "captions_pred_image": ["a 3d model of a baseball bat", "a white airplane toy on a gray background"], "question": "which object is not in flight?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "97e000ff41094665afd94ea565da8b13"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a green mountain with trees and grass."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, hand, flowers", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a hand", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "f1b557775310478893242180defa4d80"], "properties": ["color, blue, rim, blue", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["green, hat, cream", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a black and white photograph of a toilet paper holder"], "question": "which entity has more paper", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a yellow and blue toy submarine."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, green, squirt gun", "color, yellow, blue"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a submarine toy"], "question": "which toy is blue?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small wooden house."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["s, plane, house", "house, material, wood"], "captions_pred_pc": ["a black and white silhouette of a map", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a white of a man with arms outstretched."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, and material", "image, color, white"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, window, statue", "house, rock, bird"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "c4e45a41478e42418399074b88d8920f"], "properties": ["a box, a cup, a bottle, a jar", "axe, handle, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, number", "table, staircase, light"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "5414d75e47104589837f3df8b6de6d22"], "properties": ["lighthouse, fountain, crater", "beige, white, round"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " of two rocks with ice elements."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, pattern", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["white ferris wheel ", " a tree with green leaves."], "sample_ids": ["84267382977845f190cdc740e4977f43", "1a902b67735845198efb1b84f434b580"], "properties": ["color is white, wheel is ferris, color is white", "leaf, color, green"], "captions_pred_pc": ["of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a ferris wheel royalty free 3d model preview no.2", "a 3d model of a tree with a lot of foliage"], "question": "which object has a color that is not green?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a white of a house with a hole in the ceiling."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, yard, surrounding buildings", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of a character wearing glasses and a hat."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a destroyed building with a watercolor painting of a dilapidated house."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "5a33f024faf145ac80cdadcdfef8a797"], "properties": ["roof, purple, suspended", "image, building, painting"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white photograph of a damaged house"], "question": "which entity is a painting of a dilapidated house?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a large house with a roof on a platform."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, roof, green", "roof, platform, house"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small house"], "question": "which house is on a platform?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a box, a cup, a bottle, a jar", "a room, a cake, a table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a green mountain with trees and grass."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["lighthouse, fountain, crater", "mountain, grass, tree"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a house with a roof and beams."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, light", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "97f487941d26472294e005fa97c403be"], "properties": ["color, table, chairs", "color, white, green"], "captions_pred_pc": ["a close-up of a white object on a white background", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a large metal building with a roof and truss structure."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "b85a99699ccd4bcba213322113bb253d"], "properties": ["frame, chalkboard, color", "roof, truss, structure"], "captions_pred_pc": ["of a black and white image of a television on a wall", "of a metal grate on a white background"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "443554d4d7044c66aa8cbff63c737589"], "properties": ["building, roof, white, cubes", "roof, color, pink, blue"], "captions_pred_pc": ["above a black and white image of a map", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pink and blue", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " of two rocks with ice elements."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["paper, hole, mouse", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "dd3a9323ed514ccab330973ff9588015"], "properties": ["- material is stone - shape is bat", "room, bed, desk"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a door"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a small room with a bunk bed"], "question": "which entity is a room?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house with a roof"], "question": "which entity is larger", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["lizard, rock, stuffed animal", "paint, rust, concrete"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of a concrete wall"], "question": "which entity has a rusty metal feature?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- color is red, blue, pink", "mountainous, landmass, state"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "5206d4d96c2d428b9c1f7ee0e13bcffb"], "properties": ["food, leaves, shredded paper, rocks", "food, leaves, shredded paper, rocks"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a bird in flight"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a mountain range on a white surface"], "question": "which entity has a pile of food", "label": 0}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["hat, sword, gun", "a city, train, dragon"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, lake, boat", "arrow, red, white"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white 3d model of a building"], "question": "which building is black and white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a blue roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a house", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "9968e06a62e8487ea33460e640abc573"], "properties": ["Drawer, Handle, Wood", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["giraffe, bench, flower", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a house with a green, wooden-structured roof."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, yellow, white, wheels", "roof, color, green"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which object has a green roof", "label": 1}, {"captions": ["small purple teapot with a hook.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, purple, hook", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a bowl", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a small wooden house."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, truss, structure", "house, material, wood"], "captions_pred_pc": ["of a metal grate on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a white chest of drawers with legs."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["graffiti, chinese writing, door", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " a small wooden house with a green roof."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a gray ashtray with a cigarette in it.", " of a black tray with three green rings on it."], "sample_ids": ["c9c7fe9b477a4565a11fd2eaf868c23b", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["ashtray, color, gray", "color, black, rings"], "captions_pred_pc": ["a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ashtray with a cigarette in it", "a 3d rendering of a tray with three rings on it"], "question": "which tray is black", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a, bird, hook", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a yellow and blue toy submarine."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, shape, material", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " of a small white building with stairs and a lid."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["boxing gloves, heart, hand", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["A, a, a", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white image of a rock formation on a gray background"], "question": "which image is a rock formation?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["red, mouse, handwriting", "house, plane, town"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["a, dress, flower", "a, box, wall"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which entity has a box?", "label": 0}, {"captions": [" of a toy mushroom character with a white and brown head.", "a white of a man with arms outstretched."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, head, white and brown", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a house with a roof and beams."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["size, color, shape", "roof, beams, house"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a pond and situated on a rock."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "92859eb82a344134806b37cc209927c6"], "properties": ["roof, room, ceiling", "house, rock, pond"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof trusses, beams, suspended ceiling", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, texture", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small triangular-shaped object."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "2d02985030804209a26c2c53b96a06f9"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "shape, triangle, small"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "6b745457e06840119058883b35f78f58"], "properties": ["roof truss, beams, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house with wooden framing and trusses."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["ceiling, beams, light", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house under construction"], "question": "which entity has a wooden frame", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["beige, head, bottle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["shape, bathroom, refrigerator", "paper, hole, sign"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a red mushroom on top of various piles, including dirt, leaves, wood, and garbage."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "21d3bd3978f74308a312b4379e665dbd"], "properties": ["color, shape, and size", "red, pile, garbage"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of a triangle"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a mushroom in a pile of leaves"], "question": "which entity is a red mushroom on top of various piles", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, color, pink", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white image of a metal grate", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a pixelated-textured purple sphere ."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, material", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small house with a red roof.", " a witch wearing a black and white hat."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["roof, red, house", "color, black, white"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity has a black and white hat?", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, material, pattern", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a throne with a tree on it"], "question": "which entity is not a throne?", "label": 0}, {"captions": [" of a black gun/rifle", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b596b52b86914c2b9bc4b4cd096621db", "c3a82df41875402285608ef13a55df57"], "properties": ["color is black, material is metal, type is gun/rifle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a gun on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a black gun on a gray background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, white, background, gray", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["above a black and white photograph of an object", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a house with a pink roof."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "6162909df6294848a8eea83c3aa9585b"], "properties": ["yellow, table, roof", "color, roof, pink"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which roof is pink", "label": 1}, {"captions": [" of a chessboard on a beige ceiling tile.", " of two rocks with ice elements."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["beige, tile, chessboard", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a leopard print banner", "a black and white image of two rocks on a white background"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white human skull with broken bone elements."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["resembles, toy, bookshelf", "color, white, skull"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["image, building, painting", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a small house with a spiral staircase"], "question": "which image shows a house with a staircase?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "db74ee1621464be1b164be26a1af050e"], "properties": ["color is white, yellow, plastic", "window, arches, wall"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a house with a green, wooden-structured roof."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["a, ball, mushroom", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, material, texture", "island, terrain, water"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island with trees", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a barrel and a cube together."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["bed, desk, window", "a, barrel, cube"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a bed", "label": 0}, {"captions": [" a white rock with green grass and moss on it.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, grass, moss", "turrets, flags, towers"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "92498f398e244020a867686729633610"], "properties": ["color, mouth, eyes", "a, house, cat, dog"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small white house with a roof."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["tiers, building, stairs", "roof, color, white"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a building with a white roof"], "question": "which building has a roof", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "5414d75e47104589837f3df8b6de6d22"], "properties": ["low poly, plant, white", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["shape is cylindrical, color is silver, material is metal", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a cone shaped object", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "d49d8ed244094349a99e4faca05e0690"], "properties": ["background, color, white", "low poly, plant, white"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, shape, texture", "table, structure, roof"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, hill, forest", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d image of a small island in the middle of a lake"], "question": "which island has a mountain?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a large house with a roof on a platform."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "cb3e09a301b746918a682a595037c7f7"], "properties": ["bedroom, bathroom, bed", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small house with a road in front of it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, front, road", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small house on a road", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, red, green, yellow", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a toothbrush", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a small wooden log cabin.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["size, material, log", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " of a white chest of drawers with legs."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["table, staircase, light", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["floor plan, bathroom, pool", "camera, speaker, ceiling fan"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small house with a red roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["085db9059b744673b5623b5338e02196", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, red, house", "roof, trusses, beams"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a roof structure"], "question": "which house has a wooden roof structure with trusses and beams?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["floor, staircase, railings", "glass, metal, balls"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a clear acrylic foosball table"], "question": "which table has metal legs?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a building with blue metal framing and structure."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, green, orange, star", "color, blue, structure"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of dots on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a building under construction"], "question": "which entity has a blue structure", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a house with a flat roof structure."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "abc52d210d71415296730bb00352ce6f"], "properties": ["structure, columns, roof", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a roof"], "question": "which structure is flat", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "a17477b445b3443189dad22f768b888b"], "properties": ["apse, roof, floor plan", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a large steel building with a pool."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["- material is white- color is white- texture is textured", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, metal, white", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "745fed115c5343dab9d7f0c389c98902"], "properties": ["blue tarp, flower, small island", "costume, color, black"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, base, warning", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a house with a roof and beams."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["- color is white- shape is flower- pattern is lace", "roof, beams, house"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", "a white of a woman with her arms outstretched."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["dial, face, band", "image, color, white"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["light, floor, ceiling", "island, terrain, water"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, hat, glasses", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a green skull and sphere.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, skull, sphere", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a machine gun.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["gun, barrel, caliber", "broom, shovel, fireplace"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, plane, town", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "red heart-shaped object."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is plastic- color is green- shape is box", "shape, heart, red"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house with a roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["house, tree, rock", "roof, house, small"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["background, color, white", "lion, statue, fountain"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a white chest of drawers with legs."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["black, white, laptop", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "of a black and white leopard print rug"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d rendering of a white dresser"], "question": "which object is white", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "white hospital bed, medical cart, and bedside table with wheels."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e3ef6fd54af440efa31984214dd6f11d"], "properties": ["bed, desk, window", "bedside table, wheels, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a stool on wheels"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d illustration of a white medical trolley on wheels"], "question": "which entity has a bedside table with wheels", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "b896a0898efe4059a776193c02132129"], "properties": ["hat, food, bowl", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["color, roof, tray", "roof, house, small"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["house, roof, wooden", "houses, trees, road"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a small barn", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, stairs, house", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small grassy island in the water.", " a house with a flat roof structure."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "abc52d210d71415296730bb00352ce6f"], "properties": ["location, water, island", "roof, flat, structure"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a white motorcycle with wings."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, yellow, black", "color, white, wings"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, shape, and size", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a wooden roof structure with a pink roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, stairs, house", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "205251e4277e41d1aae6b2358267ad56"], "properties": ["low poly, llama, kangaroo", "image, color, white"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d printed figurine of an alien creature"], "question": "which image is black and white?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, logo", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "be1376023c274bdda995d54f3694157f"], "properties": ["screen, keyboard, box", "roof, beams, chimney"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, green, orange, star", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["red, mouse, handwriting", "bed, desk, window"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a black and white drawing of a curved line"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["hat, cup, bowl", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a tree"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a wooden shed with a gray roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["resembles, toy, bookshelf", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, black, white", "hat, color, tan"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["building, stairs, shelves", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a spiral staircase with a railing in a small building."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["bed, desk, window", "staircase, railing, building"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a spiral staircase with a railing in a small building."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["painting, door, wall", "staircase, railing, building"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, handle, zipper", "lion, statue, fountain"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a metal object"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d image of a lion statue on a wall"], "question": "which object has a lion statue", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["green, hat, cream", "hat, mustache, chef"], "captions_pred_pc": ["a black and white image of a pair of earrings", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a white building with a red roof."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, brown, flat", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a large white and metal building with a metal roof structure."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, air conditioner, house", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a window", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small white house with a roof."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a train, a ship, a boat", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of two rocks with ice elements."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, hole, shelf", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, color, purple", "house, roof, green"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", " of two rocks with ice elements."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["Title, Image, Color", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "b494049bb15440949e465d54a72b2f02"], "properties": ["bedroom, bathroom, bed", "building, floorplan, gym"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor, ceiling, poles", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "a17477b445b3443189dad22f768b888b"], "properties": ["a, bird, lake", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["- color is white- shape is cube- material is plastic", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity is made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of a small white building with stairs and a lid."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, orange, white", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a stone knife.", "a black and white of a knife/sword with a handle."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["material is stone, blade is sharp, handle is wooden", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a knife on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a black and white image of a knife"], "question": "which knife is not black and white?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "46903bf029934b1989bc062dcb0a5531"], "properties": ["metal, rusted, paper", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has more torn paper", "label": 1}, {"captions": ["a pair of white 3d-printed crocodile clogs.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["67701617472e4051b95955c596561aac", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, white, 3d-printed", "box, handle, gun"], "captions_pred_pc": ["a black and white photograph of a pair of shells", "a black and white square with dots on a white background"], "captions_pred_image": ["a pair of white plastic shoes on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a purple and green sphere.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a small building with windows and a roof."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["shape is turtle, color is green, white", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, truss, suspended ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, color, white", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["d6087023095446fbadef1721478373b2", "9968e06a62e8487ea33460e640abc573"], "properties": ["door, roof, window", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of an apartment building", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a black box with an open lid and an orange handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2a916894edd54029b325cf51f96b0904", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, lid, open, orange, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["a piece of paper with black dots on a white background a piece of paper with black dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white cardboard box with an open lid", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a person breaking through a brick wall."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, color, blue", "image, brick, wall"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a spiral staircase with a railing in a small building."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["fireplace, bench, log", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a large rock with a hole in it.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["size, shape, material", "color, frame, shape"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a building structure"], "question": "which entity is a cube", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small wooden house with a green roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, plane, town", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", "star wars stormtrooper "], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a, city, train", "a, color, white"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "3d silver sculpture resembling a triangular wing with a white arrow design."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "578cb910905042939d876af28e29eb2f"], "properties": ["- material is wood, metal, metal", "wing, silver, white"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a pair of hands"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a white paper airplane flying against a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["lamp, harp, bowl", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, color, pink", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a tree stump and rock with flowers on them."], "sample_ids": ["d6087023095446fbadef1721478373b2", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["door, roof, window", "flower, rock, tree stump"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which entity has a door", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, rock, pond", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "674a36147ffb47059e48abc9fa19d923"], "properties": ["sandbox, sand bucket, wooden blocks", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 0}, {"captions": [" a small house with a yellow roof and chimney.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, yellow, chimney", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a set of stainless steel shelves"], "question": "which roof is made of tiles", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, handle", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, roof, green, frame, red", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, house, wooden", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["A, a, a", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white toy cannon."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "a414258c6bf149708404913a89ab8dbc"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, white, toy"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a cannon on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, skyline, buildings", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a bench on a wooden floor"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["roof truss, insulation, suspended ceiling", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "db74ee1621464be1b164be26a1af050e"], "properties": ["Arms, Legs, Color", "window, arches, wall"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, fence, dog", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white and blue building with a black roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, containers", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "09f2cf267e954c958828325067bcc36a"], "properties": ["- color is white- shape is cubes- number is 1", "island, terrain, rocks"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which object has more rocks", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small wooden house with a green roof."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, hole, rock", "roof, color, green"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "ee440fcbc493488e879539d37a8d820e"], "properties": ["floor, wall, roof", "island, fish, ice"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, platform, house", "roof, structure, suspended"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["a, chair, table, light", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a building with many pillars"], "question": "which table has a wooden structure?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["boat, table, chairs, umbrella, solar panel", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "18e392c5360146eda498c5edab25b15c"], "properties": ["orange, forklift, parking lot", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a building under construction"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small wooden house."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["shape is box, color is white, door is present", "house, material, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, yellow, black", "house, fence, playground"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a wooden-cased radio.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["case, material, wood", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "for a black and white image of an object on a white background"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a small wooden house with a green roof."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, image, subject", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a house with a ladder"], "question": "which image has a green roof", "label": 1}, {"captions": ["purple speech bubble and circle", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a crab holding a rubik's cube."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, temperature, england", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, toilet, robot", "grass, plants, rocks"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a person jumping on a trampoline.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0645ba982cf341ada1727df06f42a8e1", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["person, jumping, trampoline", "house, pool, balcony"], "captions_pred_pc": ["a black and white diamond belt", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["jumping on a trampoline royalty free 3d model preview no 2", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "770e577c9795435898209fd24191635b"], "properties": ["house, lake, pool", "image, color, light"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a white 3d model of a small town"], "question": "which image has a ceiling light?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["ceiling, beams, light", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, red, pink", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a white of a spaceship and building."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["wall, stairs, castle", "image, building, spaceship"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a white sofa, chair, and box."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "4c59733ebd634594a921b7ace60e4142"], "properties": ["computer desk, laptop, monitor", "sofa, chair, box"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a white of a spaceship and building."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, truss, lamp", "image, building, spaceship"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a green mountain with trees and grass."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, roof, wooden", "house, staircase, table"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["color, lighting, booth", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a small house with a red roof.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["roof, red, house", "apse, roof, floor plan"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building in the shape of a pyramid"], "question": "which house has a flat roof", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, background, arrows", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "for a black and white image of an object on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small trailer and a white box.", " a large white and metal building with a metal roof structure."], "sample_ids": ["aabcf9b9c0f2458590f99509f369c9f9", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["box, trailer, white", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a cell phone", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a camper trailer royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["yellow, table, roof", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, red", "house, roof, wooden"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a black and white photograph of a birdhouse"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["water, river, island", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of a small island in the middle of a body of water"], "question": "which island has a house on a hill?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of a person breaking through a brick wall."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["Steel, Color, Yellow", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a building", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, height", "frame, beams, trusses"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a building under construction"], "question": "which structure has a frame?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["roof, ceiling, hole", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "46903bf029934b1989bc062dcb0a5531"], "properties": ["flower, rock, tree stump", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a futuristic white sports racing car."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, red, blue, structure", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a futuristic sports car"], "question": "which entity is not white?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["3D, toothpick, skateboard", "stair, table, chair"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["resembles, toy, bookshelf", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a clear acrylic foosball table"], "question": "which entity is made of metal", "label": 1}, {"captions": ["white 3d tank model", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, model is 3d, name is tank", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house with stairs and a roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, plane, town", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["earbuds, light, ring", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "ring, material, gold"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a white wedding band with the words strength in weakness engraved on it"], "question": "which object is made of gold", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a green mountain with trees and grass."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["door, stairs, color", "mountain, grass, tree"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is white- shape is cube- material is plastic", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white cube", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white of a gun.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, white, gun", "moss, mushroom, grass"], "captions_pred_pc": ["of a white object on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is covered in moss", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a white square with the words \"what tv\" on it."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, red, black", "color, white, words"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, model, luggage", "building, plane, room"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["bedroom, bathroom, bed", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["building, roof, white, cubes", "water, boat, rock"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, shape, texture", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "a17477b445b3443189dad22f768b888b"], "properties": ["color, toilet, robot", "roof, pillar, stairs"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, white, logo", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " of a wooden table and chair."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["floor, table, light", "table, chair, wood"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a black and white of a knife/sword with a handle."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, material", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a black and white image of a knife"], "question": "which entity is black and white?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, shape, material", "color, white, logo"], "captions_pred_pc": ["a black and white image of a metal structure", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a white t-shirt with a supreme logo"], "question": "which is not a t-shirt", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small house with a roof."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["building, fence, snowy", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with a roof.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["roof, building, small", "building, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "4a889132cc444d10bfcbf6c760984416"], "properties": ["s, plane, house", "a, color, white"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small house with stairs and a roof."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["a, hole, rock", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, gazebo, table", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, structure, truss", "Lights, number, five"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, shape, light", "color, shape, color"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, bird, lake", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a white shelf with holes and brackets."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "color, white, holes"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a white bench with a shelf on top"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " a small house on a hill in a field."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["nut, bowl, ring", "house, hill, field"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a small house"], "question": "which object is in a field?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["computer desk, laptop, monitor", "box, paper clip, lock"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "ee440fcbc493488e879539d37a8d820e"], "properties": ["background, color, white", "island, fish, ice"], "captions_pred_pc": ["a black line on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["a, bird, lake", "ceiling, light, desks"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "97e000ff41094665afd94ea565da8b13"], "properties": ["shape, bathroom, refrigerator", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a white wall in an empty room.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3f6239bdb440449aba5a8eab6134dda1", "a17477b445b3443189dad22f768b888b"], "properties": ["room, wall, color", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white photo of a fishing rod", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a white wall in a room", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, mattress, pillows", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, tan, leather", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white cross with a statue of jesus and a man on a pedestal.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["39b72b2ea03345c595c1d63a7b54987e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, pedestal, statue", "a, material, clay"], "captions_pred_pc": ["for a black and white photo of a cell phone on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the crucifixion of jesus on the cross royalty-free 3d model", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white pedestal sink with blue water.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["b4ad53e3057f4922b273f86e7adb3466", "f1b557775310478893242180defa4d80"], "properties": ["water, sink, color", "shack, roof, door"], "captions_pred_pc": ["above a black and white drawing of a letter 'l'", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white pedestal sink royalty free 3d model preview", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a clay pot with holes in it."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a small wooden house with a green roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, color, red", "roof, color, green"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["water, boat, rock", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 0}, {"captions": ["white cube", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6ee7cfc920754f15afb8797ecb9bf2d8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, shape is cube, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white 3d cube on a gray background royalty free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["ceiling, light, desks", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, table, chair", "house, hill, forest"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a man holding various objects on top of a truck.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["db283f7e62074326b7d25634fc53106c", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["a, truck, hold", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a spoon and a screw", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a person riding on top of a truck with an umbrella in their hand", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, red, blue, green", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["hat, cup, bowl", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a cell phone"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "bded33af34104b9686b845dfd18309a9"], "properties": ["island, mountain, grass", "table, staircase, light"], "captions_pred_pc": ["a black and white map of the island of malta", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, hill, deer", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a clay pot with holes in it."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["house, lake, pool", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a white of a woman with her arms outstretched."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["roof, metal, white", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a woman with her arms outstretched"], "question": "which entity is not a white image?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["roof truss, insulation, suspended ceiling", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a harp in a white room"], "question": "which entity has a white curved wall?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["floor plan, bathroom, pool", "roof, color, yellow"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, material", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a wooden shed with a gray roof."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["structure, columns, roof", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a shed with a gray roof"], "question": "which roof is darker", "label": 1}, {"captions": [" of a white purse with a strap.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["dae133bae5cb4496b956f03e1fb7e402", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, strap", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a watch with dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white purse with a strap", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a large orange pumpkin."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["boat, table, chairs, umbrella, solar panel", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, size", "building, plane, room"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of two rocks with ice elements."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor plan, heating system, ceiling light fixture", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d image of two rocks on a gray surface"], "question": "which entity is not a rock?", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a small wooden house with a green roof."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["throne, stairs, tree", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["blue, lid, handle", "box, cylinder, bottle"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which container is not a box?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a house with wooden framing and trusses."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["water, boat, rock", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a window"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a white of a house with a hole in the ceiling."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["houses, trees, road", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white drawing of a house"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof truss, beams, structure", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a small white toy cannon.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a414258c6bf149708404913a89ab8dbc", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, toy", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cannon on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["shape is cylinder, color is white, material is plastic", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["of a spike on a white background", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a paper airplane", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["arm, jacket, mannequin", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a woman's torso", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "a24872444e5c468a9264d503a9ca7276"], "properties": ["size, material, color", "rusty, hat, dartboard"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which object is made of rusty metal", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a human bone structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a witch wearing a black and white hat."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, bowl, green", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a black and white hat?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["room, door, shelf", "house, roof, green"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " of two rocks with ice elements."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["black, roof, green", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small black building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["wing, knife, boat", "box, paper clip, lock"], "captions_pred_pc": ["a black umbrella on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, roof, tray", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a, color, white", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which object has more chairs", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a large orange keg with a white lid."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["liquid, ice, lid", "color, lid, orange"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a gray keg with a white lid sits on top of a gray surface"], "question": "which entity has a lid that is orange?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, yellow, white, wheels", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1c389c8f46b345838e515b9747c1f982", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["plate, fruit, knife", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a hedgehog", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a person riding a skateboard on a wooden surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a green, wooden-structured roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, purple, suspended", "roof, color, green"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["ceiling, light, desks", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, text", "a, material, steel"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a small blue bottle with a lid and a small blue box.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c1bc7f87f15943ba88f0410ef9e387e8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["blue, bottle, box", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a sponge and a sponge holder", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a vase and a box royalty free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a wooden windmill with a red roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["frame, roof, trusses", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a large steel building with many columns and a pool."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, fence, snowy", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, building, people", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["animal, head, fox, chihuahua, cat", "color, shape, color"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a fox's head", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["collection, moose, skull", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a white round table with a red accent.", " of two rocks with ice elements."], "sample_ids": ["fea62a865b4e40899d95785533818329", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, white, red", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a building with blue metal framing and structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["roof, color, pink", "color, blue, structure"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building under construction"], "question": "which building has a blue roof", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["bedside table, wheels, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small white building with stairs and a white table."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "e30374c614f54fdb90f35b96b071349d"], "properties": ["structure, building, archway", "building, stairs, table"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a wooden roof structure with a pink roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, white, black, white", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of the roof of a building"], "question": "which object has a pink roof", "label": 1}, {"captions": [" a white and blue building with a black roof.", " of a large axe with a cross on top."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, white, blue, roof, black", "axe, cross, top"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a small white building with stairs and shelves."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "9e1f64d4fd514059be934077717536dc"], "properties": ["light source, fixture, color", "building, stairs, shelves"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white 3d model of a building with stairs"], "question": "which entity has shelves", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a, bird, hook", "table, staircase, light"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["building, floor, columns", "a, material, steel"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["structure, columns, roof", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, truss, suspended ceiling", "roof, color, yellow"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small orange piano with legs.", "a yellow and blue toy submarine."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color is orange, size is small, legs", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a bench", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a submarine toy"], "question": "which object is blue?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " of a lion statue"], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "ef45a94abce44c8980363602489f218c"], "properties": ["a, color, white", "a, material, statue"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "in 15 words or less 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustr"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d sculpture of a lion sitting on its hind legs"], "question": "which object is made of a statue", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["frame, beams, trusses", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["Steel, Color, Yellow", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a house in the middle of a field"], "question": "which entity is not situated on a hill?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["low poly, llama, kangaroo", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["image is rock formation with a white cliff and a rock", "room, furniture, window"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["houses, trees, road", "tv, chair, laptop"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a person sitting on a couch"], "question": "which entity does not feature a tv", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, purple, beams", "roof, metal, white"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small white house with a roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, tree, rock", "roof, color, white"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a white castle composed of small cubes.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "5414d75e47104589837f3df8b6de6d22"], "properties": ["composed of, white, cubes", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a small wooden house with two roofs."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["roof, color, purple", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small barn"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["house, plane, town", "hat, skull, bread"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a brown couch with peeling paint and tape on it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "8da7e0d122f544e2862b4e592988e183"], "properties": ["houses, trees, road", "brown, paint, tape"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a couch with a leopard print pattern"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a couch royalty free 3d model preview no.2"], "question": "which entity has more paint", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, tree, rock", "house, roof, blue"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, label, shape", "color, pattern, word"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "b896a0898efe4059a776193c02132129"], "properties": ["room, bed, desk", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a door", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "5206d4d96c2d428b9c1f7ee0e13bcffb"], "properties": ["- material is plastic- shape is dice- color is white", "food, leaves, shredded paper, rocks"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a bird in flight"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a mountain range on a white surface"], "question": "which object is made of paper", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["image, house, ceiling", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a house with a balcony", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a potted plant on a wooden table or shelf."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["a, hill, deer", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", "a white of a woman with her arms outstretched."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["arm, light, sign", "image, color, white"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a woman with her arms outstretched"], "question": "which image is of a woman with her arms outstretched?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["lighthouse, fountain, crater", "door, lock, handle"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a black tire."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "b645118910b54e2a9f3a97d5598ce1de"], "properties": ["- material is plastic- color is white- shape is cylinder", "color, black, tire"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a tire on a white background royalty free 3d model preview no.2"], "question": "which is not a tire", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["cover, black, plastic", "roof, color, yellow"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a black and gold pistol.", " a small white toy cannon."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "a414258c6bf149708404913a89ab8dbc"], "properties": ["color, black, gold", "color, white, toy"], "captions_pred_pc": ["a black and white image of a toothbrush", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, handle, orange, rake, knife", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "40921ffd69db479294554d261daf3035"], "properties": ["color, model, luggage", "floor, railing, staircase"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "above a black and white image of a computer screen"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a spiral staircase"], "question": "which object has a wooden floor", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["house, fence, dog", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["room, door, shelf", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a white castle composed of small cubes."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["base material is wood, color is red, message is welcome to northwich", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which object is made of cubes", "label": 1}, {"captions": ["white 3d cube", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["63f939f8c636457ebcb5ceda4d5067e6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, shape is cube, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white square made up of dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white cube on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, plane, small plane", "stair, table, chair"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a spider-like creature with long arms and legs."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor, wall, roof", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a black and white object", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "bf18bfd89efd43389781050230467d58"], "properties": ["color, screen, drawer", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a wooden roof structure with a pink roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, grass, moss", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of the roof of a building"], "question": "which entity is a roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a wooden billiard table with legs."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["location, field, gravestone", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small green chair with a slanted back and white base."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "7f93c12cbbc74e579d5f0430cfa0010f"], "properties": ["background, color, white", "color, white, base, slanted"], "captions_pred_pc": ["a black line on a white background", "above a black and white drawing of a chair"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a chair"], "question": "which object has a white base", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["building material, pool, steel", "building, material, rock"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a 3d model of a concrete structure", "a 3d image of a damaged piece of furniture"], "question": "which building is made of wood", "label": 1}, {"captions": ["white ceramic face sculpture resembling an ice cream blob.", " of two rocks with ice elements."], "sample_ids": ["8abc3a28cbba40428c9b364f90a4982a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["blob, face, white", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of a starfish", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a head with eyes and a nose", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a window with a colorful frame.", " of two rocks with ice elements."], "sample_ids": ["59c7c35a04ce42dbb24e8f8e882c4127", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["frame, color, window", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a banner on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a window in a wall", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small building with a staircase in a room."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["wall, stairs, castle", "room, staircase, building"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase in a room?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a large steel building with a pool."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["a, desk, laptop", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, white, railing, black", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a computer screen", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a white teapot with pink flowers and a handle."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "f6c5e8931d164979a71914127c7e5438"], "properties": ["color, material, size", "color, white, handle"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white dots on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a white tea kettle with a black handle and floral design"], "question": "which object is white", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e2645ac544844f3c981203134a99c30c"], "properties": ["color, light, jewels", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "40921ffd69db479294554d261daf3035"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "floor, railing, staircase"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a spiral staircase"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, horns, features", "color, head, white and brown"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a black building."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["lighthouse, building, tower", "color, black, building"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a white castle composed of small cubes."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, sphere, molecule", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of a lot of small cubes", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, yellow, black", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of an airplane", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["castle, island, house", "house, roof, wooden"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["cup, bottle, chessboard", "stair, table, chair"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a person breaking through a brick wall."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof trusses, beams, suspended ceiling", "image, brick, wall"], "captions_pred_pc": ["above a black and white drawing of a building", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, fence, dog", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a yellow roof and chimney."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a roof", "label": 1}, {"captions": [" a small white house with a roof.", " of two rocks with ice elements."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, white", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "a17477b445b3443189dad22f768b888b"], "properties": ["bed, desk, window", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "a17477b445b3443189dad22f768b888b"], "properties": ["painting, door, wall", "roof, pillar, stairs"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, tan, brown, orange", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small, snow-covered house."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["background, color, white", "house, snow, cover"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": ["white table lamp with a white shade.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "68e0d097351843a3980421f2ae624c59"], "properties": ["color, white, shade", "white, top, writing"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a white table lamp with a white shade", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small white building with stairs and a white table."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "e30374c614f54fdb90f35b96b071349d"], "properties": ["earbuds, light, ring", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a white rocking chair with a curved backrest."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["Drawer, Handle, Wood", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a backrest that is curved", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "b896a0898efe4059a776193c02132129"], "properties": ["roof, truss, structure", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a metal grate on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house with a roof and beams."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, light, jewels", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a white of a spaceship and building.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "88eba412c78a4ced89eb857327653f6c"], "properties": ["image, building, spaceship", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, holes", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small building with a staircase in a room."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["floor plan, ceiling light, color", "room, staircase, building"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of the letter l"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase?", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["base material, wood, shade color, white, beige", "roof, color, yellow"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a beige bottle, teddy bear, and head."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "f2fcfd53946e48f59c7bfd992ef658b1"], "properties": ["color, light, jewels", "beige, head, bottle"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a flower in the shape of a dandelion"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a light bulb royalty free 3d model preview no. 3"], "question": "which entity has a head", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, light", "color, sphere, molecule"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a green and black robot with cube-like features.", " of a white human skull with broken bone elements."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a futuristic white sports racing car."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, shape, text", "color, white, futuristic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a futuristic sports car"], "question": "which entity is not a sports car?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["building, roof, yellow", "a, box, wall"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which object has a box?", "label": 0}, {"captions": [" a colorful sunburst with pink, blue, and purple hues.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["46946704a6344eb18718fc5710782f6b", "92498f398e244020a867686729633610"], "properties": ["color, hue, saturation", "a, house, cat, dog"], "captions_pred_pc": ["of a black and white photo of a ceiling light fixture", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunbur", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["white cube ", " a clear glass table with metal legs and balls on top."], "sample_ids": ["1fbd3b1130854a02ae19b1b665b47d44", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, shape is cube, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["in one sentence the image is a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small house with stairs and a roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["building, tree, plane", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "a17477b445b3443189dad22f768b888b"], "properties": ["fireplace, bench, log", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4f21fa937959487a96350af527d75421", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["window, frame, room", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a metal cage", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a potted christmas pine tree."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["tiers, building, stairs", "a, color, green"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["food, leaves, shredded paper, rocks", "railing, chair, light"], "captions_pred_pc": ["a black and white image of a bird in flight", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a house with a roof and beams."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "96d127abd21049689918e671ec613ef8"], "properties": ["hat, sword, gun", "axe, hammer, spoon"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which entity has a hammer?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small building with windows and a roof."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, pier, stairway", "roof, windows, building"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["ceiling, beams, light", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a brick wall with grass."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "53f2d948091f417cb580e22469c94db2"], "properties": ["roof, color, pink", "brick, grass, wall"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a house with a roof", "a black and white photo of a brick wall and a puddle"], "question": "which wall is made of brick", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "c3a82df41875402285608ef13a55df57"], "properties": ["Headstock, Guitar, Head", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an axe head", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "a17477b445b3443189dad22f768b888b"], "properties": ["turrets, flags, towers", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["3d superman logo in red and yellow", " of a small white building with stairs and a lid."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, red, yellow", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, horns, features", "room, door, shelf"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a person breaking through a brick wall."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "image, brick, wall"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a person breaking through a brick wall"], "question": "which wall is made of brick", "label": 1}, {"captions": [" a small house with a red roof.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["085db9059b744673b5623b5338e02196", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, red, house", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["desk, chair, lamp", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a white glass beer mug."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["house, color, white", "color, white, glass"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, and size", "roof, color, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small white house with a roof."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, material", "roof, color, white"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, stairs, house", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["fireplace, stick, surround", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a black and white striped fly in the air."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["yellow, table, roof", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["apse, roof, floor plan", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, color, red", "hat, skull, bread"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["chocolate, mushroom, cake", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white illustration of two spheres"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "star wars stormtrooper "], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["- color is red, blue, pink", "a, color, white"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8a319c41f6214ee78bf11069ec8535ab"], "properties": ["yellow, table, roof", "yellow, table, roof"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white structure with multiple tables and chairs"], "question": "which entity has a roof?", "label": 0}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a blue roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["frame, roof, trusses", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a group of ponies in a row."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["house, plane, town", "group, row, pony"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a house with a green, wooden-structured roof."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, pattern, wall", "roof, color, green"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, green", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small building with windows and a roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, house, small", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a house with a wooden-framed roof structure."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, building, people", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["potted plant, table, shelf", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a large metal building with a roof and truss structure."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["image is a sculpture of an angel on a wall", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a long metal fence"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a small white house with windows and a black lid."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color is white, yellow, plastic", "white, windows, lid"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "above a black and white image of dots on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a white house with three windows"], "question": "which entity is a house?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["roof, windows, building", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a small white building with stairs and a lid."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, light, jewels", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a large building with a roof and windows."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "32d1fbd3ee91426882290305f70021e6"], "properties": ["image is a sculpture of an angel on a wall", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["- color is white- shape is cube- material is plastic", "a, box, wall"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d model of a white cube", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which object has a door?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", "a white glass beer mug."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "1d686cbd3e9a4c629a43088658989286"], "properties": ["building, roof, balcony", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, material, steel", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a table and chairs on a white background"], "question": "which building has a roof that is the color of yellow", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small wooden house with a green roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["floor, table, light", "house, rock, bird"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, white, black, white", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a circular fence with black and white stripes"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["furniture, staircase, torn-apart", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house on a hill in a field."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, roof, tray", "house, hill, field"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["A, a, a", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["building, roof, balcony", "building, roof, balcony"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a building with a clock tower"], "question": "which building has a clock tower?", "label": 0}, {"captions": ["a gnome toy wearing a striped hat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, toy, gnome", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white illustration of two spheres"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a house with a wooden-framed roof structure."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["Steel, Color, Yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["red, pile, garbage", "house, pool, balcony"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["hat, mustache, chef", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a chef's hat", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a hat?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a house with a flat roof structure."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, shape, texture", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["3D, toothpick, skateboard", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a wallet"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["chair, table, refrigerator", "Cabinet, drawer, wood"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a pixelated-textured purple sphere ."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "fb68393941804e769d5c9b372864a642"], "properties": ["pattern, color, shape", "texture, color, shape"], "captions_pred_pc": ["a black circle on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a gray sphere on a white background"], "question": "which entity has a texture that is pixelated?", "label": 1}, {"captions": [" of purple crystals", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8e729506c8cb4818b18191b1cc567b0d", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a leaf on a white background a black and white drawing of a leaf on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a crystal in the shape of a snowflake", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, structure, house", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a table and chairs on a white background"], "question": "which structure has a roof", "label": 1}, {"captions": [" a small building with windows and a roof.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "4389909667db472ea9a57a70eb940fa4"], "properties": ["roof, windows, building", "building, window, skeleton"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window with a skeleton on it?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, white, red, pink", "Shelf, color, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["light source, fixture, color", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["40921ffd69db479294554d261daf3035", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["floor, railing, staircase", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a small table"], "question": "which house has a bathroom?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, bird, lake", "stair, table, chair"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is metal- color is silver- texture is textured", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e098706085a44898abbd549693d12a64", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is black, white, orange", "rusty, warning, metal"], "captions_pred_pc": ["of a white and black clutch with a flower design", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, island, water", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, roof, green", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, temperature, england", "giraffe, bench, flower"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, texture", "color, background, white"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "an image of a white background with a few small cubes on it"], "question": "which entity is a solid color?", "label": 0}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house with stairs and a roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["castle, island, house", "roof, stairs, house"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "c3a82df41875402285608ef13a55df57"], "properties": ["a, bird, hook", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "a17477b445b3443189dad22f768b888b"], "properties": ["color, green, orange, star", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a square with dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "a17477b445b3443189dad22f768b888b"], "properties": ["metal, roof, chest", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["screen, monitor, stand", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["black, white, coffee table", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white 3d model of a building", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " featuring a chair, table, and refrigerator."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["chair, table, refrigerator", "chair, table, refrigerator"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 0}, {"captions": [" a red, blue, and green striped tower building.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["color, red, blue, green", "house, building, people"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "e44009d33258425e8efedfbc6823bf70"], "properties": ["- material is wood, metal, metal", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a white cube"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "4389909667db472ea9a57a70eb940fa4"], "properties": ["building, color, white", "building, window, skeleton"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window with a skeleton on it?", "label": 1}, {"captions": [" of a set of ladders.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["5152e8c6dd094e49b02b54ef1cd2fabc", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, set, ladders", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a white wall with a black square on it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a shelving unit with multiple shelves", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "c3a82df41875402285608ef13a55df57"], "properties": ["light, toilet, faucet", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a black and white striped box."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["low poly, plant, white", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d image of a black and white striped surface"], "question": "which object is white", "label": 1}, {"captions": [" a house with a yellow roof, wooden beams, and yellow frames.", "a low-poly of a white, shattered sphere."], "sample_ids": ["703dce44052e48cfb024bceb08141554", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["roof, beams, frames", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a boat", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a wooden structure", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a house with a green, wooden-structured roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "09f2cf267e954c958828325067bcc36a"], "properties": ["building, roof, white, cubes", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small wooden house with a green roof."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["furniture, staircase, torn-apart", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, temperature, england", "house, tree, hill"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, metal, white", "roof, trusses, beams"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a roof structure"], "question": "which roof structure is made of wood", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a wooden windmill with a red roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, shape, text", "roof, color, red"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small house with stairs and a roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, material", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house on a hill in a field."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["lighthouse, fountain, crater", "house, hill, field"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a small house"], "question": "which entity is on a hill?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " of a black and white striped fly in the air."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["buildings, houses, grass", "black, white, fly"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "c3a82df41875402285608ef13a55df57"], "properties": ["color, tan, leather", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["building, fence, snowy", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a character wearing glasses and a hat."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["floor, staircase, railings", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a light switch", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["frame, chalkboard, color", "a, material, clay"], "captions_pred_pc": ["of a black and white image of a television on a wall", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, shape, material", "ashtray, color, gray"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["texture, spikes, eyes", "color, background, white"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "an image of a white background with a few small cubes on it"], "question": "which entity is a cube?", "label": 0}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a wooden billiard table with legs."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["Steel, Color, Yellow", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a wooden-framed house with roof trusses."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "e60dd370c5ec468da4689a801f951157"], "properties": ["color, orange, leather", "frame, roof, trusses"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a metal grate"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a house under construction"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a house with a roof and beams."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, text", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["tiers, building, stairs", "houses, trees, road"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a large metal building with a roof and truss structure."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["house, tree, rock", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " of a crab holding a rubik's cube."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, pier, railings", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, shape", "a, material, clay"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a pink, ear-shaped object."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["- material is plastic- color is green- shape is box", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["color, material, structure", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, lake, pool", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "09f2cf267e954c958828325067bcc36a"], "properties": ["cover, torn, open", "island, terrain, rocks"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a torn bank note", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a clay pot with holes in it."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, pink, green, cord, white", "hole, material, clay"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["s, chimpanzee, human, wolf", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small house with stairs and a roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["s, stick, leaf", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, roof, tray", "roof, structure, wall"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which house has a brick wall?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["rusty, hat, dartboard", "hat, color, tan"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a brick building with a roof structure and roof truss."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "84e8acad28664a738df69d719df9e263"], "properties": ["floor plan, bathroom, pool", "roof, structure, truss"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a black and white striped box.", " a small wooden house with a green roof."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, black, white", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- color is white - shape is box - material is plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white square with dots all over it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, door, cross", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white drawing of a house", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a47dcf3d3cf34c58af17b6715d6f1232", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["room, staircase, bus", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d image of a building with a lot of debris", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small blue robot with a windmill.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5f915b161cc74fedad52d8663b41f87a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, blue, robot", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a 3d sculpture", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a wind turbine", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["frame, roof, trusses", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a green box with four compartments", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, number", "roof, pillar, stairs"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["staircase, railing, building", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white building with stairs and a white table."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, grass, moss", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small purple plastic chair with holes."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, red, blue, green", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["earbuds, light, ring", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", "a white of a man with arms outstretched."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["collection, moose, skull", "image, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a man with his arms outstretched"], "question": "which image is of a man with arms outstretched?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a clay pot with holes in it."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, structure, truss", "hole, material, clay"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a large orange keg with a white lid."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["cover, black, plastic", "color, lid, orange"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a victor calculator on a white background", "a gray keg with a white lid sits on top of a gray surface"], "question": "which object has a white lid", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, roof, blue", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a small wooden house with a green roof."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["floor, staircase, balcony", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a multicolored metal building structure with a roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, material, frame", "color, roof, structure"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a barn structure"], "question": "which structure is multicolored?", "label": 1}, {"captions": ["green teapot", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["5fbede2bde754dd59e11a47fc7d5e9a6", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color is green, material is ceramic, shape is teapot", "a, material, steel"], "captions_pred_pc": ["in 15 words or less a black and white image of a bowl on a white background royalty free illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of a material that is not ceramic?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["desk, chair, lamp", "a, landscape, sand"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a building with a metal and wooden pole structure."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["building, material, steel", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a structure with multiple tables and chairs"], "question": "which building has a structure made of metal and wooden poles", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, black, green", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, eye, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "c3a82df41875402285608ef13a55df57"], "properties": ["color, yellow, white, wheels", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["white butterfly wall lamp with a white shade and bead, .", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fd63194cf4f94d5e96bd2b85f542b936", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["shade, white, bead", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a light bulb on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a wall lamp with a white shade and a butterfly design", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a large metal building with a roof and truss structure."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, background", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a metal rod", "of a metal grate on a white background"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of two rocks with ice elements."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white building with stairs and a white table."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "e30374c614f54fdb90f35b96b071349d"], "properties": ["texture, spikes, eyes", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a blue security booth featuring a locked door and a \"clean way\" inscription.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d2ba0001656f477787b7df4567346a2f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, inscription, booth", "a, material, clay"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a gray metal box with an open door", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a small white building with stairs and a lid."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, text", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green mountain with trees and grass.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["mountain, grass, tree", "water, boat, rock"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d image of an animal laying on the ground"], "question": "which entity has more water", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["shape, color, material", "door, lock, handle"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a large steel building with many columns and a pool."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["composed of, white, cubes", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a toy motorcycle, car, and robot on an orange platform.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7407a108e0354925b83b750339bc03df", "c3a82df41875402285608ef13a55df57"], "properties": ["platform, color, orange", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bicycle", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a motorcycle on a pedestal", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a building with blue metal framing and structure."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["- material is plastic- color is green- shape is box", "color, blue, structure"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a building under construction"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "5414d75e47104589837f3df8b6de6d22"], "properties": ["bread, knife, board", "beige, white, round"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "costume, color, black"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a white glass beer mug."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "1d686cbd3e9a4c629a43088658989286"], "properties": ["black, white, laptop", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a house with a green, wooden-structured roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white building with a red roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, pink", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, light, jewels", "color, frame, shape"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, material, stone", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "c4e45a41478e42418399074b88d8920f"], "properties": ["- color is white- shape is cube- material is plastic", "axe, handle, wood"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of two rocks with ice elements."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, lake, pool", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["metal, rusted, paper", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d image of a room with a person in it"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " of a small white building with stairs and a lid."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, floor, columns", "building, stairs, lid"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, green, orange, star", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a cell phone"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["- color is red, blue, pink", "houses, trees, road"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white photograph of a small town"], "question": "which entity has more houses", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a house with a pink roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "6162909df6294848a8eea83c3aa9585b"], "properties": ["roof, green, lawn", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which roof is pink", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["floor, wall, roof", "roof, truss system, framing"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a wooden roof structure with a pink roof."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, eagle, wood", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " of a small white building with stairs and a lid."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["metal, laptop, light fixture", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of a corner shelf", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small purple plastic chair with holes."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["building, stairs, shelves", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white 3d model of a building with stairs", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "34a49861e7744acfb71de471a755e917"], "properties": ["color, material, pattern", "text, material, shape"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d rendering of a marble slab with text on it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of a white human skull with broken bone elements."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["tiers, building, stairs", "house, staircase, table"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", "a white of a man with arms outstretched."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, purple, beams", "image, color, white"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small wooden house with a green roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof truss, beams, structure", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, shape, text", "roof structure, truss, ceiling"], "captions_pred_pc": ["the logo for carl meyer", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["ceiling, beams, light", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["color, blue, green, yellow, blue", "cup, bottle, chessboard"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is on a chessboard?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["floor, table, wall", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a building with many pillars"], "question": "which entity has a table with pillar-like yellow and white poles?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small wooden house."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, material, frame", "house, material, wood"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a white castle composed of small cubes."], "sample_ids": ["6b745457e06840119058883b35f78f58", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, color, blue", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a small white house with a roof."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image, building, stairs", "roof, color, white"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["desk, chair, lamp", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["shape, bathroom, refrigerator", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["b5afccae993346079483507296fbb029", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is square, material is metal, color is rusty", "metal, cross, clock"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "bded33af34104b9686b845dfd18309a9"], "properties": ["apse, roof, floor plan", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["building, roof, white, cubes", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a map", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["castle, island, house", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, background, white", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "225e4094141d416faba7c5598dc55ff8"], "properties": ["floor plan, bathroom, pool", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a blue security booth featuring a locked door and a \"clean way\" inscription.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d2ba0001656f477787b7df4567346a2f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, inscription, booth", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free stock illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a gray metal box with an open door", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a small white building with stairs and a white table."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, hat, handle", "building, stairs, table"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a house with a blue roof."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["door, white, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a house with a roof"], "question": "which structure has a blue roof", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["chocolate, mushroom, cake", "cloak, sword, spear"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " of a small white building with stairs and a lid."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["brown, paint, tape", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "b896a0898efe4059a776193c02132129"], "properties": ["building, color, black and white", "- material is stone, metal, concrete"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a white glass beer mug."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["red, mouse, handwriting", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, plane, small plane", "floor, staircase, balcony"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a white of a man with arms outstretched."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["ceiling, light, desks", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a low-poly of a white, shattered sphere."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, red, blue, green", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a large rock with a hole in it.", "a white of a woman with her arms outstretched."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["size, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "096e42b466ec438d95c5d89a85191534"], "properties": ["floor plan, heating system, ceiling light fixture", "white, rock, shell"], "captions_pred_pc": ["a black and white drawing of a house", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["screen, keyboard, box", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, pattern, material", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a large white vase on a grey background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a pink roof.", " of a wooden windmill with a red roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, roof, pink", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": ["white sphere", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "be1376023c274bdda995d54f3694157f"], "properties": ["color, shape, size", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a small white barn with a metal roof."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "4ca3342a96824684845f7d0e062ab176"], "properties": ["railing, glass, table", "roof, metal, white"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a barn"], "question": "which building has a white roof", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["Black, Shelf, Metal", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, house, small", "roof, structure, suspended"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a metal roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, shape, material", "frame, beams, trusses"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d model of a building under construction"], "question": "which entity is not a building structure?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a white human skull with broken bone elements."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, mouth, eyes", "color, white, skull"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, background, white", "flower, color, pink"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, door, cross", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a house with a blue roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, shape, text", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a small wooden house."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, roof, yellow", "house, material, wood"], "captions_pred_pc": ["a black and white image of a cell phone", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, fence, snowy", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof trusses, beams, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "402601779d1d4146b4cde106dfff1b27"], "properties": ["arrow, mountain, area", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a line with a square on it", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a snowflake in the air on a cloudy day"], "question": "which entity has a pig in a swimsuit?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["water, boat, rock", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a surfboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["s, batman, batman character", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "be1376023c274bdda995d54f3694157f"], "properties": ["color, black, shade, black", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "be1376023c274bdda995d54f3694157f"], "properties": ["graffiti, bench, wall", "roof, beams, chimney"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, grass, moss", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a table with stairs"], "question": "which object is in a room?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a small white building with stairs and a white table."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "e30374c614f54fdb90f35b96b071349d"], "properties": ["red, pile, garbage", "building, stairs, table"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a white rocking chair with a curved backrest."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["bird, nest, wood", "backrest, curved, yes"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a wooden shed with a gray roof."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, texture", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "4389909667db472ea9a57a70eb940fa4"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["chair, table, refrigerator", "throne, stairs, tree"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a train, a ship, a boat", "house, staircase, table"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, truss, lamp", "roof, brown, flat"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a wooden frame with a picture in it.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["9dcf94c293de427daba9dceee624e728", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["picture, frame, material", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a long, decorative piece of jewelry", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a framed picture on a wall", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["rusty, sink, graffiti", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "1da865c75a5e4a57a17652975dae5474"], "properties": ["house, lake, pool", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, red, pink", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, temperature, england", "Lights, number, five"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": ["a white of a spaceship and building.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "bf18bfd89efd43389781050230467d58"], "properties": ["image, building, spaceship", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a house with a wooden-framed roof structure."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- color is white - shape is box - material is plastic", "roof, material, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a house with a wooden-framed roof structure."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, island, resembles, hawaii", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small white house with windows and a black lid."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "4b40af369c1149949f5ccb68becd8430"], "properties": ["red, mouse, handwriting", "white, windows, lid"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of dots on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a white house with three windows"], "question": "which object has a lid?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a white of a woman with her arms outstretched."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, light", "image, color, white"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "bded33af34104b9686b845dfd18309a9"], "properties": ["carving, statue, wall", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a small blue bottle with a lid and a small blue box.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c1bc7f87f15943ba88f0410ef9e387e8", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["blue, bottle, box", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a sponge and a sponge holder", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a vase and a box royalty free 3d model preview no. 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a paper clip?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["white, windows, lid", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of dots on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white house with three windows", "a white 3d model of a city skyline"], "question": "which image is a laptop?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["building, color, yellow-green", "a room, a cake, a table"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a white rocking chair with a curved backrest."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, black, shade, black", "backrest, curved, yes"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house featuring furniture, people, a staircase, and torn-apart sections."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "85335d3349894b5884dbf6f3e7d68fcc"], "properties": ["chair, table, refrigerator", "furniture, staircase, torn-apart"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a pixelated cityscape on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a damaged room with broken furniture and debris on the floor"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a round medallion featuring a man's bust.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3676336b7ee74ed09ce242c832a166e4", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, material, image", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a white object", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of a face in the snow 3d sculpture of", "a 3d model of the roof of a building"], "question": "which is not made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a wooden shed with a gray roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, green, lawn", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, text", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a screw", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a green mountain with trees and grass."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["bowl, pottery, headpiece", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "5850d5c7223447db816081d50292fec0"], "properties": ["door, roof, pool", "structure, material, pool"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color, lake, boat", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["screen, monitor, stand", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["- color is red, blue, pink", "house, staircase, table"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "09f2cf267e954c958828325067bcc36a"], "properties": ["hat, shirt, bearded", "island, terrain, rocks"], "captions_pred_pc": ["of a black and white bracelet on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a man with a beard", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small building with a roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof, building, small", "building, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a human skull.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, b, c", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "73e7107ff3634516846bccad04c5dc87"], "properties": ["- material is wood - color is white - height is 1.8 m", "blue, curved, resembles"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, tail, cord", "stair, table, chair"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " of a black tire."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "b645118910b54e2a9f3a97d5598ce1de"], "properties": ["shape is cylindrical, color is silver, material is metal", "color, black, tire"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a tire on a white background royalty free 3d model preview no.2"], "question": "which object is black", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "1da865c75a5e4a57a17652975dae5474"], "properties": ["leaf, color, shape", "color, white, plastic"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, truss, lamp", "a, building, roof"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a wooden shed with a gray roof."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, hill, forest", "roof, color, gray"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, light, jewels", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white of a small archway gate.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["image, color, white", "image, color, pink"], "captions_pred_pc": ["above a black and white illustration of an arch", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a white arch", "a 3d sculpture of an animal on a piece of paper"], "question": "which image is pink?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "18e392c5360146eda498c5edab25b15c"], "properties": ["room, bed, desk", "frame, beams, trusses"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "blue, yellow, frog"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a house with a wooden-framed roof structure."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a red roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["085db9059b744673b5623b5338e02196", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, red, house", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small house on a hill in a field."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "house, hill, field"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of a small house"], "question": "which object is in a field?", "label": 1}, {"captions": [" a small house with a red roof.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["085db9059b744673b5623b5338e02196", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, red, house", "house, tree, pool"], "captions_pred_pc": ["a black and white dotted square on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, pattern", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a green mountain with trees and grass."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["floor, staircase, railings", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a light switch", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["boxing gloves, heart, hand", "throne, chair, building"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["island, terrain, water", "a, color, red"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a castle with two towers"], "question": "which entity has a red roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "839a873262a544c9906f3f5799ca4648"], "properties": ["water, boat, rock", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a lamp, a syringe, a light pole", "island, terrain, water"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["text, material, shape", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a white kite flying in the air against a gray background"], "question": "which entity is not a sign?", "label": 0}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", "a white of a woman with her arms outstretched."], "sample_ids": ["44723e86bdd14071b0544745879604de", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["resembles, bar, soap", "image, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a soldier with outstretched arms", " a house with a wooden-framed roof structure."], "sample_ids": ["4982a7018e6f4503b5708c714b733ab4", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["arms, outstretched, soldier", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a bird's wing", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a soldier with his arms outstretched royalty-free 3d model preview", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, shirt, bearded", "hat, watch, clock"], "captions_pred_pc": ["of a black and white bracelet on a white background", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "white wall lamp with a leaf design"], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "7afad3ca209c4a91b5457d28bdc2b916"], "properties": ["color, pattern, material", "design, leaf, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "above a black and white image of a circular object"], "captions_pred_image": ["a large white vase on a grey background", "a white wall sconce with a leaf design and a light bulb"], "question": "which object has a leaf design", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a wooden shed with a gray roof."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["food, leaves, shredded paper, rocks", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small wooden house."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["image, building, painting", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a white castle composed of small cubes."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["a, hole, shelf", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a castle made of white cubes"], "question": "which object is white", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, pattern, wall", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "9b8e2f9070b24956a343a01a5fabdf03"], "properties": ["a, bird, lake", "computer desk, laptop, monitor"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white silhouette of a traditional japanese gate"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a futuristic room with a bench"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "46903bf029934b1989bc062dcb0a5531"], "properties": ["ring, material, gold", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["painting, door, wall", "color, shape, color"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a black rock with writing on it."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, orange, white", "color, black, writing"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a white of a house with a hole in the ceiling."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, rock, pond", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a four-legged metal workbench with shelves."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["desk, chair, lamp", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, yellow, chimney", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a roof truss?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["shape, bathroom, refrigerator", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, and size", "a room, a cake, a table"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a wooden billiard table with legs."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- color is white - shape is box - material is plastic", "legs, material, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "b896a0898efe4059a776193c02132129"], "properties": ["color, red, green, yellow", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a green mountain with trees and grass."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["liquid, ice, lid", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["rusty, hat, dartboard", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a house with a wooden-framed roof structure."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, logo", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a piece of rock with a blue stick.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8a8b16deb8794d4b812a6b36cc6a3cd9", "c3a82df41875402285608ef13a55df57"], "properties": ["color, rock, stick", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of dots on a white background a black and white illustration of dots on a white background stock illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a rock formation", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "dd3a9323ed514ccab330973ff9588015"], "properties": ["water, river, island", "room, bed, desk"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small room with a bunk bed"], "question": "which entity has a desk?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, green, lawn", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a wooden staircase with a railing and table."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "956247bea850458199c651037d4b1d7f"], "properties": ["shape is sphere, color is white, material is plastic", "railing, table, staircase"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["hat, bag, blanket", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["fireplace, bench, log", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["roof, air conditioner, house", "outfit, color, green"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is a top and pants?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "5f8c7eda0f464019a4acea243114555d"], "properties": ["color, blue, components", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, structure, house", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "a2354f13774340d392fbf33564934aab"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, roof, yellow"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small white archway structure resembling a building."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "5ad02458cf394134a902e25001d2ffef"], "properties": ["room, bed, desk", "structure, building, archway"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d rendering of a white object on a white surface"], "question": "which entity is a building?", "label": 1}, {"captions": [" a celtic stone cross.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- material is stone- shape is cross- color is black", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d image of a small island in the middle of a lake"], "question": "which object is made of grass", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["a box, a cup, a bottle, a jar", "paint, rust, concrete"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a concrete wall"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a wooden billiard table with legs."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "legs, material, wood"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a green mountain with trees and grass."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, truss, lamp", "mountain, grass, tree"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, bird, lake", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a bench on a wooden floor"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "c3a82df41875402285608ef13a55df57"], "properties": ["house, roof, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with a black roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "c3a82df41875402285608ef13a55df57"], "properties": ["a, color, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a small house on a hill in a field."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, trusses, beams", "house, hill, field"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a roof structure", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a large steel building with a pool."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, roof, block", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, truss, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a purple roof and glass block structure."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["roof, green, lawn", "roof, color, purple"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a glass roof"], "question": "which roof is made of a different color", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a child's room in a small house with windows."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "88847a6445044bcbab9611e6028a19b9"], "properties": ["floor, wall, roof", "room, house, windows"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which room has windows", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["stair, table, chair", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house with a pond and situated on a rock."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "92859eb82a344134806b37cc209927c6"], "properties": ["color, grass, moss", "house, rock, pond"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["yellow, table, roof", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a white motorcycle with wings.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, wings", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, door, suitcase", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["fireplace, bench, log", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a four-legged metal workbench with shelves."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["chair, table, refrigerator", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "a2354f13774340d392fbf33564934aab"], "properties": ["building, balcony, street", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an old building", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, plane, town", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a wooden billiard table with legs."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["Cabinet, Drawers, Filing", "legs, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["desk, chair, lamp", "a, desk, laptop"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["s, chimpanzee, human, wolf", "paper, hole, sign"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" of a small red renault clio car.", " of a blue ford escort car."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "fa3da8623db242c082e2915b12873186"], "properties": ["color is red, make is renault, model is clio", "color, blue, ford escort"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "of a black leather bracelet on a white background"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a classic car royalty free 3d model preview no 2"], "question": "which car is blue", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a tree with green leaves."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "1a902b67735845198efb1b84f434b580"], "properties": ["color, shape, size", "leaf, color, green"], "captions_pred_pc": ["a black and white illustration of the letter u", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a tree with a lot of foliage"], "question": "which entity is green", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, blue, structure", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["floor plan, ceiling light, color", "mountain, grass, tree"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "a24872444e5c468a9264d503a9ca7276"], "properties": ["metal, rusted, paper", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a white castle composed of small cubes."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["light source, fixture, color", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["house, fence, dog", "house, building, people"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, white, containers", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, room, sky", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["green dumbbell ", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color is green, shape is dumbbell, material is metal", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " of two rocks with ice elements."], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["resembles, sea urchin, shell", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, b, c", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" of a tu-22m3 fighter jet in flight.", " a house with a flat roof structure."], "sample_ids": ["77d80048cd7f4320846a5895c1649018", "abc52d210d71415296730bb00352ce6f"], "properties": ["image size, image, aircraft", "roof, flat, structure"], "captions_pred_pc": ["above a black and white image of an arrow in the shape of an arrow", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a fighter jet flying in the sky royalty free 3d model", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "12093c89a60941e7884b252bdc05104c"], "properties": ["roof, room, ceiling", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, hole, rock", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a house with a green, wooden-structured roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, red, green, blue", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["light, toilet, faucet", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "06a1c233fb444830b577aa06e2c01294"], "properties": ["bread, chocolate, cake", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a loaf of bread", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, pink", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a toilet", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["color, handle, zipper", "nut, bowl, ring"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d rendering of a white object on a gray background"], "question": "which object has a bowl", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small white house with a roof."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["location, field, gravestone", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, brown, flat", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white of a house with a hole in the ceiling."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, bird, lamp", "bedroom, bathroom, bed"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, light, jewels", "color, sphere, molecule"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity has a molecule with spheres?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " of a white chest of drawers with legs."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["mossy, rock, grass", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["roof, metal, white", "shape is box, color is white, door is present"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a white, open shelving unit"], "question": "which building is white", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " of two rocks with ice elements."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["railing, table, staircase", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, purple, suspended", "black, roof, green"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a white glass beer mug."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, height", "color, white, glass"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, shape, texture", "wing, knife, boat"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": [" a marble wall plaque featuring a relief with statues of people.", " a house with a roof and beams."], "sample_ids": ["0b82ae7b151044de8404f93ea9a4557c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["type, relief, statues", "roof, beams, house"], "captions_pred_pc": ["a black and white photograph of a piece of paper with water droplets on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a marble plaque depicting a group of people", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["chair, table, refrigerator", "a, desk, laptop"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["backrest, curved, yes", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "star wars stormtrooper "], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a, eagle, wood", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["770e577c9795435898209fd24191635b", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["image, color, light", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a white 3d model of a small town", "a 3d model of a city skyline in white"], "question": "which image has a city with buildings and a gold spoon?", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, helmet, airplane wing", "wing, knife, boat"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a white chest of drawers with legs."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["room, bed, desk", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a door", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " of a white chest of drawers with legs."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["blue, curved, resembles", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, door, window", "house, table, chair"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["97f487941d26472294e005fa97c403be", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, green", "house, tree, hill"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an office building", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["small purple teapot with a hook.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "f1b557775310478893242180defa4d80"], "properties": ["color, purple, hook", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "c3a82df41875402285608ef13a55df57"], "properties": ["bedroom, bathroom, bed", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " of a black tray with three green rings on it."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "77d47814be1c4d1e8fd6207af2f4e095"], "properties": ["color, shape, material", "color, black, rings"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of three dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d rendering of a tray with three rings on it"], "question": "which object has more rings", "label": 1}, {"captions": [" a small house with a red roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["085db9059b744673b5623b5338e02196", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, red, house", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white dotted square on a white background", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small purple plastic chair with holes."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["house, fence, dog", "color, plastic, purple"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "d81d13362ae04371bb2cba46e4939665"], "properties": ["building, floor, columns", "hat, bow, arrow"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a white human skull with broken bone elements."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a house with a roof and beams."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["structure, columns, roof", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["A, a, a", "Brown, metal, lock"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a wooden roof structure with a pink roof."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["collection, plane, car", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a pair of yellow pliers.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, yellow, pliers", "color, green, squirt gun"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, white, furniture, black", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is white", "label": 1}, {"captions": ["green dumbbell ", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "5f8c7eda0f464019a4acea243114555d"], "properties": ["color is green, shape is dumbbell, material is metal", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a spider-like creature with long arms and legs."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["water, river, island", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity is an arachnid", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small triangular-shaped object."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "2d02985030804209a26c2c53b96a06f9"], "properties": ["building, stairs, shelves", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a train, a ship, a boat", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a wooden billiard table with legs."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, texture", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a pool table"], "question": "which entity has legs made of wood", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a white chest of drawers with legs."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["s, plane, house", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white silhouette of a map", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a white dresser"], "question": "which entity has legs", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "lion, statue, fountain"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a metal object"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d image of a lion statue on a wall"], "question": "which object is a statue?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, structure, house", "structure, columns, roof"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with multiple levels"], "question": "which structure has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "tv, chair, laptop"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, roof, tray", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "bf18bfd89efd43389781050230467d58"], "properties": ["roof truss, insulation, suspended ceiling", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a wooden roof structure with a pink roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, yard, surrounding buildings", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, sphere, molecule", "image, color, white"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a woman in a red dress holding a tennis racket, wearing a hat.", " of two rocks with ice elements."], "sample_ids": ["b89b19ddadd04d6799e90b611c889bae", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, dress, racket", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a dendritic cell", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a woman holding a tennis racket", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, size", "room, door, shelf"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small, snow-covered house."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, table, chair", "house, snow, cover"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "d81d13362ae04371bb2cba46e4939665"], "properties": ["brown, paint, tape", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a white glass beer mug."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "1d686cbd3e9a4c629a43088658989286"], "properties": ["light switch, electrical outlet, furniture", "color, white, glass"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, orange, leather", "paint, rust, concrete"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a concrete wall"], "question": "which object is made of a material that is not leather?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- color is red, blue, pink", "Cabinet, drawer, wood"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, tree, rock", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["resembles, toy, bookshelf", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "of a spike on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, purple", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a large house with a roof on a platform."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, trusses, beams", "roof, platform, house"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "bf18bfd89efd43389781050230467d58"], "properties": ["frame, truss, roof", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a large building with a roof and windows.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["roof, windows, building", "house, building, people"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a black floor lamp with a wooden round base, black shade, and attached cord.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["03db87a02e3847f8a712a362de9a314d", "c3a82df41875402285608ef13a55df57"], "properties": ["Base material is Wooden, Shade color is Black, Cord color is Black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bomb on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black floor lamp with a round shade on top", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small house with a yellow roof and chimney."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, color, yellow", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which roof is yellow", "label": 1}, {"captions": [" a house with a roof and beams.", " of two rocks with ice elements."], "sample_ids": ["c139e8fcbdbc4f63a9c8a06152c4dc2e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, beams, house", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a 3d object in the shape of a square", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["adec10493e06436c967d5797f7085225", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, material, shape", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, light, jewels", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a white of a spaceship and building."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["building, roof, white, cubes", "image, building, spaceship"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a sword with a wooden handle."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "bf448dbb4b6a43d89b2514929e8f7c43"], "properties": ["texture, spikes, eyes", "handle, material, wood"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a sword on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a sword with two blades"], "question": "which object has a handle made of wood", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a wooden shed with a gray roof."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["house, roof, green", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " of a small white building with stairs and a lid."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["structure, columns, roof", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["red, mouse, handwriting", "house, lake, pool"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["a knife, blade, handle", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a stone wall featuring carvings and statues."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["apse, roof, floor plan", "carving, statue, wall"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d image of a group of statues on a wall"], "question": "which entity has a flat roof", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["roof, green, lawn", "cup, bottle, chessboard"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is on a chessboard?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small white house with a roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, color, blue", "roof, color, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["house, staircase, table", "table, staircase, light"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a table with a staircase"], "question": "which staircase is in the house", "label": 0}, {"captions": [" of a toy mushroom character with a white and brown head.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, head, white and brown", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a plant growing out of a rock"], "question": "which entity is a low poly of a plant on a white object?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, table, chair", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "b896a0898efe4059a776193c02132129"], "properties": ["color, red, blue, green", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["background, color, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black line on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "402601779d1d4146b4cde106dfff1b27"], "properties": ["- material is plastic- shape is dice- color is white", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a snowflake in the air on a cloudy day"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" of a large gray sphere", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "a17477b445b3443189dad22f768b888b"], "properties": ["size, color, shape", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["color, shape, and size", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "97e000ff41094665afd94ea565da8b13"], "properties": ["base, speaker, light", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, white, red, pink", "costume, color, black"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e602ac60041f4b4f84c044161e478781"], "properties": ["lighthouse, fountain, crater", "floor, wall, roof"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, roof, green", "house, fence, dog"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a metal-framed wall with red and blue bars in a steel structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fefc99453e2d4406a9668d5697224c0f"], "properties": ["color, shape, and size", "color, red, blue, structure"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a person holding a toothbrush"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a metal frame structure"], "question": "which entity is a structure?", "label": 1}, {"captions": ["\"3d white flower, black and white tree and plant silhouettes, and heart with leaves\"", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1ffbc9486bce4634ba09914be33af4e0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, heart, leaves", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white drawing of a tree with branches", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a house with a wooden-framed roof structure.", " a large steel building with a pool."], "sample_ids": ["ef2edaf670a64ec29114d7eeeaec7776", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, material, wood", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a staircase", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a character wearing glasses and a hat."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["- color is white- shape is cubes- number is 1", "hat, glasses, character"], "captions_pred_pc": ["a close up of a black and white striped scarf", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "c4c09479570943e2845fbd4c6a450568"], "properties": ["water, river, island", "castle, island, house"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small house on an island"], "question": "which entity has a castle on it?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["chair, table, refrigerator", "a, island, resembles, hawaii"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a spiral staircase with a railing in a small building."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, shape, tower", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "bded33af34104b9686b845dfd18309a9"], "properties": ["painting, door, wall", "table, staircase, light"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, tan, brown, orange", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a truck on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small white house with a roof."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, building, people", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, air conditioner, house", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small, snow-covered house."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, structure, house", "house, snow, cover"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["ceiling, beams, light", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["floor, table, light", "building, plane, room"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["beige, head, bottle", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["light source, fixture, color", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, fence, playground", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a two-story small apartment building with a roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, color, red", "two-story, roof, building"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["yellow metal barricade ", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is yellow, material is metal, height is 0.5 m", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a white barrier on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " of a white human skull with broken bone elements."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["striped, white, black", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "db74ee1621464be1b164be26a1af050e"], "properties": ["a, booth, bed", "window, arches, wall"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a white building with a red roof."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, blue", "color, white, roof, red"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white ceramic vase with brown and beige swirls, stripes, and splatter on it.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["3965acb1aabd4440b9738ebd9c7965fa", "92498f398e244020a867686729633610"], "properties": ["color, material, shape", "a, house, cat, dog"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a white ceramic vase with a cracked glaze on the surface", "a 3d model of a person standing in front of a wall"], "question": "which entity is a man", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "7f8942ef51dd4246993a587a12df168c"], "properties": ["collection, color, black, handle, wooden", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, structure, truss", "color, white, plastic"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "c3a82df41875402285608ef13a55df57"], "properties": ["screen, monitor, stand", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["railing, glass, table", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["bowl, pottery, headpiece", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["image is a sculpture of an angel on a wall", "a, material, clay"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a, hole, shelf", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a collage?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["roof, structure, house", "house, color, white"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "bded33af34104b9686b845dfd18309a9"], "properties": ["turrets, flags, towers", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, size", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a 3d white cube with windows resembling a building."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "4a07a5293f024bb0a353954a056ef626"], "properties": ["background, color, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a cube"], "question": "which entity is whiter", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "c017bfb82db1460cafff604c0808793f"], "properties": ["house, roof, toothbrushes", "a, suit, cell, phone, gun"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "97e000ff41094665afd94ea565da8b13"], "properties": ["s, chimpanzee, human, wolf", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a room, a cake, a table", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room", "label": 0}, {"captions": ["a 3d white cube with a square in the middle.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, shape, size", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white illustration of the letter u", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of a small white building with stairs and a lid."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["broom, shovel, fireplace", "building, stairs, lid"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, white, black, white", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a wooden box with a lid"], "question": "which object has a drawer", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small, snow-covered house."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, tree, pool", "house, snow, cover"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, background, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, beams, chimney", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 0}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "white cylindrical 3d object resembling a roll of soap or tube of cream."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "d8d6903a2dd54b8e9aa12fad2155b372"], "properties": ["- material is stone - color is blue - shape is arrowhead", "cylinder, white, roll"], "captions_pred_pc": ["above a black and white drawing of an arrow", "in 15 words or less a black and white image of a dotted object on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a white pillow on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, structure, wall", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a black and white striped fly in the air."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, green, lawn", "black, white, fly"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "a17477b445b3443189dad22f768b888b"], "properties": ["color, green, handle", "roof, pillar, stairs"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["base material is wood, color is red, message is welcome to northwich", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a sword with a wooden handle."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["color, shape, size", "handle, material, wood"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white image of a sword"], "question": "which object is made of wood", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "bf18bfd89efd43389781050230467d58"], "properties": ["color, wheel, helmet", "Lights, number, five"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small wooden house with a green roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, air conditioner, house", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a tree with green leaves."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "1a902b67735845198efb1b84f434b580"], "properties": ["background, color, white", "leaf, color, green"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, shape, and material", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "c3a82df41875402285608ef13a55df57"], "properties": ["color, pattern, wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "a17477b445b3443189dad22f768b888b"], "properties": ["- material is plastic- color is green- shape is box", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, white, holes", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": ["white ceramic face sculpture resembling an ice cream blob.", "white ceramic face sculpture resembling an ice cream blob."], "sample_ids": ["8abc3a28cbba40428c9b364f90a4982a", "8abc3a28cbba40428c9b364f90a4982a"], "properties": ["blob, face, white", "blob, face, white"], "captions_pred_pc": ["above a black and white photograph of a starfish", "above a black and white photograph of a starfish"], "captions_pred_image": ["a 3d model of a head with eyes and a nose", "a 3d model of a head with eyes and a nose"], "question": "which entity has a white ceramic face sculpture resembling an ice cream blob?", "label": 0}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["image, color, pink", "books, paper, lamp"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a black and white photograph of a toilet paper holder"], "question": "which entity is a still life?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is wood, metal, metal", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["hat, bow, arrow", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["a room, a cake, a table", "outfit, color, green"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity has a top and pants?", "label": 1}, {"captions": ["a white of a spaceship and building.", " a clay pot with holes in it."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image, building, spaceship", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red and white robot.", " a small white box with a green light."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, red, white", "color, white, light"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["Arms, Legs, Color", "metal, legs, wheels"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Lights, number, five", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a small house with a red roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1da865c75a5e4a57a17652975dae5474"], "properties": ["roof, red, house", "color, white, plastic"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["sandbox, sand bucket, wooden blocks", "broom, shovel, fireplace"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d81d13362ae04371bb2cba46e4939665"], "properties": ["yellow, table, roof", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof trusses, beams, suspended ceiling", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["apse, roof, floor plan", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, shape, size", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, color, white", "building, material, stone"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, color, case", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, texture", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["screen, keyboard, box", "box, paper clip, lock"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "411c164757fc4de68dfecb35fa858223"], "properties": ["building, color, black and white", "resembles, sea urchin, shell"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["white of a rhino head with horns.", "white of a rhino head with horns."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "8481aade84de47cab1a9accf8067e678"], "properties": ["image, rhino, head", "image, rhino, head"], "captions_pred_pc": ["of a penguin skull in black and white", "of a penguin skull in black and white"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head with horns?", "label": 0}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "roof, color, yellow"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, white, pen, logo", "gold, ring, animal"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white image of a shark"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a white teapot with pink flowers and a handle."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "f6c5e8931d164979a71914127c7e5438"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, handle"], "captions_pred_pc": ["of a spike on a white background", "a black and white dots on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a white tea kettle with a black handle and floral design"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["floor plan, heating system, ceiling light fixture", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["bed, desk, window", "floor, staircase, balcony"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, hill, deer", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, texture", "building, plane, room"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["small purple teapot with a hook.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, purple, hook", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of a bowl", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity is a fireplace?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "ee440fcbc493488e879539d37a8d820e"], "properties": ["color, shape, and material", "island, fish, ice"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d map of the country of israel"], "question": "which entity is a island?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " of a hammer with a long metal handle."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["base, speaker, light", "handle, metal, long"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["a, hill, deer", "ceiling, light, desks"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["- color is white - shape is box - material is plastic", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small white building with stairs and a white table."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "e30374c614f54fdb90f35b96b071349d"], "properties": ["collection, plane, car", "building, stairs, table"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a wooden bowl and barrel.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["286b00e69e8f42b4b864b63980164c43", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["bowl is wooden, barrel is wooden, shape is barrel", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a marble bowl on a white background royalty free 3d model preview no 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["- color is white- shape is cubes- number is 1", "roof, brown, flat"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a blue and green penguin."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "50e0e11060df4c0db6a44daf3f32639d"], "properties": ["color, shape, material", "color, blue, green"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a ball with dots on it"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a penguin sitting down"], "question": "which entity is a blue and green penguin?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["floor, wall, roof", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with a roof"], "question": "which entity has a roof that is not yellow?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, height", "color, pattern, word"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["frame, screen, color", "island, mountain, grass"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["roof trusses, beams, suspended ceiling", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["a train, a ship, a boat", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small building with windows and a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, structure, truss", "roof, windows, building"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" of a sword and knife.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, sword, knife", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of an ak-47 rifle."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "18e1f60286d346728f650984f4ae70aa"], "properties": ["a, roof, soup", "AK-47 rifle is a weapon"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "of a black and white image of a fishing rod"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a rifle on a gray background"], "question": "which is a weapon", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, pants, shirt", "roof, pillar, stairs"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a large metal building with a roof and truss structure."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "b85a99699ccd4bcba213322113bb253d"], "properties": ["pattern, color, shape", "roof, truss, structure"], "captions_pred_pc": ["a black circle on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "97e000ff41094665afd94ea565da8b13"], "properties": ["ceiling, beams, light", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white container with a lid, labeled \"real vanilla,\" containing white powder, resembling a yogurt or raw ice cream container with a logo.", " a house with a purple roof and glass block structure."], "sample_ids": ["ecd1d75076b641b382b670987e8a55ab", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["container, powder, white", "roof, color, purple"], "captions_pred_pc": ["in 15 words a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a clear plastic container with a white label on it", "a 3d model of a building with a glass roof"], "question": "which entity has a roof that is the color of purple", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a wooden roof structure with a pink roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["room, door, shelf", "roof, color, pink"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a, bird, lake", "house, hill, forest"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white image of a small island in the middle of a body of water"], "question": "which island has a house on a hill?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["turrets, flags, towers", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a white and blue building with a black roof."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, color, pink", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" of a deer on a grassy hill.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, hill, deer", "s, laptop, printer"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a black and white image of an electronic device"], "question": "which entity has a laptop?", "label": 0}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["a box, a cup, a bottle, a jar", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "a white glass beer mug."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["holder, spring, box", "color, white, glass"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["lighthouse, fountain, crater", "mossy, rock, grass"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a piece of wood on a white background"], "question": "which entity has a tree stump?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["color, orange, leather", "bed, desk, window"], "captions_pred_pc": ["a black and white illustration of a chair", "of a black and white drawing of a curved line"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which room has a bed", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["castle, island, house", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a floating small island with trees", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, red, apples, tree, cactus, dots", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["base material is wood, color is red, message is welcome to northwich", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", "a black and white of a knife/sword with a handle."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["table lamp, ceiling light, table", "image, color, black and white"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["an oval table with a mouse on top of it", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["screen, monitor, stand", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a pair of yellow pliers.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, yellow, pliers", "throne, stairs, tree"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["color, shape, texture", "building, door, clock"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white image of a church with a steeple"], "question": "which entity has a door", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["- color is red, blue, pink", "throne, stairs, tree"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, pattern, field", "building, plane, room"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, wheel, helmet", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["white pendant light fixture ()", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, material is metal, light source is incandescent", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white hanging light fixture with a white shade", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["size, material, lighthouse", "box, handle, gun"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "4a889132cc444d10bfcbf6c760984416"], "properties": ["image, house, ceiling", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a house", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d model of a desk and chair"], "question": "which image shows a house with a hole in the ceiling?", "label": 0}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, trusses, ladder", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 0}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["black, white, coffee table", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white 3d model of a building", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color is white, material is plastic, shape is tube", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a broom on a stand", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a white object on a gray background", "a white 3d model of a city skyline"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a pink, ear-shaped object."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["color is white, yellow, plastic", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a small wooden house with a green roof."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["hair, legs, wings", "roof, color, green"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white of a woman with her arms outstretched."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, light, jewels", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, gun", "door, lock, handle"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white image of a door with a crack in it"], "question": "which entity is a door?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, purple, suspended", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " of a wooden windmill with a red roof."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["building, roof, balcony", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "a2354f13774340d392fbf33564934aab"], "properties": ["color, table, ceiling", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, metal, white", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, material", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "40921ffd69db479294554d261daf3035"], "properties": ["floor, table, light", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white image of a computer screen"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a spider-like creature with long arms and legs."], "sample_ids": ["d6087023095446fbadef1721478373b2", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["door, roof, window", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, color, yellow", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a house with a wooden roof"], "question": "which structure has a roof truss?", "label": 1}, {"captions": [" a blue character with arms outstretched.", "star wars stormtrooper "], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, size", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a star wars stormtrooper"], "question": "which is white", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small triangular-shaped object."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "2d02985030804209a26c2c53b96a06f9"], "properties": ["house, fence, dog", "shape, triangle, small"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, staircase, window", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, stairs, ladder", "table, plant, wood"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["brown, paint, tape", "Brown, metal, lock"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a brick building with a roof structure and roof truss."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "84e8acad28664a738df69d719df9e263"], "properties": ["building, roof, white, cubes", "roof, structure, truss"], "captions_pred_pc": ["above a black and white image of a map", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": ["a baseball card in a clear plastic case.", "a baseball card in a clear plastic case."], "sample_ids": ["5046b4bb61e4480a8c0e8911c2053a04", "5046b4bb61e4480a8c0e8911c2053a04"], "properties": ["case, baseball, card", "case, baseball, card"], "captions_pred_pc": ["above a black and white image of a pencil on a white background", "above a black and white image of a pencil on a white background"], "captions_pred_image": ["a black and white photo of a hockey player's autographed jersey hanging on a wall", "a black and white photo of a hockey player's autographed jersey hanging on a wall"], "question": "which entity is a baseball card in a clear plastic case?", "label": 0}, {"captions": [" a small house with a blue roof.", " a large house with a roof on a platform."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, blue", "roof, platform, house"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, background", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["- material is plastic- color is white- shape is cube", "house, fence, playground"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, green, handle", "Wheels, laptop, robot"], "captions_pred_pc": ["of a small black object on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["screen, monitor, stand", "buildings, houses, grass"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["hat, cup, bowl", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "of a black and white bracelet on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": [" a brick wall with grass.", " a green mountain with trees and grass."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["brick, grass, wall", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a black and gold pistol."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "402b57a5e32540b4938db1a9d3976220"], "properties": ["color, grass, moss", "color, black, gold"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a toothbrush"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a gun royalty-free 3d model preview no."], "question": "which object is made of black and gold?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a spiral staircase with railings."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["hat, food, bowl", "railings, staircase, spiral"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" of a machine gun.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["gun, barrel, caliber", "torso, breasts, pattern"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "839a873262a544c9906f3f5799ca4648"], "properties": ["shape, color, material", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a pair of socks", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "f1b557775310478893242180defa4d80"], "properties": ["rusty, sink, graffiti", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "da8b5d21da9b4037982f29383d60b100"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "resembles, toy, castle"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a tower made out of blocks"], "question": "which entity is made of stacked blocks with holes in them", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["acropolis, city, building", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a house with a blue roof.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, color, blue", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a white of a woman with her arms outstretched."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a large steel building with a pool."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["computer desk, laptop, monitor", "building material, pool, steel"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, truss, lamp", "door, lock, handle"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, model, white house", "roof, color, yellow"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a house with a roof"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" of a white chest of drawers with legs.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["f00dfa8b5e7e4fc6bbf97d718b66f390", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["chest of drawers, legs, white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white leopard print rug", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white dresser", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["s, stick, leaf", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, blue, components", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, orange, white", "earphones, wire, instrument"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "9968e06a62e8487ea33460e640abc573"], "properties": ["boxing gloves, heart, hand", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of the human heart", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["color, shape, and size", "roof, truss, lamp"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a metal roof"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, material", "platform, color, orange"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a motorcycle on a pedestal"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small wooden house with a green roof."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["desk, chair, table", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a tree with green leaves."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "1a902b67735845198efb1b84f434b580"], "properties": ["base, speaker, light", "leaf, color, green"], "captions_pred_pc": ["above a black and white illustration of a clock", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a tree with a lot of foliage"], "question": "which entity has a green color", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["red, mouse, handwriting", "bedroom, bathroom, bed"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["yellow, table, roof", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity has a molecule featuring spheres of different colors?", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, city, train", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, red, green, blue", "color, silver, white"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a silver ball on a gray background"], "question": "which object is made of silver and white?", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " of a wine corkscrew"], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["resembles, sea urchin, shell", "a, type, corkscrew"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["a, b, c", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white drawing of a submarine", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["building, stairs, shelves", "a, building, coin, ball"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["- building is white, table is white, piles of paper are white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a snowy landscape", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small white building with stairs and a white table."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "e30374c614f54fdb90f35b96b071349d"], "properties": ["books, paper, lamp", "building, stairs, table"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a building with a staircase"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "b896a0898efe4059a776193c02132129"], "properties": ["pos machine, credit card machine, cash register", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "b896a0898efe4059a776193c02132129"], "properties": ["bedside table, wheels, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["bedroom, bathroom, bed", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "92498f398e244020a867686729633610"], "properties": ["furniture, staircase, torn-apart", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a person standing in front of a wall"], "question": "which entity has a staircase?", "label": 0}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a stone wall with a window and a clock."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["roof truss, insulation, suspended ceiling", "window, clock, wall"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white of a house with a hole in the ceiling."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, white, red, pink", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, light, jewels", "roof, structure, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["furniture, staircase, torn-apart", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a person with outstretched arms", " of a person with outstretched arms"], "sample_ids": ["fc785c3c22794ccb9c8a58c79ac5bec6", "fc785c3c22794ccb9c8a58c79ac5bec6"], "properties": ["arms, outstretched, person", "arms, outstretched, person"], "captions_pred_pc": ["a black and white image of a pair of eyes", "a black and white image of a pair of eyes"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model preview no.2", "a 3d model of a man with his arms outstretched royalty free 3d model preview no.2"], "question": "which entity has a person with outstretched arms?", "label": 0}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["e-cigarette, cartridge, bottle", "roof, metal, white"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a wine corkscrew"], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, booth, bed", "a, type, corkscrew"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["apse, roof, floor plan", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["castle, island, house", "water, boat, rock"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "a17477b445b3443189dad22f768b888b"], "properties": ["color, roof, pink", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a four-legged metal workbench with shelves."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["a train, a ship, a boat", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a spiral staircase with railings."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d rendering of a staircase in a room"], "question": "which entity is a staircase?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a wooden roof structure with a pink roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["houses, trees, road", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, blue", "a, material, clay"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "34a49861e7744acfb71de471a755e917"], "properties": ["pattern, color, shape", "text, material, shape"], "captions_pred_pc": ["a black circle on a white background", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d rendering of a marble slab with text on it"], "question": "which object is more a sign", "label": 1}, {"captions": ["a red and black drone with wheels and propellers.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["1cd3d0db9ec744549124443e6dd0a9f8", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, wheel, propeller", "Eye color, Black, Purple"], "captions_pred_pc": ["above a black and white image of a toy car on a white background", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["the image is displayed at 1000x1000 pixels", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "09f2cf267e954c958828325067bcc36a"], "properties": ["house, plane, town", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a wooden tv stand with two drawers and handles."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "6409380e790442e6a5733eb447d4c510"], "properties": ["location, field, gravestone", "Drawer, Handle, Wood"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d rendering of a wooden entertainment center"], "question": "which object is made of wood", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a black and white striped box."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, shape, gun", "color, black, white"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, white, red, pink", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a small brown metal box with a handle and lock on it."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "b5577a917c6343c1befcaf81e6da648b"], "properties": ["- material is metal- color is silver- texture is textured", "Brown, metal, lock"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a black box with a lock"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a large industrial building, including a factory and warehouse."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e3d0e407049c43f39c3aaa74667f56b1"], "properties": ["house, color, white", "building, type, factory"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a city skyline on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2"], "question": "which building is a factory", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a white castle composed of small cubes."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, black, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a large white and metal building with a metal roof structure."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, blue", "roof, metal, white"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small white house with a roof."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a, island, resembles, hawaii", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["house, fence, dog", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a four-legged metal workbench with shelves."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- color is red, blue, pink", "Four legs, Metal, Shelf"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "bf18bfd89efd43389781050230467d58"], "properties": ["chair, table, refrigerator", "Lights, number, five"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["sonic the hedgehog with a red nose and blue monster features.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["f2a462cfea214cd894692af7544f8441", "6b745457e06840119058883b35f78f58"], "properties": ["color, nose, blue", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a funny monster", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a cartoon character", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small triangular-shaped object.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2d02985030804209a26c2c53b96a06f9", "b896a0898efe4059a776193c02132129"], "properties": ["shape, triangle, small", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a piece of metal", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black piece of furniture on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a white fox."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, head, white and brown", "color, white, fox"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, blue, rim, blue", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["boat, table, chairs, umbrella, solar panel", "outfit, color, green"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is a top and pants?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["resembles, toy, bookshelf", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, black, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["a, roof, soup", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a wooden table with a plant on it."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["color, temperature, england", "table, plant, wood"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a room"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a 3d printed model of white and red robots on a red platform."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "0fa560c2fd9f4422a97356c947ac3b46"], "properties": ["a knife, blade, handle", "color, red, white"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a person sitting on a bench"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a robot standing on top of a table"], "question": "which object is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a white castle composed of small cubes."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["house, lake, pool", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small white house with a roof."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, yard, surrounding buildings", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["size, color, design", "roof, brown, flat"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["room, door, shelf", "building, color, black and white"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, island, water", "house, pool, balcony"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["house, roof, wooden", "roof, structure, greenhouse"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building with a roof"], "question": "which house has a roof structure", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, white, pink, eyes", "a, color, white"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a desk and chair"], "question": "which entity is not a dog?", "label": 0}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a computer with a green screen, keyboard, and white box."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "fb1e5a04ef4644f98219e1d5d52ab073"], "properties": ["Drawer, Pattern, White", "screen, keyboard, box"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a vintage computer royalty-free 3d model preview"], "question": "which object has a white box?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a wooden roof structure with a pink roof."], "sample_ids": ["b5afccae993346079483507296fbb029", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["shape is square, material is metal, color is rusty", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["Parts, Luggage, Truck", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "b896a0898efe4059a776193c02132129"], "properties": ["house, fence, dog", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["blue, lid, handle", "metal, rusted, paper"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be a rusted metal", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a small white house with a roof."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["light, floor, ceiling", "roof, color, white"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "c3a82df41875402285608ef13a55df57"], "properties": ["handle, knife, shotgun", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a popsicle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small house with stairs and a roof."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["collection, moose, skull", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, size", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a large steel building with a pool."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, truss system, framing", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small triangular-shaped object."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "2d02985030804209a26c2c53b96a06f9"], "properties": ["chair, table, refrigerator", "shape, triangle, small"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black piece of furniture on a white background"], "question": "which object is a triangle", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a stone wall featuring carvings and statues."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["bed, desk, window", "carving, statue, wall"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a clay pot with holes in it."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["frame, truss, roof", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a chair with a yellow seat."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, blue, green, yellow, blue", "color, yellow, seat"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, purple", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", "a 3d white cube with windows resembling a building."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "4a07a5293f024bb0a353954a056ef626"], "properties": ["roof, color, pink", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a building with yellow lines.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "c3a82df41875402285608ef13a55df57"], "properties": ["color, yellow, lines", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a map", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "40285a60f32749a8ae38957c7b073fe8"], "properties": ["s, chimpanzee, human, wolf", "color, yellow, black"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a set of three black and white keychains on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3"], "question": "which entity has more colors", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a white building with a red roof."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, blue, roof, black", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "b896a0898efe4059a776193c02132129"], "properties": ["house, roof, wooden", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a broken human skull and stone bowl."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["base material is wood, color is red, message is welcome to northwich", "skull, bowl, human"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a ceramic bowl with a large crack in the middle"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "674a36147ffb47059e48abc9fa19d923"], "properties": ["color, white, background, gray", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["above a black and white photograph of an object", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sandbox?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a house with wooden framing and trusses."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, skyline, buildings", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a window"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a red, blue, and green striped tower building."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["yellow, table, roof", "color, red, blue, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building has more colors", "label": 1}, {"captions": ["yellow metal barricade ", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "c3a82df41875402285608ef13a55df57"], "properties": ["color is yellow, material is metal, height is 0.5 m", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a white barrier on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a coffee table", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "star wars stormtrooper "], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["house, building, people", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a blue human brain.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["06b780971c1d474faadc005c1036f1f7", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a human skull with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a human brain royalty free 3d model preview no. 1", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "96d127abd21049689918e671ec613ef8"], "properties": ["building, skyscraper, city", "axe, hammer, spoon"], "captions_pred_pc": ["a black and white drawing of an airplane", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a building?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["ruined building, stone floor, small stone structure", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "c3a82df41875402285608ef13a55df57"], "properties": ["image, color, black and white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a knife", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a wooden staircase with a railing and table."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "956247bea850458199c651037d4b1d7f"], "properties": ["house, lake, pool", "railing, table, staircase"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a computer desk with a metal cube and a black and blue object on it."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "ccae0199457440e68db47a936191afe5"], "properties": ["color, material, shape", "a, color, black, blue"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white illustration of a sofa with a cushion on top"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a desk with a laptop on it"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a white glass beer mug."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "1d686cbd3e9a4c629a43088658989286"], "properties": ["Drawer, Pattern, White", "color, white, glass"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, size", "color, black, visor"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a pink, ear-shaped object.", " a clay pot with holes in it."], "sample_ids": ["0e08d777c7b948a784dc15748e7b173f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["shape is ear, color is pink, material is plastic", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "c3a82df41875402285608ef13a55df57"], "properties": ["color, background, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a white plastic object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["Arms, Legs, Color", "door, roof, pool"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a wooden table with two barrels.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8bba7567253040d88973320107e48055", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, barrels, wood", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black circle on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a barrel table royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a building with yellow lines."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, shape, light", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "d49d8ed244094349a99e4faca05e0690"], "properties": ["cup, bottle, chessboard", "low poly, plant, white"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a plant growing out of a rock"], "question": "which object is on a white object", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "3e22efacf9ee40a1a6b2e4b72a7314d2"], "properties": ["a, booth, bed", "a, booth, bed"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a tv screen with dots all over it royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d rendering of a room with a black and white color scheme"], "question": "which entity has a showroom", "label": 0}, {"captions": [" a house with a green roof and lawn.", " a house with a roof and beams."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, green, lawn", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which house has a roof with beams?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, size", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which object is larger", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "4389909667db472ea9a57a70eb940fa4"], "properties": ["size, color, shape", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["screen, monitor, stand", "island, terrain, water"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "a17477b445b3443189dad22f768b888b"], "properties": ["color, label, shape", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "73e7107ff3634516846bccad04c5dc87"], "properties": ["a, plane, small plane", "blue, curved, resembles"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d rendering of a white bathroom sink"], "question": "which object is not a plane?", "label": 0}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " of a wooden staircase with marble floor and wooden railings in a house."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "ee70964ce5e841bd87381cff40d59b88"], "properties": ["railing, glass, table", "floor, staircase, railings"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white drawing of a light switch"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a staircase on a marble surface"], "question": "which staircase has wooden railings", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, eagle, wood", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a house with a roof and beams."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, mouth, eyes", "roof, beams, house"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small wooden house."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["tiers, building, stairs", "house, material, wood"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, door, clock", "house, rock, bird"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small wooden house with a green roof."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, holes", "roof, color, green"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a black shark", " a small white house with a roof."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["black, mouth, teeth", "roof, color, white"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["background, color, white", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, roof, toothbrushes", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1ee3df6f94ea4c329a9c5245634e34d5"], "properties": ["color, door, window", "graffiti, chinese writing, door"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a bridge with dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a black and white image of a bathroom with a sink and a toilet"], "question": "which building has a door with chinese writing?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, leg, tail", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, shape, texture", "broom, shovel, fireplace"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, horns, features", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with a blue roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["frame, truss, roof", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, color, pink", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small house on a hill in a field."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, truss, lamp", "house, hill, field"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a large gray sphere", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["size, color, shape", "stair, table, chair"], "captions_pred_pc": ["a black and white circular pattern on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a staircase in a room"], "question": "which entity is a staircase?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["graffiti, chinese writing, door", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a gnome toy wearing a striped hat."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "72f220d616de466fa1315c1c9bbb5c4c"], "properties": ["color, shape, and size", "hat, toy, gnome"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a crocodile"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a stuffed gnome wearing a striped hat"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "5414d75e47104589837f3df8b6de6d22"], "properties": ["size, color, design", "beige, white, round"], "captions_pred_pc": ["a black and white pattern on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is smaller", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "12093c89a60941e7884b252bdc05104c"], "properties": ["roof, stairs, house", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, white, plastic", "wood, board, shelf"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["yellow metal barricade ", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is yellow, material is metal, height is 0.5 m", "box, handle, gun"], "captions_pred_pc": ["a white barrier on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "c3a82df41875402285608ef13a55df57"], "properties": ["metal, legs, wheels", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an old metal locker", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "a17477b445b3443189dad22f768b888b"], "properties": ["color, hat, glasses", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "6a8cc820f00a4cfc954d56e2b1f6206a"], "properties": ["color, white, containers", "- material is plastic- color is white- shape is cylinder"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "in 15 words or less a black and white drawing of a plate"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a cake with a black and white design on the top of the cake"], "question": "which object is white", "label": 1}, {"captions": [" of a pink cactus in a black pot, resembling various pink and black objects and accessories.", "star wars stormtrooper "], "sample_ids": ["3da4f2b3ae5a40cf839b61d9445405e3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, material", "a, color, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of a black and white object", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a black square featuring two circles, one as a ring and another as a hole.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9b3ee92252ee493fb6cb8aeb39d88345", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a shark's dorsal fin", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black square on a white background royalty-free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a potted christmas pine tree."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["a, building, staircase", "a, color, green"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["shape, color, material", "mossy, rock, grass"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a piece of wood on a white background"], "question": "which rock is mossy", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["metal, laptop, light fixture", "throne, chair, building"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a house with a roof and beams."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["food, leaves, shredded paper, rocks", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a bird in flight", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "cafc467aff2643e8b70149c4944263ee"], "properties": ["hat, sword, gun", "wing, knife, boat"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["box, paper clip, lock", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a hole in it?", "label": 0}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a pond and situated on a rock."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "92859eb82a344134806b37cc209927c6"], "properties": ["roof, color, purple", "house, rock, pond"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house in the middle of a field"], "question": "which house has a pond?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a house with wooden framing and trusses."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, pattern, wall", "island, terrain, water"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small black and white cube.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, size", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["rusty, sink, graffiti", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, shape, size", "hippo, hind, legs"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "990f06da2ba4488da8371f68da6b4523"], "properties": ["color, table, ceiling", "roof truss, beams, structure"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a wooden roof"], "question": "which structure has a wooden roof truss?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a four-legged metal workbench with shelves."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- material is wood, metal, metal", "Four legs, Metal, Shelf"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a large house with a roof on a platform."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, door, window", "roof, platform, house"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, blue", "roof, color, green"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["frame, beams, trusses", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": ["modern tan leather lounge chair.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, tan, leather", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d pixelated minecraft model of a small city with buildings, trees, and a village.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["36fedf68eee24461886fb8d4a38eea00", "06a1c233fb444830b577aa06e2c01294"], "properties": ["pixelated, model, village", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a snowflake in the shape of a virus 3d illustration a black and white illustration of a snowflake in the shape of a virus royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a futuristic city", "a black and white image of a house in the middle of a field"], "question": "which entity has a village on a hill?", "label": 1}, {"captions": [" of a wooden bowl and barrel.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["286b00e69e8f42b4b864b63980164c43", "c3a82df41875402285608ef13a55df57"], "properties": ["bowl is wooden, barrel is wooden, shape is barrel", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a marble bowl on a white background royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " of a black and white striped fly in the air."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["striped, white, black", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a stack of books", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a potted christmas pine tree.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "c3a82df41875402285608ef13a55df57"], "properties": ["a, color, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a rusty boat, piece of wood, and brick wall.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4dec97bbe6fe46f89768ecd849003a13", "a17477b445b3443189dad22f768b888b"], "properties": ["rusty, piece, wall", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photograph of a brick wall", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a stone slab on the ground royalty-free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["house, color, white", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a bench", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is wood, rusty, horned", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["3d model of a plague doctor's mask", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["throne, chair, building", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a mushroom in grass?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", "a white of a man with arms outstretched."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["rocky, rug, puddle", "image, color, white"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a clay pot with holes in it."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, room, ceiling", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color is white, yellow, plastic", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a bag with a zipper on it"], "question": "which entity is made of rock", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["earbuds, light, ring", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["bed, desk, window", "house, hill, forest"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, bench, rack", "Cabinet, drawer, wood"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, blue, components", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " of a small white building with stairs and a lid."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, mouth, eyes", "building, stairs, lid"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a futuristic white sports racing car."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["orange, forklift, parking lot", "color, white, futuristic"], "captions_pred_pc": ["a black and white illustration of a cell phone", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a futuristic sports car"], "question": "which car is white", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, material, size", "a, material, steel"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["size, color, design", "color, frame, shape"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a purple and green sphere.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, shape, size", "axe, handle, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "a2354f13774340d392fbf33564934aab"], "properties": ["color, red, green, yellow", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of two rocks with ice elements."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, temperature, england", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["building, roof, balcony", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a building with many windows"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["- material is plastic- color is white- shape is cylinder", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["d6087023095446fbadef1721478373b2", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["door, roof, window", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a potted christmas pine tree."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["room, door, shelf", "a, color, green"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a wooden billiard table with legs."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is white- color is white- texture is textured", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a cube", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white purse with a strap.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["dae133bae5cb4496b956f03e1fb7e402", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, strap", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a watch with dots on it", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white purse with a strap", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["door, roof, pool", "structure, roof, pitch"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a house"], "question": "which house has a pitched roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["water, river, island", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is stainless steel- color is silver- shape is round", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black ribbon on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a large metal building with a roof and truss structure."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof trusses, beams, suspended ceiling", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a building", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small white building with stairs and a white table."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e30374c614f54fdb90f35b96b071349d"], "properties": ["houses, trees, road", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["fireplace, bench, log", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a robot with a blue, purple, and white body."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, black, white", "body, color, white"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "above a black and white image of a robot"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a robot standing in the middle of a white background"], "question": "which entity has a white body?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "e694d53545d449319a64cceb0280c3c6"], "properties": ["a, hole, shelf", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": ["a white of a cat with a long tail.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d7bfdc30f37c438f9b9ab40769d6f7da", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["tail, white, cat", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of an animal toy", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a cartoon cat", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a house with a green, wooden-structured roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a wooden frame with a picture in it.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["9dcf94c293de427daba9dceee624e728", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["picture, frame, material", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white image of a long, decorative piece of jewelry", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a framed picture on a wall", "a 3d image of a white tray with an intricate design"], "question": "which object has more trays", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a wine corkscrew"], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["color, screen, drawer", "a, type, corkscrew"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["rusty, sink, graffiti", "Black, Shelf, Metal"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a black shelf with square tiles"], "question": "which entity has a shelf that is hanging?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof structure, truss, ceiling", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d rendering of a house on a rock"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["ruined building, stone floor, small stone structure", "a city, train, dragon"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a line drawing of an airplane flying in the sky"], "question": "which entity has a city?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "7f8942ef51dd4246993a587a12df168c"], "properties": ["3D, toothpick, skateboard", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a truck on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, horns, features", "image, building, stairs"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["wall, stairs, castle", "roof, structure, wall"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building with a roof"], "question": "which structure has a roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a spider-like creature with long arms and legs."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, roof, toothbrushes", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "d49d8ed244094349a99e4faca05e0690"], "properties": ["a, bird, lake", "low poly, plant, white"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, background, white", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, material, frame", "frame, beams, trusses"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a building under construction"], "question": "which building structure has a frame made of beams and trusses", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is plastic- color is white- shape is cylinder", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a metal object"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["s, chimpanzee, human, wolf", "building, plane, room"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, yellow, white, wheels", "- material is wood, rusty, horned"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "e44009d33258425e8efedfbc6823bf70"], "properties": ["a, island, water", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white photo of a boat in the water", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "c3a82df41875402285608ef13a55df57"], "properties": ["color, stone, green, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a circle of black dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a fruit bowl with an apple, on a table.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["64c3d61ba7b549b5b7c72b37d7532b48", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["apple, bowl, table", "flower, color, pink"], "captions_pred_pc": ["for a white object on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["fireplace, stick, surround", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a black and white photograph of a toilet paper holder"], "question": "which object is not a pile of paper?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a wooden roof structure with a pink roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, texture", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a pair of yellow pliers.", " a small purple plastic chair with holes."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, yellow, pliers", "color, plastic, purple"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a pair of scissors on a white background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a white of a man with arms outstretched."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a black and white doily on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "09f2cf267e954c958828325067bcc36a"], "properties": ["building, tree, plane", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["house, staircase, table", "island, terrain, water"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, blue, rim, blue", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white bowl on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " of a wooden windmill with a red roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, material, structure", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a windmill on a gray background"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "be1376023c274bdda995d54f3694157f"], "properties": ["color, white, railing, black", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a small white building with stairs and a white table."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "e30374c614f54fdb90f35b96b071349d"], "properties": ["black, laptop, shelf", "building, stairs, table"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "star wars stormtrooper "], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["houses, trees, road", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a small village featuring houses", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a brick building with a roof structure and roof truss."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "84e8acad28664a738df69d719df9e263"], "properties": ["background, color, white", "roof, structure, truss"], "captions_pred_pc": ["a black line on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a yellow and blue toy submarine."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["roof, air conditioner, house", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a window", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a spiral staircase with a railing in a small building."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["graffiti, chinese writing, door", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a staircase in a white room"], "question": "which building has a staircase with a railing?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["buildings, houses, grass", "roof, air conditioner, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a yellow and blue toy submarine."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, shape, and size", "color, yellow, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a submarine toy"], "question": "which object is yellow?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a blue roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, green, lawn", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["bird, resembles, crow, pigeon", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a bird in flight", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "b896a0898efe4059a776193c02132129"], "properties": ["frame, chalkboard, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white image of a television on a wall", "of a white candle in the shape of a buddha"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, hat, glasses", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a white of a man with arms outstretched."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, shape, text", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a piece of paper"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, building, staircase", "houses, trees, road"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, gazebo, table", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a large metal building with a roof and truss structure."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["light, floor, ceiling", "roof, truss, structure"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " of a wooden windmill with a red roof."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["size, material, shape", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, green, lawn", "beige, white, round"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["moss, mushroom, grass", "building, room, sky"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a wooden house with a roof and birdcage structure."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "3e4527c9c8e940b5806b8a69967a90b8"], "properties": ["structure, roof, pitch", "roof, structure, material"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of the letter 'f' on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a, ball, mushroom", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it?", "label": 1}, {"captions": [" a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["ddaac41b6efd4dd0b7bf8d441441555e", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["railing, chair, light", "railing, chair, light"], "captions_pred_pc": ["above a black and white image of a letter 'g'", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a 3d model of a bench on a white background royalty free 3d model no.3", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair with a glass top?", "label": 0}, {"captions": [" a green and black bat-winged sword with green flames.", " a house with a green, wooden-structured roof."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", "a white of a man with arms outstretched."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["hat, pants, shirt", "image, color, white"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small wooden house with a green roof."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["lamp, harp, bowl", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a house with a ladder"], "question": "which object is not a lamp", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["size, material, color", "resembles, sculpture, rock"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["rusty, hat, dartboard", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, horns, features", "color, background, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "an image of a white background with a few small cubes on it"], "question": "which entity is white", "label": 0}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "46903bf029934b1989bc062dcb0a5531"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white image of a flying saucer", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a house with a wooden-framed roof structure."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, bird, hook", "roof, material, wood"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " of a large axe with a cross on top."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, material, texture", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a spider's head", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["ceiling, light, desks", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "aef9b23a78a7450286a961cc13448d00"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a roof that is green and tiled?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a large metal building with a roof and truss structure."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, logo", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a building with blue metal framing and structure."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["a, material, steel", "color, blue, structure"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a building under construction"], "question": "which structure is blue", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "ee440fcbc493488e879539d37a8d820e"], "properties": ["cup, bottle, chessboard", "island, fish, ice"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["table, stairs, ladder", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small house with a tree and a rock."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["a, door, suitcase", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, room, ceiling", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["color, grass, moss", "hat, mustache, chef"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a chef's hat"], "question": "which entity is a model of a chef?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small wooden house with a green roof."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["dial, face, band", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Wheels, laptop, robot", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a wooden table with metal legs and frame."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["image is a sculpture of an angel on a wall", "metal, legs, frame"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d rendering of a white wooden table"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small white barn with a metal roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "4ca3342a96824684845f7d0e062ab176"], "properties": ["background, color, white", "roof, metal, white"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a small wooden house with a roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, air conditioner, house", "roof, house, wooden"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a white castle composed of small cubes."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, material, texture", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, roof, tray", "color, white, gold"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "766a075b4760433bafdbe88bee546796"], "properties": ["floor, table, wall", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wall covered in graffiti", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["meat, bread, sausage", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a brush on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "bf18bfd89efd43389781050230467d58"], "properties": ["image, color, pink", "Lights, number, five"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a small white box with a green light.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, white, light", "house, table, chair"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "402601779d1d4146b4cde106dfff1b27"], "properties": ["costume, color, black", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a snowflake in the air on a cloudy day"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a wooden frame with gold trim, featuring a picture of a river surrounded by trees.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["25b86d7272e849f0967149243601bcbf", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["frame, picture, frame", "house, tree, pool"], "captions_pred_pc": ["a black and white patterned square on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a lake with trees in the background royalty free 3d model preview no.3", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, roof, block", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["yellow, table, roof", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building on top of a table"], "question": "which entity has a chair?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "26c47880756b4876b4f263373c3c5303"], "properties": ["house, color, white", "building, material, steel"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a large structure with multiple levels"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, color, blue", "house, staircase, table"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "09f2cf267e954c958828325067bcc36a"], "properties": ["castle, island, house", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a piece of dirt on the ground"], "question": "which island has diverse terrain?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["texture, spikes, eyes", "hat, mustache, chef"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a chef's hat"], "question": "which entity is a model of a chef?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a stone wall with a window and a clock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["chair, table, refrigerator", "window, clock, wall"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["food, leaves, shredded paper, rocks", "building, plane, city"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a large white and metal building with a metal roof structure."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which building has a white metal roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["yellow, table, roof", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "9968e06a62e8487ea33460e640abc573"], "properties": ["frame, roof, trusses", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a house under construction", "a white object on a gray background"], "question": "which object is not a tube?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, truss system, framing", "black, roof, green"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " of a character wearing glasses and a hat."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["hat, shirt, bearded", "hat, glasses, character"], "captions_pred_pc": ["of a black and white bracelet on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": ["white 3d tank model", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, model is 3d, name is tank", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "18e392c5360146eda498c5edab25b15c"], "properties": ["arm, jacket, mannequin", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d model of a building under construction"], "question": "which entity has fewer beams", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "white ceramic urn with a red lid."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color is white, material is plastic, shape is box", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a white plastic tray", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a spiral staircase with a railing in a small building."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["black, white, laptop", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white photograph of a light switch"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, screen, drawer", "resembles, toy, castle"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a tower made out of blocks"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["bed, desk, window", "structure, roof, pitch"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["painting, door, wall", "structure, roof, pitch"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["a white of a spaceship and building.", " a small white building with stairs and shelves."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "9e1f64d4fd514059be934077717536dc"], "properties": ["image, building, spaceship", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, mouth, eyes", "color, frame, shape"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["747110c073314ee39ef2f4a8d63222da", "4a889132cc444d10bfcbf6c760984416"], "properties": ["s, laptop, printer", "a, color, white"], "captions_pred_pc": ["a black and white image of a pair of scissors", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of an electronic device", "a 3d model of a desk and chair"], "question": "which entity has a white box?", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, material", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "225e4094141d416faba7c5598dc55ff8"], "properties": ["background, color, white", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a spider-like creature with long arms and legs."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["floor, staircase, table", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "a17477b445b3443189dad22f768b888b"], "properties": ["a, bird, lamp", "roof, pillar, stairs"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["floor, ceiling, poles", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a green mountain with trees and grass."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["building, roof, white, cubes", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a house with a roof and beams."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["A, a, a", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, material", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a metal structure", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["color, skyline, buildings", "nut, bowl, ring"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a white object on a gray background"], "question": "which entity is a nut", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a white and blue building with a black roof."], "sample_ids": ["d6087023095446fbadef1721478373b2", "c893118316ee43e18322e5964b2806c5"], "properties": ["door, roof, window", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, white, yellow, roof, metal", "roof structure, truss, ceiling"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure with a wooden truss?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of a cross", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["a, hole, rock", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof and a ceiling with a hole?", "label": 1}, {"captions": [" featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c553ba67fa914165a07a1f1d20581f19", "97e000ff41094665afd94ea565da8b13"], "properties": ["cat, bowl, donut", "roof, material, wood"], "captions_pred_pc": ["a close up view of the back of the chair", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, black, white", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a white bunk bed with a ladder.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "b896a0898efe4059a776193c02132129"], "properties": ["bed, ladder, color, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "of a white candle in the shape of a buddha"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, grass, moss", "a, island, resembles, hawaii"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["houses, trees, road", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "arrow, red, white"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, green, squirt gun", "roof, brown, flat"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a lamp, a syringe, a light pole", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, red, green, blue", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a glove", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and gray glove", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["fireplace, bench, log", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, white, base, slanted", "houses, trees, road"], "captions_pred_pc": ["above a black and white drawing of a chair", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a chair", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, bird, lake", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["computer desk, laptop, monitor", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["image is a sculpture of an angel on a wall", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d rendering of a white box on a wooden floor"], "question": "which object is on a wooden table?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "bf18bfd89efd43389781050230467d58"], "properties": ["structure, building, archway", "Lights, number, five"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a white van with a logo on the side.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "f1b557775310478893242180defa4d80"], "properties": ["color, logo, side", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, green, tiled", "table, staircase, light"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small house on a hill in a field."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, truss, suspended ceiling", "house, hill, field"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small building with windows and a roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, temperature, england", "roof, windows, building"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, tree, pool", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, tan, leather", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hoodie, ball, person", "box, paper clip, lock"], "captions_pred_pc": ["for a person standing in front of a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a white teapot with pink flowers and a handle."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "f6c5e8931d164979a71914127c7e5438"], "properties": ["face, handle, spout", "color, white, handle"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white dots on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a white tea kettle with a black handle and floral design"], "question": "which object has a handle", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["a, island, water", "table, staircase, light"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["resembles, toy, castle", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " a large building with a roof and windows."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "32d1fbd3ee91426882290305f70021e6"], "properties": ["shape is cube, color is black, white", "roof, windows, building"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a wooden shed with a gray roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, color, red", "roof, color, gray"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "b896a0898efe4059a776193c02132129"], "properties": ["white, windows, lid", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island with trees", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["blue tarp, flower, small island", "house, fence, playground"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "6398f4e75a2d480da58396827ac64249"], "properties": ["s, plane, house", "- color is red, blue, pink"], "captions_pred_pc": ["a black and white silhouette of a map", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which entity has more colors", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a large orange pumpkin."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["shape is sphere, color is white, material is plastic", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["floor plan, heating system, ceiling light fixture", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a house", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house"], "question": "which house has a door", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color, grass, moss", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "1da865c75a5e4a57a17652975dae5474"], "properties": ["handle, knife, shotgun", "color, white, plastic"], "captions_pred_pc": ["of a popsicle on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "a2354f13774340d392fbf33564934aab"], "properties": ["color, red, blue, green", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "12093c89a60941e7884b252bdc05104c"], "properties": ["- material is wood, metal, metal", "giraffe, bench, flower"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a building with blue lines and structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, white, railing, black", "color, white, gold"], "captions_pred_pc": ["above a black and white image of a computer screen", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" of a wall featuring various potted plants.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["54d03259a316434e9c670a52a7e5a92e", "766a075b4760433bafdbe88bee546796"], "properties": ["image, wall, plants", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a black and white image of a knife on a white background", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a black and white image of a wall with bullet holes", "a 3d model of a wall with graffiti on it"], "question": "which image shows a wall covered in graffiti?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["location, field, gravestone", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, air conditioner, house", "structure, columns, roof"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with multiple levels"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white box with a green light.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, white, light", "box, paper clip, lock"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, house, wooden", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which house has a ladder?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white of a cat with a long tail."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "d7bfdc30f37c438f9b9ab40769d6f7da"], "properties": ["A, a, a", "tail, white, cat"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of an animal toy"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white 3d model of a cartoon cat"], "question": "which entity is a cat?", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "b896a0898efe4059a776193c02132129"], "properties": ["hat, candy, strawberry", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of two spheres", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["earbud, earpiece, earpiece", "earbuds, light, ring"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a white object on a grey background", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has earbuds", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "443554d4d7044c66aa8cbff63c737589"], "properties": ["apse, roof, floor plan", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is not pink and blue", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["4f21fa937959487a96350af527d75421", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["window, frame, room", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a metal cage", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 0}, {"captions": [" a small island with trees, water, and a river.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["water, river, island", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "7f8942ef51dd4246993a587a12df168c"], "properties": ["cup, bottle, chessboard", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["yellow metal barricade ", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color, white, plastic"], "captions_pred_pc": ["a white barrier on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, grass, moss", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small triangular-shaped object."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "2d02985030804209a26c2c53b96a06f9"], "properties": ["tiers, building, stairs", "shape, triangle, small"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a house with a roof and beams."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["compartments, wall-mounted, vents", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small wooden house."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, tree, rock", "house, material, wood"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a clay pot with holes in it."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, yellow, black", "hole, material, clay"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "92052c493bf141a08b56f30f9c5e2d61"], "properties": ["chair, table, refrigerator", "light, toilet, faucet"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a white plastic toilet paper holder on a gray background"], "question": "which entity has a light", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "bded33af34104b9686b845dfd18309a9"], "properties": ["- material is plastic- color is green- shape is box", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house with a flat roof structure."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "abc52d210d71415296730bb00352ce6f"], "properties": ["s, stick, leaf", "roof, flat, structure"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house with a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["house, lake, pool", "roof, house, small"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a potted christmas pine tree."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a, color, green"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["wing, knife, boat", "torso, breasts, pattern"], "captions_pred_pc": ["a black umbrella on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, island, water", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a roof, featuring roof truss, insulation, and a suspended ceiling."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c1462fda08db4a769f68adae5c88cd43"], "properties": ["color, roof, tray", "roof truss, insulation, suspended ceiling"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of an arrow pointing to the right"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a white bench with a grid pattern"], "question": "which house has a roof truss", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, hill, deer", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, background, white", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, texture", "house, tree, hill"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["earbud, earpiece, earpiece", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["white pendant light fixture ()", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is white, material is metal, light source is incandescent", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a black and white map of the state of new york"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, green, lawn", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, background, gray", "striped, white, black"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a stack of books"], "question": "which box is white and black?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a white glass beer mug."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "1d686cbd3e9a4c629a43088658989286"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, glass"], "captions_pred_pc": ["of a spike on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, shirt, pants", "house, rock, bird"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["orange, forklift, parking lot", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a black shark", "star wars stormtrooper "], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["black, mouth, teeth", "a, color, white"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a japanese geisha in a metal frame with a triangular-shaped metal door.", " of two rocks with ice elements."], "sample_ids": ["0a75511848d74b7f97422ad85a27ec2e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["frame, door, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a line of black dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a framed picture of a geisha with a fan in her hand", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, black, shade, black", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a four-legged metal workbench with shelves."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["a, eagle, wood", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "a2354f13774340d392fbf33564934aab"], "properties": ["building, stairs, shelves", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["3d printed white gear wheel model", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d9aba59b3bc645f5926c8dbac67fa42d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color is white, material is 3d printed, object is a gear wheel model", "island, mountain, grass"], "captions_pred_pc": ["a circular saw blade on a white background 3d illustration of a circular saw blade on a white background 3d illustration of a circular saw blade on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a", "a 3d image of a small island in the middle of a lake"], "question": "which object is made of grass", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "d81d13362ae04371bb2cba46e4939665"], "properties": ["house, hill, forest", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["hair, legs, wings", "paint, rust, concrete"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a concrete wall"], "question": "which entity has more rust", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white of a small archway gate."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["background, color, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white illustration of an arch"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["pattern, color, shape", "a, material, clay"], "captions_pred_pc": ["a black circle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, number", "a, outfit, green"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house with a wooden-framed roof structure."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, desk, laptop", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, bird, lamp", "Wheels, laptop, robot"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white image of a suitcase on wheels"], "question": "which entity has a bird", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " a house with a wooden-framed roof structure."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, landscape, sand", "roof, material, wood"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a small house on a hill in a field."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["base material, wood, shade color, white, beige", "house, hill, field"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a black and white image of a small house"], "question": "which object is more likely to be in a field", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["roof, purple, suspended", "house, roof, green"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["headboard, wall, strip", "water, boat, rock"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor, table, wall", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a small house with a blue roof.", " a large steel building with a pool."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, color, blue", "building material, pool, steel"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "dd3a9323ed514ccab330973ff9588015"], "properties": ["- material is plastic- color is white- shape is cylinder", "room, bed, desk"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a door"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a small room with a bunk bed"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a clear glass display case with a square light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["980ded888795417f94b46750105e1597", "97e000ff41094665afd94ea565da8b13"], "properties": ["light, fixture, square", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a room with dots on the floor", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a clear plastic box", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a white glass beer mug."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, orange, leather", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["white, rock, shell", "mountainous, landmass, state"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, green, orange, star", "roof, color, yellow"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a room"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a white castle composed of small cubes."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["house, roof, green", "composed of, white, cubes"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, plane, room", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", "a low-poly of a white, shattered sphere."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, texture", "sphere, color, texture"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["color, orange, leather", "building, roof, balcony"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a large steel building with a pool."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, structure, suspended", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "7f8942ef51dd4246993a587a12df168c"], "properties": ["apse, roof, floor plan", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, table, chair", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house with a roof"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "a yellow and blue toy submarine."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["roof, brown, flat", "color, yellow, blue"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "9b6a637ead444bd28452178c74697653"], "properties": ["graffiti, bench, wall", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["for a black and white image of a boat", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which image shows a beaver on a skateboard?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small triangular-shaped object."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "2d02985030804209a26c2c53b96a06f9"], "properties": ["a train, a ship, a boat", "shape, triangle, small"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a submarine", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["bowl, pottery, headpiece", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "6b745457e06840119058883b35f78f58"], "properties": ["roof, structure, greenhouse", "roof, color, blue"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["pattern, floor, light", "color, shape, color"], "captions_pred_pc": ["a black and white image of a patterned square", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "c8936ace72954650b4e2d84246964849"], "properties": ["top, color, wood", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which object has a pink roof", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " of two rocks with ice elements."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white wooden crate.", " of a white rectangular shelf or light fixture on a gray background."], "sample_ids": ["8f4cf8c72e424d9386406b40dbe56501", "a84221f27ed0416280f8e67563f95ed7"], "properties": ["color, material, shape", "background, color, white"], "captions_pred_pc": ["a black and white square with dots on it", "a black line on a white background"], "captions_pred_image": ["a 3d model of a wooden crate royalty free 3d model preview no 3", "a long white plastic strip on a gray background"], "question": "which object is white", "label": 0}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a roof structure and toothbrushes."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, roof, tray", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a white box with a lot of blades"], "question": "which house has a roof structure?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a house with a roof and beams."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, umbrella, coat", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a tree made of dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a wooden roof structure with a pink roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, rock, pond", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a 3d white ring adorned with flowers and leaves.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "a 3d rendering of a metal box with a handle"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["color, shape, light", "ceiling, beams, light"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a light on the ceiling?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " of two rocks with ice elements."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, room, sky", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a small white toy cannon."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "a414258c6bf149708404913a89ab8dbc"], "properties": ["backrest, curved, yes", "color, white, toy"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a spider-like creature with long arms and legs."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["cup, bottle, chessboard", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small triangular-shaped object."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "2d02985030804209a26c2c53b96a06f9"], "properties": ["- color is red, blue, pink", "shape, triangle, small"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Black, Shelf, Metal", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a large white and metal building with a metal roof structure."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color is white, yellow, plastic", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "f1b557775310478893242180defa4d80"], "properties": ["color, black, shade, black", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a robotic warrior with a sword."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["shape is sphere, color is white, material is plastic", "weapon, sword, robot"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a green skull and sphere.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, skull, sphere", "axe, handle, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "f1b557775310478893242180defa4d80"], "properties": ["graffiti, bench, wall", "shack, roof, door"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d49d8ed244094349a99e4faca05e0690"], "properties": ["bed, desk, window", "low poly, plant, white"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" an old castle in a grassy field.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "c8936ace72954650b4e2d84246964849"], "properties": ["field, grass, castle", "roof, color, pink"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white drawing of a toilet"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color of pink", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a gray, metal pillar/cylinder."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["red, pile, garbage", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["above a black and white illustration of a triangle", "of a black candle on a white background"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, purple, beams", "roof, trusses, ladder"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, material", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a throne with a tree on it"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, house, wooden", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" a ruined building with broken windows, concrete, wood, and a rock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["81ca2e13dab34e9eabb2e345780aedd2", "c3a82df41875402285608ef13a55df57"], "properties": ["building, material, rock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a truck with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a damaged piece of furniture", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow window frame.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["b6777659013d4386987c5e26d7dc3f84", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, yellow, frame", "color, silver, white"], "captions_pred_pc": ["above a black and white image of a wall mounted shelf", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a white shelving unit", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a yellow roof and chimney."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof truss, insulation, suspended ceiling", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a roof with a chimney?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a house with a flat roof structure."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "abc52d210d71415296730bb00352ce6f"], "properties": ["floor, staircase, balcony", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["size, color, design", "door, lock, handle"], "captions_pred_pc": ["a black and white pattern on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a black and white image of a door with a crack in it"], "question": "which object has a lock", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["building, material, steel", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color of yellow", "label": 1}, {"captions": ["white 3d canoe model", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1d0342b454884db4bb88c939a69f6362", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a surfboard", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white canoe on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small, snow-covered house."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["apse, roof, floor plan", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a wooden staircase with a railing and table."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "956247bea850458199c651037d4b1d7f"], "properties": ["a, color, white", "railing, table, staircase"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a table with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, and size", "island, mountain, grass"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, purple, suspended", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["railing, table, staircase", "arrow, red, white"], "captions_pred_pc": ["above a black and white drawing of a window", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a red and white railing?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a stone wall featuring carvings and statues."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, red, blue, structure", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d image of a group of statues on a wall"], "question": "which wall is more decorative", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of two rocks with ice elements."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, room, ceiling", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "d49d8ed244094349a99e4faca05e0690"], "properties": ["fireplace, bench, log", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["ceiling, light, desks", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a chessboard on a beige ceiling tile.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["beige, tile, chessboard", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a leopard print banner", "a black and white drawing of a tree"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a potted christmas pine tree."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, texture", "a, color, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a christmas tree in a vase"], "question": "which entity has a color that is not blue and green?", "label": 0}, {"captions": [" a potted plant on a wooden table or shelf.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["potted plant, table, shelf", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a plant in a pot", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, trusses, beams", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white teapot with pink flowers and a handle."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f6c5e8931d164979a71914127c7e5438"], "properties": ["color, shape, and size", "color, white, handle"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white tea kettle with a black handle and floral design"], "question": "which object is white", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, structure, house", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a roof"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " of a small white building with stairs and a lid."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, umbrella, coat", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a tree made of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "db74ee1621464be1b164be26a1af050e"], "properties": ["roof truss, insulation, suspended ceiling", "window, arches, wall"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a white human skull with broken bone elements."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a white of a woman with her arms outstretched."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["- color is white- shape is cubes- number is 1", "image, color, white"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small black box on a purple square.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["75f209e543c046669099190953616acc", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden frame with gold trim, featuring a picture of a river surrounded by trees.", " of two rocks with ice elements."], "sample_ids": ["25b86d7272e849f0967149243601bcbf", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["frame, picture, frame", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white patterned square on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a lake with trees in the background royalty free 3d model preview no.3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "d81d13362ae04371bb2cba46e4939665"], "properties": ["arrow, mountain, area", "hat, bow, arrow"], "captions_pred_pc": ["a line with a square on it", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["house, building, people", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, color, blue", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with many windows", "a white 3d model of a city skyline"], "question": "which image has a wooden shelf?", "label": 1}, {"captions": ["a collection of white s featuring a person holding a bat, riding a horse, holding a sword, riding a skateboard, as a batman character, and holding a baseball bat.", " of a white human skull with broken bone elements."], "sample_ids": ["ce4453db136e4e9db2ca0f86814059b4", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["s, batman, batman character", "color, white, skull"], "captions_pred_pc": ["above a black and white illustration of a man in a batman costume", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a superhero with a sword in his hand royalty free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which is not a skull", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a house with a green, wooden-structured roof."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, material, shape", "house, table, chair"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d rendering of a small white table with a chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "06a1c233fb444830b577aa06e2c01294"], "properties": ["red, pile, garbage", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " a small white house with a roof."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["wheeled, cart, cannon", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a white rocket ship.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, size", "cover, black, plastic"], "captions_pred_pc": ["above a black and white illustration of a planet", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", "star wars stormtrooper "], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof truss, chimney, suspended ceiling", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "e602ac60041f4b4f84c044161e478781"], "properties": ["roof, truss, lamp", "floor, wall, roof"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "bf18bfd89efd43389781050230467d58"], "properties": ["color, white, black, white", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a wooden roof structure with a pink roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["computer desk, laptop, monitor", "island, terrain, water"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["black, roof, green", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a wooden shed with a gray roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["castle, island, house", "roof, color, gray"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a shed with a gray roof"], "question": "which building has a roof that is the color of gray", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a white plastic tube or metal bar, resembling a knife."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "8fd3836862a44a8d8b4d224bfc30c2c3"], "properties": ["variation, bread, pot", "a knife, blade, handle"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white image of a shelf with a white background"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a piece of white plastic on a gray background"], "question": "which object has a blade and handle", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["floor plan, bathroom, pool", "room, door, shelf"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "bf18bfd89efd43389781050230467d58"], "properties": ["- material is wood, metal, metal", "Lights, number, five"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["shape is cylindrical, color is silver, material is metal", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "b896a0898efe4059a776193c02132129"], "properties": ["a train, a ship, a boat", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small building with windows and a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["frame, truss, roof", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white of a woman with her arms outstretched.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["2cbfaa4fb2d84a6f94e67b4fd6e2f26f", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["image, color, white", "black, screen, blank"], "captions_pred_pc": ["a black and white silhouette of a person on a skateboard", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a woman with her arms outstretched", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which image is black and white?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["broom, shovel, fireplace", "gold, ring, animal"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, shape, and material", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a large house/building structure with a roof.", "two white spheres in a ."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "1c02212a35134545ab63ab180d629c31"], "properties": ["roof, structure, house", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a white ball on a gray background"], "question": "which object is not a building?", "label": 0}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color is white, material is plastic, shape is box", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a wooden shed with a gray roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" a house with a yellow roof, wooden beams, and yellow frames.", " a window with a colorful frame."], "sample_ids": ["703dce44052e48cfb024bceb08141554", "59c7c35a04ce42dbb24e8f8e882c4127"], "properties": ["roof, beams, frames", "frame, color, window"], "captions_pred_pc": ["a black and white drawing of a boat", "a black and white image of a banner on a white background"], "captions_pred_image": ["a 3d model of a wooden structure", "a 3d rendering of a window in a wall"], "question": "which window has a colorful frame", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " of a person breaking through a brick wall."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, shape, material", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small triangular-shaped object."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, white, black, white", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a small, snow-covered house."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, house, wooden", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a house with dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "bea8441c08d94366b96b53775391d8e6"], "properties": ["A, a, a", "color, white, logo"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity is a t-shirt?", "label": 1}, {"captions": [" a green and black robot with cube-like features.", "a white of a woman with her arms outstretched."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["roof, metal, white", "striped, white, black"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a large white and metal building with a metal roof structure."], "sample_ids": ["6b745457e06840119058883b35f78f58", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, blue", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a building with dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "5414d75e47104589837f3df8b6de6d22"], "properties": ["striped, white, black", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a stack of books", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white and beige?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " of two rocks with ice elements."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["resembles, toy, castle", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "18e392c5360146eda498c5edab25b15c"], "properties": ["black, white, coffee table", "frame, beams, trusses"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a building under construction"], "question": "which entity is a building structure", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is stone - shape is bat", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, grass, moss", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, roof, soup", "house, fence, playground"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, brown, flat", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["door, white, structure", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["ruined building, stone floor, small stone structure", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, bowl, green", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a wooden chair."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "b2fc4bd184944704ad43d3a31817a676"], "properties": ["chair, table, refrigerator", "wood, chair, seat"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a close-up view of the bristle brush on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a chair"], "question": "which chair has a seat made of wood", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "411c164757fc4de68dfecb35fa858223"], "properties": ["shape is hot dog, design is dragon, color is black", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a 3d white cube with windows resembling a building."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "4a07a5293f024bb0a353954a056ef626"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "a17477b445b3443189dad22f768b888b"], "properties": ["black, white, laptop", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a square with dots"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large house/building structure with a roof.", "a white of a spaceship and building."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, structure, house", "image, building, spaceship"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a wooden shed with a gray roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["s, stick, leaf", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a shed with a gray roof"], "question": "which object has a roof that is the color gray", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white motorcycle with wings."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, wings"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" of an old, rusty, green metal locker and a large wooden box.", " of a small white building with stairs and a lid."], "sample_ids": ["9797ff34c99a43be86d27868b3f9cb6d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["metal, locker, box", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a white box on a gray background"], "question": "which object has a lid", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a low-poly of a white, shattered sphere."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, material", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a cracked egg"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a white and blue building with a black roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, roof, toothbrushes", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small building with windows and a roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["runner, bed, bench", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "92498f398e244020a867686729633610"], "properties": ["desk, chair, table", "a, house, cat, dog"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and dog?", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["hoodie, ball, person", "broom, shovel, fireplace"], "captions_pred_pc": ["for a person standing in front of a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["yellow metal barricade ", " a white plastic box/tray with a hole in the middle."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "04f8bfad8ad14795aced8a83ea30ca60"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color is white, material is plastic, shape is box"], "captions_pred_pc": ["a white barrier on a white background", "a black and white image of a rectangular tray on a white background"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a white plastic tray"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "star wars stormtrooper "], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["resembles, octopus, squid, spider, robot", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a spiral staircase with a railing in a small building."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["light switch, electrical outlet, furniture", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a white and blue building with a black roof."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, table, blocks", "color, white, blue, roof, black"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "6b745457e06840119058883b35f78f58"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["floor plan, heating system, ceiling light fixture", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, material, shape", "box, paper clip, lock"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a yellow roof and chimney."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, room, ceiling", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, windows, building", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white mannequin wearing a t-shirt and a purple dress on a stand.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6290ded27d644d1887299109117a735d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["mannequin, dress, color", "house, pool, balcony"], "captions_pred_pc": ["of a black plastic eye on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a mannequin wearing a white t-shirt on a pedestal", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " of two rocks with ice elements."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, stairs, table", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white of a spaceship and building."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["building, tree, plane", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a green mountain with trees and grass."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["background, color, white", "mountain, grass, tree"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, and material", "a, outfit, green"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a house with a wooden-framed roof structure."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["bedroom, bathroom, bed", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, door, clock", "building, plane, room"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["mannequin head, plague mask, straps", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "a 3d white cube with windows resembling a building."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "4a07a5293f024bb0a353954a056ef626"], "properties": ["stacked, racks, toy train", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a cube"], "question": "which object is whiter", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a wooden shed with a gray roof."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["furniture, staircase, torn-apart", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["mossy, rock, grass", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["image is royalty-free, beaver, skateboard", "blue, yellow, frog"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a piece of furniture"], "question": "which entity has a frog on a cart?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["striped, white, black", "color, frame, shape"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a red, blue, and green striped tower building."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["roof, green, lawn", "color, red, blue, green"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building has a green roof", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["fireplace, bench, log", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["room, house, windows", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "a17477b445b3443189dad22f768b888b"], "properties": ["red, mouse, handwriting", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["island, terrain, rocks", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["roof trusses, beams, suspended ceiling", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity has a roof trusses and wooden beams on a suspended ceiling?", "label": 0}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["red, eyes, rocket", "hat, shirt, bearded"], "captions_pred_pc": ["of a black and white image of a clock", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, pattern, material", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a large white vase on a grey background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["island, mountain, grass", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white map of the island of malta", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a machine gun.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["gun, barrel, caliber", "- material is wood, rusty, horned"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, trusses, ladder", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a white wooden crate.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["8f4cf8c72e424d9386406b40dbe56501", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, material, shape", "metal, legs, wheels"], "captions_pred_pc": ["a black and white square with dots on it", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a wooden crate royalty free 3d model preview no 3", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["house, lake, pool", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a wooden table and chair."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["color, tan, brown, orange", "table, chair, wood"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white pattern on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a small wooden table"], "question": "which is not a chair", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, tan, leather", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white map of the state of new york"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "c4c09479570943e2845fbd4c6a450568"], "properties": ["a, bird, lake", "castle, island, house"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a small house on an island"], "question": "which entity has a castle on an island?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["- material is metal- color is silver- texture is textured", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a bench on a wooden floor"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a wooden-cased radio."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, size", "case, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter u", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a white box on a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["97f487941d26472294e005fa97c403be", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, white, green", "window, arches, wall"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "d6087023095446fbadef1721478373b2"], "properties": ["house, roof, wooden", "door, roof, window"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of an apartment building"], "question": "which building has a green door", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", "a low-poly of a white, shattered sphere."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, roof, structure", "sphere, color, texture"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "e694d53545d449319a64cceb0280c3c6"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "3d, slide, swing"], "captions_pred_pc": ["a black and white image of a flying saucer", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a white and blue building with a black roof."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, blue, structure", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a clay pot with holes in it."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["roof, stairs, house", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a house with wooden framing and trusses."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- material is plastic- color is white- shape is cylinder", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a window"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "a2354f13774340d392fbf33564934aab"], "properties": ["house, fence, dog", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, door, suitcase", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["a, bird, hook", "hat, candy, strawberry"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, handle, straps", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white cube.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["94fbd38f3f9c454eafc09bf4d7544146", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a tree with leaves and roots."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "1c8dbf1b79c44cd09369d54897402528"], "properties": ["color, shape, texture", "leaf, root, trunk"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a tree on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a tree with roots"], "question": "which entity has more leaves", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["a, ball, mushroom", "turrets, flags, towers"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["hat, bag, blanket", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "bded33af34104b9686b845dfd18309a9"], "properties": ["pattern, floor, light", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a patterned square", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small building with windows and a roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, room, ceiling", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, material, lighthouse", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white photo of a water droplet", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["dial, face, band", "box, paper clip, lock"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["shape is cylindrical, color is silver, material is metal", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white toy cannon.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a414258c6bf149708404913a89ab8dbc", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, toy", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cannon on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["room, furniture, window", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a large metal building with a roof and truss structure."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, black, white", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a building with blue lines and structure.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, structure", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a white sofa, chair, and box."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "4c59733ebd634594a921b7ace60e4142"], "properties": ["tv, chair, laptop", "sofa, chair, box"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small, snow-covered house."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, brown, flat", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table and stool", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, table, ceiling", "arrow, red, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, color, pink", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a robot with a blue, purple, and white body.", " a small white box with a green light."], "sample_ids": ["6f98acb9e03c4cbd9c83f2c8f9cd3ddc", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["body, color, white", "color, white, light"], "captions_pred_pc": ["above a black and white image of a robot", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in the middle of a white background", "a 3d rendering of a small white box"], "question": "which entity has a white light?", "label": 1}, {"captions": [" a slice of rainbow cake with multicolored sprinkles on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["fc515651480c43b7a0712215939cc510", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, rainbow, sprinkles", "box, paper clip, lock"], "captions_pred_pc": ["a silhouette of the state of oregon on a white background silhouette of the state of oregon on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white photograph of a slice of cake", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, roof, tray", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "a2354f13774340d392fbf33564934aab"], "properties": ["house, roof, wooden", "building, roof, yellow"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a white bunny head"], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "260dfca84cc64848a6ea0fb74e0f4c92"], "properties": ["A, a, a", "color, white, head"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a microscopic image of a cell"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d white bunny head on a gray background"], "question": "which entity has a white head", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, lake, pool", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small blue robot with a windmill.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["5f915b161cc74fedad52d8663b41f87a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, blue, robot", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a 3d sculpture", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a wind turbine", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["floor plan, bathroom, pool", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, white, containers", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a wooden table with black and white square design and metal poles."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "ddff57e7f60e420688b477a1f78aa83f"], "properties": ["yellow, table, roof", "design, poles, table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a table with four legs and black and white stripes"], "question": "which table has a black and white square design and metal poles?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, roof, wall", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, brown, flat", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" of a set of ladders.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5152e8c6dd094e49b02b54ef1cd2fabc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, set, ladders", "a, material, clay"], "captions_pred_pc": ["above a white wall with a black square on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a shelving unit with multiple shelves", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["55b26130f1514032be078e13fd982905", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof structure, truss, ceiling", "building, plane, room"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small building with windows and a roof.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, windows, building", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["cover, torn, open", "door, lock, handle"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of a torn bank note", "a black and white image of a door with a crack in it"], "question": "which object has a lock", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "5017581716c7402581a82ebf08d427a3"], "properties": ["background, color, white", "Shelf, color, white"], "captions_pred_pc": ["a black line on a white background", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d rendering of a white shelf"], "question": "which shelf is white", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, trusses, beams", "roof, structure, suspended"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, pier, stairway", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a deer on a grassy hill.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a, hill, deer", "house, hill, forest"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, shape, gun", "building, material, stone"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["building, material, stone", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white shelf with holes and brackets.", "a black and white of a knife/sword with a handle."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, holes", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "of a black and white knife on a white background"], "captions_pred_image": ["a white bench with a shelf on top", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small wooden house with a green roof."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["metal, rusted, paper", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white of a house with a hole in the ceiling."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, white, containers", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a rock.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5cb24226a4c34ab5a924ce3ee5857cb6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["shape, color, texture", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photograph of an abstract shape", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["metal, roof, chest", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, green, lawn", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof with a ceiling mounted air conditioner?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["ceiling, light, desks", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a spider-like creature with long arms and legs."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["door, roof, pool", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, white, furniture, black", "color, white, gold"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a ring featuring a green and blue stone."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "de3a0907767b4ba6b7ccf99c45ccc0e5"], "properties": ["size, material, color", "color, stone, green, blue"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a circle of black dots on a white background"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d rendered image of a ring with a bee on it"], "question": "which is a ring", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof trusses, beams, suspended ceiling", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a large house with a roof on a platform."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "cb3e09a301b746918a682a595037c7f7"], "properties": ["s of, snowboard, shoes, mask", "roof, platform, house"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a small house"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "f39783d05dec49e49482c407d656e0f7"], "properties": ["a, plane, small plane", "a, plane, small plane"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "of a black and white photo of an airplane propeller"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d printed model of a fighter plane in the air"], "question": "which entity has a plane", "label": 0}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["house, building, people", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["hat, bag, blanket", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse?", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["tv, chair, laptop", "box, paper clip, lock"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a large steel building with a pool."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["location, highway, train station", "building material, pool, steel"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "dd3a9323ed514ccab330973ff9588015"], "properties": ["bed, desk, window", "room, bed, desk"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small room with a bunk bed"], "question": "which room has a bed", "label": 0}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, hill, forest", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a window"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " a large metal building with a roof and truss structure."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "b85a99699ccd4bcba213322113bb253d"], "properties": ["wheeled, cart, cannon", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a wooden shed with a gray roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof truss, beams, structure", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small white building with stairs and a white table."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of an egyptian sarcophagus.", "a white glass beer mug."], "sample_ids": ["70aa484af2ab44149a608dd81a6ff459", "1d686cbd3e9a4c629a43088658989286"], "properties": ["sarcophagus, material, wood", "color, white, glass"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a black and white photograph of a sphere with egyptian hieroglyphics on it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "a095621f2d5845af83db3f59f5685982"], "properties": ["color, shape, size", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a metal tray with two rolls of paper in it"], "question": "which entity is round?", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "09f2cf267e954c958828325067bcc36a"], "properties": ["headboard, wall, strip", "island, terrain, rocks"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["lighthouse, fountain, crater", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a wooden windmill with a red roof."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["Drawer, Pattern, White", "roof, color, red"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "a2354f13774340d392fbf33564934aab"], "properties": ["desk, chair, lamp", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "990f06da2ba4488da8371f68da6b4523"], "properties": ["runner, bed, bench", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a wooden roof"], "question": "which entity has a roof truss structure", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["black, roof, green", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a room, a cake, a table", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "d81d13362ae04371bb2cba46e4939665"], "properties": ["striped, white, black", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a stack of books", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, material", "color, sphere, molecule"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["Parts, Luggage, Truck", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which object is on a hill?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d image of a room with a person in it"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is white - shape is box - material is plastic", "a, material, clay"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, island, resembles, hawaii", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, color, case", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["red, mouse, handwriting", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small white building with a floor plan and ceiling light."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "1df55bb7035941cc9829aa904e2af065"], "properties": ["color, roof, block", "floor plan, ceiling light, color"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a line of dots on a white background a line of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a white 3d model of a house"], "question": "which building has a floor plan?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["frame, roof, trusses", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is cube, material is wood, color is white", "metal, cross, clock"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, red, blue, structure", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of the roof of a house"], "question": "which structure is made of brick detailing?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, door, suitcase", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, beams, chimney", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["food, leaves, shredded paper, rocks", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, frame, shape", "color, pattern, word"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a building structure", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["s, plane, house", "low poly, llama, kangaroo"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d low poly animal standing on its hind legs"], "question": "which entity has a llama?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a tree stump with roots."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "fa6e88ba438f4597a7230789124c8147"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "root, tree, stump"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white illustration of a galaxy"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a tree stump in the middle of a field"], "question": "which object has roots", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["rocky, rug, puddle", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a black and white image of a small island in the middle of a body of water"], "question": "which island has a house on a hill?", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, texture", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["pattern, floor, light", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a patterned square", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d model of a bench on a wooden floor"], "question": "which floor is made of wood", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, silver, white", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["four white computer desks in a 3d arrangement.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["Arrangement, Desks, White", "a, color, red"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a series of white 3d objects on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a white glass beer mug."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, red, blue, green", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "7f8942ef51dd4246993a587a12df168c"], "properties": ["bed, desk, window", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["97f487941d26472294e005fa97c403be", "67701617472e4051b95955c596561aac"], "properties": ["color, white, green", "color, white, 3d-printed"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of an office building", "a pair of white plastic shoes on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, railing, black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["color, blue, components", "image, building, stairs"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small white house with a staircase and a window."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "9eb88d17310d42dda9e17883e9922525"], "properties": ["color, temperature, england", "house, staircase, window"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["base, speaker, light", "room, door, shelf"], "captions_pred_pc": ["above a black and white illustration of a clock", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, umbrella, coat", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a tree made of dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small triangular-shaped object."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, shape, material", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, white, plastic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["roof, stairs, house", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a brick building with a roof structure and roof truss."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "84e8acad28664a738df69d719df9e263"], "properties": ["building, material, steel", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a house with a green, wooden-structured roof."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["a, head, bowl", "roof, color, green"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a house with a triangular roof"], "question": "which object has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["A, a, a", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of the roof of a house"], "question": "which entity has a roof that is pitched?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a gray, metal pillar/cylinder."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is plastic- color is white- shape is cube", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "of a black candle on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["house, door, cross", "metal, cross, clock"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of an object on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" a small orange piano with legs.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color is orange, size is small, legs", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a bench", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, metal, white", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a barn", "a 3d rendering of a small white table with a chair"], "question": "which entity is a house?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof trusses, beams, suspended ceiling", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a white 3d model of a city skyline"], "question": "which image shows a shelf?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "b494049bb15440949e465d54a72b2f02"], "properties": ["s of, snowboard, shoes, mask", "building, floorplan, gym"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a white building with two floors"], "question": "which entity is a floor plan of a gym?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["apse, roof, floor plan", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["resembles, toy, bookshelf", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, hat, glasses", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "443554d4d7044c66aa8cbff63c737589"], "properties": ["color, roof, wall", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pinker", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a house with a wooden-framed roof structure."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, pattern, wall", "roof, material, wood"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["houses, trees, road", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a curved line"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a harp in a white room"], "question": "which entity is a still life?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, green, squirt gun", "door, lock, handle"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof truss, beams, structure", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["structure, building, archway", "house, tree, pool"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a pontoon boat with two seats and a canopy.", " a house with a roof and beams."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["seat, canopy, pontoon", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a wooden-cased radio."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, material", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a black and white building", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["a box, a cup, a bottle, a jar", "building, door, clock"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white image of a church with a steeple"], "question": "which entity has a clock", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small orange piano with legs."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "d793de7c08d74414beeb8ea50f730705"], "properties": ["computer desk, laptop, monitor", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, rock, pond", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house with a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["house, roof, green", "roof, house, small"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 0}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " of a small wooden house with two roofs."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "30fc23ae4edb42609e30e029dede54bd"], "properties": ["house, door, cross", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a map", "of a pair of stainless steel screws on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small barn"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, house, small", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, island, resembles, hawaii", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " of a white chest of drawers with legs."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["design, poles, table", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a square with dots", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, framing, material", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, logo", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a house with a wooden-framed roof structure."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, lighthouse", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " of two rocks with ice elements."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, city, train", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a stone wall with a window and multiple stone arches.", " of two rocks with ice elements."], "sample_ids": ["db74ee1621464be1b164be26a1af050e", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["window, arches, wall", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an old brick wall", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["ceiling, light, desks", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white of a spaceship and building."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, lake, boat", "hat, skull, bread"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "20a02705a66f460492e07345e84a62ed"], "properties": ["floor plan, heating system, ceiling light fixture", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, material, texture", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a skull", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small, snow-covered house."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["painting, door, wall", "house, snow, cover"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small house with a tree and a rock."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, tree, rock"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a large white and metal building with a metal roof structure."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, pier, stairway", "roof, metal, white"], "captions_pred_pc": ["above a black and white illustration of an open door", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a large white box"], "question": "which structure has a metal roof", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "e694d53545d449319a64cceb0280c3c6"], "properties": ["light, toilet, faucet", "3d, slide, swing"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a spiral staircase with a railing in a small building."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["hat, food, bowl", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a stone wall with a window and a clock."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["color, white, black, white", "window, clock, wall"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a wooden windmill with a red roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["room, bed, desk", "roof, color, red"], "captions_pred_pc": ["a black and white drawing of a door", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a windmill on a gray background"], "question": "which entity has a roof that is red", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["building, roof, balcony", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a staircase in a room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a small white barn with a metal roof."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "4ca3342a96824684845f7d0e062ab176"], "properties": ["building, material, steel", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a barn"], "question": "which building has a white metal roof", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, background", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a metal rod", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ddaac41b6efd4dd0b7bf8d441441555e"], "properties": ["color, shape, and size", "railing, chair, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a letter 'g'"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bench on a white background royalty free 3d model no.3"], "question": "which entity has a chair with a glass top?", "label": 1}, {"captions": [" a small blue bottle with a lid and a small blue box.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["c1bc7f87f15943ba88f0410ef9e387e8", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["blue, bottle, box", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a sponge and a sponge holder", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a box royalty free 3d model preview no. 3", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, height", "roof, pillar, stairs"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a small building with a balcony"], "question": "which is not a building", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, material", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a black and white image of a door with a crack in it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["light, floor, ceiling", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white tile floor", "a white 3d model of a city skyline"], "question": "which image has a floor", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small white building with stairs and a white table."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["island, terrain, rocks", "building, stairs, table"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a spiral staircase with railings."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["building, stairs, shelves", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house with a roof and beams."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, plane, town", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large white and metal building with a metal roof structure."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a house", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a brick wall with grass."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "53f2d948091f417cb580e22469c94db2"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "brick, grass, wall"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a 3d white cube with windows resembling a building."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "4a07a5293f024bb0a353954a056ef626"], "properties": ["3D, toothpick, skateboard", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a room featuring a table and chairs, with blue and green walls."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "a49899d9a6194583b745e02f3654841e"], "properties": ["chair, table, refrigerator", "color, table, chairs"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a close-up of a white object on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a room with a white wall"], "question": "which entity has a table and chairs?", "label": 1}, {"captions": [" of a machine gun.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["gun, barrel, caliber", "color is white, yellow, plastic"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a wooden windmill with a red roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["s, plane, house", "roof, color, red"], "captions_pred_pc": ["a black and white silhouette of a map", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, trusses, ladder", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a wooden table with metal legs and frame."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["location, field, gravestone", "metal, legs, frame"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a spider-like creature with long arms and legs."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["bed, desk, window", "arachnid, leg, arm"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a spider-like creature with long arms and legs."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["painting, door, wall", "arachnid, leg, arm"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large building with a roof and windows."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "32d1fbd3ee91426882290305f70021e6"], "properties": ["house, lake, pool", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "73c76c4d4fc44b4e8b1a26aea3e0cc79"], "properties": ["color, black, white", "cylinder, marble, pillar"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white envelope with many small dots on it"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a marble bench with a hole in it"], "question": "which object is made of marble", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, table, ball", "frame, beams, trusses"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a building under construction"], "question": "which entity has more beams", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a stone wall featuring carvings and statues."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- material is metal- color is silver- texture is textured", "carving, statue, wall"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d image of a group of statues on a wall"], "question": "which is not a statue", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "white ceramic urn with a red lid."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color, white, material, ceramic", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white photograph of a vase"], "captions_pred_image": ["a white vase on a grey background", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" of a large gray sphere", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["size, color, shape", "structure, roof, pitch"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of the roof of a house"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "a white of a house with a hole in the ceiling."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, roof, green, frame, red", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small house on a hill in a field."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["building, roof, white, cubes", "house, hill, field"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a city on a white background", "a black and white image of a small house"], "question": "which entity is in a field?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, shape, text", "table, stairs, ladder"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": ["white 3d tank model", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["ac17fa1c967e4af382de4a445049f231", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["color is white, model is 3d, name is tank", "room, staircase, bus"], "captions_pred_pc": ["a black and white photo of a small object on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a tank on a white background royalty free 3d model preview no 2", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "c3a82df41875402285608ef13a55df57"], "properties": ["earbuds, light, ring", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a curved, stone pillar with a green leaf, resembling a candy cane and a slanted brick-shaped object.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8eb9bfd560404a2b8c9c729cd0ade002", "c3a82df41875402285608ef13a55df57"], "properties": ["curved, leaf, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black belt with a leopard pattern on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an object in the shape of a letter 'f'", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "e832e6c497a041a0b8bde5418fa20a83"], "properties": ["pattern, floor, light", "pattern, floor, light"], "captions_pred_pc": ["a black and white image of a patterned square", "a black and white image of a patterned square"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d model of a small wooden box"], "question": "which entity has a checkered floor?", "label": 0}, {"captions": [" a large bird with a nest and a piece of wood.", " of a wooden table and chair."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["bird, nest, wood", "table, chair, wood"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a small wooden table"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, material, lighthouse", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, yellow, blue", "mountainous, landmass, state"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a small, snow-covered house."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["shape is cylindrical, color is silver, material is metal", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a cone shaped object", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a piece of broken glass on a white background"], "question": "which object is more likely to be covered in snow", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["earbuds, light, ring", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, railing, black", "striped, white, black"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" of a large gray sphere", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["size, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a table and chairs on a white background"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "6b745457e06840119058883b35f78f58"], "properties": ["size, material, color", "roof, color, blue"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity is larger", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["house, hill, forest", "throne, chair, building"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a building on top of a table"], "question": "which entity has a chair?", "label": 1}, {"captions": [" of a white round table with a red accent.", " a large white and metal building with a metal roof structure."], "sample_ids": ["fea62a865b4e40899d95785533818329", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, red", "roof, metal, white"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "of a lamp with a black shade on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["shape is box, color is white, door is present", "building, door, clock"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a black and white image of a church with a steeple"], "question": "which building has a clock", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a spiral staircase with a railing in a small building."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "staircase, railing, building"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a staircase in a white room"], "question": "which entity is in a building?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house with a pond and situated on a rock."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "92859eb82a344134806b37cc209927c6"], "properties": ["house, rock, pond", "house, rock, pond"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 0}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["ceiling, beams, light", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a window", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "bded33af34104b9686b845dfd18309a9"], "properties": ["top, color, wood", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a fireplace", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a white of a gun.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, white, gun", "door, roof, pool"], "captions_pred_pc": ["of a white object on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d model of a small house"], "question": "which object has a blue roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, red, pink", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, bird, lamp", "table, staircase, light"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, color, yellow", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a room", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a small house"], "question": "which roof is blue", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["graffiti, chinese writing, door", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", "star wars stormtrooper "], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["white, rock, shell", "a, color, white"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 0}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["roof, purple, suspended", "building, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["eead0dd97023415da05c97df37337473", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, balloon, color, blue", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "6b745457e06840119058883b35f78f58"], "properties": ["Arms, Legs, Color", "roof, color, blue"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of an egyptian sarcophagus."], "sample_ids": ["d6087023095446fbadef1721478373b2", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["door, roof, window", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["yellow metal barricade ", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is yellow, material is metal, height is 0.5 m", "- material is wood, rusty, horned"], "captions_pred_pc": ["a white barrier on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a bottle with a skull and crossbones label, containing yellow liquid, resembling poison or medicine.", " of two rocks with ice elements."], "sample_ids": ["135384c5b3ee4d0aaf3b2abaea060a67", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["label, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white photo of a circular object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a bottle with a skull and crossbones label on it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "a17477b445b3443189dad22f768b888b"], "properties": ["light switch, electrical outlet, furniture", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "a17477b445b3443189dad22f768b888b"], "properties": ["level, stairs, columns", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a brick wall with grass.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "e602ac60041f4b4f84c044161e478781"], "properties": ["brick, grass, wall", "floor, wall, roof"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is cylinder, color is white, material is plastic", "rusty, warning, metal"], "captions_pred_pc": ["of a spike on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small, snow-covered house."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, roof, wall", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a building", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, table, chair", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, gazebo, table", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, size", "color, background, white"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "an image of a white background with a few small cubes on it"], "question": "which entity is a solid color?", "label": 0}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, blue", "- material is stone, metal, concrete"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, type, factory", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a clay pot with holes in it."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- material is wood, metal, metal", "hole, material, clay"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["structure, roof, pitch", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a large white box"], "question": "which structure has a metal roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a white castle composed of small cubes."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "92498f398e244020a867686729633610"], "properties": ["lamp, harp, bowl", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a modern white house with furniture and a black accent."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "e5025a1ca0034b1aa97a0d42edeeae0f"], "properties": ["a, desk, laptop", "color, white, furniture, black"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a white building with black and white tiles"], "question": "which house has furniture with a black accent?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c8936ace72954650b4e2d84246964849"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color pink", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof structure, truss, ceiling", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 0}, {"captions": [" an old castle in a grassy field.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "bded33af34104b9686b845dfd18309a9"], "properties": ["field, grass, castle", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " of a wooden table and chair."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["floor, table, wall", "table, chair, wood"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, yard, surrounding buildings", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "6b745457e06840119058883b35f78f58"], "properties": ["color, blue, white, handle", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, background, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, island, resembles, hawaii", "a, landscape, sand"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a rock in the middle of the ocean"], "question": "which landscape has sand", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "06a1c233fb444830b577aa06e2c01294"], "properties": ["collection, plane, car", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a house with a wooden-framed roof structure."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, texture", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["Steel, Color, Yellow", "a, desk, laptop"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of an office desk on a white background"], "question": "which entity is not made of steel?", "label": 0}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["- material is plastic- color is white- shape is cylinder", "nut, bowl, ring"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a white object on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a small house with stairs and a roof."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, material", "roof, stairs, house"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a red and white robot.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, red, blue, structure", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, orange, leather", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small white box with a shelf and a hole in it."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["a, door, suitcase", "a, hole, shelf"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a white box on a gray background"], "question": "which entity has a hole in it?", "label": 1}, {"captions": ["a baseball card in a clear plastic case.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5046b4bb61e4480a8c0e8911c2053a04", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["case, baseball, card", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a pencil on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a hockey player's autographed jersey hanging on a wall", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a potted christmas pine tree."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, red, apples, tree, cactus, dots", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a christmas tree in a vase"], "question": "which tree is greener", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "9d03ee6c9fcc458e9485aa7cb0d1f4cb"], "properties": ["a, b, c", "a, city, train"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a toy train set on a table"], "question": "which entity has a train track?", "label": 1}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["animal, head, fox, chihuahua, cat", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a fox's head", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity does not have a ceiling fan?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a clay pot with holes in it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, grass, moss", "hole, material, clay"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["table, staircase, light", "island, terrain, water"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "c3a82df41875402285608ef13a55df57"], "properties": ["a, box, wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white house.", " a large metal building with a roof and truss structure."], "sample_ids": ["c7ad04db657c42d8a3de4d90aaed0cd5", "b85a99699ccd4bcba213322113bb253d"], "properties": ["size, color, shape", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of two pieces of plastic", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small white house", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house with a flat roof structure."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, air conditioner, house", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["earbuds, light, ring", "meat, bread, sausage"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of a brush on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "rusty, warning, metal"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a four-legged metal workbench with shelves."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, white, base, slanted", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white drawing of a chair", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, roof, soup", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "12093c89a60941e7884b252bdc05104c"], "properties": ["roof, color, purple", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " of a small white building with stairs and a lid."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, image, subject", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a white box on a gray background"], "question": "which image has stairs", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["low poly, plant, white", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a stack of books"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "a white glass beer mug."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- color is white- shape is cube- material is plastic", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, white, plastic", "mossy, rock, grass"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy wood", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", " a white castle composed of small cubes."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["image, color, black and white", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of a knife", "a 3d model of a castle made of white cubes"], "question": "which image is composed of small cubes", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "white ceramic urn with a red lid."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["- material is wood - color is white - height is 1.8 m", "color, white, lid, red"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, light, jewels", "shape is cube, color is black, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, door, window", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["shape, bathroom, refrigerator", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, sphere, molecule", "axe, handle, wood"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, mattress, pillows", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a character wearing glasses and a hat."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, shape, material", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a metal structure", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["house, lake, pool", "building, balcony, street"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white motorcycle with wings."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, white, red, pink", "color, white, wings"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a motorcycle on a white background"], "question": "which entity is a motorcycle", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, material, steel", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of the roof of a building"], "question": "which building has a roof made of wood", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, plane, room", "building, plane, room"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 0}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a clay pot with holes in it."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["texture, spikes, eyes", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "c3a82df41875402285608ef13a55df57"], "properties": ["color, handle, straps", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "c3a82df41875402285608ef13a55df57"], "properties": ["moss, mushroom, grass", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["base material is wood, color is red, message is welcome to northwich", "outfit, color, green"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a mannequin wearing a shirt and pants"], "question": "the woman is wearing a green outfit", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a large metal building with a roof and truss structure."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["stair, table, chair", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, white, background, gray", "broom, shovel, fireplace"], "captions_pred_pc": ["above a black and white photograph of an object", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a white 3d bowl with handles.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["277fc0f27a4a45f79b7a2cfc5e9f335c", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a sphere made up of tiny dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white ceramic bowl with handles royalty free 3d model preview no. 3", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "12093c89a60941e7884b252bdc05104c"], "properties": ["image size, image, origami", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a blue and white bird.", " a futuristic white sports racing car."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color, shape, size", "color, white, futuristic"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a 3d model of a futuristic sports car"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a futuristic white sports racing car."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, futuristic"], "captions_pred_pc": ["of a spike on a white background", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a futuristic sports car"], "question": "which object is whiter", "label": 1}, {"captions": ["a colorful 3d paper toy hammer with a green handle and numbers on it.", " a house with a roof and beams."], "sample_ids": ["ee06311cc3d542b0aed18ccdb4e824db", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["of a hammer on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it 3d model of a pencil with numbers on it", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small white house with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, white", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a building with blue lines and structure.", " a small wooden house with a green roof."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, structure", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house with wooden framing and trusses."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["painting, door, wall", "frame, trusses, wood"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a window"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, blue, components", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, shape, material", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a black and white 3d model of a building"], "question": "which entity is a cube shape?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["color, tan, brown, orange", "bowl, pottery, headpiece"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a piece of ancient pottery"], "question": "which object is made of stone?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["table, bench, deer", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "1d1328346a464d2482463d6d5288e934"], "properties": ["image is a sculpture of an angel on a wall", "painting, door, wall"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which wall has a painting", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, pink", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["light source, fixture, color", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, light, jewels", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a pixelated-textured purple sphere ."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, material", "texture, color, shape"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a gun with a blue handle."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "color, handle, blue"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a gun on a gray background"], "question": "which object has a blue handle", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a wooden billiard table with legs."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, texture", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": [" a potted christmas pine tree.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, color, green", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d6087023095446fbadef1721478373b2", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["door, roof, window", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["adec10493e06436c967d5797f7085225", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, material, shape", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["cup, bottle, chessboard", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "c3a82df41875402285608ef13a55df57"], "properties": ["color, eye, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small white box", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small house on a hill in a field."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["building, floorplan, gym", "house, hill, field"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a white building with two floors", "a black and white image of a small house"], "question": "which building is on a hill?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "73e7107ff3634516846bccad04c5dc87"], "properties": ["A, a, a", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, structure, truss", "door, roof, pool"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a four-legged metal workbench with shelves."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["houses, trees, road", "Four legs, Metal, Shelf"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a potted christmas pine tree."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["hat, sword, gun", "a, color, green"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "6b745457e06840119058883b35f78f58"], "properties": ["a, hole, shelf", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a small white box with a green light.", " a house with a green, wooden-structured roof."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, white, light", "roof, color, green"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small blue and red blimp.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, size", "color, black, visor"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, floor, columns", "structure, roof, pitch"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house with wooden framing and trusses."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["turrets, flags, towers", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, roof, tray", "house, table, chair"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a white square with the words \"what tv\" on it."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, yellow, black", "color, white, words"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a long line of numbers"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a white box on a gray background"], "question": "which entity is white", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "c3a82df41875402285608ef13a55df57"], "properties": ["building, material, stone", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a red roof.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["085db9059b744673b5623b5338e02196", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, red, house", "house, roof, blue"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of two rocks with ice elements."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, stairs, house", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house with a flat roof structure."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, yellow, chimney", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, booth, bed", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": ["a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1c389c8f46b345838e515b9747c1f982", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["plate, fruit, knife", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a hedgehog", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a person riding a skateboard on a wooden surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["light, floor, ceiling", "throne, stairs, tree"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, purple, suspended", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["island, terrain, rocks", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["moss, mushroom, grass", "box, handle, gun"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, skyline, buildings", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, roof, wall", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a building structure", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a building with a metal and wooden pole structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e2e2ab4474b84f33809979da457eedd9", "c3a82df41875402285608ef13a55df57"], "properties": ["structure, material, pole", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a line of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a structure with multiple tables and chairs", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " of a crab holding a rubik's cube."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, white, words", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a long line of numbers", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " of a small wooden house with a roof."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a small house"], "question": "which house has a wooden roof?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "990f06da2ba4488da8371f68da6b4523"], "properties": ["chair, table, refrigerator", "roof truss, beams, structure"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a wooden roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["hat, sword, gun", "table, staircase, light"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, shape, text", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a black and white photograph of a barrel"], "question": "which sign is more rusty", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, cup, bowl", "hat, watch, clock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "3e22efacf9ee40a1a6b2e4b72a7314d2"], "properties": ["a, b, c", "a, booth, bed"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a tv screen with dots all over it royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d rendering of a room with a black and white color scheme"], "question": "which entity has a booth?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", "a white glass beer mug."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, size", "color, white, glass"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "06a1c233fb444830b577aa06e2c01294"], "properties": ["books, paper, lamp", "house, tree, hill"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["wood, board, shelf", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, green", "house, pool, balcony"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, material, texture", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d image of a room with a person in it"], "question": "which entity has more furniture", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a small white building with stairs and a lid."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a box, a cup, a bottle, a jar", "building, stairs, lid"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white of a man with arms outstretched."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, black, white", "image, color, white"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a vehicle with wheels and tires"], "question": "which entity does not contain a stuffed animal?", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "97f487941d26472294e005fa97c403be"], "properties": ["building, floorplan, gym", "color, white, green"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of an office building"], "question": "which building is white?", "label": 0}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a white of a woman with her arms outstretched."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["apse, roof, floor plan", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, structure, wall", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a roof structure"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a green circuit board.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1b2cc7abaf5e4e7e9d4652163d051b16", "c3a82df41875402285608ef13a55df57"], "properties": ["color, green, circuit board", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of the item in the image", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an electronic component", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white purse with a strap.", " a large metal building with a roof and truss structure."], "sample_ids": ["dae133bae5cb4496b956f03e1fb7e402", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, strap", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a watch with dots on it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white purse with a strap", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "6398f4e75a2d480da58396827ac64249"], "properties": ["roof truss, insulation, suspended ceiling", "- color is red, blue, pink"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which entity is not a chandelier?", "label": 1}, {"captions": [" a knife, axe, stick, snake, and sword with various handles and features.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["889920c6b2af496c930357fda54ddf48", "745fed115c5343dab9d7f0c389c98902"], "properties": ["type, handle, feature", "costume, color, black"], "captions_pred_pc": ["for a black and white drawing of an axe", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of an axe with a curved blade", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, red, blue, green", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house with a green, wooden-structured roof."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["graffiti, bench, wall", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["hat, sword, gun", "house, fence, playground"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "09f2cf267e954c958828325067bcc36a"], "properties": ["collection, moose, skull", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a black and white image of a piece of dirt on the ground"], "question": "which object is more likely to be found on an island", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small wooden house with a green roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, structure, greenhouse", "roof, color, green"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "854757ca755240f8b04576d899349151"], "properties": ["shape is cylinder, color is white, material is plastic", "cabinet, room, shelf"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, light", "roof, color, yellow"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["purple speech bubble and circle", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "e34088fc7b5344c4ab29fef067750225"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white map of germany on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue?", "label": 1}, {"captions": [" a small black and white cube.", " a witch wearing a black and white hat."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, shape, size", "color, black, white"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a witch?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color is white, material is plastic, shape is tube", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a broom on a stand", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a concrete wall"], "question": "which object is made of a material that can rust?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, temperature, england", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a still life?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof, color, pink", "building, plane, room"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a large metal building with a roof and truss structure."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, yellow, white, wheels", "roof, truss, structure"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a house with a pink roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, shape, and size", "color, roof, pink"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " of a small white building with stairs and a lid."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["table, staircase, light", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["moss, mushroom, grass", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["resembles, octopus, squid, spider, robot", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, door, suitcase", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["roof, room, ceiling", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "096e42b466ec438d95c5d89a85191534"], "properties": ["chair, table, refrigerator", "white, rock, shell"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["green dumbbell ", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is green, shape is dumbbell, material is metal", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "e34088fc7b5344c4ab29fef067750225"], "properties": ["building, balcony, street", "sphere, pedestal, statue"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue on a pedestal?", "label": 1}, {"captions": [" of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["411c164757fc4de68dfecb35fa858223", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["resembles, sea urchin, shell", "resembles, sculpture, rock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a sea urchin", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "d49d8ed244094349a99e4faca05e0690"], "properties": ["rocky, rug, puddle", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a spiral staircase with a railing in a small building."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["room, bed, desk", "staircase, railing, building"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": ["\"carl meyer logo with various text variations\"", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["eb0d2ef8bc364b1492d1e347e5f38d47", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, text", "house, fence, playground"], "captions_pred_pc": ["the logo for carl meyer", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["the word 'gil heyer' is written in white letters on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, color, pink", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" a purple and green sphere.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, size", "resembles, sea urchin, shell"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, roof, tray", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["white 3d triangular object", " a clear glass table with metal legs and balls on top."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color is white, shape is triangular, material is plastic", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a small blue plastic box with a lid and handle."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "3e5cc957c888491ba1a5773299d3daa9"], "properties": ["color, shape, light", "blue, lid, handle"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "in 15 or fewer words a black and white illustration of a rectangular tray"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d rendering of a gray plastic container"], "question": "which object has a lid and handle", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " a spider-like creature with long arms and legs."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, building, coin, ball", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building with blue metal framing and structure."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, table, ceiling", "color, blue, structure"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building under construction"], "question": "which building has a blue metal framing and structure", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small white building with stairs and a white table."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, white, red, pink", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building with a staircase"], "question": "which entity has a white table?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d6087023095446fbadef1721478373b2", "97e000ff41094665afd94ea565da8b13"], "properties": ["door, roof, window", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a house with a roof structure and toothbrushes."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, light, jewels", "house, roof, toothbrushes"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "e602ac60041f4b4f84c044161e478781"], "properties": ["size, color, design", "floor, wall, roof"], "captions_pred_pc": ["a black and white pattern on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a floor", "label": 1}, {"captions": ["a pair of white 3d-printed crocodile clogs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["67701617472e4051b95955c596561aac", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, 3d-printed", "a, material, clay"], "captions_pred_pc": ["a black and white photograph of a pair of shells", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a pair of white plastic shoes on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["house, color, white", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a white human skull with broken bone elements."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, and size", "color, white, skull"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a potted plant on a wooden table or shelf."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["variation, bread, pot", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a white of a woman with her arms outstretched."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["frame, beams, trusses", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": ["yellow metal barricade ", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color is white, yellow, plastic"], "captions_pred_pc": ["a white barrier on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "92498f398e244020a867686729633610"], "properties": ["low poly, llama, kangaroo", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white house with a staircase and a window."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "9eb88d17310d42dda9e17883e9922525"], "properties": ["roof, room, ceiling", "house, staircase, window"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, shape, material", "roof, structure, wall"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " of a character wearing glasses and a hat."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["castle, island, house", "hat, glasses, character"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a building featuring a window with pink bars and an orange-pink frame, pink and purple lines, and a room with a wall and a door.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["4f21fa937959487a96350af527d75421", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["window, frame, room", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a metal cage", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a wall made up of many vertical bars", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "40285a60f32749a8ae38957c7b073fe8"], "properties": ["water, river, island", "color, yellow, black"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a set of three black and white keychains on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": [" of a sword with a wooden handle.", " a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "ca275639b47a4093b4426d304695af7f"], "properties": ["handle, material, wood", "holder, spring, box"], "captions_pred_pc": ["a black and white image of a sword on a white background", "in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white"], "captions_pred_image": ["a black and white image of a sword with two blades", "a 3d model of a plastic container with a spring inside"], "question": "which object has a spring inside it", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a spiral staircase with a railing in a small building."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["s, plane, house", "staircase, railing, building"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, texture", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, material, structure", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a house with a pink roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, roof, pink", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of the roof of a house"], "question": "which roof is pitched", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["hat, sword, gun", "houses, trees, road"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of two rocks with ice elements."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["earbuds, light, ring", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, food, bowl", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a building with yellow lines."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, blue, green, yellow, blue", "color, yellow, lines"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, door, window", "house, fence, dog"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a potted christmas pine tree.", " a house with a wooden-framed roof structure."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a, color, green", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a 3d model of a building with a roof"], "question": "which is not made of wood", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small building with windows and a roof."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, yellow, black", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, white, handle", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object is not a teapot?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, background, white", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a white plastic container with a label on it"], "question": "which object is white", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a yellow roof and chimney."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, stairs, house", "roof, yellow, chimney"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a 3d white cube with windows resembling a building."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "4a07a5293f024bb0a353954a056ef626"], "properties": ["- material is plastic- color is white- shape is cylinder", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a cube"], "question": "which object is whiter", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, skyline, buildings", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["blue tarp, flower, small island", "plane, ship, bird"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white rocking chair with a curved backrest."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["yellow, table, roof", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a curved backrest", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", " of a small white building with stairs and a lid."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, hat, shoes", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a teddy bear", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a white castle composed of small cubes."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, wheel, helmet", "composed of, white, cubes"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a wooden bench with a metal frame.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c27b018330da406680e58b94266c310b", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["frame, material, wood", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a bench", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "b5afccae993346079483507296fbb029"], "properties": ["water, river, island", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a spiral staircase with a railing in a small building."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["balcony, stairs, house", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["metal, legs, frame", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a white and blue building with a black roof."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "c893118316ee43e18322e5964b2806c5"], "properties": ["door, roof, pool", "color, white, blue, roof, black"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["a, b, c", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, material, structure", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of a room with dots", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a four-legged metal workbench with shelves."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["Cabinet, Drawers, Filing", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, white, pen, logo", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a truck on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "a2354f13774340d392fbf33564934aab"], "properties": ["tiers, building, stairs", "building, roof, yellow"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a wooden shed with a gray roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, air conditioner, house", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "bf18bfd89efd43389781050230467d58"], "properties": ["roof, color, purple", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small white house with a roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["bedroom, bathroom, bed", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- material is plastic- color is green- shape is box", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, bird, lake", "a, outfit, green"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a gray, metal pillar/cylinder."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a knife, blade, handle", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a black candle on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a spiral staircase with railings.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["railings, staircase, spiral", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["a box, a cup, a bottle, a jar", "building, plane, city"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small white building with stairs and a white table."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "e30374c614f54fdb90f35b96b071349d"], "properties": ["shape, bathroom, refrigerator", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a small white building with stairs and a white table."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, mattress, pillows", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["shape is turtle, color is green, white", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, island, water", "plane, ship, bird"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small house with a blue roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, color, blue", "roof, trusses, beams"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a white plastic tube or metal bar, resembling a knife."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "8fd3836862a44a8d8b4d224bfc30c2c3"], "properties": ["house, roof, wooden", "a knife, blade, handle"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a shelf with a white background"], "captions_pred_image": ["a 3d model of a small barn", "a piece of white plastic on a gray background"], "question": "which object has a handle?", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, truss, suspended ceiling", "roof, beams, frames"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a wooden structure"], "question": "which house has a roof with beams?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, color, white", "cloak, sword, spear"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden shed with a gray roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, and size", "roof, color, gray"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a small purple plastic chair with holes."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a knife, blade, handle", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a piece of white plastic on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, staircase, window", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", "a white of a man with arms outstretched."], "sample_ids": ["40921ffd69db479294554d261daf3035", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["floor, railing, staircase", "image, color, white"], "captions_pred_pc": ["above a black and white image of a computer screen", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "09f2cf267e954c958828325067bcc36a"], "properties": ["a room, a cake, a table", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " of a barrel and a cube together."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["door, lock, handle", "a, barrel, cube"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a small green cannon wheel with a handle.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, green, handle", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["of a small black object on a white background", "of a spike on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " of a hammer with a long metal handle."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["collection, color, black, handle, wooden", "handle, metal, long"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white toothbrush on a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a hammer with a wooden handle and metal head"], "question": "which hammer has a metal handle", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, truss system, framing", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, shape, material", "earphones, wire, instrument"], "captions_pred_pc": ["of a black bracelet with dots on it", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "6b745457e06840119058883b35f78f58"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a steeple on top"], "question": "which house has a roof", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, size", "color, black, visor"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": [" of a white bunny head", " a white castle composed of small cubes."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, head", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "bf18bfd89efd43389781050230467d58"], "properties": ["image size, image, origami", "Lights, number, five"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an origami dragon", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a house with a wooden-framed roof structure."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, red, green, blue", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "bded33af34104b9686b845dfd18309a9"], "properties": ["black, white, laptop", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small white building with stairs and shelves."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "9e1f64d4fd514059be934077717536dc"], "properties": ["structure, building, archway", "building, stairs, shelves"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "402601779d1d4146b4cde106dfff1b27"], "properties": ["black, white, coffee table", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a snowflake in the air on a cloudy day"], "question": "which entity has more s", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["cylinder, marble, pillar", "houses, trees, road"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, texture", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a woman's chest"], "question": "which entity has a hexagonal pattern", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a house with a roof and beams."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["frame, truss, roof", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small building with windows and a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, stairs, house", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, toilet, robot", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a wooden bowl and barrel.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["286b00e69e8f42b4b864b63980164c43", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["bowl is wooden, barrel is wooden, shape is barrel", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a marble bowl on a white background royalty free 3d model preview no 3", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "be1376023c274bdda995d54f3694157f"], "properties": ["buildings, houses, grass", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["- material is stone - color is blue - shape is arrowhead", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["above a black and white drawing of an arrow", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a black and white image of a rock formation on a gray background"], "question": "which entity is a rock formation?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " of a hammer with a long metal handle."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, material, shape", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a hammer with a wooden handle and metal head"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["screen, keyboard, box", "buildings, houses, grass"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "4a889132cc444d10bfcbf6c760984416"], "properties": ["pattern, color, shape", "a, color, white"], "captions_pred_pc": ["a black circle on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, color, pink", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a green mountain with trees and grass."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, structure, house", "mountain, grass, tree"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house with a roof and beams."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["s, stick, leaf", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d795985a8bbe480282e349ff85fb1ef2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Contains, Objects, Various", "a, material, clay"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a person sitting on a chair", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a brick wall with grass."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, table, ceiling", "brick, grass, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white photo of a brick wall and a puddle"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, island, water", "building, room, sky"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building floating in the sky?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "dd3a9323ed514ccab330973ff9588015"], "properties": ["A, a, a", "room, bed, desk"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a door"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a small room with a bunk bed"], "question": "which entity has a bed?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, green, tiled", "roof, trusses, ladder"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, table, sphere", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a white table with a bird, a city, and a robot, accompanied by a white lamp.", " a small white building with stairs and a white table."], "sample_ids": ["20e3fcaa2b56414c9c921a2f33d13267", "e30374c614f54fdb90f35b96b071349d"], "properties": ["table, lamp, color", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a circle with many small dots", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d printed table with a cityscape on top", "a 3d model of a building with a staircase"], "question": "which table is whiter", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a hammer with a long metal handle."], "sample_ids": ["d6087023095446fbadef1721478373b2", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["door, roof, window", "handle, metal, long"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a small house with a red roof.", " a large building with a roof and windows."], "sample_ids": ["085db9059b744673b5623b5338e02196", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, red, house", "roof, windows, building"], "captions_pred_pc": ["a black and white dotted square on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["roof, stairs, house", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small table"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a wooden shed with a gray roof."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, yellow, chimney", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a white castle composed of small cubes."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["resembles, toy, castle", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a castle made of white cubes"], "question": "which castle is composed of white cubes", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a spiral staircase with a railing in a small building."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["door, lock, handle", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, gazebo, table", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "bded33af34104b9686b845dfd18309a9"], "properties": ["red, mouse, handwriting", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["color, shape, material", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "of a spike on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "7407a108e0354925b83b750339bc03df"], "properties": ["ceiling, light, desks", "platform, color, orange"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["shape is cylinder, color is white, material is plastic", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["of a spike on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "7f8942ef51dd4246993a587a12df168c"], "properties": ["frame, roof, trusses", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, fence, snowy", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "a2354f13774340d392fbf33564934aab"], "properties": ["- color is red, blue, pink", "building, roof, yellow"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "12093c89a60941e7884b252bdc05104c"], "properties": ["houses, trees, road", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["water, river, island", "image, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity has a pink sign?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["hat, pants, shirt", "hat, pants, shirt"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 0}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "6b745457e06840119058883b35f78f58"], "properties": ["structure, roof, pitch", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a green mountain with trees and grass."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["building, tree, plane", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a mountain with snow on it"], "question": "which entity has more trees", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["resembles, toy, bookshelf", "color, white, gold"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a standing mirror on a white background"], "question": "which entity is a mirror?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, black, white", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["hat, food, bowl", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["roof, color, purple", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a roof that is covered in moss?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a tree with green leaves."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "1a902b67735845198efb1b84f434b580"], "properties": ["color, tan, brown, orange", "leaf, color, green"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black and white drawing of a tree"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a tree with a lot of foliage"], "question": "which object has leaves that are green?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["black, laptop, shelf", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["low poly, plant, white", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["floor plan, ceiling light, color", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "97e000ff41094665afd94ea565da8b13"], "properties": ["stacked, racks, toy train", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, and material", "roof, material, wood"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a purple roof and glass block structure."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e8ac7de076e54f07ace1a0ead07f6f57"], "properties": ["color, shape, and size", "roof, color, purple"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a glass roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a white round table with a red accent."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "fea62a865b4e40899d95785533818329"], "properties": ["building, roof, white, cubes", "color, white, red"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white photograph of a person hanging from the ceiling"], "captions_pred_image": ["a 3d model of a city on a white background", "an empty white plate on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a house with a roof and beams."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["furniture, staircase, torn-apart", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["table, staircase, light", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a house with a flat roof structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, flat, structure", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, white, red, pink", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small wooden house with a green roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, sphere, molecule", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a large steel building with a pool."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a drum set", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["0bf7985bf5f94236b8b5c2965270e08b", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["size, color, material", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a toy tricycle on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a drum kit royalty free 3d model preview no 1", "a 3d model of a small house and a tree in the foreground"], "question": "which entity is not a drum set?", "label": 1}, {"captions": [" a building featuring yellow columns, a yellow roof, and a wooden structure.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["0ce6a4102f4f40e2a0084938b0a93941", "be1376023c274bdda995d54f3694157f"], "properties": ["structure, columns, roof", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a bench and lamp post.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "a2354f13774340d392fbf33564934aab"], "properties": ["A, bench, lamp post", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white image of a cell phone"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "5017581716c7402581a82ebf08d427a3"], "properties": ["color, shape, material", "Shelf, color, white"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d rendering of a white shelf"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a building with yellow and pink walls, a pink roof, and multicolored structural elements."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "8b1eda5d040f4dc29255cde2db077c30"], "properties": ["door, roof, pool", "color, roof, wall"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a building"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building structure"], "question": "which building has a roof that is a different color than the walls?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "a2354f13774340d392fbf33564934aab"], "properties": ["house, roof, blue", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "12093c89a60941e7884b252bdc05104c"], "properties": ["blue tarp, flower, small island", "giraffe, bench, flower"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["size, color, shape", "image, building, stairs"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["floor, wall, roof", "floor, ceiling, poles"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a building with multiple levels"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small wooden house."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof trusses, beams, suspended ceiling", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a clay pot with holes in it."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, bench, rack", "hole, material, clay"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["houses, trees, road", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a house in the middle of a field"], "question": "which entity has a village on a hill?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["water, river, island", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a close up of a black object on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, structure, greenhouse", "hat, skull, bread"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a black and white image of a stone sculpture"], "question": "which entity has a hat", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["- material is plastic- color is green- shape is box", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a small white building with stairs and a lid."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["s, stick, leaf", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a pink and white gun.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, pink, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white drawing of a floor plan"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d model of the roof of a building"], "question": "which is not made of wood", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["s, stick, leaf", "roof, brown, flat"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["white butterfly wall lamp with a white shade and bead, .", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fd63194cf4f94d5e96bd2b85f542b936", "c3a82df41875402285608ef13a55df57"], "properties": ["shade, white, bead", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a light bulb on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a wall lamp with a white shade and a butterfly design", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a large metal building with a roof and truss structure."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["a, color, white", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, color, pink", "roof structure, truss, ceiling"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which roof structure has a wooden truss?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, yellow, chimney", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a white castle composed of small cubes."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, green, leaf", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["moss, mushroom, grass", "island, terrain, water"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "06a1c233fb444830b577aa06e2c01294"], "properties": ["blue tarp, flower, small island", "house, tree, hill"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["color, shape, texture", "a, desk, laptop"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of an office desk on a white background"], "question": "which entity has a desk with a laptop", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["acropolis, city, building", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " a small wooden house with a green roof."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "roof, color, green"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["shape is sphere, color is white, material is plastic", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["house, plane, town", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "b896a0898efe4059a776193c02132129"], "properties": ["location, field, gravestone", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a whale", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "06a1c233fb444830b577aa06e2c01294"], "properties": ["black, laptop, shelf", "house, tree, hill"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on it?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a low-poly of a white, shattered sphere."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["houses, trees, road", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a human skull", " of two rocks with ice elements."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, b, c", "image is a rock with ice elements"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, bird, lake", "roof, color, yellow"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of a small white building with stairs and a lid."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["furniture, staircase, torn-apart", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a house with a roof and beams."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["floor, staircase, balcony", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a wallet", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a wooden roof structure with a pink roof."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["floor, table, light", "roof, color, pink"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of the roof of a building"], "question": "which structure has a roof that is the color pink", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " of a large axe with a cross on top."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, material, shape", "axe, cross, top"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "for an axe on a white background"], "captions_pred_image": ["a 3d printed ring with a unique design", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, size", "island, terrain, water"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white circular object on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, island, water", "house, tree, hill"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a black and white image of a house in the middle of a field"], "question": "which island has a house on a hill?", "label": 0}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a stone wall with a window and a clock."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["- material is plastic- color is white- shape is cube", "window, clock, wall"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a brick wall"], "question": "which object is made of stone?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of two rocks with ice elements."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["texture, spikes, eyes", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "4a889132cc444d10bfcbf6c760984416"], "properties": ["Steel, Color, Yellow", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a desk and chair"], "question": "which entity is not made of steel?", "label": 0}, {"captions": [" a wooden-framed house with roof trusses.", " a spider-like creature with long arms and legs."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["frame, roof, trusses", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, booth, bed", "grass, plants, rocks"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["red, eyes, rocket", "island, mountain, grass"], "captions_pred_pc": ["of a black and white image of a clock", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, mustache, chef", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a chef's hat", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a bow and arrow?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["water, boat, rock", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a large axe with a cross on top."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "4b6734945e204158b076a429a30ce2e9"], "properties": ["chair, table, refrigerator", "axe, cross, top"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["white 3d printed skull, shell, snowy mountain, spiked head sculpture, and blob.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["2a99681d7ec0460790da639cecec9a24", "06a1c233fb444830b577aa06e2c01294"], "properties": ["3D Printed, white, skull", "house, tree, hill"], "captions_pred_pc": ["a 3d model of a molecule on a white background a 3d model of a molecule on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d sculpture of a seashell on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a white hat, plastic cup with a lid, and a bowl."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "4a9d79b48eda4ad797a652ee01b1b026"], "properties": ["color, blue, green, yellow, blue", "hat, cup, bowl"], "captions_pred_pc": ["a pair of sneakers on a white background", "in 15 words or less a black and white illustration of a funnel"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a white plastic hat and bowl on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, screen, drawer", "resembles, sculpture, rock"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": ["white of a small stool and toilet paper holder.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["b7b32b690a2942878e3bd386de75d29d", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, stool", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of an object in the shape of an open umbrella", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a toilet paper holder royalty free 3d model preview no. 1", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a two-story small apartment building with a roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, tree, rock", "two-story, roof, building"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "d795985a8bbe480282e349ff85fb1ef2"], "properties": ["hat, sword, gun", "Contains, Objects, Various"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d sculpture of a person sitting on a chair"], "question": "which entity contains more objects", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["shape, bathroom, refrigerator", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white building with stairs and shelves."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, door, window", "building, stairs, shelves"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" of a small wooden house with a roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, house, wooden", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": ["white pendant light fixture ()", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is white, material is metal, light source is incandescent", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a spider-like creature with long arms and legs."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["A, a, a", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, stairs, house", "roof truss, beams, structure"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a wooden roof"], "question": "which house has a roof truss structure?", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", "a white glass beer mug."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "1d686cbd3e9a4c629a43088658989286"], "properties": ["design, poles, table", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a house with a green, wooden-structured roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, white, background, gray", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, base, warning", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a white building with a red roof."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, green", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a large white and metal building with a metal roof structure."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, shape, poles", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a large white box"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a white square with the words \"what tv\" on it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, grass, moss", "color, white, words"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a white of a house with a hole in the ceiling."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["floor, wall, roof", "image, house, ceiling"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color is white, yellow, plastic", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["building, stairs, shelves", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["e-cigarette, cartridge, bottle", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["wheeled, cart, cannon", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a 3d low-poly model of a gun with blue lights.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["58cc3b1c08da4081a7ffdb5a00db6473", "b896a0898efe4059a776193c02132129"], "properties": ["3d model, color, lights", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of an object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a futuristic weapon", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "b896a0898efe4059a776193c02132129"], "properties": ["pattern, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black circle on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, horns, features", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "c3a82df41875402285608ef13a55df57"], "properties": ["box, paper clip, lock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a purple chair with holes in it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "833151c8e0f4489a9fa966635a948452"], "properties": ["color, light, jewels", "color, purple, holes"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a white chair"], "question": "which object has holes in it", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "a17477b445b3443189dad22f768b888b"], "properties": ["mossy, rock, grass", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a harp in a white room"], "question": "which entity has a lamp?", "label": 1}, {"captions": [" a celtic stone cross.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["- material is stone- shape is cross- color is black", "door, lock, handle"], "captions_pred_pc": ["for a black and white image of a watch", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, horns, features", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "e694d53545d449319a64cceb0280c3c6"], "properties": ["table, stairs, ladder", "3d, slide, swing"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, material, pattern", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a brick fireplace with a stick protruding, surrounded by brick walls.", " of two rocks with ice elements."], "sample_ids": ["236ccf2dae264fc3a11cd5be5bc4e280", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["fireplace, stick, surround", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a person standing in front of a fireplace royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " of two rocks with ice elements."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, hat, handle", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["text, material, shape", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["770e577c9795435898209fd24191635b", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["image, color, light", "gold, ring, animal"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "above a black and white image of a shark"], "captions_pred_image": ["a white 3d model of a small town", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["painting, door, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "6398f4e75a2d480da58396827ac64249"], "properties": ["chair, table, refrigerator", "- color is red, blue, pink"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which entity is not a chair", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["house, plane, town", "door, lock, handle"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, roof, wooden", "house, lake, pool"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a large building"], "question": "which house is on an island?", "label": 1}, {"captions": [" a large building with a roof and windows.", " of a house with a roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, windows, building", "roof, house, roof"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, white, black, white", "window, arches, wall"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["floor, staircase, table", "house, rock, bird"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, texture", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, horns, features", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a large white and metal building with a metal roof structure."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, yellow", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a room", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a large white box"], "question": "which building has a roof that is white and metal?", "label": 1}, {"captions": [" a chair with a yellow seat.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["a4de5f2055154465968f33d6289c64e6", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, yellow, seat", "color, silver, white"], "captions_pred_pc": ["above a black and white drawing of a square with small dots", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a chair on a white background royalty free 3d model no.", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small white house with a roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, material", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, red, green, yellow", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "1da865c75a5e4a57a17652975dae5474"], "properties": ["texture, spikes, eyes", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a flower", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a white box, a white lid, and a white container"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, door, cross", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "40285a60f32749a8ae38957c7b073fe8"], "properties": ["color, skyline, buildings", "color, yellow, black"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a set of three black and white keychains on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3"], "question": "which entity is a set of tools?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["buildings, houses, grass", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a four-legged metal workbench with shelves."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["resembles, octopus, squid, spider, robot", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a table with four legs"], "question": "which entity has four legs", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, staircase, window", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["earbud, earpiece, earpiece", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["white candle with a yellow flame in a candle holder.", " a white building with a red roof."], "sample_ids": ["c3d85aaabddf4585b2468a5bca9f51d5", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, flame, white", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background a black and white image of a dotted circle on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white candle in the shape of a teapot", "a 3d model of an office building"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, blue", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["floor, wall, roof", "tv, chair, laptop"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small white house with a roof."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, staircase, table", "roof, color, white"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a numbered rock.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["number, color, shape", "metal, rusted, paper"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a black and white image of a piece of debris on the ground"], "question": "which object is more likely to be rusted", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is stone - shape is bat", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" an old castle in a grassy field.", " a small house with stairs and a roof."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["field, grass, castle", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " of two rocks with ice elements."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["red, pile, garbage", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small building with a staircase in a room.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["room, staircase, building", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of the letter l", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house with a flat roof structure."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "abc52d210d71415296730bb00352ce6f"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is wood, metal, metal", "window, arches, wall"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a white rocking chair with a curved backrest."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, blue, green, yellow, blue", "backrest, curved, yes"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small building with windows and a roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, black, white", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["rusty, sink, graffiti", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["two-story, roof, building", "roof, metal, white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, color, white", "house, hill, forest"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small white building", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small, snow-covered house."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, green, tiled", "house, snow, cover"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is white- color is white- texture is textured", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house with wooden framing and trusses."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, red, blue, structure", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house under construction"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a black and white striped box.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, black, white", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c27b018330da406680e58b94266c310b", "c3a82df41875402285608ef13a55df57"], "properties": ["frame, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bench", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small red and white spaceship.", "a black rock with writing on it."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, shape, size", "color, black, writing"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a black and white photograph of a rock with writing on it"], "question": "which object is black?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["Lights, number, five", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["base material is wood, color is red, message is welcome to northwich", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, shape, size", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a roof structure and toothbrushes."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["yellow, table, roof", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, grass, moss", "window, arches, wall"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an old brick wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " of an egyptian sarcophagus."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a, plane, small plane", "sarcophagus, material, wood"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small building with windows and a roof."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["- material is wood, metal, metal", "roof, windows, building"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white cube-shaped shelf"], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "1fc0969de9bf47cab82cae4cc8fe6c2f"], "properties": ["resembles, toy, bookshelf", "shape is cube, color is white, material is wood"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a white shelf on a gray background"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a black building.", " a small building with windows and a roof."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, black, building", "roof, windows, building"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["shape is cylindrical, color is silver, material is metal", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a cone shaped object", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object is black", "label": 1}, {"captions": ["white 3d tank model", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, model is 3d, name is tank", "- material is wood, rusty, horned"], "captions_pred_pc": ["a close-up view of the back of the phone case", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["wood, board, shelf", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "411c164757fc4de68dfecb35fa858223"], "properties": ["house, roof, wooden", "resembles, sea urchin, shell"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, blue, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- color is white- shape is cube- material is plastic", "rusty, warning, metal"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["building, roof, balcony", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, rock, paper", "Headstock, Guitar, Head"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["hat, glasses, character", "floor, staircase, balcony"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, light, jewels", "striped, white, black"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a small wooden house with a green roof."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["shape is turtle, color is green, white", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a house with wooden framing and trusses."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["A, a, a", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, shape, text", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a truck on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "5414d75e47104589837f3df8b6de6d22"], "properties": ["floor, staircase, balcony", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a wallet", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["floor, table, light", "building, color, black and white"], "captions_pred_pc": ["above a black and white photograph of a window", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white?", "label": 1}, {"captions": ["yellow metal barricade ", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color is yellow, material is metal, height is 0.5 m", "hat, candy, strawberry"], "captions_pred_pc": ["a white barrier on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, color, white", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a black and white of a knife/sword with a handle."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, material", "image, color, black and white"], "captions_pred_pc": ["of a black and white doily on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a lamp, a syringe, a light pole", "a, material, clay"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a yellow and blue toy submarine.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, yellow, blue", "house, fence, playground"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, hat, glasses", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small building with windows and a roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, grass, moss", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a sword with a wooden handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["handle, material, wood", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a sword on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a sword with two blades", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof trusses, beams, suspended ceiling", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a building", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss and a suspended ceiling structure?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a large metal building with a roof and truss structure."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, bowl, green", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["red fire hydrant ", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fa1e5e8c79154d5ca681d191d3261875", "a17477b445b3443189dad22f768b888b"], "properties": ["color, red, hydrant", "roof, pillar, stairs"], "captions_pred_pc": ["a fire hydrant made of bubbles 3d illustration of a fire hydrant made of bubbles on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a grey fire hydrant with two chains hanging from it", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "703dce44052e48cfb024bceb08141554"], "properties": ["ceiling, beams, light", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a wooden structure"], "question": "which entity has a roof with wooden beams", "label": 1}, {"captions": [" a small black and white cube.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house featuring furniture, people, a staircase, and torn-apart sections."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "85335d3349894b5884dbf6f3e7d68fcc"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "furniture, staircase, torn-apart"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a pixelated cityscape on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a damaged room with broken furniture and debris on the floor"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["3D, toothpick, skateboard", "a city, train, dragon"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a toy car"], "captions_pred_image": ["a white toothbrush on a gray background", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a white and blue building with a black roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, orange, white", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, shape, size", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of the letter u", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a circular fence with black and white stripes"], "question": "which entity is a building?", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, style, pixel", "broom, shovel, fireplace"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["door, lock, handle", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "18e392c5360146eda498c5edab25b15c"], "properties": ["image, building, stairs", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a building under construction"], "question": "which building has a frame?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["b5afccae993346079483507296fbb029", "bf18bfd89efd43389781050230467d58"], "properties": ["shape is square, material is metal, color is rusty", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "bf18bfd89efd43389781050230467d58"], "properties": ["a, island, water", "Lights, number, five"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "6b745457e06840119058883b35f78f58"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a white shelf with holes and brackets."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["roof, color, blue", "color, white, holes"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a building with many windows", "a white bench with a shelf on top"], "question": "which entity has holes", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "6b745457e06840119058883b35f78f58"], "properties": ["wing, color, white", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of a building with dots"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "bded33af34104b9686b845dfd18309a9"], "properties": ["level, stairs, columns", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small building with windows and a roof."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["texture, spikes, eyes", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["a, color, case", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a black and white image of a skateboard"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["bowl, pottery, headpiece", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a palm tree with leaves."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["base material is wood, color is red, message is welcome to northwich", "leaf, tree, leaf"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "for a black and white image of an animal with wings"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a palm tree"], "question": "which entity has more leaves", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["backrest, curved, yes", "a, character, mario"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a game?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a large metal building with a roof and truss structure."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "b85a99699ccd4bcba213322113bb253d"], "properties": ["screen, monitor, stand", "roof, truss, structure"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, green", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "e2645ac544844f3c981203134a99c30c"], "properties": ["- material is stone - color is blue - shape is arrowhead", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["chair, table, refrigerator", "house, lake, pool"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["a, b, c", "blue, yellow, frog"], "captions_pred_pc": ["for a black square tile on a white background", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["a, ball, mushroom", "house, staircase, table"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a house with a wooden-framed roof structure."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, trusses, beams", "roof, material, wood"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" an old castle in a grassy field.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["field, grass, castle", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white drawing of a room"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a table and chairs on a white background"], "question": "which structure has a roof that is the color of yellow", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["furniture, room, kitchen", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a large white and metal building with a metal roof structure."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, structure, truss", "roof, metal, white"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, white, holes", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white image of a square with dots on it"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof and a ceiling with a hole?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small building with a staircase in a room."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["roof, air conditioner, house", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white image of the letter l"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "97e000ff41094665afd94ea565da8b13"], "properties": ["floor, staircase, table", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of the roof of a building"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["railing, glass, table", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d model of a modern house"], "question": "which has a pool", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, material, size", "earphones, wire, instrument"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["graffiti, chinese writing, door", "house, hill, forest"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["color, yellow, black", "fireplace, bench, log"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a snowflake"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a fireplace with snow on the ground"], "question": "which entity has more logs", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, window, statue", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a large house with a roof on a platform."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, roof, tray", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a futuristic white sports racing car."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["- color is white- shape is cube- material is plastic", "color, white, futuristic"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a futuristic sports car"], "question": "which is not a car", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small wooden house with a green roof."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["Arms, Legs, Color", "roof, color, green"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d6087023095446fbadef1721478373b2", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["door, roof, window", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": [" a small house with a red roof.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["085db9059b744673b5623b5338e02196", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, red, house", "roof, green, tiled"], "captions_pred_pc": ["a black and white dotted square on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a set of stainless steel shelves"], "question": "which roof is made of tiles", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of an old, rusty, green metal locker and a large wooden box."], "sample_ids": ["b5afccae993346079483507296fbb029", "9797ff34c99a43be86d27868b3f9cb6d"], "properties": ["shape is square, material is metal, color is rusty", "metal, locker, box"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["floor, staircase, railings", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a small house with stairs and a roof."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["shape is turtle, color is green, white", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["c27b018330da406680e58b94266c310b", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["frame, material, wood", "Steel, Color, Yellow"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a table with multiple tables and chairs"], "question": "which object has a yellow color", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "a17477b445b3443189dad22f768b888b"], "properties": ["door, lock, handle", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, truss, suspended ceiling", "house, pool, balcony"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "e602ac60041f4b4f84c044161e478781"], "properties": ["frame, beams, trusses", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "7e7272f3ddc24551905eccb63f3da42e"], "properties": ["hat, cup, bowl", "hat, bag, blanket"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white illustration of a cell with dots"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d printed sculpture of a baseball player holding a bat"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a house with a pink roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "443554d4d7044c66aa8cbff63c737589"], "properties": ["color, roof, pink", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pinker", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["building, ceiling, kitchen", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" a white castle composed of small cubes.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["composed of, white, cubes", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["hat, sword, gun", "lamp, harp, bowl"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, hat, flower", "box, paper clip, lock"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a machine gun.", " a large metal building with a roof and truss structure."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "b85a99699ccd4bcba213322113bb253d"], "properties": ["gun, barrel, caliber", "roof, truss, structure"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a large metal building with a roof and truss structure."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, pattern, wall", "roof, truss, structure"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, light", "roof, material, wood"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, screen, drawer", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["rusty, sink, graffiti", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["s, stick, leaf", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", "a white glass beer mug."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, table, ball", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white statue of a woman holding a baby.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7cf1c30a98fc4ae796e040c2ce18c03a", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, statue", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a heart", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d printed figurine of a woman holding a cat", "a 3d model of a large white box"], "question": "which entity is a building?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, and size", "a, material, steel"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["liquid, ice, lid", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " of a wooden windmill with a red roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, material, frame", "roof, color, red"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a windmill on a gray background"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a wooden chair.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["b2fc4bd184944704ad43d3a31817a676", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["wood, chair, seat", "grass, plants, rocks"], "captions_pred_pc": ["a close-up view of the bristle brush on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a group of trees"], "question": "which entity is a tree?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " of a black and white striped fly in the air."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, yellow, chimney", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "887e410d07854396b563325ae1929583"], "properties": ["low poly, llama, kangaroo", "hat, mouse, bear"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, bird, hook", "a, material, clay"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, red, apples, tree, cactus, dots", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, skyline, buildings", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["blue tarp, flower, small island", "moss, mushroom, grass"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" of a chessboard on a beige ceiling tile.", " a small wooden house with a green roof."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["beige, tile, chessboard", "roof, color, green"], "captions_pred_pc": ["a black and white image of a leopard print banner", "a black and white map of hawaii on a white background"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["cup, bottle, chessboard", "house, rock, bird"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building on a white surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "c3a82df41875402285608ef13a55df57"], "properties": ["s of, snowboard, shoes, mask", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a building with blue metal framing and structure."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, red, blue, green", "color, blue, structure"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building under construction"], "question": "which building has a blue structure", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a wooden barrel."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "77ceb4db6ddc4a6c8c4a83ab1519e78b"], "properties": ["color is white, yellow, plastic", "material is wood, shape is barrel, color is brown"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a gray and white barrel"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a wooden roof structure with a pink roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, material, shape", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["small purple teapot with a hook.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, purple, hook", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a bowl", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "5017581716c7402581a82ebf08d427a3"], "properties": ["stacked, racks, toy train", "Shelf, color, white"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, truss, lamp", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["a, bird, lake", "paper, hole, sign"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "d81d13362ae04371bb2cba46e4939665"], "properties": ["furniture, staircase, torn-apart", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small wooden sailboat.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["size, material, sails", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a celtic stone cross.", " a stone arrowhead with blue crystals and ice-like features."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "5f8c7eda0f464019a4acea243114555d"], "properties": ["- material is stone- shape is cross- color is black", "- material is stone - color is blue - shape is arrowhead"], "captions_pred_pc": ["for a black and white image of a watch", "above a black and white drawing of an arrow"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a wooden table with a plant on it."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["- material is plastic- color is white- shape is cube", "table, plant, wood"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a side table with a potted plant sitting on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, temperature, england", "room, furniture, window"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d image of a room with a person in it"], "question": "which entity has a window?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "aef9b23a78a7450286a961cc13448d00"], "properties": ["house, roof, green", "roof, green, tiled"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": [" a small house with a blue roof.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["roof, color, blue", "- material is wood, rusty, horned"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house with wooden framing and trusses."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof, green, tiled", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a house under construction"], "question": "which house has a wooden frame?", "label": 1}, {"captions": [" a flying bird, resembling a crow and a pigeon.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["5ec78c8b6ab54f739adb0b46d216a454", "411c164757fc4de68dfecb35fa858223"], "properties": ["bird, resembles, crow, pigeon", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white illustration of an airplane on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white image of a bird in flight", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, dragon, cloth", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a large metal building with a roof and truss structure."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, roof, block", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a long metal fence"], "question": "which building has a roof with trusses", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["frame, roof, trusses", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, structure, suspended", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a wooden roof structure with a pink roof."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, skyscraper, city", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of an airplane", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "b896a0898efe4059a776193c02132129"], "properties": ["color, pattern, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["chair, table, refrigerator", "arrow, red, white"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["bowl, pottery, headpiece", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, structure, house", "door, lock, handle"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["bed, desk, window", "roof, color, yellow"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with a roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, building, small", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white image of a small house", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a wooden shed with a gray roof."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["lamp, harp, bowl", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["computer desk, laptop, monitor", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small triangular-shaped object."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "2d02985030804209a26c2c53b96a06f9"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "shape, triangle, small"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a small white building with stairs and a white table."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, texture", "building, stairs, table"], "captions_pred_pc": ["of a black object floating in the air on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["background, color, white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, pink, eyes", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a bear's head", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["color, shape, and size", "building, door, clock"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a church with a steeple"], "question": "which entity has a door", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "bded33af34104b9686b845dfd18309a9"], "properties": ["table, bench, deer", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, purple, suspended", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, shape, light", "arrow, mountain, area"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a line with a square on it"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a sea urchin"], "question": "which entity is white and brown?", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["house, fence, dog", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small room with a bed, desk, and chair"], "question": "which house has a bathroom?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["castle, island, house", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, background, white", "house, roof, blue"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, stone, green, blue", "hat, candy, strawberry"], "captions_pred_pc": ["a circle of black dots on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": ["a 3d white cube.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["94fbd38f3f9c454eafc09bf4d7544146", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black lace belt on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small blue robot with a windmill.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5f915b161cc74fedad52d8663b41f87a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, blue, robot", "a, material, clay"], "captions_pred_pc": ["a black and white image of a 3d sculpture", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wind turbine", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " of a small white building with stairs and a lid."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, material, frame", "building, stairs, lid"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, head, white and brown", "black, screen, blank"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a screen that is blank?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, color, green", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["s of, snowboard, shoes, mask", "box, handle, gun"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["apse, roof, floor plan", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, plane, city", "box, paper clip, lock"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["building, tree, plane", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["fireplace, bench, log", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["a, b, c", "metal, legs, wheels"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, black, shade, black", "black, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a small black building"], "question": "which entity has a black roof", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a large metal building with a roof and truss structure."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, blue, rim, blue", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, screen, drawer", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, handle, zipper", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["four white computer desks in a 3d arrangement.", " a wooden roof structure with a pink roof."], "sample_ids": ["33dadaf2b6c94f5993d0cbe7167725c4", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["Arrangement, Desks, White", "roof, color, pink"], "captions_pred_pc": ["a close-up of a metal rod on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a series of white 3d objects on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a white human skull with broken bone elements.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6ca0f91b85464d7a845b3977351dd0b5", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, skull", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a cat's x-ray", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a human skull in white", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", "a white of a woman with her arms outstretched."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, image, subject", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a woman with her arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, shape, material", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a circular fence with black and white stripes"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "096e42b466ec438d95c5d89a85191534"], "properties": ["color, white, black, white", "white, rock, shell"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["turrets, flags, towers", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, material", "color, sphere, molecule"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a white and black helmet", "a black motorcycle helmet with a visor on top"], "question": "which entity is made of a visor", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["sandbox, sand bucket, wooden blocks", "house, tree, hill"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a house in the middle of a field"], "question": "which object is on a hill?", "label": 1}, {"captions": [" of a white van with a logo on the side.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, logo, side", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a scissors", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "f39783d05dec49e49482c407d656e0f7"], "properties": ["A, a, a", "a, plane, small plane"], "captions_pred_pc": ["a black and white illustration of a bench", "of a black and white photo of an airplane propeller"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d printed model of a fighter plane in the air"], "question": "which entity has more planes", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "06a1c233fb444830b577aa06e2c01294"], "properties": ["island, terrain, water", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a black and white image of a house in the middle of a field"], "question": "which island has a house?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a small white house with a roof."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["metal, legs, wheels", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "da8b5d21da9b4037982f29383d60b100"], "properties": ["house, roof, blue", "resembles, toy, castle"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a tower made out of blocks"], "question": "which entity is a toy?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "b0427ff55c4346e293c1241c71d30528"], "properties": ["- color is white- shape is cubes- number is 1", "a, rock, nail"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d image of a rock with a screw in it"], "question": "which object has a nail sticking out of it?", "label": 1}, {"captions": ["white of a rhino head with horns.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["image, rhino, head", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a penguin skull in black and white", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "a white 3d model of a city skyline"], "question": "which image is of a laptop?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["roof, green, lawn", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a building with many pillars"], "question": "which entity has a roof made of glass?", "label": 1}, {"captions": ["a pair of yellow pliers.", "a white glass beer mug."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, yellow, pliers", "color, white, glass"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", "a white of a woman with her arms outstretched."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["door, panel, staircase", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a 3d white cube with windows resembling a building."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, orange, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["resembles, toy, bookshelf", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " of a wooden windmill with a red roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["image, building, painting", "roof, color, red"], "captions_pred_pc": ["above a black and white drawing of a building", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a windmill on a gray background"], "question": "which building has a red roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["s, stick, leaf", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity has a sphere of color?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a large building with a roof and windows."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, temperature, england", "roof, windows, building"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["desk, chair, table", "3d, model, collection"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of objects?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["21639082215b4b179d574d2408124838", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, room, furniture", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a human skull", " of a wine corkscrew"], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, b, c", "a, type, corkscrew"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, horns, features", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["Drawer, Pattern, White", "color, shape, color"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small white box with a green light.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, white, light", "box, handle, gun"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d rendering of a metal box with a handle"], "question": "which box is made of metal", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["graffiti, chinese writing, door", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure with brick detailing?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, white, blue, roof, black", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, roof, tray", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["red, mouse, handwriting", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "of a black and white bracelet on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "225e4094141d416faba7c5598dc55ff8"], "properties": ["- material is plastic- color is white- shape is cylinder", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " of a crab holding a rubik's cube."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, trusses, beams", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a roof structure", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "97e000ff41094665afd94ea565da8b13"], "properties": ["cup, bottle, chessboard", "roof, material, wood"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a spiral staircase with railings."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["- color is red, blue, pink", "railings, staircase, spiral"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, green, orange, star", "earbuds, light, ring"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has more light", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, wheel, helmet", "image, color, white"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" of a sword with a wooden handle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["handle, material, wood", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a black and white image of a sword with two blades", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, roof, wall", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "be1376023c274bdda995d54f3694157f"], "properties": ["color, shape, texture", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a pixelated eagle with a yellow and white head and yellow beak.", " a small house with a tree and a rock."], "sample_ids": ["9ce77b4cc05c4060a74b8f2568e6bbe8", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["eagle, head, beak", "house, tree, rock"], "captions_pred_pc": ["a black and white image of a knife on a white background", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d image of a penguin in a pixelated world", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a rock?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, character, mario", "Headstock, Guitar, Head"], "captions_pred_pc": ["for a black and white sculpture of a person", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a wooden-cased radio."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color is white, material is plastic, shape is box", "case, material, wood"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a white plastic tray", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["books, paper, lamp", "house, tree, pool"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["food, leaves, shredded paper, rocks", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a building with many pillars"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hat, mustache, chef"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a chef's hat"], "question": "which entity is a model?", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, size", "cover, black, plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["desk, chair, lamp", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a spider-like creature with long arms and legs."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- material is metal- color is silver- texture is textured", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a black and white image of an alien creature"], "question": "which entity is not a arachnid?", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "e098706085a44898abbd549693d12a64"], "properties": ["color, white, pink, eyes", "color is black, white, orange"], "captions_pred_pc": ["a black and white image of a bear's head", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which entity is not a walkie-talkie?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house with a blue roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, material, frame", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "b896a0898efe4059a776193c02132129"], "properties": ["a, island, resembles, hawaii", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house on a hill in a field."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, table, chair", "house, hill, field"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["castle, island, house", "door, lock, handle"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a large steel building with a pool."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, beams, chimney", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, green, lawn", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " a white rocking chair with a curved backrest."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, material", "backrest, curved, yes"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object is made of a curved backrest", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, texture", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a skull", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "b896a0898efe4059a776193c02132129"], "properties": ["color, silver, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a small white house with a roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, red, green, blue", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "bded33af34104b9686b845dfd18309a9"], "properties": ["hat, food, bowl", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "674a36147ffb47059e48abc9fa19d923"], "properties": ["color, blue, green, yellow, blue", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a pair of sneakers on a white background", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["Cabinet, Drawers, Filing", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["shape is box, color is white, door is present", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof and ceiling mounted air conditioner", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, rock, pond", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a white building with a red roof."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, gold", "color, white, roof, red"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "6b745457e06840119058883b35f78f58"], "properties": ["roof, color, yellow", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, bird, green, yellow, blue", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white drawing of a cell phone"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a blue roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, blue", "roof, material, wood"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["load, crates, snow", "house, pool, balcony"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a wooden cube.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is cube, material is wood, color is brown", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "97e000ff41094665afd94ea565da8b13"], "properties": ["apse, roof, floor plan", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a soldier with outstretched arms", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4982a7018e6f4503b5708c714b733ab4", "b896a0898efe4059a776193c02132129"], "properties": ["arms, outstretched, soldier", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a bird's wing", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a soldier with his arms outstretched royalty-free 3d model preview", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a clay pot with holes in it."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, base, slanted", "hole, material, clay"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a house with a wooden-framed roof structure."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, structure, suspended", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a white and blue building with a black roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, red, blue, structure", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, skyscraper, city", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of an airplane", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a stone wall with a window and a clock."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["houses, trees, road", "window, clock, wall"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a brick wall"], "question": "which entity has a window and a clock", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["color, pier, railings", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["shape is hot dog, design is dragon, color is black", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, structure, greenhouse", "island, mountain, grass"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, desk, laptop", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, landscape, sand", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["bird, nest, wood", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "b896a0898efe4059a776193c02132129"], "properties": ["Cabinet, Drawers, Filing", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "6b745457e06840119058883b35f78f58"], "properties": ["two-story, roof, building", "roof, color, blue"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a house with a steeple on top"], "question": "which building has a roof that is blue?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small white house with a roof."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["computer desk, laptop, monitor", "roof, color, white"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["room, bed, desk", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, rock, pond", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, leg, tail", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a white plastic object on a gray background"], "question": "which entity is not a green alien creature with long legs and a long tail?", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["black, roof, green", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small black building", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["color, roof, tray", "color, yellow, black"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white helicopter flying in the air"], "question": "which object has a black and yellow color scheme?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e2645ac544844f3c981203134a99c30c"], "properties": ["color, shape, and size", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, light, jewels", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a four-legged metal workbench with shelves."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["- material is white- color is white- texture is textured", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, white, material, ceramic", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["a, b, c", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a house with a flat roof structure."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, lake, boat", "roof, flat, structure"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a wooden-cased radio."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, material", "case, material, wood"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house with a roof and beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, air conditioner, house", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a window", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a white castle composed of small cubes."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["earbuds, light, ring", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["bird, nest, wood", "buildings, houses, grass"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a gray, metal pillar/cylinder."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "d49d8ed244094349a99e4faca05e0690"], "properties": ["building, roof, balcony", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a plant growing out of a rock"], "question": "which object is not a building?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["color, yellow, black", "bedroom, bathroom, bed"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "411c164757fc4de68dfecb35fa858223"], "properties": ["pattern, color, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black circle on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["stacked, racks, toy train", "wood, board, shelf"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "9b6a637ead444bd28452178c74697653"], "properties": ["color, light, jewels", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which entity is a royalty free image?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a white shelf with holes and brackets."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["- color is white - shape is box - material is plastic", "color, white, holes"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "6b745457e06840119058883b35f78f58"], "properties": ["color, material, texture", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a green mountain with trees and grass."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["headboard, wall, strip", "mountain, grass, tree"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["floor, table, wall", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a wheeled hospital bed", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "b896a0898efe4059a776193c02132129"], "properties": ["wheeled, bed, hospital", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a child's room in a small house with windows."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "88847a6445044bcbab9611e6028a19b9"], "properties": ["A, a, a", "room, house, windows"], "captions_pred_pc": ["a black and white illustration of a bench", "for a black and white drawing of a snowflake"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity has more windows", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a roof and beams."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, and size", "roof, beams, house"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a red and white robot.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, red, white", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["color, white, containers", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "a17477b445b3443189dad22f768b888b"], "properties": ["color, material, pattern", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small building with a staircase in a room."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["a room, a cake, a table", "room, staircase, building"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a staircase on a white surface"], "question": "which entity has a room with a staircase?", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "97e000ff41094665afd94ea565da8b13"], "properties": ["carving, statue, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small wooden house with a green roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a clay pot with holes in it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["houses, trees, road", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["acropolis, city, building", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, shape, number", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a red and silver metal plate with bolts and screws on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["d4e4ead1ea144529b47e5882fc8a3a93", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, material, shape", "rusty, warning, metal"], "captions_pred_pc": ["of a white square tile with a black hole in the center", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal plate with screws and nuts", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, material, structure", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "12093c89a60941e7884b252bdc05104c"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a house with a blue roof."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["image, building, painting", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a house with a roof"], "question": "which building has a blue roof", "label": 1}, {"captions": [" of a black shark", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "b896a0898efe4059a776193c02132129"], "properties": ["black, mouth, teeth", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is not made of metal and concrete?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, door, window", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a house with wooden framing and trusses."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- material is metal- color is silver- texture is textured", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small house on a hill in a field."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, tree, pool", "house, hill, field"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a large metal building with a roof and truss structure."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, background, white", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "of a metal grate on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["floor, staircase, table", "floor, staircase, table"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which entity has a wooden floor?", "label": 0}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is not a wrecked plane", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " of white plastic bottles and e-cigarette cartridges."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "d5350ea3f41b42b5983fa01c087925d7"], "properties": ["- material is wood, rusty, horned", "e-cigarette, cartridge, bottle"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white photograph of a pair of earrings"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a bullet casing royalty free 3d model preview no. 1"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "c3a82df41875402285608ef13a55df57"], "properties": ["pattern, color, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a white plastic object on a gray background"], "question": "which object is white?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["color, white, containers", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "6398f4e75a2d480da58396827ac64249"], "properties": ["- color is red, blue, pink", "- color is red, blue, pink"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which entity has a red", "label": 0}, {"captions": [" a small house with stairs and a balcony.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["balcony, stairs, house", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a staircase in a room"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a small white building with stairs and a lid."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, air conditioner, house", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a window", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a wooden staircase with a railing and table."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "956247bea850458199c651037d4b1d7f"], "properties": ["earbuds, light, ring", "railing, table, staircase"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a white glass beer mug."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color is white, material is plastic, shape is tube", "color, white, glass"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "6b745457e06840119058883b35f78f58"], "properties": ["roof, structure, truss", "roof, color, blue"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white round table with a red accent.", " a small wooden house with a green roof."], "sample_ids": ["fea62a865b4e40899d95785533818329", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, red", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white map of hawaii on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["arm, light, sign", "a city, train, dragon"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "9b8e2f9070b24956a343a01a5fabdf03"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "computer desk, laptop, monitor"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white silhouette of a traditional japanese gate"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a futuristic room with a bench"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a house in the middle of a field"], "question": "which entity is a landscape?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["cover, black, plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white image of a cone shaped object"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["ceiling, beams, light", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a window", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of two rocks with ice elements."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, yard, surrounding buildings", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, color, white", "a, material, clay"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a large house with a roof on a platform."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, trusses, beams", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a small house"], "question": "which entity has a roof on a platform?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house with a roof and beams."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, yellow, chimney", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["floor, staircase, railings", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house with a pond and situated on a rock."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "92859eb82a344134806b37cc209927c6"], "properties": ["house, door, cross", "house, rock, pond"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" of a pink coffee mug with a white handle and lid, featuring white foam or icing on top.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f50ca961cbcc4182a6f10074943d63c4", "c3a82df41875402285608ef13a55df57"], "properties": ["color, handle, lid", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a coffee mug on a white background a black and white image of a coffee mug on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a coffee mug royalty free 3d model preview no.1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "outfit, color, green"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity has a top and pants?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "40921ffd69db479294554d261daf3035"], "properties": ["graffiti, bench, wall", "floor, railing, staircase"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a computer screen"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["color, grass, moss", "fireplace, bench, log"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a snowflake"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a fireplace with snow on the ground"], "question": "which entity has more logs", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["hat, sword, gun", "hat, mustache, chef"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a chef's hat"], "question": "which entity is a chef?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small wooden house with a green roof."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["structure, roof, pitch", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "7f8942ef51dd4246993a587a12df168c"], "properties": ["white, top, writing", "house, yard, surrounding buildings"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["a wooden-cased radio.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["case, material, wood", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white image of a cone shaped object"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["roof, structure, house", "roof, structure, wall"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a building with a roof"], "question": "which structure has a brick wall", "label": 1}, {"captions": [" a small white house with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, white", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a white roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a small black and white cube.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, shape, size", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of two rocks with ice elements."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, purple", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["169855ca6adc4f36814f17d275cb1e95", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, watch, clock", "hat, dress, racket"], "captions_pred_pc": ["in 15 words or less a silhouette of a man smoking a cigarette", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d model of a futuristic chair", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color is white, yellow, plastic", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, air conditioner, house", "a, building, roof"], "captions_pred_pc": ["a black and white illustration of a window", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "59fbbe87e3714115b3daca3159e7ffac"], "properties": ["shape, bathroom, refrigerator", "shape, bathroom, refrigerator"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of a person standing in front of a toilet"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a black and white photograph of a piece of furniture in a room"], "question": "which entity is a cube-shaped structure with a hole", "label": 0}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, yellow, white, wheels", "throne, stairs, tree"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a house with a roof and beams."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["hair, legs, wings", "roof, beams, house"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, blue, structure", "building, plane, room"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "97f487941d26472294e005fa97c403be"], "properties": ["house, tree, pool", "color, white, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, house, small", "structure, roof, pitch"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": [" a large orange keg with a white lid.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "c3a82df41875402285608ef13a55df57"], "properties": ["color, lid, orange", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, gold", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a house with a flat roof structure."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "abc52d210d71415296730bb00352ce6f"], "properties": ["metal, rusted, paper", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " of two rocks with ice elements."], "sample_ids": ["adec10493e06436c967d5797f7085225", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, material, shape", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small white building with stairs and a white table."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, white, yellow, roof, metal", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a building with a staircase"], "question": "which table is white", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a small, snow-covered house."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, white, blue, roof, black", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["white pendant light fixture ()", " a small purple plastic chair with holes."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color is white, material is metal, light source is incandescent", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white hanging light fixture with a white shade", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "db74ee1621464be1b164be26a1af050e"], "properties": ["- material is plastic- color is white- shape is cube", "window, arches, wall"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, dress, flower", "s, laptop, printer"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white image of an electronic device"], "question": "which entity has a box?", "label": 0}, {"captions": [" a small off-road toy vehicle with wheels.", "a white glass beer mug."], "sample_ids": ["7ef2589539b84054b2185633112825cc", "1d686cbd3e9a4c629a43088658989286"], "properties": ["wheel, toy, vehicle", "color, white, glass"], "captions_pred_pc": ["of a black and white photo of a cross on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a dune buggy royalty free 3d model preview no 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a white of a man with arms outstretched."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, color, green", "image, color, white"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "09f2cf267e954c958828325067bcc36a"], "properties": ["rocky, rug, puddle", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a black and white image of a piece of dirt on the ground"], "question": "which island has a diverse terrain?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["s of, snowboard, shoes, mask", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a black and white image of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": ["white cube ", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1fbd3b1130854a02ae19b1b665b47d44", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, shape is cube, material is plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in one sentence the image is a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["roof, green, lawn", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black and white 3d model of a building"], "question": "which building is black and white?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["building, tree, plane", "roof, structure, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " of two rocks with ice elements."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image size, image, origami", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of an antique gramophone"], "question": "which object is made of a wooden base", "label": 1}, {"captions": [" of a blue ford escort car.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, blue, ford escort", "throne, stairs, tree"], "captions_pred_pc": ["of a black leather bracelet on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["3D, toothpick, skateboard", "building, plane, room"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a wooden cabinet, shelf, and small house in a furnished room."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "854757ca755240f8b04576d899349151"], "properties": ["shape is hot dog, design is dragon, color is black", "cabinet, room, shelf"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a living room with a couch, coffee table, and television"], "question": "which object is in a room?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, truss, lamp", "house, table, chair"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, landscape, sand", "a, landscape, sand"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 0}, {"captions": [" a small blue and red blimp.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["d9083e64d229434094dd91159de9bfd1", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["of a black circular object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a zeppelin airship royalty free 3d model preview no.2", "a black and white image of a house in the middle of a field"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["furniture, staircase, torn-apart", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["lighthouse, fountain, crater", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "28d0cf71ed684dcb87b2c9b2744c3633"], "properties": ["runner, bed, bench", "runner, bed, bench"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a long, curved structure"], "question": "which entity has a bed with blue and purple stripes?", "label": 0}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, truss, suspended ceiling", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, structure, wall", "house, fence, dog"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence", "label": 1}, {"captions": [" of a pink coffee mug with a white handle and lid, featuring white foam or icing on top.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["f50ca961cbcc4182a6f10074943d63c4", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, handle, lid", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a coffee mug on a white background a black and white image of a coffee mug on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a coffee mug royalty free 3d model preview no.1", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a 3d white cube with windows resembling a building."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "4a07a5293f024bb0a353954a056ef626"], "properties": ["frame, roof, trusses", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a cube"], "question": "which entity is not a building?", "label": 0}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["house, fence, dog", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a 3d white cube with windows resembling a building."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, red, blue, structure", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["building, skyscraper, city", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", "star wars stormtrooper "], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, yellow, roof, metal", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 0}, {"captions": ["a grayscale of a mountain.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, grayscale, mountain", "room, door, shelf"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of an empty room"], "question": "which entity is a room?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["shape is cylinder, color is white, material is plastic", "mannequin head, plague mask, straps"], "captions_pred_pc": ["of a spike on a white background", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a plague doctor's mask on a mannequin head"], "question": "which object is made of leather", "label": 1}, {"captions": [" a large rock with a hole in it.", " a house with a green, wooden-structured roof."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["size, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " of a white human skull with broken bone elements."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, lake, boat", "color, white, skull"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, truss, lamp"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a metal roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a white building with a red roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["building, stairs, shelves", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is purple, material is plastic, number of legs is four", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "c3a82df41875402285608ef13a55df57"], "properties": ["dial, face, band", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["image, building, painting", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a building with many windows"], "question": "which building has a blue roof", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " of two rocks with ice elements."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["books, paper, lamp", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["97f487941d26472294e005fa97c403be", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, white, green", "room, furniture, window"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an office building", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " of a small white building with stairs and a lid."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["hair, legs, wings", "building, stairs, lid"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, red, green, yellow", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "bf18bfd89efd43389781050230467d58"], "properties": ["house, rock, pond", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, pattern", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a room"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white of a man with arms outstretched."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, table, ceiling", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a clay pot with holes in it."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, horns, features", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a white of a woman with her arms outstretched."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a slice of rainbow cake with multicolored sprinkles on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fc515651480c43b7a0712215939cc510", "c3a82df41875402285608ef13a55df57"], "properties": ["color, rainbow, sprinkles", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a silhouette of the state of oregon on a white background silhouette of the state of oregon on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a slice of cake", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white house with a staircase and a window."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "9eb88d17310d42dda9e17883e9922525"], "properties": ["texture, spikes, eyes", "house, staircase, window"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a 3d white cube with windows resembling a building."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4a07a5293f024bb0a353954a056ef626"], "properties": ["A, a, a", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a cube"], "question": "which entity is whiter", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["blue tarp, flower, small island", "house, tree, pool"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white cube-shaped shelf", " of a small white building with stairs and a lid."], "sample_ids": ["1fc0969de9bf47cab82cae4cc8fe6c2f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["shape is cube, color is white, material is wood", "building, stairs, lid"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a white box on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["image, building, stairs", "image, city, spoon"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a city skyline in white"], "question": "which image shows a city?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, skyscraper, city", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of an airplane", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["water, river, island", "tv, chair, laptop"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, blue, green, yellow, blue", "house, yard, surrounding buildings"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a white of a house with a hole in the ceiling."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, table, chair", "image, house, ceiling"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house with a balcony"], "question": "which house has a hole in the ceiling", "label": 1}, {"captions": [" of a house with a pink roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["color, roof, pink", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a white of a man with arms outstretched."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, screen, drawer", "image, color, white"], "captions_pred_pc": ["above a black and white image of a brush", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a man with his arms outstretched"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["bed, desk, window", "house, rock, bird"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a staircase, small red and white building, red box, table, and ceiling light."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "11e2e8ca1f8849e394dfbf532c6d7ae0"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a, building, staircase"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white photograph of a piece of metal"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a staircase in the middle of a floor"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, shape, and size", "building, plane, city"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["a knife, blade, handle", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a piece of white plastic on a gray background", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a large metal building with a roof and truss structure."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "b85a99699ccd4bcba213322113bb253d"], "properties": ["computer desk, laptop, monitor", "roof, truss, structure"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["s, cat, fish, person, pig, bird", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small purple plastic chair with holes."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- material is white- color is white- texture is textured", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a cube", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a white castle composed of small cubes."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["texture, spikes, eyes", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a white glass beer mug."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, shape, material", "color, white, glass"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a house with a green, wooden-structured roof."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, light", "roof, color, green"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a barrel and a cube together."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["house, fence, dog", "a, barrel, cube"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a house?", "label": 0}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- color is white- shape is cubes- number is 1", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["color, green, orange, star", "paper, hole, sign"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["red, mouse, handwriting", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "1da865c75a5e4a57a17652975dae5474"], "properties": ["image size, image, origami", "color, white, plastic"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a character wearing glasses and a hat."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["ceiling, light, desks", "hat, glasses, character"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, shape, material", "house, tree, hill"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a house in the middle of a field"], "question": "which object is made of wood", "label": 1}, {"captions": ["3d printed panther head with open mouth.", " a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers."], "sample_ids": ["dfe4f73a25a94b2c8449a2818c32a3bd", "40285a60f32749a8ae38957c7b073fe8"], "properties": ["3D Printed, mouth, open", "color, yellow, black"], "captions_pred_pc": ["a 3d model of a dog head on a white background 3d model of a dog head on a white background stock illustration 3d model of a dog head on a white background 3d model of a dog head on a white background royalty free illustration", "a set of three black and white keychains on a white background"], "captions_pred_image": ["a 3d model of a panther head royalty-free 3d model", "a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3"], "question": "which object is not yellow?", "label": 0}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["background, color, white", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "gold, ring, animal"], "captions_pred_pc": ["a close up of a black object on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, truss, lamp", "box, paper clip, lock"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a spider-like creature with long arms and legs."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["broom, shovel, fireplace", "arachnid, leg, arm"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a yellow roof and chimney."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, color, purple", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, blue, components", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a deer on a grassy hill."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "c039b44fc6c24034b87131ffb9be93c4"], "properties": ["a, hill, deer", "a, hill, deer"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "above a black and white image of two objects, one is a light bulb and the other is a toothbrush"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a deer sitting on top of a rock"], "question": "which entity has a deer on a grassy hill?", "label": 0}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["- material is plastic- color is white- shape is cylinder", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " of a small white building with stairs and a lid."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["shape is hot dog, design is dragon, color is black", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["d6087023095446fbadef1721478373b2", "4389909667db472ea9a57a70eb940fa4"], "properties": ["door, roof, window", "building, window, skeleton"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window with a skeleton on it?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["turrets, flags, towers", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d rendering of a house on a rock"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, green, tiled", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, and size", "color, frame, shape"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, trusses, beams", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams?", "label": 0}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a two-story small apartment building with a roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["base material is wood, color is red, message is welcome to northwich", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a red and white robot.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, red, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "e34088fc7b5344c4ab29fef067750225"], "properties": ["roof truss, insulation, suspended ceiling", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "be1376023c274bdda995d54f3694157f"], "properties": ["frame, beams, trusses", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, white, containers", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a purple chair with holes in it.", "a 3d white cube with windows resembling a building."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, purple, holes", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a white chair", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a large building with a roof and windows."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, room, ceiling", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "dd5849aced0443b1b4b38d413f7e06c4"], "properties": ["building, tree, plane", "background, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a cat's head"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of an animal skull in white on a gray background"], "question": "which entity has a plane?", "label": 0}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a small wooden house."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["a lamp, a syringe, a light pole", "house, material, wood"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a small cottage"], "question": "which object is made of wood", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["red, mouse, handwriting", "lion, statue, fountain"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a metal object"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, height", "structure, roof, pitch"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "bded33af34104b9686b845dfd18309a9"], "properties": ["s, plane, house", "table, staircase, light"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["house, table, chair", "tv, chair, laptop"], "captions_pred_pc": ["above a black and white photograph of an open door", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a person sitting on a couch"], "question": "which entity has a tv", "label": 1}, {"captions": ["a featuring a green marble pillar, a marble box with a blue water drop inside, and a cylinder with a blue shirt on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["73c76c4d4fc44b4e8b1a26aea3e0cc79", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["cylinder, marble, pillar", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white envelope with many small dots on it", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a marble bench with a hole in it", "a 3d model of a candlestick"], "question": "which cylinder is made of metal", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["building, skyscraper, city", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of an airplane", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a black and white photograph of a small town"], "question": "which entity is in a village?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof truss, beams, structure", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof with a ceiling mounted air conditioner?", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, pattern, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a sea urchin"], "question": "which entity is a sea shell?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["3D, toothpick, skateboard", "wood, board, shelf"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "a17477b445b3443189dad22f768b888b"], "properties": ["color, red, blue, green", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a small building with a balcony"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a green mountain with trees and grass."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, bird, lake", "mountain, grass, tree"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a mountain with snow on it"], "question": "which entity has a mountain with trees and grass?", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a house with a wooden-framed roof structure."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, material, stone", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["lighthouse, fountain, crater", "table, bench, deer"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "443554d4d7044c66aa8cbff63c737589"], "properties": ["building, roof, balcony", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which building has a roof that is not pink and blue?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small building with windows and a roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, yard, surrounding buildings", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, door, window", "color is white, yellow, plastic"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a small white building with stairs and a white table."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "e30374c614f54fdb90f35b96b071349d"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a building with a staircase"], "question": "which object is white", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a spiral staircase with a railing in a small building."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["house, fence, dog", "staircase, railing, building"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a building with a metal and wooden pole structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["e2e2ab4474b84f33809979da457eedd9", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["structure, material, pole", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a line of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a structure with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a modern white geometric pendant light.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["3545287f7d844a309f45671d2d70fbf9", "7407a108e0354925b83b750339bc03df"], "properties": ["size, material, color", "platform, color, orange"], "captions_pred_pc": ["of a black button on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a white pendant lamp with a geometric design on the shade", "a 3d model of a motorcycle on a pedestal"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["size, color, shape", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a white sofa, chair, and box."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "4c59733ebd634594a921b7ace60e4142"], "properties": ["yellow, table, roof", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a small house with a roof.", " a small wooden house."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, house, small", "house, material, wood"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, green, squirt gun", "color, white, gold"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a yellow and blue toy submarine.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["da2719db8f4f4668af5b74c96e80c6cd", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, yellow, blue", "throne, stairs, tree"], "captions_pred_pc": ["of a black and white image of a starfish on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine toy", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a black and white of a knife/sword with a handle."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color is white, yellow, plastic", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a black and white knife on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small white house with a roof."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, trusses, beams", "roof, color, white"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a white roof"], "question": "which house has a roof that is white?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, bowl, green", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a numbered rock.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "bf18bfd89efd43389781050230467d58"], "properties": ["number, color, shape", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "color, shape, color"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small building with windows and a roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["roof, color, purple", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "40921ffd69db479294554d261daf3035"], "properties": ["3D, toothpick, skateboard", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a computer screen"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" of a tv stand/shelf", " a broken bowl with a hole in it."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "55e883c09dbf4f22bee0da608128f4f8"], "properties": ["size, material, color", "a, material, bowl"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white drawing of a bowl on a white background"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d image of a white bowl on a gray background"], "question": "which object is made of a material that is not glass?", "label": 0}, {"captions": ["a 3d wooden pole with a metal spear handle.", "red heart-shaped object."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is wood, metal, metal", "shape, heart, red"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": ["a white of a gun.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, white, gun", "a room, a cake, a table"], "captions_pred_pc": ["of a white object on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, horns, features", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["a, desk, laptop", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen hood?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a white of a spaceship and building."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, color, pink", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a pair of white 3d-printed crocodile clogs.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["67701617472e4051b95955c596561aac", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, 3d-printed", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photograph of a pair of shells", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a pair of white plastic shoes on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, white, black, white", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a wooden billiard table with legs."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a white circular object on a gray background", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, size", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a castle with two towers"], "question": "which toy is red?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, roof, tray", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["mossy, rock, grass", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a chair with a yellow seat."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, shape, and size", "color, yellow, seat"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity is a chair?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, color, white", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, red, blue, structure", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house with a roof"], "question": "which structure has a roof that is yellow?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, color, blue", "building, roof, yellow"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d rendering of a machine with a conveyor belt"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["cup, bottle, chessboard", "image, color, pink"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity has a pink sign?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small wooden house."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["stair, table, chair", "house, material, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a white motorcycle with wings.", "a black and white of a knife/sword with a handle."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, wings", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a palm tree with leaves."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["floor plan, heating system, ceiling light fixture", "leaf, tree, leaf"], "captions_pred_pc": ["a black and white drawing of a house", "for a black and white image of an animal with wings"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a palm tree"], "question": "which entity has more leaves", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, plane, small plane", "building, plane, room"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "674a36147ffb47059e48abc9fa19d923"], "properties": ["food, leaves, shredded paper, rocks", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white image of a bird in flight", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a tree and a rock."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["floor plan, heating system, ceiling light fixture", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, material, pattern", "color, pattern, word"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a beaded necklace with the word banned on it"], "question": "which entity has a pattern of blue", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "97e000ff41094665afd94ea565da8b13"], "properties": ["painting, door, wall", "roof, material, wood"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a pair of white wall lamps with two shades.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["73e026c5b19c4cadb087d14da7810e3e", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, pair", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a bicycle wheel", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a wall lamp with a white shade and a cord hanging from it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["71143d4e7bc94fc4aa73a2d7c86635cd", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["torso, breasts, pattern", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white illustration of a woman's breasts", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a woman's chest", "a 3d model of a woman's chest"], "question": "which entity has a shirt with a hexagonal pattern", "label": 0}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a house with a wooden-framed roof structure."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, texture", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "a grayscale of a mountain."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "17a86c6c9be0478c984ef36c7c22edea"], "properties": ["color, sphere, molecule", "color, grayscale, mountain"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white photograph of a galaxy"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a mountain range on a white background royalty-free 3d model"], "question": "which entity is a grayscale?", "label": 1}, {"captions": [" of a house with a roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, house, roof", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a gun with red wires and a red handle.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["92b06e113e3840f3a3191baf951f19c6", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, red, handle", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white image of an object", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendered image of a gun", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object has a brown spot?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a wooden house with a roof and framing."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "4634a9bdf54549a99f68be77f1464b0a"], "properties": ["roof, truss, structure", "roof, framing, material"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of an abstract pattern"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a barn structure"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["desk, chair, table", "building, plane, city"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "be1376023c274bdda995d54f3694157f"], "properties": ["color, umbrella, coat", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "5017581716c7402581a82ebf08d427a3"], "properties": ["- material is plastic- color is white- shape is cylinder", "Shelf, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" a black and gold pistol.", " of a hammer with a long metal handle."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, black, gold", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "97e000ff41094665afd94ea565da8b13"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["image is rock formation with a white cliff and a rock", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white map of spain on a white background"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a black and white image of a rock formation on a gray background"], "question": "which entity is a rock formation with a white cliff and a rock?", "label": 0}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a wooden shed with a gray roof."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["metal, rusted, paper", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a shed with a gray roof"], "question": "which object has a roof that is the color of gray", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, hand, flowers", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["ceiling, light, desks", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["cup, bottle, chessboard", "building, plane, room"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, structure, truss", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["yellow, table, roof", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, brown, flat", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "a2354f13774340d392fbf33564934aab"], "properties": ["house, building, people", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, purple, beams", "a, building, roof"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "97e000ff41094665afd94ea565da8b13"], "properties": ["fireplace, bench, log", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, bowl, green", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a white 3d model of a city skyline"], "question": "which image has a laptop?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a green mountain with trees and grass."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["collection, moose, skull", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, pattern, wall", "a, material, clay"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", "a low-poly of a white, shattered sphere."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, size", "sphere, color, texture"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["low poly, plant, white", "table, bench, deer"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object is more likely to be found in a garden", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, white, red, pink", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["a, bird, lamp", "water, boat, rock"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white illustration of a surfboard"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "97e000ff41094665afd94ea565da8b13"], "properties": ["turrets, flags, towers", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["f2d267bce6154ab096f32f1dd0a7865a", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["Cabinet is white, Box is green and white, Laptop is on top of cabinet", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["above a black and white illustration of a person holding a pencil", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of a white box on a wooden floor", "a 3d rendering of a white box on a wooden floor"], "question": "which entity has a white box?", "label": 0}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, white, red, pink", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a house with a roof and beams."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, lighting, booth", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a spiral staircase with a railing in a small building."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["desk, chair, lamp", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a staircase in a white room"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, table, chairs", "island, terrain, water"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["s, chimpanzee, human, wolf", "house, fence, playground"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small white building with stairs and shelves."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "9e1f64d4fd514059be934077717536dc"], "properties": ["roof, structure, wall", "building, stairs, shelves"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, dress, flower", "stair, table, chair"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a, head, mask", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a person's head", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which object has a roof truss", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "411c164757fc4de68dfecb35fa858223"], "properties": ["a, island, resembles, hawaii", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["red, mouse, handwriting", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "a2354f13774340d392fbf33564934aab"], "properties": ["Steel, Color, Yellow", "building, roof, yellow"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a gray ashtray with a cigarette in it."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c9c7fe9b477a4565a11fd2eaf868c23b"], "properties": ["color, shape, height", "ashtray, color, gray"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a toilet brush on a white background toilet brush vector illustration on a white background toilet brush vector illustration on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of an ashtray with a cigarette in it"], "question": "which object is a ashtray?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["roof, ceiling, hole", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a spider-like creature with long arms and legs."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["backrest, curved, yes", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["screen, monitor, stand", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a green mountain with trees and grass."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, door, suitcase", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, lighthouse", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["balcony, stairs, house", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a small house on a hill in a field."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["island, mountain, grass", "house, hill, field"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a black and white image of a small house"], "question": "which entity is on a hill?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "1d1328346a464d2482463d6d5288e934"], "properties": ["a, hole, shelf", "painting, door, wall"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a painting", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, material, texture", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white drawing of a skull", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a sea urchin"], "question": "which entity is white and brown?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a house with a roof structure and toothbrushes."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["cover, torn, open", "house, roof, toothbrushes"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["size, material, logo", "paint, rust, concrete"], "captions_pred_pc": ["in the title the logo for maria ruiz", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a concrete wall"], "question": "which object is made of concrete", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is white, material is plastic, shape is box", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a wooden billiard table with legs."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, texture", "legs, material, wood"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a wooden roof structure with a pink roof."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["windmills, silhouette, city model", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of the roof of a building"], "question": "which roof is pink", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small house with a pond and situated on a rock."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "92859eb82a344134806b37cc209927c6"], "properties": ["base, speaker, light", "house, rock, pond"], "captions_pred_pc": ["above a black and white illustration of a clock", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a house in the middle of a field"], "question": "which object has a pond?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, holes", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a celtic stone cross.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["- material is stone- shape is cross- color is black", "mossy, rock, grass"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a piece of wood on a white background"], "question": "which object is made of mossy rock", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, table, ceiling", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small wooden house with a green roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, lake, pool", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a black and white striped box."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["- material is metal - weight is 0 - height is 0", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "7f8942ef51dd4246993a587a12df168c"], "properties": ["graffiti, chinese writing, door", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "a2354f13774340d392fbf33564934aab"], "properties": ["room, door, shelf", "building, roof, yellow"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "4a889132cc444d10bfcbf6c760984416"], "properties": ["white, rock, shell", "a, color, white"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a desk and chair"], "question": "which object is white", "label": 0}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a green circuit board."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, sphere, molecule", "color, green, circuit board"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "of the item in the image"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["shape is turtle, color is green, white", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white map of the island of malta"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which is a floating small island with trees", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, roof, block", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, material, pattern", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["apse, roof, floor plan", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, brown, flat", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a table and stool", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "c8936ace72954650b4e2d84246964849"], "properties": ["color, red, blue, green", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a roof"], "question": "which building has a pink roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of two rocks with ice elements."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["houses, trees, road", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a train, a ship, a boat", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["hat, food, bowl", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, roof, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a wooden roof structure with a pink roof."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["ruined building, stone floor, small stone structure", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink?", "label": 1}, {"captions": [" a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d795985a8bbe480282e349ff85fb1ef2", "b896a0898efe4059a776193c02132129"], "properties": ["Contains, Objects, Various", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white dots pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a person sitting on a chair", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a barrel and a cube together.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "f1b557775310478893242180defa4d80"], "properties": ["a, barrel, cube", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a small house in the middle of a field"], "question": "which object is a shack?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", "a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "d9681d1f6fad42ab8d498cba24339ca8"], "properties": ["pos machine, credit card machine, cash register", "pos machine, credit card machine, cash register"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white illustration of a glass bottle"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a vintage cash register sitting on top of a table"], "question": "which entity has a pos machine with credit card machine?", "label": 0}, {"captions": [" a small black and white cube.", " a small white building with stairs and shelves."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, size", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["shape, bathroom, refrigerator", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, roof, tray", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": ["white 3d triangular object", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color is white, shape is triangular, material is plastic", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a large gray sphere", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, hill, deer", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, white, red, pink", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " of a small white building with stairs and a lid."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, lighting, booth", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["d6087023095446fbadef1721478373b2", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["door, roof, window", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an empty room"], "question": "which building has a door with a shelf?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a spider-like creature with long arms and legs."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, roof, balcony", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["034c093c73fd48758422feee0b10c5d8", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, backpack, stick", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white drawing of a bird in flight", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a pencil drawing of a person holding a sword", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, yellow, chimney", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["boxing gloves, heart, hand", "a city, train, dragon"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of the human heart", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "5414d75e47104589837f3df8b6de6d22"], "properties": ["ceiling, light, desks", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of two rocks with ice elements."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["blue tarp, flower, small island", "image is a rock with ice elements"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", "star wars stormtrooper "], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["roof, truss system, framing", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a large steel building with a pool."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, fence, snowy", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a silver iphone 6, 6s plus, and 8 plus.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["d68994adb2ee49faa4f51b5cb0b500c0", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, silver, phone", "hat, bow, arrow"], "captions_pred_pc": ["of a black and white image of a skateboard", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a smartphone royalty-free 3d model preview no.", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["ceiling, light, desks", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white of a house with a hole in the ceiling.", " a white building with a red roof."], "sample_ids": ["2915cbd03e164ac0bb13866c2d68cc65", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["image, house, ceiling", "color, white, roof, red"], "captions_pred_pc": ["above a black and white drawing of a house", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a balcony", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, blue, rim, blue", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white bowl on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of an ancient statue"], "question": "which entity is made of more metal", "label": 1}, {"captions": [" a white car alternator, motor, and fan with its parts.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4f3258f5264b46b1b839d992ca1bad68", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, alternator, fan", "house, tree, hill"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a fan and its components on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, material, shape", "island, terrain, water"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, mouth, eyes", "Eye color, Black, Purple"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black and purple?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " of two rocks with ice elements."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["black, laptop, shelf", "image is a rock with ice elements"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a large steel building with many columns and a pool."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, air conditioner, house", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh."], "sample_ids": ["55b26130f1514032be078e13fd982905", "d795985a8bbe480282e349ff85fb1ef2"], "properties": ["color, shape, material", "Contains, Objects, Various"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d sculpture of a person sitting on a chair"], "question": "which entity is a basket?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a hammer with a long metal handle."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["bed, desk, window", "handle, metal, long"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small, snow-covered house."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["graffiti, chinese writing, door", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "26c47880756b4876b4f263373c3c5303"], "properties": ["color, shape, and size", "building, material, steel"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a large structure with multiple levels"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["color, light, jewels", "Headstock, Guitar, Head"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a small wooden sailboat.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "127753bf17de4252aaa7ea88f274545e"], "properties": ["size, material, sails", "face, mask, tail"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, building, coin, ball", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, red, pink", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof truss, insulation, suspended ceiling", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e34088fc7b5344c4ab29fef067750225"], "properties": ["house, fence, dog", "sphere, pedestal, statue"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue on a pedestal?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a 3d white cube with windows resembling a building."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "4a07a5293f024bb0a353954a056ef626"], "properties": ["brown, paint, tape", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " of two rocks with ice elements."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, island, water", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d image of two rocks on a gray surface"], "question": "which image is of a rock with ice elements?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "4a889132cc444d10bfcbf6c760984416"], "properties": ["- material is white- color is white- texture is textured", "a, color, white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a desk and chair"], "question": "which entity is whiter", "label": 0}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["s, boat, bird, airplane, kite", "roof, color, yellow"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["Arms, Legs, Color", "island, mountain, grass"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, handle, gray", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["striped, white, black", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, material, shape", "a, color, red"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with a pink roof.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, roof, pink", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker", "label": 1}, {"captions": ["a 3d baseball card in a clear plastic case.", " a small white house with windows and a black lid."], "sample_ids": ["04438ab47bd9430c97b5aac8f9907e4c", "4b40af369c1149949f5ccb68becd8430"], "properties": ["a, color, case", "white, windows, lid"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of dots on a white background"], "captions_pred_image": ["a black and white photograph of an airplane poster on a wall", "a 3d model of a white house with three windows"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white image of a rock in the air", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a stone wall featuring a statue and a window."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "09ab58e01e0d4393bc1e82f157e641be"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a, window, statue"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photo of a sculpture of jesus on the cross"], "question": "which entity has a window", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, horns, features", "house, fence, dog"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a house with a roof and beams."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["lamp, harp, bowl", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a curved line", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a building with a roof"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["roof, structure, house", "building, fence, snowy"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, material, shape", "a, color, red"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["frame, truss, roof", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "92498f398e244020a867686729633610"], "properties": ["mug is purple, cup is black, candle is black", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a black building."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["two-story, roof, building", "color, black, building"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "9968e06a62e8487ea33460e640abc573"], "properties": ["a box, a cup, a bottle, a jar", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["lighthouse, fountain, crater", "table, staircase, light"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, wall, color", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof with a hole in it?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small house with a roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["color, door, window", "roof, house, small"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["a, rock, paper", "black, roof, green"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a small black building"], "question": "which object has a green roof", "label": 1}, {"captions": ["a featuring a purple mug, black cup with cookies, black candle, black and purple ball, and a square ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a08008793f184dab8a4ab6de27cc7105", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["mug is purple, cup is black, candle is black", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a dome shaped object with dots on it royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a black cup sitting on top of a white piece of paper with a spoon next to it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a spider-like creature with long arms and legs."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["graffiti, chinese writing, door", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, and size", "color, sphere, molecule"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "color, black, visor"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a black motorcycle helmet with a visor on top"], "question": "which object is black", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "46903bf029934b1989bc062dcb0a5531"], "properties": ["texture, spikes, eyes", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a flower", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a white chest of drawers with legs."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["a, island, resembles, hawaii", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, ceiling, hole", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof truss, insulation, suspended ceiling", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["shape is cube, material is wood, color is white", "metal, rusted, paper"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": ["white korean word on a gray background.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "c8936ace72954650b4e2d84246964849"], "properties": ["color, background, font", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white drawing of a toilet"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d model of a house with a roof"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a black rock with writing on it."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["- material is stone - color is blue - shape is arrowhead", "color, black, writing"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a black and white photograph of a rock with writing on it"], "question": "which rock has writing on it", "label": 1}, {"captions": ["white pendant light fixture ()", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color is white, material is metal, light source is incandescent", "roof, structure, greenhouse"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a 3d model of a building with a roof"], "question": "which is not a structure", "label": 1}, {"captions": [" featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["9d03ee6c9fcc458e9485aa7cb0d1f4cb", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, city, train", "room, furniture, window"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a toy train set on a table", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" a white building with a red roof.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1f9580be397d4f948bf53fe1d5bc5756", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, white, roof, red", "a, color, white"], "captions_pred_pc": ["in 15 words or fewer a black and white drawing of a camera", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a desk and chair"], "question": "which entity is a building?", "label": 0}, {"captions": [" of a cannon with a wheeled cart.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "b896a0898efe4059a776193c02132129"], "properties": ["wheeled, cart, cannon", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["dial, face, band", "island, terrain, water"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small house with a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, house, small", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with roof trusses"], "question": "which house has a roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a snowy small village with farm buildings and a fence."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "6bb669534ccc434f9ab4d7b39bae3510"], "properties": ["building, tree, plane", "building, fence, snowy"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a boat on the water"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small village in the snow royalty free 3d model preview no. 3"], "question": "which entity has a fence", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "a17477b445b3443189dad22f768b888b"], "properties": ["bedside table, wheels, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a white chest of drawers with legs."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a large white and metal building with a metal roof structure."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["runner, bed, bench", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a large white box"], "question": "which entity has a roof", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, mattress, pillows", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small house with a blue roof.", " a small white house with a roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, color, blue", "roof, color, white"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a house with wooden framing and trusses."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["house, color, white", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a house under construction"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["roof, metal, white", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "an image of a pile of trash on the ground"], "question": "which entity has grass", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "c8936ace72954650b4e2d84246964849"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a roof"], "question": "which roof is pink", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["color, hat, glasses", "hat, watch, clock"], "captions_pred_pc": ["a black and white image of a brake pad", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["d6087023095446fbadef1721478373b2", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["door, roof, window", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small house with a blue roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["resembles, octopus, squid, spider, robot", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " of a person breaking through a brick wall."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "image, brick, wall"], "captions_pred_pc": ["above a black and white drawing of a cross", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["face, handle, spout", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white illustration of a window"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "bf18bfd89efd43389781050230467d58"], "properties": ["metal, legs, frame", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a large stone buddha statue atop a rock, on a monumental pillar.", " a wooden roof structure with a pink roof."], "sample_ids": ["478ab30e64cd4dbc8fa09ba76f5b95cb", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["buddha, rock, pillar", "roof, color, pink"], "captions_pred_pc": ["above a black and white illustration of a tombstone", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": ["a black rock with writing on it.", " a white square with the words \"what tv\" on it."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, black, writing", "color, white, words"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white image of a long line of numbers"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d rendering of a white box on a gray background"], "question": "which object has more words", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- material is plastic- color is green- shape is box", "glass, metal, balls"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof structure, truss, ceiling", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " of two rocks with ice elements."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, white, words", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a long line of numbers", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a picture of a rock with ice elements?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, windows, building", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "house, pool, balcony"], "captions_pred_pc": ["a black mascara brush on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a white sofa, chair, and box."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "4c59733ebd634594a921b7ace60e4142"], "properties": ["color is purple, material is plastic, number of legs is four", "sofa, chair, box"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a white chair"], "question": "which chair is white", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["image is a sculpture of an angel on a wall", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a wooden-cased radio."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["Drawer, Handle, Wood", "case, material, wood"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 0}, {"captions": ["white table lamp with a white shade.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["color, white, shade", "cup, bottle, chessboard"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a white table lamp with a white shade", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is on a chessboard?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of two rocks with ice elements."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, horns, features", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["floor plan, ceiling light, color", "broom, shovel, fireplace"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "c8936ace72954650b4e2d84246964849"], "properties": ["frame, truss, roof", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a roof"], "question": "which roof is pink", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, yellow", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a black and white photograph of a birdhouse"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["table, staircase, light", "room, staircase, bus"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- material is plastic- color is white- shape is cylinder", "wood, board, shelf"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", "a black and white of a knife/sword with a handle."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, black, white, handle, armrest", "image, color, black and white"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a futuristic white sports racing car."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["low poly, llama, kangaroo", "color, white, futuristic"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a futuristic sports car"], "question": "which is not a car", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "b896a0898efe4059a776193c02132129"], "properties": ["white, rock, shell", "- material is stone, metal, concrete"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, room, ceiling", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a house with wooden framing and trusses."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["size, material, wheels", "frame, trusses, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, wall, roof", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a red mushroom on top of various piles, including dirt, leaves, wood, and garbage."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "21d3bd3978f74308a312b4379e665dbd"], "properties": ["a, b, c", "red, pile, garbage"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white illustration of a triangle"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a black and white image of a mushroom in a pile of leaves"], "question": "which entity has a pile of garbage?", "label": 1}, {"captions": ["a white of a small archway gate.", " a witch wearing a black and white hat."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["image, color, white", "color, black, white"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which image is black and white?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "db74ee1621464be1b164be26a1af050e"], "properties": ["houses, trees, road", "window, arches, wall"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "b5afccae993346079483507296fbb029"], "properties": ["color, tail, cord", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a concrete column"], "question": "which object is not a mouse?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " featuring a chair, table, and refrigerator."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["background, color, white", "chair, table, refrigerator"], "captions_pred_pc": ["a black and white image of a cat's head", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a chair", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "b896a0898efe4059a776193c02132129"], "properties": ["texture, color, shape", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white square made of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "two white spheres in a ."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "1c02212a35134545ab63ab180d629c31"], "properties": ["- material is plastic- color is green- shape is box", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a white ball on a gray background"], "question": "which object is not a box?", "label": 0}, {"captions": [" a two-story small apartment building with a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["two-story, roof, building", "house, roof, wooden"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["Drawer, Pattern, White", "house, hill, forest"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "6b745457e06840119058883b35f78f58"], "properties": ["color, temperature, england", "roof, color, blue"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "bded33af34104b9686b845dfd18309a9"], "properties": ["variation, bread, pot", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of an object", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, lighting, booth", "color, frame, shape"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["box, cylinder, bottle", "desk, chair, lamp"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d rendering of a desk and chair in a room"], "question": "which entity has more chairs", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " of two rocks with ice elements."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "a2354f13774340d392fbf33564934aab"], "properties": ["roof trusses, beams, suspended ceiling", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "a17477b445b3443189dad22f768b888b"], "properties": ["house, fence, dog", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "36d90269173b4d1a84dbd61664593f66"], "properties": ["graffiti, bench, wall", "a, eagle, wood"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a map with dots all over it"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a person sitting on the edge of a cliff"], "question": "which entity has a statue of a woman?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, tower", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of an egyptian sarcophagus."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["frame, roof, trusses", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small building with windows and a roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["houses, trees, road", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, room, ceiling", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e34088fc7b5344c4ab29fef067750225"], "properties": ["chair, table, refrigerator", "sphere, pedestal, statue"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " of a small wooden house with a roof."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["structure, roof, pitch", "roof, house, wooden"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "d5722274fb094222aca90bb59f4dff09"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "chest of drawers, cabinet, white"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d rendering of a white cabinet with a drawer"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, material is plastic, shape is tube", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white object on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, blue, components", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a black castle with stairs and a door.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["door, stairs, color", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["background, color, white", "3D, toothpick, skateboard"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a white toothbrush on a gray background"], "question": "which entity has a toothpick in it?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a small orange piano with legs."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, leg, tail", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which entity is not a green alien creature with long legs and a long tail?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a small wooden house with a green roof."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, color, yellow", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "411c164757fc4de68dfecb35fa858223"], "properties": ["light source, fixture, color", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house with wooden framing and trusses."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["graffiti, chinese writing, door", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a clay pot with holes in it."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, model, luggage", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a red, blue, and green striped tower building."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["color, shape, and size", "color, red, blue, green"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which entity is a building?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, roof, white, cubes", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, door, clock", "building, color, black and white"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c3a82df41875402285608ef13a55df57"], "properties": ["color, roof, tray", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, stairs, house", "door, roof, pool"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small house"], "question": "which house has a door?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "bf18bfd89efd43389781050230467d58"], "properties": ["color, roof, green, frame, red", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a small building with windows and a roof."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, tower, color", "roof, windows, building"], "captions_pred_pc": ["for a black square on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["door, roof, pool", "building, plane, room"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small building with windows and a roof."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["blue tarp, flower, small island", "roof, windows, building"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, hat, glasses", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a brake pad", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["backrest, curved, yes", "frame, truss, roof"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, white, containers", "color, green, squirt gun"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, grass, moss", "metal, legs, wheels"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an old metal locker"], "question": "which object has legs", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["houses, trees, road", "floor, stairs, bathroom"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small table"], "question": "which entity is a house?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small, snow-covered house."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["room, house, windows", "house, snow, cover"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["shape, color, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a pink, ear-shaped object."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["a train, a ship, a boat", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["floor plan, heating system, ceiling light fixture", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": ["a football card featuring a player's picture, encased in a clear plastic case.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["9aa127175ff9458395cce9eff20552e5", "96d127abd21049689918e671ec613ef8"], "properties": ["case, player, football", "axe, hammer, spoon"], "captions_pred_pc": ["of a black and white image of a pair of boots", "of a black lace belt on a white background"], "captions_pred_image": ["a black and white photograph of a comic book cover", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a football card?", "label": 1}, {"captions": [" of a white bunny head", " a large white and metal building with a metal roof structure."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, head", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a clay pot with holes in it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a large white and metal building with a metal roof structure."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, pier, railings", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a large white box"], "question": "which structure has a metal roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a small wooden house with a green roof."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["two-story, roof, building", "roof, color, green"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a house with a ladder"], "question": "which building has a roof that is the color of green", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, tan, brown, orange", "hippo, hind, legs"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white illustration of a frog"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity has legs", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["cover, torn, open", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["desk, chair, lamp", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, model, white house", "house, pool, balcony"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small wooden house."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, roof, green", "house, material, wood"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["mossy, rock, grass", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a large gray sphere", " of a wildebeest with horns, royalty-free."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["size, color, shape", "image size, image, royalty"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a wildebeest"], "question": "which entity is a royalty free image?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a ring featuring a green and blue stone."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "de3a0907767b4ba6b7ccf99c45ccc0e5"], "properties": ["color, shape, and size", "color, stone, green, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a circle of black dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendered image of a ring with a bee on it"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["color, blue, structure", "blue, yellow, frog"], "captions_pred_pc": ["a black and white image of dots on a white background", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a piece of furniture"], "question": "which entity has a frog on a cart?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a large house with a roof on a platform."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "cb3e09a301b746918a682a595037c7f7"], "properties": ["color, shape, gun", "roof, platform, house"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, background, white", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which sculpture is made of clay", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "bf18bfd89efd43389781050230467d58"], "properties": ["color, white, red, pink", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a white cross with a statue of jesus and a man on a pedestal.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["39b72b2ea03345c595c1d63a7b54987e", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, pedestal, statue", "s, laptop, printer"], "captions_pred_pc": ["for a black and white photo of a cell phone on a white background", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of the crucifixion of jesus on the cross royalty-free 3d model", "a black and white image of an electronic device"], "question": "which entity has a statue of a man on a pedestal?", "label": 0}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, material, pattern", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a white van with a logo on the side.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, logo, side", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a scissors", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a white van", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- color is white- shape is cubes- number is 1", "box, paper clip, lock"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["water, boat, rock", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "c3a82df41875402285608ef13a55df57"], "properties": ["color, hand, flowers", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a pink roof.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, roof, pink", "earbuds, light, ring"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which object has a light?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["building, tree, plane", "mossy, rock, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a piece of wood on a white background"], "question": "which entity has more grass", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, balcony, street", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["black, white, laptop", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of a surfboard"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a wooden-cased radio.", " a small white box with a green light."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["case, material, wood", "color, white, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a building with blue lines and structure.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["color, shape, structure", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, material, structure", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, structure, truss", "house, roof, wooden"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "a2354f13774340d392fbf33564934aab"], "properties": ["Cabinet, Drawers, Filing", "building, roof, yellow"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" a spiral staircase with railings.", " of a wooden staircase with marble floor and wooden railings in a house."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "ee70964ce5e841bd87381cff40d59b88"], "properties": ["railings, staircase, spiral", "floor, staircase, railings"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "a black and white drawing of a light switch"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a staircase on a marble surface"], "question": "which staircase has wooden railings", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of a white wall-mounted light switch, electrical outlet, and various furniture pieces."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "b195bf7ba6094e1b812e4312deeeb360"], "properties": ["orange, forklift, parking lot", "light switch, electrical outlet, furniture"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d rendering of a room with a white background"], "question": "which image shows a light switch and electrical outlet?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["room, bed, desk", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a wooden-handled axe .", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["handle material is wood, head material is metal, overall length is long", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a black and white striped box."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["roof, air conditioner, house", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a window", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, material, steel", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a large house with a roof on a platform."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, truss, lamp", "roof, platform, house"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small wooden house with a green roof."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, material, texture", "roof, color, green"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, white, plastic", "metal, rusted, paper"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white bowl", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1ef5a7e9ce464ebb95d21fe298252128", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, material", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a circle made up of many small dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white bowl on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a tree with green leaves."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "1a902b67735845198efb1b84f434b580"], "properties": ["color, shape, light", "leaf, color, green"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": [" a stone knife.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["material is stone, blade is sharp, handle is wooden", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "c3a82df41875402285608ef13a55df57"], "properties": ["lighthouse, fountain, crater", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "a2354f13774340d392fbf33564934aab"], "properties": ["color, white, logo", "building, roof, yellow"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" of a clear glass display case with a square light fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["980ded888795417f94b46750105e1597", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["light, fixture, square", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a room with dots on the floor", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a clear plastic box", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a crab holding a rubik's cube."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["floor plan, bathroom, pool", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white image of a crab holding a cube"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "a17477b445b3443189dad22f768b888b"], "properties": ["desk, chair, lamp", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, fence, playground", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "e098706085a44898abbd549693d12a64"], "properties": ["color, shape, material", "color is black, white, orange"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", "white ceramic face sculpture resembling an ice cream blob."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "8abc3a28cbba40428c9b364f90a4982a"], "properties": ["- material is plastic- color is white- shape is cube", "blob, face, white"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "above a black and white photograph of a starfish"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a head with eyes and a nose"], "question": "which object is made of ceramic?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, hat, glasses", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a brake pad", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["house, staircase, table", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a throne with a tree on it"], "question": "which entity has stairs", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, blue, rim, blue", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["boat, table, chairs, umbrella, solar panel", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" of a framed forest scene painting on a wooden door and cabinet.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a243183445184d2e977044a5b6916e55", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["painting, frame, door", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a large group of people", "for a black and white image of an object on a white background"], "captions_pred_image": ["a picture frame with a black and white photograph", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["frame, roof, trusses", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a clay pot with holes in it."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, size", "hole, material, clay"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box with a black base", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a gray, metal pillar/cylinder.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["11391e6bab574dc0be8f2440fbc3b724", "c3a82df41875402285608ef13a55df57"], "properties": ["color is gray, material is metal, shape is cylinder", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black candle on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a candlestick", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["chair, table, refrigerator", "grass, plants, rocks"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a wooden shed with a gray roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, structure, greenhouse", "roof, color, gray"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house with a tree and a rock."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["hat, food, bowl", "house, tree, rock"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["s, plane, house", "house, hill, forest"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a house with a green, wooden-structured roof."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a white glass beer mug."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "1d686cbd3e9a4c629a43088658989286"], "properties": ["pattern, color, shape", "color, white, glass"], "captions_pred_pc": ["a black circle on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, bird, lamp", "island, terrain, rocks"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["background, color, white", "a, landscape, sand"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a wooden-cased radio.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["case, material, wood", "metal, rusted, paper"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small red renault clio car.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is red, make is renault, model is clio", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["color, roof, tray", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a building"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a table with multiple tables and chairs"], "question": "which entity has a steel structure", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "d49d8ed244094349a99e4faca05e0690"], "properties": ["holder, spring, box", "low poly, plant, white"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["building, roof, balcony", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of the roof of a house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a large house with a roof on a platform."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "cb3e09a301b746918a682a595037c7f7"], "properties": ["floor plan, ceiling light, color", "roof, platform, house"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a potted christmas pine tree.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, color, green", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["house, fence, dog", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["color, shape, and size", "mossy, rock, rocky"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which entity is more rocky", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, green, leaf", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a green roof", "label": 1}, {"captions": ["white 3d paper airplane map model", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["85b15741a9cb4e0bbb859f1319ac4b5b", "c3a82df41875402285608ef13a55df57"], "properties": ["color is white, material is paper, shape is airplane", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["black glitter africa map on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the state of new york", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "a17477b445b3443189dad22f768b888b"], "properties": ["color, material, shape", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["floor, staircase, railings", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a wooden roof structure with a pink roof."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a, plane, small plane", "costume, color, black"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["Black, Shelf, Metal", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["floor, wall, roof", "color, background, white"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "an image of a white background with a few small cubes on it"], "question": "which entity has a white background", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "e694d53545d449319a64cceb0280c3c6"], "properties": ["earbuds, light, ring", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a house with a green, wooden-structured roof."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["bread, knife, board", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small wooden house with a green roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, structure, truss", "roof, color, green"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["purple potion bottle with a cork on top.", " a small wooden house with a green roof."], "sample_ids": ["38eabecd9f4345de934ebd27d7504480", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a white and gray bottle with a spoon inside", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, green, squirt gun", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a wooden windmill with a red roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, red"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a black and white striped fly in the air."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["mossy, rock, rocky", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black and white photograph of a fly"], "question": "which entity is not a striped fly?", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, yellow, black", "grass, plants, rocks"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a train, a ship, a boat", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, pier, stairway", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "d49d8ed244094349a99e4faca05e0690"], "properties": ["hat, food, bowl", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, shape, and material", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a black and white object on a gray background"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small wooden house."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["bedroom, bathroom, bed", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "9050ebb69503447680d4757dfc708754"], "properties": ["color, light, jewels", "a, head, bowl"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in your own words a black and white illustration of a vase filled with beads"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white drawing of a bunch of tangled wires"], "question": "which object has a head?", "label": 0}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d silver knight's helmet."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "83c36d2cebd94939adbb0982fe547f5f"], "properties": ["color, white, black, white", "- material is metal- color is silver- texture is textured"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a heart shaped object"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a medieval knight's helmet royalty free 3d model preview no 3"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a bow and arrow set", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["arrows, bow, set", "a, material, clay"], "captions_pred_pc": ["for a black and white illustration of a bee", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a bow and arrow", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, roof, tray", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a wine corkscrew"], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a knife, blade, handle", "a, type, corkscrew"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, white, red, pink", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has more green leaves", "label": 1}, {"captions": [" a robot head with a helmet.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["55ccc07cea0640788d42448bc6559087", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["helmet, head, robot", "hat, skull, bread"], "captions_pred_pc": ["of a silver ring with black crystals", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a bust of a robot head royalty free 3d model preview no 2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a small house with a blue roof.", " a large metal building with a roof and truss structure."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, blue", "roof, truss, structure"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["mossy, rock, grass", "a, character, mario"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "for a black and white sculpture of a person"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a video game?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a 3d lego character wearing a black helmet, gloves, and holding a gun."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "f71842519d2f44ceb9fa57e0c0db4aa0"], "properties": ["a, color, white", "- color is black- material is plastic- shape is 3d"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a lego ninja turtle wearing a black helmet and gloves"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " of a small white building with stairs and a lid."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["low poly, llama, kangaroo", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a small white building with stairs and a lid."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["image is rock formation with a white cliff and a rock", "building, stairs, lid"], "captions_pred_pc": ["above a black and white map of spain on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a human bone", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["a, b, c", "a, color, red"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a castle with two towers"], "question": "which entity has a red roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["water, boat, rock", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["shape, color, material", "table, staircase, light"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a table with a staircase"], "question": "which object is made of a material that is not a rock?", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a large steel building with a pool."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["composed of, white, cubes", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, shape, height", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a truck on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, tower", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small white house with a staircase and a window."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "9eb88d17310d42dda9e17883e9922525"], "properties": ["roof, color, purple", "house, staircase, window"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a large orange keg with a white lid."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "cf24eea70b4f4067b36583924a82cc35"], "properties": ["- material is plastic- color is green- shape is box", "color, lid, orange"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a gray keg with a white lid sits on top of a gray surface"], "question": "which object is made of plastic", "label": 0}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["floor plan, heating system, ceiling light fixture", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["rusty, sink, graffiti", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a small white building with stairs and a white table."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "building, stairs, table"], "captions_pred_pc": ["a black mascara brush on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, green, blue", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white and gray glove", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["background, color, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a white castle composed of small cubes."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["house, yard, surrounding buildings", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white house with a roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, door, window", "roof, color, white"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "a59efdbb28a241b8866bfc094c8c80b2"], "properties": ["a, bird, lake", "a, bird, lamp"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a silhouette of a person standing in the air"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a black and white image of a futuristic sculpture"], "question": "which entity has a bird flying above a lake?", "label": 0}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, roof, tray", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a black rock with writing on it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, shape, and size", "color, black, writing"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, head, body", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, door, window", "house, roof, blue"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, shape, material", "color, pattern, word"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a witch wearing a black and white hat."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["color, shape, gun", "color, black, white"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which entity is a hat", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, stone, green, blue", "a, material, clay"], "captions_pred_pc": ["a circle of black dots on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["white 3d paper airplane map model", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["85b15741a9cb4e0bbb859f1319ac4b5b", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is white, material is paper, shape is airplane", "box, handle, gun"], "captions_pred_pc": ["black glitter africa map on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of the state of new york", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["a, door, suitcase", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a table with a red and white striped base.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["1c5f4bb610644327ad0db547adb5499e", "67701617472e4051b95955c596561aac"], "properties": ["base, color, red, white", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white illustration of an object that is made up of many small dots", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a white desk with two legs", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "20a02705a66f460492e07345e84a62ed"], "properties": ["chair, table, refrigerator", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["graffiti, bench, wall", "house, tree, hill"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, bench, rack", "arrow, red, white"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": ["a pixelated eagle with a yellow and white head and yellow beak.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9ce77b4cc05c4060a74b8f2568e6bbe8", "09f2cf267e954c958828325067bcc36a"], "properties": ["eagle, head, beak", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d image of a penguin in a pixelated world", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a white of a woman with her arms outstretched."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["roof, air conditioner, house", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " of a barrel and a cube together."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["a train, a ship, a boat", "a, barrel, cube"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["hat, sword, gun", "a, building, coin, ball"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" of a bow and arrow set", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["arrows, bow, set", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white illustration of a bee", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a bow and arrow", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "6b745457e06840119058883b35f78f58"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["lighthouse, fountain, crater", "torso, breasts, pattern"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["computer desk, laptop, monitor", "a, material, clay"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["085db9059b744673b5623b5338e02196", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, red, house", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white dotted square on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["desk, chair, lamp", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["shape, bathroom, refrigerator", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, mattress, pillows", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has more green leaves", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, roof, tray", "house, fence, dog"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["mossy, rock, grass", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " of two rocks with ice elements."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["island, terrain, water", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a woman with her arms outstretched."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, and size", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a wooden crate", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["e2a74e97b8014a1d8a2b2ea3fd3b8fb8", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["size, material, shape", "metal, legs, wheels"], "captions_pred_pc": ["in one sentence a black and white image of a dotted square on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a wooden crate with a lid", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["liquid, ice, lid", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, red, blue, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["building, color, yellow-green", "throne, chair, building"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a white castle composed of small cubes."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["image size, image, origami", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a castle made of white cubes"], "question": "which image is composed of small cubes", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "e694d53545d449319a64cceb0280c3c6"], "properties": ["color, handle, straps", "3d, slide, swing"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a white human skull with broken bone elements."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", "a white of a man with arms outstretched."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, ceiling, hole", "image, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a wine corkscrew"], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["blue tarp, flower, small island", "a, type, corkscrew"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white image of a corkscrew"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a white and blue building with a black roof."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "c893118316ee43e18322e5964b2806c5"], "properties": ["backrest, curved, yes", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["hat, shirt, bearded", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a wooden windmill with a red roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["house, tree, rock", "roof, color, red"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, label, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["structure, roof, pitch", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "d81d13362ae04371bb2cba46e4939665"], "properties": ["lamp, harp, bowl", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a harp in a white room", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["computer desk, laptop, monitor", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "6b745457e06840119058883b35f78f58"], "properties": ["frame, truss, roof", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " a white castle composed of small cubes."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, pattern", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a small white house with a roof."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, material, stone", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a building with a white roof"], "question": "which building is made of white", "label": 1}, {"captions": ["a white of a small archway gate.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "bf18bfd89efd43389781050230467d58"], "properties": ["image, color, white", "Lights, number, five"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white arch", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["building, door, clock", "house, fence, playground"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "lion, statue, fountain"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d image of a lion statue on a wall"], "question": "which entity is a fountain?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["lighthouse, fountain, crater", "buildings, houses, grass"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["room, bed, desk", "structure, roof, pitch"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure?", "label": 1}, {"captions": ["a wooden-handled axe .", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["handle material is wood, head material is metal, overall length is long", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, awning, cover", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["house, roof, toothbrushes", "house, roof, green"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["floor, staircase, table", "image, house, ceiling"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a white of a gun.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, white, gun", "hat, skull, bread"], "captions_pred_pc": ["of a white object on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["windmills, silhouette, city model", "houses, trees, road"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, bird, lamp", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a silhouette of a person standing in the air", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, color, red", "table, stairs, ladder"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["color, roof, tray", "roof, structure, suspended"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, metal, white", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small blue robot with a windmill.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5f915b161cc74fedad52d8663b41f87a", "b896a0898efe4059a776193c02132129"], "properties": ["color, blue, robot", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a 3d sculpture", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a wind turbine", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a house with a wooden-framed roof structure."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a white and blue building with a black roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, color, white", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building is white and blue?", "label": 1}, {"captions": ["a white mannequin wearing a t-shirt and a purple dress on a stand.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["6290ded27d644d1887299109117a735d", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["mannequin, dress, color", "house, tree, pool"], "captions_pred_pc": ["of a black plastic eye on a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a mannequin wearing a white t-shirt on a pedestal", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has more trees", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, green, squirt gun", "striped, white, black"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a stack of books"], "question": "which object is striped", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["chair, table, refrigerator", "Wheels, laptop, robot"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a stone wall featuring carvings and statues."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "carving, statue, wall"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a spiral staircase with a railing in a small building."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a train, a ship, a boat", "staircase, railing, building"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a staircase in a white room"], "question": "which object is in a building", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a small white house with a roof."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["location, highway, train station", "roof, color, white"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, color, pink", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, white, railing, black", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a computer screen", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "metal, cross, clock"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white image of an object on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " of a stone wall with a window and a clock."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["a, window, statue", "window, clock, wall"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a brick wall"], "question": "which wall has a window", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, front, road", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["ruined building, stone floor, small stone structure", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "cover, black, plastic"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["two-story, roof, building", "hat, skull, bread"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["a box, a cup, a bottle, a jar", "table, stairs, ladder"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a table with a stool on top"], "question": "which entity has a table", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["floor, staircase, balcony", "room, staircase, bus"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a small purple plastic chair with a handle and white base.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["cc5abae412db4e4b952eee1e4747af05", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, plastic, base", "wood, board, shelf"], "captions_pred_pc": ["above a black and white illustration of a necklace", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "832a022cdcc74763b0571e04af4e592b"], "properties": ["color, shape, material", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a white and black helmet", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "6b745457e06840119058883b35f78f58"], "properties": ["runner, bed, bench", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["house, roof, green", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a house with roof trusses"], "question": "which house has a roof truss?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["b5afccae993346079483507296fbb029", "096e42b466ec438d95c5d89a85191534"], "properties": ["shape is square, material is metal, color is rusty", "white, rock, shell"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a wooden table and chair."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["yellow, table, roof", "table, chair, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, red", "roof, beams, chimney"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, plane, sky", "mountainous, landmass, state"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a wooden shed with a gray roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which object has a gray roof", "label": 1}, {"captions": [" a toy motorcycle, car, and robot on an orange platform.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7407a108e0354925b83b750339bc03df", "b896a0898efe4059a776193c02132129"], "properties": ["platform, color, orange", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a bicycle", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a motorcycle on a pedestal", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small building with windows and a roof.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, windows, building", "island, terrain, water"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "c8936ace72954650b4e2d84246964849"], "properties": ["chair, table, refrigerator", "roof, color, pink"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house with a blue roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["hat, sword, gun", "roof, color, blue"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["color, screen, drawer", "hat, shirt, bearded"], "captions_pred_pc": ["above a black and white image of a brush", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["hat, food, bowl", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, color, pink", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a house with a blue roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, yellow, black", "Wheels, laptop, robot"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a black and white image of a suitcase on wheels"], "question": "which entity has more wheels", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, leg, tail", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a sword on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small white house with a roof."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, texture", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, white, material, ceramic", "turrets, flags, towers"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "06a1c233fb444830b577aa06e2c01294"], "properties": ["floor, table, light", "house, tree, hill"], "captions_pred_pc": ["above a black and white photograph of a window", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small white box with a green light.", " a house with a wooden-framed roof structure."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, light", "roof, material, wood"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["color, light, jewels", "table, bench, deer"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, light, handle", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["color, shape, gun", "color, yellow, black"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of an airplane"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, material, texture", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, metal, white", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a large white box", "a 3d model of a house with a roof"], "question": "which building has a roof truss", "label": 1}, {"captions": [" a red lego block.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["2f5bcf94460f47469284c59ae20ace9e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of an ornate vase", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a gray lego brick on a white background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, shape, size", "cloak, sword, spear"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "37bdbc633c9545878a98ff47c3029e32"], "properties": ["A, a, a", "a, island, water"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photo of a boat in the water"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a building with trees surrounding it"], "question": "which entity has a boat floating in the water?", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "c3a82df41875402285608ef13a55df57"], "properties": ["room, furniture, window", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a room with a person in it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, base, warning", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, grass, moss", "door, roof, pool"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a spider-like creature with long arms and legs."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["light switch, electrical outlet, furniture", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a machine gun with additional items."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["a lamp, a syringe, a light pole", "gun, type, machine gun"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a submachine gun"], "question": "which object is a gun", "label": 1}, {"captions": [" of a house with a pink roof.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, roof, pink", "image size, image, royalty"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "db74ee1621464be1b164be26a1af050e"], "properties": ["roof truss, chimney, suspended ceiling", "window, arches, wall"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a green, wooden-structured roof."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, truss, lamp", "roof, color, green"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "b896a0898efe4059a776193c02132129"], "properties": ["a, ball, mushroom", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small black and white cube.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, size", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a city skyline", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "c3a82df41875402285608ef13a55df57"], "properties": ["color, blue, components", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with stairs and a roof."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, table, ceiling", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, color, pink", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a metal grate", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a modern house"], "question": "which structure has a pool", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "c3a82df41875402285608ef13a55df57"], "properties": ["door, stairs, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of two rocks with ice elements."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, rock, pond", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["giraffe, bench, flower", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a large gray sphere", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, color, shape", "roof, material, wood"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a large house with a roof on a platform."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, truss, suspended ceiling", "roof, platform, house"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "b896a0898efe4059a776193c02132129"], "properties": ["rusty, hat, dartboard", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of an ancient statue"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "88eba412c78a4ced89eb857327653f6c"], "properties": ["floor plan, bathroom, pool", "lighthouse, building, tower"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["color, yellow, black", "black, white, coffee table"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a black and white helicopter flying in the air", "a black and white 3d model of a building"], "question": "which entity is black and white?", "label": 1}, {"captions": ["a gray background featuring a white arrow, black arrow, and white and black lines in the middle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b96714473acd40f888d4d005c48b10dc", "c3a82df41875402285608ef13a55df57"], "properties": ["color, arrow, background", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a person holding a toothbrush in the shape of a toothbrush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["- color is white- shape is cubes- number is 1", "broom, shovel, fireplace"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "a17477b445b3443189dad22f768b888b"], "properties": ["white, windows, lid", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of dots on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", " a house with a flat roof structure."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "abc52d210d71415296730bb00352ce6f"], "properties": ["paper, hole, mouse", "roof, flat, structure"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- material is wood, rusty, horned", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of a plague doctor's mask", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a green electrical utility box with a warning sign and a small blue box on a concrete base."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "8e39d4766ed4444ea527d6c5ea33a5ef"], "properties": ["color, base, warning", "color, base, warning"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a box with dots on it"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of an electrical box royalty-free 3d model preview no.2"], "question": "which entity has a warning sign?", "label": 0}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "6b745457e06840119058883b35f78f58"], "properties": ["roof, room, ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a white glass beer mug."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, pattern, material", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["floor, wall, roof", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small house with stairs and a roof."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, screen, drawer", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "bded33af34104b9686b845dfd18309a9"], "properties": ["building, stairs, shelves", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, type, factory", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "b896a0898efe4059a776193c02132129"], "properties": ["a, desk, laptop", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a piece of furniture", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a brick wall with grass."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, white, black, white", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white photo of a brick wall and a puddle"], "question": "which object is made of brick", "label": 1}, {"captions": ["black and white image of a motorcycle", "a pair of red-handled pliers and wire cutters, with black accents."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "3ffc31b7e4cd43f3a3df5722ef8b9fca"], "properties": ["color, black, white", "color, red, black"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white image of a toothbrush and a toothbrush"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d rendering of a pair of pliers on a white background"], "question": "which entity is a pair of red-handled pliers and wire cutters", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, roof, tray", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a house with a wooden-framed roof structure."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["floor, table, wall", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a building with a roof"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" of a lantern on a table.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, table, lantern", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a lantern on a table", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, trusses, beams", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a roof structure", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "a17477b445b3443189dad22f768b888b"], "properties": ["hat, candy, strawberry", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["house, roof, blue", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock structure?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house with a flat roof structure."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "abc52d210d71415296730bb00352ce6f"], "properties": ["Arms, Legs, Color", "roof, flat, structure"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["floor plan, bathroom, pool", "building, room, sky"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, green, tiled", "roof, material, wood"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " a house with a roof and beams."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["text, material, shape", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small wooden house."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, roof, block", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["metal, laptop, light fixture", "house, rock, bird"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, handle, zipper", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "house, hill, forest"], "captions_pred_pc": ["a close up of a black object on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a machine gun with additional items."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["stair, table, chair", "gun, type, machine gun"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a submachine gun"], "question": "which object is a type of gun", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " an old lantern with moss on it."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "62925f26fd624310bd6b31136fe8e706"], "properties": ["- material is plastic- color is green- shape is box", "moss, lantern, old"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a black and white image of an old lantern"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" of a white bunny head", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "6b745457e06840119058883b35f78f58"], "properties": ["color, white, head", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["color, table, ceiling", "roof, truss, lamp"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a house with a metal roof"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "c3a82df41875402285608ef13a55df57"], "properties": ["wood, board, shelf", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a large metal building with a roof and truss structure."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, door, window", "roof, truss, structure"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, stairs, lid", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, house, small", "roof, truss system, framing"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a house"], "question": "which house has a roof with truss system", "label": 1}, {"captions": ["a 3d white ring adorned with flowers and leaves.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["house, staircase, window", "house, plane, town"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a damaged building"], "question": "which house is in a town?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a large building with a roof and windows."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, door, window", "roof, windows, building"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, white, material, ceramic", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white map of the state of new york"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", "a white of a man with arms outstretched."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["3ds max, obj, fbx, c", "image, color, white"], "captions_pred_pc": ["a black and white insect on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, hand, flowers", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, door, cross", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["building, color, black and white", "house, hill, forest"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a black and white image of a small island in the middle of a body of water"], "question": "which building is surrounded by a forest", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a four-legged metal workbench with shelves."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, white, yellow, roof, metal", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", "a yellow and blue toy submarine."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, shape, poles", "color, yellow, blue"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a submarine toy"], "question": "which entity is a toy?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a house with a green, wooden-structured roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["resembles, toy, bookshelf", "roof, color, green"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small wooden house."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, staircase, table", "house, material, wood"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a wooden billiard table with legs."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["graffiti, bench, wall", "legs, material, wood"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" a building with blue lines and structure.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, structure", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a brick wall with grass."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, grass, moss", "brick, grass, wall"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a black and white photo of a brick wall and a puddle"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small house on a hill in a field."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, brown, flat", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a table and stool", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["Wheels, laptop, robot", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a cell phone", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d49d8ed244094349a99e4faca05e0690"], "properties": ["room, bed, desk", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of two rocks with ice elements."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["smiley-faced banana .", "smiley-faced banana ."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "cc0099a687194a31a052ac761f5fdfea"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "face is smiling, banana is yellow, smiley face is a sticker"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a banana with a smiling face"], "question": "which banana is smiling?", "label": 0}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["Headstock, Guitar, Head", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a concrete wall"], "question": "which object has rust", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, table, ceiling", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a table and chairs on a white background"], "question": "which building structure has a yellow roof", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a large axe with a cross on top."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "4b6734945e204158b076a429a30ce2e9"], "properties": ["a knife, blade, handle", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "for an axe on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a clay pot with holes in it."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, red, pink", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["floor plan, bathroom, pool", "roof, trusses, beams"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a roof structure"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a large metal building with a roof and truss structure."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, eye, handle", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a room", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a four-legged metal workbench with shelves."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["base, speaker, light", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white illustration of a clock", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["color, dragon, cloth", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " of a small white building with stairs and a lid."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["text, material, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a wooden staircase with a railing and table."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "956247bea850458199c651037d4b1d7f"], "properties": ["color, table, chairs", "railing, table, staircase"], "captions_pred_pc": ["a close-up of a white object on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a table with a staircase"], "question": "which staircase has a table?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "e694d53545d449319a64cceb0280c3c6"], "properties": ["red, pile, garbage", "3d, slide, swing"], "captions_pred_pc": ["above a black and white illustration of a triangle", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["striped, white, black", "striped, white, black"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a stack of books"], "question": "which box is white and black?", "label": 0}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, color, pink, blue", "house, rock, bird"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, pattern, field", "house, tree, hill"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["green dumbbell ", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "c3a82df41875402285608ef13a55df57"], "properties": ["color is green, shape is dumbbell, material is metal", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e34088fc7b5344c4ab29fef067750225"], "properties": ["a train, a ship, a boat", "sphere, pedestal, statue"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house on a hill in a field."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["ceiling, light, desks", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of a small house"], "question": "which entity is outside?", "label": 1}, {"captions": ["a 3d low poly model of an orange with a green leaf and stem.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cdd918943a124d3f94859d9f67ab8e3e", "c3a82df41875402285608ef13a55df57"], "properties": ["3d, low, poly", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a paper airplane flying in the air", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a large house with a roof on a platform."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, gray", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a small house"], "question": "which roof is on a platform", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["computer desk, laptop, monitor", "throne, stairs, tree"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a house with a roof and beams."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["mossy, rock, rocky", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, model, white house", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["wood, board, shelf", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small house with a red roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "085db9059b744673b5623b5338e02196"], "properties": ["house, roof, wooden", "roof, red, house"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["graffiti, chinese writing, door", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "white marble textured cube."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "387f392ce11941468c27c9076e409e31"], "properties": ["color, shape, and size", "texture, color, shape"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white dots pattern on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white marble cube"], "question": "which object has a texture that is similar to marble?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "f1b557775310478893242180defa4d80"], "properties": ["color, mouth, eyes", "shack, roof, door"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["747110c073314ee39ef2f4a8d63222da", "a17477b445b3443189dad22f768b888b"], "properties": ["s, laptop, printer", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a pair of scissors", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of an electronic device", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", " a building with yellow lines."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, shape, material", "color, yellow, lines"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a building with blue metal framing and structure."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, shape, material", "color, blue, structure"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a building under construction"], "question": "which entity is made of blue metal", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a house with a flat roof structure."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "abc52d210d71415296730bb00352ce6f"], "properties": ["size, material, logo", "roof, flat, structure"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["top, color, wood", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, color, blue", "house, lake, pool"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a white glass beer mug."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- color is white - shape is box - material is plastic", "color, white, glass"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "09f2cf267e954c958828325067bcc36a"], "properties": ["red, mouse, handwriting", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", " a house with a roof and beams."], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, color", "roof, beams, house"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a piece of fabric", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a white and blue building with a black roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, green, lawn", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a white of a woman with her arms outstretched."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["ceiling, light, desks", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a white building with a red roof."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, roof, blue", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "5f46ebb58caa4383b5950c2022d2ffd6"], "properties": ["color, orange, leather", "a, character, mario"], "captions_pred_pc": ["a black and white illustration of a chair", "for a black and white sculpture of a person"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a cartoon character jumping in the air"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "9968e06a62e8487ea33460e640abc573"], "properties": ["- material is stone - color is blue - shape is arrowhead", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "d49d8ed244094349a99e4faca05e0690"], "properties": ["balcony, stairs, house", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " of two rocks with ice elements."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, size", "image is a rock with ice elements"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, roof, pink", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white square with the words \"what tv\" on it."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, words"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a white box on a gray background"], "question": "which entity is a square?", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "c3a82df41875402285608ef13a55df57"], "properties": ["composed of, white, cubes", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a black and white of a knife/sword with a handle.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["c7692fa635e049bda0a2039fa5a784a4", "c4e45a41478e42418399074b88d8920f"], "properties": ["image, color, black and white", "axe, handle, wood"], "captions_pred_pc": ["of a black and white knife on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a black and white image of a knife", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "c3a82df41875402285608ef13a55df57"], "properties": ["color, hat, flower", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, roof, tray", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of the roof of a building"], "question": "which roof is pink-purple", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "5850d5c7223447db816081d50292fec0"], "properties": ["color, shape, and size", "structure, material, pool"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a large concrete structure"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small purple plastic chair with holes."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, texture", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "20a02705a66f460492e07345e84a62ed"], "properties": ["image, color, pink", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["hat, candy, strawberry", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a house with a roof and beams."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, wall, color", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a clay pot with holes in it."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["shape, bathroom, refrigerator", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, style, pixel", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, truss, suspended ceiling", "roof, trusses, beams"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, yellow, black", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of an airplane", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, shape, material", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["table lamp, ceiling light, table", "table, structure, roof"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a map with dots"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["apse, roof, floor plan", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of an empty room"], "question": "which building has a door and a shelf", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, laptop, teddy bear", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a large metal building with a roof and truss structure."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "b85a99699ccd4bcba213322113bb253d"], "properties": ["screen, keyboard, box", "roof, truss, structure"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a long metal fence"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white mannequin wearing a t-shirt and a purple dress on a stand.", " of two rocks with ice elements."], "sample_ids": ["6290ded27d644d1887299109117a735d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["mannequin, dress, color", "image is a rock with ice elements"], "captions_pred_pc": ["of a black plastic eye on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a mannequin wearing a white t-shirt on a pedestal", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a potted plant on a wooden table or shelf.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["potted plant, table, shelf", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small purple plastic chair with holes."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["background, color, white", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a cat's head", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["wood, board, shelf", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a small island with a mountain, a lake in the middle, and a bird flying above."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "e51fead89ae64968b2ca7f4ccb6d3b97"], "properties": ["a, bird, lake", "a, bird, lake"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white photograph of a cloudy sky"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a mountain range in black and white"], "question": "which entity has a mountain?", "label": 0}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["light, toilet, faucet", "paint, rust, concrete"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d model of a concrete wall"], "question": "which entity has more paint", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", "a white glass beer mug."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "1d686cbd3e9a4c629a43088658989286"], "properties": ["Cabinet, Drawers, Filing", "color, white, glass"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a wooden table and chair.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["884d232f9cd54b6c8c41b6bf357c704f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["table, chair, wood", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small wooden table", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, blue, structure", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small house with a pond and situated on a rock."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "92859eb82a344134806b37cc209927c6"], "properties": ["background, color, white", "house, rock, pond"], "captions_pred_pc": ["a black line on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small building with windows and a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, rock, pond", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a large metal building with a roof and truss structure."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, texture", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "92498f398e244020a867686729633610"], "properties": ["house, lake, pool", "a, house, cat, dog"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ee440fcbc493488e879539d37a8d820e"], "properties": ["Drawer, Pattern, White", "island, fish, ice"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "two white spheres in a ."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, bird, lamp", "two, spheres, white, in, a"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a white ball on a gray background"], "question": "which object is not a bird?", "label": 0}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, light, jewels", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " a small white building with stairs and a white table."], "sample_ids": ["5c04dac989a64d228283687588484b93", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, material", "building, stairs, table"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d model of a building with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, color, shape", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["table, stairs, ladder", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a house with a ladder"], "question": "which object has a roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, shape, material", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d rendering of a small white table with a chair"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a numbered rock.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "1da865c75a5e4a57a17652975dae5474"], "properties": ["number, color, shape", "color, white, plastic"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["water, river, island", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " of two rocks with ice elements."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["island, terrain, rocks", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["tv, chair, laptop", "house, tree, hill"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["red, pile, garbage", "room, furniture, window"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "bf18bfd89efd43389781050230467d58"], "properties": ["color, line, gray", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a green mountain with trees and grass.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["mountain, grass, tree", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, hat, flower", "box, handle, gun"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small house with a roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, color, pink", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["black, white, laptop", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "for a black and white image of an object on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["mug, color, brown, white", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a black and white image of a stone sculpture"], "question": "which object has a blue hat", "label": 1}, {"captions": [" a small black and white cube.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, size", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "be1376023c274bdda995d54f3694157f"], "properties": ["s, stick, leaf", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house with a yellow roof and chimney."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small house with a tree and a rock."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["color, table, ceiling", "house, tree, rock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a white rocking chair with a curved backrest."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, material", "backrest, curved, yes"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a small wooden building with a roof, resembling a birdhouse or cabinet.", " of a small white building with stairs and a lid."], "sample_ids": ["a60e4d5f34aa4a6280343a8f15bb1c13", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, roof, wooden", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a birdhouse", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["building, stairs, lid", "color, background, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a white box on a gray background", "an image of a white background with a few small cubes on it"], "question": "which entity is not a building?", "label": 0}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a room, a cake, a table", "throne, chair, building"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["face, handle, spout", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a wallet"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a small house with a blue roof.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, color, blue", "house, staircase, table"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which house has a spiral staircase?", "label": 1}, {"captions": [" a small house with a roof.", " a white and blue building with a black roof."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, house, small", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["floor plan, bathroom, pool", "apse, roof, floor plan"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building in the shape of a pyramid"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, stairs, house", "roof, metal, white"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "d49d8ed244094349a99e4faca05e0690"], "properties": ["door, lock, handle", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["earbud, earpiece, earpiece", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a vibrant city skyline featuring various colored buildings, trees, and skyscrapers."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1a1fb9b0d83845f6b1238fb45e0defff"], "properties": ["water, river, island", "color, skyline, buildings"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white 3d model of a city skyline"], "question": "which entity has a skyline with buildings?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["hat, shirt, bearded", "house, table, chair"], "captions_pred_pc": ["of a black and white bracelet on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["green, hat, cream", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["white 3d origami bird model", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["3c4e617b995544638d351fbe544c8286", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, white, origami", "metal, rusted, paper"], "captions_pred_pc": ["of a black and white bunny with glitter on its head", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white umbrella on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which object is made of paper", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " of two rocks with ice elements."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["room, furniture, window", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a white rocking chair with a curved backrest."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["s, stick, leaf", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small, snow-covered house."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "house, snow, cover"], "captions_pred_pc": ["a black and white map of germany on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["- color is white- shape is cube- material is plastic", "floor, staircase, balcony"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a bench on a wooden floor"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "db74ee1621464be1b164be26a1af050e"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a white of a man with arms outstretched."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, yellow, black", "image, color, white"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["structure, building, archway", "roof, metal, white"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, trusses, beams", "roof, structure, suspended"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a house with a metal roof"], "question": "which roof structure is more detailed", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " of a hammer with a long metal handle."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, shape, text", "handle, metal, long"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white toothbrush on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a wooden shed with a gray roof."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["Arms, Legs, Color", "roof, color, gray"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "18e392c5360146eda498c5edab25b15c"], "properties": ["a, bird, hook", "frame, beams, trusses"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["red, mouse, handwriting", "camera, speaker, ceiling fan"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, table, chair", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, pattern, material", "color, pattern, word"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a large white vase on a grey background", "a beaded necklace with the word banned on it"], "question": "which entity is a bag?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "745fed115c5343dab9d7f0c389c98902"], "properties": ["fireplace, bench, log", "costume, color, black"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a house with a pink roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, roof, pink", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a white motorcycle with wings."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["water, river, island", "color, white, wings"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a motorcycle on a white background"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": ["a white 3d mannequin human head.", " a small purple plastic chair with holes."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, mannequin", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "92052c493bf141a08b56f30f9c5e2d61"], "properties": ["a, desk, laptop", "light, toilet, faucet"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a white plastic toilet paper holder on a gray background"], "question": "which entity has a light", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["black, white, coffee table", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white image of a piece of paper"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d image of a white tray with an intricate design"], "question": "which object is white?", "label": 0}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", "a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "e65de9c4ec9242679a45e74733f7d61d"], "properties": ["rusty, sink, graffiti", "rusty, sink, graffiti"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a stainless steel toilet bowl on a pedestal"], "question": "which entity has a graffiti-covered sink?", "label": 0}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white and blue building with a black roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, material, structure", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building is made of metal", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small building with windows and a roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, gray", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a two-story small apartment building with a roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, lake, pool", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a 3d white cube with windows resembling a building."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "4a07a5293f024bb0a353954a056ef626"], "properties": ["black, white, laptop", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["shape, bathroom, refrigerator", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": [" of a white van with a logo on the side.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, logo, side", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["color, shape, and size", "earphones, wire, instrument"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a curved metal rod on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which entity is a wire sculpture?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["building, door, clock", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["liquid, ice, lid", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, material, lighthouse", "a, color, white"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a large white and metal building with a metal roof structure.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["0ee2683270b1486991f9b9ef12990a78", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, metal, white", "house, roof, wooden"], "captions_pred_pc": ["of a lamp with a black shade on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a large white box", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, balcony, street", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an old building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["a47dcf3d3cf34c58af17b6715d6f1232", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["room, staircase, bus", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a building with a lot of debris", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", "royalty-free of a beaver on a skateboard."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "9b6a637ead444bd28452178c74697653"], "properties": ["flower, color, pink", "image is royalty-free, beaver, skateboard"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "for a black and white image of a person's hand holding a toothbrush"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "a beaver on a skateboard royalty free 3d model preview no. 1"], "question": "which entity is a picture of a beaver on a skateboard?", "label": 1}, {"captions": ["3d silver sculpture resembling a triangular wing with a white arrow design.", "3d silver sculpture resembling a triangular wing with a white arrow design."], "sample_ids": ["578cb910905042939d876af28e29eb2f", "578cb910905042939d876af28e29eb2f"], "properties": ["wing, silver, white", "wing, silver, white"], "captions_pred_pc": ["a black and white illustration of a pair of hands", "a black and white illustration of a pair of hands"], "captions_pred_image": ["a white paper airplane flying against a gray background", "a white paper airplane flying against a gray background"], "question": "which entity is a sculpture?", "label": 0}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, lake, boat", "hat, bow, arrow"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small purple plastic chair with holes."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, containers", "color, plastic, purple"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, white, furniture, black", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "bf18bfd89efd43389781050230467d58"], "properties": ["building, pattern, field", "Lights, number, five"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a small house with a roof.", " a metal building with a purple roof and cage structure."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, house, small", "roof, purple, structure"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a building with a metal roof"], "question": "which building has a purple roof", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "f1b557775310478893242180defa4d80"], "properties": ["color, green, squirt gun", "shack, roof, door"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " of a set of ladders."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "5152e8c6dd094e49b02b54ef1cd2fabc"], "properties": ["a, eagle, wood", "a, set, ladders"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a white wall with a black square on it"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a shelving unit with multiple shelves"], "question": "which object is not a set?", "label": 0}, {"captions": [" a child's room in a small house with windows.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["room, house, windows", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, material, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["hat, food, bowl", "water, boat, rock"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " of a small wooden house with a roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, structure, truss", "roof, house, wooden"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, truss, structure", "roof, trusses, ladder"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a gold, silver, and brown shield.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, material", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a white castle composed of small cubes."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, horns, features", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["wall, stairs, castle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, roof, wooden", "table, staircase, light"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a small wooden house with a green roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, temperature, england", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "674a36147ffb47059e48abc9fa19d923"], "properties": ["a box, a cup, a bottle, a jar", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["Arms, Legs, Color", "roof, ceiling, hole"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, material, steel", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a modern house"], "question": "which building has a pool", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["s of, snowboard, shoes, mask", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["A, a, a", "image, color, pink"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity has a pink sign?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "839a873262a544c9906f3f5799ca4648"], "properties": ["red, mouse, handwriting", "a, outfit, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["yellow, table, roof", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a bench and table with a deer's head on the table"], "question": "which table has a deer head on it", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, red, blue, structure", "building, plane, room"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a small building with windows and a roof."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, size", "roof, windows, building"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, gazebo, table", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["color, pier, railings", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, blue, components", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["door, stairs, color", "island, terrain, water"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, white, black, white", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "12093c89a60941e7884b252bdc05104c"], "properties": ["image is royalty-free, beaver, skateboard", "giraffe, bench, flower"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is plastic- color is white- shape is cylinder", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a white castle composed of small cubes."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, white, containers", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["A, a, a", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "7407a108e0354925b83b750339bc03df"], "properties": ["house, tree, hill", "platform, color, orange"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a tree with green leaves."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "1a902b67735845198efb1b84f434b580"], "properties": ["color, shape, text", "leaf, color, green"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "for a black and white drawing of a tree"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["a, b, c", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["above a black and white drawing of a submarine", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["frame, beams, trusses", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, green", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, poles", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["roof, room, ceiling", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room with a cake?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "b896a0898efe4059a776193c02132129"], "properties": ["color, bowl, green", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a train, a ship, a boat", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small wooden house with a green roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a ladder", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a potted plant on a wooden table or shelf."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["location, field, gravestone", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "73e7107ff3634516846bccad04c5dc87"], "properties": ["shape is box, color is white, door is present", "blue, curved, resembles"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d rendering of a white bathroom sink"], "question": "which object is curved?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "be1376023c274bdda995d54f3694157f"], "properties": ["roof truss, beams, structure", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a house with a roof"], "question": "which entity has a roof with wooden beams?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a small room with a bunk bed, desk, chair, table, and a blue house."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "dd3a9323ed514ccab330973ff9588015"], "properties": ["room, bed, desk", "room, bed, desk"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a door"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a small room with a bunk bed"], "question": "which entity has a desk?", "label": 0}, {"captions": [" of a hammer with a long metal handle.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["30f4b6bcbbb44f568cab4fd439d05145", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["handle, metal, long", "roof, color, yellow"], "captions_pred_pc": ["a black and white toothbrush on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a hammer with a wooden handle and metal head", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a man in a suit holding a cell phone and a gun."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "c017bfb82db1460cafff604c0808793f"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "a, suit, cell, phone, gun"], "captions_pred_pc": ["a close up of a black object on a white background", "a silhouette of a person holding a cell phone"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand"], "question": "which entity is a man?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, bird, lake", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a knife, blade, handle", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a spiral staircase"], "question": "which object has a red arrow", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, shape, material", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small orange piano with legs."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "d793de7c08d74414beeb8ea50f730705"], "properties": ["lighthouse, fountain, crater", "color is orange, size is small, legs"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a bench"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["light source, fixture, color", "building, roof, balcony"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a small house with a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["roof, structure, wall", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "a2354f13774340d392fbf33564934aab"], "properties": ["- material is white- color is white- texture is textured", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a cube", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a green mountain with trees and grass."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, shape, material", "mountain, grass, tree"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a mountain with snow on it"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a white chest of drawers with legs."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["stair, table, chair", "chest of drawers, legs, white"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " of a large axe with a cross on top."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, shape, texture", "axe, cross, top"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of an axe on a gray background"], "question": "which entity has a cross on top", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a building with a metal and wooden pole structure."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["building, color, black and white", "structure, material, pole"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a structure with multiple tables and chairs"], "question": "which building is made of poles", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a house with a wooden-framed roof structure."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, beams, chimney", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a small house on a hill in a field."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["building, ceiling, kitchen", "house, hill, field"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " of an ak-47 rifle."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "18e1f60286d346728f650984f4ae70aa"], "properties": ["color, table, blocks", "AK-47 rifle is a weapon"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "of a black and white image of a fishing rod"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a rifle on a gray background"], "question": "which is a weapon", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, pink, green", "house, roof, green"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small black and white cube.", " a robot with a blue, purple, and white body."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "6f98acb9e03c4cbd9c83f2c8f9cd3ddc"], "properties": ["color, shape, size", "body, color, white"], "captions_pred_pc": ["a black and white drawing of a city skyline", "above a black and white image of a robot"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d model of a robot standing in the middle of a white background"], "question": "which object is white", "label": 1}, {"captions": [" a building with blue lines and structure.", " of a small white building with stairs and a lid."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, structure", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "97e000ff41094665afd94ea565da8b13"], "properties": ["pattern, floor, light", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a patterned square", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["green, hat, cream", "hat, pants, shirt"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["resembles, toy, bookshelf", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a wooden roof structure with a pink roof."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["- material is wood - color is white - height is 1.8 m", "roof, color, pink"], "captions_pred_pc": ["an illustration of a barbed wire fence", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "7f8942ef51dd4246993a587a12df168c"], "properties": ["room, bed, desk", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a celtic stone cross.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is stone- shape is cross- color is black", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, shape, texture", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a desk and chair"], "question": "which entity is not white?", "label": 0}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["building, material, steel", "image, building, stairs"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which building has a white image of a building with columns", "label": 1}, {"captions": ["a white of a gun.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, gun", "island, mountain, grass"], "captions_pred_pc": ["of a white object on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which object has grass", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, material", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["d6087023095446fbadef1721478373b2", "a243183445184d2e977044a5b6916e55"], "properties": ["door, roof, window", "painting, frame, door"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of a large group of people"], "captions_pred_image": ["a 3d model of an apartment building", "a picture frame with a black and white photograph"], "question": "which door is framed", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, white, handle", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a house with a green, wooden-structured roof."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["- color is white- shape is cubes- number is 1", "roof, color, green"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": [" a white building.", " a white building with a red roof."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, building", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a bottle", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d model of an office building"], "question": "which building is whiter", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a black and white of a knife/sword with a handle."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, material, texture", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a spider's head", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a black and white image of a knife"], "question": "which entity is black and white", "label": 1}, {"captions": ["a 3d mannequin of a woman wearing a traditional striped dress.", " of two rocks with ice elements."], "sample_ids": ["8ad6714351404852a0fe85ab2ed1a4c7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["mannequin, dress, color", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white drawing of a flower on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a woman wearing a dress with a cape", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["striped, white, black", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, black, shade, black", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white building with stairs and a white table."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "e30374c614f54fdb90f35b96b071349d"], "properties": ["water, river, island", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["graffiti, bench, wall", "mountainous, landmass, state"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white map of the state of new york"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house with a roof and beams."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, structure, greenhouse", "roof, beams, house"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "127753bf17de4252aaa7ea88f274545e"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "face, mask, tail"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["wall, stairs, castle", "table, staircase, light"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, color, pink", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a toilet", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof, truss, lamp", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a table with a staircase"], "question": "which entity has a square ceiling light", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["black, white, laptop", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " of a wooden windmill with a red roof."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["location, field, gravestone", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a whale", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["two-story, roof, building", "island, mountain, grass"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": ["a 3d red and white santa claus teddy bear with a flying plane and floating hat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["0797e97b272c43d59bfeb5821421c5eb", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, color, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a doll made of beads", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white photo of a snowflake falling from the sky", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["color, shape, and size", "room, staircase, bus"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d image of a building with a lot of debris"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a building with a purple, glass roof and a suspended ceiling featuring beams.", " a house with a roof and beams."], "sample_ids": ["a54c746bb2644e3ea4e53ee65e32df64", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, glass, purple, ceiling, beams", "roof, beams, house"], "captions_pred_pc": ["the letter 't' is made up of tiny white dots on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a building with a roof"], "question": "which entity has a roof with beams", "label": 1}, {"captions": ["a featuring a white table with a bird, a city, and a robot, accompanied by a white lamp.", " a wooden table with a plant on it."], "sample_ids": ["20e3fcaa2b56414c9c921a2f33d13267", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, lamp, color", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a circle with many small dots", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed table with a cityscape on top", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small wooden house."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["computer desk, laptop, monitor", "house, material, wood"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "06a1c233fb444830b577aa06e2c01294"], "properties": ["s, chimpanzee, human, wolf", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a gray, metal pillar/cylinder."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " of two rocks with ice elements."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, roof, green, frame, red", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, roof, block", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, white, logo", "color, pattern, word"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a beaded necklace with the word banned on it"], "question": "which entity is a pattern?", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "bf18bfd89efd43389781050230467d58"], "properties": ["building, skyscraper, city", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small white building with stairs and a white table."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "e30374c614f54fdb90f35b96b071349d"], "properties": ["earbud, earpiece, earpiece", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a building with a staircase"], "question": "which entity has fewer stairs", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "b896a0898efe4059a776193c02132129"], "properties": ["size, material, lighthouse", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of a water droplet", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a building with a metal and wooden pole structure."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["color, frame, shape", "structure, material, pole"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a house with a pink roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "6162909df6294848a8eea83c3aa9585b"], "properties": ["floor plan, heating system, ceiling light fixture", "color, roof, pink"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a roof", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a sword with a wooden handle."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["resembles, toy, bookshelf", "handle, material, wood"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a sword"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small, snow-covered house."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["room, bed, desk", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small triangular-shaped object."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "2d02985030804209a26c2c53b96a06f9"], "properties": ["background, color, white", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color is white, material is plastic, shape is box", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a white of a man with arms outstretched."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a white human skull with broken bone elements."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, pier, stairway", "color, white, skull"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["broom, shovel, fireplace", "house, rock, bird"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "127753bf17de4252aaa7ea88f274545e"], "properties": ["color, shape, and material", "face, mask, tail"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "96d127abd21049689918e671ec613ef8"], "properties": ["color, light, jewels", "axe, hammer, spoon"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is white", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "7adf9de5fb734455a3a3a7f084e3d628"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a flying saucer"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white image of a fighter plane flying upside down"], "question": "which entity has a toilet?", "label": 0}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["room, door, shelf", "bedroom, bathroom, bed"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, material, texture", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a small white house with a roof."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["boat, table, chairs, umbrella, solar panel", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small white house with a roof."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["s of, snowboard, shoes, mask", "roof, color, white"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "e80eca95874c4bffb8aec54044824d87"], "properties": ["arrow, mountain, area", "arrow, mountain, area"], "captions_pred_pc": ["a line with a square on it", "a line with a square on it"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity has a mountain range in a mountainous area with a large green field and a small arrow?", "label": 0}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a building with yellow lines."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "f18e34286cf54876874f55ecc9018492"], "properties": ["building, color, yellow-green", "color, yellow, lines"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a small white building with stairs and a lid."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, structure, greenhouse", "building, stairs, lid"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small, snow-covered house."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["s, plane, house", "house, snow, cover"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a piece of broken glass on a white background"], "question": "which entity has a house covered in snow?", "label": 1}, {"captions": [" of a human bone", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["a, b, c", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 0}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of a spider-man mask and head."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "bd48915cfb41409aad6dd58e157876b2"], "properties": ["mossy, rock, rocky", "a, head, mask"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white image of a person's head"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a black spider-man mask on a gray background royalty-free 3d model preview no.2"], "question": "which object is not a head?", "label": 0}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, material, wood", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, letter", "a, color, red"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d model of a castle with two towers"], "question": "which object has a red roof", "label": 1}, {"captions": ["a black rock with writing on it.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, black, writing", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a spiral staircase"], "question": "which object has a red arrow", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- material is wood, metal, metal", "roof, metal, white"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": [" of a small red renault clio car.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color is red, make is renault, model is clio", "broom, shovel, fireplace"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white of a house with a hole in the ceiling."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["bed, desk, window", "image, house, ceiling"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["frame, truss, roof", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a black and white photograph of a birdhouse"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "096e42b466ec438d95c5d89a85191534"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "white, rock, shell"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small white barn with a metal roof."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "4ca3342a96824684845f7d0e062ab176"], "properties": ["top, color, wood", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a fireplace", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a barn"], "question": "which object has a white roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a person breaking through a brick wall."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["lighthouse, fountain, crater", "image, brick, wall"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a spider-like creature with long arms and legs."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["room, bed, desk", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, pink, green, cord, white", "island, mountain, grass"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color is white, material is plastic, shape is box", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white plastic tray", "a white 3d model of a city skyline"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a, rock, paper", "house, tree, hill"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a house in the middle of a field"], "question": "which object is on a hill?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["b5afccae993346079483507296fbb029", "46903bf029934b1989bc062dcb0a5531"], "properties": ["shape is square, material is metal, color is rusty", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "6b745457e06840119058883b35f78f58"], "properties": ["color, yellow, black", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, light, jewels", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a small red and white spaceship.", " a house with wooden framing and trusses."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, shape, size", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is plastic- color is white- shape is cylinder", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of an object on a white background"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, metal, white", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, ceiling, hole", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a square with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a black and white photograph of a birdhouse"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a large steel building with a pool."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["buildings, houses, grass", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a white origami bird with silver wings."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "d9574287572c47f7a2b712cf1d919374"], "properties": ["color, white, logo", "color, white, wings"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a 3d model of the human body"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a futuristic bird in flight on a gray background"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a wooden roof structure with a pink roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, skyline, buildings", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "b896a0898efe4059a776193c02132129"], "properties": ["color, blue, rim, blue", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a large white and metal building with a metal roof structure."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, grass, moss", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a potted plant on a wooden table or shelf."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["house, building, people", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a black and white image of a plant in a pot"], "question": "which entity has fewer houses", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["resembles, toy, bookshelf", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, green, squirt gun", "broom, shovel, fireplace"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["room, house, windows", "roof, color, yellow"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color yellow", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["bed, desk, window", "room, door, shelf"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an empty room"], "question": "which room has a door", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a house with a roof."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["a, roof, soup", "roof, house, roof"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a small, snow-covered house."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, truss, structure", "house, snow, cover"], "captions_pred_pc": ["of a metal grate on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long metal fence", "a piece of broken glass on a white background"], "question": "which entity is covered in snow", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["21639082215b4b179d574d2408124838", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, room, furniture", "Cabinet, drawer, wood"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a wooden box with a lid"], "question": "which cabinet has a drawer", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "db74ee1621464be1b164be26a1af050e"], "properties": ["a, window, statue", "window, arches, wall"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of an old brick wall"], "question": "which wall has a window", "label": 1}, {"captions": [" a small white box with a green light.", " a small white house with a roof."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, white, light", "roof, color, white"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, light, jewels", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c8936ace72954650b4e2d84246964849"], "properties": ["color, white, black, white", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house with a roof"], "question": "which object has a pink roof", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " of two rocks with ice elements."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["shape, bathroom, refrigerator", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["runner, bed, bench", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a blue roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["roof, purple, suspended", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which roof is blue", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " of two rocks with ice elements."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, mattress, pillows", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a building with yellow lines."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, shape, and size", "color, yellow, lines"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a map"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a house with a roof structure and toothbrushes."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, shape, material", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a white box with a lot of blades"], "question": "which entity is a house?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "bf18bfd89efd43389781050230467d58"], "properties": ["color, white, containers", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a white ceramic vase with brown and beige swirls, stripes, and splatter on it.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["3965acb1aabd4440b9738ebd9c7965fa", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, material, shape", "Eye color, Black, Purple"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a white ceramic vase with a cracked glaze on the surface", "a 3d model of a dragon with wings"], "question": "which entity has a different color for its eyes", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small house with stairs and a roof."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["building, stairs, shelves", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "c3a82df41875402285608ef13a55df57"], "properties": ["bowl, pottery, headpiece", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["yellow, table, roof", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a floor plan", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["frame, roof, trusses", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "a095621f2d5845af83db3f59f5685982"], "properties": ["backrest, curved, yes", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a metal tray with two rolls of paper in it"], "question": "which object is round?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a clay pot with holes in it."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, size", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small wooden house with a green roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["frame, truss, roof", "roof, color, green"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "a243183445184d2e977044a5b6916e55"], "properties": ["color, shape, and material", "painting, frame, door"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of a large group of people"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a picture frame with a black and white photograph"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "bf18bfd89efd43389781050230467d58"], "properties": ["base, speaker, light", "Lights, number, five"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "6b745457e06840119058883b35f78f58"], "properties": ["roof, stairs, house", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a small white airplane flying in the air."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "747fb98f64794cdd96486debaf20a02c"], "properties": ["collection, plane, car", "airplane, color, white"], "captions_pred_pc": ["above a black and white image of a piece of paper", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d model of a small airplane"], "question": "which plane is white", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, texture", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["flag, stand, color", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a banner on a stand", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a metal screw", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["67c7d3e9744e4f5f865af34e803dca80", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["metal, screw, head", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a screw on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a screw on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small house with a yellow roof and chimney."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["color, roof, green, frame, red", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a chimney?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "c3a82df41875402285608ef13a55df57"], "properties": ["floor, staircase, railings", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " a large metal building with a roof and truss structure."], "sample_ids": ["c27b018330da406680e58b94266c310b", "b85a99699ccd4bcba213322113bb253d"], "properties": ["frame, material, wood", "roof, truss, structure"], "captions_pred_pc": ["a black line on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a bench", "a 3d model of a long metal fence"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e602ac60041f4b4f84c044161e478781"], "properties": ["ceiling, light, desks", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "e2645ac544844f3c981203134a99c30c"], "properties": ["base material is wood, color is red, message is welcome to northwich", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " of a person breaking through a brick wall."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["building, fence, snowy", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a small, snow-covered house."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, color, green", "house, snow, cover"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, red, blue, green", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, structure, greenhouse", "beige, white, round"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a building with a roof", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small building with a staircase in a room.", " a small building with a staircase in a room."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["room, staircase, building", "room, staircase, building"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 0}, {"captions": [" a small wooden house with a green roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, color, green", "roof, structure, suspended"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a house with a metal roof"], "question": "which roof is suspended", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["roof, color, purple", "door, roof, pool"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["tiers, building, stairs", "stair, table, chair"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a staircase in a room"], "question": "which staircase has a railing", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, plastic", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d rendering of a plastic box with several compartments"], "question": "which is not a box", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, horns, features", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small orange piano with legs."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "d793de7c08d74414beeb8ea50f730705"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a bench"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small wooden house with a green roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["runner, bed, bench", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, floor, columns", "building, plane, room"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a box with a lot of items inside"], "question": "which building has a plane?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, gun", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a white table with a bird, a city, and a robot, accompanied by a white lamp.", " of two rocks with ice elements."], "sample_ids": ["20e3fcaa2b56414c9c921a2f33d13267", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["table, lamp, color", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a circle with many small dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d printed table with a cityscape on top", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "c3a82df41875402285608ef13a55df57"], "properties": ["liquid, ice, lid", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "770e577c9795435898209fd24191635b"], "properties": ["floor plan, bathroom, pool", "image, color, light"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a white 3d model of a small town"], "question": "which image has a ceiling light?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " of a crab holding a rubik's cube."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["Lights, number, five", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a white chandelier with five white shades", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a building with yellow lines."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "f18e34286cf54876874f55ecc9018492"], "properties": ["roof, yellow, chimney", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["water, river, island", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a japanese-style pagoda house in a pixelated village."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "42c4e6ca4a0c4b7b9a97d543b2442222"], "properties": ["cup, bottle, chessboard", "image is a japanese-style pagoda house in a pixelated village"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a japanese temple and pagoda"], "question": "which image is a pixelated village?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["metal, laptop, light fixture", "building, plane, room"], "captions_pred_pc": ["for a black and white image of a corner shelf", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a house with a roof and beams."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a wooden shed with a gray roof."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["structure, roof, pitch", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a person jumping on a trampoline."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["building, tree, plane", "person, jumping, trampoline"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white diamond belt"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which entity is a person jumping on a trampoline?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["resembles, toy, bookshelf", "hat, color, tan"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of an object with a hole in it"], "question": "which object is tan in color", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small purple plastic chair with four legs."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "1bb40ec897884b788dc0a2dac090f347"], "properties": ["a, hole, shelf", "color is purple, material is plastic, number of legs is four"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "of a black and white image of a baby carrier"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a white plastic chair"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a wooden-cased radio.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["case, material, wood", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, shirt, pants", "Cabinet, drawer, wood"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a small wooden house with a green roof."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, pattern", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with stairs and a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["frame, truss, roof", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, truss, lamp", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a gnome toy wearing a striped hat."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "72f220d616de466fa1315c1c9bbb5c4c"], "properties": ["color, temperature, england", "hat, toy, gnome"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photograph of a crocodile"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a stuffed gnome wearing a striped hat"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["collection, plane, car", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a piece of paper", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": [" a red and white robot.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, red, white", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, white, gold", "lion, statue, fountain"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, white, red, pink", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small building with windows and a roof."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, roof, green, frame, red", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["earbud, earpiece, earpiece", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, color, white", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "225e4094141d416faba7c5598dc55ff8"], "properties": ["backrest, curved, yes", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a castle on an island with a small floating house, trees, and clouds."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c4c09479570943e2845fbd4c6a450568"], "properties": ["balcony, stairs, house", "castle, island, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white illustration of a group of dots in the shape of a circle"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a small house on an island"], "question": "which entity has a house on an island?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, box, wall", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["water, boat, rock", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["smiley-faced banana .", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "arrow, red, white"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "e694d53545d449319a64cceb0280c3c6"], "properties": ["books, paper, lamp", "3d, slide, swing"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a playground slide"], "question": "which entity has more slides", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, stairs, shelves", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a room"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "09f2cf267e954c958828325067bcc36a"], "properties": ["hat, food, bowl", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["shape is box, color is white, door is present", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, pier, railings", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a stone wall with a window and a clock.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["46fc13a04c8b47fa86215b9efc2eb1f9", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["window, clock, wall", "grass, plants, rocks"], "captions_pred_pc": ["a black and white illustration of a bullet in the middle of a starry sky", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a brick wall", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, table, ceiling", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "887e410d07854396b563325ae1929583"], "properties": ["house, lake, pool", "hat, mouse, bear"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": ["a white of a small archway gate.", " of two rocks with ice elements."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["image, color, white", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white arch", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, character, person", "a, material, clay"], "captions_pred_pc": ["a 3d model of a person", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["base, speaker, light", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white illustration of a clock", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, gun", "box, handle, gun"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d rendering of a metal box with a handle"], "question": "which entity is a box?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof truss, insulation, suspended ceiling", "roof, truss, lamp"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a metal roof"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small building with windows and a roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, red, pink", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, material, frame", "structure, roof, pitch"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small house with a red roof.", " a two-story small apartment building with a roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, red, house", "two-story, roof, building"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "c3a82df41875402285608ef13a55df57"], "properties": ["floor plan, ceiling light, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white 3d model of a house", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4389909667db472ea9a57a70eb940fa4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["building, window, skeleton", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a piece of paper", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photo of a person's reflection in a mirror", "a 3d model of a modern house"], "question": "which building has a balcony?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, structure, wall", "house, roof, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- color is white - shape is box - material is plastic", "rusty, warning, metal"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a green backpack with black straps and handle, featuring a cat inside a small green spaceship with a blue mirror.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["bb6b87638aa94ebca51723508774064e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, handle, straps", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a microwave oven on a white background microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black and white illustration of a microwave oven on a white background, black", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a white backpack with black accents and handles", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a wooden roof structure with a pink roof."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["graffiti, bench, wall", "roof, color, pink"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a metal grate"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, shape, height", "earbuds, light, ring"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which object is not a ring?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large industrial building, including a factory and warehouse."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "e3d0e407049c43f39c3aaa74667f56b1"], "properties": ["roof, color, blue", "building, type, factory"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a city skyline on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2"], "question": "which building is a factory", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small wooden house with a green roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, room, ceiling", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small house with a pond and situated on a rock."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "92859eb82a344134806b37cc209927c6"], "properties": ["water, river, island", "house, rock, pond"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["structure, roof, pitch", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole in it", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, tree, plane", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["hat, bag, blanket", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, screen, drawer", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small white house with a roof.", " a wooden shed with a gray roof."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, color, white", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a shed with a gray roof"], "question": "which roof is darker", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, food, bowl", "hat, watch, clock"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is purple, material is plastic, number of legs is four", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " an old lantern with moss on it."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color is white, yellow, plastic", "moss, lantern, old"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a white plastic container with a label on it", "a black and white image of an old lantern"], "question": "which object is more likely to be found in a garden", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color is white, material is plastic, shape is box", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "pink and green pendant light hanging from a ceiling."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1651a898288149edb8cbff0e1b2d692b"], "properties": ["bed, desk, window", "color, pink, green"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white photo of a small circular object on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white pendant light hanging from the ceiling"], "question": "which entity is a light?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["frame, truss, roof", "roof, truss, lamp"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a metal roof"], "question": "which entity has a roof with a lamp?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, tree, pool", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a green circuit board."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, material, texture", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a spider's head", "of the item in the image"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "a17477b445b3443189dad22f768b888b"], "properties": ["meat, bread, sausage", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a brush on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a flat roof structure."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "abc52d210d71415296730bb00352ce6f"], "properties": ["house, lake, pool", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["pos machine, credit card machine, cash register", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["- material is metal - weight is 0 - height is 0", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["adec10493e06436c967d5797f7085225", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, material, shape", "room, furniture, window"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, eye, handle", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small white box", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a large house with a roof on a platform."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "cb3e09a301b746918a682a595037c7f7"], "properties": ["building, floorplan, gym", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["floor, staircase, railings", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white circular object on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " of a small white building with stairs and a lid."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, sphere, molecule", "building, stairs, lid"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["load, crates, snow", "moss, mushroom, grass"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a brown spot?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["roof, color, green", "water, boat, rock"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a large metal building with a roof and truss structure."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "b85a99699ccd4bcba213322113bb253d"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a cross", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["image size, image, origami", "room, furniture, window"], "captions_pred_pc": ["above a black and white illustration of an airplane", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "pink light saber."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c4c8ed95de4640fe8c0be1df68d816ba"], "properties": ["color, grass, moss", "color, pink, light"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "of a black dot on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a light saber on a gray background"], "question": "which object is pink?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "09f2cf267e954c958828325067bcc36a"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "island, terrain, rocks"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a small wooden house with a green roof."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, pier, railings", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white castle composed of small cubes.", "white of a rhino head with horns."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "8481aade84de47cab1a9accf8067e678"], "properties": ["composed of, white, cubes", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "a2354f13774340d392fbf33564934aab"], "properties": ["a, desk, laptop", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a small house with stairs and a roof."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["bread, chocolate, cake", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, bird, green, yellow, blue", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white map of the island of malta"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "d81d13362ae04371bb2cba46e4939665"], "properties": ["hat, bow, arrow", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a sculpture of an african man sitting on a pedestal"], "question": "which figurine has a hat?", "label": 0}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, gun", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "b896a0898efe4059a776193c02132129"], "properties": ["color, background, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of an ancient statue"], "question": "which sculpture is made of stone", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, light", "a, color, red"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a castle with two towers"], "question": "which entity is a toy?", "label": 0}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a two-story small apartment building with a roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["house, roof, green", "two-story, roof, building"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["graffiti, chinese writing, door", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "402601779d1d4146b4cde106dfff1b27"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white image of a flying saucer", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a snowflake in the air on a cloudy day"], "question": "which entity has a pig in it?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["building, roof, white, cubes", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with stairs, a roof, and a pillar.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["a17477b445b3443189dad22f768b888b", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, pillar, stairs", "roof, beams, frames"], "captions_pred_pc": ["a black and white image of a square with dots", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a small building with a balcony", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "4df70180f2ea400782d2e2de76063894"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, black, blue"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is a painting?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, white, logo", "rusty, warning, metal"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white photograph of a barrel"], "question": "which is not a warning sign", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, fence, dog", "house, hill, forest"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- color is white- shape is cubes- number is 1", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " of a small white building with stairs and a lid."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "building, stairs, lid"], "captions_pred_pc": ["a black and white circular pattern on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house with a green, wooden-structured roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, green, lawn", "roof, color, green"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "09f2cf267e954c958828325067bcc36a"], "properties": ["building, balcony, street", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an old building", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", "a white of a woman with her arms outstretched."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, lake, boat", "image, color, white"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, bench, rack", "grass, plants, rocks"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["green, hat, cream", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, tan, brown, orange", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white photo of the letter g"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a spider-like creature with long arms and legs."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["shape is box, color is white, door is present", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a piece of paper with writing on it.", " of two rocks with ice elements."], "sample_ids": ["57950d2e2e254d9c8d9631cedd584adf", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["paper, writing, piece", "image is a rock with ice elements"], "captions_pred_pc": ["a close-up view of the back of a tablet on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a piece of torn paper on a white background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["shape is cylindrical, color is silver, material is metal", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small wooden house."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, trusses, beams", "house, material, wood"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a house with a green, wooden-structured roof."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, hill, forest", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["21639082215b4b179d574d2408124838", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, room, furniture", "throne, stairs, tree"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a, head, bowl", "house, fence, playground"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a room with a lot of wires"], "question": "which object has a fence", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["color, shape, texture", "a, building, coin, ball"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a box with a coin next to it"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "40921ffd69db479294554d261daf3035"], "properties": ["building, floor, columns", "floor, railing, staircase"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, color, white", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of the roof of a building"], "question": "which house is made of wood", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, door, cross", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a map", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, shape, and size", "table, structure, roof"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a map with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a wooden roof structure with a pink roof."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a pink, ear-shaped object."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["a knife, blade, handle", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a white object on a gray background"], "question": "which object is pink", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "b896a0898efe4059a776193c02132129"], "properties": ["metal, legs, wheels", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["resembles, octopus, squid, spider, robot", "house, lake, pool"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a white glass beer mug."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "1d686cbd3e9a4c629a43088658989286"], "properties": ["house, staircase, window", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "e694d53545d449319a64cceb0280c3c6"], "properties": ["color, table, chairs", "3d, slide, swing"], "captions_pred_pc": ["a close-up of a white object on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["floor, staircase, railings", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a small wooden house with a green roof."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["resembles, toy, castle", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["light switch, electrical outlet, furniture", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["castle, island, house", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["level, stairs, columns", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, structure, greenhouse", "hat, bow, arrow"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building with a roof", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a spider-like creature with long arms and legs."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["shape is cylinder, color is white, material is plastic", "arachnid, leg, arm"], "captions_pred_pc": ["of a spike on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a hammer with a long metal handle."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, blue, green, yellow, blue", "handle, metal, long"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a large building with a roof and windows."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, color, purple", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["screen, keyboard, box", "a, material, clay"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a man holding various objects on top of a truck.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["db283f7e62074326b7d25634fc53106c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, truck, hold", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a spoon and a screw", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a person riding on top of a truck with an umbrella in their hand", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["ruined building, stone floor, small stone structure", "a, island, resembles, hawaii"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range with a central lake?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a white castle composed of small cubes."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, bowl, green", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, tan, brown, orange", "house, fence, playground"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["wall, stairs, castle", "buildings, houses, grass"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["resembles, toy, bookshelf", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["- material is wood - color is white - height is 1.8 m", "house, fence, playground"], "captions_pred_pc": ["an illustration of a barbed wire fence", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, hole, shelf", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a large metal structure"], "question": "which shelf is made of steel", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "e44009d33258425e8efedfbc6823bf70"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, plane, town", "house, table, chair"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " of a white chest of drawers with legs."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["s, cat, fish, person, pig, bird", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "of a black and white leopard print rug"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, roof, balcony", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, texture", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a house with a blue roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, sphere, molecule", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a house with a roof"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["floor plan, ceiling light, color", "torso, breasts, pattern"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a potted christmas pine tree.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "b896a0898efe4059a776193c02132129"], "properties": ["a, color, green", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "205251e4277e41d1aae6b2358267ad56"], "properties": ["a, island, water", "image, color, white"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d printed figurine of an alien creature"], "question": "which image is black and white?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white of a man with arms outstretched."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, white, black, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, tree, pool", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, shape, gun", "house, fence, dog"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, material", "door, lock, handle"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, ceiling, hole", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a black and white image of a stone sculpture"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "4df70180f2ea400782d2e2de76063894"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "color, black, blue"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is black and blue?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, green, orange, star", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["boxing gloves, heart, hand", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, material, wheels", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a brick building with a roof structure and roof truss."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "84e8acad28664a738df69d719df9e263"], "properties": ["red, mouse, handwriting", "roof, structure, truss"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "b896a0898efe4059a776193c02132129"], "properties": ["Black, Shelf, Metal", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, room, ceiling", "roof, truss, lamp"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a metal roof"], "question": "which house has a pink roof", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " of a barrel and a cube together."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["house, building, people", "a, barrel, cube"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "7407a108e0354925b83b750339bc03df"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "platform, color, orange"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" of a black shark", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["black, mouth, teeth", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bed", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, air conditioner, house", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a four-legged metal workbench with shelves."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color is white, material is plastic, shape is box", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "d49d8ed244094349a99e4faca05e0690"], "properties": ["building, stairs, shelves", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["location, highway, train station", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a white 3d model of a city skyline"], "question": "which image shows a laptop", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a white chest of drawers with legs."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["bedroom, bathroom, bed", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, orange, white", "a, color, red"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["wall, stairs, castle", "house, fence, dog"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a house with a wooden-framed roof structure."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["lighthouse, fountain, crater", "roof, material, wood"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " of two rocks with ice elements."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, truss, lamp", "house, fence, dog"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "e2645ac544844f3c981203134a99c30c"], "properties": ["shape is turtle, color is green, white", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "be1376023c274bdda995d54f3694157f"], "properties": ["color, shape, and size", "roof, beams, chimney"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a tree and a rock."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["roof truss, insulation, suspended ceiling", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a white rocking chair with a curved backrest."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["location, area, material", "backrest, curved, yes"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "b896a0898efe4059a776193c02132129"], "properties": ["- material is stainless steel- color is silver- shape is round", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black ribbon on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a white castle composed of small cubes."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, size", "composed of, white, cubes"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", "a white of a man with arms outstretched."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, texture", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["chocolate, mushroom, cake", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "a black and white illustration of a window"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["screen, keyboard, box", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "12093c89a60941e7884b252bdc05104c"], "properties": ["ruined building, stone floor, small stone structure", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "plane, ship, bird"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked items", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "703dce44052e48cfb024bceb08141554"], "properties": ["hat, cup, bowl", "roof, beams, frames"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a boat"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a wooden structure"], "question": "which entity has more yellow", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, eagle, wood", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, shape, size", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of the roof of a house"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a building with yellow lines."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, holes", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white drawing of a map"], "captions_pred_image": ["a white bench with a shelf on top", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["room, bed, desk", "desk, chair, table"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a staircase in a room"], "question": "which room has a bunk bed", "label": 0}, {"captions": [" of a house with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, house, roof", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a small white building with stairs and a white table."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "e30374c614f54fdb90f35b96b071349d"], "properties": ["stacked, racks, toy train", "building, stairs, table"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a building with a staircase"], "question": "which object has a table?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, truss, lamp", "roof, structure, suspended"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "97e000ff41094665afd94ea565da8b13"], "properties": ["graffiti, chinese writing, door", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a 3d object featuring a rock, shell, piece of paper, and cat."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "53efab50e5a74e5ea165c763cea15be4"], "properties": ["door, lock, handle", "a, rock, paper"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "for a flock of birds in the sky"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a black and white image of a piece of paper in the shape of an island"], "question": "which object has more paper", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, rock, pond", "house, lake, pool"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a large building"], "question": "which house is on an island?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["size, color, shape", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", "a 3d-rendered white gold engagement ring with an oval diamond and additional diamonds."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "333b77483f1b40468dec28906887151a"], "properties": ["color, material, shape", "3D, material, white gold"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "of a black ring on a white background"], "captions_pred_image": ["a 3d printed ring with a unique design", "a white gold ring with an oval shaped diamond in the center"], "question": "which ring is made of white gold", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["- color is white- shape is cubes- number is 1", "table, staircase, light"], "captions_pred_pc": ["a close up of a black and white striped scarf", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a table with a staircase"], "question": "which object has a square ceiling light?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "73e7107ff3634516846bccad04c5dc87"], "properties": ["- material is stone - color is blue - shape is arrowhead", "blue, curved, resembles"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d rendering of a white bathroom sink"], "question": "which object is blue", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a spider-like creature with long arms and legs."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, dress, flower", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["resembles, toy, bookshelf", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a yellow circle with a black outline.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["eb66c6426b50452ab8c92adfeec13d85", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, outline, circle", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["the silhouette of an island in the shape of a circle on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "06a1c233fb444830b577aa06e2c01294"], "properties": ["ruined building, stone floor, small stone structure", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with a blue roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["background, color, white", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a cat's head", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["3D, toothpick, skateboard", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "bded33af34104b9686b845dfd18309a9"], "properties": ["a train, a ship, a boat", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["collection, color, black, handle, wooden", "houses, trees, road"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a 3d printed model of a small white house.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["d62a9376f8be4c7585d15ccf68c51239", "7407a108e0354925b83b750339bc03df"], "properties": ["size, material, color", "platform, color, orange"], "captions_pred_pc": ["a black and white image of a building with a lot of dots", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a small white birdhouse", "a 3d model of a motorcycle on a pedestal"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a machine gun.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "411c164757fc4de68dfecb35fa858223"], "properties": ["gun, barrel, caliber", "resembles, sea urchin, shell"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a sea urchin"], "question": "which entity has a shell?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, plane, town", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a green mountain with trees and grass."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, bird, lamp", "mountain, grass, tree"], "captions_pred_pc": ["a silhouette of a person standing in the air", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a small house on a hill in a field."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, green, tiled", "house, hill, field"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "096e42b466ec438d95c5d89a85191534"], "properties": ["color, white, red, pink", "white, rock, shell"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, yellow, chimney", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a large building with a roof and windows."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, structure, wall", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a small white house with a roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, white, background, gray", "roof, color, white"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "1c389c8f46b345838e515b9747c1f982"], "properties": ["backrest, curved, yes", "plate, fruit, knife"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a person riding a skateboard on a wooden surface"], "question": "which object has a knife", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["color, shape, material", "bowl, pottery, headpiece"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of a piece of ancient pottery"], "question": "which bowl is made of pottery", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a house with a wooden-framed roof structure."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, fence, snowy", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a building with a roof"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["throne, chair, building", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building on top of a table", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "bded33af34104b9686b845dfd18309a9"], "properties": ["- color is red, blue, pink", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["houses, trees, road", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["house, tree, rock", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a, plane, small plane", "box, cylinder, bottle"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has more containers", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " of a deer on a grassy hill."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "c039b44fc6c24034b87131ffb9be93c4"], "properties": ["building, balcony, street", "a, hill, deer"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "above a black and white image of two objects, one is a light bulb and the other is a toothbrush"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a deer sitting on top of a rock"], "question": "which entity is on a hill?", "label": 1}, {"captions": [" of a white shelf", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["bd39ae69218a4ec28c453936e245f175", "6b745457e06840119058883b35f78f58"], "properties": ["color, material, shape", "roof, color, blue"], "captions_pred_pc": ["of a black and white image of a long, thin object", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": [" an old castle in a grassy field.", " a green mountain with trees and grass."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["field, grass, castle", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, blue, components", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black castle with stairs and a door.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["door, stairs, color", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is cylindrical, color is silver, material is metal", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a cone shaped object", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, staircase, table", "house, pool, balcony"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "c3a82df41875402285608ef13a55df57"], "properties": ["cover, black, plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white image of a skateboard", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a victor calculator on a white background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small building with a staircase in a room."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["color, pier, stairway", "room, staircase, building"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a staircase on a white surface"], "question": "which entity has a stairway in a room?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a pink, ear-shaped object."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["- color is white - shape is box - material is plastic", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a white object on a gray background"], "question": "which object is pink", "label": 1}, {"captions": [" a white box with colored buttons on it.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a wooden shed with a gray roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, lake, pool", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, metal, white", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["roof truss, insulation, suspended ceiling", "hat, pants, shirt"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house with a roof and beams."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["Arms, Legs, Color", "roof, beams, house"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a building with a roof"], "question": "which entity has more beams", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["3ds max, obj, fbx, c", "roof, color, yellow"], "captions_pred_pc": ["a black and white insect on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a wooden table with a plant on it."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["floor plan, bathroom, pool", "table, plant, wood"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a side table with a potted plant sitting on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a house with a roof and beams."], "sample_ids": ["6b745457e06840119058883b35f78f58", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, blue", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a building with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" of a large black mat with square grid design.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["size, color, design", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a clay pot with holes in it."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, white, yellow, roof, metal", "hole, material, clay"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["floor, staircase, railings", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a light switch", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a chair with a yellow seat."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, sphere, molecule", "color, yellow, seat"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity has a yellow seat", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "d6087023095446fbadef1721478373b2"], "properties": ["roof, purple, suspended", "door, roof, window"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of an apartment building"], "question": "which building has a green door?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["- material is plastic- color is white- shape is cube", "furniture, room, kitchen"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a clear glass display case with a square light fixture."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "980ded888795417f94b46750105e1597"], "properties": ["color, shape, material", "light, fixture, square"], "captions_pred_pc": ["a black and white image of a metal structure", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a clear plastic box"], "question": "which object is made of glass", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["size, material, shape", "paper, hole, sign"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "an image of a torn piece of paper in the shape of a map"], "question": "which entity is a torn piece of paper?", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, platform, house", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a, chair, table, light", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a wooden box with a lid"], "question": "which object has a drawer", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["a, box, wall", "a, box, wall"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which entity has a white door?", "label": 0}, {"captions": ["a small blue plastic box with a lid and handle.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "6b745457e06840119058883b35f78f58"], "properties": ["blue, lid, handle", "roof, color, blue"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a house with a steeple on top"], "question": "which object has a blue roof", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a white building with a square ceiling panel and a white 3d printed plane on top."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "eb3ea0e6963f4efda2a8cf0732befd56"], "properties": ["building, color, white", "- material is 3d printed, ceiling panel is square, plane is white"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "above a black and white drawing of a cross"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a building on a white surface"], "question": "which building is whiter", "label": 1}, {"captions": [" of a transparent blue cube.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7c9f4d3ab9f848aca54d59ce6e8019c8", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, transparency", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less the image depicts a black and white doodle pattern on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["an empty white box on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house with wooden framing and trusses."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "frame, trusses, wood"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large rock with a hole in it.", " a house with a wooden-framed roof structure."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, shape, material", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "a black and white drawing of a staircase"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large building with a roof and windows.", " a small house with stairs and a roof."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["roof, windows, building", "roof, stairs, house"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a wooden-cased radio.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "c3a82df41875402285608ef13a55df57"], "properties": ["case, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white drawing of a bird's wing"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black gun.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["color, black, gun", "moss, mushroom, grass"], "captions_pred_pc": ["of a black leather bracelet on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which object is covered in moss", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small building with a staircase in a room."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["floor plan, heating system, ceiling light fixture", "room, staircase, building"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase?", "label": 1}, {"captions": ["3d superman logo in red and yellow", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["color, red, yellow", "blue, yellow, frog"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d model of a piece of furniture"], "question": "which entity has more yellow", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "97e000ff41094665afd94ea565da8b13"], "properties": ["black, white, laptop", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a floor plan"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a wooden billiard table with legs."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, style, pixel", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["color, shape, and size", "ceiling, beams, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a ceiling featuring wood beams and light?", "label": 1}, {"captions": [" a small house with a roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, house, small", "house, rock, bird"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "c3a82df41875402285608ef13a55df57"], "properties": ["color, background, arrows", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white drawing of a bird's wing"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", " a large metal building with a roof and truss structure."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, table, chairs", "roof, truss, structure"], "captions_pred_pc": ["a close-up of a white object on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, shape, background", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a metal rod", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["water, boat, rock", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, purple, suspended", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a house with wooden framing and trusses."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["building, color, black and white", "frame, trusses, wood"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a house under construction"], "question": "which building is made of wood", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "1c389c8f46b345838e515b9747c1f982"], "properties": ["size, material, wheels", "plate, fruit, knife"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a person riding a skateboard on a wooden surface"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house with stairs and a roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["chair, table, refrigerator", "roof, stairs, house"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " of two rocks with ice elements."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, line, gray", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white image of two rocks on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "e2645ac544844f3c981203134a99c30c"], "properties": ["shape is sphere, color is white, material is plastic", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d printed white dice with a mickey mouse face"], "question": "which object is whiter", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["building, stairs, shelves", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of the roof of a building"], "question": "which building has a ladder?", "label": 1}, {"captions": [" a white and yellow sword with a yellow handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["776a9df9cead4b70b3480ef9fecadaea", "b896a0898efe4059a776193c02132129"], "properties": ["color, handle, blade", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["roof, air conditioner, house", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a window", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "c3a82df41875402285608ef13a55df57"], "properties": ["base material, wood, shade color, white, beige", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a yellow roof and chimney."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["roof, purple, suspended", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a yellow roof?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a house with a flat roof structure."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, material, texture", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "73e7107ff3634516846bccad04c5dc87"], "properties": ["- color is white- shape is cube- material is plastic", "blue, curved, resembles"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of a white cube", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["house, lake, pool", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a roof and a square ceiling with a hole?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a small white building with stairs and a lid."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["Arms, Legs, Color", "building, stairs, lid"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["house, fence, playground", "plane, ship, bird"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a wooden staircase with a railing and table."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "956247bea850458199c651037d4b1d7f"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "railing, table, staircase"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, green, orange, star", "mossy, rock, grass"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a piece of wood on a white background"], "question": "which entity is not a pair of green sneakers with orange laces and star designs?", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["eead0dd97023415da05c97df37337473", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, balloon, color, blue", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a house with a green, wooden-structured roof."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", "a white of a man with arms outstretched."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["A, a, a", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a large white and metal building with a metal roof structure."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- material is plastic- color is white- shape is cube", "roof, metal, white"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a white building with a red roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, blue", "color, white, roof, red"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, dragon, cloth", "island, terrain, water"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["Arms, Legs, Color", "roof, brown, flat"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d rendering of a table and stool"], "question": "which entity has a roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "7407a108e0354925b83b750339bc03df"], "properties": ["a, booth, bed", "platform, color, orange"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["frame, chalkboard, color", "table, stairs, ladder"], "captions_pred_pc": ["of a black and white image of a television on a wall", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a table with a stool on top"], "question": "which object has a ladder?", "label": 1}, {"captions": ["a wooden-cased radio.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["case, material, wood", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white square with dots on a white background"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a brick wall with grass."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "53f2d948091f417cb580e22469c94db2"], "properties": ["houses, trees, road", "brick, grass, wall"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "house, tree, hill"], "captions_pred_pc": ["a black mascara brush on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "c3a82df41875402285608ef13a55df57"], "properties": ["color is purple, material is plastic, number of legs is four", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white plastic chair", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, white, pen, logo", "a, color, red"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, gray", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, horns, features", "house, roof, blue"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a wooden staircase with a railing and table."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "956247bea850458199c651037d4b1d7f"], "properties": ["door, stairs, color", "railing, table, staircase"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a table with a staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a white glass beer mug."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, tan, leather", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", "a white of a man with arms outstretched."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a patterned rug", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " of a black gun."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "3f2a6b3f9fcd48979f611eb59473f53e"], "properties": ["color, black, white", "color, black, gun"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "of a black leather bracelet on a white background"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a handgun royalty free 3d model preview no 2"], "question": "which object is black", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a clay pot with holes in it."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["s, chimpanzee, human, wolf", "hole, material, clay"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " of a wooden windmill with a red roof."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["shape is cube, color is black, white", "roof, color, red"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a windmill on a gray background"], "question": "which building is made of wood", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a small white building with stairs and shelves."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, gun", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a, island, resembles, hawaii", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white of a house with a hole in the ceiling."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["A, a, a", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a character wearing glasses and a hat."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["red, mouse, handwriting", "hat, glasses, character"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " of two rocks with ice elements."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["house, door, cross", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["6b745457e06840119058883b35f78f58", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, color, blue", "a, building, roof"], "captions_pred_pc": ["a black and white image of a building with dots", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " of a white human skull with broken bone elements."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, poles", "color, white, skull"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a house with a green, wooden-structured roof."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["hat, shirt, bearded", "roof, color, green"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a red and white pokeball with the word \"pichu\" on it, compatible with various modeling and animation software.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["7d76c44cb9dd4948b8766d83994ca5f3", "d81d13362ae04371bb2cba46e4939665"], "properties": ["- material is stl, obj, fbx- size is 240px- color is red, white", "hat, bow, arrow"], "captions_pred_pc": ["a black and white circular pattern on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a close-up view of a black ball with a screw in the center", "a sculpture of an african man sitting on a pedestal"], "question": "which entity is a figurine?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["chair, table, refrigerator", "roof, truss, lamp"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a metal roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a house with wooden framing and trusses."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, shape, text", "frame, trusses, wood"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["building, tree, plane", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["island, mountain, grass", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["frame, trusses, wood", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of the roof of a building"], "question": "which house has a ladder?", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["black, laptop, shelf", "room, furniture, window"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" of a small white box or bench.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["dfc7c96b45b74328bce7418560fe76fe", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["white, bench, small", "a, material, clay"], "captions_pred_pc": ["above a black and white illustration of a person standing on top of a skyscraper", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["background, color, white", "house, plane, town"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "bb01282cb8b64470866260455b0b46fa"], "properties": ["color is white, material is plastic, shape is tube", "liquid, ice, lid"], "captions_pred_pc": ["a black and white image of a broom on a stand", "in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a plastic bottle on a white background"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a house with a roof and beams."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, hole, shelf", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["bedside table, wheels, white", "lion, statue, fountain"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white image of a metal object"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": [" a large building with a roof and windows.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, windows, building", "roof, color, yellow"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which building has a roof that is the color yellow", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " of a crab holding a rubik's cube."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["roof, color, yellow", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", "two white spheres in a ."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "1c02212a35134545ab63ab180d629c31"], "properties": ["holder, spring, box", "two, spheres, white, in, a"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a 3d model of a white ball on a gray background"], "question": "which object is not a holder?", "label": 0}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, fence, playground", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, island, water", "room, furniture, window"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d image of a room with a person in it"], "question": "which entity has a damaged window", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["color, roof, tray", "roof, house, small"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, temperature, england", "island, mountain, grass"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, shape, and size", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " of a house with a roof."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["- material is white- color is white- texture is textured", "roof, house, roof"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white purse with a strap.", "a white glass beer mug."], "sample_ids": ["dae133bae5cb4496b956f03e1fb7e402", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, strap", "color, white, glass"], "captions_pred_pc": ["a black and white image of a watch with dots on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white purse with a strap", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house with a green, wooden-structured roof."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["frame, beams, trusses", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a triangular roof"], "question": "which structure has a roof that is green?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "243cd2c469984313b1522dca099eefd3"], "properties": ["resembles, octopus, squid, spider, robot", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "09f2cf267e954c958828325067bcc36a"], "properties": ["a city, train, dragon", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a toy car", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is white- shape is cubes- number is 1", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " of two rocks with ice elements."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, pattern, field", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small black box on a purple square.", " a house with a flat roof structure."], "sample_ids": ["75f209e543c046669099190953616acc", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, shape, size", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a large steel building with a pool."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, green, lawn", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a human bone", " a potted christmas pine tree."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["a, b, c", "a, color, green"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a christmas tree in a vase"], "question": "which object is not a human bone?", "label": 0}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["screen, keyboard, box", "a, box, wall"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which object has a white door", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "bf18bfd89efd43389781050230467d58"], "properties": ["ruined building, stone floor, small stone structure", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "46903bf029934b1989bc062dcb0a5531"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is purple, material is plastic, number of legs is four", "box, handle, gun"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a house with a roof and beams."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, bowl, cup", "roof, beams, house"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a building with a roof"], "question": "which object has a roof?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a wooden roof structure with a pink roof."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["a, plane, small plane", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["resembles, toy, bookshelf", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["room, bed, desk", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color is white, yellow, plastic", "black, screen, blank"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a white plastic container with a label on it", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity is not a billboard?", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "c3a82df41875402285608ef13a55df57"], "properties": ["plane, ship, bird", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a small wooden house with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["frame, truss, roof", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a large steel building with a pool."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, hill, forest", "building material, pool, steel"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small white building with stairs and a white table."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, blue, structure", "building, stairs, table"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a staircase"], "question": "which building has a white table?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["house, staircase, window", "house, lake, pool"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, white, material, ceramic", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", "a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "5409e95467e54cbdaddb17695fe563e6"], "properties": ["a, character, person", "a, character, person"], "captions_pred_pc": ["a 3d model of a person", "a 3d model of a person"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a 3d model of a bird in mid-flight royalty free 3d model preview no. 3"], "question": "which entity has a person holding a bat?", "label": 0}, {"captions": [" a yellow and white pickup truck with yellow wheels.", "a white glass beer mug."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, yellow, white, wheels", "color, white, glass"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", " a house with a green, wooden-structured roof."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, material, size", "roof, color, green"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a white building with a red roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["room, door, shelf", "color, white, roof, red"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "9968e06a62e8487ea33460e640abc573"], "properties": ["low poly, llama, kangaroo", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a white object on a gray background"], "question": "which is not a tube", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small white house with a roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, metal, white", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 0}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, white, logo", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "1da865c75a5e4a57a17652975dae5474"], "properties": ["shape is cube, material is wood, color is white", "color, white, plastic"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["cup, bottle, chessboard", "house, pool, balcony"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, white, furniture, black", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a hill", "label": 1}, {"captions": ["a sword with a yellow handle and white blade.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ee82fbc66d39467b8f34b91493053e66", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, handle, blade", "box, handle, gun"], "captions_pred_pc": ["of a black and white image of a pen on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["screen, keyboard, box", "lighthouse, fountain, crater"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["bird, nest, wood", "houses, trees, road"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white photograph of a small town"], "question": "which entity has more trees", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", " a large metal building with a roof and truss structure."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "b85a99699ccd4bcba213322113bb253d"], "properties": ["dial, face, band", "roof, truss, structure"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "of a metal grate on a white background"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "glass, metal, balls"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a clear acrylic foosball table"], "question": "which entity has more metal", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["background, color, white", "flower, color, pink"], "captions_pred_pc": ["a black line on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, truss system, framing"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of the roof of a house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "e602ac60041f4b4f84c044161e478781"], "properties": ["roof, color, pink", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["box, paper clip, lock", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, truss, lamp", "roof, trusses, beams"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " of a small white building with stairs and a lid."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, hole, shelf", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small, snow-covered house."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, front, road", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on a road", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a blue ford escort car.", "a white glass beer mug."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, blue, ford escort", "color, white, glass"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["color, white, plastic", "house, fence, dog"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a clay pot with holes in it."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["ceiling, beams, light", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a barrel and a cube together."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "a, barrel, cube"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a wooden windmill with a red roof."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["light source, fixture, color", "roof, color, red"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, truss, suspended ceiling", "roof, structure, suspended"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with a metal roof"], "question": "which entity has a roof with a truss?", "label": 0}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "887e410d07854396b563325ae1929583"], "properties": ["a, color, white", "hat, mouse, bear"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which object has a teddy bear?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c1536f68727947ff9e7810799fac583a"], "properties": ["color, shape, and size", "level, stairs, columns"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an apartment building"], "question": "which entity has more stairs", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "red heart-shaped object."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is white- color is white- texture is textured", "shape, heart, red"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a heart shaped object"], "question": "which object is red?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a pixelated-textured purple sphere ."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, light", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is stone - shape is bat", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- color is white- shape is cubes- number is 1", "box, handle, gun"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": ["white of a small arch.", " a white building with a red roof."], "sample_ids": ["8ea3d374b2ef4ff38a51f5873c337c76", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, size", "color, white, roof, red"], "captions_pred_pc": ["for a black and white drawing of an arch", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white 3d model of an arch", "a 3d model of an office building"], "question": "which building is white", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["castle, island, house", "house, table, chair"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["chair, table, refrigerator", "hat, skull, bread"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, size", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["frame, roof, trusses", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a black roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, material, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a small white building with stairs and a lid."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, bowl, cup", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["hat, sword, gun", "house, lake, pool"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["island, mountain, grass", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["plane, ship, bird", "box, handle, gun"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, screen, drawer", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a small building with windows and a roof."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, size", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, purple", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a blue circuit board with electronic components.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, blue, components", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, tree, pool", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, mouth, eyes", "color, silver, white"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a silver ball on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small grassy island in the water.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "40921ffd69db479294554d261daf3035"], "properties": ["location, water, island", "floor, railing, staircase"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white image of a computer screen"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, horns, features", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " of a small white building with stairs and a lid."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, red, black", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a person breaking through a brick wall."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, light, jewels", "image, brick, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, background, white", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of a lantern on a table.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "db74ee1621464be1b164be26a1af050e"], "properties": ["a, table, lantern", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lantern on a table", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof truss, insulation, suspended ceiling", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, eye, handle", "axe, handle, wood"], "captions_pred_pc": ["above a black and white drawing of a room", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a knife on a white background"], "question": "which object has a handle", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["apse, roof, floor plan", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, blue", "roof, pillar, stairs"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a spiral staircase with railings."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["a, ball, mushroom", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" of a white pedestal sink with blue water.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["b4ad53e3057f4922b273f86e7adb3466", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["water, sink, color", "paint, rust, concrete"], "captions_pred_pc": ["above a black and white drawing of a letter 'l'", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a white pedestal sink royalty free 3d model preview", "a 3d model of a concrete wall"], "question": "which object is more likely to be made of concrete", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["color, white, pen, logo", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["color, red, blue, green", "house, color, white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a small white building"], "question": "which building is white", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["light switch, electrical outlet, furniture", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["ruined building, stone floor, small stone structure", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a green mountain with trees and grass.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["mountain, grass, tree", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a roof structure"], "question": "which entity is a building?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, gray", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, tan, brown, orange", "Cabinet, drawer, wood"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a white castle composed of small cubes."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, white, red, pink", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a castle made of white cubes"], "question": "which object is composed of white cubes", "label": 1}, {"captions": [" a small white box with a green light.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, white, light", "house, staircase, table"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, roof, toothbrushes", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a multicolored metal building structure with a roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, door, window", "color, roof, structure"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a barn structure"], "question": "which structure has a roof?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["frame, truss, roof", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white building with stairs and shelves."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "9e1f64d4fd514059be934077717536dc"], "properties": ["house, door, cross", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white drawing of a house", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small wooden house with a green roof."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, yellow, black", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "674a36147ffb47059e48abc9fa19d923"], "properties": ["color, shape, and size", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sandbox?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, stairs, house", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["building, fence, snowy", "building, color, white"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a wooden shed with a gray roof."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["railing, table, staircase", "roof, color, gray"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["- color is white- shape is cubes- number is 1", "torso, breasts, pattern"], "captions_pred_pc": ["a close up of a black and white striped scarf", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, plane, sky", "throne, stairs, tree"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a small house with a tree and a rock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["chair, table, refrigerator", "house, tree, rock"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a white of a spaceship and building."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["building, balcony, street", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a green mountain with trees and grass."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["black, white, laptop", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a building with blue lines and structure.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["color, shape, structure", "throne, chair, building"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a small, snow-covered house."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["color, room, table", "house, snow, cover"], "captions_pred_pc": ["a black square on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["bird, nest, wood", "house, staircase, table"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, material, pattern", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a bench on a wooden floor"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "09f2cf267e954c958828325067bcc36a"], "properties": ["green, hat, cream", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a pair of earrings", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a small wooden house with a green roof."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["image, color, pink", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["room, door, shelf", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, purple, suspended", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a wooden roof"], "question": "which house has a wooden roof truss structure?", "label": 1}, {"captions": [" of a lantern on a table.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, table, lantern", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a lantern on a table", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["A, a, a", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a camera with a blue screen and lens.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["screen, lens, color", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["hill, field, castle", "house, fence, playground"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "1c389c8f46b345838e515b9747c1f982"], "properties": ["size, material, color", "plate, fruit, knife"], "captions_pred_pc": ["a black and white image of a small square with black dots", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a person riding a skateboard on a wooden surface"], "question": "which object is made of wood", "label": 1}, {"captions": [" a pink, white, and blue stick-like object with arrow and syringe features.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["38af8affd4f744a08e8df9770a458709", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["of a black and white wrist watch on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, color, white", "building, plane, room"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "aef9b23a78a7450286a961cc13448d00"], "properties": ["roof, structure, wall", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a set of stainless steel shelves"], "question": "which roof structure is more likely to have a green roof", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "a17477b445b3443189dad22f768b888b"], "properties": ["Steel, Color, Yellow", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["carving, statue, wall", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["a grayscale of a mountain.", " of a crab holding a rubik's cube."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, grayscale, mountain", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a black and white image of a crab holding a cube"], "question": "which entity is a grayscale of a mountain?", "label": 0}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, room, table", "island, mountain, grass"], "captions_pred_pc": ["a black square on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, grass, moss", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a silver vintage racing car.", " a small purple plastic chair with holes."], "sample_ids": ["9d8a1e856251435f9596c031005520bd", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, silver, vintage", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a chair with dots all over it", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a vintage racing car", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, black, shade, black", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a small house with a spiral staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a staircase with a glass railing and a small white table, featuring a ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["10b899daca25493cba6bfffbbe7990fe", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["railing, glass, table", "island, terrain, water"], "captions_pred_pc": ["above a black and white photograph of a cell phone", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a staircase with a glass railing", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a house with a wooden-framed roof structure."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["composed of, white, cubes", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e34088fc7b5344c4ab29fef067750225"], "properties": ["houses, trees, road", "sphere, pedestal, statue"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue?", "label": 1}, {"captions": [" a staircase with a yellow railing, accompanied by a chair with a glass top, a square light fixture, and a kitchen hood in a small building.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ddaac41b6efd4dd0b7bf8d441441555e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["railing, chair, light", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a letter 'g'", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a bench on a white background royalty free 3d model no.3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, color, gray", "roof, structure, suspended"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of a house with a metal roof"], "question": "which roof is not suspended", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a large building with a roof and windows."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "32d1fbd3ee91426882290305f70021e6"], "properties": ["color, horns, features", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["lighthouse, fountain, crater", "mountainous, landmass, state"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small wooden house."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, door, window", "house, material, wood"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small black and white cube.", " a blue circuit board with electronic components."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "4816a2780af54492b6692fd78347f1ac"], "properties": ["color, shape, size", "color, blue, components"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d printed circuit board with various electronic components"], "question": "which object is blue?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a white castle composed of small cubes."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["shape, bathroom, refrigerator", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a house with a roof and beams."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["black, roof, green", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" of a small red renault clio car.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is red, make is renault, model is clio", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which is not a car", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["color, temperature, england", "a train, a ship, a boat"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a submarine"], "question": "which entity has a train", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " a white and blue building with a black roof."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, horns, eyes", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a black roof", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, blue, structure", "house, fence, playground"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a white of a spaceship and building.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["image, building, spaceship", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white drawing of a tree", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a submarine"], "question": "which image shows a spaceship and a building?", "label": 0}, {"captions": [" a small house with stairs and a roof.", " a small wooden house with a green roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, stairs, house", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["image, building, stairs", "stair, table, chair"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a staircase in a room"], "question": "which image shows a staircase with a railing", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["apse, roof, floor plan", "image, building, stairs"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which building has stairs", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["house, fence, dog", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of the roof of a building"], "question": "which house has a ladder?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small house with stairs and a roof."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, yellow, black", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of an airplane", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of a black and white striped fly in the air."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "black, white, fly"], "captions_pred_pc": ["a black and white image of a flying saucer", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "770e577c9795435898209fd24191635b"], "properties": ["building, roof, white, cubes", "image, color, light"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a white 3d model of a small town"], "question": "which image has a ceiling light?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a green mountain with trees and grass."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["red, mouse, handwriting", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house on a hill in a field.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["house, hill, field", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a brick wall with grass."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, shape, texture", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white photo of a brick wall and a puddle"], "question": "which entity has a brick wall with grass?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a house with a wooden-framed roof structure."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, furniture, black", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": ["green dumbbell ", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color is green, shape is dumbbell, material is metal", "color is white, yellow, plastic"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, red, blue, green", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["a 3d low poly model of an orange with a green leaf and stem.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["cdd918943a124d3f94859d9f67ab8e3e", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["3d, low, poly", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape with dots", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a paper airplane flying in the air", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a wooden shed with a gray roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, structure, truss", "roof, color, gray"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a shed with a gray roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["3D, toothpick, skateboard", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["roof, color, pink", "mossy, rock, grass"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a piece of wood on a white background"], "question": "which entity has a mossy rock?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "a white of a house with a hole in the ceiling."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["building, floor, columns", "image, house, ceiling"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["s, stick, leaf", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["house, roof, wooden", "roof, trusses, ladder"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of the roof of a building"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof truss, insulation, suspended ceiling", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["lighthouse, fountain, crater", "hat, candy, strawberry"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" of a white van with a logo on the side.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, logo, side", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photo of a white van", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["A, a, a", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d sculpture of an apple on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "06a1c233fb444830b577aa06e2c01294"], "properties": ["building, plane, room", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " a small orange piano with legs."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, dragon, cloth", "color is orange, size is small, legs"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small building with windows and a roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["floor plan, bathroom, pool", "roof, windows, building"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "97e000ff41094665afd94ea565da8b13"], "properties": ["light switch, electrical outlet, furniture", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a multi-level building with yellow stairs and columns.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c1536f68727947ff9e7810799fac583a", "97e000ff41094665afd94ea565da8b13"], "properties": ["level, stairs, columns", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white illustration of dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["chair, table, refrigerator", "hat, pants, shirt"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house with a roof and beams."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["structure, roof, pitch", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a wooden roof structure with a pink roof."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, pink, green", "roof, color, pink"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of the roof of a building"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "4e82177059204292899fa7415164a05e"], "properties": ["bed, desk, window", "yellow, tires, load"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a monster truck with spikes"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["cover, torn, open", "table, staircase, light"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "be1376023c274bdda995d54f3694157f"], "properties": ["lamp, harp, bowl", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["room, bed, desk", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "7f8942ef51dd4246993a587a12df168c"], "properties": ["arm, jacket, mannequin", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["a wooden-cased radio.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "1da865c75a5e4a57a17652975dae5474"], "properties": ["case, material, wood", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["hat, food, bowl", "paper, hole, sign"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["frame, truss, roof", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, style, pixel", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "a black and white map of the state of new york"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" of a deer on a grassy hill.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, hill, deer", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, ancient stone building, resembling a roman structure and a medieval castle.", " a small wooden house."], "sample_ids": ["f96abfafd34040a4bb09f5e2973403e9", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, material, stone", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, material, ceramic", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["2563abff548c4479970c81491513b572", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, model, year", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["graffiti, chinese writing, door", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with stairs and a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["roof, stairs, house", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof?", "label": 0}, {"captions": [" a small house with a blue roof, a door, and a pool.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "a243183445184d2e977044a5b6916e55"], "properties": ["door, roof, pool", "painting, frame, door"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of a large group of people"], "captions_pred_image": ["a 3d model of a small house", "a picture frame with a black and white photograph"], "question": "which door is framed", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a spider-like creature with long arms and legs."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["building, roof, yellow", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["backrest, curved, yes", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "a, material, clay"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building on a white surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " a house with a wooden-framed roof structure."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, plane, city", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a city in black and white", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a human skull.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "c3a82df41875402285608ef13a55df57"], "properties": ["a, b, c", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a white plastic object on a gray background"], "question": "which object is not a human skull?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["building, stairs, shelves", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a hand featuring red, green, and blue stripes."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "6ea21f8f91b04144b43aa4b606339de3"], "properties": ["color, material, structure", "color, red, green, blue"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a glove"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white and gray glove"], "question": "which entity is a hand?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, room, table", "water, boat, rock"], "captions_pred_pc": ["a black square on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small building with a staircase in a room."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["hat, food, bowl", "room, staircase, building"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase in a room?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, structure, truss", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["s, plane, house", "roof, color, yellow"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a tree stump with roots."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "fa6e88ba438f4597a7230789124c8147"], "properties": ["room, bed, desk", "root, tree, stump"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white illustration of a galaxy"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a tree stump in the middle of a field"], "question": "which object is a stump?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a train, a ship, a boat", "house, hill, forest"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof, color, pink", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "white ceramic urn with a red lid."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["- material is plastic- shape is dice- color is white", "color, white, lid, red"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, light, handle", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a black and white 3d model of a building"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "bded33af34104b9686b845dfd18309a9"], "properties": ["meat, bread, sausage", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a brush on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, shape, and size", "Eye color, Black, Purple"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " of two rocks with ice elements."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["base, speaker, light", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "aae2c42740a04fd68068f5707111d26f"], "properties": ["color, white, material, ceramic", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a marble sculpture of an angel"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof, metal, white", "building, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["size, color, design", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a building"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["runner, bed, bench", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["black and white image of a motorcycle", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["3e378d360d6b4a03ba69b0273bff73f6", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, black, white", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a sculpture in the shape of a bird", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a motorcycle royalty-free 3d model preview", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, roof, tray", "house, roof, blue"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a3c50635c2a04e548e57d4f027899131"], "properties": ["A, a, a", "building, roof, white, cubes"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of a map"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a city on a white background"], "question": "which building has a white roof", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " of a white chest of drawers with legs."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["metal, legs, wheels", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["Steel, Color, Yellow", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of a suitcase on wheels"], "question": "which entity is not a suitcase?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, red, blue, structure", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["door, white, structure", "house, roof, green"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a building with a black roof"], "question": "which structure has a green roof", "label": 1}, {"captions": [" a black and white striped box.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, black, white", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " of a small white building with stairs and a lid."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["structure, roof, pitch", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small triangular-shaped object."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "2d02985030804209a26c2c53b96a06f9"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " a fish with green spots, green eyes, green and blue fins, and green and blue stripes."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "adee50e7a19c4c219e5a2edac18fb28e"], "properties": ["a, shirt, pants", "Eye color is green, Spot color is green, Fin color is green and blue"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a fish on a white background"], "question": "which entity is a fish?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a white human skull with broken bone elements."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, screen, drawer", "color, white, skull"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small white house with a roof.", " a house with a roof and beams."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, white", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" of a house with a pink roof.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, roof, pink", "color, head, white and brown"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, color, gray", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small orange piano with legs."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d793de7c08d74414beeb8ea50f730705"], "properties": ["resembles, toy, bookshelf", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a stone wall featuring carvings and statues."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["image is a sculpture of an angel on a wall", "carving, statue, wall"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d image of a group of statues on a wall"], "question": "which wall features more carvings and statues", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, eagle, wood", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a small wooden house with a green roof."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["earbuds, light, ring", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a house with a ladder"], "question": "which object has a roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["bed, desk, window", "box, cylinder, bottle"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a large building with a roof and windows.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, windows, building", "roof, trusses, ladder"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which building has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", "s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "7adf9de5fb734455a3a3a7f084e3d628"], "properties": ["color, temperature, england", "cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a flying saucer"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a fighter plane flying upside down"], "question": "which entity has a cat?", "label": 0}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["black, laptop, shelf", "grass, plants, rocks"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a spider-like creature with long arms and legs."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- color is white- shape is cube- material is plastic", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, pattern", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a human skull", " of a deer and a crystal tree on an island, with a rock and bird nearby."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "2ce5ec0844114576a247b1de2011e0c7"], "properties": ["a, b, c", "image is a deer and a crystal tree on an island, with a rock and bird nearby"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white illustration of a flying saucer"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a deer standing on an icy island"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a white building with a red roof."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, logo", "color, white, roof, red"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white box with a green light.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, light", "a, material, clay"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a small white box", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["house, fence, dog", "structure, columns, roof"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["size, color, design", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white pattern on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["A, a, a", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "e44009d33258425e8efedfbc6823bf70"], "properties": ["- material is plastic- color is white- shape is cylinder", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a white cube"], "question": "which object is a cube?", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " of two rocks with ice elements."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["load, crates, snow", "image is a rock with ice elements"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a bee and a rubik's cube next to each other."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "83a27b2b104e4f7f8b42c3c8654153db"], "properties": ["buildings, houses, grass", "bee, color, black and white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white image of a bee next to a cube"], "question": "which entity is black and white", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a large steel building with a pool."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["frame, beams, trusses", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a cross", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building on a white surface", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["s of, snowboard, shoes, mask", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a white 3d model of a city skyline"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white building with stairs and a white table."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "e30374c614f54fdb90f35b96b071349d"], "properties": ["apse, roof, floor plan", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a, hole, rock", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " of a white chest of drawers with legs."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["Black, Shelf, Metal", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "839a873262a544c9906f3f5799ca4648"], "properties": ["face, mask, tail", "a, outfit, green"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a goat's head", "a person jumping on a trampoline in slow motion"], "question": "which entity has a green outfit", "label": 1}, {"captions": ["a pixelated eagle with a yellow and white head and yellow beak.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9ce77b4cc05c4060a74b8f2568e6bbe8", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["eagle, head, beak", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a knife on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d image of a penguin in a pixelated world", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["hat, sword, gun", "bedroom, bathroom, bed"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bedroom?", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["ceiling, beams, light", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white drawing of a window", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a building with a roof"], "question": "which entity has a roof made of glass?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " of a person breaking through a brick wall."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["wall, stairs, castle", "image, brick, wall"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["bread, chocolate, cake", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a loaf of bread", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a person breaking through a brick wall."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, truss, lamp", "image, brick, wall"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a spider-like creature with long arms and legs."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["arm, jacket, mannequin", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a wooden-cased radio."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, light, jewels", "case, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- material is plastic- color is green- shape is box", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small wooden house."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["rusty, sink, graffiti", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, tan, brown, orange", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white illustration of an office chair", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a robotic warrior with a sword."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["color, horns, features", "weapon, sword, robot"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small white house with a roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["lighthouse, fountain, crater", "roof, color, white"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "a59efdbb28a241b8866bfc094c8c80b2"], "properties": ["a, bird, lamp", "a, bird, lamp"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a silhouette of a person standing in the air"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a black and white image of a futuristic sculpture"], "question": "which entity has a bird that is black and green?", "label": 0}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of two rocks with ice elements."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["s, chimpanzee, human, wolf", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "5414d75e47104589837f3df8b6de6d22"], "properties": ["black, roof, green", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a small black building", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", "a white of a house with a hole in the ceiling."], "sample_ids": ["e098706085a44898abbd549693d12a64", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color is black, white, orange", "image, house, ceiling"], "captions_pred_pc": ["of a white and black clutch with a flower design", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a robotic warrior with a sword.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "bf18bfd89efd43389781050230467d58"], "properties": ["weapon, sword, robot", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small white building with stairs and a white table."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "e30374c614f54fdb90f35b96b071349d"], "properties": ["- material is plastic- color is white- shape is cylinder", "building, stairs, table"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a building with a staircase"], "question": "which object is whiter", "label": 1}, {"captions": [" a black and gold pistol.", " a wooden roof structure with a pink roof."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, black, gold", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a toothbrush", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, shape, size", "image, color, white"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, roof, green, frame, red", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, black, shade, black", "color, green, squirt gun"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a 3d white cube with windows resembling a building."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "4a07a5293f024bb0a353954a056ef626"], "properties": ["shape is cylinder, color is white, material is plastic", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a cube"], "question": "which object is whiter", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a building with yellow lines."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, lake, boat", "color, yellow, lines"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, room, ceiling", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a small white toy cannon."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "a414258c6bf149708404913a89ab8dbc"], "properties": ["color, pattern, material", "color, white, toy"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "for 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer on a white background 3d illustration of a hair dryer"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a cannon on a white background"], "question": "which object is a toy?", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["bird, nest, wood", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, bowl, cup", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, pattern", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a building structure"], "question": "which entity is a cube", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, black, white", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white photograph of a birdhouse"], "question": "which object has a roof", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["5c04dac989a64d228283687588484b93", "832a022cdcc74763b0571e04af4e592b"], "properties": ["color, shape, material", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, roof, green, frame, red", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is not a skeleton?", "label": 1}, {"captions": ["white 3d screw model", " a wooden roof structure with a pink roof."], "sample_ids": ["90ef4675ea1a419ca5f0c15f1aab96ec", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["of a black lace doily on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d printed screw on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a blue roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, blue", "- material is stone, metal, concrete"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, dress, flower", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["variation, bread, pot", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of an object", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, color, shape", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is stone - shape is bat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with a yellow roof and chimney."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["color, white, yellow, roof, metal", "roof, yellow, chimney"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["runner, bed, bench", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "a17477b445b3443189dad22f768b888b"], "properties": ["roof trusses, beams, suspended ceiling", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4ccf1ee1316e4a2b8f52e77e126a68c0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, house, material", "house, pool, balcony"], "captions_pred_pc": ["a close-up view of the crystal chandelier on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["shape is turtle, color is green, white", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a black and white image of a door with a crack in it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with stairs and a balcony.", "a white of a spaceship and building."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["balcony, stairs, house", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["graffiti, bench, wall", "Cabinet, drawer, wood"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["cup, bottle, chessboard", "table, staircase, light"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["tiers, building, stairs", "roof, color, yellow"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["houses, trees, road", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" of a black shark", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "e34088fc7b5344c4ab29fef067750225"], "properties": ["black, mouth, teeth", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white image of an object on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a blue and white sphere on a pedestal", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, shape, number", "broom, shovel, fireplace"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "c8936ace72954650b4e2d84246964849"], "properties": ["color, white, base, slanted", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of a chair?", "label": 1}, {"captions": [" a black building.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, black, building", "house, roof, wooden"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a black and white photograph of a birdhouse"], "question": "which building is made of wood", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a four-legged metal workbench with shelves."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["Drawer, Handle, Wood", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a spider-like creature with long arms and legs."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["color, shape, size", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a human bone structure", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white of a spaceship and building.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["image, building, spaceship", "image, city, spoon"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a white chest of drawers with legs."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["computer desk, laptop, monitor", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": ["a 3d printed model of white and red robots on a red platform.", " a white building with a red roof."], "sample_ids": ["0fa560c2fd9f4422a97356c947ac3b46", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, red, white", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a person sitting on a bench", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a robot standing on top of a table", "a 3d model of an office building"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "6b745457e06840119058883b35f78f58"], "properties": ["house, yard, surrounding buildings", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, size", "resembles, toy, castle"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a tower made out of blocks"], "question": "which object is a toy?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a purple chair with holes in it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "833151c8e0f4489a9fa966635a948452"], "properties": ["color, shape, and size", "color, purple, holes"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a silver pendant with an intricate design"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white chair"], "question": "which entity is a chair?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["building, roof, balcony", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a roof structure", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["image is rock formation with a white cliff and a rock", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a table with a stool on top"], "question": "which entity is a table?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small, snow-covered house."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, fence, dog", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, hand, flowers", "cloak, sword, spear"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "92498f398e244020a867686729633610"], "properties": ["a, b, c", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, shape, texture", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white image of a square with dots on it", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["cup, bottle, chessboard", "house, fence, playground"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a person breaking through a brick wall."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["resembles, toy, bookshelf", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a book cover", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["light, toilet, faucet", "3d, model, collection"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of objects?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, windows, building", "structure, columns, roof"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a building with multiple levels"], "question": "which building has a roof", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "6b745457e06840119058883b35f78f58"], "properties": ["roof, color, purple", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " of two rocks with ice elements."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["ceiling, beams, light", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "c3a82df41875402285608ef13a55df57"], "properties": ["cover, torn, open", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a torn bank note", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small, snow-covered house."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, roof, wooden", "house, snow, cover"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small barn", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["a box, a cup, a bottle, a jar", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of an axe head"], "question": "which object has a headstock", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "b896a0898efe4059a776193c02132129"], "properties": ["sandbox, sand bucket, wooden blocks", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small building with windows and a roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, containers", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["cup, bottle, chessboard", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small building with windows and a roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, white, yellow, roof, metal", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "c3a82df41875402285608ef13a55df57"], "properties": ["water, boat, rock", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["frame, beams, trusses", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a metal grate", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white house.", " a large metal building with a roof and truss structure."], "sample_ids": ["4ca5999ea9eb4184a7d1f486687ad989", "b85a99699ccd4bcba213322113bb253d"], "properties": ["size, color, shape", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a person holding a box", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a small house on a white background", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, structure, greenhouse", "structure, material, pool"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, handle, zipper", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a large building with a roof and windows."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "32d1fbd3ee91426882290305f70021e6"], "properties": ["building, color, white", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["yellow, shape, wingspan", "striped, white, black"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of a stack of books"], "question": "which object is striped", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a white of a man with arms outstretched."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["pattern, color, shape", "image, color, white"], "captions_pred_pc": ["a black circle on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a black rock with writing on it.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, black, writing", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a large white box"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large metal bomb.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["00c6c9da8a3943e8b096c1a3134d1d8d", "1da865c75a5e4a57a17652975dae5474"], "properties": ["size, material, shape", "color, white, plastic"], "captions_pred_pc": ["above a black and white image of a dome shaped object", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of an industrial ventilation fan", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, bird, lake", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white house with a roof.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, color, white", "beige, white, round"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a building with a white roof", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["bed, desk, window", "house, pool, balcony"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a four-legged metal workbench with shelves."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, tan, brown, orange", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white illustration of an office chair", "for a black and white illustration of a cross"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", "star wars stormtrooper "], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["arm, light, sign", "a, color, white"], "captions_pred_pc": ["above a black and white image of a skateboard", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["house, roof, wooden", "house, color, white"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": ["small purple teapot with a hook.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d9e9171f6d284331a6975c1fb40f9766", "b896a0898efe4059a776193c02132129"], "properties": ["color, purple, hook", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a bowl", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a wooden billiard table with legs."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, light, jewels", "legs, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, gun", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a brick wall with grass."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "53f2d948091f417cb580e22469c94db2"], "properties": ["house, rock, pond", "brick, grass, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white photo of a brick wall and a puddle"], "question": "which entity has grass", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "c3a82df41875402285608ef13a55df57"], "properties": ["screen, lens, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a person's face", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a stone knife.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "c3a82df41875402285608ef13a55df57"], "properties": ["material is stone, blade is sharp, handle is wooden", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["color, material, shape", "books, paper, lamp"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a black and white photograph of a toilet paper holder"], "question": "which object is made of paper", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a wooden-cased radio."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, text", "case, material, wood"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a white paper airplane flying over a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a white glass beer mug."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "1d686cbd3e9a4c629a43088658989286"], "properties": ["screen, monitor, stand", "color, white, glass"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a pair of yellow pliers.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, yellow, pliers", "roof, color, yellow"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white drawing of a room"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a white of a man with arms outstretched."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["hat, bag, blanket", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["- color is red, blue, pink", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small wooden house with a green roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, grass, moss", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" a pink and white gun.", " a small white box with a green light."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, pink, white", "color, white, light"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a stone wall with a window and a clock."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["floor, wall, roof", "window, clock, wall"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["fireplace, bench, log", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["shape, color, material", "hat, candy, strawberry"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["hat, bag, blanket", "stair, table, chair"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, material, structure", "image, color, pink"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " of a character wearing glasses and a hat."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["hat, food, bowl", "hat, glasses, character"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large house with a roof on a platform."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, structure, house", "roof, platform, house"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small black and white cube.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a white shelf with holes and brackets."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color is white, material is plastic, shape is box", "color, white, holes"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a white plastic tray", "a white bench with a shelf on top"], "question": "which object is made of plastic", "label": 0}, {"captions": [" of a human skull", " a small wooden house with a green roof."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, b, c", "roof, color, green"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["cover, torn, open", "box, handle, gun"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small house with stairs and a roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, white, black, white", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" of a small red renault clio car.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "c3a82df41875402285608ef13a55df57"], "properties": ["color is red, make is renault, model is clio", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["turrets, flags, towers", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a large metal building with a roof and truss structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, roof, tray", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a metal object", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["mossy, rock, grass", "paper, hole, sign"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", "a white of a spaceship and building."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, table, ceiling", "image, building, spaceship"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small, snow-covered house."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["desk, chair, lamp", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["color, orange, leather", "earbuds, light, ring"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which object is made of a material that is not leather?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["s of, snowboard, shoes, mask", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a white of a man with arms outstretched."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, color, blue", "image, color, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["color, green, handle", "mossy, rock, grass"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a piece of wood on a white background"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a small white box with a green light."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, head, white and brown", "color, white, light"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d rendering of a small white box"], "question": "which entity has a white light?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, shape, text", "hippo, hind, legs"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white illustration of a frog"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["house, tree, rock", "house, hill, forest"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "12093c89a60941e7884b252bdc05104c"], "properties": ["water, river, island", "giraffe, bench, flower"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a grayscale of a mountain.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, grayscale, mountain", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a large house with a roof on a platform."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "cb3e09a301b746918a682a595037c7f7"], "properties": ["building, tree, plane", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a machine gun.", "a white glass beer mug."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "1d686cbd3e9a4c629a43088658989286"], "properties": ["gun, barrel, caliber", "color, white, glass"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house with a green, wooden-structured roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["house, plane, town", "roof, color, green"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, structure", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of toy story's cowgirl and woody characters wearing cowboy hats."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "dc2e01ffd285460ca85a47695626e011"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "image is toy story cowgirl and woody wearing cowboy hats"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a girl in a cowgirl costume"], "question": "which image is a cartoon?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small house with stairs and a roof."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["- material is wood, metal, metal", "roof, stairs, house"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "c3a82df41875402285608ef13a55df57"], "properties": ["color, green, squirt gun", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "a2354f13774340d392fbf33564934aab"], "properties": ["computer desk, laptop, monitor", "building, roof, yellow"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof that is not yellow?", "label": 1}, {"captions": [" of a black shark", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "a17477b445b3443189dad22f768b888b"], "properties": ["black, mouth, teeth", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", "star wars stormtrooper "], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["a, rock, paper", "a, color, white"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, model, luggage", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden staircase with a door and square ceiling panel."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3fe7e366bf924a00bf4b06ded35fd392"], "properties": ["color, shape, and size", "door, panel, staircase"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a staircase on a wooden floor"], "question": "which entity is a door?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a pixelated-textured purple sphere ."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "fb68393941804e769d5c9b372864a642"], "properties": ["color, light, jewels", "texture, color, shape"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a gray sphere on a white background"], "question": "which entity has a texture that is pixelated?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a large house with a roof on a platform."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, tree, pool", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" of a person wearing a hoodie, with arms outstretched, walking, and holding a blue ball.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["a85d3bb5c7e14a8f87b073cb4498cd2e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["hoodie, ball, person", "throne, stairs, tree"], "captions_pred_pc": ["for a person standing in front of a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person wearing a hoodie royalty free 3d model preview no.2", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, island, resembles, hawaii", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a roof and beams."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, lake, pool", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["floor plan, ceiling light, color", "- material is wood, rusty, horned"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a house", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a stone knife.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["material is stone, blade is sharp, handle is wooden", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a yellow roof, wooden beams, and yellow frames.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["703dce44052e48cfb024bceb08141554", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, beams, frames", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a boat", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a wooden structure", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["Drawer, Pattern, White", "house, rock, bird"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d rendering of a house on a rock"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, rock, bird", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small house with a red roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "085db9059b744673b5623b5338e02196"], "properties": ["roof, color, blue", "roof, red, house"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "c3a82df41875402285608ef13a55df57"], "properties": ["building, floorplan, gym", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white building with two floors", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a large metal building with a roof and truss structure."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, hand, flowers", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a hand", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " of a wooden table and chair."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["table, staircase, light", "table, chair, wood"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a small wooden table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["building, roof, yellow", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["pattern, color, shape", "a, material, clay"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a mountain range in a mountainous area with a large green field and a small arrow.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["e80eca95874c4bffb8aec54044824d87", "96d127abd21049689918e671ec613ef8"], "properties": ["arrow, mountain, area", "axe, hammer, spoon"], "captions_pred_pc": ["a line with a square on it", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a mountain range royalty free 3d model no.", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a mountain range?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, red, blue, green", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a clay pot with holes in it."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["floor, wall, roof", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small house with stairs and a roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, grass, moss", "roof, stairs, house"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, roof, soup", "grass, plants, rocks"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large building with a roof and windows.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, windows, building", "island, mountain, grass"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, roof, wall", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a building", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a modern house"], "question": "which building has a pool", "label": 1}, {"captions": ["white 3d chair model", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["20885b58328b46b5b637ed9e8c3cc712", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, material, texture", "a, material, clay"], "captions_pred_pc": ["a black and white image of a pair of scissors and a pair of scissors", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a chair royalty free 3d model no 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, tail, cord", "color, background, white"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "an image of a white background with a few small cubes on it"], "question": "which object has a white background?", "label": 0}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "three white paper windmills and a city model with a nativity scene silhouette."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "fa5ee6165f31465d9d75d046818f4006"], "properties": ["color, light, jewels", "windmills, silhouette, city model"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white photo of a pair of sunglasses"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a cityscape on a white background"], "question": "which entity has a silhouette?", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, material", "resembles, toy, castle"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, bird, lake", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["headboard, wall, strip", "house, table, chair"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, roof, wooden", "water, boat, rock"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a small barn", "a 3d image of an animal laying on the ground"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a large metal building with a roof and truss structure."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "b85a99699ccd4bcba213322113bb253d"], "properties": ["lighthouse, fountain, crater", "roof, truss, structure"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "a17477b445b3443189dad22f768b888b"], "properties": ["color, helmet, airplane wing", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d printed model of white and red robots on a red platform.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0fa560c2fd9f4422a97356c947ac3b46", "a17477b445b3443189dad22f768b888b"], "properties": ["color, red, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a person sitting on a bench", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a robot standing on top of a table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building with wooden and steel structures, featuring stairs, railings, and a ceiling with numerous pipes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["26c47880756b4876b4f263373c3c5303", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, material, steel", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a large structure with multiple levels", "a 3d rendering of white clouds floating in the air"], "question": "which building has a room?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["s, chimpanzee, human, wolf", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a wooden roof structure with a pink roof."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["boxing gloves, heart, hand", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a pink coffee mug with a white handle and lid, featuring white foam or icing on top.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f50ca961cbcc4182a6f10074943d63c4", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, handle, lid", "a, material, clay"], "captions_pred_pc": ["a black and white image of a coffee mug on a white background a black and white image of a coffee mug on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a coffee mug royalty free 3d model preview no.1", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "db74ee1621464be1b164be26a1af050e"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "window, arches, wall"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of an old brick wall"], "question": "which entity is made of stone", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["- material is stone - shape is bat", "house, fence, dog"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["building, color, black and white", "roof, color, yellow"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a house with a roof"], "question": "which building is yellow", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, door, suitcase", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a wooden windmill with a red roof."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["a lamp, a syringe, a light pole", "roof, color, red"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a green circuit board."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, wheel, helmet", "color, green, circuit board"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "of the item in the image"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of an electronic component"], "question": "which object is green?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["chair, table, refrigerator", "island, mountain, grass"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["green dumbbell ", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["aa60a69aca52432cb21610862e7d4e35", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color is green, shape is dumbbell, material is metal", "hat, candy, strawberry"], "captions_pred_pc": ["for the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 2018 the little mermaid 20", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a dumbbell royalty free 3d model", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["resembles, toy, bookshelf", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["bird, nest, wood", "throne, stairs, tree"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["orange, forklift, parking lot", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a box with a lot of items inside"], "question": "which has more rooms", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["hat, cup, bowl", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["furniture, room, kitchen", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a large metal building with a roof and truss structure."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, railing, black", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a computer screen", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a long metal fence"], "question": "which structure has a roof and truss?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a spider-like creature with long arms and legs."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["desk, chair, table", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a wooden barrel."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "77ceb4db6ddc4a6c8c4a83ab1519e78b"], "properties": ["color, white, black, white", "material is wood, shape is barrel, color is brown"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a gray and white barrel"], "question": "which object is made of wood", "label": 1}, {"captions": ["a drawing of a bird, fish, and white-blue dragon with a tail.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7136a3a6819e49e4b855f45fa1e2cded", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["animal, tail, white-blue", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a white and black bird flying in the sky stock illustration \u00a9 2019 iStock", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["an illustration of a bird with its wings outstretched on a gray background", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a green mountain with trees and grass."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["table, bench, deer", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large orange keg with a white lid.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, lid, orange", "a, material, clay"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a small white building with stairs and a lid."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["house, lake, pool", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small white building with a floor plan and ceiling light."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "1df55bb7035941cc9829aa904e2af065"], "properties": ["floor plan, ceiling light, color", "floor plan, ceiling light, color"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a line of dots on a white background a line of dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a house", "a white 3d model of a house"], "question": "which building has a floor plan with a ceiling light?", "label": 0}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, white, logo", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white image of a suitcase on wheels"], "question": "which entity is a suitcase?", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, white, handle", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a small wooden house with a roof.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["roof, house, wooden", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["mossy, rock, grass", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["variation, bread, pot", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a wooden shed with a gray roof."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["table, stairs, ladder", "roof, color, gray"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "990f06da2ba4488da8371f68da6b4523"], "properties": ["color, white, yellow, roof, metal", "roof truss, beams, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a rusted metal barrel with a yellow and red warning sign and stripe on it.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5a49ad82ef7a4d33badea2261720f518", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["rusty, warning, metal", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a barrel", "a black and white photograph of a barrel"], "question": "which entity is a barrel?", "label": 0}, {"captions": [" a small white building with stairs and shelves.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "09f2cf267e954c958828325067bcc36a"], "properties": ["building, stairs, shelves", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a white 3d model of a building with stairs", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, pink, green", "house, fence, playground"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["color, grass, moss", "roof, truss, lamp"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a metal roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["low poly of a christmas tree", " a city with buildings, houses, trees, and grass."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["low poly, christmas, tree", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a small, round object", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, brown, flat", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white slalom canoe.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["e261ca625e0e4cac947888d5dd8ec7aa", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["for a black and white photo of a person wearing a mask", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white canoe on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["ring, material, gold", "gold, ring, animal"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a small house with stairs and a roof."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["blue, lid, handle", "roof, stairs, house"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a building?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a green circuit board."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, pier, railings", "color, green, circuit board"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "of the item in the image"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", "star wars stormtrooper "], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, letter", "a, color, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a barrel and a cube together.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a, barrel, cube", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a 3d model of a house in the middle of a field"], "question": "which object is on a hill?", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["854757ca755240f8b04576d899349151", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["cabinet, room, shelf", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a hill?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "68cf560d0c424ec6a3c58e1b9967508d"], "properties": ["color, light, jewels", "hair, legs, wings"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a white and black bird flying in front of a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a woman with a large spider-like creature on her back"], "question": "which entity has more legs", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "b896a0898efe4059a776193c02132129"], "properties": ["color, door, window", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a green bush with tree-like leaves.", " of a small white building with stairs and a lid."], "sample_ids": ["cb91cb6149a142a8a196a268dcf36aa8", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["leaf, color, shape", "building, stairs, lid"], "captions_pred_pc": ["a black and white dots on a white background a black and white dots on a white background stock illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 360 degree view of a bushy plant on a gray background royalty free 360 degree view of a bushy plant on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small purple plastic chair with holes."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["Drawer, Handle, Wood", "color, plastic, purple"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" of a wheeled hospital bed", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["40aa2ee15441439eb326c4abfcf4cd00", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["wheeled, bed, hospital", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a rectangular shawl", "a black and white drawing of a cell phone"], "captions_pred_image": ["a hospital bed royalty-free 3d model - no 3", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["color, tan, brown, orange", "house, building, people"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a small town in the middle of a field"], "question": "which entity does not feature houses", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["cover, torn, open", "house, fence, dog"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a black and white image of a torn bank note", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["room, bed, desk", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["desk, chair, lamp", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a large metal building with a roof and truss structure."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, style, pixel", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "of a metal grate on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white house with a staircase and a window."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "9eb88d17310d42dda9e17883e9922525"], "properties": ["house, door, cross", "house, staircase, window"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a house", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a building with blue metal framing and structure."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["- material is white- color is white- texture is textured", "color, blue, structure"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a building under construction"], "question": "which building is blue?", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a wooden roof structure with a pink roof."], "sample_ids": ["44723e86bdd14071b0544745879604de", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["resembles, bar, soap", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a yellow and blue toy submarine."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["roof, stairs, house", "color, yellow, blue"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a submarine toy"], "question": "which object is blue?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "b896a0898efe4059a776193c02132129"], "properties": ["moss, mushroom, grass", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, red", "roof, color, green"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, table, blocks", "lamp, harp, bowl"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a small black box on a purple square.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["75f209e543c046669099190953616acc", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["a black and white image of the letter l", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, text", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a screw", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["ceiling, light, desks", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, frame, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color yellow", "label": 1}, {"captions": [" of a black gun.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, black, gun", "color, white, plastic"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["floor plan, heating system, ceiling light fixture", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, tan, brown, orange", "a, island, resembles, hawaii"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity is a painting?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, green, squirt gun", "torso, breasts, pattern"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a metal building with a purple roof and cage structure."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["roof, trusses, beams", "roof, purple, structure"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a metal roof"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a house with a wooden-framed roof structure."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["wall, stairs, castle", "roof, material, wood"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building with a roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a wooden-framed roof structure."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, truss, lamp", "roof, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["color, material, pattern", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, white, black, white", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, structure, house", "roof, trusses, beams"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a roof structure"], "question": "which structure has a roof", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["arm, light, sign", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of a skateboard", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["mannequin head, plague mask, straps", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "97e000ff41094665afd94ea565da8b13"], "properties": ["Drawer, Pattern, White", "roof, material, wood"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["size, color, design", "roof, trusses, beams"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "b896a0898efe4059a776193c02132129"], "properties": ["color, eye, handle", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a room", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["building, floorplan, gym", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " of a small white building with stairs and a lid."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["Headstock, Guitar, Head", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a small purple plastic chair with holes."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, head, bowl", "color, plastic, purple"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["roof, purple, suspended", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" a mouse wearing a top hat and a teddy bear holding a spoon.", "a white of a man with arms outstretched."], "sample_ids": ["887e410d07854396b563325ae1929583", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["hat, mouse, bear", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a mouse wearing a top hat and bow tie", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a white of a woman with her arms outstretched."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["Arms, Legs, Color", "image, color, white"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman with her arms outstretched?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, fence, snowy", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a robot head with a helmet.", " a beige bottle, teddy bear, and head."], "sample_ids": ["55ccc07cea0640788d42448bc6559087", "f2fcfd53946e48f59c7bfd992ef658b1"], "properties": ["helmet, head, robot", "beige, head, bottle"], "captions_pred_pc": ["of a silver ring with black crystals", "a black and white image of a flower in the shape of a dandelion"], "captions_pred_image": ["a 3d model of a bust of a robot head royalty free 3d model preview no 2", "a 3d model of a light bulb royalty free 3d model preview no. 3"], "question": "which object has a head", "label": 1}, {"captions": [" a small silver camera with a lens.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["62829a25b4634d63a2ba2b0220335b3e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["lens, silver, camera", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a toothbrush on a white background stock illustration \u00a9 iStock/Getty Images", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a vintage camera royalty free 3d model preview no 3", "a sculpture of an african man sitting on a pedestal"], "question": "which object has a hat?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, white, background, gray", "a, material, clay"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a ruined building with broken windows, concrete, wood, and a rock."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "81ca2e13dab34e9eabb2e345780aedd2"], "properties": ["rusty, sink, graffiti", "building, material, rock"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a truck with dots all over it"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d image of a damaged piece of furniture"], "question": "which building is made of more materials", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- color is red, blue, pink", "lion, statue, fountain"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a metal object"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, pattern, material", "color, shape, color"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, red, blue, green", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["- material is wood, metal, metal", "hat, skull, bread"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, desk, laptop", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a gray, metal pillar/cylinder."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is wood - color is white - height is 1.8 m", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["an illustration of a barbed wire fence", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a wooden roof structure with a pink roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, orange, white", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a blue roof."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["house, lake, pool", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, white, red, pink", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d printed figurine of an alien creature"], "question": "which image is white", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a small purple plastic chair with holes."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- material is wood - color is white - height is 1.8 m", "color, plastic, purple"], "captions_pred_pc": ["an illustration of a barbed wire fence", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white of a helmet and airplane wing.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["17f3bb7773ef4b2ea76134896b105fbf", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, helmet, airplane wing", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a person's head with dots all over it", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white helmet on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is metal- color is silver- texture is textured", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a house with a wooden-framed roof structure."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["floor plan, ceiling light, color", "roof, material, wood"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a building with a roof"], "question": "which entity has a wooden-framed roof structure", "label": 1}, {"captions": [" a blue and white rifle with a blue handle.", "a white of a woman with her arms outstretched."], "sample_ids": ["c0fd39c5633a4bfc8eae7b88bd667ce4", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, blue, white, handle", "image, color, white"], "captions_pred_pc": ["a black and white image of a needle on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white 3d model of a gun", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a featuring multiple animal heads, including a fox, chihuahua, and cat with ears."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "f37b1515c52248d887b9b415576f5253"], "properties": ["color, light, jewels", "animal, head, fox, chihuahua, cat"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a butterfly shaped object"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a fox's head"], "question": "which entity has more animal heads", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a building with yellow lines."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, blue", "color, yellow, lines"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, gun", "color is white, yellow, plastic"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, red, green, yellow", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" a large stone buddha statue atop a rock, on a monumental pillar.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["478ab30e64cd4dbc8fa09ba76f5b95cb", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["buddha, rock, pillar", "meat, bread, sausage"], "captions_pred_pc": ["above a black and white illustration of a tombstone", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3", "an image of a small white object on a gray background"], "question": "which object is on a stick?", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["liquid, ice, lid", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a small wooden house with a roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, stairs, house", "roof, house, wooden"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a stone wall featuring carvings and statues."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- material is wood, rusty, horned", "carving, statue, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d image of a group of statues on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["door, roof, pool", "house, fence, playground"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house with a blue roof."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "7407a108e0354925b83b750339bc03df"], "properties": ["building, stairs, shelves", "platform, color, orange"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a platform?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["screen, keyboard, box", "roof, structure, greenhouse"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, base, warning", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a spiral staircase with railings."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["background, color, white", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["room, furniture, window", "room, furniture, window"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d image of a room with a person in it"], "question": "which entity has a damaged room with destroyed furniture", "label": 0}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a green mountain with trees and grass."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["hat, food, bowl", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["roof, color, pink", "color, white, gold"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a standing mirror on a white background"], "question": "which object has a white and gold color scheme?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["broom, shovel, fireplace", "tv, chair, laptop"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, roof, soup", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["white ferris wheel ", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["84267382977845f190cdc740e4977f43", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color is white, wheel is ferris, color is white", "rusty, hat, dartboard"], "captions_pred_pc": ["of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white background 3d illustration of a ferris wheel on a white", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a ferris wheel royalty free 3d model preview no.2", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which object is not a ferris wheel?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["house, lake, pool", "building, plane, city"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a city in black and white"], "question": "which entity has a plane flying over it", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a pixelated eagle with a yellow and white head and yellow beak."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "9ce77b4cc05c4060a74b8f2568e6bbe8"], "properties": ["color, light, jewels", "eagle, head, beak"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d image of a penguin in a pixelated world"], "question": "which entity has a yellow beak", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small white building with stairs and a white table."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "e30374c614f54fdb90f35b96b071349d"], "properties": ["turrets, flags, towers", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "97e000ff41094665afd94ea565da8b13"], "properties": ["mossy, rock, grass", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white of a spaceship and building.", " a wooden shed with a gray roof."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["image, building, spaceship", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "09f2cf267e954c958828325067bcc36a"], "properties": ["runner, bed, bench", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a long, curved structure", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "bded33af34104b9686b845dfd18309a9"], "properties": ["roof, color, blue", "table, staircase, light"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["texture, spikes, eyes", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a four-legged metal workbench with shelves."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["graffiti, bench, wall", "Four legs, Metal, Shelf"], "captions_pred_pc": ["for a black and white image of a boat", "for a black and white illustration of a cross"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small silver handgun.", " a black and white striped box."], "sample_ids": ["107a70cd0305435e8d38c08bcf0a7483", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["size, color, material", "color, black, white"], "captions_pred_pc": ["a black and white illustration of a sock on a white background royalty free illustration", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a hand-held device on a white background", "a 3d image of a black and white striped surface"], "question": "which object is made of black and white?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, shape, height", "wood, board, shelf"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a futuristic white sports racing car."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["roof, structure, truss", "color, white, futuristic"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a futuristic sports car"], "question": "which entity is not a brick building?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "b896a0898efe4059a776193c02132129"], "properties": ["screen, keyboard, box", "- material is stone, metal, concrete"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "6b745457e06840119058883b35f78f58"], "properties": ["houses, trees, road", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["hat, shirt, bearded", "torso, breasts, pattern"], "captions_pred_pc": ["of a black and white bracelet on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, table, blocks", "throne, stairs, tree"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "bf18bfd89efd43389781050230467d58"], "properties": ["water, river, island", "Lights, number, five"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a white, labeled stone resembling a block of ice, bar of soap, or rock."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "44723e86bdd14071b0544745879604de"], "properties": ["shape is cylinder, color is white, material is plastic", "resembles, bar, soap"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a house with a wooden-framed roof structure."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["resembles, toy, bookshelf", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "c3a82df41875402285608ef13a55df57"], "properties": ["background, color, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black line on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["floor plan, heating system, ceiling light fixture", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a house", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["building, stairs, shelves", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white house with a roof.", " a large steel building with many columns and a pool."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["roof, color, white", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["color, material, structure", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a wooden truss and ceiling with a light", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a gray, metal pillar/cylinder."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color, material, shape", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a glittering object", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, silver, white", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a white motorcycle with wings."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, orange, white", "color, white, wings"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a potted christmas pine tree."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["lighthouse, fountain, crater", "a, color, green"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "97e000ff41094665afd94ea565da8b13"], "properties": ["room, bed, desk", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a small white building with stairs and a white table."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "e30374c614f54fdb90f35b96b071349d"], "properties": ["shape is cylindrical, color is silver, material is metal", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a cone shaped object", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a building with a staircase"], "question": "which object is white", "label": 1}, {"captions": [" a blue character with arms outstretched.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a white sofa, chair, and box."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "4c59733ebd634594a921b7ace60e4142"], "properties": ["roof, air conditioner, house", "sofa, chair, box"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a white chair"], "question": "which object is not a part of a house", "label": 1}, {"captions": [" of a house with a roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["195ce38d57164eb588d19f8bd337f36e", "b896a0898efe4059a776193c02132129"], "properties": ["roof, house, roof", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a toilet on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a small house royalty free 3d model preview no 2", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house with a roof and beams."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, color, yellow", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a building with a roof"], "question": "which roof is made of beams", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, shape, material", "color, silver, white"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["building, roof, white, cubes", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, white, gold", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "6b745457e06840119058883b35f78f58"], "properties": ["blue tarp, flower, small island", "roof, color, blue"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["backrest, curved, yes", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small white house with a roof."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, white, furniture, black", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a house with a wooden-framed roof structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["yellow, table, roof", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4ccf1ee1316e4a2b8f52e77e126a68c0", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, house, material", "house, fence, playground"], "captions_pred_pc": ["a close-up view of the crystal chandelier on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, handle, zipper", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a small yellow and black helicopter flying in the air."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "7qxP6dQ5nNuaG8d0vswXXKnd0vq"], "properties": ["building, tree, plane", "color, yellow, black"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of an airplane"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white helicopter flying in the air"], "question": "which object is black and yellow?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a person jumping on a trampoline."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "0645ba982cf341ada1727df06f42a8e1"], "properties": ["shape is cylindrical, color is silver, material is metal", "person, jumping, trampoline"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white diamond belt"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "jumping on a trampoline royalty free 3d model preview no 2"], "question": "which object is more likely to be used for jumping", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["mossy, rock, rocky", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a train, a ship, a boat", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "97e000ff41094665afd94ea565da8b13"], "properties": ["s, plane, house", "roof, material, wood"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, pattern, wall", "color, pattern, word"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a beaded necklace with the word banned on it"], "question": "which entity has a pattern that is a word?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "b896a0898efe4059a776193c02132129"], "properties": ["rusty, sink, graffiti", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" various fruits and vegetables.", " a wooden billiard table with legs."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, size", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a24872444e5c468a9264d503a9ca7276"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a box, a cup, a bottle, a jar", "house, rock, bird"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a female character in a white outfit."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "5f5a316aedfa479887d61a105f3896ad"], "properties": ["color, horns, features", "outfit, color, white"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "the image is a black and white photo of a woman"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a female character"], "question": "which entity is a female character?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a potted plant on a wooden table or shelf."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["a, desk, laptop", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a black and white image of a plant in a pot"], "question": "which object is on a wooden surface?", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, tail, cord", "house, fence, playground"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a clear glass display case with a square light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["980ded888795417f94b46750105e1597", "c3a82df41875402285608ef13a55df57"], "properties": ["light, fixture, square", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a room with dots on the floor", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a clear plastic box", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "c3a82df41875402285608ef13a55df57"], "properties": ["house, fence, playground", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["house, roof, green", "rusty, warning, metal"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["color, table, sphere", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a hammer with a long metal handle."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["Drawer, Pattern, White", "handle, metal, long"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a wooden staircase with a railing and table."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "956247bea850458199c651037d4b1d7f"], "properties": ["floor plan, bathroom, pool", "railing, table, staircase"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a table with a staircase"], "question": "which staircase has a table", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a house with a roof and beams."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a, booth, bed", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a white castle composed of small cubes."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, truss, suspended ceiling", "composed of, white, cubes"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", " a house with wooden framing and trusses."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["frame, chalkboard, color", "frame, trusses, wood"], "captions_pred_pc": ["of a black and white image of a television on a wall", "a black and white drawing of a window"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a 3d model of a house under construction"], "question": "which frame is made of wood", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["a, island, resembles, hawaii", "color, shape, color"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "5414d75e47104589837f3df8b6de6d22"], "properties": ["building, balcony, street", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an old building", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is not a building?", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, hat, handle", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a hat?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["- color is red, blue, pink", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "97e000ff41094665afd94ea565da8b13"], "properties": ["balcony, stairs, house", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a wooden billiard table with legs."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["resembles, toy, bookshelf", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": ["a wooden-cased radio.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["case, material, wood", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a large metal building with a roof and truss structure."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["door, stairs, color", "roof, truss, structure"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, air conditioner, house", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, truss, structure", "roof, material, wood"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, light, jewels", "mountainous, landmass, state"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, holes", "striped, white, black"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a white bench with a shelf on top", "a 3d model of a stack of books"], "question": "which object is white", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a house with a roof and beams."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, material, texture", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a spider's head", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the same color as the poles?", "label": 1}, {"captions": [" a celtic stone cross.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["- material is stone- shape is cross- color is black", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["screen, lens, color", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "white ceramic urn with a red lid."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["a box, a cup, a bottle, a jar", "color, white, lid, red"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, color, yellow", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small white building with stairs and shelves."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "9e1f64d4fd514059be934077717536dc"], "properties": ["building, roof, white, cubes", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a camera with a blue screen and lens.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "1da865c75a5e4a57a17652975dae5474"], "properties": ["screen, lens, color", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, skyline, buildings", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["house, roof, blue", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of the roof of a building"], "question": "which house has a ladder?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a potted christmas pine tree."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["building, fence, snowy", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a small wooden house."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a cross", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building on a white surface", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small house on a hill in a field."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["room, house, windows", "house, hill, field"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["water, river, island", "moss, mushroom, grass"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "c3a82df41875402285608ef13a55df57"], "properties": ["mountain, grass, tree", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["red, pile, garbage", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of a triangle", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["color, blue, green, yellow, blue", "house, roof, green"], "captions_pred_pc": ["a pair of sneakers on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white sight device.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["02e64f4820ca4719bace985bed1ead5d", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["white, sight, device", "striped, white, black"], "captions_pred_pc": ["a black and white drawing of a camera royalty free illustration", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a stack of books"], "question": "which object is white", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " a house with a roof and beams."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, pink, green, cord, white", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a building with a roof"], "question": "which object has a roof and beams", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, shape, pattern", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d image of a white tray with an intricate design"], "question": "which object is a tray?", "label": 1}, {"captions": [" a small white barn with a metal roof.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["roof, metal, white", "color, green, squirt gun"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is not a barn?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "star wars stormtrooper "], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, light", "a, color, white"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["4389909667db472ea9a57a70eb940fa4", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["building, window, skeleton", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white photo of a person's reflection in a mirror", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a small white building with stairs and a lid."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, booth, bed", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, yellow, black", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating island?", "label": 1}, {"captions": [" of a tree with leaves and roots.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["leaf, root, trunk", "color, head, white and brown"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a house with wooden framing and trusses."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["design, poles, table", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, skyline, buildings", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, roof, wall", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["resembles, octopus, squid, spider, robot", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has more robots", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small white house with windows and a black lid."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, white, containers", "white, windows, lid"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a white house with three windows"], "question": "which entity has more windows", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, tree, rock", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a large house with a roof on a platform."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, trusses, ladder", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["floor plan, heating system, ceiling light fixture", "mossy, rock, rocky"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which entity is not a house?", "label": 0}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["bed, desk, window", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is purple, material is plastic, number of legs is four", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white image of a baby carrier", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic chair", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white 3d-printed ring featuring a fish design and the word \"defia,\" accompanied by a white pen and logo.", " a wooden roof structure with a pink roof."], "sample_ids": ["9a15d8285e614fb4b7d1cb7076a7b56a", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, white, pen, logo", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white image of a metal grate"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["shape is box, color is white, door is present", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a white of a small archway gate.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "205251e4277e41d1aae6b2358267ad56"], "properties": ["image, color, white", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a white arch", "a 3d printed figurine of an alien creature"], "question": "which image is of a man in a suit and mask", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a metal tool with a yellow handle, a laptop, and a ceiling light fixture."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "b714bf13e9e54acb867c2c1b3ccf8ae8"], "properties": ["background, color, white", "metal, laptop, light fixture"], "captions_pred_pc": ["a black line on a white background", "for a black and white image of a corner shelf"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a telescope on a stand"], "question": "which entity has a light fixture", "label": 1}, {"captions": ["a 3d lego character wearing a black helmet, gloves, and holding a gun.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f71842519d2f44ceb9fa57e0c0db4aa0", "c3a82df41875402285608ef13a55df57"], "properties": ["- color is black- material is plastic- shape is 3d", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a lego ninja turtle wearing a black helmet and gloves", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "f1b557775310478893242180defa4d80"], "properties": ["roof, air conditioner, house", "shack, roof, door"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color is white, material is plastic, shape is tube", "blue, curved, resembles"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a white object on a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " of a house with a pink roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "6162909df6294848a8eea83c3aa9585b"], "properties": ["frame, truss, roof", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, and material", "building, room, sky"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d rendering of white clouds floating in the air"], "question": "which entity has more clouds floating in the sky", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e36ba9c060cd49f48a0acc1790fcf049"], "properties": ["color, shape, and size", "resembles, toy, bookshelf"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a book cover"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a wooden display stand with six cups on it"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["house, tree, pool", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " of a small white building with stairs and a lid."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, material, texture", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a spider's head", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["two-story, roof, building", "a, building, roof"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "d81d13362ae04371bb2cba46e4939665"], "properties": ["house, lake, pool", "hat, bow, arrow"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a large building", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a small triangular-shaped object."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, white, material, ceramic", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white image of a piece of metal"], "captions_pred_image": ["a white vase on a grey background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "6b745457e06840119058883b35f78f58"], "properties": ["color, horns, features", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a house with a green, wooden-structured roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "cafc467aff2643e8b70149c4944263ee"], "properties": ["buildings, houses, grass", "wing, knife, boat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black umbrella on a white background"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a wing?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "09f2cf267e954c958828325067bcc36a"], "properties": ["house, fence, dog", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a white building with a red roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, staircase, window", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a wooden table with a plant on it."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["house, fence, playground", "table, plant, wood"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, green, orange, star", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a cone shaped object"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "4e82177059204292899fa7415164a05e"], "properties": ["roof, green, tiled", "yellow, tires, load"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "9968e06a62e8487ea33460e640abc573"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large stone buddha statue atop a rock, on a monumental pillar.", " of two rocks with ice elements."], "sample_ids": ["478ab30e64cd4dbc8fa09ba76f5b95cb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["buddha, rock, pillar", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a tombstone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a small off-road toy vehicle with wheels.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["7ef2589539b84054b2185633112825cc", "d49d8ed244094349a99e4faca05e0690"], "properties": ["wheel, toy, vehicle", "low poly, plant, white"], "captions_pred_pc": ["of a black and white photo of a cross on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dune buggy royalty free 3d model preview no 3", "a 3d model of a plant growing out of a rock"], "question": "which object is a low poly of a plant on?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["fireplace, bench, log", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a box titled \"flower 3\" featuring an image of a woman surrounded by pink flowers.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["577e3ae91cc74b25ab95c5f53728a54b", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["Title, Image, Color", "gold, ring, animal"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a 3d rendered image of a box with a woman's face on it", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a red mushroom on top of various piles, including dirt, leaves, wood, and garbage."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "21d3bd3978f74308a312b4379e665dbd"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "red, pile, garbage"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white illustration of a triangle"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a mushroom in a pile of leaves"], "question": "which entity has a pile of garbage?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a house with a flat roof structure."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, pier, railings", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, red, blue, green", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["Object, Table, Oranges", "table, structure, roof"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": [" a pink and green pendant light with a white cord, hanging from the ceiling.", " of a small white building with stairs and a lid."], "sample_ids": ["e0b17ec2e4b040a384ed0ade8da99c70", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, pink, green, cord, white", "building, stairs, lid"], "captions_pred_pc": ["for a black and white image of a small black circle on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a gray and white pendant light hanging from the ceiling", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "white 3d paper airplane map model"], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "85b15741a9cb4e0bbb859f1319ac4b5b"], "properties": ["- material is plastic- shape is dice- color is white", "color is white, material is paper, shape is airplane"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "black glitter africa map on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of the state of new york"], "question": "which object is made of paper", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["description, material, shape", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "an image of a white background with a few small cubes on it"], "question": "which entity is a solid color?", "label": 0}, {"captions": [" of a green pickle", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is green, shape is cylinder, material is plastic", "mountainous, landmass, state"], "captions_pred_pc": ["of a black object on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["turrets, flags, towers", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, roof, tray", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small house with a spiral staircase"], "question": "which house has a white table?", "label": 1}, {"captions": [" of a large gray sphere", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "127753bf17de4252aaa7ea88f274545e"], "properties": ["size, color, shape", "face, mask, tail"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white and blue building with a black roof."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, shape, and size", "color, white, blue, roof, black"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a large white and metal building with a metal roof structure."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, rock, pond", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1d1328346a464d2482463d6d5288e934"], "properties": ["color, door, window", "painting, door, wall"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, white, black, white", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, stairs, house", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a 3d pixelated minecraft model of a small city with buildings, trees, and a village.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["36fedf68eee24461886fb8d4a38eea00", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["pixelated, model, village", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a snowflake in the shape of a virus 3d illustration a black and white illustration of a snowflake in the shape of a virus royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a futuristic city", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, background, gray", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white photograph of an object", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- color is white- shape is cubes- number is 1", "- material is wood, rusty, horned"], "captions_pred_pc": ["a close up of a black and white striped scarf", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, door, suitcase", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small orange piano with legs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "c3a82df41875402285608ef13a55df57"], "properties": ["color is orange, size is small, legs", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["structure, roof, pitch", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof with a ceiling mounted air conditioner", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of two rocks with ice elements."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, wall, roof", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a blue and yellow striped fish.", "star wars stormtrooper "], "sample_ids": ["c534e37656024a9fba79be2c4386d626", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, stripe, blue, yellow", "a, color, white"], "captions_pred_pc": ["of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3d illustration of a fish on a white background 3", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a fish", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" featuring a refrigerator, bowl, donut, ball, cup, box, container, and cat.", " of two rocks with ice elements."], "sample_ids": ["c553ba67fa914165a07a1f1d20581f19", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["cat, bowl, donut", "image is a rock with ice elements"], "captions_pred_pc": ["a close up view of the back of the chair", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a toothbrush, toothpaste, and toothbrush holder in a bathroom setting", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["roof, windows, building", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which building has a roof", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", "a white glass beer mug."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, red, green, blue", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d lego character wearing a black helmet, gloves, and holding a gun.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["f71842519d2f44ceb9fa57e0c0db4aa0", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- color is black- material is plastic- shape is 3d", "box, handle, gun"], "captions_pred_pc": ["a sculpture in the form of a skull made of silver dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white square with dots on a white background"], "captions_pred_image": ["a lego ninja turtle wearing a black helmet and gloves", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "house, rock, bird"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, shape, material", "water, boat, rock"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d image of an animal laying on the ground"], "question": "which rock is in the water?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", "a white of a woman with her arms outstretched."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, pier, stairway", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["bedside table, wheels, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, shape, and material", "roof, trusses, beams"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a blue ford escort car.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, blue, ford escort", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["of a black leather bracelet on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, shape, light", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " a small white building with stairs and a white table."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "e30374c614f54fdb90f35b96b071349d"], "properties": ["a, building, coin, ball", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, tan, brown, orange", "a, color, white"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a desk and chair"], "question": "which object is white?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, white, red, pink", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d image of a room with a person in it"], "question": "which entity has a window?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["graffiti, chinese writing, door", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of an empty room"], "question": "which building has a door with a shelf?", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a house with a green, wooden-structured roof."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["furniture, staircase, torn-apart", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a multicolored metal building structure with a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, structure, wall", "color, roof, structure"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a white building with a red roof."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["- material is white- color is white- texture is textured", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["yellow metal barricade ", "a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "7da804ad2b554c9a9915d775afb015d3"], "properties": ["color is yellow, material is metal, height is 0.5 m", "desk, chair, lamp"], "captions_pred_pc": ["a white barrier on a white background", "a black and white illustration of a city skyline"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d rendering of a desk and chair in a room"], "question": "which entity is not a phone booth?", "label": 0}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a spider-like creature with long arms and legs."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["boat, table, chairs, umbrella, solar panel", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["frame, roof, trusses", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a white sofa, chair, and box."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "4c59733ebd634594a921b7ace60e4142"], "properties": ["a, door, suitcase", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a small white building with stairs and a lid."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a, head, mask", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a person's head", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a white, labeled stone resembling a block of ice, bar of soap, or rock.", " a potted christmas pine tree."], "sample_ids": ["44723e86bdd14071b0544745879604de", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["resembles, bar, soap", "a, color, green"], "captions_pred_pc": ["a black and white image of a piece of paper with dots on it", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["mountain, grass, tree", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a wooden roof structure with a pink roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["frame, roof, trusses", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", "a white of a man with arms outstretched."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, texture", "image, color, white"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a bearded man wearing a green shirt and a hat.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["1e4e5e8133ae48c797facaec724c13a5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hat, shirt, bearded", "island, terrain, water"], "captions_pred_pc": ["of a black and white bracelet on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a man with a beard", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " a small house with a pond and situated on a rock."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "92859eb82a344134806b37cc209927c6"], "properties": ["fireplace, bench, log", "house, rock, pond"], "captions_pred_pc": ["a black and white illustration of a snowflake", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a house in the middle of a field"], "question": "which entity has a pond?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e34088fc7b5344c4ab29fef067750225"], "properties": ["hat, sword, gun", "sphere, pedestal, statue"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a statue?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["house, plane, town", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a character wearing glasses and a hat."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, screen, drawer", "hat, glasses, character"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a house with a blue roof.", " a white building with a red roof."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, blue", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", "a white of a woman with her arms outstretched."], "sample_ids": ["40921ffd69db479294554d261daf3035", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["floor, railing, staircase", "image, color, white"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a white and blue building with a black roof."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, yellow, chimney", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["color, temperature, england", "cup, bottle, chessboard"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which entity has a chessboard?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " three differently colored wooden cubes with holographic patterns and a light inside one cube."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1be0870f6d324089a3e3b60a029df6f8"], "properties": ["color, shape, and size", "color, material, shape"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "of a set of 3 black ceramic tiles on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of three cubes on a white background"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "white of a rhino head with horns."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "8481aade84de47cab1a9accf8067e678"], "properties": ["building, roof, white, cubes", "image, rhino, head"], "captions_pred_pc": ["above a black and white image of a map", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a city on a white background", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["shattered, resembles, broken phone", "house, yard, surrounding buildings"], "captions_pred_pc": ["for black ink brush strokes on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "c8936ace72954650b4e2d84246964849"], "properties": ["house, rock, pond", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color pink", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a wooden shed with a gray roof."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, ceiling, hole", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "bf18bfd89efd43389781050230467d58"], "properties": ["color, material, shape", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" of a wooden shelf featuring a laptop, sand dune, and ceiling with holes.", " of a wine corkscrew"], "sample_ids": ["6192773417e04fa49d2bf8b9eed20640", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["image is a shelf, laptop, sand dune", "a, type, corkscrew"], "captions_pred_pc": ["above a black and white image of a person sitting on a bench", "a black and white image of a corkscrew"], "captions_pred_image": ["a white 3d model of a city skyline", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, dress, flower", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["ceiling, light, desks", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d rendering of a small white table with a chair"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["variation, bread, pot", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a large metal building with a roof and truss structure."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, furniture, black", "roof, truss, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a long metal fence"], "question": "which building has a roof and truss structure", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "97e000ff41094665afd94ea565da8b13"], "properties": ["shape is box, color is white, door is present", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of the roof of a building"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", "a white of a spaceship and building."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, red, blue, green", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a white object on a gray background"], "question": "which image shows a building and a spaceship?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, green, squirt gun", "roof, trusses, beams"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["ruined building, stone floor, small stone structure", "floor, stairs, bathroom"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["background, color, white", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "832a022cdcc74763b0571e04af4e592b"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a low poly 3d model of a rock", "a lego model of a futuristic airplane"], "question": "which entity is a spaceship?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "127753bf17de4252aaa7ea88f274545e"], "properties": ["- material is plastic- color is green- shape is box", "face, mask, tail"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": [" of a white round table with a red accent.", "a white of a woman with her arms outstretched."], "sample_ids": ["fea62a865b4e40899d95785533818329", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, red", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, white, plastic", "color is white, yellow, plastic"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a white plastic container with a label on it"], "question": "which container is made of plastic", "label": 1}, {"captions": ["a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["c516e491e5ee4313a4c06365ef13af3f", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["house, fence, playground", "roof, structure, suspended"], "captions_pred_pc": ["above a black and white drawing of an industrial machine", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a room with a lot of wires", "a 3d model of a house with a metal roof"], "question": "which house has a roof structure", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a wooden shed with a gray roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["runner, bed, bench", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["color, mattress, pillows", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["color, roof, tray", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which house has a suspended ceiling", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["d6087023095446fbadef1721478373b2", "bf18bfd89efd43389781050230467d58"], "properties": ["door, roof, window", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["boxing gloves, heart, hand", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of the human heart", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, door, suitcase", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["\"3d white flower, black and white tree and plant silhouettes, and heart with leaves\"", " of two rocks with ice elements."], "sample_ids": ["1ffbc9486bce4634ba09914be33af4e0", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, heart, leaves", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white drawing of a tree with branches", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral wreath on a grey background 3d model of a floral", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a white sofa, chair, and box."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "4c59733ebd634594a921b7ace60e4142"], "properties": ["ceiling, light, desks", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a building with yellow lines."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "f18e34286cf54876874f55ecc9018492"], "properties": ["base material is wood, color is red, message is welcome to northwich", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house with a blue roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, structure, truss", "roof, color, blue"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": [" various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["74d87b126e9d4d65839f4117de835ca7", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["lizard, rock, stuffed animal", "blue, yellow, frog"], "captions_pred_pc": ["a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a vehicle with wheels and tires", "a 3d model of a piece of furniture"], "question": "which entity has a frog on a cart?", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color, black, blue", "lion, statue, fountain"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white image of a metal object"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue of a lion?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " of a white human skull with broken bone elements."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, wheel, helmet", "color, white, skull"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a 3d model of a human skull in white"], "question": "which entity is not a human skull?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["- material is plastic- shape is dice- color is white", "roof structure, truss, ceiling"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, trusses, ladder", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a roof structure"], "question": "which roof structure has trusses and beams", "label": 1}, {"captions": ["a wooden-cased radio.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["case, material, wood", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with a roof"], "question": "which house has a brick wall?", "label": 1}, {"captions": [" a small black and white cube.", " of a wooden table with metal legs and frame."], "sample_ids": ["fa7e884d363847619f89f8ee21fa8742", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color, shape, size", "metal, legs, frame"], "captions_pred_pc": ["a black and white drawing of a city skyline", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a black and white cube on a gray surface", "a 3d rendering of a white wooden table"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["frame, truss, roof", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole", "label": 1}, {"captions": [" a small building with a roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, building, small", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, color, purple", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " of a character wearing glasses and a hat."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["green, hat, cream", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a pair of earrings", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a wooden shed with a gray roof."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, material", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a shed with a gray roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a white castle composed of small cubes."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["s, chimpanzee, human, wolf", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a white human skull with broken bone elements."], "sample_ids": ["97f487941d26472294e005fa97c403be", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, green", "color, white, skull"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, island, resembles, hawaii", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["house, roof, wooden", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["roof truss, insulation, suspended ceiling", "glass, metal, balls"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "a17477b445b3443189dad22f768b888b"], "properties": ["white, rock, shell", "roof, pillar, stairs"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, material", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a green mountain with trees and grass."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["balcony, stairs, house", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a mountain with snow on it"], "question": "which entity has grass", "label": 1}, {"captions": [" a white box with colored buttons on it.", " a small purple plastic chair with holes."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, material", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["backrest, curved, yes", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d printed green robot with two arms and two legs.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["04e3e8ce541e487b9e342570fe1b4eb2", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["color is green, material is 3d printed, number of limbs is 2", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a robot in the shape of a snowflake", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of a futuristic robot standing on its hind legs", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a low-poly of a white, shattered sphere."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["graffiti, bench, wall", "sphere, color, texture"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a cracked egg"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a tree and a rock.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "ee440fcbc493488e879539d37a8d820e"], "properties": ["house, tree, rock", "island, fish, ice"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "97e000ff41094665afd94ea565da8b13"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "roof, material, wood"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["hat, sword, gun", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a white box with a hole, a paper clip, and a lock.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["839e143bb1684aaa955f2c3e0cf4eef2", "b896a0898efe4059a776193c02132129"], "properties": ["box, paper clip, lock", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a clock in the shape of a spiral", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a stapler with a staple in it royalty free 3d model no.", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " of a white human skull with broken bone elements."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, pier, railings", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, orange, white", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, table, ceiling", "roof, brown, flat"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["80cc05e292b0437ba3189b68f6da0ca0", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["buddha, chair, design", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a cactus on a white background", "of a spike on a white background"], "captions_pred_image": ["3d model of a buddha statue royalty free 3d model preview no 3", "a 3d model of a paper airplane"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["black, white, laptop", "tv, chair, laptop"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small wooden house with a green roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, yard, surrounding buildings", "roof, color, green"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["eead0dd97023415da05c97df37337473", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, balloon, color, blue", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["- material is white- color is white- texture is textured", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a group of trees"], "question": "which entity has grass", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a blue roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, red, house", "roof, color, blue"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a small house with a road in front of it."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "9ff45258feba4c68bb279efeb829538f"], "properties": ["color, orange, leather", "house, front, road"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white drawing of a building"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a small house on a road"], "question": "which object has a road in front of it", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["flag, stand, color", "a, material, clay"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a banner on a stand", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a small, white ball", "a 3d rendering of a metal box with a handle"], "question": "which entity is made of metal", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a house with a wooden-framed roof structure."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- color is white- shape is cubes- number is 1", "roof, material, wood"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "9d03ee6c9fcc458e9485aa7cb0d1f4cb"], "properties": ["building, roof, white, cubes", "a, city, train"], "captions_pred_pc": ["above a black and white image of a map", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a toy train set on a table"], "question": "which city has a train track?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["castle, island, house", "table, bench, deer"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a large steel building with many columns and a pool."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["building, balcony, street", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["shape is cube, material is wood, color is white", "metal, legs, wheels"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, color, black and white", "roof, material, wood"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "db74ee1621464be1b164be26a1af050e"], "properties": ["floor, wall, roof", "window, arches, wall"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a spiral staircase with a railing in a small building."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a, ball, mushroom", "staircase, railing, building"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["background, color, white", "arrow, red, white"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a spiral staircase"], "question": "which entity has a white arrow?", "label": 1}, {"captions": [" an old castle in a grassy field.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["field, grass, castle", "mossy, rock, grass"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d model of a piece of wood on a white background"], "question": "which entity has grass", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a small wooden house with a green roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, color, purple", "roof, color, green"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "ee440fcbc493488e879539d37a8d820e"], "properties": ["- building is white, table is white, piles of paper are white", "island, fish, ice"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["roof, air conditioner, house", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white illustration of a window", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "12093c89a60941e7884b252bdc05104c"], "properties": ["house, roof, toothbrushes", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "5017581716c7402581a82ebf08d427a3"], "properties": ["blue, curved, resembles", "Shelf, color, white"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a small white archway structure resembling a building."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "5ad02458cf394134a902e25001d2ffef"], "properties": ["color, door, window", "structure, building, archway"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d rendering of a white object on a white surface"], "question": "which structure is a building?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "990f06da2ba4488da8371f68da6b4523"], "properties": ["windmills, silhouette, city model", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of a house with a wooden roof"], "question": "which entity has a roof truss structure?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, shape, material", "image, color, pink"], "captions_pred_pc": ["of a black and white drawing of a purse", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of an ipad stand with a small speaker and blue-white light on a cylindrical base."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e0694fef8e414d69a6a89cdffd212c86"], "properties": ["color, shape, and size", "base, speaker, light"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of a clock"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a tablet stand on a pedestal royalty-free 3d model"], "question": "which entity has a cylindrical base", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " of a person breaking through a brick wall."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["house, hill, forest", "image, brick, wall"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a black and white of a knife/sword with a handle."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, black, white", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, white, plastic", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of paper", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["Drawer, Pattern, White", "building, plane, room"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["d6087023095446fbadef1721478373b2", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["door, roof, window", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["desk, chair, lamp", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a city skyline", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["size, color, design", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white pattern on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pair of white 3d-printed crocodile clogs.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["67701617472e4051b95955c596561aac", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, white, 3d-printed", "gold, ring, animal"], "captions_pred_pc": ["a black and white photograph of a pair of shells", "above a black and white image of a shark"], "captions_pred_image": ["a pair of white plastic shoes on a gray background", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is not a ring?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a room, a cake, a table", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, green, tiled", "house, pool, balcony"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a wooden barrel."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "77ceb4db6ddc4a6c8c4a83ab1519e78b"], "properties": ["- material is plastic- color is white- shape is cube", "material is wood, shape is barrel, color is brown"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a gray and white barrel"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, dress, flower", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "a17477b445b3443189dad22f768b888b"], "properties": ["- material is white- color is white- texture is textured", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "97e000ff41094665afd94ea565da8b13"], "properties": ["variation, bread, pot", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["frame, beams, trusses", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " a green mountain with trees and grass."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a city, train, dragon", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a toy car", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "bb01282cb8b64470866260455b0b46fa"], "properties": ["shape is sphere, color is white, material is plastic", "liquid, ice, lid"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a plastic bottle on a white background"], "question": "which object is made of glass?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, white, containers", "house, lake, pool"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["boxing gloves, heart, hand", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["wheeled, cart, cannon", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a black and white image of a suitcase on wheels"], "question": "which object has wheels", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a clay pot with holes in it."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["water, river, island", "hole, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["bread, knife, board", "bread, knife, board"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a loaf of bread and a knife on a cutting board"], "question": "which entity has a slice of bread and knife on a cutting board?", "label": 0}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["hat, food, bowl", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "5017581716c7402581a82ebf08d427a3"], "properties": ["s, plane, house", "Shelf, color, white"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a white shelf"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, handle, zipper", "color, white, plastic"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, orange, white", "color, black, visor"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a black motorcycle helmet with a visor on top"], "question": "which object is black", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a black and white of a knife/sword with a handle."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- material is wood, metal, metal", "image, color, black and white"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a spiral staircase with a railing in a small building."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["a, desk, laptop", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a staircase in a white room"], "question": "which building has a staircase with a railing?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a set of three white shelves or ceiling panels with lines."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "ff6f8c2347ab4c17a2b3e319b205f191"], "properties": ["background, color, white", "set, white, lines"], "captions_pred_pc": ["a black line on a white background", "a set of black and white dots on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d illustration of a set of three white trays on a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "7407a108e0354925b83b750339bc03df"], "properties": ["color, white, pink, eyes", "platform, color, orange"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e80eca95874c4bffb8aec54044824d87"], "properties": ["color, shape, and size", "arrow, mountain, area"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a line with a square on it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a mountain range?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "9403cf50e8cb44c195b76afd89d0c9fb"], "properties": ["- material is white- color is white- texture is textured", "furniture, room, kitchen"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a room with dots all over it"], "captions_pred_image": ["a 3d model of a cube", "a 3d rendering of a room with a table, chairs, and shelves"], "question": "which entity is a room?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["color, white, red, pink", "building, balcony, street"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": [" a celtic stone cross.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is stone- shape is cross- color is black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "a2354f13774340d392fbf33564934aab"], "properties": ["sandbox, sand bucket, wooden blocks", "building, roof, yellow"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["flag, stand, color", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a banner on a stand", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a small white box with a shelf and a hole in it."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["color, yellow, black", "a, hole, shelf"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a white box on a gray background"], "question": "which object has a hole in it", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a wooden billiard table with legs."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- color is white- shape is cubes- number is 1", "legs, material, wood"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, white, blue", "color, white, gold"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a standing mirror on a white background"], "question": "which entity is a mirror?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["- color is white - shape is box - material is plastic", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a bench on a wooden floor"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "f1b557775310478893242180defa4d80"], "properties": ["ceiling, light, desks", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- color is white- shape is cubes- number is 1", "color is white, yellow, plastic"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["- color is red, blue, pink", "water, boat, rock"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, room, ceiling", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a small house and a tree in the foreground"], "question": "which house has a ceiling with a hole", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, text", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a screw", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["floor, wall, roof", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color, blue, rim, blue", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a white bowl on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, material, texture", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["house, hill, forest", "a, color, red"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a castle with two towers"], "question": "which entity has a roof that is red?", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a small white building with stairs and shelves."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "9e1f64d4fd514059be934077717536dc"], "properties": ["background, color, white", "building, stairs, shelves"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white 3d model of a building with stairs"], "question": "which entity has shelves", "label": 1}, {"captions": [" a green skull and sphere.", " featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "674a36147ffb47059e48abc9fa19d923"], "properties": ["color, skull, sphere", "sandbox, sand bucket, wooden blocks"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "for a black and white photo of a basketball hoop"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3"], "question": "which entity has a sand bucket?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a house with wooden framing and trusses."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["a train, a ship, a boat", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["pos machine, credit card machine, cash register", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, color, pink", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, black, white", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, roof, tray", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the roof of a building", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a green mountain with trees and grass."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, table, ceiling", "mountain, grass, tree"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["color, shape, size", "a, building, coin, ball"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a box with a coin next to it"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["mossy, rock, grass", "building, plane, room"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " of two rocks with ice elements."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, plane, room", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, material, pattern", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["yellow, table, roof", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white building with stairs and a white table."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "e30374c614f54fdb90f35b96b071349d"], "properties": ["frame, roof, trusses", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a small white building with stairs and a white table."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, red, blue, structure", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a wooden roof structure with a pink roof."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["door, white, structure", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink?", "label": 1}, {"captions": [" a green mountain with trees and grass.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["mountain, grass, tree", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white of a house with a hole in the ceiling."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["color, material, structure", "image, house, ceiling"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, tree, rock", "house, yard, surrounding buildings"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a small building with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, building, small", "roof, trusses, ladder"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of the roof of a building"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "12093c89a60941e7884b252bdc05104c"], "properties": ["3D, toothpick, skateboard", "giraffe, bench, flower"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a black building.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, black, building", "island, mountain, grass"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a small white box with a green light.", " a small triangular-shaped object."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, white, light", "shape, triangle, small"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a small white box", "a black piece of furniture on a white background"], "question": "which object is smaller", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a green mountain with trees and grass."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, screen, drawer", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a green-leafed plant in a white hanging pot."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "bc75bd88ee014f3cb733e4af32c54cc6"], "properties": ["color, shape, and size", "color, green, leaf"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a jellyfish"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a potted plant on a white background royalty free 3d model preview no.3"], "question": "which entity is a plant?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, blue, structure", "house, tree, hill"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["arm, light, sign", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white image of a skateboard", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["room, bed, desk", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room with a computer?", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, roof, structure", "roof, trusses, ladder"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of the roof of a building"], "question": "which structure has a roof", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, red, green, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, hand, flowers", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a hand", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small white building with stairs and a white table."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e30374c614f54fdb90f35b96b071349d"], "properties": ["A, a, a", "building, stairs, table"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a wooden roof structure with a pink roof."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, shape, text", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a metal grate"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of the roof of a building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, containers", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, white, yellow, roof, metal", "arrow, red, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": ["white dragon with wings, .", "a 3d white cube with windows resembling a building."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "4a07a5293f024bb0a353954a056ef626"], "properties": ["wings, white, dragon", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a 3d model of a cube"], "question": "which entity is not a dragon?", "label": 0}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, tree, plane", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["building, balcony, street", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, grass, moss", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a brick building with a roof structure and roof truss."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "84e8acad28664a738df69d719df9e263"], "properties": ["color, red, blue, green", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "127753bf17de4252aaa7ea88f274545e"], "properties": ["height, material, shelves", "face, mask, tail"], "captions_pred_pc": ["a black ladder on a white background", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with stairs and a balcony."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "0fbc5f16d301450c820b1f2158fd4f69"], "properties": ["background, color, white", "balcony, stairs, house"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a building with two floors and a balcony"], "question": "which entity has a balcony", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "06a1c233fb444830b577aa06e2c01294"], "properties": ["3D, toothpick, skateboard", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["hat, sword, gun", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small white house with a roof."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["wall, stairs, castle", "roof, color, white"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building with a white roof"], "question": "which building has a roof", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, pink, green", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a pink roof, truss, and a square white ceiling lamp."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "91b2e9e4660946f5b4808a18b5323b69"], "properties": ["roof, color, purple", "roof, truss, lamp"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a metal roof"], "question": "which roof is pink", "label": 1}, {"captions": ["purple speech bubble and circle", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["a black and white speech bubble on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white statue of a woman holding a baby."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "7cf1c30a98fc4ae796e040c2ce18c03a"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, white, statue"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a heart"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d printed figurine of a woman holding a cat"], "question": "which entity is a statue?", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a large steel building with many columns and a pool."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["two-story, roof, building", "building material, pool, steel"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a tv stand/shelf", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["size, material, color", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d model of an antique gramophone"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["lighthouse, fountain, crater", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a small white airplane flying in the air."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, shape, material", "airplane, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a small airplane"], "question": "which entity is white", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a wooden roof structure with a pink roof."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["building, floor, columns", "roof, color, pink"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink?", "label": 1}, {"captions": [" of a white van with a logo on the side.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "b896a0898efe4059a776193c02132129"], "properties": ["color, logo, side", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a scissors", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " of two rocks with ice elements."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, purple, structure", "image is a rock with ice elements"], "captions_pred_pc": ["for a black and white image of a bench", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["boat, table, chairs, umbrella, solar panel", "roof, truss system, framing"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of the roof of a house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["texture, spikes, eyes", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a white human skull with broken bone elements."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["chair, table, refrigerator", "color, white, skull"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a brick building with a roof structure and roof truss."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "84e8acad28664a738df69d719df9e263"], "properties": ["color, base, warning", "roof, structure, truss"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["shape, color, material", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a pair of socks", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, screen, drawer", "color, frame, shape"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "c8936ace72954650b4e2d84246964849"], "properties": ["hat, sword, gun", "roof, color, pink"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, white, railing, black", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "6b745457e06840119058883b35f78f58"], "properties": ["house, rock, pond", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a house with a blue roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, color, blue", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house with a roof", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e4133ffb79714c50b70e9d62b4648c39"], "properties": ["color, shape, and size", "color, material, structure"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d rendering of a table with multiple tables and chairs"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " of two rocks with ice elements."], "sample_ids": ["5c04dac989a64d228283687588484b93", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, material", "image is a rock with ice elements"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a large steel building with a pool."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["lighthouse, building, tower", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "a17477b445b3443189dad22f768b888b"], "properties": ["a, bird, hook", "roof, pillar, stairs"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["table, staircase, light", "floor, staircase, table"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a small house with a red roof.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["085db9059b744673b5623b5338e02196", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, red, house", "hat, bow, arrow"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["earbud, earpiece, earpiece", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a spider-man mask and head.", " of a spider-man mask and head."], "sample_ids": ["bd48915cfb41409aad6dd58e157876b2", "bd48915cfb41409aad6dd58e157876b2"], "properties": ["a, head, mask", "a, head, mask"], "captions_pred_pc": ["above a black and white image of a person's head", "above a black and white image of a person's head"], "captions_pred_image": ["a black spider-man mask on a gray background royalty-free 3d model preview no.2", "a black spider-man mask on a gray background royalty-free 3d model preview no.2"], "question": "which entity has a head and mask?", "label": 0}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "b896a0898efe4059a776193c02132129"], "properties": ["s of, snowboard, shoes, mask", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a wooden-framed house with roof trusses."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "e60dd370c5ec468da4689a801f951157"], "properties": ["image size, image, origami", "frame, roof, trusses"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a house under construction"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "e694d53545d449319a64cceb0280c3c6"], "properties": ["color, dragon, cloth", "3d, slide, swing"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d model of a playground slide"], "question": "which entity has a dragon in the sky?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "a 3d white cube with windows resembling a building."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "4a07a5293f024bb0a353954a056ef626"], "properties": ["black, white, coffee table", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small building with a staircase in a room."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["building, stairs, shelves", "room, staircase, building"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of the letter l"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" of a lion statue", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["ef45a94abce44c8980363602489f218c", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["a, material, statue", "building, ceiling, kitchen"], "captions_pred_pc": ["in 15 words or less 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustr", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d sculpture of a lion sitting on its hind legs", "a 3d model of a white building on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", "a yellow and blue toy submarine."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, bench, rack", "color, yellow, blue"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a submarine toy"], "question": "which toy is yellow and blue?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a small white barn with a metal roof."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, red, blue, green", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a barn"], "question": "which building has a white roof", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["low poly, plant, white", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " of a white human skull with broken bone elements."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, yellow, black", "color, white, skull"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a white building with a red roof."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["a, desk, laptop", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["color, screen, drawer", "black, screen, blank"], "captions_pred_pc": ["above a black and white image of a brush", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which screen is blank", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " of two rocks with ice elements."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, pink", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["3d superman logo in red and yellow", "star wars stormtrooper "], "sample_ids": ["2a08f2f254934c1aabe73021453bc828", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, red, yellow", "a, color, white"], "captions_pred_pc": ["in 15 words or less a superman logo made out of dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of the superman logo", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["house, yard, surrounding buildings", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " of a framed forest scene painting on a wooden door and cabinet."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "a243183445184d2e977044a5b6916e55"], "properties": ["- material is metal- color is silver- texture is textured", "painting, frame, door"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white image of a large group of people"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a picture frame with a black and white photograph"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "205251e4277e41d1aae6b2358267ad56"], "properties": ["floor plan, bathroom, pool", "image, color, white"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d printed figurine of an alien creature"], "question": "which image is in color", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["hat, glasses, character", "a, color, red"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a castle with two towers"], "question": "which entity has a color that is not red?", "label": 0}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["castle, island, house", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["white of a rhino head with horns.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["8481aade84de47cab1a9accf8067e678", "a17477b445b3443189dad22f768b888b"], "properties": ["image, rhino, head", "roof, pillar, stairs"], "captions_pred_pc": ["of a penguin skull in black and white", "a black and white image of a square with dots"], "captions_pred_image": ["rhino head 3d model royalty free 3d model preview no 3", "a 3d model of a small building with a balcony"], "question": "which image shows a pillar?", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "a095621f2d5845af83db3f59f5685982"], "properties": ["- material is stone - color is blue - shape is arrowhead", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["above a black and white drawing of an arrow", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a metal tray with two rolls of paper in it"], "question": "which object is made of a material that is not stone?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a white 3d dragon-bat hybrid with wings."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "8cb88b6f02c549ee812e092a2e948e1c"], "properties": ["texture, spikes, eyes", "wing, color, white"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white image of a bird in flight"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a white 3d model of a bat flying in the air"], "question": "which entity has wings", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a white sofa, chair, and box."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "4c59733ebd634594a921b7ace60e4142"], "properties": ["building, ceiling, kitchen", "sofa, chair, box"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a white chair"], "question": "which entity has a box?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "be1376023c274bdda995d54f3694157f"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, height", "room, door, shelf"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of an empty room"], "question": "which entity has a door?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small white barn with a metal roof."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "4ca3342a96824684845f7d0e062ab176"], "properties": ["color, base, warning", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a barn"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " of a house with a roof."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, truss system, framing", "roof, house, roof"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 0}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, table, chair", "house, tree, pool"], "captions_pred_pc": ["above a black and white photograph of an open door", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small white house with a roof."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["resembles, toy, bookshelf", "roof, color, white"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "white of a rhino head with horns."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "8481aade84de47cab1a9accf8067e678"], "properties": ["background, color, white", "image, rhino, head"], "captions_pred_pc": ["a black line on a white background", "of a penguin skull in black and white"], "captions_pred_image": ["a long white plastic strip on a gray background", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small house with a blue roof."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["Drawer, Handle, Wood", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small house on a hill in a field."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["hat, food, bowl", "house, hill, field"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a black and white image of a small house"], "question": "which object is in a field?", "label": 1}, {"captions": [" a small house with a roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, house, small", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a, character, mario", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["for a black and white sculpture of a person", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["background, color, white", "low poly, llama, kangaroo"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d low poly animal standing on its hind legs"], "question": "which entity has a llama?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "bf18bfd89efd43389781050230467d58"], "properties": ["house, roof, toothbrushes", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "46903bf029934b1989bc062dcb0a5531"], "properties": ["s, chimpanzee, human, wolf", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a skeleton?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "34a49861e7744acfb71de471a755e917"], "properties": ["color, light, jewels", "text, material, shape"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a marble slab with text on it"], "question": "which entity is a sign?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a brick wall with grass."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "53f2d948091f417cb580e22469c94db2"], "properties": ["roof, purple, suspended", "brick, grass, wall"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white photo of a brick wall and a puddle"], "question": "which wall is made of brick", "label": 1}, {"captions": [" of a house with a roof and roof framing, featuring a building with a yellow roof.", " of two rocks with ice elements."], "sample_ids": ["44cc75e4baf4434daf96ec819cd86410", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, yellow", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a flat roof structure.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, flat, structure", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small building with a staircase in a room."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["roof truss, insulation, suspended ceiling", "room, staircase, building"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a staircase on a white surface"], "question": "which building has a room with a staircase?", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a decorative tile", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a large steel building with a pool."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor, staircase, balcony", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a stone wall with a window and a clock."], "sample_ids": ["d6087023095446fbadef1721478373b2", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["door, roof, window", "window, clock, wall"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a brick wall"], "question": "which entity has a clock", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " of a small white building with stairs and a lid."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["table, stairs, ladder", "building, stairs, lid"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["yellow metal barricade ", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is yellow, material is metal, height is 0.5 m", "rusty, warning, metal"], "captions_pred_pc": ["a white barrier on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a black and white photograph of a barrel"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["earbud, earpiece, earpiece", "meat, bread, sausage"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white image of a brush on a white background"], "captions_pred_image": ["a white object on a grey background", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": [" of a wildebeest with horns, royalty-free.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f01175538f7b4ffe8e2648d772e94c5c", "b896a0898efe4059a776193c02132129"], "properties": ["image size, image, royalty", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a dog jumping in the air", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a wildebeest", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "05b5a5da1a0a4c1fa60a9e5edd5c3424"], "properties": ["roof, room, ceiling", "cup, bottle, chessboard"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white 3d shape made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a chess set on a checkered board royalty-free 3d model"], "question": "which object is on a chessboard?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a stone wall featuring carvings and statues."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["roof trusses, beams, suspended ceiling", "carving, statue, wall"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["frame, roof, trusses", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes.", "two white spheres in a ."], "sample_ids": ["fa06167d83e54b05bdfbeeae2ca7c8a6", "1c02212a35134545ab63ab180d629c31"], "properties": ["table, structure, roof", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white image of a map with dots", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a building with many pillars", "a 3d model of a white ball on a gray background"], "question": "which entity has a roof", "label": 0}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["a, hole, rock", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a lace belt", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "c8936ace72954650b4e2d84246964849"], "properties": ["metal, legs, frame", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a white of a house with a hole in the ceiling."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["light switch, electrical outlet, furniture", "image, house, ceiling"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["houses, trees, road", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 1}, {"captions": [" of a house with a pink roof.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, roof, pink", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["image size, image, origami", "hat, skull, bread"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an origami dragon", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["- material is plastic- shape is dice- color is white", "blue, yellow, frog"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a piece of furniture"], "question": "which entity is not a frog?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "6b745457e06840119058883b35f78f58"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["white sphere", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a box, a cup, a bottle, a jar", "building, plane, room"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with stairs and a roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["room, door, shelf", "roof, stairs, house"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an empty room", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " of two rocks with ice elements."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, stairs, lid", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["s, stick, leaf", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small triangular-shaped object."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "2d02985030804209a26c2c53b96a06f9"], "properties": ["house, roof, toothbrushes", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a chair with a yellow seat.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["a4de5f2055154465968f33d6289c64e6", "b896a0898efe4059a776193c02132129"], "properties": ["color, yellow, seat", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a square with small dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a chair on a white background royalty free 3d model no.", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "88eba412c78a4ced89eb857327653f6c"], "properties": ["apse, roof, floor plan", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, color, blue", "roof, color, yellow"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a large white and metal building with a metal roof structure."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, roof, green, frame, red", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a stone wall featuring carvings and statues."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["- color is white - shape is box - material is plastic", "carving, statue, wall"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d image of a group of statues on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["- material is stone - color is blue - shape is arrowhead", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a 3d rendering of a house on a rock"], "question": "which object is made of rock", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a clay pot with holes in it."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, material, shape", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, tower, color", "house, roof, wooden"], "captions_pred_pc": ["for a black square on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "5017581716c7402581a82ebf08d427a3"], "properties": ["shape is cylinder, color is white, material is plastic", "Shelf, color, white"], "captions_pred_pc": ["of a spike on a white background", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["picture, plaque, person", "hat, color, tan"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of an object with a hole in it"], "question": "which object is a hat?", "label": 1}, {"captions": [" a pink and white gun.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, pink, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "12093c89a60941e7884b252bdc05104c"], "properties": ["a, plane, small plane", "giraffe, bench, flower"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, shade, black", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a numbered rock.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["837f450ac17040f3adc4baf1dda9969b", "6b745457e06840119058883b35f78f58"], "properties": ["number, color, shape", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a piece of fabric", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d image of a rock with a number on it", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["shape is sphere, color is white, material is plastic", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a white, open shelving unit"], "question": "which object is whiter", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a clay pot with holes in it."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, material, shape", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["low poly of a christmas tree", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["89bab7f26bc7418d96beb3ac0059f607", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["low poly, christmas, tree", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a small, round object", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a christmas tree on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", "a white of a house with a hole in the ceiling."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["location, city, boat", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a map", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " of two rocks with ice elements."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["Wheels, laptop, robot", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a cell phone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1da865c75a5e4a57a17652975dae5474", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, white, plastic", "hat, candy, strawberry"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white box, a white lid, and a white container", "a black and white image of a person wearing a hat"], "question": "which entity is a hat?", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, shape, pattern", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["books, paper, lamp", "hat, skull, bread"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a potted christmas pine tree."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, light, jewels", "a, color, green"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" of a large black mat with square grid design.", "a pixelated-textured purple sphere ."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "fb68393941804e769d5c9b372864a642"], "properties": ["size, color, design", "texture, color, shape"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a gray sphere on a white background"], "question": "which object has a pixelated texture", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "b896a0898efe4059a776193c02132129"], "properties": ["floor, table, wall", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["screen, lens, color", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["roof, metal, white", "house, building, people"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, candy, strawberry", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of two spheres", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, red, pink", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, material", "resembles, sculpture, rock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a bag with a zipper on it"], "question": "which entity is a sculpture?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a clay pot with holes in it."], "sample_ids": ["d6087023095446fbadef1721478373b2", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["door, roof, window", "hole, material, clay"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a green box with four compartments", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, shape, number", "box, paper clip, lock"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "9968e06a62e8487ea33460e640abc573"], "properties": ["light source, fixture, color", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "c3a82df41875402285608ef13a55df57"], "properties": ["color, handle, gray", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, white, yellow, roof, metal", "metal, legs, wheels"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": ["a 3d low poly model of a hammer and an axe with wooden handles.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c4e45a41478e42418399074b88d8920f", "c3a82df41875402285608ef13a55df57"], "properties": ["axe, handle, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a bird's wing", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a knife on a white background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["b5afccae993346079483507296fbb029", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["shape is square, material is metal, color is rusty", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a black and white photograph of a birdhouse"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a large metal building with a roof and truss structure."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "b85a99699ccd4bcba213322113bb253d"], "properties": ["floor, staircase, railings", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a light switch", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, door, cross", "door, roof, pool"], "captions_pred_pc": ["above a black and white image of a map", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a small house"], "question": "which house has a pool", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["roof, truss, suspended ceiling", "cartoon, bear, diaper"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, red, blue, structure", "color, black, visor"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a black motorcycle helmet with a visor on top"], "question": "which object is black", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["house, table, chair", "table, plant, wood"], "captions_pred_pc": ["above a black and white photograph of an open door", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a white castle composed of small cubes."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["water, boat, rock", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small wooden house with a green roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["houses, trees, road", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "c3a82df41875402285608ef13a55df57"], "properties": ["building, tree, plane", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "a2354f13774340d392fbf33564934aab"], "properties": ["location, highway, train station", "building, roof, yellow"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["hat, food, bowl", "roof, structure, wall"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, tower", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "a17477b445b3443189dad22f768b888b"], "properties": ["a, ball, mushroom", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "d49d8ed244094349a99e4faca05e0690"], "properties": ["location, field, gravestone", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["houses, trees, road", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "of a black and white bracelet on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a man with a beard"], "question": "which entity has a hat", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "bf18bfd89efd43389781050230467d58"], "properties": ["3D, toothpick, skateboard", "Lights, number, five"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white toothbrush on a gray background", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["house, lake, pool", "mannequin head, plague mask, straps"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d model of a large building", "a plague doctor's mask on a mannequin head"], "question": "which entity is not a mannequin head?", "label": 1}, {"captions": [" a black castle with stairs and a door.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["door, stairs, color", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "modern tan leather lounge chair."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "409916a53a0d434599e2a3f52bfe9396"], "properties": ["Drawer, Handle, Wood", "color, tan, leather"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a gray leather lounge chair with a metal base"], "question": "which object is made of leather", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, white, pink, eyes", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a bear's head", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "c3a82df41875402285608ef13a55df57"], "properties": ["house, tree, pool", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a glass bottle with liquid, ice, and a lid, resembling a salt shaker and a human figure.", " a large metal building with a roof and truss structure."], "sample_ids": ["bb01282cb8b64470866260455b0b46fa", "b85a99699ccd4bcba213322113bb253d"], "properties": ["liquid, ice, lid", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration on a white background dandelion illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "a17477b445b3443189dad22f768b888b"], "properties": ["rusty, hat, dartboard", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, shape, material", "hat, color, tan"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of an object with a hole in it"], "question": "which object is made of tan color", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["2563abff548c4479970c81491513b572", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, model, year", "floor, staircase, balcony"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": ["a gray background featuring a white arrow, black arrow, and white and black lines in the middle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b96714473acd40f888d4d005c48b10dc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, arrow, background", "a, material, clay"], "captions_pred_pc": ["a person holding a toothbrush in the shape of a toothbrush on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["Steel, Color, Yellow", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", "a white of a man with arms outstretched."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, red, apples, tree, cactus, dots", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a clay pot with holes in it."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, skyline, buildings", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small wooden house with a green roof."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["blue tarp, flower, small island", "roof, color, green"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, roof, yellow", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small house with a pond and situated on a rock."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "92859eb82a344134806b37cc209927c6"], "properties": ["frame, roof, trusses", "house, rock, pond"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house in the middle of a field"], "question": "which house is situated on a rock", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "06a1c233fb444830b577aa06e2c01294"], "properties": ["cup, bottle, chessboard", "house, tree, hill"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["rocky, rug, puddle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a black and white striped fly in the air."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["roof, room, ceiling", "black, white, fly"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a blue and white bird.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, shape, size", "image, color, pink"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["island, mountain, grass", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is not a floating small island with trees", "label": 1}, {"captions": ["smiley-faced banana .", " of a deer and a crystal tree on an island, with a rock and bird nearby."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "2ce5ec0844114576a247b1de2011e0c7"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "image is a deer and a crystal tree on an island, with a rock and bird nearby"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a flying saucer"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a 3d model of a deer standing on an icy island"], "question": "which entity is not a banana?", "label": 0}, {"captions": [" a white arrowhead-shaped rock.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["shape, color, material", "a, material, clay"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["shape is box, color is white, door is present", "building, plane, room"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, green, squirt gun", "- material is wood, rusty, horned"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, yellow, black", "glass, metal, balls"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a large steel building with many columns and a pool."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["color, table, ceiling", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "a17477b445b3443189dad22f768b888b"], "properties": ["a, desk, laptop", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a large metal building with a roof and truss structure."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, truss, lamp", "roof, truss, structure"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a large building with a roof and windows.", "a white of a spaceship and building."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, windows, building", "image, building, spaceship"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, white, blue, roof, black", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" of a lantern on a table.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["500a64623ef1441db994bfc50e278ff6", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a, table, lantern", "room, furniture, window"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape made up of small dots on a white background a black and white illustration of a hexagonal shape made up of small dots on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a lantern on a table", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " of a small white building with stairs and a lid."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, temperature, england", "building, stairs, lid"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, trusses, beams", "a, material, clay"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a roof structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small purple plastic chair with holes."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["roof, metal, white", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a barn", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "839a873262a544c9906f3f5799ca4648"], "properties": ["hat, candy, strawberry", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of two spheres", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a gray toolbox with an orange handle, filled with various tools.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["40c34834c6364e00b0157eb87914fc51", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, handle, gray", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a toothbrush and toothbrush holder", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a toothbrush kit royalty free 3d model no.", "a 3d rendering of a metal box with a handle"], "question": "which box has a gun inside", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["apse, roof, floor plan", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["hat, toy, gnome", "house, yard, surrounding buildings"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white image of a truck on a white background"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d model of a house in the middle of a field"], "question": "which entity is a house?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, green, handle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["floor plan, bathroom, pool", "door, roof, pool"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house"], "question": "which house has a door", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "star wars stormtrooper "], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, text", "a, color, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["roof trusses, beams, suspended ceiling", "house, hill, forest"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white image of a small island in the middle of a body of water"], "question": "which house is on a hill", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "12093c89a60941e7884b252bdc05104c"], "properties": ["apse, roof, floor plan", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a white shelf with holes and brackets."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["color, black, shade, black", "color, white, holes"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a white bench with a shelf on top"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "09f2cf267e954c958828325067bcc36a"], "properties": ["a train, a ship, a boat", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a submarine", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a black rock with writing on it.", " a small wooden house with a green roof."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, black, writing", "roof, color, green"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["shape is cylinder, color is white, material is plastic", "building, plane, room"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a box with a lot of items inside"], "question": "which entity has a plane?", "label": 1}, {"captions": [" of a cherry blossom bonsai tree with pink flowers.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["037fff0f153c41ea8b9c9392c2e2439a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["flower, color, pink", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white illustration of a person on a skateboard", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bonsai tree on a pedestal", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is plastic- color is green- shape is box", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "a2354f13774340d392fbf33564934aab"], "properties": ["rusty, sink, graffiti", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "c3a82df41875402285608ef13a55df57"], "properties": ["frame, screen, color", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a pink roof.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["color, roof, pink", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a white table with multiple cubes"], "question": "which entity has a roof that is made of metal", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color is purple, material is plastic, number of legs is four", "hat, candy, strawberry"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white plastic chair", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" of a deer on a grassy hill.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, hill, deer", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["house, tree, pool", "box, handle, gun"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a wooden billiard table with legs."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, mouth, eyes", "legs, material, wood"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["lighthouse, fountain, crater", "lighthouse, fountain, crater"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 0}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " of a crab holding a rubik's cube."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["floor, stairs, bathroom", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a small table", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": ["a pair of red-handled pliers and wire cutters, with black accents.", " a building with yellow lines."], "sample_ids": ["3ffc31b7e4cd43f3a3df5722ef8b9fca", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, red, black", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a toothbrush and a toothbrush", "a black and white drawing of a map"], "captions_pred_image": ["a 3d rendering of a pair of pliers on a white background", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a spiral staircase with a railing in a small building."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["screen, monitor, stand", "staircase, railing, building"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "09f2cf267e954c958828325067bcc36a"], "properties": ["- color is red, blue, pink", "island, terrain, rocks"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, green, orange, star", "metal, rusted, paper"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a piece of debris on the ground"], "question": "which entity is more likely to have rusted metal", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "c3a82df41875402285608ef13a55df57"], "properties": ["castle, island, house", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house on an island", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, eagle, wood", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of two rocks with ice elements."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["water, river, island", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["screen, monitor, stand", "roof, color, blue"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a building with many windows"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white box with a shelf and a hole in it."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["color, grass, moss", "a, hole, shelf"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a white box on a gray background"], "question": "which object has a hole in it", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a large house with a roof on a platform."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, brown, flat", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a featuring a flying object, hand holding a rock, floating paper, cityscape, piece of wood, airborne fish, and street with buildings.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e04ad505d0c14dcbb593c49be7d04546", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, hand, holding, rock, paper, floating, fish, street, buildings", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a rock on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a rock in the air", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a large house with a roof on a platform."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, purple, beams", "roof, platform, house"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a small house"], "question": "which entity has a roof on a platform", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["low poly, plant, white", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a throne with a tree on it"], "question": "which object is a throne?", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color is white, material is plastic, shape is box", "resembles, toy, castle"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a tower made out of blocks"], "question": "which object is made of wood", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a group of ponies in a row."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["books, paper, lamp", "group, row, pony"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of my little pony"], "question": "which entity is a group of ponies?", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "building, plane, room"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a white of a man with arms outstretched."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["hat, sword, gun", "image, color, white"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, color, pink", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "654c49e07bb54e6b94637b5f7b65bf08"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "floor, table, wall"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a coffee cup, a spoon, and a knife on a black background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a bench on a tiled floor royalty free 3d model preview no.3"], "question": "which entity has a floor?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a white human skull with broken bone elements."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, yellow, black", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a yellow window frame.", "a white glass beer mug."], "sample_ids": ["b6777659013d4386987c5e26d7dc3f84", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, yellow, frame", "color, white, glass"], "captions_pred_pc": ["above a black and white image of a wall mounted shelf", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white shelving unit", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a white of a man with arms outstretched."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["- material is white- color is white- texture is textured", "image, color, white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a white building with a red roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, purple, suspended", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["3d stone sculpture of a bat", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- material is stone - shape is bat", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a small house with stairs and a roof."], "sample_ids": ["b5afccae993346079483507296fbb029", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["shape is square, material is metal, color is rusty", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " a green circuit board."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, hat, handle", "color, green, circuit board"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "of the item in the image"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a 3d model of an electronic component"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, color, blue", "low poly, plant, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " of two rocks with ice elements."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["earbud, earpiece, earpiece", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a large house with a roof on a platform."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "cb3e09a301b746918a682a595037c7f7"], "properties": ["ceiling, light, desks", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, ball, mushroom", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["building, color, black and white", "building, plane, room"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a box with a lot of items inside"], "question": "which building has a plane?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["roof structure, truss, ceiling", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a small building with windows and a roof.", " a multicolored metal building structure with a roof."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, windows, building", "color, roof, structure"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a barn structure"], "question": "which building has a roof", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, table, chair"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["computer desk, laptop, monitor", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["a, bird, lake", "flower, color, pink"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["painting, door, wall", "books, paper, lamp"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a black and white photograph of a toilet paper holder"], "question": "which entity has more books", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["house, tree, pool", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, text", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a pixelated-textured purple sphere ."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "fb68393941804e769d5c9b372864a642"], "properties": ["color, mouth, eyes", "texture, color, shape"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["rusty, hat, dartboard", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", "a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "276699bb0f974c47b4e2954cfcd1651c"], "properties": ["backrest, heart, wooden", "a, color, white"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "a black and white image of a skull in the shape of a butterfly"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a 3d model of an animal with a long nose"], "question": "which entity is not white?", "label": 0}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a white glass beer mug."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color is white, material is plastic, shape is box", "color, white, glass"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["floor, staircase, table", "moss, mushroom, grass"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small wooden house with a green roof."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, horns, features", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["pos machine, credit card machine, cash register", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a clay pot with holes in it."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["stacked, racks, toy train", "hole, material, clay"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["bedside table, wheels, white", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, color, red", "roof structure, truss, ceiling"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small table with a staircase and a square ceiling light.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["ef0cbf4628b74253b885480deefe6fbd", "40921ffd69db479294554d261daf3035"], "properties": ["table, staircase, light", "floor, railing, staircase"], "captions_pred_pc": ["for a black and white image of a small square on a white background", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, shape, text", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white photo of the letter g"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a table with stairs"], "question": "which entity is a table?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, skyline, buildings", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["frame, beams, trusses", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "97e000ff41094665afd94ea565da8b13"], "properties": ["building, roof, yellow", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a cell phone", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["boxing gloves, heart, hand", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, dress, flower", "building, plane, room"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["building, tree, plane", "buildings, houses, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, b, c", "a, material, steel"], "captions_pred_pc": ["above a black and white drawing of a submarine", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a large metal building with a roof and truss structure."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "b85a99699ccd4bcba213322113bb253d"], "properties": ["yellow, table, roof", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, hat, flower", "a, material, clay"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a small purple plastic chair with holes."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, pink, green", "color, plastic, purple"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, table, ceiling", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a white of a small archway gate.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["image, color, white", "roof, metal, white"], "captions_pred_pc": ["above a black and white illustration of an arch", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a small white building with stairs and a lid.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["6ba301c579fa465fa454fe7487eb70cb", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["building, stairs, lid", "floor, stairs, bathroom"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["building, floor, columns", "table, staircase, light"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "97e000ff41094665afd94ea565da8b13"], "properties": ["face, handle, spout", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a floor plan"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a brick building with a roof structure and roof truss."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "84e8acad28664a738df69d719df9e263"], "properties": ["house, roof, wooden", "roof, structure, truss"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss?", "label": 1}, {"captions": [" a building with yellow lines.", " of a small white building with stairs and a lid."], "sample_ids": ["f18e34286cf54876874f55ecc9018492", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, yellow, lines", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a map", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a drawing of an airplane flying over a city", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": ["a collection of red 3d logos featuring various words and symbols, including \"emobo,\" \"brews,\" \"dremo,\" \"enveno,\" \"brems,\" a twitter logo, and a letter \"a.\"", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2e4fd88620d04c69a9c35d7cc90e1d8e", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, font", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white photo of the brembo logo", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendered image of the twitter logo on a white background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a white castle composed of small cubes."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["Lights, number, five", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, light", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a small wooden house with a green roof."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a metal box with a handle"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a black and white striped box.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["color, black, white", "black, roof, green"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a small black building"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1da865c75a5e4a57a17652975dae5474"], "properties": ["water, river, island", "color, white, plastic"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["shape is cylinder, color is white, material is plastic", "wood, board, shelf"], "captions_pred_pc": ["of a spike on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["floor plan, heating system, ceiling light fixture", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, size", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a house with a steeple on top"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "bf18bfd89efd43389781050230467d58"], "properties": ["a, plane, small plane", "Lights, number, five"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a group of ponies in a row.", " a group of ponies in a row."], "sample_ids": ["e2c00fdbc5bd40bba2c41b62520a58e9", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["group, row, pony", "group, row, pony"], "captions_pred_pc": ["a black and white drawing of an octopus on a white background", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of my little pony", "a 3d model of my little pony"], "question": "which entity has a row of ponies?", "label": 0}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a large house/building structure with a roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["hat, sword, gun", "roof, structure, house"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a large white structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a small wooden house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, material, wood", "house, fence, playground"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small cottage", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, screen, drawer", "door, lock, handle"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, color, pink", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " of a small wooden house with a roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof, color, purple", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a small house"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, structure, house", "roof, structure, suspended"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with a metal roof"], "question": "which structure has a roof", "label": 1}, {"captions": ["a 3d purple sphere with a star pattern.", " a white rocking chair with a curved backrest."], "sample_ids": ["752942069dcf4969a43af1e4fa9c4b4d", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, pattern", "backrest, curved, yes"], "captions_pred_pc": ["a black and white drawing of an object with dots on it", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black sphere on a gray background", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" a large orange keg with a white lid.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["cf24eea70b4f4067b36583924a82cc35", "b896a0898efe4059a776193c02132129"], "properties": ["color, lid, orange", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white circular pattern of dots on a white background a black and white circular pattern of dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a gray keg with a white lid sits on top of a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "5850d5c7223447db816081d50292fec0"], "properties": ["house, lake, pool", "structure, material, pool"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small purple plastic chair with holes."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["a, rock, paper", "color, plastic, purple"], "captions_pred_pc": ["for a flock of birds in the sky", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a white fox."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["color, shape, material", "color, white, fox"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, pier, stairway", "building, material, stone"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a floor lamp with a pleated white and beige shade and a wooden base.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["1ea7bb08894243f5b1f1200ee35fb40a", "e694d53545d449319a64cceb0280c3c6"], "properties": ["base material, wood, shade color, white, beige", "3d, slide, swing"], "captions_pred_pc": ["of a 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background 3d model of a fan blade on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a floor lamp with a white shade and a chrome base", "a 3d model of a playground slide"], "question": "which object has a slide?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["color, light, jewels", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", "a white of a man with arms outstretched."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["a, window, statue", "image, color, white"], "captions_pred_pc": ["a black and white image of dots on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a white of a woman with her arms outstretched."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, material, texture", "image, color, white"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a multicolored metal building structure with a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["color, roof, tray", "color, roof, structure"], "captions_pred_pc": ["a black and white image of a metal object", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a barn structure"], "question": "which structure has a roof that is multicolored?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a clear glass display case with a square light fixture."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "980ded888795417f94b46750105e1597"], "properties": ["A, a, a", "light, fixture, square"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a clear plastic box"], "question": "which entity has a light fixture", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a building or house with a roof and floor plan, resembling a pyramid with a flat roof."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "7a91292e1ed64e60a1bbbb499209a0df"], "properties": ["- material is plastic- color is white- shape is cylinder", "apse, roof, floor plan"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white drawing of a room"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a building in the shape of a pyramid"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " of a wooden table with metal legs and frame."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["flag, stand, color", "metal, legs, frame"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white image of a patterned rug"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "be1376023c274bdda995d54f3694157f"], "properties": ["Arms, Legs, Color", "roof, beams, chimney"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house with a roof"], "question": "which entity has more beams", "label": 1}, {"captions": ["modern tan leather lounge chair.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, tan, leather", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "above a black and white image of a shark"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a 3d sculpture of a bird with its wings outstretched"], "question": "which object is made of leather", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "887e410d07854396b563325ae1929583"], "properties": ["color, eye, handle", "hat, mouse, bear"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color, orange, leather", "wood, board, shelf"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a small wooden house."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, color, white", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a white castle composed of small cubes."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["floor, wall, roof", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a spiral staircase with a railing in a small building."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["house, staircase, table", "staircase, railing, building"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "bf18bfd89efd43389781050230467d58"], "properties": ["cup, bottle, chessboard", "Lights, number, five"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "e80eca95874c4bffb8aec54044824d87"], "properties": ["boat, table, chairs, umbrella, solar panel", "arrow, mountain, area"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a line with a square on it"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity is a landscape?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof trusses, beams, suspended ceiling", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house on a hill in a field."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["s, plane, house", "house, hill, field"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a small house"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "bded33af34104b9686b845dfd18309a9"], "properties": ["wheeled, cart, cannon", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["- color is red, blue, pink", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["houses, trees, road", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white image of a stone sculpture"], "question": "which entity has a hat", "label": 1}, {"captions": [" a white castle composed of small cubes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["composed of, white, cubes", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a white 3d model of a city skyline"], "question": "which image is a shelf?", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "97e000ff41094665afd94ea565da8b13"], "properties": ["arm, jacket, mannequin", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["floor plan, heating system, ceiling light fixture", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass facade", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, size", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a roof and beams."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["frame, truss, roof", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["two-story, roof, building", "throne, chair, building"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a building on top of a table"], "question": "which entity has a chair", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a bow and arrow set", " of a wooden windmill with a red roof."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["arrows, bow, set", "roof, color, red"], "captions_pred_pc": ["for a black and white illustration of a bee", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d model of a windmill on a gray background"], "question": "which object has a roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a wooden table with metal legs and frame."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color, roof, tray", "metal, legs, frame"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a white wooden table"], "question": "which table has metal legs and frame", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white barn with a metal roof."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "4ca3342a96824684845f7d0e062ab176"], "properties": ["house, roof, wooden", "roof, metal, white"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a barn"], "question": "which building has a white metal roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["roof, purple, suspended", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a snowman with a white umbrella and a white coat.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["bbfff7ef6ab14b30bc7b5a3aa8391f95", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, umbrella, coat", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a tree made of dots", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a large building with a roof and windows."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "32d1fbd3ee91426882290305f70021e6"], "properties": ["floor plan, bathroom, pool", "roof, windows, building"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a wooden shed with a gray roof."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, stairs, house", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a shed with a gray roof"], "question": "which roof is darker", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, material", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a decorative tile", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["brown, paint, tape", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["castle, island, house", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house on an island", "an image of a pile of trash on the ground"], "question": "which entity has more houses", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small house on a hill in a field."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["balcony, stairs, house", "house, hill, field"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a grayscale of a mountain.", " a small white building with stairs and shelves."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, grayscale, mountain", "building, stairs, shelves"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a white 3d model of a building with stairs"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["building, tower, color", "hat, skull, bread"], "captions_pred_pc": ["for a black square on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a black and white image of a stone sculpture"], "question": "which object has a hat", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a building with blue metal framing and structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, white, containers", "color, blue, structure"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a building under construction"], "question": "which entity has a blue structure", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, white, furniture, black", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a green mountain with trees and grass."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, red, blue, green", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, model, white house", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a white of a woman with her arms outstretched.", " a house with a wooden-framed roof structure."], "sample_ids": ["2cbfaa4fb2d84a6f94e67b4fd6e2f26f", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["image, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white silhouette of a person on a skateboard", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a woman with her arms outstretched", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "c3a82df41875402285608ef13a55df57"], "properties": ["color, shape, and material", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "a17477b445b3443189dad22f768b888b"], "properties": ["bedroom, bathroom, bed", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a white round table with a red accent.", " a building with yellow lines."], "sample_ids": ["fea62a865b4e40899d95785533818329", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, red", "color, yellow, lines"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white drawing of a map"], "captions_pred_image": ["an empty white plate on a gray background", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, green, squirt gun", "color is white, yellow, plastic"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a black and white striped box."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, table, ceiling", "color, black, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d image of a black and white striped surface"], "question": "which object is black and white?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "97e000ff41094665afd94ea565da8b13"], "properties": ["pos machine, credit card machine, cash register", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a floor plan"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["roof, truss, lamp", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "an oval table with a mouse on top of it"], "question": "which entity has a table lamp?", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a wooden-cased radio."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, material, size", "case, material, wood"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small wooden house."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, roof, tray", "house, material, wood"], "captions_pred_pc": ["a black and white image of a metal object", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["white 3d triangular object", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, shape is triangular, material is plastic", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "white ceramic urn with a red lid."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["color, shape, and size", "color, white, lid, red"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photograph of a vase"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof truss, insulation, suspended ceiling", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, shape, material", "buildings, houses, grass"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, staircase, window", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, white, containers", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, white, yellow, roof, metal", "door, roof, pool"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, bird, hook", "stair, table, chair"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a staircase in a room"], "question": "which entity has a table?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["roof, green, lawn", "building, color, white"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, blue", "roof, trusses, ladder"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, background, gray", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white photograph of an object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, handle, zipper", "- material is wood, rusty, horned"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, pink, blue", "house, fence, playground"], "captions_pred_pc": ["a black and white square with dots all over it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a palm tree with leaves."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "889c62b076f1480e83d9e5ec7e8392e0"], "properties": ["houses, trees, road", "leaf, tree, leaf"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a black and white image of an animal with wings"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a palm tree"], "question": "which entity has more leaves", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof, material, wood", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small building with windows and a roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["water, river, island", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a grayscale of a mountain.", " a small building with windows and a roof."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, grayscale, mountain", "roof, windows, building"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity is a building?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["bed, desk, window", "plane, ship, bird"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white photograph of a pile of debris on the ground"], "question": "which entity is not a room?", "label": 0}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "703dce44052e48cfb024bceb08141554"], "properties": ["a, rock, nail", "roof, beams, frames"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a 3d model of a wooden structure"], "question": "which entity has more yellow", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white castle composed of small cubes."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["background, color, white", "composed of, white, cubes"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a house with a flat roof structure.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, flat, structure", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a house with a wooden-framed roof structure."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["frame, beams, trusses", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small house with stairs and a roof."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, texture", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a flat roof structure."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, grass, moss", "roof, flat, structure"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["red, eyes, rocket", "box, paper clip, lock"], "captions_pred_pc": ["of a black and white image of a clock", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "411c164757fc4de68dfecb35fa858223"], "properties": ["s of, snowboard, shoes, mask", "resembles, sea urchin, shell"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a snowy city with buildings and a plane flying overhead.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["cc63ceb2b5e84872a1a1f6423de419e2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, plane, city", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photo of an airplane on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a city in black and white", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a potted christmas pine tree."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["resembles, toy, bookshelf", "a, color, green"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a christmas tree in a vase"], "question": "which entity is green", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["fireplace, bench, log", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "b896a0898efe4059a776193c02132129"], "properties": ["tv, chair, laptop", "- material is stone, metal, concrete"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a wooden roof structure with a pink roof."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, blue, green, yellow, blue", "roof, color, pink"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which entity has a pink roof?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "outfit, color, green"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is a top and pants?", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a large metal building with a roof and truss structure."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "b85a99699ccd4bcba213322113bb253d"], "properties": ["cover, black, plastic", "roof, truss, structure"], "captions_pred_pc": ["of a black and white image of a skateboard", "of a metal grate on a white background"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "bded33af34104b9686b845dfd18309a9"], "properties": ["hat, sword, gun", "table, staircase, light"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "be1376023c274bdda995d54f3694157f"], "properties": ["a, hole, shelf", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, temperature, england", "hat, bow, arrow"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a red and white robot.", "a white glass beer mug."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, red, white", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " a wooden table with a plant on it."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["color, table, sphere", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" of a white chair with arms and legs.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["Arms, Legs, Color", "ceiling, beams, light"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a floor heating system?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["Drawer, Pattern, White", "color, head, white and brown"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a gray and white cartoon character"], "question": "which entity has a white and brown head", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["runner, bed, bench", "roof, brown, flat"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof?", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["e098706085a44898abbd549693d12a64", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color is black, white, orange", "house, fence, playground"], "captions_pred_pc": ["of a white and black clutch with a flower design", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a yellow bird with black eyes.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "5414d75e47104589837f3df8b6de6d22"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "beige, white, round"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is not a bird?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a roof and beams."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, room, ceiling", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a building with a roof"], "question": "which house has a roof with beams?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "b896a0898efe4059a776193c02132129"], "properties": ["roof, beams, chimney", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a toy motorcycle, car, and robot on an orange platform.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["7407a108e0354925b83b750339bc03df", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["platform, color, orange", "color, shape, color"], "captions_pred_pc": ["a black and white illustration of a bicycle", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a motorcycle on a pedestal", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "c3a82df41875402285608ef13a55df57"], "properties": ["island, mountain, grass", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, trusses, ladder", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof of a building", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "a095621f2d5845af83db3f59f5685982"], "properties": ["black, white, coffee table", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "of a black ribbon on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a metal tray with two rolls of paper in it"], "question": "which object is silver in color", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " of two rocks with ice elements."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, material, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a glittering object", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f28f57745af04115b0bacdde80c3b9ee"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d"], "question": "which entity has a pair of binoculars", "label": 0}, {"captions": [" a wooden desk with drawers and a green top.", " a house with a roof structure and toothbrushes."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["top, color, wood", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d rendering of a white box with a lot of blades"], "question": "which object has a roof structure", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", "a white glass beer mug."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, door, window", "color, white, glass"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a house with a roof and beams."], "sample_ids": ["97f487941d26472294e005fa97c403be", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, green", "roof, beams, house"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["desk, chair, table", "house, rock, bird"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a clay pot with holes in it."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, blue, structure", "hole, material, clay"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building under construction", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["house, tree, pool", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, horns, features", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a collection featuring a flying plane, manhole cover, sword, parking lot, paper plate, car, and plane with an emblem.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["61c172ff745848f29d2527f4e5eb1bdb", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["collection, plane, car", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a piece of paper", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a knife blade royalty-free 3d model preview no. 3", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a large house with a roof on a platform."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "cb3e09a301b746918a682a595037c7f7"], "properties": ["metal, roof, chest", "roof, platform, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a small house"], "question": "which object has a roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house with a green, wooden-structured roof."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["ceiling, light, desks", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a white building with a red roof."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, blue, rim, blue", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of an office building"], "question": "which entity has a red roof", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white glass beer mug.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1d686cbd3e9a4c629a43088658989286", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, glass", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a beer mug on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a glass pitcher", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white of a city with buildings and a gold spoon.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2351471a2d2145c59fec5f68ffae4816", "c3a82df41875402285608ef13a55df57"], "properties": ["image, city, spoon", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a diamond shaped piece of fabric", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a city skyline in white", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white axe, hammer, and spoon.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["axe, hammer, spoon", "paper, hole, sign"], "captions_pred_pc": ["of a black lace belt on a white background", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a hole in it?", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["light, floor, ceiling", "light, fixture, square"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a desk with a table on top"], "question": "which entity has a square ceiling light fixture", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["fireplace, bench, log", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a snowflake", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a large steel building with a pool."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["building, color, yellow-green", "building material, pool, steel"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a white 3d-printed ring with intricate floral and leaf designs.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["da02455b180546f78f1eb0bb526aa5fe", "b896a0898efe4059a776193c02132129"], "properties": ["color, material, design", "- material is stone, metal, concrete"], "captions_pred_pc": ["a cross made of dots on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d printed white ring with intricate carvings", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["houses, trees, road", "hat, pants, shirt"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a wooden billiard table with legs."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["compartments, wall-mounted, vents", "legs, material, wood"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, number", "island, terrain, water"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, light, jewels", "color, green, squirt gun"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which entity is a toy?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a house with a pink roof."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, white, black, white", "color, roof, pink"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a pink roof?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["turrets, flags, towers", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, yard, surrounding buildings", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["white space shuttle model.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "832a022cdcc74763b0571e04af4e592b"], "properties": ["color is white, model is space shuttle, size is small", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a lego model of a futuristic airplane"], "question": "which spaceship is smaller", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a small wooden house with a green roof."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["island, terrain, water", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, color, blue", "structure, columns, roof"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a building with multiple levels"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "spheres, lamp, city"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a futuristic spaceship"], "question": "which entity has a city?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, hat, glasses", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a wooden wall with a psychedelic circular pattern in red, green, and blue."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "5376daee484349378cb269a771ca5be0"], "properties": ["color, shape, height", "color, pattern, wall"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "of a cross made of black yarn on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1"], "question": "which entity is a wall?", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof, ceiling, hole", "beige, white, round"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["building, room, sky", "a, building, roof"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of the space shuttle"], "question": "which entity has a building with a roof?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a small white building with stairs and a lid."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["roof, room, ceiling", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " a large house with a roof on a platform."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "cb3e09a301b746918a682a595037c7f7"], "properties": ["building, ceiling, kitchen", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, green, lawn", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "bf18bfd89efd43389781050230467d58"], "properties": ["color, pink, green", "Lights, number, five"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a white chandelier with five white shades"], "question": "which light has more lights", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " a wooden roof structure with a pink roof."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["backrest, curved, yes", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the same color as the poles?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a white of a woman with her arms outstretched."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, screen, drawer", "image, color, white"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["bed, desk, window", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["frame, screen, color", "island, terrain, water"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, windows, building", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a large metal building with a roof and truss structure."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color is purple, material is plastic, number of legs is four", "roof, truss, structure"], "captions_pred_pc": ["of a black and white image of a baby carrier", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a long metal fence"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a large steel building with a pool."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, air conditioner, house", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a roof and white brick wall.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, wall, color", "roof, truss system, framing"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", "a white of a spaceship and building."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["color, table, ball", "image, building, spaceship"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "12093c89a60941e7884b252bdc05104c"], "properties": ["bed, desk, window", "giraffe, bench, flower"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a small white building with stairs and a lid."], "sample_ids": ["97f487941d26472294e005fa97c403be", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, green", "building, stairs, lid"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, color, purple", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["house, hill, forest", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white map of the state of new york"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, light, jewels", "Cabinet, drawer, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a white human skull with broken bone elements."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, black, white", "color, white, skull"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a human skull in white"], "question": "which entity is a skull?", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, shape, material", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a natural formation?", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "4389909667db472ea9a57a70eb940fa4"], "properties": ["building material, pool, steel", "building, window, skeleton"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a concrete structure", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "white pyramid "], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "75accf3f561b4cf6a7b07c6ad0c918ec"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is white, shape is pyramid, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white image of a square with many small dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a pyramid on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a rusty boat, piece of wood, and brick wall.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4dec97bbe6fe46f89768ecd849003a13", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["rusty, piece, wall", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white photograph of a brick wall", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a stone slab on the ground royalty-free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "d49d8ed244094349a99e4faca05e0690"], "properties": ["- color is white - shape is box - material is plastic", "low poly, plant, white"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "c8936ace72954650b4e2d84246964849"], "properties": ["roof, purple, suspended", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a house with a roof"], "question": "which roof is pink", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, color, white", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" of a wooden truck with a load of snow and crates, driving on a pile of wood.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["ac1e2dcbe71945d58204f95d16d658b1", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["load, crates, snow", "room, furniture, window"], "captions_pred_pc": ["above a 3d image of a bench with a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a truck with a pile of snow on top of it", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, trusses, beams", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " of a white wall-mounted light switch, electrical outlet, and various furniture pieces."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "b195bf7ba6094e1b812e4312deeeb360"], "properties": ["base material is wood, color is red, message is welcome to northwich", "light switch, electrical outlet, furniture"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a room with a white background"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a white chair with arms and legs.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["Arms, Legs, Color", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, white, furniture, black", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["a, bowl, cup", "structure, roof, pitch"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of the roof of a house"], "question": "which entity has a pitched roof structure", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a white chest of drawers with legs."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["s of, snowboard, shoes, mask", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a wooden roof structure with a pink roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["house, color, white", "roof, color, pink"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["castle, island, house", "island, terrain, water"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d image of a small island in the middle of a lake"], "question": "which island has more water", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a house with a pink roof."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, grass, moss", "color, roof, pink"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", "a white of a spaceship and building."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["tiers, building, stairs", "image, building, spaceship"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and a building?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "12093c89a60941e7884b252bdc05104c"], "properties": ["fireplace, bench, log", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "db74ee1621464be1b164be26a1af050e"], "properties": ["color, tan, brown, orange", "window, arches, wall"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["wall, stairs, castle", "house, staircase, table"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, truss, lamp", "house, staircase, table"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["white table lamp with a white shade.", " a white and blue building with a black roof."], "sample_ids": ["c49cf9f8b3c645d7b34243d4b76f689e", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, white, shade", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of a circle with an arrow", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a white table lamp with a white shade", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which entity has a white roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a white building with a red roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["background, color, white", "color, white, roof, red"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of an office building"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a white building with a red roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, shape, material", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["turrets, flags, towers", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a roof structure"], "question": "which entity has a roof structure with trusses and beams", "label": 1}, {"captions": [" a concrete wall with peeling paint and rusted metal features.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["4376831ff557462dbacc4cce88a8cc86", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["paint, rust, concrete", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a shelf on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a concrete wall", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["color, orange, white", "a, desk, laptop"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of an office desk on a white background"], "question": "which object has a desk with a laptop", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, temperature, england", "color, sphere, molecule"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, light, jewels", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["- color is white - shape is box - material is plastic", "lion, statue, fountain"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a metal object"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d image of a lion statue on a wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "b896a0898efe4059a776193c02132129"], "properties": ["roof, metal, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["yellow, table, roof", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is metal - weight is 0 - height is 0", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "c3a82df41875402285608ef13a55df57"], "properties": ["house, rock, bird", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a large metal building with a roof and truss structure."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "b85a99699ccd4bcba213322113bb253d"], "properties": ["- color is white- shape is cubes- number is 1", "roof, truss, structure"], "captions_pred_pc": ["a close up of a black and white striped scarf", "of a metal grate on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- color is red, blue, pink", "glass, metal, balls"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["fireplace, bench, log", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of a snowflake", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["ceiling, light, desks", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a large building"], "question": "which house has a pool", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a white glass beer mug."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "1d686cbd3e9a4c629a43088658989286"], "properties": ["screen, keyboard, box", "color, white, glass"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a man holding various objects on top of a truck.", "a white glass beer mug."], "sample_ids": ["db283f7e62074326b7d25634fc53106c", "1d686cbd3e9a4c629a43088658989286"], "properties": ["a, truck, hold", "color, white, glass"], "captions_pred_pc": ["a black and white illustration of a spoon and a screw", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a person riding on top of a truck with an umbrella in their hand", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a table with two bowls and a cup on it.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["41842c8d2ebd402da04def3c53c41633", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["a, bowl, cup", "ceiling, beams, light"], "captions_pred_pc": ["a black and white image of two eyes in the sky", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a table on a marble floor royalty free 3d model preview no. 3", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a ceiling featuring wood beams and light", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " featuring a chair, table, and refrigerator."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["color, shape, material", "chair, table, refrigerator"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity is a chair?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["shape is cylindrical, color is silver, material is metal", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a cone shaped object", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a roof structure"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["background, color, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white plastic container with a label on it"], "question": "which object is white", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a loaf of bread and a piece of chocolate cake."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "3a6cda16adee41ebbe3cbb8c6cdbf464"], "properties": ["bed, desk, window", "bread, chocolate, cake"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a sponge on a white background sponge on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white image of a loaf of bread"], "question": "which entity is a food?", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["furniture, room, kitchen", "building, room, sky"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a sky?", "label": 1}, {"captions": [" of a loaf of bread and a piece of chocolate cake.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["3a6cda16adee41ebbe3cbb8c6cdbf464", "5414d75e47104589837f3df8b6de6d22"], "properties": ["bread, chocolate, cake", "beige, white, round"], "captions_pred_pc": ["a black and white image of a sponge on a white background sponge on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a black and white image of a loaf of bread", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " of two rocks with ice elements."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a white round table with a red accent.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["fea62a865b4e40899d95785533818329", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["color, white, red", "table, structure, roof"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white image of a map with dots"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["room, bed, desk", "room, door, shelf"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of an empty room"], "question": "which room has a door?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["a box, a cup, a bottle, a jar", "blue, yellow, frog"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" a small white box with a green light.", " of a white chest of drawers with legs."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, white, light", "chest of drawers, legs, white"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d rendering of a white dresser"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["- color is white - shape is box - material is plastic", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white square with dots all over it", "of a spike on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["color, roof, tray", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white image of a metal object", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["a, color, white", "gold, ring, animal"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" of colorful cubes on a round table with a sphere featuring a rainbow stripe.", " of two rocks with ice elements."], "sample_ids": ["2cb2483cfe4c41bebcbc02c1cbe10ab4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, table, sphere", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a group of cubes floating in the air", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a group of cubes on a circular surface", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["Drawer, Pattern, White", "house, roof, green"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a building with a black roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small house with stairs and a roof."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["resembles, octopus, squid, spider, robot", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "a17477b445b3443189dad22f768b888b"], "properties": ["color, roof, block", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a small building with a balcony"], "question": "which building has a roof with a pillar?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a room, a cake, a table", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": ["a white of a city with buildings and a gold spoon.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["2351471a2d2145c59fec5f68ffae4816", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["image, city, spoon", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a diamond shaped piece of fabric", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a city skyline in white", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "46903bf029934b1989bc062dcb0a5531"], "properties": ["floor, wall, roof", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, roof, wall", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a building", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a roof structure"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, handle, zipper", "color is white, yellow, plastic"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a small wooden house with a roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["houses, trees, road", "roof, house, wooden"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a house with dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "9968e06a62e8487ea33460e640abc573"], "properties": ["a lamp, a syringe, a light pole", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, ceiling, kitchen", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", " a small white building with stairs and a white table."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "e30374c614f54fdb90f35b96b071349d"], "properties": ["roof, material, wood", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["3D, toothpick, skateboard", "house, tree, pool"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small house with a tree in front, situated on a hill.", " a large steel building with a pool."], "sample_ids": ["3bde44b5f10946398f1bb9843dc14caa", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, tree, hill", "building material, pool, steel"], "captions_pred_pc": ["a black and white photo of a cell phone in a puddle of water", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, shape, number", "roof, trusses, beams"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a black triangular object with various items on it.", " of a small white building with stairs and a lid."], "sample_ids": ["e4c69bf79fa64b51906119a067fab759", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, shape, material", "building, stairs, lid"], "captions_pred_pc": ["of a black laptop on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black diamond shaped object", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", " a house with a green, wooden-structured roof."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["size, material, color", "roof, color, green"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a building surrounded by various structures, including a skyscraper, in a city setting."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "3b780ced7a814f86b3ee67f3596dddce"], "properties": ["house, lake, pool", "building, skyscraper, city"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of an airplane"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a knife with a building on top of it"], "question": "which entity is in a city setting?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a barrel and a cube together."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["computer desk, laptop, monitor", "a, barrel, cube"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["room, bed, desk", "tv, chair, laptop"], "captions_pred_pc": ["a black and white drawing of a door", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small wooden house with a green roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, rock, pond", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": ["a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["034c093c73fd48758422feee0b10c5d8", "92498f398e244020a867686729633610"], "properties": ["a, backpack, stick", "a, house, cat, dog"], "captions_pred_pc": ["a black and white drawing of a bird in flight", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a pencil drawing of a person holding a sword", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["97f487941d26472294e005fa97c403be", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, green", "beige, white, round"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of an office building", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "star wars stormtrooper "], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["broom, shovel, fireplace", "a, color, white"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " of two rocks with ice elements."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, and material", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d image of two rocks on a gray surface"], "question": "which entity is made of ice", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a black and white striped fly in the air."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, yellow, black", "black, white, fly"], "captions_pred_pc": ["a black and white illustration of an airplane", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "room, furniture, window"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["house, rock, pond", "hat, shirt, bearded"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small purple plastic chair with holes."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, light", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a black and white of a knife/sword with a handle."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["Steel, Color, Yellow", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of a building", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, color, shape", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["d6087023095446fbadef1721478373b2", "db74ee1621464be1b164be26a1af050e"], "properties": ["door, roof, window", "window, arches, wall"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an old brick wall"], "question": "which building has a green roof", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is metal - weight is 0 - height is 0", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a wooden-framed roof structure.", " a white building with a red roof."], "sample_ids": ["ef2edaf670a64ec29114d7eeeaec7776", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, material, wood", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a staircase", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["metal, roof, chest", "roof, trusses, beams"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a roof structure"], "question": "which entity has a wooden roof structure", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, blue, rim, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["door, white, structure", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a wooden box with a lid"], "question": "which cabinet has a drawer", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small, snow-covered house."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, building, people", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "b5afccae993346079483507296fbb029"], "properties": ["image, building, painting", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["black, white, coffee table", "a city, train, dragon"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white image of a toy car"], "captions_pred_image": ["a black and white 3d model of a building", "a line drawing of an airplane flying in the sky"], "question": "which entity is a dragon flying above a city", "label": 1}, {"captions": [" a small silver handgun.", "a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth."], "sample_ids": ["107a70cd0305435e8d38c08bcf0a7483", "127753bf17de4252aaa7ea88f274545e"], "properties": ["size, color, material", "face, mask, tail"], "captions_pred_pc": ["a black and white illustration of a sock on a white background royalty free illustration", "a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hand-held device on a white background", "a 3d model of a goat's head"], "question": "which entity has a mask?", "label": 1}, {"captions": ["a wooden-handled axe .", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["439ad3cdddbc4211b8a3c98448e900cc", "1da865c75a5e4a57a17652975dae5474"], "properties": ["handle material is wood, head material is metal, overall length is long", "color, white, plastic"], "captions_pred_pc": ["a black and white image of a hammer on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a human skull", " a wooden shed with a gray roof."], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["a, b, c", "roof, color, gray"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a vibrant city skyline featuring various colored buildings, trees, and skyscrapers."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "1a1fb9b0d83845f6b1238fb45e0defff"], "properties": ["graffiti, chinese writing, door", "color, skyline, buildings"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a city skyline"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white 3d model of a city skyline"], "question": "which entity has a skyline featuring various colored buildings", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, white, handle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["house, lake, pool", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["buildings, houses, grass", "houses, trees, road"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["an image of a pile of trash on the ground", "a black and white photograph of a small town"], "question": "which entity has more houses", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, frame", "building, plane, room"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small building with windows and a roof."], "sample_ids": ["d6087023095446fbadef1721478373b2", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["door, roof, window", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof and windows?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "aef9b23a78a7450286a961cc13448d00"], "properties": ["floor plan, bathroom, pool", "roof, green, tiled"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a set of stainless steel shelves"], "question": "which house has a green roof", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a gray, metal pillar/cylinder."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["size, color, shape", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a candlestick"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it.", " of two rocks with ice elements."], "sample_ids": ["4389909667db472ea9a57a70eb940fa4", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, window, skeleton", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photo of a person's reflection in a mirror", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "a17477b445b3443189dad22f768b888b"], "properties": ["Parts, Luggage, Truck", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["building, roof, white, cubes", "cartoon, bear, diaper"], "captions_pred_pc": ["above a black and white image of a map", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" of a green-leafed plant in a white hanging pot.", " of a small white building with stairs and a lid."], "sample_ids": ["bc75bd88ee014f3cb733e4af32c54cc6", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, green, leaf", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a potted plant on a white background royalty free 3d model preview no.3", "a 3d model of a white box on a gray background"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["bowl, pottery, headpiece", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof truss, beams, structure", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hat, pants, shirt", "box, paper clip, lock"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "be1376023c274bdda995d54f3694157f"], "properties": ["structure, roof, pitch", "roof, beams, chimney"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "d5722274fb094222aca90bb59f4dff09"], "properties": ["s, plane, house", "chest of drawers, cabinet, white"], "captions_pred_pc": ["a black and white silhouette of a map", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a white cabinet with a drawer"], "question": "which entity has a white and wooden chest of drawers cabinet?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "1da865c75a5e4a57a17652975dae5474"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["background, color, white", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a group of trees"], "question": "which entity has grass", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, trusses, ladder", "roof, structure, suspended"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a white castle composed of small cubes."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, color, pink", "composed of, white, cubes"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a castle made of white cubes"], "question": "which structure is composed of cubes", "label": 1}, {"captions": [" a small grassy island in the water.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["location, water, island", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of a map", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a large orange pumpkin."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["s, chimpanzee, human, wolf", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small house with a roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["frame, truss, roof", "roof, house, small"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a tree with green leaves."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "1a902b67735845198efb1b84f434b580"], "properties": ["color, shape, and size", "leaf, color, green"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, blue, structure", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of dots on a white background", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a building under construction", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house with stairs and a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["house, rock, pond", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of a podium on a wooden floor"], "question": "which house has a roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a red and white robot."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, roof, block", "color, red, white"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity has a red and white color scheme?", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["table, staircase, light", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a green mountain with trees and grass."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, fence, dog", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["a, material, steel", "color, white, gold"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d model of a standing mirror on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["ceiling, light, desks", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "411c164757fc4de68dfecb35fa858223"], "properties": ["pattern, color, shape", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["hat, bag, blanket", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" of white plastic bottles and e-cigarette cartridges.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d5350ea3f41b42b5983fa01c087925d7", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["e-cigarette, cartridge, bottle", "box, paper clip, lock"], "captions_pred_pc": ["a black and white photograph of a pair of earrings", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a bullet casing royalty free 3d model preview no. 1", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a wooden table with black and white square design and metal poles."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "ddff57e7f60e420688b477a1f78aa83f"], "properties": ["color, shape, poles", "design, poles, table"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white drawing of a square with dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a table with four legs and black and white stripes"], "question": "which entity has a square design?", "label": 1}, {"captions": [" a broken bowl with a hole in it.", " a broken bowl with a hole in it."], "sample_ids": ["55e883c09dbf4f22bee0da608128f4f8", "55e883c09dbf4f22bee0da608128f4f8"], "properties": ["a, material, bowl", "a, material, bowl"], "captions_pred_pc": ["a black and white drawing of a bowl on a white background", "a black and white drawing of a bowl on a white background"], "captions_pred_image": ["a 3d image of a white bowl on a gray background", "a 3d image of a white bowl on a gray background"], "question": "which bowl is made of glass?", "label": 0}, {"captions": ["a 3d white axe, hammer, and spoon.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["96d127abd21049689918e671ec613ef8", "97e000ff41094665afd94ea565da8b13"], "properties": ["axe, hammer, spoon", "roof, material, wood"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["water, boat, rock", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a white rocket ship.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, shape, size", "roof, brown, flat"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "mossy, rock, grass"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a piece of wood on a white background"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a black shark", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["black, mouth, teeth", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a spike on a white background"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a paper airplane"], "question": "which object is not a shark?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small wooden house with a green roof."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- material is wood, metal, metal", "glass, metal, balls"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a wine glass"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, bird, lamp", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["graffiti, chinese writing, door", "image, building, stairs"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with stairs?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["black, white, laptop", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["55b26130f1514032be078e13fd982905", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["room, door, shelf", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an empty room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["s, stick, leaf", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["mossy, rock, grass", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", "a black and white of a knife/sword with a handle."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["a knife, blade, handle", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a piece of white plastic on a gray background", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a low-poly of a white, shattered sphere."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, light", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a two-story small apartment building with a roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, structure, wall", "two-story, roof, building"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a small white box with a green light."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, green, handle", "color, white, light"], "captions_pred_pc": ["of a small black object on a white background", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "97e000ff41094665afd94ea565da8b13"], "properties": ["design, poles, table", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, framing, material", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "4389909667db472ea9a57a70eb940fa4"], "properties": ["building, color, black and white", "building, window, skeleton"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window with a skeleton on it?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["house, tree, rock", "earbuds, light, ring"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["chair, table, refrigerator", "roof, brown, flat"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small orange piano with legs."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "d793de7c08d74414beeb8ea50f730705"], "properties": ["building, tree, plane", "color is orange, size is small, legs"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white illustration of a bench"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, ball, mushroom", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a square tile featuring a blue and green pattern, resembling a city map and a dotted floor mat.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["a21baaacd25041a9a50ede5e583ddab9", "92498f398e244020a867686729633610"], "properties": ["pattern, color, shape", "a, house, cat, dog"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d image of a city map on a black surface", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small white house with a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, white", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, grass, moss", "glass, metal, balls"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a large building with a roof and windows.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, windows, building", "a, building, roof"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": [" of a rock with a screw and a nail sticking out of it.", " of a rock with a screw and a nail sticking out of it."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "b0427ff55c4346e293c1241c71d30528"], "properties": ["a, rock, nail", "a, rock, nail"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "above a black and white illustration of a bird sitting on top of a rock"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a 3d image of a rock with a screw in it"], "question": "which rock has a nail sticking out of it?", "label": 0}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "bf18bfd89efd43389781050230467d58"], "properties": ["bed, desk, window", "Lights, number, five"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a large house with a roof on a platform."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, pink", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["broom, shovel, fireplace", "house, fence, playground"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["bedroom, bathroom, bed", "color, shape, color"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, light, jewels", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a large orange pumpkin."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a pumpkin on a white background"], "question": "which object is orange", "label": 1}, {"captions": [" a celtic stone cross.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["- material is stone- shape is cross- color is black", "- material is wood, rusty, horned"], "captions_pred_pc": ["for a black and white image of a watch", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a purple chair with holes in it.", " of a crab holding a rubik's cube."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, purple, holes", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a black and white image of a crab holding a cube"], "question": "which entity is a toy?", "label": 0}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["floor, staircase, railings", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a white 3d model of a city skyline"], "question": "which image shows a shelf?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small white building with stairs and a white table."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e30374c614f54fdb90f35b96b071349d"], "properties": ["house, color, white", "building, stairs, table"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a wooden roof structure with a pink roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, green, lawn", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, dragon, cloth", "a, material, clay"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["buildings, houses, grass", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a tree with leaves and roots.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["leaf, root, trunk", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a black and white image of a tree with roots", "an image of a white background with a few small cubes on it"], "question": "which entity has a trunk", "label": 0}, {"captions": ["a white of a building with columns, stairs, and railings.", " a white and blue building with a black roof."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "c893118316ee43e18322e5964b2806c5"], "properties": ["image, building, stairs", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["color, white, containers", "black, white, coffee table"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white 3d model of a building"], "question": "which entity is a coffee table", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, pink, blue"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which house has a pink and blue roof?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a potted plant on a wooden table or shelf."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["table, staircase, light", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with stairs", "a black and white image of a plant in a pot"], "question": "which table is on a shelf?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " of a slice of bread and knife on a cutting board."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "0d5f5baa97754547ad517b694ea8edc7"], "properties": ["roof, green, lawn", "bread, knife, board"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white illustration depicting a galaxy with a black hole in the center"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a loaf of bread and a knife on a cutting board"], "question": "which object is on a cutting board?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["house, building, people", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, red, blue, green", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a large steel building with a pool."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, purple, beams", "building material, pool, steel"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "d795985a8bbe480282e349ff85fb1ef2"], "properties": ["resembles, toy, bookshelf", "Contains, Objects, Various"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d sculpture of a person sitting on a chair"], "question": "which entity contains more objects", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "ee440fcbc493488e879539d37a8d820e"], "properties": ["light, floor, ceiling", "island, fish, ice"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["house, tree, rock", "roof, color, yellow"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color of yellow", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, head, white and brown", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "a2354f13774340d392fbf33564934aab"], "properties": ["graffiti, bench, wall", "building, roof, yellow"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a cell phone"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " of a wooden staircase with marble floor and wooden railings in a house."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "ee70964ce5e841bd87381cff40d59b88"], "properties": ["building, stairs, shelves", "floor, staircase, railings"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a light switch"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a staircase on a marble surface"], "question": "which staircase has wooden railings", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, base, slanted", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a chair", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, plane, town", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["roof, brown, flat", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, material, stone"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a chair with a yellow seat."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, pier, railings", "color, yellow, seat"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity has a yellow seat", "label": 1}, {"captions": [" a house featuring a wooden roof structure with trusses and beams.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["97e000ff41094665afd94ea565da8b13", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, material, wood", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a room with a lot of wires"], "question": "which house has a fence?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, desk, laptop", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["image, building, painting", "building, plane, room"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a tree with green leaves."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "1a902b67735845198efb1b84f434b580"], "properties": ["hair, legs, wings", "leaf, color, green"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "c8936ace72954650b4e2d84246964849"], "properties": ["color, shape, material", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a large steel building with many columns and a pool."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["frame, truss, roof", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, roof, tray", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white image of a metal object", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a roof"], "question": "which roof is more complex", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, gun", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["roof truss, insulation, suspended ceiling", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a green mountain with trees and grass."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["desk, chair, lamp", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a city skyline", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a white of a man with arms outstretched."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, purple, suspended", "image, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a spiked baseball bat and a spiked hammer."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "6ce3aa0ecf76431e9e50256a57c92330"], "properties": ["Lights, number, five", "spiked, baseball bat, hammer"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "for a black star on a white background"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a baseball bat"], "question": "which object has a spiked baseball bat?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["Steel, Color, Yellow", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, base, warning", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "d81d13362ae04371bb2cba46e4939665"], "properties": ["roof, room, ceiling", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, wheel, helmet", "hat, bow, arrow"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["shape is cylinder, color is white, material is plastic", "color, head, white and brown"], "captions_pred_pc": ["of a spike on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, balcony, street", "building, material, stone"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old building", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["floor plan, heating system, ceiling light fixture", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["bread, knife, board", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, blue, green, yellow, blue", "house, fence, playground"], "captions_pred_pc": ["a pair of sneakers on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a silver vintage racing car."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "9d8a1e856251435f9596c031005520bd"], "properties": ["color, red, blue, green", "color, silver, vintage"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a chair with dots all over it"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a vintage racing car"], "question": "which entity is not a vintage car?", "label": 1}, {"captions": ["a pixelated eagle with a yellow and white head and yellow beak.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9ce77b4cc05c4060a74b8f2568e6bbe8", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["eagle, head, beak", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d image of a penguin in a pixelated world", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black shark", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["black, mouth, teeth", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, yellow, plastic", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, air conditioner, house", "black, roof, green"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["wall, stairs, castle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a green mountain with trees and grass."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["roof, windows, building", "mountain, grass, tree"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a white round table with a red accent.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["fea62a865b4e40899d95785533818329", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, white, red", "color, white, gold"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" various fruits and vegetables.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, size", "a, material, clay"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "b896a0898efe4059a776193c02132129"], "properties": ["color, roof, tray", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a metal object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, building, coin, ball", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "f1b557775310478893242180defa4d80"], "properties": ["color, material, shape", "shack, roof, door"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["pos machine, credit card machine, cash register", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a, bird, lamp", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "73e7107ff3634516846bccad04c5dc87"], "properties": ["light source, fixture, color", "blue, curved, resembles"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["room, door, shelf", "water, boat, rock"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of an empty room", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["hat, bow, arrow", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a red roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "085db9059b744673b5623b5338e02196"], "properties": ["roof, purple, suspended", "roof, red, house"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white dotted square on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small shed in the snow"], "question": "which house has a red roof", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["eead0dd97023415da05c97df37337473", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, balloon, color, blue", "roof, trusses, beams"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d model of a roof structure"], "question": "which object is more likely to be found in a house", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a house with a roof structure and toothbrushes."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["red, mouse, handwriting", "house, roof, toothbrushes"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, background", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a metal rod", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small wooden sailboat.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["size, material, sails", "metal, legs, wheels"], "captions_pred_pc": ["a person paddling a kayak on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a small blue plastic box with a lid and handle."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "3e5cc957c888491ba1a5773299d3daa9"], "properties": ["base material is wood, color is red, message is welcome to northwich", "blue, lid, handle"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "in 15 or fewer words a black and white illustration of a rectangular tray"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d rendering of a gray plastic container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color is white, material is plastic, shape is bottle", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["boat, table, chairs, umbrella, solar panel", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "e694d53545d449319a64cceb0280c3c6"], "properties": ["water, boat, rock", "3d, slide, swing"], "captions_pred_pc": ["a black and white illustration of a surfboard", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small wooden house with a green roof."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["island, terrain, rocks", "roof, color, green"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a clear glass table with metal legs and balls on top.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["7c2bfa826f274377ac21f48d510848c3", "67701617472e4051b95955c596561aac"], "properties": ["glass, metal, balls", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white image of a wine glass", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a clear acrylic foosball table", "a pair of white plastic shoes on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a white motorcycle with wings.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, wings", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["houses, trees, road", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "e098706085a44898abbd549693d12a64"], "properties": ["color, shape, material", "color is black, white, orange"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["resembles, toy, bookshelf", "a, material, clay"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["background, color, white", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["bed, desk, window", "moss, mushroom, grass"], "captions_pred_pc": ["of a black and white drawing of a curved line", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is outside?", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["painting, door, wall", "moss, mushroom, grass"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, pink, eyes", "beige, white, round"], "captions_pred_pc": ["a black and white image of a bear's head", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " of two rocks with ice elements."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, blue, structure", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["a box, a cup, a bottle, a jar", "house, roof, green"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["lighthouse, fountain, crater", "roof, structure, greenhouse"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["house, rock, pond", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["sandbox, sand bucket, wooden blocks", "bedroom, bathroom, bed"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bedroom?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, shape, material", "roof, material, wood"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", " a wooden billiard table with legs."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, material", "legs, material, wood"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a small, white ball", "a black and white image of a pool table"], "question": "which object has legs made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a wooden roof structure with a pink roof."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, house, small", "roof, color, pink"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a green wooden door with a wavy pattern.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9bf4a9a2dedd46af98e310a4b5951e23", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, pattern, material", "a, material, clay"], "captions_pred_pc": ["of a black and white photo of a long, rectangular object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a wooden door royalty free 3d model preview no 3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "b896a0898efe4059a776193c02132129"], "properties": ["color, hand, flowers", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a hand", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small building with a staircase in a room."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["- color is red, blue, pink", "room, staircase, building"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small white house with a staircase and a window."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "9eb88d17310d42dda9e17883e9922525"], "properties": ["water, river, island", "house, staircase, window"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a small room with a staircase"], "question": "which entity is a building?", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, tower, color", "island, mountain, grass"], "captions_pred_pc": ["for a black square on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a person breaking through a brick wall."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["building, tree, plane", "image, brick, wall"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a brick wall?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "243cd2c469984313b1522dca099eefd3"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "color, white, material, ceramic"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", "a 3d white model collection featuring a cannon, house, ship, table with items, ceiling light, and ceiling panel."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "0593a9f144c6410bb3906f5e6467ec81"], "properties": ["earbuds, light, ring", "3d, model, collection"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of an eye on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d printed model of a ship in a bottle"], "question": "which entity is a collection of items?", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small wooden house."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, white, furniture, black", "house, material, wood"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c8936ace72954650b4e2d84246964849"], "properties": ["background, color, white", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a wooden truck with a load of snow and crates, driving on a pile of wood."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "ac1e2dcbe71945d58204f95d16d658b1"], "properties": ["color, shape, material", "load, crates, snow"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "above a 3d image of a bench with a white background"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a truck with a pile of snow on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["912e0b8da1e8496489833d8a8ecffd31", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, color, green", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white map of hawaii on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with a ladder", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- color is white- shape is cube- material is plastic", "wood, board, shelf"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["colorful of a dragon toy.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["8c0ec07322914726ad86cc4885052e08", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, toy, dragon", "flower, color, pink"], "captions_pred_pc": ["above a black and white image of a stingray on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a black and white image of a small dragon toy", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a barrel and a cube together.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, barrel, cube", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "b896a0898efe4059a776193c02132129"], "properties": ["lighthouse, fountain, crater", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a large house/building structure with a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["roof, purple, suspended", "roof, structure, house"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a large white structure"], "question": "which structure has a roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof truss, insulation, suspended ceiling", "door, lock, handle"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a pyramid with blue and pink lines, wires, and mesh.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a3b2db8d5c6044f88b275839d0cd71bd", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a patterned rug", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the pyramid roof royalty-free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["cup, bottle, chessboard", "meat, bread, sausage"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b5afccae993346079483507296fbb029", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["shape is square, material is metal, color is rusty", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d image of a small island in the middle of a lake"], "question": "which object is made of grass", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["yellow, table, roof", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small, snow-covered house."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof trusses, beams, suspended ceiling", "house, snow, cover"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, island, water", "island, mountain, grass"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d image of a small island in the middle of a lake"], "question": "which island has grass?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["apse, roof, floor plan", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["water, boat, rock", "cloak, sword, spear"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a white castle composed of small cubes."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["water, river, island", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["120bf1525e8649d9bdf3a593fe8f5ddc", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["resembles, sculpture, rock", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a piece of paper with dots on it", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a bag with a zipper on it", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock structure with a cave and small hole", "label": 0}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "white of a rhino head with horns."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "8481aade84de47cab1a9accf8067e678"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "image, rhino, head"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "of a penguin skull in black and white"], "captions_pred_image": ["a low poly 3d model of a rock", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image is of a rhino head?", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, gazebo, table", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["light switch, electrical outlet, furniture", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, material, structure", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a modern house"], "question": "which structure has a pool", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, black, blue", "roof, color, yellow"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["hat, sword, gun", "hat, shirt, bearded"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a man with a beard"], "question": "which entity is a man?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["resembles, toy, bookshelf", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a roof, featuring roof truss, insulation, and a suspended ceiling."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "c1462fda08db4a769f68adae5c88cd43"], "properties": ["floor plan, heating system, ceiling light fixture", "roof truss, insulation, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of an arrow pointing to the right"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a white bench with a grid pattern"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a wooden roof structure with a pink roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, material, structure", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of the roof of a building"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a spiral staircase with railings."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["Drawer, Handle, Wood", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small house with a yellow roof and chimney."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "0056e85a243b47a08ddbcd36816cb6ae"], "properties": ["house, roof, toothbrushes", "roof, yellow, chimney"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small house royalty-free 3d model preview no.2"], "question": "which house has a chimney", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " of two rocks with ice elements."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, staircase, table", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a sword with a wooden handle."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "d42eec2b8e7644ec9ededcf9f325faad"], "properties": ["color, light, handle", "handle, material, wood"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a knife on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a black and white image of a sword"], "question": "which handle is made of wood", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " of an egyptian sarcophagus."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["low poly, llama, kangaroo", "sarcophagus, material, wood"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which is not a sarcophagus", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, containers", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a large white box"], "question": "which building is whiter", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, white, yellow, roof, metal", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", " a white castle composed of small cubes."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["earbud, earpiece, earpiece", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a stone wall featuring carvings and statues."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["a, bird, hook", "carving, statue, wall"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d image of a group of statues on a wall"], "question": "which entity has a wall?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["house, color, white", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["ceiling, light, desks", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, color, shape", "a, color, white"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a desk and chair"], "question": "which entity is not white?", "label": 0}, {"captions": [" of a slice of bread and knife on a cutting board.", " a four-legged metal workbench with shelves."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["bread, knife, board", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "for a black and white illustration of a cross"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["roof, room, ceiling", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity has a sphere that is a different color than the rest?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a spider-like creature with long arms and legs."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof trusses, beams, suspended ceiling", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a wooden barrel.", "white ceramic urn with a red lid."], "sample_ids": ["77ceb4db6ddc4a6c8c4a83ab1519e78b", "ec15c810a38d4d45a36db910ecb2bcf8"], "properties": ["material is wood, shape is barrel, color is brown", "color, white, lid, red"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white photograph of a vase"], "captions_pred_image": ["a 3d model of a gray and white barrel", "a white ceramic vase sitting on top of a gray surface"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a white knight's helmet.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9d89aae6a7c84bbc97c63c06055ecedd", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, helmet", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a dandelion on a white background dandelion illustration on a white background illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a person's head wearing a helmet", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["two white spheres in a .", "two white spheres in a ."], "sample_ids": ["1c02212a35134545ab63ab180d629c31", "1c02212a35134545ab63ab180d629c31"], "properties": ["two, spheres, white, in, a", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white illustration of two spheres", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a white ball on a gray background", "a 3d model of a white ball on a gray background"], "question": "which entity has two white spheres in a.?", "label": 0}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a house with a wooden-framed roof structure."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, plane, town", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a black and green sphere with blue lights.", " of two rocks with ice elements."], "sample_ids": ["de9edcb24820415da05370c37bb908c3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, light", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white map of a city with dots on it royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of the sun in the sky", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "c3a82df41875402285608ef13a55df57"], "properties": ["a, bird, lake", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, table, ceiling", "floor, wall, roof"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" of a wooden cabinet, shelf, and small house in a furnished room.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["854757ca755240f8b04576d899349151", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["cabinet, room, shelf", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a toothbrush in the shape of the letter 'l' 3d illustration on a white background royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a living room with a couch, coffee table, and television", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a futuristic, small spaceship with two propellers, resembling a jet fighter.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["832a022cdcc74763b0571e04af4e592b", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["resembles a jet fighter, futuristic, small", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a person's hand holding a pencil", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a lego model of a futuristic airplane", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small house with a red roof.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["085db9059b744673b5623b5338e02196", "9968e06a62e8487ea33460e640abc573"], "properties": ["roof, red, house", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white pedestal sink with blue water.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["b4ad53e3057f4922b273f86e7adb3466", "a17477b445b3443189dad22f768b888b"], "properties": ["water, sink, color", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white drawing of a letter 'l'", "a black and white image of a square with dots"], "captions_pred_image": ["a white pedestal sink royalty free 3d model preview", "a 3d model of a small building with a balcony"], "question": "which object has a roof?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a white and blue building with a black roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, structure, greenhouse", "color, white, blue, roof, black"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["backrest, curved, yes", "color, black, visor"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a black motorcycle helmet with a visor on top"], "question": "which object has a visor", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house with stairs and a roof."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["hat, sword, gun", "roof, stairs, house"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["orange, forklift, parking lot", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a cell phone", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a modern house"], "question": "which has a pool", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "a17477b445b3443189dad22f768b888b"], "properties": ["color, red, green, blue", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "97e000ff41094665afd94ea565da8b13"], "properties": ["tiers, building, stairs", "roof, material, wood"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of an egyptian sarcophagus."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["image is a sculpture of an angel on a wall", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["roof, truss, structure", "metal, cross, clock"], "captions_pred_pc": ["of a metal grate on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a piece of furniture"], "question": "which object has a clock on it", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small building with a staircase in a room."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["color, white, black, white", "room, staircase, building"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of the letter l"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a staircase on a white surface"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, house, wooden", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a large metal building with a roof and truss structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "b85a99699ccd4bcba213322113bb253d"], "properties": ["building, roof, white, cubes", "roof, truss, structure"], "captions_pred_pc": ["above a black and white image of a map", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a long metal fence"], "question": "which building has a roof with trusses", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a white sofa, chair, and box."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "4c59733ebd634594a921b7ace60e4142"], "properties": ["graffiti, wall, wheelbarrow", "sofa, chair, box"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a 3d model of a white chair"], "question": "which entity has a box?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a large building with a roof and windows."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "32d1fbd3ee91426882290305f70021e6"], "properties": ["building, roof, white, cubes", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a map", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof and windows", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["shape is turtle, color is green, white", "striped, white, black"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a clay pot with holes in it."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["door, roof, pool", "hole, material, clay"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small white house with a roof."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["frame, beams, trusses", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c8936ace72954650b4e2d84246964849"], "properties": ["color, white, containers", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of pink", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", "star wars stormtrooper "], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, texture", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs.", "a white 3d printed object featuring a ring with multiple holes, a helmet with a hole, and a bowl with floral designs."], "sample_ids": ["62fb765ff1a64152b7721a2dd3a19736", "62fb765ff1a64152b7721a2dd3a19736"], "properties": ["ring, helmet, bowl", "ring, helmet, bowl"], "captions_pred_pc": ["a black and white image of a circle made up of tiny dots", "a black and white image of a circle made up of tiny dots"], "captions_pred_image": ["a 3d printed ring in white 3d printed material", "a 3d printed ring in white 3d printed material"], "question": "which object has a hole in it?", "label": 0}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "a17477b445b3443189dad22f768b888b"], "properties": ["computer desk, laptop, monitor", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small white box with a shelf and a hole in it."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["room, door, shelf", "a, hole, shelf"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white box on a gray background"], "question": "which entity has a hole in it?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["a, color, white", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a roof and beams."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["roof, stairs, house", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a building with a roof"], "question": "which house has a roof with beams", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a white of a man with arms outstretched."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, roof, block", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["- material is plastic- color is white- shape is cylinder", "table, plant, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a side table with a potted plant sitting on top of it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["low poly, llama, kangaroo", "house, rock, bird"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, yellow, black", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a large metal building with a roof and truss structure."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "b85a99699ccd4bcba213322113bb253d"], "properties": ["water, boat, rock", "roof, truss, structure"], "captions_pred_pc": ["a black and white illustration of a surfboard", "of a metal grate on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a large orange pumpkin."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["building, roof, white, cubes", "orange, large, pumpkin"], "captions_pred_pc": ["above a black and white image of a map", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["34ebe81ae93841ca829efd15aee4d8c1", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["moss, mushroom, grass", "rusty, warning, metal"], "captions_pred_pc": ["for a black and white illustration of a cloud on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, red, blue, structure", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a wooden staircase with a railing and table."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "956247bea850458199c651037d4b1d7f"], "properties": ["house, table, chair", "railing, table, staircase"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a table with a staircase"], "question": "which staircase has a table", "label": 1}, {"captions": ["\"multiple white cubes arranged in a row on a gray background.\"", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["17c8222d4ce04e518117078e7de6aaed", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, background, white", "color, background, white"], "captions_pred_pc": ["a black and white image of a box with the words 'box 2' and 'thoughtful'", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["an image of a white background with a few small cubes on it", "an image of a white background with a few small cubes on it"], "question": "which entity has a white background?", "label": 0}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " an old lantern with moss on it."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "62925f26fd624310bd6b31136fe8e706"], "properties": ["- color is red, blue, pink", "moss, lantern, old"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of an old lantern"], "question": "which lantern has moss on it", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "6b745457e06840119058883b35f78f58"], "properties": ["building, pattern, field", "roof, color, blue"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": ["a featuring multiple animal heads, including a fox, chihuahua, and cat with ears.", " of two rocks with ice elements."], "sample_ids": ["f37b1515c52248d887b9b415576f5253", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["animal, head, fox, chihuahua, cat", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a butterfly shaped object", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a fox's head", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a white and yellow table with yellow legs and a metal roof structure."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "a71c43af3c944bf5b6d12375f7d54811"], "properties": ["color, material, structure", "color, white, yellow, roof, metal"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white table with multiple cubes"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a flat roof structure."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, color, purple", "roof, flat, structure"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", "3d object featuring a blue and white tile, mattress, book with a sign, and a hanging notice sign, all representing god's family faith in action."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "4b1d361630b949889282755fb6fb46bc"], "properties": ["color, tail, cord", "Object, color, white"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of a line of dots on a white background"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "god's family faith in action"], "question": "which object is white", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "68e0d097351843a3980421f2ae624c59"], "properties": ["background, color, white", "white, top, writing"], "captions_pred_pc": ["a black line on a white background", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a table with writing on it and a mouse on top of it"], "question": "which object has a white top", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "839a873262a544c9906f3f5799ca4648"], "properties": ["color, shape, material", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["graffiti, chinese writing, door", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "9d03ee6c9fcc458e9485aa7cb0d1f4cb"], "properties": ["color, shape, and material", "a, city, train"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a toy train set on a table"], "question": "which entity is a city?", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a wooden billiard table with legs."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, image, subject", "legs, material, wood"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a black and white image of a pool table"], "question": "which entity has legs made of wood", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", "a white of a man with arms outstretched."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a modern wooden headboard with a metal frame and a white wall with a black strip.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bcaadd18d8b94e91a5f9d8ff39dc9b79", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["headboard, wall, strip", "island, terrain, water"], "captions_pred_pc": ["of a black and white image of a long black lace scarf", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a headboard in white and black", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "c3a82df41875402285608ef13a55df57"], "properties": ["color, toilet, robot", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a camera with a blue screen and lens.", " a large metal building with a roof and truss structure."], "sample_ids": ["904be230d5ac43a6a9604abc946febc7", "b85a99699ccd4bcba213322113bb253d"], "properties": ["screen, lens, color", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a camera on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a digital camera royalty-free 3d model preview no 2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a wooden-handled dagger", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1e460892f8f14d9bba9eb5c9e0491ed2", "a17477b445b3443189dad22f768b888b"], "properties": ["handle, material, blade", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a screw with a screwdriver", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, red, pink", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "654c49e07bb54e6b94637b5f7b65bf08"], "properties": ["floor, table, light", "floor, table, wall"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white illustration of a coffee cup, a spoon, and a knife on a black background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a bench on a tiled floor royalty free 3d model preview no.3"], "question": "which floor is tiled", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, orange, leather", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, green, orange, star", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " of a person breaking through a brick wall."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["furniture, staircase, torn-apart", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a white human skull with broken bone elements."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["- material is plastic- color is white- shape is cube", "color, white, skull"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a human skull in white"], "question": "which is not a skull", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small white archway structure resembling a building."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "5ad02458cf394134a902e25001d2ffef"], "properties": ["roof, metal, white", "structure, building, archway"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "for a black and white illustration of a castle on a hill"], "captions_pred_image": ["a 3d model of a barn", "a 3d rendering of a white object on a white surface"], "question": "which structure is a building?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a red, blue, and green striped tower building."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "8668f9e9d1a64b86b31f260b8056cd19"], "properties": ["roof, room, ceiling", "color, red, blue, green"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers"], "question": "which building has a red", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["yellow, table, roof", "a, landscape, sand"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house with wooden framing and trusses."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["roof trusses, beams, suspended ceiling", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house under construction"], "question": "which entity has a wooden frame?", "label": 1}, {"captions": [" of a wooden table with metal legs and frame.", " a small house with stairs and a roof."], "sample_ids": ["d6d6f13cda4e485fbed0dcd19b9c9314", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["metal, legs, frame", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a patterned rug", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a white wooden table", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["color, red, blue, green", "roof, structure, wall"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a building with a roof"], "question": "which building has a roof structure", "label": 1}, {"captions": [" of a house with a pink roof.", " of a crab holding a rubik's cube."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["color, roof, pink", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a green mountain with trees and grass.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["08fb23bdc67b4b0ba5fc64ea5c97e5f7", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["mountain, grass, tree", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black ink blot on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a mountain with snow on it", "a black and white image of a person wearing a hat"], "question": "which entity has more candy", "label": 1}, {"captions": ["a 3d pink spiky spherical flower.", " a potted christmas pine tree."], "sample_ids": ["039a3fc74e39450883c46acbe2f57476", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, texture", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a christmas tree in a vase"], "question": "which entity is green", "label": 1}, {"captions": [" various fruits and vegetables.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, size", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a sponge-like object", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a 3d model of a throne with a tree on it"], "question": "which entity has more stairs", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, number", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["image is a sculpture of an angel on a wall", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d rendering of a house on a rock"], "question": "which image shows a bird on a rock?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "water, boat, rock"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a purple chair with holes in it."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "833151c8e0f4489a9fa966635a948452"], "properties": ["a, hole, shelf", "color, purple, holes"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a white chair"], "question": "which object has holes in it", "label": 1}, {"captions": [" a blue and pink spiked fish.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["60032d1c1dcc43129b6e54bac3ebf68a", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, shape, size", "color, silver, white"], "captions_pred_pc": ["a black and white image of a spiky brush on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of an object with spikes", "a 3d model of a silver ball on a gray background"], "question": "which object is white?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, background, arrows", "a, material, clay"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a potted christmas pine tree.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, color, green", "s, laptop, printer"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a black and white image of an electronic device"], "question": "which entity is not a tree?", "label": 0}, {"captions": ["a 3d white box with an open door and lid.", " a house with wooden framing and trusses."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["- color is white - shape is box - material is plastic", "frame, trusses, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", " a clay pot with holes in it."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["polygonal, helmet, triangular details", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["texture, spikes, eyes", "a, material, steel"], "captions_pred_pc": ["a black and white drawing of a flower", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a large metal structure"], "question": "which entity is made of steel", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["red, mouse, handwriting", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with stairs and a roof.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, stairs, house", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, white, handle, armrest", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a set of three yellow taxi cabs."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "4c37c6dc7d774485aaf7b8cd3754e889"], "properties": ["yellow, table, roof", "yellow, cab, set"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a black ink pen on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a 1950s american car royalty free 3d model preview no.2"], "question": "which entity has a set of three yellow taxi cabs?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, texture", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " of two rocks with ice elements."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["cup, bottle, chessboard", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a four-legged metal workbench with shelves."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["brown, paint, tape", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["building, color, black and white", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a character wearing glasses and a hat."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["- color is red, blue, pink", "hat, glasses, character"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a graffiti-covered train, bench, wall, and skateboard."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "6de9fcac063d45df9424decdc215b379"], "properties": ["chair, table, refrigerator", "graffiti, bench, wall"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white image of a boat"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a graffiti-covered wall in a black and white photograph"], "question": "which entity has a bench", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["resembles, toy, bookshelf", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["staircase, railing, building", "building, plane, room"], "captions_pred_pc": ["a black and white photograph of a light switch", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" an old castle in a grassy field.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["field, grass, castle", "house, table, chair"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d rendering of a small white table with a chair"], "question": "which entity is indoors?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, brown, flat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a table and stool", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["purple speech bubble and circle", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, size", "gold, ring, animal"], "captions_pred_pc": ["a black and white speech bubble on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, purple, beams", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a large metal building with a roof and truss structure."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, green, squirt gun", "roof, truss, structure"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a white and yellow sword with a yellow handle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["776a9df9cead4b70b3480ef9fecadaea", "a17477b445b3443189dad22f768b888b"], "properties": ["color, handle, blade", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["background, color, white", "house, roof, blue"], "captions_pred_pc": ["a black line on a white background", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a white sofa, chair, and box."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "4c59733ebd634594a921b7ace60e4142"], "properties": ["a, bird, lamp", "sofa, chair, box"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["bedroom, bathroom, bed", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small purple plastic chair with holes."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, light, jewels", "color, plastic, purple"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hat, pants, shirt"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house with a blue roof.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, color, blue", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["- material is plastic- color is white- shape is cylinder", "house, fence, dog"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white featuring a toilet, robot, kitchen appliance, golf cart, and suitcase.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["eddc90c61d6d40a5bc1c1830e58fd568", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, toilet, robot", "box, handle, gun"], "captions_pred_pc": ["a close up of a plastic sponge on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a white 3d model of a toilet seat with a hose attached to the back of it", "a 3d rendering of a metal box with a handle"], "question": "which entity has a handle?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "cafc467aff2643e8b70149c4944263ee"], "properties": ["a box, a cup, a bottle, a jar", "wing, knife, boat"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small wooden house with a green roof."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, red, pink", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["buildings, houses, grass", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["d6087023095446fbadef1721478373b2", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["door, roof, window", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, black, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["roof, green, tiled", "building, room, sky"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["castle, island, house", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["yellow, table, roof", "throne, stairs, tree"], "captions_pred_pc": ["a black and white drawing of a floor plan", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne with stairs and a tree?", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, building, staircase", "island, terrain, rocks"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a human bone", " of a wine corkscrew"], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "07047b273add4f6fb2075fd176a50cd9"], "properties": ["a, b, c", "a, type, corkscrew"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white image of a corkscrew"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a wine bottle opener"], "question": "which object is a type of corkscrew", "label": 1}, {"captions": ["a black rock with writing on it.", " a green circuit board."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, black, writing", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "of the item in the image"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of an electronic component"], "question": "which object is made of a material that is not a rock?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "c3a82df41875402285608ef13a55df57"], "properties": ["ceiling, light, desks", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, size", "gold, ring, animal"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "above a black and white image of a shark"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d sculpture of a bird with its wings outstretched"], "question": "which entity is a ring?", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["color, shape, size", "paper, hole, sign"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, handle, zipper", "house, roof, blue"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small white building with stairs and a white table."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, material, structure", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small white box with a shelf and a hole in it."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "d023ae78bc5a436eaba13c5ecdd45c56"], "properties": ["houses, trees, road", "a, hole, shelf"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a dotted square on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a white box on a gray background"], "question": "which entity has a shelf?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "room, furniture, window"], "captions_pred_pc": ["a black mascara brush on a white background", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d image of a room with a person in it"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white of a man with arms outstretched."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["background, color, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a cat's head", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["black, white, laptop", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a white of a man with arms outstretched."], "sample_ids": ["55b26130f1514032be078e13fd982905", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a clay pot with holes in it."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["bed, desk, window", "hole, material, clay"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a clay pot with holes in it."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["painting, door, wall", "hole, material, clay"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a deer on a grassy hill.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, hill, deer", "roof, trusses, beams"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a roof structure"], "question": "which entity is a building?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["building, door, clock", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock structure?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "990f06da2ba4488da8371f68da6b4523"], "properties": ["house, roof, toothbrushes", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small house with a tree and a rock."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["house, staircase, window", "house, tree, rock"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["floor, staircase, table", "floor, stairs, bathroom"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["floor plan, ceiling light, color", "building, ceiling, kitchen"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a white knight's helmet."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9d89aae6a7c84bbc97c63c06055ecedd"], "properties": ["color, shape, and size", "color, white, helmet"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a dandelion on a white background dandelion illustration on a white background illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a person's head wearing a helmet"], "question": "which entity is a helmet?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "white balloon floating in the air."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "033a61d66f7646ceaac357b502a5f5dc"], "properties": ["color, light, jewels", "color is white, shape is balloon, material is air"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "in 15 words or less a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a white balloon on a gray background"], "question": "which object is floating in the air", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a wooden staircase with a railing and table."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "956247bea850458199c651037d4b1d7f"], "properties": ["house, tree, pool", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, plane, sky", "arrow, red, white"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a gun with a blue handle."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["color, red, green, yellow", "color, handle, blue"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a gun on a gray background"], "question": "which gun has a blue handle", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, roof, tray", "paint, rust, concrete"], "captions_pred_pc": ["a black and white image of a metal object", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a concrete wall"], "question": "which entity has a roof that is rusty?", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "09f2cf267e954c958828325067bcc36a"], "properties": ["Steel, Color, Yellow", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a building", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a black and white image of a piece of dirt on the ground"], "question": "which entity is made of rocks", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a house with wooden framing and trusses."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["color, white, logo", "frame, trusses, wood"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " the white text \"ekberkaslan\" with a row of white cubes and a numbered box."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "87ee30d475f34b799c24bf7ef3a7b540"], "properties": ["- color is white- shape is cubes- number is 1", "- color is white- shape is cubes- number is 1"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a close up of a black and white striped scarf"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d image of the word ebercaskalan on a white background"], "question": "which entity has a row of white cubes and a numbered box?", "label": 0}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, room, ceiling", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d rendering of a small house with a covered porch"], "question": "which house has a ceiling mounted air conditioner", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a white hand, ear bud, teddy bear, earpiece, and utensil."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "1c59287d496f4da6b245a01d25a7e2a4"], "properties": ["color, material, shape", "earbud, earpiece, earpiece"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white drawing of a hand holding a cup"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a white object on a grey background"], "question": "which object has more earpieces", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["chair, table, refrigerator", "color, sphere, molecule"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, shape, text", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a screw", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["collection, moose, skull", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a sword with a yellow handle and white blade.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ee82fbc66d39467b8f34b91493053e66", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, handle, blade", "a, material, clay"], "captions_pred_pc": ["of a black and white image of a pen on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a sword on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, house, small", "structure, roof, pitch"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": ["a pixelated eagle with a yellow and white head and yellow beak.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9ce77b4cc05c4060a74b8f2568e6bbe8", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["eagle, head, beak", "house, table, chair"], "captions_pred_pc": ["a black and white image of a knife on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d image of a penguin in a pixelated world", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, tree, rock", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, bird, lamp", "box, paper clip, lock"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a yellow and blue toy submarine."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, yellow, blue"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a submarine toy"], "question": "which object is yellow", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, table, ceiling", "building, material, stone"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small white box with a green light.", "a white glass beer mug."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, light", "color, white, glass"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "cafc467aff2643e8b70149c4944263ee"], "properties": ["costume, color, black", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity is a boat?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "09f2cf267e954c958828325067bcc36a"], "properties": ["room, door, shelf", "island, terrain, rocks"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an empty room", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small wooden house with a green roof."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["shape, bathroom, refrigerator", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a house with a ladder"], "question": "which structure has a green roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a white of a woman with her arms outstretched."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["runner, bed, bench", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a red sphere, resembling a ball, balloon, or lipstick.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["f09589903f6146dfb623a6c1a07c5bfa", "aae2c42740a04fd68068f5707111d26f"], "properties": ["red, sphere, resembles", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a black and white image of an object on a white background", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a black balloon floating in the air on a gray background", "a 3d model of a marble sculpture of an angel"], "question": "which image is a sculpture of an angel on a wall?", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a metal structure", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, shape, gun", "axe, handle, wood"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "d49d8ed244094349a99e4faca05e0690"], "properties": ["house, staircase, window", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "d49d8ed244094349a99e4faca05e0690"], "properties": ["white, rock, shell", "low poly, plant, white"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a plant growing out of a rock"], "question": "which object is whiter", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- color is white- shape is cubes- number is 1", "a, material, clay"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small purple plastic chair with holes.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["fe2bf0f8f5c64dd6bac3e2da0d1b89d0", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, plastic, purple", "throne, stairs, tree"], "captions_pred_pc": ["this image may contain clothing apparel accessory purse bag and handbag", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["3d model of a chair royalty free 3d model preview no 3", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["red, mouse, handwriting", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "46903bf029934b1989bc062dcb0a5531"], "properties": ["water, river, island", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a house with a wooden-framed roof structure."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["building, tree, plane", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is cylinder, color is white, material is plastic", "metal, cross, clock"], "captions_pred_pc": ["of a spike on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, pattern, wall", "table, staircase, light"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["hat, bag, blanket", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["rusty, sink, graffiti", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a room with dots"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small house with a tree and a rock."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["hat, sword, gun", "house, tree, rock"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "745fed115c5343dab9d7f0c389c98902"], "properties": ["arm, jacket, mannequin", "costume, color, black"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["plane, ship, bird", "a, material, clay"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a small white building with stairs and a lid."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["earbuds, light, ring", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a wooden object, including a board, piece of wood, box, and shelf.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["c986212445a1466ca7be7b5ac6bea729", "b896a0898efe4059a776193c02132129"], "properties": ["wood, board, shelf", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of snowflakes on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a piece of marble", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["Drawer, Handle, Wood", "house, lake, pool"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["wing, knife, boat", "Wheels, laptop, robot"], "captions_pred_pc": ["a black umbrella on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a house with a wooden-framed roof structure."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, tree, pool", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "096e42b466ec438d95c5d89a85191534"], "properties": ["house, roof, toothbrushes", "white, rock, shell"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " of a wooden windmill with a red roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, door, window", "roof, color, red"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, yellow, chimney", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, pier, stairway", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a character wearing glasses and a hat."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, white, black, white", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat and glasses?", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, red, green, yellow", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["furniture, staircase, torn-apart", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "18e392c5360146eda498c5edab25b15c"], "properties": ["flag, stand, color", "frame, beams, trusses"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white image of a banner on a stand", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a small white house with a roof."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "roof, color, white"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of a building with a white roof"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color, orange, leather", "metal, cross, clock"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white image of an object on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "46903bf029934b1989bc062dcb0a5531"], "properties": ["earbud, earpiece, earpiece", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "a close up of a black object on a white background"], "captions_pred_image": ["a white object on a grey background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a featuring a robot, a black and white box, a man with a suitcase, a door, a large white building, and a white shelf.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["4be12bf79ead47a68cd67fc01a6e5c8c", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["a, door, suitcase", "buildings, houses, grass"], "captions_pred_pc": ["a black and white drawing of a dog in a cage", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a robot standing in front of an open door", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["a, ball, mushroom", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a brick wall with grass.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["53f2d948091f417cb580e22469c94db2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["brick, grass, wall", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration of an underwater scene", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a brick wall and a puddle", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["black, white, coffee table", "wood, board, shelf"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a stone wall featuring carvings and statues.", " of two rocks with ice elements."], "sample_ids": ["42f663140f834d1ab5f95cd8a5ad04b3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["carving, statue, wall", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d image of a group of statues on a wall", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small white building with stairs and a white table."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, shape, height", "building, stairs, table"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof trusses, beams, suspended ceiling", "roof, truss system, framing"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of the roof of a house"], "question": "which entity has a roof with truss system", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a small white building with stairs and a lid."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, gazebo, table", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a green mountain with trees and grass."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["tiers, building, stairs", "mountain, grass, tree"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a large house/building structure with a roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "82859e4c6d4e4bbea94b6252bef1d398"], "properties": ["background, color, white", "roof, structure, house"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white photograph of a metal sculpture"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a large white structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a child's room in a small house with windows.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["room, house, windows", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a potted plant on a wooden table or shelf."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["location, highway, train station", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, windows, building", "door, lock, handle"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " of a barrel and a cube together."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "a, barrel, cube"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a stone wall featuring a statue and a window.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a, window, statue", "hat, skull, bread"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["- material is plastic- color is green- shape is box", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a roof structure"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["floor plan, heating system, ceiling light fixture", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["a, desk, laptop", "house, hill, forest"], "captions_pred_pc": ["a black and white image of a piece of furniture", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "red heart-shaped object."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is wood - color is white - height is 1.8 m", "shape, heart, red"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a heart shaped object"], "question": "which object is red?", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["eead0dd97023415da05c97df37337473", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, balloon, color, blue", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white van with a logo on the side.", " of a chevrolet express black van."], "sample_ids": ["13e79a7ee023484da1807e88e006a820", "09d718c9cf72401b8534d265a06a803f"], "properties": ["color, logo, side", "color, black, van"], "captions_pred_pc": ["a black and white illustration of a scissors", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white photo of a white van", "a 3d model of a van with a roof rack royalty free 3d model preview no 1"], "question": "which van is black", "label": 1}, {"captions": [" of a bench and lamp post.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["ac6e6b5ee63840a484b5ad2508675de1", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["A, bench, lamp post", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a bench and a street lamp", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["3d model of a street lamp and bench royalty free 3d model preview no.3", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, light, handle", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d rendering of a metal box with a handle"], "question": "which entity has a gun inside a box?", "label": 1}, {"captions": [" a small house with a roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, house, small", "house, fence, playground"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["house, roof, blue", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d rendering of a table and stool"], "question": "which house has a brown roof", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["frame, beams, trusses", "building, color, black and white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["40921ffd69db479294554d261daf3035", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["floor, railing, staircase", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a black and gold pistol.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["402b57a5e32540b4938db1a9d3976220", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, black, gold", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a toothbrush", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a gun royalty-free 3d model preview no.", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "1da865c75a5e4a57a17652975dae5474"], "properties": ["apse, roof, floor plan", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a room", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green and black robot with cube-like features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a spiral staircase with railings."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["graffiti, bench, wall", "railings, staircase, spiral"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["ceiling, light, desks", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a 3d low poly model of an orange with a green leaf and stem.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["cdd918943a124d3f94859d9f67ab8e3e", "b896a0898efe4059a776193c02132129"], "properties": ["3d, low, poly", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a hexagonal shape with dots", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a paper airplane flying in the air", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "bf18bfd89efd43389781050230467d58"], "properties": ["frame, roof, trusses", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["chair, table, refrigerator", "door, lock, handle"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, building, staircase", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "e2645ac544844f3c981203134a99c30c"], "properties": ["- material is wood, metal, metal", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "40921ffd69db479294554d261daf3035"], "properties": ["staircase, railing, building", "floor, railing, staircase"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a spiral staircase"], "question": "which staircase has a wooden floor", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, material, structure", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a table with stairs"], "question": "which entity is a table?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["bed, desk, window", "house, tree, pool"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, shape, size", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 0}, {"captions": ["a purple and blue sword with gold accents.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, material, pattern", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["painting, door, wall", "house, tree, pool"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, truss, structure", "roof, beams, frames"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a wooden structure"], "question": "which entity has a roof with beams?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a wooden shed with a gray roof."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, color, purple", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, text", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a green and yellow striped tank-like container.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["3b54b381174e4899b4b2ddc9de55eb7b", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["color, shape, material", "a, color, red"], "captions_pred_pc": ["a black and white square made up of many small dots on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a gray and white storage container on a white background", "a 3d model of a castle with two towers"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["giraffe, bench, flower", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["floor, ceiling, poles", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a roof"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a wooden table with metal legs and frame."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color, shape, gun", "metal, legs, frame"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a patterned rug"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, background, white", "stair, table, chair"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, roof, tray", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a metal object", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a computer with a green screen, keyboard, and white box."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "fb1e5a04ef4644f98219e1d5d52ab073"], "properties": ["color, leg, tail", "screen, keyboard, box"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a vintage computer royalty-free 3d model preview"], "question": "which entity has a green screen", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, metal, white", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a barn", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a mouse wearing a top hat and a teddy bear holding a spoon.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["887e410d07854396b563325ae1929583", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, mouse, bear", "hat, watch, clock"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a mouse wearing a top hat and bow tie", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, material, shape", "building, floorplan, gym"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor, staircase, balcony", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["resembles, octopus, squid, spider, robot", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "6b745457e06840119058883b35f78f58"], "properties": ["color, white, containers", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "6b745457e06840119058883b35f78f58"], "properties": ["color, white, yellow, roof, metal", "roof, color, blue"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a small wooden house."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["floor, staircase, railings", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a light switch", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small orange piano with legs.", " a small white house with a roof."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color is orange, size is small, legs", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "bded33af34104b9686b845dfd18309a9"], "properties": ["house, staircase, table", "table, staircase, light"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase that is integrated into the table?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a tree stump and rock with flowers on them."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "3f74af45aeeb43ee95e2c8a5e3afeae6"], "properties": ["screen, monitor, stand", "flower, rock, tree stump"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "above a black and white drawing of a flower on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st"], "question": "which object is more likely to be found in a garden", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small white house with windows and a black lid."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "4b40af369c1149949f5ccb68becd8430"], "properties": ["graffiti, bench, wall", "white, windows, lid"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of dots on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a white house with three windows"], "question": "which object has a lid?", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["- material is stainless steel- color is silver- shape is round", "gold, ring, animal"], "captions_pred_pc": ["of a black ribbon on a white background", "above a black and white image of a shark"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a 3d sculpture of a bird with its wings outstretched"], "question": "which object is made of gold", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, tree, rock", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, plane, small plane", "floor, stairs, bathroom"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white castle composed of small cubes.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d0d00e27b8744e29a0a869c5ca277197", "b896a0898efe4059a776193c02132129"], "properties": ["composed of, white, cubes", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of the letter 'k'", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a castle made of white cubes", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["white marble textured cube.", "a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\""], "sample_ids": ["387f392ce11941468c27c9076e409e31", "34a49861e7744acfb71de471a755e917"], "properties": ["texture, color, shape", "text, material, shape"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white image of a metal bar with text on it"], "captions_pred_image": ["a 3d model of a white marble cube", "a 3d rendering of a marble slab with text on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a wooden billiard table with legs."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, number", "legs, material, wood"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": ["a 3d green toy dinosaur with a purple hat, horn, and accents, featuring a purple flower.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["f8cfe5430a8a4431aacf32f49b20220d", "b896a0898efe4059a776193c02132129"], "properties": ["color, hat, flower", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the human liver 3d illustration of the", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a purse on a white background royalty-free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a white castle composed of small cubes."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of cubes", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black mascara brush on a white background", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["hat, pants, shirt", "roof, trusses, beams"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a roof structure"], "question": "which entity has a roof", "label": 1}, {"captions": [" a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["e34088fc7b5344c4ab29fef067750225", "e34088fc7b5344c4ab29fef067750225"], "properties": ["sphere, pedestal, statue", "sphere, pedestal, statue"], "captions_pred_pc": ["the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a sculpture on top of a pedestal", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a blue and white sphere on a pedestal", "label": 0}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", " a small blue robot with a windmill."], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["costume, color, black", "color, blue, robot"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d model of a wind turbine"], "question": "which robot is blue", "label": 1}, {"captions": [" a red and brown rock formation with a broken tree branch.", " a house with a roof and beams."], "sample_ids": ["c29d48d320c04ed1bf5aafe0a3df3d78", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, texture", "roof, beams, house"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d image of a rock formation on a snowy surface", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "18e392c5360146eda498c5edab25b15c"], "properties": ["lighthouse, fountain, crater", "frame, beams, trusses"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a building under construction"], "question": "which entity has a frame", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["hat, glasses, character", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, text", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small white building with stairs and shelves."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "9e1f64d4fd514059be934077717536dc"], "properties": ["apse, roof, floor plan", "building, stairs, shelves"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small house on a hill in a field."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, fence, dog", "house, hill, field"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a small green and white 3d teapot in the shape of a turtle.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["8df8b28138e040a89303e91518b09d59", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["shape is turtle, color is green, white", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object is white", "label": 1}, {"captions": [" a small house on a hill in a field.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["bd873071252047d38160c4a5fdd2c1b7", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, hill, field", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a small house", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a green mountain with trees and grass."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["- color is red, blue, pink", "mountain, grass, tree"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a roof and beams."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, grass, moss", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", "a featuring a city, blue and purple lamp, purple and yellow spaceship with three spheres, and a purple and blue castle."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "097c2f404b6c45c98da55ed95cc24f72"], "properties": ["a, b, c", "spheres, lamp, city"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white photograph of a turtle in the shape of a molecule"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a futuristic spaceship"], "question": "which entity has a city?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hat, cup, bowl", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "c3a82df41875402285608ef13a55df57"], "properties": ["shape is cylindrical, color is silver, material is metal", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", "a white of a woman with her arms outstretched."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["a, b, c", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "f1b557775310478893242180defa4d80"], "properties": ["color is white, yellow, plastic", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " featuring a chair, table, and refrigerator."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["backrest, curved, yes", "chair, table, refrigerator"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a chair, a table, and a refrigerator"], "question": "which entity has a table?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["bed, desk, window", "meat, bread, sausage"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["color, blue, green, yellow, blue", "lamp, harp, bowl"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a harp in a white room"], "question": "which object is not a harp?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a black and white striped box."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["roof, windows, building", "color, black, white"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, purple, beams", "roof, structure, suspended"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a house with a metal roof"], "question": "which roof is more detailed", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a large building with a roof and windows."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "32d1fbd3ee91426882290305f70021e6"], "properties": ["background, color, white", "roof, windows, building"], "captions_pred_pc": ["a black line on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, air conditioner, house", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of the roof of a building"], "question": "which house has a roof with trusses and wooden ceiling beams", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a wooden shed with a gray roof."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["books, paper, lamp", "roof, color, gray"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a white castle composed of small cubes."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["stacked, racks, toy train", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, white, railing, black", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a building under construction"], "question": "which structure has a frame?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small wooden house."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, truss, lamp", "house, material, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a white castle composed of small cubes."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, and material", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", "two white spheres in a ."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "1c02212a35134545ab63ab180d629c31"], "properties": ["floor, ceiling, poles", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a white ball on a gray background"], "question": "which object is in a?", "label": 0}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a metal building with a purple roof and cage structure."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "cbc10fb816034537b052e7c8fb75c4a6"], "properties": ["color, roof, tray", "roof, purple, structure"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white image of a bench"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a building with a metal roof"], "question": "which roof is purple", "label": 1}, {"captions": [" a small house with a red roof.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["085db9059b744673b5623b5338e02196", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["roof, red, house", "table, stairs, ladder"], "captions_pred_pc": ["a black and white dotted square on a white background", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a potted christmas pine tree."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, material", "a, color, green"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a christmas tree in a vase"], "question": "which entity is green", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small white airplane flying in the air."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "747fb98f64794cdd96486debaf20a02c"], "properties": ["building, plane, room", "airplane, color, white"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a small airplane"], "question": "which plane is white", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a house with a roof and beams."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["texture, spikes, eyes", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a building with a roof"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a white sculpture, resembling a horse and paper plane, on a gray background."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "179b4438edfc4a43a27a83784f38ff4b"], "properties": ["resembles, octopus, squid, spider, robot", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white image of a sculpture in the shape of a bird"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d printed sculpture of a horse's head on a gray background"], "question": "which entity is white", "label": 0}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, head, white and brown", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a tree stump with roots.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["fa6e88ba438f4597a7230789124c8147", "c3a82df41875402285608ef13a55df57"], "properties": ["root, tree, stump", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a galaxy", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a tree stump in the middle of a field", "a white plastic object on a gray background"], "question": "which object is not a tree stump?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "c3a82df41875402285608ef13a55df57"], "properties": ["color, roof, wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building structure", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small building with windows and a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["apse, roof, floor plan", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house with a flat roof structure."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "abc52d210d71415296730bb00352ce6f"], "properties": ["houses, trees, road", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a computer mouse on a piece of paper with a hole in it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["453edfa600a0493f9379738ea8393273", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["paper, hole, mouse", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white illustration of an object in the shape of a cloud", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a mouse on top of a piece of paper", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a small blue robot with a windmill."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["shape is cylinder, color is white, material is plastic", "color, blue, robot"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a wind turbine"], "question": "which object is blue?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a house with a roof structure and toothbrushes."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["hat, food, bowl", "house, roof, toothbrushes"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a white box with a lot of blades"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a woman in a red dress holding a tennis racket, wearing a hat."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "b89b19ddadd04d6799e90b611c889bae"], "properties": ["hat, bag, blanket", "hat, dress, racket"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white illustration of a dendritic cell"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a black and white photograph of a woman holding a tennis racket"], "question": "which entity has a hat", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, tan, brown, orange", "arrow, red, white"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a spiral staircase"], "question": "which entity has a red arrow?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["- material is wood, metal, metal", "roof, brown, flat"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d rendering of a table and stool"], "question": "which object has a flat roof", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["- material is wood - color is white - height is 1.8 m", "arrow, red, white"], "captions_pred_pc": ["an illustration of a barbed wire fence", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a spiral staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a black building.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, black, building", "roof, brown, flat"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d rendering of a table and stool"], "question": "which building is brown?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "bded33af34104b9686b845dfd18309a9"], "properties": ["background, color, white", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a white and wooden chest of drawers cabinet.", " a four-legged metal workbench with shelves."], "sample_ids": ["d5722274fb094222aca90bb59f4dff09", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["chest of drawers, cabinet, white", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d rendering of a white cabinet with a drawer", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a black and white striped box."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, white, pink, eyes", "color, black, white"], "captions_pred_pc": ["a black and white image of a bear's head", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d image of a black and white striped surface"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["house, rock, pond", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a celtic stone cross.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["- material is stone- shape is cross- color is black", "hat, candy, strawberry"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a black and white image of a person wearing a hat"], "question": "which object is made of candy", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a spiral staircase with railings."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["house, roof, toothbrushes", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a wooden staircase."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "98fa820a050e47659135907c6f7b198c"], "properties": ["house, staircase, window", "material is wood, staircase, wood"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a blue roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["color, door, window", "roof, color, blue"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "6b745457e06840119058883b35f78f58"], "properties": ["s, chimpanzee, human, wolf", "roof, color, blue"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a small wooden house."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["floor plan, ceiling light, color", "house, material, wood"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " a wooden table with a plant on it."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["floor, stairs, bathroom", "table, plant, wood"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small table", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "97f487941d26472294e005fa97c403be"], "properties": ["house, fence, dog", "color, white, green"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "for a black and white drawing of a computer keyboard"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of an office building"], "question": "which entity has a white and green paper clip?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a white of a small archway gate."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "a48aae47988c4daa9531e33b1e3085f8"], "properties": ["color, shape, and size", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "above a black and white illustration of an arch"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white arch"], "question": "which image is white", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["shape is cube, color is black, white", "frame, truss, roof"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d rendering of a bridge over a road"], "question": "which building is a frame?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "c3a82df41875402285608ef13a55df57"], "properties": ["color, green, orange, star", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring furniture, people, a staircase, and torn-apart sections.", " a house with a wooden-framed roof structure."], "sample_ids": ["85335d3349894b5884dbf6f3e7d68fcc", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["furniture, staircase, torn-apart", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a pixelated cityscape on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a damaged room with broken furniture and debris on the floor", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "c3a82df41875402285608ef13a55df57"], "properties": ["metal, roof, chest", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a wooden chest", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " of two rocks with ice elements."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["door, roof, pool", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["resembles, octopus, squid, spider, robot", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a small white building with stairs and a lid."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, grass, moss", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a white building.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4decc6a3d12c47888f8fec543153a985", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, building", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a bottle", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a building on a white background", "a 3d model of the roof of a building"], "question": "which building is made of wood", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["a, hole, rock", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["house, staircase, table", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a bench on a wooden floor"], "question": "which house has a wooden floor", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a white castle composed of small cubes."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, head, white and brown", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, blue, rim, blue", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a green skull and sphere.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["color, skull, sphere", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["collection, moose, skull", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, grass, moss", "roof, brown, flat"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a furnished room featuring a table, chairs, desk, shelves, and a small kitchen and living area.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9403cf50e8cb44c195b76afd89d0c9fb", "c3a82df41875402285608ef13a55df57"], "properties": ["furniture, room, kitchen", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a room with dots all over it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a room with a table, chairs, and shelves", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "7407a108e0354925b83b750339bc03df"], "properties": ["houses, trees, road", "platform, color, orange"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a bicycle"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is the color orange?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["hat, sword, gun", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small triangular-shaped object."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, light, jewels", "shape, triangle, small"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", "a 3d cartoon character of a boy wearing a cowboy hat and blue pants."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "e94fb39e384f47ce87cce1930851b8f8"], "properties": ["a, window, statue", "hat, pants, shirt"], "captions_pred_pc": ["a black and white image of dots on a white background", "a square made of dots on a white background a square made of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a 3d model of a cartoon character wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "e098706085a44898abbd549693d12a64"], "properties": ["Drawer, Handle, Wood", "color is black, white, orange"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is made of wood", "label": 0}, {"captions": [" of an egyptian sarcophagus.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["70aa484af2ab44149a608dd81a6ff459", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["sarcophagus, material, wood", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white photograph of a sphere with egyptian hieroglyphics on it", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof.", " a white building with a red roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, color, blue", "color, white, roof, red"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["a box, a cup, a bottle, a jar", "turrets, flags, towers"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a gray, metal pillar/cylinder."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is metal- color is silver- texture is textured", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a candlestick"], "question": "which is not a cylinder", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "d49d8ed244094349a99e4faca05e0690"], "properties": ["a, bird, hook", "low poly, plant, white"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a plant growing out of a rock"], "question": "which object is on a white object", "label": 1}, {"captions": [" a pig with an open mouth and a knife.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["d2d3b56c704341198aebd3601a6bb624", "c8936ace72954650b4e2d84246964849"], "properties": ["mouth, open, knife", "roof, color, pink"], "captions_pred_pc": ["a black and white photo of a hippopotamus", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a pig with a knife in its mouth royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a gray, metal pillar/cylinder."], "sample_ids": ["e098706085a44898abbd549693d12a64", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["color is black, white, orange", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["of a white and black clutch with a flower design", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a two-story small apartment building with a roof."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["color, roof, tray", "two-story, roof, building"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof?", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["house, roof, green", "table, stairs, ladder"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a table with a stool on top"], "question": "which object has stairs", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, truss, suspended ceiling", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " of a small white building with stairs and a lid."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["texture, spikes, eyes", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a flower", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a potted christmas pine tree."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["frame, beams, trusses", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["boat, table, chairs, umbrella, solar panel", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a black and white striped box.", " a house with a wooden-framed roof structure."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, black, white", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with a pink roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, roof, pink", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "6398f4e75a2d480da58396827ac64249"], "properties": ["color, black, shade, black", "- color is red, blue, pink"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which object is more colorful", "label": 1}, {"captions": [" a y-shaped, multicolored stick resembling the letter k, with red, blue, and green segments.", " of two rocks with ice elements."], "sample_ids": ["9502d395c40d4ec1abb8764b7ca2b9c9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, letter", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of the letter 'f'", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the letter 'x'", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " of a house with a pink roof."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, white, base, slanted", "color, roof, pink"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a person's head wearing a hat.", " of two rocks with ice elements."], "sample_ids": ["4ad7ba52fa6f42ef89b52766daf1e2b9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["head, hat, person", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white illustration of a half moon", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a person's head with a hat on it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small triangular-shaped object."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, shape, material", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a collection featuring various characters, including a man holding a bat, a person doing yoga, a jumping individual, a person with a stick, a flying bird, a man with outstretched arms, a man in a hat, and a suited man flying through the air.", " of a barrel and a cube together."], "sample_ids": ["5409e95467e54cbdaddb17695fe563e6", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["a, character, person", "a, barrel, cube"], "captions_pred_pc": ["a 3d model of a person", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d model of a bird in mid-flight royalty free 3d model preview no. 3", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a person?", "label": 0}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, blue, green, yellow, blue", "throne, stairs, tree"], "captions_pred_pc": ["a pair of sneakers on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["house, roof, wooden", "roof, structure, wall"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a building with a roof"], "question": "which house has a brick wall", "label": 1}, {"captions": [" a black castle with stairs and a door.", " a room featuring a wall with a painting, a hole, and a door."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "1d1328346a464d2482463d6d5288e934"], "properties": ["door, stairs, color", "painting, door, wall"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "in one hundred words or less an illustration of an igloo on a white background stock illustration"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a black and white photograph of a torn piece of paper in the shape of a bird"], "question": "which entity has a door", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, black, white", "beige, white, round"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a house with a blue roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, blue", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a pixelated-textured purple sphere ."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, material", "texture, color, shape"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, yellow, black", "color, sphere, molecule"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule", "label": 1}, {"captions": [" of a large black mat with square grid design.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["size, color, design", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white pattern on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a white 3d model of a city skyline"], "question": "which image is a shelf", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a green mountain with trees and grass."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, white, black, white", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["red, mouse, handwriting", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "above a black and white photograph of an open door"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "a17477b445b3443189dad22f768b888b"], "properties": ["table, staircase, light", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, blue", "roof, color, yellow"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" of a human skull.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["44789fce1d7b400b85d27e4b35b8171a", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, b, c", "a, material, clay"], "captions_pred_pc": ["a black and white image of a dandelion on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a pair of human skulls royalty free 3d model preview no. 1", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a fruit bowl with an apple, on a table.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["64c3d61ba7b549b5b7c72b37d7532b48", "d81d13362ae04371bb2cba46e4939665"], "properties": ["apple, bowl, table", "hat, bow, arrow"], "captions_pred_pc": ["for a white object on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in a silver bowl 3d model of an egg in", "a sculpture of an african man sitting on a pedestal"], "question": "which object is on a wooden base?", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a white glass beer mug."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, material, shape", "color, white, glass"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", "a white of a man with arms outstretched."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " of a white human skull with broken bone elements."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, base, slanted", "color, white, skull"], "captions_pred_pc": ["above a black and white drawing of a chair", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "92498f398e244020a867686729633610"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["mossy, rock, rocky", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a piece of ancient pottery"], "question": "which object is made of stone", "label": 1}, {"captions": ["white and red mouse with a red tail and cord.", " of two rocks with ice elements."], "sample_ids": ["2613ec608c454ee5b0f2d5efccd78766", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, tail, cord", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d mouse on a gray background royalty free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof, color, pink", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " a four-legged metal workbench with shelves."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["white, top, writing", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "for a black and white illustration of a cross"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d model of a table with four legs"], "question": "which table has more shelves", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a small wooden house with a green roof."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small house with a red roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["085db9059b744673b5623b5338e02196", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, red, house", "structure, roof, pitch"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e098706085a44898abbd549693d12a64", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color is black, white, orange", "house, tree, hill"], "captions_pred_pc": ["of a white and black clutch with a flower design", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a polygonal owl, stone block, and helmet, featuring triangular details and a rock with a hole.", " of two rocks with ice elements."], "sample_ids": ["a78520b929314d7c8477322e000bc481", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["polygonal, helmet, triangular details", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a piece of fabric with dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a gray, triangular shaped object", "a 3d image of two rocks on a gray surface"], "question": "which rock is not a polygonal owl", "label": 1}, {"captions": ["3d stone sculpture of a bat", " a house with roof trusses and wooden beams on a suspended ceiling."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "3c2e3a3670b042069bd8290e2c357702"], "properties": ["- material is stone - shape is bat", "roof trusses, beams, suspended ceiling"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a 3d model of a house with a roof in progress royalty free 3d model preview no. 1"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "bf18bfd89efd43389781050230467d58"], "properties": ["door, white, structure", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["light switch, electrical outlet, furniture", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["ceiling, light, desks", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, skyline, buildings", "arrow, red, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a spiral staircase"], "question": "which image has a red arrow?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a low poly 3d model of a rock", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "4a889132cc444d10bfcbf6c760984416"], "properties": ["door, white, structure", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a desk and chair"], "question": "which entity is not a kitchen cabinet?", "label": 0}, {"captions": [" a potted plant on a wooden table or shelf.", " of a small white building with stairs and a lid."], "sample_ids": ["1f99b86478764fa7abd65785a53ebbe8", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["potted plant, table, shelf", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a plant in a pot", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "d81d13362ae04371bb2cba46e4939665"], "properties": ["earbuds, light, ring", "hat, bow, arrow"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, structure", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a triangular roof"], "question": "which building has a roof that is green?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, white, black, white", "color, frame, shape"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, door, window", "roof, color, blue"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a building with many windows"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a house with a flat roof structure."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, horns, features", "roof, flat, structure"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a house with a roof"], "question": "which entity has a roof structure that is flat?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["floor, table, light", "house, roof, wooden"], "captions_pred_pc": ["above a black and white photograph of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof?", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["house, rock, bird", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["color, light, jewels", "roof, structure, greenhouse"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, head, bowl", "bedroom, bathroom, bed"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bed?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, text", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "46903bf029934b1989bc062dcb0a5531"], "properties": ["color, skyline, buildings", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity is a still life?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["buildings, houses, grass", "house, building, people"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a small town in the middle of a field"], "question": "which entity has more houses", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a wooden roof structure with a pink roof."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["Drawer, Pattern, White", "roof, color, pink"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of the roof of a building"], "question": "which structure has a pink roof?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["face, handle, spout", "a, color, red"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a castle with two towers"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof trusses, beams, suspended ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white drawing of a building", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a ceiling fan?", "label": 1}, {"captions": [" a house with a green roof and lawn.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["roof, green, lawn", "color, green, squirt gun"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a mountain landscape with green, yellow, and orange colors.", " of two rocks with ice elements."], "sample_ids": ["76ce57eaeed04c4d8002cdeb7134ae4a", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, landscape, mountain", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white photograph of a snowflake", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a snowy mountain landscape", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " of a small white building with stairs and a lid."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["red, pile, garbage", "building, stairs, lid"], "captions_pred_pc": ["above a black and white illustration of a triangle", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": ["a watch with a blue and black dial, black and white face, grey strap, and metal band.", "a white glass beer mug."], "sample_ids": ["625b0a764d0f40d48f3140acdd644823", "1d686cbd3e9a4c629a43088658989286"], "properties": ["dial, face, band", "color, white, glass"], "captions_pred_pc": ["for a person wearing a black and white t-shirt with a logo on it", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a close-up view of the back of a watch strap on a gray surface", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a white human skull with broken bone elements."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["houses, trees, road", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a human skull in white"], "question": "which entity is not a human skull?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small white house with a roof."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, plane, town", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a stone wall featuring carvings and statues."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["color, pattern, wall", "carving, statue, wall"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d image of a group of statues on a wall"], "question": "which wall is more decorative", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of two rocks with ice elements."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["bed, desk, window", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "c8936ace72954650b4e2d84246964849"], "properties": ["ruined building, stone floor, small stone structure", "roof, color, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a house with a roof"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of two rocks with ice elements."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["painting, door, wall", "image is a rock with ice elements"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["- material is wood - color is white - height is 1.8 m", "bedroom, bathroom, bed"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a small room with a bed, desk, and chair"], "question": "which is not a room", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "bf18bfd89efd43389781050230467d58"], "properties": ["building, floor, columns", "Lights, number, five"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["house, roof, green", "structure, roof, pitch"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of the roof of a house"], "question": "which house has a pitched roof structure", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["frame, beams, trusses", "houses, trees, road"], "captions_pred_pc": ["a black and white drawing of a metal grate", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a building under construction", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "c3a82df41875402285608ef13a55df57"], "properties": ["color, awning, cover", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d white ring adorned with flowers and leaves.", "a gold ring featuring various animal designs, including a swan, snake, bird, and dragon, accompanied by a gold-plated frog sculpture."], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "5e8319ec9a824ddcb3eef89658ef90f8"], "properties": ["color, shape, material", "gold, ring, animal"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "above a black and white image of a shark"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "a 3d sculpture of a bird with its wings outstretched"], "question": "which ring is made of gold", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["Steel, Color, Yellow", "glass, metal, balls"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " of two rocks with ice elements."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["floor, stairs, bathroom", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small table", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a white of a spaceship and building."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, color, blue", "image, building, spaceship"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, black, shade, black", "house, lake, pool"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a large building"], "question": "which entity has a lake", "label": 1}, {"captions": [" a small house with a tree in front, situated on a hill.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["3bde44b5f10946398f1bb9843dc14caa", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["house, tree, hill", "blue, yellow, frog"], "captions_pred_pc": ["a black and white photo of a cell phone in a puddle of water", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a white glass beer mug."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, white, background, gray", "color, white, glass"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small triangular-shaped object."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, shape, text", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a piece of metal"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, shape, texture", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": ["a silver ring with a swirly design and a white 3d printed sphere.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["8d81b384b5cc4f46a1779d0a2f5f7e27", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, silver, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of a circle with dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a silver ball on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object is black?", "label": 1}, {"captions": [" a pink and white gun.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["4b13e0c43d6f41138e962e856c930034", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, pink, white", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of an object on top of a pedestal", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white 3d model of a rocket launcher", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, shape, material", "sphere, pedestal, statue"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["a, b, c", "resembles, sculpture, rock"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", " of two rocks with ice elements."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["fireplace, bench, log", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "d49d8ed244094349a99e4faca05e0690"], "properties": ["a, ball, mushroom", "low poly, plant, white"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a plant growing out of a rock"], "question": "which object is on a white object", "label": 1}, {"captions": [" of a deer on a grassy hill.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, hill, deer", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " of a white chest of drawers with legs."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["low poly, plant, white", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d rendering of a white dresser"], "question": "which object is white", "label": 1}, {"captions": [" a house with a blue roof.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, color, blue", "structure, columns, roof"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with multiple levels"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, truss, lamp", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with roof trusses"], "question": "which house has a roof", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a small white house with a roof."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, image, subject", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a building with a white roof"], "question": "which image has a white roof", "label": 1}, {"captions": [" a woman holding a blue balloon near a graffiti-covered wall.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["eead0dd97023415da05c97df37337473", "c3a82df41875402285608ef13a55df57"], "properties": ["a, balloon, color, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white photo of a person standing on the edge of a cliff", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a sculpture on a wall with a person in the foreground and the sculpture in the background royalty-free 3d model preview no. 3", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a blue roof.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, color, blue", "roof, pillar, stairs"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["mossy, rock, grass", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "e602ac60041f4b4f84c044161e478781"], "properties": ["roof truss, insulation, suspended ceiling", "floor, wall, roof"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" of a green box with four compartments", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, number", "torso, breasts, pattern"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small, snow-covered house."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, staircase, window", "house, snow, cover"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a white human skull with broken bone elements."], "sample_ids": ["b5afccae993346079483507296fbb029", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["shape is square, material is metal, color is rusty", "color, white, skull"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a human skull in white"], "question": "which object is white", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["color, sphere, molecule", "Headstock, Guitar, Head"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "96d127abd21049689918e671ec613ef8"], "properties": ["shattered, resembles, broken phone", "axe, hammer, spoon"], "captions_pred_pc": ["for black ink brush strokes on a white background", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a shattered piece of paper?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " of a clear glass display case with a square light fixture."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "980ded888795417f94b46750105e1597"], "properties": ["size, material, shape", "light, fixture, square"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "in 15 words or less a black and white illustration of a room with dots on the floor"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a clear plastic box"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["light, floor, ceiling", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a large white and metal building with a metal roof structure."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["Lights, number, five", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, head, white and brown", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a white plastic container with a label on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a pair of red-handled pliers and wire cutters, with black accents."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "3ffc31b7e4cd43f3a3df5722ef8b9fca"], "properties": ["water, river, island", "color, red, black"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a toothbrush and a toothbrush"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a pair of pliers on a white background"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": ["yellow metal barricade ", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "9968e06a62e8487ea33460e640abc573"], "properties": ["color is yellow, material is metal, height is 0.5 m", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["a white barrier on a white background", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "a17477b445b3443189dad22f768b888b"], "properties": ["roof, structure, suspended", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a small building with a balcony"], "question": "which house has a roof with a pillar?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a wooden shed with a gray roof."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["houses, trees, road", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "5850d5c7223447db816081d50292fec0"], "properties": ["color, pier, railings", "structure, material, pool"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a large concrete structure"], "question": "which structure has a pool", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["food, leaves, shredded paper, rocks", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a house with a green, wooden-structured roof."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, structure, greenhouse", "roof, color, green"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["color, shape, material", "3D, toothpick, skateboard"], "captions_pred_pc": ["of a black bracelet with dots on it", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a white toothbrush on a gray background"], "question": "which object is not a logo?", "label": 0}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["floor plan, heating system, ceiling light fixture", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", " a small orange piano with legs."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "d793de7c08d74414beeb8ea50f730705"], "properties": ["a, bird, lake", "color is orange, size is small, legs"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a large white and metal building with a metal roof structure."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof structure, truss, ceiling", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a large white box"], "question": "which building has a metal roof structure", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, lake, pool", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["room, bed, desk", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a white sofa, chair, and box."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "4c59733ebd634594a921b7ace60e4142"], "properties": ["color, pier, stairway", "sofa, chair, box"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "e602ac60041f4b4f84c044161e478781"], "properties": ["frame, truss, roof", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", "a black and white of a knife/sword with a handle."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- material is white- color is white- texture is textured", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a cube", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["building, roof, white, cubes", "a, material, clay"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a city on a white background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, island, resembles, hawaii", "a, outfit, green"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a person jumping on a trampoline in slow motion"], "question": "which entity is a cartoon character?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["low poly, llama, kangaroo", "building, plane, room"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["image is rock formation with a white cliff and a rock", "building, plane, room"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, door, cross", "house, roof, wooden"], "captions_pred_pc": ["above a black and white image of a map", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["ceiling, light, desks", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of the roof of a building"], "question": "which entity has a roof with trusses and wooden ceiling beams?", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "703dce44052e48cfb024bceb08141554"], "properties": ["color, frame, shape", "roof, beams, frames"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a wooden structure"], "question": "which entity has a roof made of wood?", "label": 1}, {"captions": ["a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris.", " of a small white building with stairs and a lid."], "sample_ids": ["a47dcf3d3cf34c58af17b6715d6f1232", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["room, staircase, bus", "building, stairs, lid"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a building with a lot of debris", "a 3d model of a white box on a gray background"], "question": "which entity has stairs", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a spiral staircase with a railing in a small building."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["screen, keyboard, box", "staircase, railing, building"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a chair with a yellow seat."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, grass, moss", "color, yellow, seat"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "92498f398e244020a867686729633610"], "properties": ["room, furniture, window", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of a person standing in front of a wall"], "question": "which entity has a cat and a dog?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "1da865c75a5e4a57a17652975dae5474"], "properties": ["bed, desk, window", "color, white, plastic"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["s, plane, house", "house, pool, balcony"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["21639082215b4b179d574d2408124838", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, room, furniture", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["Wheels, laptop, robot", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a cell phone", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, table, ceiling", "color, white, gold"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a standing mirror on a white background"], "question": "which entity is a mirror?", "label": 1}, {"captions": [" a torn, open egyptian book with a broken cover, featuring a box with an open lid and a picture of a woman on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["fb0b2d4f3d3548c792d8d72260429435", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["cover, torn, open", "a, material, clay"], "captions_pred_pc": ["a 3d illustration of a sponge on a white background 3d illustration of a sponge on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a torn bank note", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of an ak-47 assault rifle", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["7cb4d0ed471e4d71b3d60db6509292f8", "bf18bfd89efd43389781050230467d58"], "properties": ["weapon, caliber, type", "Lights, number, five"], "captions_pred_pc": ["of a black airplane on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an assault rifle royalty free 3d model preview no 2", "a white chandelier with five white shades"], "question": "which entity has a higher number of lights", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["a, desk, laptop", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d image of a lion statue on a wall"], "question": "which entity has a statue", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "46903bf029934b1989bc062dcb0a5531"], "properties": ["stacked, racks, toy train", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which object is made of a skeleton?", "label": 1}, {"captions": [" a purple and green sphere.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, size", "building, plane, room"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["white 3d triangular object", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, shape is triangular, material is plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d white pyramid on a gray background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "a17477b445b3443189dad22f768b888b"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["green and black ak-47 assault rifle with grenade launcher.", " a building with yellow lines."], "sample_ids": ["9ffa5ac853354223a7f4f42d532f7633", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, black, green", "color, yellow, lines"], "captions_pred_pc": ["a black and white image of a cell phone on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "97e000ff41094665afd94ea565da8b13"], "properties": ["box, cylinder, bottle", "roof, material, wood"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", "a white of a spaceship and building."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["room, door, shelf", "image, building, spaceship"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "3d object featuring a blue and white tile, mattress, book with a sign, and a hanging notice sign, all representing god's family faith in action."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "4b1d361630b949889282755fb6fb46bc"], "properties": ["A, a, a", "Object, color, white"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a line of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "god's family faith in action"], "question": "which object is white", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, green, handle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a small black object on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["water, boat, rock", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["frame, beams, trusses", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, black, shade, black", "arrow, red, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a spiral staircase"], "question": "which object has a red arrow?", "label": 1}, {"captions": ["3d pixelated cactus model on a table.", "3d pixelated cactus model on a table."], "sample_ids": ["07c2b9e39ae5438d9b7ab6495b86f896", "07c2b9e39ae5438d9b7ab6495b86f896"], "properties": ["cactus, model, table", "cactus, model, table"], "captions_pred_pc": ["a black and white image of a cross on a white background", "a black and white image of a cross on a white background"], "captions_pred_image": ["a 3d model of a table with a cube on top", "a 3d model of a table with a cube on top"], "question": "which entity has a cactus model on a table?", "label": 0}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["graffiti, bench, wall", "arrow, red, white"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a clay pot with holes in it."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, red, blue, structure", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small building with a roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, building, small", "a, building, roof"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of the space shuttle"], "question": "which building has a roof", "label": 0}, {"captions": [" a small island with trees, water, and a river.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["water, river, island", "door, roof, pool"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["balcony, stairs, house", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a square with dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["hat, sword, gun", "island, mountain, grass"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": ["white bowl and sphere", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["84eab42d427545fcab4cffff9746eddc", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["color, shape, material", "image, color, pink"], "captions_pred_pc": ["a black and white circle made up of tiny dots on a white background", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a white bowl on a gray background", "a 3d sculpture of an animal on a piece of paper"], "question": "which entity is a picture of a teddy bear?", "label": 1}, {"captions": [" of a house with a pink roof.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "bf18bfd89efd43389781050230467d58"], "properties": ["color, roof, pink", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a white chandelier with five white shades"], "question": "which entity has fewer lights", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["770e577c9795435898209fd24191635b", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["image, color, light", "house, fence, playground"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a white 3d model of a small town", "a 3d model of a room with a lot of wires"], "question": "which image has a fence?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a small house with a roof."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["- material is wood, metal, metal", "roof, house, small"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a small house"], "question": "which object has a roof", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "bded33af34104b9686b845dfd18309a9"], "properties": ["computer desk, laptop, monitor", "table, staircase, light"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", " of a soldier with outstretched arms"], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "4982a7018e6f4503b5708c714b733ab4"], "properties": ["color, shape, material", "arms, outstretched, soldier"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "a black and white illustration of a bird's wing"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d model of a soldier with his arms outstretched royalty-free 3d model preview"], "question": "which entity is a human?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, pink", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a deer on a grassy hill.", "a white of a city landscape with various objects and a ceiling light."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "770e577c9795435898209fd24191635b"], "properties": ["a, hill, deer", "image, color, light"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a white 3d model of a small town"], "question": "which image is black and white?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["house, tree, pool", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", "a low-poly of a white, shattered sphere."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["buildings, houses, grass", "sphere, color, texture"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a house with a wooden-framed roof structure."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["- material is metal - weight is 0 - height is 0", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a building with a roof"], "question": "which is not made of wood", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a house with a wooden-framed roof structure."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, rock, bird", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a white hand, ear bud, teddy bear, earpiece, and utensil.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["1c59287d496f4da6b245a01d25a7e2a4", "e694d53545d449319a64cceb0280c3c6"], "properties": ["earbud, earpiece, earpiece", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a hand holding a cup", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a white object on a grey background", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, purple, suspended", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a table and chairs on a white background"], "question": "which roof is the color of entity b?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, white, blue, roof, black", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a roof structure"], "question": "which building has a roof that is made of wood?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a clay pot with holes in it."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["A, a, a", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small wooden house with a green roof."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, door, cross", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a map", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["house, tree, hill", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "a2354f13774340d392fbf33564934aab"], "properties": ["building, fence, snowy", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["table, stairs, ladder", "table, structure, roof"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a building with many pillars"], "question": "which table has a roof", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["color, red, blue, green", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["building, color, white", "image, city, spoon"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of a city skyline in white"], "question": "which image shows a city?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor plan, heating system, ceiling light fixture", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a small building with a balcony"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["mug, color, brown, white", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a small house with a blue roof.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["roof, color, blue", "Wheels, laptop, robot"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["40921ffd69db479294554d261daf3035", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["floor, railing, staircase", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a computer screen", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["white, rock, shell", "water, boat, rock"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d image of an animal laying on the ground"], "question": "which object is in water", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["castle, island, house", "mountainous, landmass, state"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a piece of paper"], "question": "which entity is a landmass?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, material", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, roof, wall", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a building structure", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "e694d53545d449319a64cceb0280c3c6"], "properties": ["house, table, chair", "3d, slide, swing"], "captions_pred_pc": ["above a black and white photograph of an open door", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " a small wooden house with a green roof."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, pattern, field", "roof, color, green"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["a, plane, small plane", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["food, leaves, shredded paper, rocks", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a harp in a white room"], "question": "which entity has a lamp?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "7f8942ef51dd4246993a587a12df168c"], "properties": ["stair, table, chair", "house, yard, surrounding buildings"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a tree stump with roots.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["fa6e88ba438f4597a7230789124c8147", "1da865c75a5e4a57a17652975dae5474"], "properties": ["root, tree, stump", "color, white, plastic"], "captions_pred_pc": ["above a black and white illustration of a galaxy", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a tree stump in the middle of a field", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["building, balcony, street", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, ball, mushroom", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a man with black hair, wearing a black shirt, black pants, and a suit.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["ffbbd798b7e448849b7acd309717739c", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, shirt, pants", "grass, plants, rocks"], "captions_pred_pc": ["a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white 3d printed figurine of a man", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, material, shape", "color, pattern, word"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "a black and white photo of a pair of scissors"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a beaded necklace with the word banned on it"], "question": "which entity is made of a word?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, green, squirt gun", "a, material, clay"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "9b8e2f9070b24956a343a01a5fabdf03"], "properties": ["computer desk, laptop, monitor", "computer desk, laptop, monitor"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white silhouette of a traditional japanese gate"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a futuristic room with a bench"], "question": "which entity has a bench?", "label": 0}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small building with windows and a roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["bed, desk, window", "roof, windows, building"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, material, pattern", "building, plane, room"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": ["3d printed white gear wheel model", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["d9aba59b3bc645f5926c8dbac67fa42d", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, material is 3d printed, object is a gear wheel model", "- material is wood, rusty, horned"], "captions_pred_pc": ["a circular saw blade on a white background 3d illustration of a circular saw blade on a white background 3d illustration of a circular saw blade on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["location, field, gravestone", "house, rock, bird"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d rendering of a house on a rock"], "question": "which location has a bird on a rock?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, stairs, house", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a window"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["top, color, wood", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a fireplace", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a wooden shed with a gray roof."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, horns, features", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": [" a house with a yellow roof, wooden beams, and yellow frames.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["703dce44052e48cfb024bceb08141554", "703dce44052e48cfb024bceb08141554"], "properties": ["roof, beams, frames", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a boat", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a wooden structure", "a 3d model of a wooden structure"], "question": "which entity has a yellow roof", "label": 0}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a wooden house with a roof and birdcage structure."], "sample_ids": ["d6087023095446fbadef1721478373b2", "3e4527c9c8e940b5806b8a69967a90b8"], "properties": ["door, roof, window", "roof, structure, material"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white image of the letter 'f' on a white background illustration"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a building with a roof"], "question": "which entity has a roof made of a different material than the rest of the building?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a wooden billiard table with legs."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["- material is metal - weight is 0 - height is 0", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", " a wooden roof structure with a pink roof."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, color, red", "roof, color, pink"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["color, shape, material", "house, hill, forest"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a black and white building", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a wooden staircase.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["98fa820a050e47659135907c6f7b198c", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["material is wood, staircase, wood", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a white wooden staircase", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "a, color, red"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a castle with two towers"], "question": "which object has a red color?", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a white glass beer mug."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "1d686cbd3e9a4c629a43088658989286"], "properties": ["roof, metal, white", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "09f2cf267e954c958828325067bcc36a"], "properties": ["resembles, octopus, squid, spider, robot", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a set of military vehicles.", "a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball."], "sample_ids": ["505b010419ab48bdb025f0a5d7b4e846", "7940570f74c14baa83ebf5f50cd2a720"], "properties": ["armed force, vehicle, type", "a snake, an eel, a cube, a sword, a dice, a stick, a blue ball"], "captions_pred_pc": ["of a black truck on a white background", "a black mascara brush on a white background"], "captions_pred_image": ["a collection of 3d models of various vehicles on a white background royalty free 3d model preview no. 3", "a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife"], "question": "which entity is not a vehicle?", "label": 0}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof trusses, beams, suspended ceiling", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["balcony, stairs, house", "image, building, stairs"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with stairs?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["castle, island, house", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a small house on an island", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a spider-like creature with long arms and legs."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a lamp, a syringe, a light pole", "arachnid, leg, arm"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a brick building with a roof structure and roof truss."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "84e8acad28664a738df69d719df9e263"], "properties": ["hat, bag, blanket", "roof, structure, truss"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["building, stairs, shelves", "building, material, stone"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, tree, rock", "building, plane, room"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["food, leaves, shredded paper, rocks", "a, landscape, sand"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["hat, sword, gun", "water, boat, rock"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["ceiling, beams, light", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house with a roof"], "question": "which entity has a suspended ceiling", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, desk, laptop", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a black building.", " a large steel building with many columns and a pool."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "2ce649a4152a45bab60d8cafa1dcdeb3"], "properties": ["color, black, building", "building material, pool, steel"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["roof, truss, lamp", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "225e4094141d416faba7c5598dc55ff8"], "properties": ["location, field, gravestone", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["roof, structure, house", "house, roof, blue"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", " a spider-like creature with long arms and legs."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["Headstock, Guitar, Head", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an axe head", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a small white airplane flying in the air."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "747fb98f64794cdd96486debaf20a02c"], "properties": ["color, shape, size", "airplane, color, white"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a small airplane"], "question": "which is white", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["computer desk, laptop, monitor", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a bench on a wooden floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["sandbox, sand bucket, wooden blocks", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "f1b557775310478893242180defa4d80"], "properties": ["black, roof, green", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", "a white of a woman with her arms outstretched."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, yellow, black", "image, color, white"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, island, resembles, hawaii", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "a2354f13774340d392fbf33564934aab"], "properties": ["color, shape, light", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small white house with a staircase and a window."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "9eb88d17310d42dda9e17883e9922525"], "properties": ["cup, bottle, chessboard", "house, staircase, window"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small triangular-shaped object."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "2d02985030804209a26c2c53b96a06f9"], "properties": ["yellow, table, roof", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["73f2780847f14547b9ae5f9e8a81e348", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["floor, stairs, bathroom", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white image of a leopard print pattern", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of a small table", "a 3d model of a small table"], "question": "which entity has a wooden floor", "label": 0}, {"captions": [" a small robot with green and yellow parts, a hat, and a green handle, accompanied by a person riding on a green stool.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["c927a45ebfd847e7a31b54cd2bb76b06", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, hat, handle", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white illustration of a toy robot", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a person standing on top of a table", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["house, fence, dog", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a brick building with a roof structure and roof truss."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "84e8acad28664a738df69d719df9e263"], "properties": ["roof, color, blue", "roof, structure, truss"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a brick building with a roof"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a house with a green, wooden-structured roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a house with a triangular roof"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small white house with a roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, tree, plane", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" colorful cubes and balls.", " a small wooden house with a green roof."], "sample_ids": ["598e319509a54ddd9a7220959b2bc5a7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, size", "roof, color, green"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a group of cubes and a ball", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "c8936ace72954650b4e2d84246964849"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a house with a roof"], "question": "which house has a roof that is pink", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, shape, poles", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["- material is wood, metal, metal", "color, sphere, molecule"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, green, squirt gun", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which image shows a sand dune?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, air conditioner, house", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["Cabinet, Drawers, Filing", "earbuds, light, ring"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "06a1c233fb444830b577aa06e2c01294"], "properties": ["broom, shovel, fireplace", "house, tree, hill"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, roof, soup", "a, outfit, green"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a white rocket ship.", "a purple and yellow pixelated ethereum logo in pixel art style."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "bcf111e592d64b6490003680cae9407f"], "properties": ["color, shape, size", "color, style, pixel"], "captions_pred_pc": ["above a black and white illustration of a planet", "in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "an image of an electronic device with the letter 'z' on it"], "question": "which entity is a logo?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small white house with a roof."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["house, tree, pool", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white map of germany on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a lizard on a rock?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- color is white- shape is cube- material is plastic", "metal, cross, clock"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a building, a coin, a small black box, and a ball.", " of two rocks with ice elements."], "sample_ids": ["949cf1a57aea45d18261e980b21b8c35", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, building, coin, ball", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a triangular shaped object", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a box with a coin next to it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a tree and a rock."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["roof, purple, suspended", "house, tree, rock"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small white building with stairs and a white table."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "e30374c614f54fdb90f35b96b071349d"], "properties": ["mossy, rock, grass", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, skyline, buildings", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d printed figurine of an alien creature"], "question": "which image is black and white?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof truss, insulation, suspended ceiling", "building, material, stone"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" of a green box with four compartments", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, number", "island, terrain, water"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a black building."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "88702656e9684e1ea1a01dc7075c00e0"], "properties": ["color, white, containers", "color, black, building"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a close up of a black and white rug on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black 3d model of a house on top of a blueprint"], "question": "which building is black", "label": 1}, {"captions": [" a small island with trees, grass, water, and rocky terrain.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["d5e708b7549e48e2b02fd6fe9f197ec2", "7407a108e0354925b83b750339bc03df"], "properties": ["island, terrain, water", "platform, color, orange"], "captions_pred_pc": ["a black and white photograph of a piece of paper with dots on it", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a 3d model of a motorcycle on a pedestal"], "question": "which object has a platform that is orange in color?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["a, dress, flower", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small building with a staircase in a room."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["house, building, people", "room, staircase, building"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white image of the letter l"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a 3d model of a staircase on a white surface"], "question": "which entity has fewer houses", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["light, floor, ceiling", "roof, color, yellow"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": [" of a soldier with outstretched arms", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["4982a7018e6f4503b5708c714b733ab4", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["arms, outstretched, soldier", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a bird's wing", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a soldier with his arms outstretched royalty-free 3d model preview", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a robotic warrior with a sword.", " a red and white robot."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["weapon, sword, robot", "color, red, white"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which robot is red and white?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["graffiti, bench, wall", "bedroom, bathroom, bed"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a room with dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a spider-like creature with long arms and legs."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["stair, table, chair", "arachnid, leg, arm"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, grass, moss", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" a red mushroom on top of various piles, including dirt, leaves, wood, and garbage.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["21d3bd3978f74308a312b4379e665dbd", "d81d13362ae04371bb2cba46e4939665"], "properties": ["red, pile, garbage", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white illustration of a triangle", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white image of a mushroom in a pile of leaves", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["house, table, chair", "room, furniture, window"], "captions_pred_pc": ["above a black and white photograph of an open door", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d image of a room with a person in it"], "question": "which room has furniture", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["food, leaves, shredded paper, rocks", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a bird in flight", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" of a cracked, holey cheese-like stone with black markings and writing.", " of two rocks with ice elements."], "sample_ids": ["0316725634c64f0b96ef60e7505c1b34", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["description, material, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a sponge on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an arrowhead on a white background royalty free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a large steel building with a pool."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, shape, structure", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "67701617472e4051b95955c596561aac"], "properties": ["bed, desk, window", "color, white, 3d-printed"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a pair of white plastic shoes on a gray background"], "question": "which entity is not a pair?", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Cabinet, Drawers, Filing", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["top, color, wood", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of a fireplace", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["a, bird, lake", "fireplace, bench, log"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a snowflake"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a fireplace with snow on the ground"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small white building with a floor plan and ceiling light.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1df55bb7035941cc9829aa904e2af065", "b896a0898efe4059a776193c02132129"], "properties": ["floor plan, ceiling light, color", "- material is stone, metal, concrete"], "captions_pred_pc": ["a line of dots on a white background a line of dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white 3d model of a house", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, truss, suspended ceiling", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with roof trusses"], "question": "which entity has a roof", "label": 0}, {"captions": [" a building with blue metal framing and structure.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["color, blue, structure", "arrow, red, white"], "captions_pred_pc": ["a black and white image of dots on a white background", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "e694d53545d449319a64cceb0280c3c6"], "properties": ["house, tree, pool", "3d, slide, swing"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "4e82177059204292899fa7415164a05e"], "properties": ["color, red, green, yellow", "yellow, tires, load"], "captions_pred_pc": ["a black and white image of a toothbrush", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a monster truck with spikes"], "question": "which toy has large tires", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "two white spheres in a ."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, island, resembles, hawaii", "two, spheres, white, in, a"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a white ball on a gray background"], "question": "which object is in a?", "label": 0}, {"captions": [" of a character wearing glasses and a hat.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["hat, glasses, character", "lamp, harp, bowl"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "7407a108e0354925b83b750339bc03df"], "properties": ["resembles, octopus, squid, spider, robot", "platform, color, orange"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white illustration of a bicycle"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a small white barn with a metal roof."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, color, blue", "roof, metal, white"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, roof, green, frame, red", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " of a house with a roof."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, beams, chimney", "roof, house, roof"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 0}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a spider-like creature with long arms and legs."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, bird, hook", "arachnid, leg, arm"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["texture, spikes, eyes", "color, sphere, molecule"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, black, shade, black", "color, white, material, ceramic"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, material", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a white 3d model of a city skyline"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a large building with a roof and windows."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "32d1fbd3ee91426882290305f70021e6"], "properties": ["water, river, island", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small house on a hill with a floating paper object and a curved metal piece.", " of a small house on a hill with a floating paper object and a curved metal piece."], "sample_ids": ["000f67c78d9f409ca5dcc9d59f90287b", "000f67c78d9f409ca5dcc9d59f90287b"], "properties": ["a, hill, paper, metal", "a, hill, paper, metal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a house on the side of a hill", "a 3d model of a house on the side of a hill"], "question": "which entity has a floating paper object and a curved metal piece?", "label": 0}, {"captions": [" of a metal plaque featuring a picture of a person.", " a small white house with a roof."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["picture, plaque, person", "roof, color, white"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["shape is box, color is white, door is present", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a bearded man wearing a green shirt and a hat."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "1e4e5e8133ae48c797facaec724c13a5"], "properties": ["background, color, white", "hat, shirt, bearded"], "captions_pred_pc": ["a black and white image of a cat's head", "of a black and white bracelet on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a man with a beard"], "question": "which entity has a hat?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a spider-like creature with long arms and legs."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["light, toilet, faucet", "arachnid, leg, arm"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["color is white, material is plastic, shape is tube", "wood, board, shelf"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a tree stump with roots."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "fa6e88ba438f4597a7230789124c8147"], "properties": ["Cabinet, Drawers, Filing", "root, tree, stump"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white illustration of a galaxy"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "a 3d model of a tree stump in the middle of a field"], "question": "which entity is not a tree stump?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small white building with stairs and a white table."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "e30374c614f54fdb90f35b96b071349d"], "properties": ["s, plane, house", "building, stairs, table"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a wooden roof structure with a pink roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["shape is box, color is white, door is present", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "6b745457e06840119058883b35f78f58"], "properties": ["building, door, clock", "roof, color, blue"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d model of a house with a steeple on top"], "question": "which building has a clock", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["roof, color, pink", "house, fence, dog"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a purple chair with holes in it."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "833151c8e0f4489a9fa966635a948452"], "properties": ["roof, color, yellow", "color, purple, holes"], "captions_pred_pc": ["a black and white drawing of a room", "of a silver pendant with an intricate design"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a white chair"], "question": "which object has holes in it", "label": 1}, {"captions": [" a black and purple dragon with wings and purple eyes.", " of two rocks with ice elements."], "sample_ids": ["9fdaa7bf7dbe499482d10705cbe366d2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["Eye color, Black, Purple", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of an airplane on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a dragon with wings", "a 3d image of two rocks on a gray surface"], "question": "which entity has a rock with ice elements?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, white, black, white", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a black and white image of a door with a crack in it"], "question": "which door has a lock and handle", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["white 3d triangular object", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color is white, shape is triangular, material is plastic", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, red, pink", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "db74ee1621464be1b164be26a1af050e"], "properties": ["size, color, shape", "window, arches, wall"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a white castle composed of small cubes."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["apse, roof, floor plan", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small white house with a roof."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["castle, island, house", "roof, color, white"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a building with a white roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["yellow, table, roof", "roof, structure, greenhouse"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " of a person breaking through a brick wall."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, brown, flat", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, lake, boat", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": ["a 3d object featuring a purple jellyfish, a purple and pink hat with a butterfly, a purple dress, and a small purple purse.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["0d26bd2fc67d4fbdb2dfe433d0697caf", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, dress, purse", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a spider on a white background", "a 3d model of a modern house"], "question": "which object has a pool", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a white sofa, chair, and box."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "4c59733ebd634594a921b7ace60e4142"], "properties": ["table, bench, deer", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a white chair"], "question": "which object is not a table", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "e602ac60041f4b4f84c044161e478781"], "properties": ["desk, chair, lamp", "floor, wall, roof"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a wooden floor", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["graffiti, chinese writing, door", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a bird?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a white rocking chair with a curved backrest."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, temperature, england", "backrest, curved, yes"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a curved backrest", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a wooden-cased radio."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, and size", "case, material, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", "a 3d white ornate lace doily design resembling a flower with an arrow and cloud element."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "2cec19efecd74b34be9d85ed8198f212"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "- color is white- shape is flower- pattern is lace"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a white doily with a pair of sunglasses on it"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a white lace doily on a gray background royalty free 3d model preview no 2"], "question": "which entity is not a flower?", "label": 1}, {"captions": [" a small wooden log cabin.", " a large white and metal building with a metal roof structure."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["size, material, log", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a large white box"], "question": "which building is larger", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a small white house with a roof."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, material", "roof, color, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, containers", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white photograph of a birdhouse"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["color, white, yellow, roof, metal", "house, roof, wooden"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a black and white photograph of a birdhouse"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["roof, purple, suspended", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "of a spike on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["roof, room, ceiling", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "b896a0898efe4059a776193c02132129"], "properties": ["yellow, table, roof", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a small building with a roof.", " a small house with a roof."], "sample_ids": ["a3089017e4c5463d852de65abf61eda5", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, building, small", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white image of a building with dots all over it", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a black and white image of a small house", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with stairs and a roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["background, color, white", "roof, stairs, house"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a small house with stairs and a roof."], "sample_ids": ["55b26130f1514032be078e13fd982905", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, shape, material", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d rendering of a podium on a wooden floor"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a large steel building with a pool."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, structure, greenhouse", "building material, pool, steel"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a white human skull with broken bone elements.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["6ca0f91b85464d7a845b3977351dd0b5", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["color, white, skull", "image size, image, royalty"], "captions_pred_pc": ["a black and white image of a cat's x-ray", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a human skull in white", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "88eba412c78a4ced89eb857327653f6c"], "properties": ["graffiti, chinese writing, door", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, handle", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white dots on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white archway structure resembling a building.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["structure, building, archway", "throne, chair, building"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a house with a roof and beams."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, yard, surrounding buildings", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a truck on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a white of a small, multifunctional vehicle resembling a container, spaceship, toy car, and machine gun.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["c0cc779380c7408f9061905c4ee19726", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["color, shape, size", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white illustration of a toothbrush and toothpaste", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white house with a roof."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["s, stick, leaf", "roof, color, white"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a building with a white roof"], "question": "which object has a roof", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, green, tiled", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["s of a boat, bird, paper airplane, and kite flying in the air.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["795cfa41d48a4cfc893ff1981318594d", "c3a82df41875402285608ef13a55df57"], "properties": ["s, boat, bird, airplane, kite", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a 3d illustration of a boy standing with his arms outstretched", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white kite flying in the air against a gray background", "a white plastic object on a gray background"], "question": "which object is not a boat", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "db74ee1621464be1b164be26a1af050e"], "properties": ["- color is white- shape is flower- pattern is lace", "window, arches, wall"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of an old brick wall"], "question": "which entity is more like a wall", "label": 1}, {"captions": [" a small red and white spaceship.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, size", "color, black, visor"], "captions_pred_pc": ["above a black and white image of a drone in the air", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a black motorcycle helmet with a visor on top"], "question": "which entity is black", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "6b745457e06840119058883b35f78f58"], "properties": ["Lights, number, five", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a house with a wooden-framed roof structure."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["location, area, material", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small rocky island with a brown and white rug featuring a puddle on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4806b382466247ad9265fc8240a22d3d", "c3a82df41875402285608ef13a55df57"], "properties": ["rocky, rug, puddle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a long, curved line on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d image of a rug on the ground, with a small puddle in the center royalty free 3d model preview no. 1", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a small house with stairs and a roof."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["building, skyscraper, city", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of an airplane", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "a17477b445b3443189dad22f768b888b"], "properties": ["screen, keyboard, box", "roof, pillar, stairs"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " of a black and white striped fly in the air."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["houses, trees, road", "black, white, fly"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a black and white photograph of a small town", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["red and yellow toy robot fireman with a helmet, wheels, and holding a fire extinguisher.", " a building with yellow lines."], "sample_ids": ["e01a1919e9404ca7a4dd52c593649b62", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, wheel, helmet", "color, yellow, lines"], "captions_pred_pc": ["for a black and white image of a pair of earrings", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a robot wearing a helmet and carrying a large object", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, pants, shirt", "hat, color, tan"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a four-legged metal workbench with shelves."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["food, leaves, shredded paper, rocks", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a bird in flight", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a white motorcycle with wings."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["shape is cylinder, color is white, material is plastic", "color, white, wings"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a large house with a roof on a platform."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "cb3e09a301b746918a682a595037c7f7"], "properties": ["black, white, laptop", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a piece of paper"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d model of a small house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a black gun.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["3f2a6b3f9fcd48979f611eb59473f53e", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, black, gun", "a room, a cake, a table"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a handgun royalty free 3d model preview no 2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "6b745457e06840119058883b35f78f58"], "properties": ["roof structure, truss, ceiling", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a house with a steeple on top"], "question": "which roof is blue", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small building with windows and a roof."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, orange, white", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a house with a wooden-framed roof structure."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, air conditioner, house", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, texture", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a building with yellow lines."], "sample_ids": ["97f487941d26472294e005fa97c403be", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, white, green", "color, yellow, lines"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of an office building", "a drawing of an airplane flying over a city"], "question": "which building has yellow lines", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["graffiti, chinese writing, door", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a small blue robot with a windmill."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "5f915b161cc74fedad52d8663b41f87a"], "properties": ["- color is white- shape is cube- material is plastic", "color, blue, robot"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a 3d sculpture"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a wind turbine"], "question": "which object is blue?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["A, a, a", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white illustration of a bench", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a building with a roof"], "question": "which entity has a glass roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a wooden staircase with a railing and table."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "956247bea850458199c651037d4b1d7f"], "properties": ["- material is plastic- color is white- shape is cylinder", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a window"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " of a house with a roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "195ce38d57164eb588d19f8bd337f36e"], "properties": ["roof, metal, white", "roof, house, roof"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white drawing of a toilet on a white background"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a small house royalty free 3d model preview no 2"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["Drawer, Pattern, White", "color, black, visor"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black motorcycle helmet with a visor on top"], "question": "which object has a visor", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " of a white human skull with broken bone elements."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["resembles, octopus, squid, spider, robot", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which entity is a skull?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small wooden house with a green roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, white, containers", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a house with a roof and beams."], "sample_ids": ["adec10493e06436c967d5797f7085225", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, material, shape", "roof, beams, house"], "captions_pred_pc": ["for a black and white image of an object on a white background", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["mossy, rock, grass", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "06a1c233fb444830b577aa06e2c01294"], "properties": ["house, color, white", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " of a beige and white round soap dish/small bowl."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "5414d75e47104589837f3df8b6de6d22"], "properties": ["- material is plastic- color is white- shape is cube", "beige, white, round"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is whiter", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["a, color, white", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["a, dress, flower", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a modern house"], "question": "which entity has a balcony?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "c3a82df41875402285608ef13a55df57"], "properties": ["color, green, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["of a small black object on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["variation, bread, pot", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of an object", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "d49d8ed244094349a99e4faca05e0690"], "properties": ["screen, monitor, stand", "low poly, plant, white"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a four-legged metal workbench with shelves."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["size, material, color", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a small square with black dots", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a sword with a wooden handle.", "a black and white of a knife/sword with a handle."], "sample_ids": ["d42eec2b8e7644ec9ededcf9f325faad", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["handle, material, wood", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a knife on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white image of a sword", "a black and white image of a knife"], "question": "which image is in black and white", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a rock."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "5cb24226a4c34ab5a924ce3ee5857cb6"], "properties": ["s of, snowboard, shoes, mask", "shape, color, texture"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "above a black and white photograph of an abstract shape"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a rock on a grey background 3d model of a"], "question": "which object is more likely to be a rock", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "6b745457e06840119058883b35f78f58"], "properties": ["floor, wall, roof", "roof, color, blue"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["hat, food, bowl", "house, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["a, roof, soup", "glass, metal, balls"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a clear acrylic foosball table"], "question": "which table has metal legs?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is plastic- color is green- shape is box", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["floor plan, heating system, ceiling light fixture", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of a house", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small building with a staircase in a room."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["houses, trees, road", "room, staircase, building"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white image of the letter l"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a staircase on a white surface"], "question": "which entity has a room?", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["color, hat, glasses", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with a flat roof structure."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "abc52d210d71415296730bb00352ce6f"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small, snow-covered house."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["a, desk, laptop", "house, snow, cover"], "captions_pred_pc": ["a black and white image of a piece of furniture", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a, bird, lamp", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["- material is plastic- shape is dice- color is white", "Cabinet, drawer, wood"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "a wooden-cased radio."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["hair, legs, wings", "case, material, wood"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which entity has a case made of wood", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a large building with a roof and windows."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "32d1fbd3ee91426882290305f70021e6"], "properties": ["roof, structure, house", "roof, windows, building"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a white bunk bed with a ladder."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "379f488d0624482694bbe150b7bc1059"], "properties": ["color, mattress, pillows", "bed, ladder, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "for a white square on a white background with a black square in the center"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "the bunk bed royalty free 3d model no. 3"], "question": "which bed has a ladder?", "label": 1}, {"captions": [" a small house with a blue roof.", "a white of a man with arms outstretched."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, color, blue", "image, color, white"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["mossy, rock, grass", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["roof, color, pink", "roof, metal, white"], "captions_pred_pc": ["above a black and white image of a metal grate", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a large white box"], "question": "which structure has a white roof", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small wooden house with a green roof."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["base, speaker, light", "roof, color, green"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["royalty-free of a beaver on a skateboard.", " a small wooden house with a green roof."], "sample_ids": ["9b6a637ead444bd28452178c74697653", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["image is royalty-free, beaver, skateboard", "roof, color, green"], "captions_pred_pc": ["for a black and white image of a person's hand holding a toothbrush", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a beaver on a skateboard royalty free 3d model preview no. 1", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a small house with a red roof.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["085db9059b744673b5623b5338e02196", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, red, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, material is plastic, shape is bottle", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "7407a108e0354925b83b750339bc03df"], "properties": ["color, model, luggage", "platform, color, orange"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a 3d model of a motorcycle on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " of a machine gun with additional items."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "d6e472d088b647c4bf07105b0fba3dba"], "properties": ["color, shape, gun", "gun, type, machine gun"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of an airplane in the shape of the letter 'a'"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a submachine gun"], "question": "which entity is a gun", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, purple, suspended", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a white ceramic vase with brown and beige swirls, stripes, and splatter on it.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["3965acb1aabd4440b9738ebd9c7965fa", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, material, shape", "color, background, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a white ceramic vase with a cracked glaze on the surface", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a stone archway in a grassy area.", " a wooden billiard table with legs."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["location, area, material", "legs, material, wood"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a stone archway", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, text", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a screw", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, material", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a floating small island with trees, grass, and a mountain.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["95e0d4e2464b433dbb6c4d1d30e8150f", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["island, mountain, grass", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white map of the island of malta", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d image of a small island in the middle of a lake", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a wooden staircase with a door and square ceiling panel.", " a potted christmas pine tree."], "sample_ids": ["3fe7e366bf924a00bf4b06ded35fd392", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["door, panel, staircase", "a, color, green"], "captions_pred_pc": ["above a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black and white photograph of a black", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a staircase on a wooden floor", "a 3d model of a christmas tree in a vase"], "question": "which object is greener", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["shape is box, color is white, door is present", "color, background, white"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" a house with wooden framing and trusses.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "703dce44052e48cfb024bceb08141554"], "properties": ["frame, trusses, wood", "roof, beams, frames"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a wooden structure"], "question": "which house has a yellow roof", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["room, bed, desk", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a wooden billiard table with legs."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["roof, air conditioner, house", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["background, color, white", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["311f6655ed854899b07ea10f3613ef7a", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["a, color, red", "color, silver, white"], "captions_pred_pc": ["a black and white drawing of a wallet on a white background", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a castle with two towers", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["color, white, black, white", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white round table with a red accent.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["fea62a865b4e40899d95785533818329", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, white, red", "broom, shovel, fireplace"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a large metal building with a roof and truss structure."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "b85a99699ccd4bcba213322113bb253d"], "properties": ["house, tree, pool", "roof, truss, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " of a house with a pink roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "6162909df6294848a8eea83c3aa9585b"], "properties": ["house, rock, pond", "color, roof, pink"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which house has a pink roof", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", "a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "f13d2d1d78cd49e78f3430abbb251edd"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "collection, room, destroyed, house, roof, plane, ring, paper"], "captions_pred_pc": ["a black and white image of a person's face", "a black and white image of a person's face"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a black and white photograph of a person sitting on a couch"], "question": "which entity has a house with a roof?", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "12093c89a60941e7884b252bdc05104c"], "properties": ["graffiti, chinese writing, door", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["house, fence, dog", "building, material, stone"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, material", "throne, stairs, tree"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a throne with a tree on it"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden billiard table with legs."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, shape, and size", "legs, material, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, red, apples, tree, cactus, dots", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, green, handle", "box, handle, gun"], "captions_pred_pc": ["of a small black object on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a city, train, dragon"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a line drawing of an airplane flying in the sky"], "question": "which entity is a fantasy?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small house with stairs and a roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, white, containers", "roof, stairs, house"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "a2354f13774340d392fbf33564934aab"], "properties": ["color, white, furniture, black", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", "star wars stormtrooper "], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["hat, mustache, chef", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a star wars stormtrooper"], "question": "which entity is not a chef?", "label": 0}, {"captions": [" a child's room in a small house with windows.", " a large house with a roof on a platform."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "cb3e09a301b746918a682a595037c7f7"], "properties": ["room, house, windows", "roof, platform, house"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "09e5288a9e98421985ee6e0042b3c325"], "properties": ["color, grass, moss", "mossy, rock, rocky"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of the comet 67p/churyumov-gerasimenko"], "question": "which rock is mossy", "label": 1}, {"captions": ["a 3d cartoon cat model wearing a blue outfit.", " of a man with black hair, wearing a black shirt, black pants, and a suit."], "sample_ids": ["0d8373961c804794a74971b946ebad8d", "ffbbd798b7e448849b7acd309717739c"], "properties": ["color, outfit, cat", "a, shirt, pants"], "captions_pred_pc": ["a 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a shell on a white background 3d model of a", "a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of"], "captions_pred_image": ["a 3d model of a cat wearing a jacket", "a black and white 3d printed figurine of a man"], "question": "which entity is not wearing a suit?", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "bf18bfd89efd43389781050230467d58"], "properties": ["color, blue, green, yellow, blue", "Lights, number, five"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["s, plane, house", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["- material is plastic- color is green- shape is box", "box, handle, gun"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d rendering of a metal box with a handle"], "question": "which box is made of metal", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["building, skyscraper, city", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d model of a table and chairs on a white background"], "question": "which building has a yellow roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "402601779d1d4146b4cde106dfff1b27"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a snowflake in the air on a cloudy day"], "question": "which entity has a pig in it?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["- material is wood, metal, metal", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d image of a cube with the word 'stories' written on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["black, white, laptop", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a dishwasher with a dish inside it", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a spiral staircase with railings.", " a wooden staircase with a railing and table."], "sample_ids": ["7f24a859ed3d4b7c86f940d8cc11218f", "956247bea850458199c651037d4b1d7f"], "properties": ["railings, staircase, spiral", "railing, table, staircase"], "captions_pred_pc": ["above a black and white drawing of a spiral staircase", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a staircase in a room", "a 3d model of a table with a staircase"], "question": "which staircase has a table", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "09f2cf267e954c958828325067bcc36a"], "properties": ["house, staircase, window", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a black and white image of a piece of dirt on the ground"], "question": "which entity is a small", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "cafc467aff2643e8b70149c4944263ee"], "properties": ["roof, yellow, chimney", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a curved wing?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a small wooden house with a green roof."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["s, chimpanzee, human, wolf", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["a, island, water", "a, material, steel"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "7f8942ef51dd4246993a587a12df168c"], "properties": ["house, roof, green", "house, yard, surrounding buildings"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " of a wooden windmill with a red roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["roof, structure, wall", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a windmill on a gray background"], "question": "which roof is red", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a small house with stairs and a roof."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["base, speaker, light", "roof, stairs, house"], "captions_pred_pc": ["above a black and white illustration of a clock", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of two rocks with ice elements."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["A, a, a", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, roof, block", "low poly, plant, white"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a plant growing out of a rock"], "question": "which object is white?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["ceiling, light, desks", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a brick wall with grass."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "53f2d948091f417cb580e22469c94db2"], "properties": ["color, skyline, buildings", "brick, grass, wall"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a black and white photo of a brick wall and a puddle"], "question": "which is not a building", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["house, plane, town", "houses, trees, road"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " a large metal building with a roof and truss structure."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["frame, screen, color", "roof, truss, structure"], "captions_pred_pc": ["of a black and white cross on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, house, small", "roof, truss system, framing"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a house"], "question": "which house has a roof with truss system", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a black and white striped box."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["blue, lid, handle", "color, black, white"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d image of a black and white striped surface"], "question": "which box is black and white?", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " of a small white building with stairs and a lid."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["books, paper, lamp", "building, stairs, lid"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", "a white of a man with arms outstretched."], "sample_ids": ["21639082215b4b179d574d2408124838", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, room, furniture", "image, color, white"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "a white of a woman with her arms outstretched."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, black, white", "image, color, white"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" of a white round table with a red accent.", " a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling."], "sample_ids": ["fea62a865b4e40899d95785533818329", "c7fdb8d8f32b415cb5d2a9b41dd7d77b"], "properties": ["color, white, red", "Black, Shelf, Metal"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white drawing of a spiral staircase"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a black shelf with square tiles"], "question": "which table is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["- material is plastic- color is white- shape is cylinder", "color is white, yellow, plastic"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " of a wooden windmill with a red roof."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["color, leg, tail", "roof, color, red"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a windmill on a gray background"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["ceiling, beams, light", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a window", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a black and white photograph of a birdhouse"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a human skull", "a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\""], "sample_ids": ["3550b1feb37745b6a6dbec510ccb740b", "5d08c34bfb2c4c9b9538e24d68761331"], "properties": ["a, b, c", "- material is plastic- color is white- shape is cube"], "captions_pred_pc": ["a hedgehog in the center of the image a hedgehog in the center of the image on a white background royalty free illustration", "of a black and white photo of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a human skull royalty-free 3d model preview no.1", "a 3d image of a cube with the word 'stories' written on it"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a green circuit board."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, white, red, pink", "color, green, circuit board"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "of the item in the image"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of an electronic component"], "question": "which entity is a circuit board?", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", " a small white building with stairs and a white table."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, hat, shoes", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a teddy bear", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a woman in a black dress with wings and shoes, featuring a spider and robot elements.", "star wars stormtrooper "], "sample_ids": ["745fed115c5343dab9d7f0c389c98902", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["costume, color, black", "a, color, white"], "captions_pred_pc": ["a black and white illustration of a bumblebee on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a person wearing a futuristic costume", "a 3d model of a star wars stormtrooper"], "question": "which costume is white", "label": 1}, {"captions": [" an african figurine with a bow and arrow, standing on a wooden base, wearing a hat.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["d81d13362ae04371bb2cba46e4939665", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["hat, bow, arrow", "hat, color, tan"], "captions_pred_pc": ["above a black and white photo of an ice sculpture", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a sculpture of an african man sitting on a pedestal", "a 3d model of an object with a hole in it"], "question": "which hat is tan", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a pixelated-textured purple sphere ."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fb68393941804e769d5c9b372864a642"], "properties": ["color, shape, and size", "texture, color, shape"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white square made of dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house with a green, wooden-structured roof."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["Arms, Legs, Color", "roof, color, green"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a white shelf with holes and brackets."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "8f17016d6c0049fc98c5bfe5e6265740"], "properties": ["buildings, houses, grass", "color, white, holes"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a triangle with dots on it"], "captions_pred_image": ["an image of a pile of trash on the ground", "a white bench with a shelf on top"], "question": "which entity has holes", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a group of ponies in a row."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "e2c00fdbc5bd40bba2c41b62520a58e9"], "properties": ["floor plan, bathroom, pool", "group, row, pony"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of an octopus on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of my little pony"], "question": "which entity has a row of ponies?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "46903bf029934b1989bc062dcb0a5531"], "properties": ["cup, bottle, chessboard", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a close up of a black object on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, shape, material", "box, handle, gun"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white square with dots on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden cube.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["cf3ae5b8dad64e338c835d22947ce796", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["shape is cube, material is wood, color is brown", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a marble cube on a white background royalty free 3d model preview no.3", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", "a featuring a building, a coin, a small black box, and a ball."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "949cf1a57aea45d18261e980b21b8c35"], "properties": ["yellow, table, roof", "a, building, coin, ball"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a triangular shaped object"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a box with a coin next to it"], "question": "which entity has a coin?", "label": 1}, {"captions": [" a robot head with a helmet.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["55ccc07cea0640788d42448bc6559087", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["helmet, head, robot", "house, table, chair"], "captions_pred_pc": ["of a silver ring with black crystals", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a bust of a robot head royalty free 3d model preview no 2", "a 3d rendering of a small white table with a chair"], "question": "which object has a table and chair?", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a, hole, rock", "houses, trees, road"], "captions_pred_pc": ["a black and white image of a lace belt", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a large steel building with a pool."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["base material is wood, color is red, message is welcome to northwich", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["shape, color, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a pair of socks", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["rusty, sink, graffiti", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a large, black and white circular building, resembling a stadium or ring structure.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["67f46bb0048244c687a58d1017a08f6b", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["building, color, black and white", "color, background, white"], "captions_pred_pc": ["the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a circular fence with black and white stripes", "an image of a white background with a few small cubes on it"], "question": "which entity is not a building?", "label": 0}, {"captions": ["a golden padlock with numbers and the word \"master\" on it.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["006d1922549f4f83a87158c46c8f8ea8", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["size, material, color", "a, color, red"], "captions_pred_pc": ["of a padlock on a white background padlock on a white background stock illustration", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a padlock with numbers on it", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a white of a man with arms outstretched."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "09f2cf267e954c958828325067bcc36a"], "properties": ["hat, sword, gun", "island, terrain, rocks"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a black gun/rifle"], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "b596b52b86914c2b9bc4b4cd096621db"], "properties": ["resembles, toy, bookshelf", "color is black, material is metal, type is gun/rifle"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white image of a gun on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a black gun on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, screen, drawer", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "be1376023c274bdda995d54f3694157f"], "properties": ["frame, truss, roof", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a rock with a screw and a nail sticking out of it.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["b0427ff55c4346e293c1241c71d30528", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, rock, nail", "building, room, sky"], "captions_pred_pc": ["above a black and white illustration of a bird sitting on top of a rock", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d image of a rock with a screw in it", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["a box, a cup, a bottle, a jar", "table, staircase, light"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a table with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a wooden shed with a gray roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["house, rock, pond", "roof, color, gray"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the color of gray", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a small white airplane flying in the air."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "747fb98f64794cdd96486debaf20a02c"], "properties": ["stacked, racks, toy train", "airplane, color, white"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "of a black and white image of a clock"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a small airplane"], "question": "which object is white", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "three white paper windmills and a city model with a nativity scene silhouette."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fa5ee6165f31465d9d75d046818f4006"], "properties": ["color, shape, and size", "windmills, silhouette, city model"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white photo of a pair of sunglasses"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a cityscape on a white background"], "question": "which entity is a city model?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a white chest of drawers with legs."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, light, jewels", "chest of drawers, legs, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" of a wooden windmill with a red roof.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2ad8fca30285483d8b7f602fa078215d", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, color, red", "house, fence, playground"], "captions_pred_pc": ["a white and black image of a snowflake in the shape of a snowflake", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a windmill on a gray background", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", "a white of a woman with her arms outstretched."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, shape, texture", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["roof, purple, suspended", "structure, columns, roof"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with multiple levels"], "question": "which building has a wooden structure?", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " a green circuit board."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "1b2cc7abaf5e4e7e9d4652163d051b16"], "properties": ["color, black, rings", "color, green, circuit board"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "of the item in the image"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d model of an electronic component"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, ceiling, hole", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a large metal building with a roof and truss structure."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small white building with a floor plan and ceiling light."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "1df55bb7035941cc9829aa904e2af065"], "properties": ["ceiling, light, desks", "floor plan, ceiling light, color"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a line of dots on a white background a line of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a white 3d model of a house"], "question": "which entity has a floor plan and ceiling light?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a white of a woman with her arms outstretched."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, grass, moss", "image, color, white"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof trusses, beams, suspended ceiling", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d rendering of a house on a rock"], "question": "which house has a boat?", "label": 1}, {"captions": [" of a cannon with a wheeled cart.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["bef830ddd37344209fcbf102fca0ef29", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["wheeled, cart, cannon", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a wheel with two wheels", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a cannon royalty free 3d model", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "box, paper clip, lock"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a lock?", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "654c49e07bb54e6b94637b5f7b65bf08"], "properties": ["floor, wall, roof", "floor, table, wall"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a coffee cup, a spoon, and a knife on a black background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a bench on a tiled floor royalty free 3d model preview no.3"], "question": "which floor is tiled", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small house with a tree and a rock."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["background, color, white", "house, tree, rock"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a small house with a tree in front of it"], "question": "which entity has a tree and a rock?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", "a 3d white cube with windows resembling a building."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, black, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, sword, gun", "hat, watch, clock"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a futuristic chair"], "question": "which entity has a clock?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, color, pink", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the roof of a building"], "question": "which roof is pinker", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "room, furniture, window"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "cafc467aff2643e8b70149c4944263ee"], "properties": ["shape is hot dog, design is dragon, color is black", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "a black umbrella on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which object has a wing?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["a box, a cup, a bottle, a jar", "house, fence, playground"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a blue pickup truck", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["b27e6039984b46deb9f907ddf2515a45", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color is blue, make is ford, model is f150", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pickup truck royalty free 3d model no 3", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small wooden house with a green roof."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["ceiling, beams, light", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": ["a white teapot with pink flowers and a handle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["f6c5e8931d164979a71914127c7e5438", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, white, handle", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white dots on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white tea kettle with a black handle and floral design", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "be1376023c274bdda995d54f3694157f"], "properties": ["runner, bed, bench", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a spider-like creature with long arms and legs."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["house, roof, green", "arachnid, leg, arm"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building with a black roof", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "1da865c75a5e4a57a17652975dae5474"], "properties": ["A, a, a", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a bench", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, green, tiled", "roof, structure, suspended"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a house with a metal roof"], "question": "which roof structure is more detailed", "label": 1}, {"captions": [" of a large gray sphere", " of two rocks with ice elements."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["size, color, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a spider-like creature with long arms and legs."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, color, white", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", "star wars stormtrooper "], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, horns, eyes", "a, color, white"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 0}, {"captions": [" of a stage featuring a black dj booth with purple lighting and a kitchen hood.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["a163994b0faa40d2a12097ef1d9e8642", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, lighting, booth", "house, tree, hill"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper with dots on it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a stage with a podium and a microphone stand royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["backrest, heart, wooden", "a, material, clay"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "766a075b4760433bafdbe88bee546796"], "properties": ["a, booth, bed", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wall covered in graffiti", "label": 1}, {"captions": [" of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["4ec4c815539f4f3f8cc2272e09f2aa41", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["earphones, wire, instrument", "house, table, chair"], "captions_pred_pc": ["of a curved metal rod on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", "a white of a woman with her arms outstretched."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["texture, spikes, eyes", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a picture of a woman?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, balcony, street", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a wooden roof structure with a pink roof."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof truss, beams, structure", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink", "label": 1}, {"captions": [" a small terracotta vase with a white and brown pattern.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["767c925e15bd4705a5474ba32d4b3607", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, pattern, material", "roof, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a cookie on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a large white vase on a grey background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a fireplace, wooden bench, sled, log, castle, and cat.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["fe4cd6c3972940a5b7854ca1ebc8a5a3", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["fireplace, bench, log", "fireplace, bench, log"], "captions_pred_pc": ["a black and white illustration of a snowflake", "a black and white illustration of a snowflake"], "captions_pred_image": ["a 3d model of a fireplace with snow on the ground", "a 3d model of a fireplace with snow on the ground"], "question": "which entity has a fireplace", "label": 0}, {"captions": [" of a house with a pink roof.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, roof, pink", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a pool", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of the roof of a building"], "question": "which house has a roof with trusses?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "20a02705a66f460492e07345e84a62ed"], "properties": ["water, river, island", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "b896a0898efe4059a776193c02132129"], "properties": ["roof, color, gray", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, text", "color, background, white"], "captions_pred_pc": ["a black and white image of a screw", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "an image of a white background with a few small cubes on it"], "question": "which entity is a sign?", "label": 0}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["house, plane, town", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a large, rusty, square-shaped metal pillar resembling a rusted tower."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "b5afccae993346079483507296fbb029"], "properties": ["location, field, gravestone", "shape is square, material is metal, color is rusty"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white image of a square frame with dots"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a concrete column"], "question": "which object is made of metal", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, green, squirt gun", "axe, handle, wood"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a small white barn with a metal roof."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "4ca3342a96824684845f7d0e062ab176"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, metal, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, white, material, ceramic", "grass, plants, rocks"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of a tree"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a group of trees"], "question": "which entity is made of grass", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["stacked, racks, toy train", "room, furniture, window"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a small wooden house."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, roof, white, cubes", "house, material, wood"], "captions_pred_pc": ["above a black and white image of a map", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a small cottage"], "question": "which building is made of wood", "label": 1}, {"captions": [" a purple chair with holes in it.", " a white square with the words \"what tv\" on it."], "sample_ids": ["833151c8e0f4489a9fa966635a948452", "0c1e8d76d4ff4859835f55c0681408a6"], "properties": ["color, purple, holes", "color, white, words"], "captions_pred_pc": ["of a silver pendant with an intricate design", "a black and white image of a long line of numbers"], "captions_pred_image": ["a 3d model of a white chair", "a 3d rendering of a white box on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d gold-plated cylindrical device with a green screen and an emerald green stone.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["adec10493e06436c967d5797f7085225", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, material, shape", "color, frame, shape"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d rendering of a car's air intake system", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "225e4094141d416faba7c5598dc55ff8"], "properties": ["- color is white - shape is box - material is plastic", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " of two rocks with ice elements."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, green, tiled", "image is a rock with ice elements"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small pink stone pillar/column.", " a small purple plastic chair with holes."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["size, material, color", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a small square with black dots", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a stone column on a white background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a house with a roof and beams."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, base, slanted", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a chair", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a house with a wooden-framed roof structure."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, brown, flat", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a house with a wooden-framed roof structure."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, purple, beams", "roof, material, wood"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a large white and metal building with a metal roof structure."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["water, river, island", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["books, paper, lamp", "building, plane, city"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["top, color, wood", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "18e392c5360146eda498c5edab25b15c"], "properties": ["wall, stairs, castle", "frame, beams, trusses"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a building under construction"], "question": "which structure has fewer beams", "label": 1}, {"captions": ["white 3d tank model", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["31b2f632bf5e4128a5f59a7c9ddad62f", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["color is white, model is 3d, name is tank", "room, staircase, bus"], "captions_pred_pc": ["a close-up view of the back of the phone case", "a black and white drawing of a room with dots"], "captions_pred_image": ["a white 3d model of a tank on a gray background", "a 3d image of a building with a lot of debris"], "question": "which entity has a staircase", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["background, color, white", "lion, statue, fountain"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white image of a metal object"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d image of a lion statue on a wall"], "question": "which entity has a lion statue?", "label": 1}, {"captions": [" a white lighthouse building with a clock tower, rocket, and ladder.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["88eba412c78a4ced89eb857327653f6c", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["lighthouse, building, tower", "building, color, black and white"], "captions_pred_pc": ["a black and white illustration of a water droplet on a white background", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a white sofa on a white background", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small white building with stairs and shelves."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9e1f64d4fd514059be934077717536dc"], "properties": ["A, a, a", "building, stairs, shelves"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": [" a white and red polka-dotted onion-shaped object.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["d89c28f0761e471e9575a6a22c2cc3a0", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, pattern", "color, frame, shape"], "captions_pred_pc": ["a black and white photograph of a radish on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a white and black polka-dotted object on a gray background royalty free 3d model no.3", "a 3d model of a building structure"], "question": "which object is a cube?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["a box, a cup, a bottle, a jar", "houses, trees, road"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black and white photograph of a small town"], "question": "which entity has more houses", "label": 1}, {"captions": ["white wall lamp with a leaf design", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["7afad3ca209c4a91b5457d28bdc2b916", "4a889132cc444d10bfcbf6c760984416"], "properties": ["design, leaf, white", "a, color, white"], "captions_pred_pc": ["above a black and white image of a circular object", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a white wall sconce with a leaf design and a light bulb", "a 3d model of a desk and chair"], "question": "which entity is not a wall lamp?", "label": 0}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["d6087023095446fbadef1721478373b2", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["door, roof, window", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["house, rock, pond", "glass, metal, balls"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["location, area, material", "building, color, white"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, roof, block", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["box, cylinder, bottle", "wood, board, shelf"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a blue roof."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["roof, structure, wall", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house with a roof"], "question": "which roof is blue", "label": 1}, {"captions": [" a small toy bomb with a blue sphere and two legs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c8ea472ef90f4df4ad1d98e02e1e4dfe", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a black and white image of a glass teapot", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a small, white ball", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "b896a0898efe4059a776193c02132129"], "properties": ["- color is white- shape is cubes- number is 1", "- material is stone, metal, concrete"], "captions_pred_pc": ["a close up of a black and white striped scarf", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, plane, sky", "Wheels, laptop, robot"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a house with a wooden-framed roof structure."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["ceiling, light, desks", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "f1b557775310478893242180defa4d80"], "properties": ["building, balcony, street", "shack, roof, door"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small building with windows and a roof."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["frame, roof, trusses", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a small building with windows and a roof."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, red, blue, structure", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, room, ceiling", "roof, beams, chimney"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a roof"], "question": "which house has a roof with wooden beams?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a large building with a roof and windows."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "32d1fbd3ee91426882290305f70021e6"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wrecked plane, ship, and bird on a pile of rocks with grass.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b0c703df20154bbf9fd8707c61137fc5", "b896a0898efe4059a776193c02132129"], "properties": ["plane, ship, bird", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white watercolor map of the state of ohio", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a black and white photograph of a pile of debris on the ground", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["color, material, structure", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity is a painting?", "label": 1}, {"captions": ["a 3d-printed green plastic cylinder with a hole in the middle.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["9faa0c251d394f368f4f537ea21f977f", "a24872444e5c468a9264d503a9ca7276"], "properties": ["color, material, shape", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white image of a glittering object", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity is made of rusty metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a white castle composed of small cubes."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["bed, desk, window", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": ["a 3d printed model of a human skeleton foot and leg.", " a house with a wooden-framed roof structure."], "sample_ids": ["6eea1e2ab3f645f6a4670cccbc85c908", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, material, color", "roof, material, wood"], "captions_pred_pc": ["for a black and white illustration of an owl in the shape of a heart", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the foot and ankle bones royalty free 3d model preview no.", "a 3d model of a building with a roof"], "question": "which is not made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a white and blue building with a black roof."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, house, small", "color, white, blue, roof, black"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", "a low-poly of a white, shattered sphere."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, mouth, eyes", "sphere, color, texture"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["shape is box, color is white, door is present", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "a095621f2d5845af83db3f59f5685982"], "properties": ["size, material, logo", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["in the title the logo for maria ruiz", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a metal tray with two rolls of paper in it"], "question": "which object is made of stainless steel", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a 3d white object resembling a knife, sword, and airplane."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "d88df1cb10da467bb6f77af6aeaa8f86"], "properties": ["background, color, white", "shape is cylinder, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a cat's head", "of a spike on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a paper airplane"], "question": "which object is white", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "bded33af34104b9686b845dfd18309a9"], "properties": ["color is white, material is plastic, shape is box", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, roof, toothbrushes", "door, roof, pool"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a small house"], "question": "which house has a door", "label": 1}, {"captions": [" a multicolored metal building structure with a roof.", " a black and white striped box."], "sample_ids": ["22483891fd124baca3bbc6a6a49adc9c", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, roof, structure", "color, black, white"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d image of a black and white striped surface"], "question": "which entity is a box?", "label": 1}, {"captions": [" of a large gray sphere", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "1da865c75a5e4a57a17652975dae5474"], "properties": ["size, color, shape", "color, white, plastic"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "4a889132cc444d10bfcbf6c760984416"], "properties": ["size, color, design", "a, color, white"], "captions_pred_pc": ["a black and white pattern on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a road in front of it.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, front, road", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, head, bowl", "grass, plants, rocks"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, purple, suspended", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "703dce44052e48cfb024bceb08141554"], "properties": ["house, roof, wooden", "roof, beams, frames"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a wooden structure"], "question": "which house has wooden beams", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "bf18bfd89efd43389781050230467d58"], "properties": ["graffiti, chinese writing, door", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a house with a wooden-framed roof structure."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["a room, a cake, a table", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["roof, purple, suspended", "house, color, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" of a green, yellow, and white striped object.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["d3fff6cd429842e4a1188e794f07d7d9", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a black and white striped rug on a white background", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a white shelf with two shelves", "a 3d model of a sea urchin"], "question": "which object is made of a material that is white and brown?", "label": 1}, {"captions": [" of a person with outstretched arms", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["fc785c3c22794ccb9c8a58c79ac5bec6", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["arms, outstretched, person", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a pair of eyes", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model preview no.2", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof trusses, beams, suspended ceiling", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a house with a roof and beams."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["houses, trees, road", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, red, green, blue", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a large orange pumpkin."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, bowl, green", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, tan, brown, orange", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a tree"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["lamp, harp, bowl", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front of it", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\""], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "80dfbe37b3d74f11b712ca1ad6570f70"], "properties": ["location, field, gravestone", "image, color, pink"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white photograph of a dog in a bowl"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d sculpture of an animal on a piece of paper"], "question": "which image has a pink sign?", "label": 1}, {"captions": [" a white soccer ball and a small boat on a blue table.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["ff3cbbd992744643b9351286b7dfc1ca", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, table, ball", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a small object on a flat surface royalty free 3d model preview no. 3", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building with blue lines and structure.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, shape, structure", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a woman's chest"], "question": "which entity has a hexagonal pattern", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a small white wooden castle with flags, turrets, and two towers."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "345b1c7d2d9b4524aa0dcdc3cd27e4da"], "properties": ["color, shape, and size", "turrets, flags, towers"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a square made up of many small dots on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1"], "question": "which entity has more turrets", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a knife, blade, handle", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d rendering of a table and stool"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a roof.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "06a1c233fb444830b577aa06e2c01294"], "properties": ["roof, house, small", "house, tree, hill"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small house with a roof."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["house, yard, surrounding buildings", "roof, house, small"], "captions_pred_pc": ["a black and white image of a truck on a white background", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d silver knight's helmet.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["- material is metal- color is silver- texture is textured", "cover, black, plastic"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["s, chimpanzee, human, wolf", "hat, skull, bread"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a tree with green leaves."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "1a902b67735845198efb1b84f434b580"], "properties": ["color, sphere, molecule", "leaf, color, green"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": [" a white and black striped box resembling a stack of blocks or paper.", " a four-legged metal workbench with shelves."], "sample_ids": ["78246d66fd2e4e1195bc4536f4037862", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["striped, white, black", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of a stack of books", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, color, yellow", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a room", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["resembles, toy, castle", "table, stairs, ladder"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d model of a table with a stool on top"], "question": "which object has stairs and a ladder", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a white staircase with a black railing in a room."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "d05c1b6047e145a4906c467a9ebe7430"], "properties": ["house, color, white", "color, white, railing, black"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a small white building", "a 3d rendering of a white staircase with a stainless steel handrail"], "question": "which staircase is white", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a roof."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0d2246e433ce4066b76489f17ba8d694"], "properties": ["apse, roof, floor plan", "roof, house, small"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with a triangular roof"], "question": "which house has a roof", "label": 1}, {"captions": ["a red and white 3d-rendered motorcycle with luggage.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["e9c1ff9a40494ea59c2263fd3d6ea477", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["color, model, luggage", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a motorcycle on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a motorcycle with two bags on the back of it", "a clear acrylic foosball table"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " a wooden barrel."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "77ceb4db6ddc4a6c8c4a83ab1519e78b"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "material is wood, shape is barrel, color is brown"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a gray and white barrel"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "97e000ff41094665afd94ea565da8b13"], "properties": ["- color is white - shape is box - material is plastic", "roof, material, wood"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a large stone buddha statue atop a rock, on a monumental pillar.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["478ab30e64cd4dbc8fa09ba76f5b95cb", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["buddha, rock, pillar", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white illustration of a tombstone", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a buddha statue on a pedestal royalty-free 3d model preview no 3", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, island, resembles, hawaii", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a green mountain with trees and grass."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["Steel, Color, Yellow", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a building", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a mountain with snow on it"], "question": "which entity is made of grass", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "88eba412c78a4ced89eb857327653f6c"], "properties": ["color, shape, height", "lighthouse, building, tower"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": ["a pink and gray rock with a label on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8db01d72ccd24ee7aadc16d5f800267d", "c3a82df41875402285608ef13a55df57"], "properties": ["color, label, shape", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a rock on a white background a black and white illustration of a rock on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a rock with a label on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a small yellow and green sphere resembling saturn with a hat.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["6811a2f3d1154dccb37d534ae673e673", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, shape, size", "blue, curved, resembles"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background a black and white illustration of a dotted circle on a white background royalty free illustration", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d model of the planet saturn royalty free 3d model preview no.2", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a 3d red and white santa claus teddy bear with a flying plane and floating hat."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "0797e97b272c43d59bfeb5821421c5eb"], "properties": ["shape is sphere, color is white, material is plastic", "hat, color, white"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a doll made of beads"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a black and white photo of a snowflake falling from the sky"], "question": "which entity is made of plastic", "label": 0}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, material, structure", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, material, texture", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a wooden staircase with a railing and table."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "956247bea850458199c651037d4b1d7f"], "properties": ["bed, desk, window", "railing, table, staircase"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "18e392c5360146eda498c5edab25b15c"], "properties": ["resembles, toy, bookshelf", "frame, beams, trusses"], "captions_pred_pc": ["a black and white image of a book cover", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["image is a sculpture of an angel on a wall", "color, head, white and brown"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a white castle composed of small cubes."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["shape is cylindrical, color is silver, material is metal", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, yellow, plastic", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" a small grassy island in the water.", " a clay pot with holes in it."], "sample_ids": ["8deaa4a70121459dad93f07f72d5f724", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["location, water, island", "hole, material, clay"], "captions_pred_pc": ["above a black and white image of a map", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a lake", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a four-legged metal workbench with shelves.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["e93b633d477942d9b79ef8ab566473d6", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["Four legs, Metal, Shelf", "island, terrain, water"], "captions_pred_pc": ["for a black and white illustration of a cross", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a red circle, red and white arrow, mouse, and child's handwriting."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3c233f87bf264968a7f0660b9eac9e4a"], "properties": ["color, shape, and size", "red, mouse, handwriting"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white drawing of a person's hand holding a pencil"], "question": "which entity has a mouse?", "label": 1}, {"captions": ["a featuring a room with purple and black walls, a table and chairs, a pink and black door, a purple and black cabinet, and a pink and black shelf.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["21639082215b4b179d574d2408124838", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, room, furniture", "table, staircase, light"], "captions_pred_pc": ["for a black and white image of an abstract design on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white 3d rendering of a room with a table and chairs", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": ["a small brown metal box with a handle and lock on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["b5577a917c6343c1befcaf81e6da648b", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["Brown, metal, lock", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a square with dots", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a black box with a lock", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " of two rocks with ice elements."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, floor, columns", "image is a rock with ice elements"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["roof truss, insulation, suspended ceiling", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a potted christmas pine tree."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, material", "a, color, green"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "97e000ff41094665afd94ea565da8b13"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "roof, material, wood"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["floor, table, light", "island, mountain, grass"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a blue plastic stool."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["- material is metal - weight is 0 - height is 0", "color, plastic, blue"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of an egyptian sarcophagus."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["light source, fixture, color", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a green mountain with trees and grass."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["room, door, shelf", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a house with a roof and beams."], "sample_ids": ["b5afccae993346079483507296fbb029", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["shape is square, material is metal, color is rusty", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a building with a roof"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, green, orange, star", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["metal, roof, chest", "- material is wood, rusty, horned"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a wooden chest", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "c3a82df41875402285608ef13a55df57"], "properties": ["color, hat, glasses", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "443554d4d7044c66aa8cbff63c737589"], "properties": ["color, roof, block", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is made of different colors", "label": 1}, {"captions": ["stainless steel tray with two metal tubes, resembling a light fixture.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["a095621f2d5845af83db3f59f5685982", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["- material is stainless steel- color is silver- shape is round", "light, fixture, square"], "captions_pred_pc": ["of a black ribbon on a white background", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a metal tray with two rolls of paper in it", "a 3d model of a desk with a table on top"], "question": "which light fixture is square", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a basket containing various objects, including balls, eggs, a stuffed animal, and a baby, as well as a ring and spheres with wire mesh."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "d795985a8bbe480282e349ff85fb1ef2"], "properties": ["a, hole, rock", "Contains, Objects, Various"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d sculpture of a person sitting on a chair"], "question": "which object is not a person?", "label": 0}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "97e000ff41094665afd94ea565da8b13"], "properties": ["light, floor, ceiling", "roof, material, wood"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a house with a pink roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["color, roof, pink", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "a black and white drawing of a room"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["- material is plastic- color is green- shape is box", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a small island?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, material, structure", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a room with dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["3D, toothpick, skateboard", "door, roof, pool"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "9968e06a62e8487ea33460e640abc573"], "properties": ["image, color, pink", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white image of a broom on a stand"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a white object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["top, color, wood", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of a fireplace", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "411c164757fc4de68dfecb35fa858223"], "properties": ["resembles, toy, bookshelf", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a book cover", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a sea urchin"], "question": "which entity is a sea shell?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a, bird, lamp", "table, staircase, light"], "captions_pred_pc": ["a silhouette of a person standing in the air", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a table with a staircase"], "question": "which entity has a square light?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["background, color, white", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["12093c89a60941e7884b252bdc05104c", "4a889132cc444d10bfcbf6c760984416"], "properties": ["giraffe, bench, flower", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a gear on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a sculpture made of sticks", "a 3d model of a desk and chair"], "question": "which entity has a bench with flowers", "label": 0}, {"captions": ["a 3d white cube with a square in the middle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, size", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a floating small island with trees", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, plate, yellow", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of a hat on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["mannequin, scarf, color", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a pair of white wall lamps with two shades."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "73e026c5b19c4cadb087d14da7810e3e"], "properties": ["color, shape, and size", "color, white, pair"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a bicycle wheel"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a wall lamp with a white shade and a cord hanging from it"], "question": "which object is white", "label": 1}, {"captions": [" a small house with a red roof.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["roof, red, house", "frame, truss, roof"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a bridge over a road"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a brick wall with grass."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "53f2d948091f417cb580e22469c94db2"], "properties": ["house, roof, toothbrushes", "brick, grass, wall"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "above a black and white illustration of an underwater scene"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white photo of a brick wall and a puddle"], "question": "which object is made of brick", "label": 1}, {"captions": [" a rusty boat, piece of wood, and brick wall.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4dec97bbe6fe46f89768ecd849003a13", "c3a82df41875402285608ef13a55df57"], "properties": ["rusty, piece, wall", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white photograph of a brick wall", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a stone slab on the ground royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house with a flat roof structure."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, roof, green, frame, red", "roof, flat, structure"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a house with a roof"], "question": "which house has a flat roof structure", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " a blue curved object, resembling a wall, box, shelf, and hat."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "73e7107ff3634516846bccad04c5dc87"], "properties": ["color, background, white", "blue, curved, resembles"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white illustration of a piece of jewelry"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a 3d rendering of a white bathroom sink"], "question": "which object is blue?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, material, texture", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a spider's head", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity is a box?", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, framing, material", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of the roof of a building"], "question": "which house has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a house with a roof structure and toothbrushes."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, base, warning", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d rendering of a white box with a lot of blades"], "question": "which object has a roof structure", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["yellow, table, roof", "house, plane, town"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, white, logo", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["roof, room, ceiling", "ceiling, beams, light"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a brick wall with a roof on top"], "question": "which ceiling is more decorative", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a white castle composed of small cubes."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, green, orange, star", "composed of, white, cubes"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a large rock with a hole in it.", " a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "6398f4e75a2d480da58396827ac64249"], "properties": ["size, shape, material", "- color is red, blue, pink"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "for a black and white image of an object on a white background"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a white chandelier with three light bulbs hanging from the ceiling"], "question": "which object is made of red", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["shape is sphere, color is white, material is plastic", "bowl, pottery, headpiece"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": [" a small building with a staircase in a room.", " a large steel building with a pool."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["room, staircase, building", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " of a small white building with stairs and a lid."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["black, laptop, shelf", "building, stairs, lid"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, line, gray", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "a black and white map of the island of malta"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, air conditioner, house", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a wooden staircase."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "98fa820a050e47659135907c6f7b198c"], "properties": ["background, color, white", "material is wood, staircase, wood"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a building"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d rendering of a white wooden staircase"], "question": "which staircase is made of wood", "label": 1}, {"captions": ["smiley-faced banana .", " an old lantern with moss on it."], "sample_ids": ["cc0099a687194a31a052ac761f5fdfea", "62925f26fd624310bd6b31136fe8e706"], "properties": ["face is smiling, banana is yellow, smiley face is a sticker", "moss, lantern, old"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a banana with a smiling face", "a black and white image of an old lantern"], "question": "which object is more likely to be found in a forest", "label": 1}, {"captions": [" a small white box with a green light.", " a white building with a red roof."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, light", "color, white, roof, red"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of an office building"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a house with wooden framing and trusses."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["bedroom, bathroom, bed", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, red, green, yellow", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small wooden sailboat.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["170e890a4f4542dead948b6218ec65ff", "c4e45a41478e42418399074b88d8920f"], "properties": ["size, material, sails", "axe, handle, wood"], "captions_pred_pc": ["a person paddling a kayak on a white background", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a sailboat royalty free 3d model", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a small white house with windows and a black lid."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "4b40af369c1149949f5ccb68becd8430"], "properties": ["color, orange, white", "white, windows, lid"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a white house with three windows"], "question": "which object has a black lid", "label": 1}, {"captions": [" of a green alien creature with long legs and a long tail.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["ad7c9475a4e24462bf6b5c24bcde317a", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, leg, tail", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a sword on a white background", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of an alien creature with a long tail", "a 3d model of a building with many windows"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a mountain range in a mountainous area with a large green field and a small arrow."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "e80eca95874c4bffb8aec54044824d87"], "properties": ["house, lake, pool", "arrow, mountain, area"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a line with a square on it"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a mountain range royalty free 3d model no."], "question": "which entity has a mountain range?", "label": 1}, {"captions": ["a white of a spaceship and building.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["image, building, spaceship", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a dragon with wings"], "question": "which entity has a black and purple dragon with wings and purple eyes?", "label": 1}, {"captions": [" a small house with a red roof.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["085db9059b744673b5623b5338e02196", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["roof, red, house", "roof, truss system, framing"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of the roof of a house"], "question": "which roof is more complex", "label": 1}, {"captions": ["a featuring a green and white umbrella, flying dragon, cloth, sword, bike, insect, and a green and black creature with a bicycle with two legs.", " of a white chest of drawers with legs."], "sample_ids": ["ee85486b41c1442aaf35fc2563381ad0", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, dragon, cloth", "chest of drawers, legs, white"], "captions_pred_pc": ["a 3d rendering of an alien toy on a white background royalty free 3d illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a black kite flying in the sky royalty free 3d model preview no. 3", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a roof, featuring roof truss, insulation, and a suspended ceiling."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "c1462fda08db4a769f68adae5c88cd43"], "properties": ["roof truss, insulation, suspended ceiling", "roof truss, insulation, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of an arrow pointing to the right"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a white bench with a grid pattern"], "question": "which entity has a roof truss", "label": 0}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a wooden roof structure with a pink roof."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, material, frame", "roof, color, pink"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of the roof of a building"], "question": "which structure has a roof that is pink", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["b5afccae993346079483507296fbb029", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["shape is square, material is metal, color is rusty", "roof, brown, flat"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["3e22efacf9ee40a1a6b2e4b72a7314d2", "f1b557775310478893242180defa4d80"], "properties": ["a, booth, bed", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of a tv screen with dots all over it royalty free illustration", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a room with a black and white color scheme", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and door", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "4e82177059204292899fa7415164a05e"], "properties": ["house, fence, dog", "yellow, tires, load"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a monster truck with spikes"], "question": "which entity has a load of sticks", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", " of two rocks with ice elements."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, color, pink, blue", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["light switch, electrical outlet, furniture", "building, room, sky"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["chair, table, refrigerator", "table, structure, roof"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of a map with dots"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white 3d mannequin human head.", "a yellow and blue toy submarine."], "sample_ids": ["0598fef648c8422f84410847fda77e6a", "da2719db8f4f4668af5b74c96e80c6cd"], "properties": ["color, white, mannequin", "color, yellow, blue"], "captions_pred_pc": ["a black and white image of a heart shaped ring", "of a black and white image of a starfish on a white background"], "captions_pred_image": ["a 3d model of a human head on a white background royalty free 3d model preview no.2", "a 3d model of a submarine toy"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a black rock with writing on it.", " of a small white building with stairs and a lid."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, black, writing", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a white box on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, shape, height", "giraffe, bench, flower"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "990f06da2ba4488da8371f68da6b4523"], "properties": ["frame, roof, trusses", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a wooden roof"], "question": "which house has a wooden roof truss structure and ceiling with wood beams?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a green, wooden-structured roof."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house with a triangular roof"], "question": "which house has a green roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- color is red, blue, pink", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a white human skull with broken bone elements."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, size", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a human skull in white"], "question": "which entity is a skull", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", " a house with a roof and beams."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, words", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a long line of numbers", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": ["a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["4df70180f2ea400782d2e2de76063894", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, black, blue", "building, window, skeleton"], "captions_pred_pc": ["a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a black and white 3d model of a person holding a sword in the shape of a paper airplane", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "f3edc84dc71649c1a11270437279255b"], "properties": ["lamp, harp, bowl", "hippo, hind, legs"], "captions_pred_pc": ["a black and white illustration of a curved line", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a large white and metal building with a metal roof structure."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["- material is wood - color is white - height is 1.8 m", "roof, metal, white"], "captions_pred_pc": ["an illustration of a barbed wire fence", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", " a robotic warrior with a sword."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "weapon, sword, robot"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a low poly 3d model of a rock", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c8936ace72954650b4e2d84246964849"], "properties": ["Drawer, Handle, Wood", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": ["a low poly of a pink donut with eyes, mouth, and yellow frosting.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["1271987b3fed464daad412ebce14d33e", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, mouth, eyes", "a, color, white"], "captions_pred_pc": ["of a silver bowl with black dots on the surface", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white donut with eyes", "a 3d model of a desk and chair"], "question": "which object is white", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " of a man with black hair, wearing a black shirt, black pants, and a suit."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "ffbbd798b7e448849b7acd309717739c"], "properties": ["color, shape, pattern", "a, shirt, pants"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of pebbles on a white background 3d illustration of a pile of"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "a black and white 3d printed figurine of a man"], "question": "which entity is not a suit?", "label": 1}, {"captions": ["a victor calculator with a black plastic cover and wall-mounted design.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["88ffa01f4fc34a8cb3e2a659e9e26125", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["cover, black, plastic", "paint, rust, concrete"], "captions_pred_pc": ["of a black and white image of a skateboard", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a victor calculator on a white background", "a 3d model of a concrete wall"], "question": "which entity is more likely to be rusted", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a house with a roof and beams."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, horns, features", "roof, beams, house"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a large black mat with square grid design.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["72aac2e9ccd7482eb88e5e4bc204fbf3", "b896a0898efe4059a776193c02132129"], "properties": ["size, color, design", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a black rubber mat on a gray surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["building, roof, white, cubes", "roof, truss, suspended ceiling"], "captions_pred_pc": ["above a black and white image of a map", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a house with roof trusses"], "question": "which entity has a roof truss", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, head, bowl", "Wheels, laptop, robot"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a black and white image of a suitcase on wheels"], "question": "which object has a laptop?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, bird, hook", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, blue, roof, black", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "f1b557775310478893242180defa4d80"], "properties": ["color, material, texture", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack", "label": 1}, {"captions": [" of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["766a075b4760433bafdbe88bee546796", "c3a82df41875402285608ef13a55df57"], "properties": ["graffiti, wall, wheelbarrow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a bowl on a stand", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a wall with graffiti on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a flat roof structure.", " of two rocks with ice elements."], "sample_ids": ["abc52d210d71415296730bb00352ce6f", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, flat, structure", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a window with dots around it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a small wooden house with a blue roof and clock tower.", " a large steel building with a pool."], "sample_ids": ["6b745457e06840119058883b35f78f58", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, color, blue", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a building with dots", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house with a steeple on top", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small triangular-shaped object."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "2d02985030804209a26c2c53b96a06f9"], "properties": ["roof, green, lawn", "shape, triangle, small"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["building, tree, plane", "house, staircase, table"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", "a white of a man with arms outstretched."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " of a flat roof with a floor heating system and ceiling featuring wood beams and light."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "30a0b34d05ae48cf9f9e26eb0d842e50"], "properties": ["a, b, c", "ceiling, beams, light"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white drawing of a window"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a brick wall with a roof on top"], "question": "which entity has a ceiling featuring wood beams and light", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "09f2cf267e954c958828325067bcc36a"], "properties": ["a, ball, mushroom", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a large house with a roof on a platform.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, platform, house", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["roof, room, ceiling", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white map of germany on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small house with a tree and a rock.", "a white of a house with a hole in the ceiling."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["house, tree, rock", "image, house, ceiling"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["3D, toothpick, skateboard", "room, furniture, window"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d image of a room with a person in it"], "question": "which entity has a window", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["texture, color, shape", "roof, color, yellow"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a person breaking through a brick wall."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, color, pink", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a toilet", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of brick?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["house, plane, town", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a damaged building", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["Drawer, Pattern, White", "metal, rusted, paper"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a black and white image of a piece of debris on the ground"], "question": "which object has rusted metal", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["face, handle, spout", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a house with a flat roof structure."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, mattress, pillows", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a gnome toy wearing a striped hat.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["72f220d616de466fa1315c1c9bbb5c4c", "745fed115c5343dab9d7f0c389c98902"], "properties": ["hat, toy, gnome", "costume, color, black"], "captions_pred_pc": ["above a black and white photograph of a crocodile", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a stuffed gnome wearing a striped hat", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" a purple and orange toy with a stick, resembling a cartoon character holding a ball.", " a house with a roof and beams."], "sample_ids": ["b52f7dd3893c4e689b0a938d433321a7", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["a black and white image of a spoon with a ball on top", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a cartoon character hanging from a piece of paper royalty free 3d model preview no. 3", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a wooden roof structure with a pink roof."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["face, handle, spout", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white image of a metal grate"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "205251e4277e41d1aae6b2358267ad56"], "properties": ["apse, roof, floor plan", "image, color, white"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d printed figurine of an alien creature"], "question": "which entity is a photograph?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "e34088fc7b5344c4ab29fef067750225"], "properties": ["graffiti, bench, wall", "sphere, pedestal, statue"], "captions_pred_pc": ["for a black and white image of a boat", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity is a sculpture?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["yellow, table, roof", "bed, desk, window"], "captions_pred_pc": ["a black and white drawing of a floor plan", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a stone wall with a window and a clock."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["backrest, curved, yes", "window, clock, wall"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of a brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": ["a small chicken figurine on a green base.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a8abd4ab2a6943bfa4ac1e01caa109ef", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["base color, chicken, figurine", "roof, color, yellow"], "captions_pred_pc": ["above a black and white illustration of a fish in the shape of a butterfly", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken 3d model of a chicken", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " of a person breaking through a brick wall."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of brick?", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["image size, image, origami", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a hans wegner modern lounge chair in black and wood.", " of a white human skull with broken bone elements."], "sample_ids": ["133c1231b9de4cc19d470bd6182c3a6e", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, material, shape", "color, white, skull"], "captions_pred_pc": ["above a black and white illustration of a chair", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a modern lounge chair royalty free 3d model preview no 2", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house with a green, wooden-structured roof."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["structure, roof, pitch", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " of a white chest of drawers with legs."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["resembles, toy, bookshelf", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d rendering of a white dresser"], "question": "which entity has legs", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "c8936ace72954650b4e2d84246964849"], "properties": ["color, tan, brown, orange", "roof, color, pink"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a toilet"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of a brick wall?", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["building, door, clock", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white image of a church with a steeple", "a black and white photograph of a birdhouse"], "question": "which building has a roof", "label": 1}, {"captions": [" a black metal shelf with four holes and a laptop on it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["b3b6f91d939d4193a0090eaabd39eb47", "5414d75e47104589837f3df8b6de6d22"], "properties": ["black, laptop, shelf", "beige, white, round"], "captions_pred_pc": ["a close up of a black and white tile on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a black metal shelf", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["a24872444e5c468a9264d503a9ca7276", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["rusty, hat, dartboard", "hat, watch, clock"], "captions_pred_pc": ["in 15 words or less an illustration of a 3d character on a white background stock illustration", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a 3d sculpture of a teddy bear standing on a pedestal", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": [" a broken human skull and stone bowl.", " of two rocks with ice elements."], "sample_ids": ["f7f1d8f726cb4ec6bda791aae99a10c2", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["skull, bowl, human", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a toilet bowl with dots all over it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a ceramic bowl with a large crack in the middle", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, awning, cover", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["a, rock, paper", "bedroom, bathroom, bed"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a room with dots"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a small room with a bed, desk, and chair"], "question": "which object has a bed", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " of a small white building with stairs and a lid."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, horns, features", "building, stairs, lid"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a snowy mountain island."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fe8520ec650248fa92ba07bb95712b09"], "properties": ["color, shape, and size", "mountain, island, snowy"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black cross on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photograph of a volcanic eruption"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "ceee98c20f23424195da092156905ec4"], "properties": ["color, light, handle", "face, handle, spout"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a small, circular object"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a white ceramic vase with a face on it"], "question": "which entity has a face", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " featuring a christmas train track, snowman with santa claus, mini golf course, and lego race track in a lego city setting."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9d03ee6c9fcc458e9485aa7cb0d1f4cb"], "properties": ["A, a, a", "a, city, train"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a toy train set on a table"], "question": "which entity has a train?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["roof, stairs, house", "shape is box, color is white, door is present"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a white, open shelving unit"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["a knife, blade, handle", "black, screen, blank"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a piece of white plastic on a gray background", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a blank screen", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a large white and metal building with a metal roof structure."], "sample_ids": ["d6087023095446fbadef1721478373b2", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["door, roof, window", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a small wooden house with a roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["color, white, yellow, roof, metal", "roof, house, wooden"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a small house"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "a17477b445b3443189dad22f768b888b"], "properties": ["s of, snowboard, shoes, mask", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "096e42b466ec438d95c5d89a85191534"], "properties": ["A, a, a", "white, rock, shell"], "captions_pred_pc": ["a black and white illustration of a bench", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a white rock on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a small, snow-covered house."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["house, staircase, table", "house, snow, cover"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" of a white cube-shaped shelf", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["1fc0969de9bf47cab82cae4cc8fe6c2f", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["shape is cube, color is white, material is wood", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", "a white of a man with arms outstretched."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["a, chair, table, light", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a small green chair with a slanted back and white base.", " a chair with a yellow seat."], "sample_ids": ["7f93c12cbbc74e579d5f0430cfa0010f", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, white, base, slanted", "color, yellow, seat"], "captions_pred_pc": ["above a black and white drawing of a chair", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which chair has a yellow seat", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a white and blue building with a black roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, structure, truss", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a roof that is black?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "06a1c233fb444830b577aa06e2c01294"], "properties": ["light switch, electrical outlet, furniture", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small wooden house with a green roof."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["ruined building, stone floor, small stone structure", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a small white house with a roof."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["building, color, yellow-green", "roof, color, white"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a building with a white roof"], "question": "which building is white", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " of two rocks with ice elements."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, tower", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, truss, lamp", "building, roof, yellow"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["arm, jacket, mannequin", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a woman's torso", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white bunny head", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["260dfca84cc64848a6ea0fb74e0f4c92", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, white, head", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a cell", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d white bunny head on a gray background", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a white fox."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "faf57e4fc9e44f34b19d2538d5138519"], "properties": ["background, color, white", "color, white, fox"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white image of a fish"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a white fox on a gray background"], "question": "which entity is a fox", "label": 1}, {"captions": [" a small white archway structure resembling a building.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["5ad02458cf394134a902e25001d2ffef", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["structure, building, archway", "shape is box, color is white, door is present"], "captions_pred_pc": ["for a black and white illustration of a castle on a hill", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d rendering of a white object on a white surface", "a 3d model of a white, open shelving unit"], "question": "which building is a box shape?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small house with a roof."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["room, door, shelf", "roof, house, small"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "205251e4277e41d1aae6b2358267ad56"], "properties": ["a, bird, lake", "image, color, white"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d printed figurine of an alien creature"], "question": "which image is black and white?", "label": 1}, {"captions": [" a large, multi-floor building with columns, shelves, conveyor table, and a ceiling structure featuring pipes.", " a small building with windows and a roof."], "sample_ids": ["6d773d2b0ed9437ea2b9b352bd8a5c25", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["building, floor, columns", "roof, windows, building"], "captions_pred_pc": ["in one line a black and white drawing of a dotted pattern on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a large white table with multiple shelves", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["door, lock, handle", "box, paper clip, lock"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["- material is white- color is white- texture is textured", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a cube", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": [" a black and red robot with a yellow head, resembling an insect and featuring red and yellow flame-like details.", " of two rocks with ice elements."], "sample_ids": ["84ecc9f87efc4638acb5532ecd55b809", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, head, body", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a teddy bear made of dots on a white background illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a robot in low poly style", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of wooden blocks with \"mara ruiz\" logo.", " a large steel building with a pool."], "sample_ids": ["058c420ee2094bfb8fe19a3d3feb6b67", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["size, material, logo", "building material, pool, steel"], "captions_pred_pc": ["in the title the logo for maria ruiz", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a wooden corner post", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" of toy story's cowgirl and woody characters wearing cowboy hats.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["dc2e01ffd285460ca85a47695626e011", "97e000ff41094665afd94ea565da8b13"], "properties": ["image is toy story cowgirl and woody wearing cowboy hats", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a girl in a cowgirl costume", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a small white house with a staircase and a window.", "a white of a spaceship and building."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["house, staircase, window", "image, building, spaceship"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["3d white triangular ramp on a gray background.", " a small white building featuring a room with a door and a white shelf."], "sample_ids": ["5b050792c1634ddb9d1a1cc00bdb3577", "d7b78fa9a6b64f6095b881bc619b04fe"], "properties": ["color, shape, background", "room, door, shelf"], "captions_pred_pc": ["a black and white illustration of a metal rod", "above a black and white illustration of a person standing in front of a door"], "captions_pred_image": ["a long white sheet of paper on a gray background", "a 3d model of an empty room"], "question": "which entity has a door", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["castle, island, house", "house, staircase, table"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", "a white of a man with arms outstretched."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, plane, sky", "image, color, white"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "404d7e2cd8894c31bdda02d2b3196464"], "properties": ["color, black, shade, black", "black, white, coffee table"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white 3d model of a building"], "question": "which object is black and white?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", " of a wooden table with metal legs and frame."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "d6d6f13cda4e485fbed0dcd19b9c9314"], "properties": ["color, handle, zipper", "metal, legs, frame"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "a black and white image of a patterned rug"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a 3d rendering of a white wooden table"], "question": "which object has metal legs", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a house with wooden framing and trusses."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["screen, monitor, stand", "frame, trusses, wood"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a man in a suit holding a cell phone and a gun.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["c017bfb82db1460cafff604c0808793f", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["a, suit, cell, phone, gun", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a silhouette of a person holding a cell phone", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of a man holding a baseball bat in his left hand and a baseball glove in his right hand", "a black and white image of a bird in flight"], "question": "which entity is not a bird?", "label": 0}, {"captions": [" of a house with a pink roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "1da865c75a5e4a57a17652975dae5474"], "properties": ["color, roof, pink", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, cup, bowl", "hat, candy, strawberry"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black and white illustration of two spheres"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a black and white image of a person wearing a hat"], "question": "which entity has a bowl filled with candy?", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", "a black and white of a knife/sword with a handle."], "sample_ids": ["55b26130f1514032be078e13fd982905", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, material", "image, color, black and white"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "bf18bfd89efd43389781050230467d58"], "properties": ["color, material, structure", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", " a gun with a blue handle."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["color, material, pattern", "color, handle, blue"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a gun on a gray background"], "question": "which object has a blue handle", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", "a featuring a skeleton, torn paper, long stick, rock, and broken wood."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "46903bf029934b1989bc062dcb0a5531"], "properties": ["painting, door, wall", "skeleton, torn, paper, long stick, rock, broken wood"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a close up of a black object on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d sculpture of a person's hand in the air royalty-free 3d model preview"], "question": "which entity has a skeleton?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black bracelet with dots on it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["green, hat, cream", "house, table, chair"], "captions_pred_pc": ["a black and white image of a pair of earrings", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small wooden boat in a desert city with unique wooden ceilings.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["28840c5ab03c4d7581f4992199aa4274", "06a1c233fb444830b577aa06e2c01294"], "properties": ["location, city, boat", "house, tree, hill"], "captions_pred_pc": ["above a black and white drawing of a map", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a cityscape with a large building in the center royalty free 3d model no.", "a black and white image of a house in the middle of a field"], "question": "which location has more trees", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a small white house with a roof."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, air conditioner, house", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a window", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small green chair with a slanted back and white base."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "7f93c12cbbc74e579d5f0430cfa0010f"], "properties": ["background, color, white", "color, white, base, slanted"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white drawing of a chair"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a chair"], "question": "which entity has a white base", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "c3a82df41875402285608ef13a55df57"], "properties": ["top, color, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, horns, features", "color, black, blue"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is black and blue?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a small house with stairs and a roof."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["windmills, silhouette, city model", "roof, stairs, house"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "c3a82df41875402285608ef13a55df57"], "properties": ["a, bird, lamp", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a silhouette of a person standing in the air", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "97e000ff41094665afd94ea565da8b13"], "properties": ["light source, fixture, color", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small white box with a green light.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "a17477b445b3443189dad22f768b888b"], "properties": ["color, white, light", "roof, pillar, stairs"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a small building with a balcony"], "question": "which entity has a roof?", "label": 1}, {"captions": ["white hospital bed, medical cart, and bedside table with wheels.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e3ef6fd54af440efa31984214dd6f11d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["bedside table, wheels, white", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a stool on wheels", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d illustration of a white medical trolley on wheels", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" of a white nut, bowl, ring, and light fixture.", " of a small white building with stairs and a lid."], "sample_ids": ["02bdf80f614f44c4ad20dd6c3c1316c4", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["nut, bowl, ring", "building, stairs, lid"], "captions_pred_pc": ["a black and white hexagonal pattern on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["a box, a cup, a bottle, a jar", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a white human skull with broken bone elements."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, red, pink", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a small house with a red roof.", " a white and blue building with a black roof."], "sample_ids": ["085db9059b744673b5623b5338e02196", "c893118316ee43e18322e5964b2806c5"], "properties": ["roof, red, house", "color, white, blue, roof, black"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a white building with a red roof."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["house, roof, toothbrushes", "color, white, roof, red"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a small building with windows and a roof."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["brown, paint, tape", "roof, windows, building"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which object has a roof", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, green, orange, star", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", " a white sofa, chair, and box."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "4c59733ebd634594a921b7ace60e4142"], "properties": ["face, mask, tail", "sofa, chair, box"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", " of a hammer with a long metal handle."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["shape is sphere, color is white, material is plastic", "handle, metal, long"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a hammer with a wooden handle and metal head"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["graffiti, bench, wall", "grass, plants, rocks"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a tree"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a chair with a yellow seat."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "a4de5f2055154465968f33d6289c64e6"], "properties": ["houses, trees, road", "color, yellow, seat"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which entity has a yellow seat", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "bf18bfd89efd43389781050230467d58"], "properties": ["size, material, shape", "Lights, number, five"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a white building with a red roof."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, table, blocks", "color, white, roof, red"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "6b745457e06840119058883b35f78f58"], "properties": ["water, river, island", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small white airplane flying in the air."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "747fb98f64794cdd96486debaf20a02c"], "properties": ["a, plane, small plane", "airplane, color, white"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "of a black and white image of a clock"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a small airplane"], "question": "which plane is white", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["a train, a ship, a boat", "mossy, rock, grass"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a piece of wood on a white background"], "question": "which entity has more grass", "label": 1}, {"captions": ["a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns.", "a collection featuring a human skull, jaw with teeth, foot, moose skull, and bones with two horns."], "sample_ids": ["a44f18a8950b477eba11ba5120e95c38", "a44f18a8950b477eba11ba5120e95c38"], "properties": ["collection, moose, skull", "collection, moose, skull"], "captions_pred_pc": ["a black and white illustration of the letter 'v'", "a black and white illustration of the letter 'v'"], "captions_pred_image": ["a 3d model of a human skull with missing teeth royalty-free 3d model preview no.", "a 3d model of a human skull with missing teeth royalty-free 3d model preview no."], "question": "which entity has a skull?", "label": 0}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " a gray, metal pillar/cylinder."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["- material is plastic- shape is dice- color is white", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "of a black candle on a white background"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, ball, mushroom", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "white of a rhino head with horns."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "8481aade84de47cab1a9accf8067e678"], "properties": ["- material is plastic- color is green- shape is box", "image, rhino, head"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which is not a head", "label": 1}, {"captions": [" of a wooden crate on a checkered floor with a ceiling light featuring a grid pattern.", " of two rocks with ice elements."], "sample_ids": ["e832e6c497a041a0b8bde5418fa20a83", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["pattern, floor, light", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a patterned square", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small wooden box", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof structure, truss, ceiling", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a black and white photograph of a birdhouse"], "question": "which entity has a wooden roof", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small house with stairs and a roof."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["ruined building, stone floor, small stone structure", "roof, stairs, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, shape, size", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a human bone structure", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "house, roof, wooden"], "captions_pred_pc": ["a black mascara brush on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": ["white sphere", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["0c93b28c50ff4f9b87bc45dc39a556a8", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a dotted circle on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a white sphere on a gray background", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", "a white of a spaceship and building."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["hat, sword, gun", "image, building, spaceship"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["s, stick, leaf", "house, staircase, table"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a small house with a spiral staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a two-story small apartment building with a roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["floor plan, bathroom, pool", "two-story, roof, building"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", "a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "3cbdd3ff48804f9a8041b890838613ec"], "properties": ["image, building, stairs", "acropolis, city, building"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview"], "question": "which building is in the desert?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a clay pot with holes in it."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["building, roof, balcony", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a white chevrolet chevelle ss muscle car", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2563abff548c4479970c81491513b572", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, model, year", "roof, material, wood"], "captions_pred_pc": ["a black silhouette of a person holding a cell phone", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a classic muscle car royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["apse, roof, floor plan", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a car dealership interior featuring a showroom, repair shop, and various elements like a booth, bed, and ceiling light."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "3e22efacf9ee40a1a6b2e4b72a7314d2"], "properties": ["A, a, a", "a, booth, bed"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a tv screen with dots all over it royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a room with a black and white color scheme"], "question": "which entity has a bed?", "label": 1}, {"captions": [" a shotgun with a wooden handle and a knife.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7380df872b4f467cb8ae1422bc729162", "7f8942ef51dd4246993a587a12df168c"], "properties": ["handle, knife, shotgun", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a popsicle on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a shotgun royalty free 3d model", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["a, hole, rock", "a, landscape, sand"], "captions_pred_pc": ["a black and white image of a lace belt", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, red, blue, green", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "a17477b445b3443189dad22f768b888b"], "properties": ["color, black, shade, black", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "a17477b445b3443189dad22f768b888b"], "properties": ["graffiti, bench, wall", "roof, pillar, stairs"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white image of a square with dots"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white box with black trim, stripes, and handles.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["55b26130f1514032be078e13fd982905", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, shape, material", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a square made up of dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white box with a black handle", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "e602ac60041f4b4f84c044161e478781"], "properties": ["color, grass, moss", "floor, wall, roof"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has more wood", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a small off-road toy vehicle with wheels."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "7ef2589539b84054b2185633112825cc"], "properties": ["resembles, toy, bookshelf", "wheel, toy, vehicle"], "captions_pred_pc": ["a black and white image of a book cover", "of a black and white photo of a cross on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d model of a dune buggy royalty free 3d model preview no 3"], "question": "which toy has wheels", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, desk, laptop", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a piece of furniture", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["a, landscape, sand", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a stone wall featuring a statue and a window.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["09ab58e01e0d4393bc1e82f157e641be", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["a, window, statue", "glass, metal, balls"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a black and white photo of a sculpture of jesus on the cross", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["white 3d triangular object", " a large metal building with a roof and truss structure."], "sample_ids": ["e03feccd20b0441586c0d12621e8139f", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color is white, shape is triangular, material is plastic", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a tablecloth with dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d white pyramid on a gray background", "a 3d model of a long metal fence"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small white building with stairs and a white table."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "e30374c614f54fdb90f35b96b071349d"], "properties": ["color, material, frame", "building, stairs, table"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, black, white", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d low poly model of a hammer and an axe with wooden handles.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["c4e45a41478e42418399074b88d8920f", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["axe, handle, wood", "a, material, clay"], "captions_pred_pc": ["for a black and white image of a bird's wing", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a knife on a white background", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a purple and green sphere.", "a wooden-cased radio."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "c79d1be9b9a0478993bee32c63231a88"], "properties": ["color, shape, size", "case, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "in 15 words or less a black and white drawing of a computer screen"], "captions_pred_image": ["a 3d model of a ball with a face on it", "3d model of a vintage radio 3d model of a vintage radio"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a white and blue building with a black roof."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "c893118316ee43e18322e5964b2806c5"], "properties": ["house, roof, green", "color, white, blue, roof, black"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a blue plastic stool."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2ea7d871e2f64c7daa6977a8d268b45e"], "properties": ["color, shape, and size", "color, plastic, blue"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white drawing of a chair with dots"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a white chair"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["face, mask, tail", "box, paper clip, lock"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a goat's head", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color is white, material is plastic, shape is bottle", "metal, rusted, paper"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["stair, table, chair", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, base, warning", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "a2354f13774340d392fbf33564934aab"], "properties": ["yellow, table, roof", "building, roof, yellow"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "f3edc84dc71649c1a11270437279255b"], "properties": ["image is rock formation with a white cliff and a rock", "hippo, hind, legs"], "captions_pred_pc": ["above a black and white map of spain on a white background", "above a black and white illustration of a frog"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["apse, roof, floor plan", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of a room", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a small house"], "question": "which house has a door", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, skyscraper, city", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a 3d wooden sign featuring various texts, including \"resin park,\" \"shabaab corporation,\" and \"johnson sammons.\"", " of a person breaking through a brick wall."], "sample_ids": ["34a49861e7744acfb71de471a755e917", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["text, material, shape", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a metal bar with text on it", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d rendering of a marble slab with text on it", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, height", "Lights, number, five"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, ball, mushroom", "a, outfit, green"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["floor plan, heating system, ceiling light fixture", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object has a deer head on it", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small wooden house with a green roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof structure, truss, ceiling", "roof, color, green"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a house with a ladder"], "question": "which roof is green", "label": 1}, {"captions": [" of a house with a pink roof.", " a small building with windows and a roof."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, roof, pink", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a snake, an eel, a cube, a sword, a dice, a stick, and a blue ball.", " a small wooden house with a green roof."], "sample_ids": ["7940570f74c14baa83ebf5f50cd2a720", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a snake, an eel, a cube, a sword, a dice, a stick, a blue ball", "roof, color, green"], "captions_pred_pc": ["a black mascara brush on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife and a cube on a white background 3d model of a knife", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["green, hat, cream", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a pair of earrings", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["computer desk, laptop, monitor", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "c3a82df41875402285608ef13a55df57"], "properties": ["color is white, yellow, plastic", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a white plastic container with a label on it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with a yard, trees, bushes, and surrounding buildings.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["7f8942ef51dd4246993a587a12df168c", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["house, yard, surrounding buildings", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white image of a truck on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d rendering of a small house with a covered porch"], "question": "which house has a roof", "label": 1}, {"captions": ["a featuring a white dog, white wolf, white and pink cats, and a pink fish, all with pink eyes.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["5392e72784be41e485bf2d43cf0bee6a", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, white, pink, eyes", "color, white, gold"], "captions_pred_pc": ["a black and white image of a bear's head", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a wolf's head on a white background", "a 3d model of a standing mirror on a white background"], "question": "which entity is not a mirror?", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["- color is white- shape is cube- material is plastic", "color, background, white"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a white cube", "an image of a white background with a few small cubes on it"], "question": "which object is whiter", "label": 1}, {"captions": [" of a green tent with a green cover and white awning.", " a house with a wooden-framed roof structure."], "sample_ids": ["5168d23199604fa6b8fd982c2e2cf9e9", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, awning, cover", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a pyramid made of dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a skateboard ramp royalty free 3d model preview no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" of a wooden chair.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["b2fc4bd184944704ad43d3a31817a676", "f1b557775310478893242180defa4d80"], "properties": ["wood, chair, seat", "shack, roof, door"], "captions_pred_pc": ["a close-up view of the bristle brush on a white background", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a chair", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a clay pot with holes in it."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["graffiti, chinese writing, door", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, color, blue", "door, lock, handle"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, bird, hook", "roof, color, yellow"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow?", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, material, texture", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white image of a spider's head", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["ceiling, light, desks", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": ["white 3d paper airplane map model", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["85b15741a9cb4e0bbb859f1319ac4b5b", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is white, material is paper, shape is airplane", "rusty, warning, metal"], "captions_pred_pc": ["black glitter africa map on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the state of new york", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a black and white of a knife/sword with a handle."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, containers", "image, color, black and white"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of a knife"], "question": "which entity is a black and white image?", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["a, material, steel", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a large metal structure", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a colorful sunburst with pink, blue, and purple hues.", "a low-poly of a white, shattered sphere."], "sample_ids": ["46946704a6344eb18718fc5710782f6b", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, hue, saturation", "sphere, color, texture"], "captions_pred_pc": ["of a black and white photo of a ceiling light fixture", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunbur", "a 3d model of a cracked egg"], "question": "which entity has a texture?", "label": 1}, {"captions": [" of a blue and white shelf, cube, and tube.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a4dd3e2c48224cff9ac2a2b0c813f06a", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a gray and white shelf", "a 3d model of a small table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a blue tarp, flower, small island with a boat and phone, and a tent with a blue blanket.", " a small house with a roof."], "sample_ids": ["94704d86c22c4bdfb86ac24979926066", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["blue tarp, flower, small island", "roof, house, small"], "captions_pred_pc": ["above a 3d rendering of a fish in the air", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a black and white image of a piece of paper on the ground", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small wooden house with a green roof."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["floor, wall, roof", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": ["a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture.", "a 3d object featuring a chair with a glass top and a newspaper, a table with a glass top, and a white and silver ceiling light fixture."], "sample_ids": ["88c6f2a973c449b8bf45b10a569e0e21", "88c6f2a973c449b8bf45b10a569e0e21"], "properties": ["a, chair, table, light", "a, chair, table, light"], "captions_pred_pc": ["a black and white illustration of a person riding a bicycle", "a black and white illustration of a person riding a bicycle"], "captions_pred_image": ["a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape", "a 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape of a spiral staircase 3d model of a chair in the shape"], "question": "which entity has a newspaper?", "label": 0}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, room, table", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large house/building structure with a roof.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, structure, house", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a large white structure", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "b494049bb15440949e465d54a72b2f02"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "building, floorplan, gym"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "e098706085a44898abbd549693d12a64"], "properties": ["low poly, plant, white", "color is black, white, orange"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is white", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, number", "a, material, clay"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, desk, laptop", "a, outfit, green"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a witch wearing a black and white hat."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "1516bf87d6ee47fa9ede71bf77757b29"], "properties": ["hat, food, bowl", "color, black, white"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a witch wearing a hat and carrying a broom"], "question": "which hat is white", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "839a873262a544c9906f3f5799ca4648"], "properties": ["a, landscape, sand", "a, outfit, green"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" of a machine gun", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a3bbff31574c47489f8718945692ea6f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["gun, type, caliber", "building, plane, room"], "captions_pred_pc": ["of a pair of scissors on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a cannon on a gray background", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a potted plant on a wooden table or shelf."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["color, roof, tray", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small white box with a green light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, table, ceiling", "color, white, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d rendering of a small white box"], "question": "which entity is white", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["a box, a cup, a bottle, a jar", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a harp in a white room"], "question": "which entity has a harp?", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "ee440fcbc493488e879539d37a8d820e"], "properties": ["computer desk, laptop, monitor", "island, fish, ice"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "above a black and white image of a mountain on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d map of the country of israel"], "question": "which entity has a fish?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a white shelf with four legs and hooks, accompanied by a ceiling light fixture."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "5017581716c7402581a82ebf08d427a3"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "Shelf, color, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a black and white doormat on a white background stock illustration \u00a9 2018 iStock"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d rendering of a white shelf"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " of a hammer with a long metal handle."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["light source, fixture, color", "handle, metal, long"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a hammer with a wooden handle and metal head"], "question": "which object has a metal handle", "label": 1}, {"captions": ["a red and black drone with wheels and propellers.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["1cd3d0db9ec744549124443e6dd0a9f8", "a17477b445b3443189dad22f768b888b"], "properties": ["color, wheel, propeller", "roof, pillar, stairs"], "captions_pred_pc": ["above a black and white image of a toy car on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["the image is displayed at 1000x1000 pixels", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white map of spain on a white background"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a black and white image of a rock formation on a gray background"], "question": "which image is a rock formation?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a wooden shed with a gray roof."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["shape, bathroom, refrigerator", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a shed with a gray roof"], "question": "which structure has a gray roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["b5afccae993346079483507296fbb029", "d81d13362ae04371bb2cba46e4939665"], "properties": ["shape is square, material is metal, color is rusty", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a concrete column", "a sculpture of an african man sitting on a pedestal"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small white building with stairs and a white table."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "e30374c614f54fdb90f35b96b071349d"], "properties": ["face, handle, spout", "building, stairs, table"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a white ceramic vase with a face on it", "a 3d model of a building with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a, island, water", "hat, bow, arrow"], "captions_pred_pc": ["a black and white photo of a boat in the water", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["house, color, white", "house, tree, pool"], "captions_pred_pc": ["above a black and white drawing of a bench", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": [" a white pendant floor lamp.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["073a3fb2e9bd42d1affed98ed2d64794", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["height, lamp, shade", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black circle on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a light bulb on a pedestal royalty free 3d model preview no.", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, shape, size", "a, material, steel"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "411c164757fc4de68dfecb35fa858223"], "properties": ["- color is white- shape is cubes- number is 1", "resembles, sea urchin, shell"], "captions_pred_pc": ["a close up of a black and white striped scarf", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " of a white rock-like object, possibly a shell or ice."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "096e42b466ec438d95c5d89a85191534"], "properties": ["door, white, structure", "white, rock, shell"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a white rock on a gray background"], "question": "which object is whiter", "label": 1}, {"captions": [" a small house with a pink and blue roof and a white ceiling featuring wooden beams.", "a pair of white 3d-printed crocodile clogs."], "sample_ids": ["443554d4d7044c66aa8cbff63c737589", "67701617472e4051b95955c596561aac"], "properties": ["roof, color, pink, blue", "color, white, 3d-printed"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white photograph of a pair of shells"], "captions_pred_image": ["a 3d model of a roof with a triangular design royalty-free 3d model preview no.2", "a pair of white plastic shoes on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["color, table, blocks", "grass, plants, rocks"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["ceiling, light, desks", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a green mountain with trees and grass."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, shape, texture", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " a wooden table with a plant on it."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["a, laptop, teddy bear", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["screen, keyboard, box", "floor, staircase, balcony"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["frame, screen, color", "a, material, clay"], "captions_pred_pc": ["of a black and white cross on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["bird, nest, wood", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" of an old, rusty, green metal locker and a large wooden box.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["9797ff34c99a43be86d27868b3f9cb6d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["metal, locker, box", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of an old metal locker", "a black and white image of a house in the middle of a field"], "question": "which entity has more trees", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, material", "resembles, toy, castle"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "7e7272f3ddc24551905eccb63f3da42e"], "properties": ["hat, sword, gun", "hat, bag, blanket"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a cell with dots"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d printed sculpture of a baseball player holding a bat"], "question": "which cartoon character is holding a bag?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is white, yellow, plastic", "box, handle, gun"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white square with dots on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["background, color, white", "water, boat, rock"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["house, plane, town", "lighthouse, fountain, crater"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a large steel building with a pool."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, pier, stairway", "building material, pool, steel"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": ["3d printed white gear wheel model", " a large metal building with a roof and truss structure."], "sample_ids": ["d9aba59b3bc645f5926c8dbac67fa42d", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color is white, material is 3d printed, object is a gear wheel model", "roof, truss, structure"], "captions_pred_pc": ["a circular saw blade on a white background 3d illustration of a circular saw blade on a white background 3d illustration of a circular saw blade on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a", "a 3d model of a long metal fence"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a stack of books, a pile of paper, and a lamp with a black and white shade."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "6a06b505bcb34026a07ac15931f9f6f3"], "properties": ["room, bed, desk", "books, paper, lamp"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white silhouette of a map of the state of new york"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white photograph of a toilet paper holder"], "question": "which entity has more books", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", " a wooden roof structure with a pink roof."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["roof, yellow, chimney", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, shape, texture", "floor, staircase, balcony"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white glass beer mug."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, light, jewels", "color, white, glass"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["A, a, a", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a large steel building with a pool."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["house, tree, hill", "building material, pool, steel"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof truss, insulation, suspended ceiling", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "a2354f13774340d392fbf33564934aab"], "properties": ["buildings, houses, grass", "building, roof, yellow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["Drawer, Pattern, White", "a, desk, laptop"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of an office desk on a white background"], "question": "which object has a laptop", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a small white house with a staircase and a window."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "9eb88d17310d42dda9e17883e9922525"], "properties": ["frame, roof, trusses", "house, staircase, window"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d rendering of a small room with a staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "f178fb523ad7421aaa90a92ee736ee00"], "properties": ["building, fence, snowy", "bedroom, bathroom, bed"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a small room with a bed, desk, and chair"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, containers", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, white, yellow, roof, metal", "island, mountain, grass"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, black, shade, black", "Wheels, laptop, robot"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["graffiti, bench, wall", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a cell phone"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" an old castle in a grassy field.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["field, grass, castle", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "an image of a pile of trash on the ground"], "question": "which entity has more grass", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["roof trusses, beams, suspended ceiling", "building, plane, room"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white table with grey legs, a white top, writing on it, and three legs.", " of two rocks with ice elements."], "sample_ids": ["68e0d097351843a3980421f2ae624c59", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["white, top, writing", "image is a rock with ice elements"], "captions_pred_pc": ["a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a table with writing on it and a mouse on top of it", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "5414d75e47104589837f3df8b6de6d22"], "properties": ["a, roof, soup", "beige, white, round"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" of a human bone", " of an egyptian temple featuring a pyramid, sphinx, and a building with a roof."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "40022305eaf44442915c9db03e25f781"], "properties": ["a, b, c", "image is a egyptian temple featuring a pyramid, sphinx, and a building with a roof"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "above a black and white image of an abstract design"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of an ancient temple"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a large steel building with a pool."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["floor plan, heating system, ceiling light fixture", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a building surrounded by various structures, including a skyscraper, in a city setting.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["3b780ced7a814f86b3ee67f3596dddce", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["building, skyscraper, city", "water, boat, rock"], "captions_pred_pc": ["a black and white drawing of an airplane", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a knife with a building on top of it", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "4a889132cc444d10bfcbf6c760984416"], "properties": ["compartments, wall-mounted, vents", "a, color, white"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of a desk and chair"], "question": "which entity is not a shelf?", "label": 0}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", " a wooden roof structure with a pink roof."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["hair, legs, wings", "roof, color, pink"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, bird, lake", "cloak, sword, spear"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["floor, table, wall", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a ruined building with broken windows, concrete, wood, and a rock.", " a building with a metal and wooden pole structure."], "sample_ids": ["81ca2e13dab34e9eabb2e345780aedd2", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["building, material, rock", "structure, material, pole"], "captions_pred_pc": ["a black and white drawing of a truck with dots all over it", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d image of a damaged piece of furniture", "a 3d model of a structure with multiple tables and chairs"], "question": "which building has a structure made of metal and wood?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a white of a man with arms outstretched."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, tan, brown, orange", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of an office chair", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a man with his arms outstretched"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a potted plant on a wooden table or shelf."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["lighthouse, fountain, crater", "potted plant, table, shelf"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a plant in a pot"], "question": "which entity is indoors?", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", "a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "bf76d14fcac24579920aa326fa607a17"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "accutane, vitamin c, activespray, active kids, pills, active junior"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a bottle of activated charcoal pills on a white background royalty free 3d model no."], "question": "which entity has a bottle with a smiley face?", "label": 0}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["room, door, shelf", "door, lock, handle"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["shape, bathroom, refrigerator", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "a black and white image of a square with dots on it"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof and a ceiling with a hole?", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a large steel building with a pool."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["black, roof, green", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, yellow, white, wheels", "roof, color, yellow"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["frame, truss, roof", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a small white house with a staircase and a window."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "9eb88d17310d42dda9e17883e9922525"], "properties": ["A, a, a", "house, staircase, window"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["base, speaker, light", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of a clock", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a small triangular-shaped object."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "2d02985030804209a26c2c53b96a06f9"], "properties": ["frame, beams, trusses", "shape, triangle, small"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a building under construction", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["- material is plastic- color is white- shape is cylinder", "room, furniture, window"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d image of a room with a person in it"], "question": "which entity is a room?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a white building with a red roof."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, background, gray", "color, white, roof, red"], "captions_pred_pc": ["above a black and white photograph of an object", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of an office building"], "question": "which entity has a red roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a decorative tile", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a white castle composed of small cubes."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["frame, roof, trusses", "composed of, white, cubes"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a yellow toy truck with large tires and a load of sticks."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "4e82177059204292899fa7415164a05e"], "properties": ["white, windows, lid", "yellow, tires, load"], "captions_pred_pc": ["above a black and white image of dots on a white background", "in 15 words or less the image is of a toy truck made of glass beads stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a monster truck with spikes"], "question": "which object has a lid", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["building, color, yellow-green", "building, color, black and white"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": [" of a sword and knife.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["8b567403ba614523a298f1c5b2009f92", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["a, sword, knife", "stair, table, chair"], "captions_pred_pc": ["a black silhouette of a knife on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of a samurai sword royalty free 3d model preview no 2", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, truss system, framing", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a building"], "question": "which roof has trusses", "label": 1}, {"captions": [" a wooden frame featuring a curved, colorful screen.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["e6ff8537a6ba409296954984071218a3", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["frame, screen, color", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["of a black and white cross on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a black screen with a circular pattern", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "b896a0898efe4059a776193c02132129"], "properties": ["color, green, squirt gun", "- material is stone, metal, concrete"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a black shark", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["black, mouth, teeth", "black, screen, blank"], "captions_pred_pc": ["a black and white image of an object on a white background", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which entity has a screen", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color is white, yellow, plastic", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["building, stairs, shelves", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["color is white, material is plastic, shape is tube", "metal, cross, clock"], "captions_pred_pc": ["a black and white image of a broom on a stand", "above a black and white image of an object on a white background"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a house with a wooden-framed roof structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["roof, color, pink", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " of two rocks with ice elements."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["broom, shovel, fireplace", "image is a rock with ice elements"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d image of two rocks on a gray surface"], "question": "which image is of a rock with ice elements?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["table, bench, deer", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel?", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "roof, trusses, beams"], "captions_pred_pc": ["a black and white map of germany on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a roof structure"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["3D, toothpick, skateboard", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white drawing of a tree"], "captions_pred_image": ["a white toothbrush on a gray background", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, horns, features", "hat, bow, arrow"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a white rocking chair with a curved backrest."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, yellow, black", "backrest, curved, yes"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " of an egyptian sarcophagus."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, white, blue, roof, black", "island, terrain, water"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["3d low poly model of a small house on an island with trees.", "3d white model featuring a boat, block, turbo text, puma logo, box, and shelf."], "sample_ids": ["3b4db49a69bf48debf30b2693bd79c82", "1fe7018cb01a4be58c0f211b8e2db93f"], "properties": ["3d, model, house", "3d, model, white"], "captions_pred_pc": ["a black and white illustration of an airplane flying in the sky", "of a black and white usb drive with the word 'turbo' on it"], "captions_pred_image": ["a 3d model of a small cabin in the woods", "a 3d printed object with the word turbo on it"], "question": "which model is white", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, material, frame", "house, fence, playground"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a metal frame structure", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a stone archway in a grassy area.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["15deaa04ed6147559ab078fe90d5d999", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["location, area, material", "building, color, black and white"], "captions_pred_pc": ["a black and white image of a car in the middle of a circle", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a stone archway", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a four-legged metal workbench with shelves."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["a, hole, rock", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a black and white image of a lace belt", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a table with four legs"], "question": "which object is made of metal", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["castle, island, house", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small house on an island", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["building, fence, snowy", "low poly, llama, kangaroo"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d low poly animal standing on its hind legs"], "question": "which entity is not a low poly of a deer", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["hat, mustache, chef", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small white house with a roof."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, brown, flat", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["93fb4197f0014f7582029af24c7ed9de", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["throne, stairs, tree", "throne, stairs, tree"], "captions_pred_pc": ["in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a throne with a tree on it", "a 3d model of a throne with a tree on it"], "question": "which entity has a statue?", "label": 0}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", " a small white house with a roof."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, purple, beams", "roof, color, white"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a 3d model of a building with a white roof"], "question": "which roof is white", "label": 1}, {"captions": [" of a house with a roof truss, chimney, and suspended ceiling.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["9401dfc901b2447a9c0eb27da56854d7", "5414d75e47104589837f3df8b6de6d22"], "properties": ["roof truss, chimney, suspended ceiling", "beige, white, round"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a house with a roof", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a large steel building with a pool."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["structure, roof, pitch", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a white rocking chair with a curved backrest."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["image, color, pink", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity has a curved backrest", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " of an egyptian sarcophagus."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["house, lake, pool", "sarcophagus, material, wood"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a large building", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a roof and beams."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["house, rock, pond", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a roof and beams", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a large white and metal building with a metal roof structure."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, roof, toothbrushes", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a large white box"], "question": "which structure has a roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a wooden windmill with a red roof."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["lighthouse, fountain, crater", "roof, color, red"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a windmill on a gray background"], "question": "which object has a red roof", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, stairs, house", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a small white barn with a metal roof."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "4ca3342a96824684845f7d0e062ab176"], "properties": ["house, staircase, window", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a barn"], "question": "which building has a white roof", "label": 1}, {"captions": [" a house with a roof, wooden beams, and chimney.", " a white building with a red roof."], "sample_ids": ["be1376023c274bdda995d54f3694157f", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, beams, chimney", "color, white, roof, red"], "captions_pred_pc": ["a black and white drawing of a bathroom with a shower", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a small white building with a door, resembling a box-shaped house."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "1b5fe88d0ff149ae9d8b4eb455c5c90c"], "properties": ["texture, spikes, eyes", "shape is box, color is white, door is present"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a white, open shelving unit"], "question": "which entity is a box shape", "label": 1}, {"captions": ["a featuring a white and blue structure with a table, blue blocks, and suspended blue cubes.", " a large white and metal building with a metal roof structure."], "sample_ids": ["1d2cfe3a03004b62b17d3ce065658302", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, table, blocks", "roof, metal, white"], "captions_pred_pc": ["a group of people standing on top of each other on a white background a group of people standing on top of each other on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a table with four legs", "a 3d model of a large white box"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small white house with a roof."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["ceiling, light, desks", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object collection featuring a long stick, a grassy hill, a fish, a green and yellow knife, a small green and purple fish, a bird, and a crocodile.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["856e5f6a854d4c608901f1e2b580344c", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["a, b, c", "Eye color, Black, Purple"], "captions_pred_pc": ["above a black and white drawing of a submarine", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white photograph of a fish on a gray background", "a 3d model of a dragon with wings"], "question": "which entity has purple eyes", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["black, white, coffee table", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a modern house"], "question": "which object is white", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, white, containers", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat in it?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["staircase, railing, building", "house, pool, balcony"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a building with yellow lines."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, grass, moss", "color, yellow, lines"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white drawing of a map"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": [" a colorful sunburst with pink, blue, and purple hues.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["46946704a6344eb18718fc5710782f6b", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, hue, saturation", "a, color, white"], "captions_pred_pc": ["of a black and white photo of a ceiling light fixture", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunburst light fixture 3d model of a sunbur", "a 3d model of a desk and chair"], "question": "which entity has a white color?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a small table with stairs, a white top, and an accompanying platform, featuring a square ceiling light fixture."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "6d0479f5b6d74e7ab69fad4091259e6c"], "properties": ["table, staircase, light", "light, fixture, square"], "captions_pred_pc": ["a black and white photo of the letter g", "above a black and white photograph of an object in the middle of a field"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a desk with a table on top"], "question": "which table has a staircase?", "label": 0}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a wooden roof structure with a pink roof."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["black, white, coffee table", "roof, color, pink"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of the roof of a building"], "question": "which entity has a roof that is the color pink", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "c3a82df41875402285608ef13a55df57"], "properties": ["table, staircase, light", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a stack of books, a pile of paper, and a lamp with a black and white shade.", "a white of a woman with her arms outstretched."], "sample_ids": ["6a06b505bcb34026a07ac15931f9f6f3", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["books, paper, lamp", "image, color, white"], "captions_pred_pc": ["a black and white silhouette of a map of the state of new york", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white photograph of a toilet paper holder", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, pier, stairway", "table, staircase, light"], "captions_pred_pc": ["above a black and white illustration of an open door", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["a, desk, laptop", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of a house with a roof"], "question": "which building has a roof that is the color of yellow", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a tan, cylindrical hat with a hole in it."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "00c350e9f5f24fcd8bcc378da2963d4c"], "properties": ["color, black, white", "hat, color, tan"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white drawing of a mushroom on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a 3d model of an object with a hole in it"], "question": "which object is tan", "label": 1}, {"captions": [" a snowy mountain island.", " a small white barn with a metal roof."], "sample_ids": ["fe8520ec650248fa92ba07bb95712b09", "4ca3342a96824684845f7d0e062ab176"], "properties": ["mountain, island, snowy", "roof, metal, white"], "captions_pred_pc": ["for a black cross on a white background", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a black and white photograph of a volcanic eruption", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "1cf4b8f4e6014d36b6537c6ef52ccb96"], "properties": ["floor, ceiling, poles", "floor, ceiling, poles"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "a black and white drawing of a square with dots on it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a building with multiple levels"], "question": "which entity has a wooden floor?", "label": 0}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a wooden staircase with a railing and table."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "956247bea850458199c651037d4b1d7f"], "properties": ["A, a, a", "railing, table, staircase"], "captions_pred_pc": ["a black and white illustration of a bench", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a large building with a roof and windows."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "32d1fbd3ee91426882290305f70021e6"], "properties": ["- material is plastic- color is white- shape is cylinder", "roof, windows, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["Drawer, Pattern, White", "a, island, resembles, hawaii"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity has a mountain range?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, material, frame", "color, black, visor"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d model of a metal frame structure", "a black motorcycle helmet with a visor on top"], "question": "which object is made of a visor", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, orange, leather", "metal, rusted, paper"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small white house with a roof."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["a room, a cake, a table", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["roof, green, tiled", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a snowy landscape"], "question": "which entity has a white building?", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a large orange pumpkin."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["apse, roof, floor plan", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small house with a blue roof."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "fa21afd3a99d448cb23fa527a784769c"], "properties": ["roof, green, lawn", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a house made of dots on a white background a house made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2"], "question": "which roof is blue", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["door, roof, pool", "door, roof, pool"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a small house"], "question": "which entity has a door?", "label": 0}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["Lights, number, five", "hat, skull, bread"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a white chandelier with five white shades", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat?", "label": 1}, {"captions": ["yellow metal barricade ", "a small blue plastic box with a lid and handle."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "3e5cc957c888491ba1a5773299d3daa9"], "properties": ["color is yellow, material is metal, height is 0.5 m", "blue, lid, handle"], "captions_pred_pc": ["a white barrier on a white background", "in 15 or fewer words a black and white illustration of a rectangular tray"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d rendering of a gray plastic container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " of an egyptian sarcophagus."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a lamp, a syringe, a light pole", "sarcophagus, material, wood"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white circular pattern on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a machine gun.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["gun, barrel, caliber", "nut, bowl, ring"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a 3d rendering of a white object on a gray background"], "question": "which object has a ring", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " of two rocks with ice elements."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, laptop, teddy bear", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["a light pink leather handbag with a zipper on the side and a leather handle.", "a 3d wooden pole with a metal spear handle."], "sample_ids": ["3513ae49853d48609fdf8b26020d3c4f", "1d5cf234576e41f0ba209c5e19d2db47"], "properties": ["color, handle, zipper", "- material is wood, metal, metal"], "captions_pred_pc": ["this image may contain bag accessory purse handbag clutch", "of a black and white illustration of a vase on a pedestal"], "captions_pred_image": ["a white handbag with a zippered compartment on the front", "a black and white image of an old-fashioned pitchfork"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "c3a82df41875402285608ef13a55df57"], "properties": ["black, white, laptop", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a dishwasher with a dish inside it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " of a white nut, bowl, ring, and light fixture."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "02bdf80f614f44c4ad20dd6c3c1316c4"], "properties": ["color, pattern, wall", "nut, bowl, ring"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white hexagonal pattern on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d rendering of a white object on a gray background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a small white house with a roof.", " a large steel building with a pool."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, color, white", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" of a green and blue flower with hints of yellow.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["c17ff79bf2334eb4a3f2d8ca4188bf1f", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a pair of hands holding each other in the shape of a heart royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white photograph of an abstract sculpture", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a small, snow-covered house."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["computer desk, laptop, monitor", "house, snow, cover"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a piece of broken glass on a white background"], "question": "which entity is not covered in snow?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["image, building, painting", "table, staircase, light"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white photo of the letter g"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a table with stairs"], "question": "which image shows a staircase?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", "a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "2ee9dcd863514073a849ece8ea7714dd"], "properties": ["s, stick, leaf", "3D, toothpick, skateboard"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a white toothbrush on a gray background"], "question": "which entity has a toothpick?", "label": 1}, {"captions": [" a small house with a blue roof.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["roof, color, blue", "roof, color, yellow"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a table and chairs on a white background"], "question": "which roof is yellow", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a wooden table with a plant on it."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["graffiti, chinese writing, door", "table, plant, wood"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a side table with a potted plant sitting on top of it"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, blue, structure", "roof, metal, white"], "captions_pred_pc": ["a black and white image of dots on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a black castle with stairs and a door.", " of an old stone building with stairs, a door, and a clock, resembling a small church."], "sample_ids": ["036d34dec6274f6a99d8f9689d19a77d", "1c18f1857b934fe6951b7ef129188b1a"], "properties": ["door, stairs, color", "building, door, clock"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of an object with dots all over it"], "captions_pred_image": ["a 3d model of a medieval castle on a white background royalty free 3d model", "a black and white image of a church with a steeple"], "question": "which building has a clock", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "c8936ace72954650b4e2d84246964849"], "properties": ["house, roof, toothbrushes", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a toilet"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a house with a roof"], "question": "which house has a roof that is the color pink?", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a large orange pumpkin."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["- material is plastic- color is white- shape is cylinder", "orange, large, pumpkin"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a pumpkin on a white background"], "question": "which object is orange", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["- color is white - shape is box - material is plastic", "wood, board, shelf"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": ["white pendant light fixture ()", " an old lantern with moss on it."], "sample_ids": ["a7ce6d03c06d4c32bb507d7f1ee3c971", "62925f26fd624310bd6b31136fe8e706"], "properties": ["color is white, material is metal, light source is incandescent", "moss, lantern, old"], "captions_pred_pc": ["in 15 words or less a black and white illustration of the letter 'p'", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a white hanging light fixture with a white shade", "a black and white image of an old lantern"], "question": "which lantern is older", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a large house with a roof on a platform."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "cb3e09a301b746918a682a595037c7f7"], "properties": ["balcony, stairs, house", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a 3d model of a small house"], "question": "which house has a roof on a platform?", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "6b745457e06840119058883b35f78f58"], "properties": ["color, skyline, buildings", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house with a steeple on top"], "question": "which building is blue", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["Arms, Legs, Color", "torso, breasts, pattern"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a 3d white object resembling a sphere, frog, egg, hat, and shell.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["0a8e0b95d8ce43ee9159ad01d925aad8", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["shape is sphere, color is white, material is plastic", "building, plane, room"], "captions_pred_pc": ["a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of an apple on a white background", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "a24872444e5c468a9264d503a9ca7276"], "properties": ["cup, bottle, chessboard", "rusty, hat, dartboard"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["s of, snowboard, shoes, mask", "color, shape, color"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a set of three white shelves or ceiling panels with lines.", " of two rocks with ice elements."], "sample_ids": ["ff6f8c2347ab4c17a2b3e319b205f191", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["set, white, lines", "image is a rock with ice elements"], "captions_pred_pc": ["a set of black and white dots on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d illustration of a set of three white trays on a gray surface", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a diverse town featuring houses, buildings, people, animals, and desert elements.", " a small house on a hill in a field."], "sample_ids": ["436d6492fa06466680ecc82e5e07a7a0", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["house, building, people", "house, hill, field"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a small town in the middle of a field", "a black and white image of a small house"], "question": "which entity has fewer houses", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["floor, wall, roof", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a black and white image of a stone sculpture"], "question": "which entity has a hat", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["s, plane, house", "plane, ship, bird"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a wall-mounted shelf with three compartments and vents.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["77df1bccf94249988927d3dda97ae273", "b896a0898efe4059a776193c02132129"], "properties": ["compartments, wall-mounted, vents", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a boat with dots all over it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a wall mounted air conditioning unit on a gray background royalty free 3d model no.", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a house with a roof and beams."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, lake, pool", "house, rock, bird"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a large building", "a 3d rendering of a house on a rock"], "question": "which house is on an island with a rock?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["top, color, wood", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d image of a small island in the middle of a lake"], "question": "which object has a rocky terrain", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a stone wall featuring carvings and statues."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["location, highway, train station", "carving, statue, wall"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d image of a group of statues on a wall"], "question": "which entity is a wall?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["image, building, painting", "house, fence, playground"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a room with a lot of wires"], "question": "which image shows a house with a fence?", "label": 1}, {"captions": ["a featuring a crocodile skull, various rocks, and a landscape with sand and grass.", "two white spheres in a ."], "sample_ids": ["44c179bcfb4e49768b041c4a8184e885", "1c02212a35134545ab63ab180d629c31"], "properties": ["a, landscape, sand", "two, spheres, white, in, a"], "captions_pred_pc": ["a black and white silhouette of a map on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a rock in the middle of the ocean", "a 3d model of a white ball on a gray background"], "question": "which object is in a landscape?", "label": 0}, {"captions": [" a cartoon hippo standing on its hind legs with arms outstretched.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["f3edc84dc71649c1a11270437279255b", "c3a82df41875402285608ef13a55df57"], "properties": ["hippo, hind, legs", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white illustration of a frog", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a hippopotamus standing on its hind legs", "a white plastic object on a gray background"], "question": "which object is not a hippo?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["mossy, rock, grass", "building, room, sky"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "star wars stormtrooper "], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, and size", "a, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "1da865c75a5e4a57a17652975dae5474"], "properties": ["top, color, wood", "color, white, plastic"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, horns, features", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "12093c89a60941e7884b252bdc05104c"], "properties": ["Drawer, Pattern, White", "giraffe, bench, flower"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " of a white human skull with broken bone elements."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["floor plan, bathroom, pool", "image, city, spoon"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a white castle composed of small cubes."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["roof, green, tiled", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of small cubes", "label": 1}, {"captions": [" a black and white cube-shaped building with a staircase.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["587e65f2d904440488a98dfa9a4e9dbe", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["shape is cube, color is black, white", "building, plane, room"], "captions_pred_pc": ["above a black and white photograph of a sculpture", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a small wooden house with a green roof."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["building, plane, room", "roof, color, green"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, green, handle", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a small black object on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cannon with wheels", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a house with wooden framing and trusses."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["metal, legs, wheels", "frame, trusses, wood"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a yellow window frame."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "b6777659013d4386987c5e26d7dc3f84"], "properties": ["frame, beams, trusses", "color, yellow, frame"], "captions_pred_pc": ["a black and white drawing of a metal grate", "above a black and white image of a wall mounted shelf"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a white shelving unit"], "question": "which frame is yellow", "label": 1}, {"captions": ["a 3d white ring adorned with flowers and leaves.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["8219c3b38ad547268e1828b9c3a487f1", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["color, shape, material", "Eye color, Black, Purple"], "captions_pred_pc": ["a heart made of black dots on a white background a heart made of black dots on a white background illustration", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d printed ring in white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white 3d printed white", "a 3d model of a dragon with wings"], "question": "which entity has a color that is not black?", "label": 0}, {"captions": ["a white of a building with columns, stairs, and railings.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["image, building, stairs", "house, roof, green"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a building with a black roof"], "question": "which building has a green roof", "label": 1}, {"captions": [" a wooden table with black and white square design and metal poles.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["ddff57e7f60e420688b477a1f78aa83f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["design, poles, table", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a table with four legs and black and white stripes", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a metal building with a purple roof and cage structure.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["cbc10fb816034537b052e7c8fb75c4a6", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["roof, purple, structure", "house, roof, wooden"], "captions_pred_pc": ["for a black and white image of a bench", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, white, handle, armrest", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a blue security booth featuring a locked door and a \"clean way\" inscription.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["d2ba0001656f477787b7df4567346a2f", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, inscription, booth", "house, pool, balcony"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free stock illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a gray metal box with an open door", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a cube with a wooden ball on top.", " a house with a flat roof structure."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "abc52d210d71415296730bb00352ce6f"], "properties": ["shape is cube, material is wood, color is white", "roof, flat, structure"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["apse, roof, floor plan", "building, balcony, street"], "captions_pred_pc": ["a black and white drawing of a room", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of an old building"], "question": "which building has a balcony", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, gazebo, table", "table, stairs, ladder"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d model of a table with a stool on top"], "question": "which table has stairs", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["water, river, island", "a room, a cake, a table"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a grayscale of a mountain.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["17a86c6c9be0478c984ef36c7c22edea", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, grayscale, mountain", "a room, a cake, a table"], "captions_pred_pc": ["above a black and white photograph of a galaxy", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a mountain range on a white background royalty-free 3d model", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a table and chairs on a white background"], "question": "which building structure has a yellow roof", "label": 1}, {"captions": [" an old castle in a grassy field.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["26ea562f32d54afe919b73486dbf7d53", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["field, grass, castle", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a castle in the middle of a field", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a broken column on a piece of paper", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of an old, rusty, green metal locker and a large wooden box.", " of an old, rusty, green metal locker and a large wooden box."], "sample_ids": ["9797ff34c99a43be86d27868b3f9cb6d", "9797ff34c99a43be86d27868b3f9cb6d"], "properties": ["metal, locker, box", "metal, locker, box"], "captions_pred_pc": ["a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration", "a black and white image of a patterned square on a white background a black and white image of a patterned square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of an old metal locker"], "question": "which entity has a box?", "label": 0}, {"captions": ["an orange and white striped rocket model.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, orange, white", "metal, legs, wheels"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["black, white, laptop", "meat, bread, sausage"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white image of a brush on a white background"], "captions_pred_image": ["a dishwasher with a dish inside it", "an image of a small white object on a gray background"], "question": "which entity is a food?", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " a wooden table with a plant on it."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, staircase, light", "table, plant, wood"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a side table with a potted plant sitting on top of it"], "question": "which table is made of wood", "label": 1}, {"captions": [" a small white barn with a metal roof.", " a white building with a red roof."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["roof, metal, white", "color, white, roof, red"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, fence, dog", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["color, yellow, black", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white illustration of an airplane", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a black and white helicopter flying in the air", "a black and white 3d model of a building"], "question": "which entity is a cube shape?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "c3a82df41875402285608ef13a55df57"], "properties": ["color, black, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a large building featuring stairs, a clock tower, a balcony, and a roof."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "e7c78316f9cb4b8aad57a9c933f5278b"], "properties": ["color, shape, gun", "building, roof, balcony"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a building with a clock tower"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, head, bowl", "table, staircase, light"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, green, orange, star", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white illustration of two spheres"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a gray, metal pillar/cylinder."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["mossy, rock, grass", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a candlestick"], "question": "which object is made of a material that is not mossy?", "label": 1}, {"captions": ["a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["a47dcf3d3cf34c58af17b6715d6f1232", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["room, staircase, bus", "room, staircase, bus"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d image of a building with a lot of debris", "a 3d image of a building with a lot of debris"], "question": "which entity has a room with a staircase", "label": 0}, {"captions": [" a house with a green, wooden-structured roof.", " a large house with a roof on a platform."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, color, green", "roof, platform, house"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a house with a green, wooden-structured roof."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, shape, poles", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a house with a triangular roof"], "question": "which structure has a roof that is green?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " of an egyptian sarcophagus."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "70aa484af2ab44149a608dd81a6ff459"], "properties": ["a, bird, hook", "sarcophagus, material, wood"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white circular pattern on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a black and white photograph of a sphere with egyptian hieroglyphics on it"], "question": "which object is made of wood", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, green, orange, star", "image, color, white"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d printed figurine of an alien creature"], "question": "which entity is not a pair of green sneakers with orange laces and star designs?", "label": 1}, {"captions": [" a green cube with a black base and a small robot sitting on top.", " a house with a roof and beams."], "sample_ids": ["c52f7e1f4b194d308b5ddde6deca3955", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, size", "roof, beams, house"], "captions_pred_pc": ["in one line a black and white image of a dotted square on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white box with a black base", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["building, tree, plane", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a black and white image of an object on top of a pedestal"], "question": "which entity has a fountain", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a clay pot with holes in it."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["size, material, shape", "hole, material, clay"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a tv, chair, desk, laptop, man, couch, computer, and building.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d4208427217343e6af1b9b4a42a2f730", "a17477b445b3443189dad22f768b888b"], "properties": ["tv, chair, laptop", "roof, pillar, stairs"], "captions_pred_pc": ["for 3d illustration of a smartphone with a qr code on the back and a qr code on the front", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a person sitting on a couch", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["bed, desk, window", "house, roof, blue"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small house and barn"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["s, plane, house", "building, room, sky"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a small white building with stairs and a lid."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" a medieval stone castle with walls and stairs.", "a white glass beer mug."], "sample_ids": ["10bc1bbec4c045f9b15fc2156b5e32ee", "1d686cbd3e9a4c629a43088658989286"], "properties": ["wall, stairs, castle", "color, white, glass"], "captions_pred_pc": ["a castle in the snow a castle in the snow illustration on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the great wall of china 3d model of the", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["pos machine, credit card machine, cash register", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small white box with a green light.", "a white of a man with arms outstretched."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, white, light", "image, color, white"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", " a wooden table with a plant on it."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["black, white, laptop", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a dishwasher with a dish inside it", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["3d low poly model of a small house on an island with trees.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3b4db49a69bf48debf30b2693bd79c82", "7f8942ef51dd4246993a587a12df168c"], "properties": ["3d, model, house", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of an airplane flying in the sky", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a small cabin in the woods", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["lighthouse, fountain, crater", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a 3d watercolor representation of a red and yellow flame.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["d57675a3c5524783a0207b0454acc943", "7407a108e0354925b83b750339bc03df"], "properties": ["color, shape, texture", "platform, color, orange"], "captions_pred_pc": ["of a black object floating in the air on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a black and white drawing of a fish with a flame coming out of its mouth", "a 3d model of a motorcycle on a pedestal"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " of two rocks with ice elements."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["building, roof, balcony", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["windmills, silhouette, city model", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " an old lantern with moss on it."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "62925f26fd624310bd6b31136fe8e706"], "properties": ["- material is white- color is white- texture is textured", "moss, lantern, old"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "in 15 words or less the image is a silhouette of a person standing on top of a pyramid made of dots"], "captions_pred_image": ["a 3d model of a cube", "a black and white image of an old lantern"], "question": "which object is more likely to have moss on it", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color, black, white, handle, armrest", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, base, warning", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d rendering of a small white table with a chair"], "question": "which object has a table and chair?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["screen, monitor, stand", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["white, windows, lid", "house, pool, balcony"], "captions_pred_pc": ["above a black and white image of dots on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white house with three windows", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a small white house with windows and a black lid."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "4b40af369c1149949f5ccb68becd8430"], "properties": ["brown, paint, tape", "white, windows, lid"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "above a black and white image of dots on a white background"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a white house with three windows"], "question": "which object has a lid?", "label": 1}, {"captions": [" of a chessboard on a beige ceiling tile.", " of a chessboard on a beige ceiling tile."], "sample_ids": ["7dccc542a68f470a947bf5f698c27bbd", "7dccc542a68f470a947bf5f698c27bbd"], "properties": ["beige, tile, chessboard", "beige, tile, chessboard"], "captions_pred_pc": ["a black and white image of a leopard print banner", "a black and white image of a leopard print banner"], "captions_pred_image": ["3d chess board royalty free 3d model preview no 2", "3d chess board royalty free 3d model preview no 2"], "question": "which entity has a chessboard on a beige tile?", "label": 0}, {"captions": [" a house featuring a roof with truss system, framing, insulation, and a ceiling light.", " a small, snow-covered house."], "sample_ids": ["39876e69e3914d99a07e0dc59611c5c0", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["roof, truss system, framing", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a window with dots all over it", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a city, train, dragon", "plane, ship, bird"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked objects", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, trusses, ladder", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "e694d53545d449319a64cceb0280c3c6"], "properties": ["painting, door, wall", "3d, slide, swing"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a playground slide"], "question": "which entity has a plane", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "a black and white drawing of a room"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a small house with a roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, house, small", "house, rock, bird"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small house", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a small house with a pond and situated on a rock."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "92859eb82a344134806b37cc209927c6"], "properties": ["image, building, painting", "house, rock, pond"], "captions_pred_pc": ["above a black and white drawing of a building", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a black and white photograph of a damaged house", "a 3d model of a house in the middle of a field"], "question": "which image shows a house with a pond?", "label": 1}, {"captions": [" a green skull and sphere.", " a cartoon hippo standing on its hind legs with arms outstretched."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "f3edc84dc71649c1a11270437279255b"], "properties": ["color, skull, sphere", "hippo, hind, legs"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "above a black and white illustration of a frog"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a hippopotamus standing on its hind legs"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["bed, desk, window", "door, roof, pool"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["broom, shovel, fireplace", "floor, stairs, bathroom"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a white of a house with a hole in the ceiling."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["location, field, gravestone", "image, house, ceiling"], "captions_pred_pc": ["a black and white illustration of a whale", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a small white bookcase-like building with stairs and a light fixture."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "5f99eb9d1f1e4d57b5690446f832c841"], "properties": ["image is a sculpture of an angel on a wall", "building, color, white"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "in 15 words or less a black and white image of the letter 'f' made up of dots"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of a bookshelf on a white background"], "question": "which building is white", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "12093c89a60941e7884b252bdc05104c"], "properties": ["room, bed, desk", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": ["a 3d white and gold sword and shield with a gold ring.", " a gun with a blue handle."], "sample_ids": ["a3c67548c4f04980998c446d75147f8c", "ad65fd36ff284655ab9331e2e8a5a8a5"], "properties": ["color, shape, material", "color, handle, blue"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a gun and a toothbrush"], "captions_pred_image": ["a 3d model of a sword on a white background royalty-free 3d model preview no.3", "a 3d model of a gun on a gray background"], "question": "which object has a blue handle", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, material", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a decorative tile", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of a throne with a tree on it"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house with a green, wooden-structured roof."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, color, yellow", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "a city, train, dragon"], "captions_pred_pc": ["a black and white image of a flying saucer", "a black and white image of a toy car"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " a small wooden house with a green roof."], "sample_ids": ["5c04dac989a64d228283687588484b93", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "06a1c233fb444830b577aa06e2c01294"], "properties": ["mossy, rock, grass", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["white desk lamp ", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["dcca6fab753d47ee8be7fb96564e690a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color is white, material is plastic, base is metal", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a square on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white desk lamp on a gray surface", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", " a robotic warrior with a sword."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["- material is plastic- color is white- shape is cylinder", "weapon, sword, robot"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, candy, strawberry", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a flat roof structure."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "abc52d210d71415296730bb00352ce6f"], "properties": ["floor plan, bathroom, pool", "roof, flat, structure"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a roof with a flat structure?", "label": 1}, {"captions": [" a robotic warrior with a sword.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["1c54afa26eb24e19b8660066718a9c5a", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["weapon, sword, robot", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a small white object on a black surface", "a black and white drawing of a room"], "captions_pred_image": ["a black and white image of a robot standing on a piece of paper", "a 3d model of a table and chairs on a white background"], "question": "which entity has a yellow roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", "a white of a man with arms outstretched."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["graffiti, bench, wall", "image, color, white"], "captions_pred_pc": ["for a black and white image of a boat", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["building, stairs, shelves", "house, table, chair"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": [" of a black tire.", "a silver ring with a swirly design and a white 3d printed sphere."], "sample_ids": ["b645118910b54e2a9f3a97d5598ce1de", "8d81b384b5cc4f46a1779d0a2f5f7e27"], "properties": ["color, black, tire", "color, silver, white"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background illustration", "a black and white illustration of a circle with dots"], "captions_pred_image": ["a 3d model of a tire on a white background royalty free 3d model preview no.2", "a 3d model of a silver ball on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["stair, table, chair", "house, rock, bird"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a clay pot with holes in it."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, height", "hole, material, clay"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " a building with a metal and wooden pole structure."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "e2e2ab4474b84f33809979da457eedd9"], "properties": ["roof, structure, suspended", "structure, material, pole"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white illustration of a line of dots on a white background"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a structure with multiple tables and chairs"], "question": "which structure is made of metal and wooden poles", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, pattern, wall", "camera, speaker, ceiling fan"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a clay sculpture of a man's head on a wooden block.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["52b7f2034d0044bb82cd714d6f7651d5", "c3a82df41875402285608ef13a55df57"], "properties": ["a, material, clay", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a man's head made up of dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a sculpture of a man's head on a pedestal", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "4df70180f2ea400782d2e2de76063894"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, black, blue"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity is black and blue?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " of a character wearing glasses and a hat."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["hat, sword, gun", "hat, glasses, character"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["location, highway, train station", "house, hill, forest"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a black and white image of a small island in the middle of a body of water"], "question": "which location has a house on a hill?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a white cross with a statue of jesus and a man on a pedestal."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "39b72b2ea03345c595c1d63a7b54987e"], "properties": ["a, desk, laptop", "a, pedestal, statue"], "captions_pred_pc": ["a black and white image of a piece of furniture", "for a black and white photo of a cell phone on a white background"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a 3d model of the crucifixion of jesus on the cross royalty-free 3d model"], "question": "which entity has a statue on a pedestal?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "12093c89a60941e7884b252bdc05104c"], "properties": ["s, plane, house", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a sculpture made of sticks"], "question": "which entity has a bench with flowers?", "label": 1}, {"captions": [" of a pontoon boat with two seats and a canopy.", "a low-poly of a white, shattered sphere."], "sample_ids": ["dccff5eccf6943f8b14cd269710ae6ff", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["seat, canopy, pontoon", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a leopard print purse", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a wooden staircase with a railing and table."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "956247bea850458199c651037d4b1d7f"], "properties": ["- material is plastic- color is green- shape is box", "railing, table, staircase"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "e694d53545d449319a64cceb0280c3c6"], "properties": ["turrets, flags, towers", "3d, slide, swing"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a 3d model of a playground slide"], "question": "which entity has a plane in the sky?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["s, stick, leaf", "throne, stairs, tree"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a white of a man with arms outstretched."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["floor, table, wall", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house with a green, wooden-structured roof."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["two-story, roof, building", "roof, color, green"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a house with a triangular roof"], "question": "which building has a roof that is the color of green", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, shape, texture", "island, terrain, rocks"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a small wooden house with a green roof."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["roof, color, pink", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a ladder"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["house, lake, pool", "a city, train, dragon"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a large building", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a low poly model of a chef with a mustache wearing a white hat."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "98c69b92a63a4e1681b8d0cb49aa764a"], "properties": ["a box, a cup, a bottle, a jar", "hat, mustache, chef"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white illustration of a mushroom on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a chef's hat"], "question": "which entity is a model?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["color, white, red, pink", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " of a barrel and a cube together."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["lighthouse, fountain, crater", "a, barrel, cube"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " a house with wooden framing and trusses."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["computer desk, laptop, monitor", "frame, trusses, wood"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "06a1c233fb444830b577aa06e2c01294"], "properties": ["room, bed, desk", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a door", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["s, cat, fish, person, pig, bird", "roof, color, yellow"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a purple and yellow pixelated ethereum logo in pixel art style.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["bcf111e592d64b6490003680cae9407f", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, style, pixel", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 15 words or less 1", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["an image of an electronic device with the letter 'z' on it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a small house with a blue roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, color, blue", "low poly, plant, white"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "star wars stormtrooper "], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["desk, chair, table", "a, color, white"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a star wars stormtrooper"], "question": "which object is white", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["color, white, background, gray", "Wheels, laptop, robot"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a paper airplane", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["ff7a1dec37f1416fbad0f0705486806c", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["table lamp, ceiling light, table", "throne, stairs, tree"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["an oval table with a mouse on top of it", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, fence, dog", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["a, bird, hook", "house, rock, bird"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "c3a82df41875402285608ef13a55df57"], "properties": ["house, tree, hill", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a large metal building with a roof and truss structure."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "b85a99699ccd4bcba213322113bb253d"], "properties": ["ceiling, light, desks", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small house with a tree and a rock."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "9dc392a7f6e444e5bfb720684d6f864a"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, tree, rock"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small house with a tree in front of it"], "question": "which house has a tree and a rock?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["color, material, structure", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a room with dots", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small house with a pink and blue roof and a white ceiling featuring wooden beams."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "443554d4d7044c66aa8cbff63c737589"], "properties": ["roof, trusses, beams", "roof, color, pink, blue"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white square with dots all over it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a roof with a triangular design royalty-free 3d model preview no.2"], "question": "which roof is pinker", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "09f2cf267e954c958828325067bcc36a"], "properties": ["background, color, white", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a cat's head", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has a diverse terrain", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " a house with a roof and beams."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["room, furniture, window", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a green skull and sphere.", "a small white 3d boat model with a curved wing and knife."], "sample_ids": ["4f4dc1300ab24b0a910da77a4d5e783f", "cafc467aff2643e8b70149c4944263ee"], "properties": ["color, skull, sphere", "wing, knife, boat"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "a black umbrella on a white background"], "captions_pred_image": ["a 3d model of a skull on a gray background", "a 3d model of a rowing boat royalty free 3d model preview no 3"], "question": "which entity has a curved wing?", "label": 1}, {"captions": ["white s of a wall-mounted light, toilet with handle, faucet, and lamp with a light bulb.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["92052c493bf141a08b56f30f9c5e2d61", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["light, toilet, faucet", "house, rock, bird"], "captions_pred_pc": ["in 15 words or less a 3d illustration of an object made of dots on a white background 3d illustration of an object made of dots on a white background royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a white plastic toilet paper holder on a gray background", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "aae2c42740a04fd68068f5707111d26f"], "properties": ["s, stick, leaf", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a marble sculpture of an angel"], "question": "which image is a sculpture of an angel on a wall?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, windows, building", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a large gray sphere", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["size, color, shape", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a molecule with two pink and blue spheres."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "926fb2e23c56440a86287e98c1440336"], "properties": ["color, shape, and material", "color, shape, size"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a molecule with the word 'rono' written in black ink on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of three spheres on a white background"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["bedroom, bathroom, bed", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color yellow", "label": 1}, {"captions": [" a white plastic box/tray with a hole in the middle.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["04f8bfad8ad14795aced8a83ea30ca60", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color is white, material is plastic, shape is box", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a rectangular tray on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic tray", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a futuristic white sports racing car.", "star wars stormtrooper "], "sample_ids": ["95f5d1518f1b4a638f4bc5e444a7e1a1", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, white, futuristic", "a, color, white"], "captions_pred_pc": ["| all images person 2019 3d model by person | person 2019 3d model by person", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a futuristic sports car", "a 3d model of a star wars stormtrooper"], "question": "which is not a white color", "label": 0}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "1da865c75a5e4a57a17652975dae5474"], "properties": ["building, roof, balcony", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a house with a green, wooden-structured roof."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, material, texture", "roof, color, green"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of a house with a triangular roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "832a022cdcc74763b0571e04af4e592b"], "properties": ["mossy, rock, grass", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a lego model of a futuristic airplane"], "question": "which object is more futuristic", "label": 1}, {"captions": [" of a wooden pirate chest with a metal roof.", " a small white house with a roof."], "sample_ids": ["5720efe7e68e434fa244d4978e623114", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["metal, roof, chest", "roof, color, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of dots", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a wooden chest", "a 3d model of a building with a white roof"], "question": "which object has a white roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["roof truss, insulation, suspended ceiling", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, roof, block", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["40921ffd69db479294554d261daf3035", "c3a82df41875402285608ef13a55df57"], "properties": ["floor, railing, staircase", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a spiral staircase", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small pink stone pillar/column.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["bef329bb8d9f467cb86b258030dbf9ff", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["size, material, color", "cover, black, plastic"], "captions_pred_pc": ["a black and white image of a small square with black dots", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a stone column on a white background", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, base, warning", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which box has a lock", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a house with a flat roof structure."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, truss, suspended ceiling", "roof, flat, structure"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a house with a roof"], "question": "which structure is not a roof", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["f1b557775310478893242180defa4d80", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["shack, roof, door", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "97e000ff41094665afd94ea565da8b13"], "properties": ["a lamp, a syringe, a light pole", "roof, material, wood"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["room, house, windows", "torso, breasts, pattern"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a white cabinet with a green and white box and a laptop on top, placed on a wooden table under a wooden ceiling hood."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "f2d267bce6154ab096f32f1dd0a7865a"], "properties": ["water, river, island", "Cabinet is white, Box is green and white, Laptop is on top of cabinet"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white illustration of a person holding a pencil"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d rendering of a white box on a wooden floor"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "20a02705a66f460492e07345e84a62ed"], "properties": ["cup, bottle, chessboard", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a white rocking chair with a curved backrest.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["ee0deb90abf943b6894cd5ded1331213", "db74ee1621464be1b164be26a1af050e"], "properties": ["backrest, curved, yes", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white chair royalty free 3d model no. 3", "a 3d model of an old brick wall"], "question": "which entity has a window?", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["hat, mustache, chef", "house, building, people"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a clay pot with holes in it."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["light switch, electrical outlet, furniture", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["a lamp, a syringe, a light pole", "a city, train, dragon"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a line drawing of an airplane flying in the sky"], "question": "which entity has a city?", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " of a wooden windmill with a red roof."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["shape, color, material", "roof, color, red"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "be1376023c274bdda995d54f3694157f"], "properties": ["- material is wood, metal, metal", "roof, beams, chimney"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a house with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a small room with a table, chair, laptop, and a white box containing a teddy bear and a piece of paper.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["24f7d0a06d494c26a1678d81b2b7b093", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["a, laptop, teddy bear", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white drawing of an umbrella on a white background", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a 3d rendering of a white room with various objects", "a 3d model of a small table"], "question": "which entity has a bathroom?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, screen, drawer", "building, floorplan, gym"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a green man with arms outstretched, appearing to fly.", " of a character wearing glasses and a hat."], "sample_ids": ["34850e40521940e49cfc27f0f486f544", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, shape, size", "hat, glasses, character"], "captions_pred_pc": ["a black and white illustration of an airplane propeller", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a man with his arms outstretched royalty free 3d model no.2", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "06dd6456dc244a51b6b6e1c8524820de"], "properties": ["bed, desk, window", "room, furniture, window"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d image of a room with a person in it"], "question": "which room has a bed", "label": 0}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "4d613d2057454e719bcae7f8cf05210a"], "properties": ["a box, a cup, a bottle, a jar", "a, island, resembles, hawaii"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "above a black and white image of a person's hand holding a pencil"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a"], "question": "which entity is a painting?", "label": 1}, {"captions": [" a blue curved object, resembling a wall, box, shelf, and hat.", " a futuristic, small spaceship with two propellers, resembling a jet fighter."], "sample_ids": ["73e7107ff3634516846bccad04c5dc87", "832a022cdcc74763b0571e04af4e592b"], "properties": ["blue, curved, resembles", "resembles a jet fighter, futuristic, small"], "captions_pred_pc": ["a black and white illustration of a piece of jewelry", "a black and white illustration of a person's hand holding a pencil"], "captions_pred_image": ["a 3d rendering of a white bathroom sink", "a lego model of a futuristic airplane"], "question": "which object is more futuristic", "label": 1}, {"captions": ["3d white geometric shapes and paper clip.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["8760487af6c748ac8111f09113a77b16", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["3D, white, paper clip", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed diamond shaped object on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a small house with a yellow roof and chimney.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["0056e85a243b47a08ddbcd36816cb6ae", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, yellow, chimney", "house, fence, playground"], "captions_pred_pc": ["a black and white illustration of a house made up of dots on a white background a black and white illustration of a house made up of dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small house royalty-free 3d model preview no.2", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["color, shape, and size", "houses, trees, road"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " a large metal building with a roof and truss structure."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, light, handle", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a multi-level building with yellow stairs and columns."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "c1536f68727947ff9e7810799fac583a"], "properties": ["roof, stairs, house", "level, stairs, columns"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "in 15 words or less a black and white illustration of dots on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of an apartment building"], "question": "which entity has stairs", "label": 1}, {"captions": [" a small square table with an integrated staircase and a ceiling light.", " of two rocks with ice elements."], "sample_ids": ["bded33af34104b9686b845dfd18309a9", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["table, staircase, light", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a square with a square in the center", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small table with a staircase", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is metal - weight is 0 - height is 0", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a house with a roof structure and toothbrushes."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, yellow, black", "house, roof, toothbrushes"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d rendering of a white box with a lot of blades"], "question": "which object has a roof", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " of a small white building with stairs and a lid."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": ["a 3d computer-generated model of a red-roofed building structure.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["3aae2ed9c3b6421cbb69ba726a302d2b", "b896a0898efe4059a776193c02132129"], "properties": ["- material is red-roofed building structure- color is red-roofed building structure- type is 3d computer-generated model", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a person sitting on a bench", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a roof structure royalty free 3d model no.", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- material is wood, rusty, horned", "metal, cross, clock"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "above a black and white image of an object on a white background"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white box with colored buttons on it.", "a white of a man with arms outstretched."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, texture", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a square with dots on it", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, blue, rim, blue", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which object has a speaker?", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["roof, color, green", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a roof structure"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house with a roof.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9578e8de15ec44ce802072aaa4df3910", "97e000ff41094665afd94ea565da8b13"], "properties": ["roof, house, small", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of the roof of a building"], "question": "which house has a roof made of wood", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["orange, forklift, parking lot", "house, tree, pool"], "captions_pred_pc": ["a black and white illustration of a cell phone", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which has more trees", "label": 1}, {"captions": ["3d white geometric shapes and paper clip.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["8760487af6c748ac8111f09113a77b16", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["3D, white, paper clip", "striped, white, black"], "captions_pred_pc": ["of a black and white knife on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d printed diamond shaped object on a white background", "a 3d model of a stack of books"], "question": "which object is white", "label": 1}, {"captions": [" a damaged room with destroyed furniture, featuring a kitchen, bathroom, and broken window.", " of a small white building with stairs and a lid."], "sample_ids": ["06dd6456dc244a51b6b6e1c8524820de", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["room, furniture, window", "building, stairs, lid"], "captions_pred_pc": ["above a black and white drawing of a person sitting on a bench", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of a room with a person in it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a house with a green, wooden-structured roof."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, structure, truss", "roof, color, green"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a spiral staircase with a railing in a small building."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, white, railing, black", "staircase, railing, building"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a staircase in a white room"], "question": "which staircase is in a building?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["floor plan, heating system, ceiling light fixture", "box, handle, gun"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d rendering of a metal box with a handle"], "question": "which object has a handle", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a multicolored metal building structure with a roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "22483891fd124baca3bbc6a6a49adc9c"], "properties": ["roof, structure, house", "color, roof, structure"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "of a black and white photo of a bike on a white background"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a barn structure"], "question": "which structure has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, frame, shape"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " of a green-leafed plant in a white hanging pot."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "bc75bd88ee014f3cb733e4af32c54cc6"], "properties": ["color, bowl, green", "color, green, leaf"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white illustration of a jellyfish"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a potted plant on a white background royalty free 3d model preview no.3"], "question": "which plant has green leaves", "label": 1}, {"captions": ["a black floor lamp with a wooden round base, black shade, and attached cord.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["03db87a02e3847f8a712a362de9a314d", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Base material is Wooden, Shade color is Black, Cord color is Black", "roof, color, yellow"], "captions_pred_pc": ["a black and white illustration of a bomb on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black floor lamp with a round shade on top", "a 3d model of a house with a roof"], "question": "which object has a yellow roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a gray, metal pillar/cylinder."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["a box, a cup, a bottle, a jar", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" of white spheres resembling a molecule.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "c4e45a41478e42418399074b88d8920f"], "properties": ["color, shape, number", "axe, handle, wood"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a knife on a white background"], "question": "which object has a handle made of wood", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " a spider-like creature with long arms and legs."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["beige, head, bottle", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["light source, fixture, color", "wood, board, shelf"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d rendering of a piece of marble"], "question": "which object is made of wood", "label": 1}, {"captions": [" a stone, wood, rock, sliced bread, and a skull with a blue hat.", "a featuring a man wearing an orange and blue helmet, a white and blue watch, and a blue hat, accompanied by a robot with a head and an orange and blue clock."], "sample_ids": ["0169af65ffc64bbf8e2fe6c6de08d485", "169855ca6adc4f36814f17d275cb1e95"], "properties": ["hat, skull, bread", "hat, watch, clock"], "captions_pred_pc": ["a black and white illustration of a skull in the shape of dots", "in 15 words or less a silhouette of a man smoking a cigarette"], "captions_pred_image": ["a black and white image of a stone sculpture", "a 3d model of a futuristic chair"], "question": "which entity has a watch?", "label": 1}, {"captions": [" a white box with colored buttons on it.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["5a5269e17d134e238ec2b256405d8c10", "6b745457e06840119058883b35f78f58"], "properties": ["color, shape, material", "roof, color, blue"], "captions_pred_pc": ["in 15 words or less a black and white patterned scarf on a white background royalty free illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a white box with two buttons", "a 3d model of a house with a steeple on top"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["runner, bed, bench", "house, table, chair"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small building with windows and a roof."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["house, color, white", "roof, windows, building"], "captions_pred_pc": ["above a black and white drawing of a bench", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, green, handle", "color is white, yellow, plastic"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a soldier with outstretched arms", " of a soldier with outstretched arms"], "sample_ids": ["4982a7018e6f4503b5708c714b733ab4", "4982a7018e6f4503b5708c714b733ab4"], "properties": ["arms, outstretched, soldier", "arms, outstretched, soldier"], "captions_pred_pc": ["a black and white illustration of a bird's wing", "a black and white illustration of a bird's wing"], "captions_pred_image": ["a 3d model of a soldier with his arms outstretched royalty-free 3d model preview", "a 3d model of a soldier with his arms outstretched royalty-free 3d model preview"], "question": "which entity has a caption of a soldier with outstretched arms?", "label": 0}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "97e000ff41094665afd94ea565da8b13"], "properties": ["stair, table, chair", "roof, material, wood"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a white rocking chair with a curved backrest."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, grass, moss", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", " of a stone wall with a window and a clock."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["- material is plastic- shape is dice- color is white", "window, clock, wall"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a brick wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " of a small wooden house with a roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["roof structure, truss, ceiling", "roof, house, wooden"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a hammer with a long metal handle.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["30f4b6bcbbb44f568cab4fd439d05145", "1da865c75a5e4a57a17652975dae5474"], "properties": ["handle, metal, long", "color, white, plastic"], "captions_pred_pc": ["a black and white toothbrush on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a hammer with a wooden handle and metal head", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a two-story building with stairs and a three-tier display.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1d817b7b6ded439d8b92eeab87e4cf8d", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["tiers, building, stairs", "house, pool, balcony"], "captions_pred_pc": ["for a black and white photo of a person sitting on a bench", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with two floors and a spiral staircase", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a 3d silver knight's helmet.", " a white castle composed of small cubes."], "sample_ids": ["83c36d2cebd94939adbb0982fe547f5f", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["- material is metal- color is silver- texture is textured", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a heart shaped object", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d model of a medieval knight's helmet royalty free 3d model preview no 3", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": [" of a small red renault clio car.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "18e392c5360146eda498c5edab25b15c"], "properties": ["color is red, make is renault, model is clio", "frame, beams, trusses"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a building under construction"], "question": "which entity is a building structure?", "label": 1}, {"captions": ["a blue and white radio in the shape of a small suitcase.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["314cb57bed324d268c1205f5c7bf80ab", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, material", "Lights, number, five"], "captions_pred_pc": ["of a black and white drawing of a purse", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an old-fashioned radio on a white background royalty-free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["desk, chair, table", "house, fence, playground"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a small house with a roof."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["house, rock, pond", "roof, house, small"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a white sofa, chair, and box."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "4c59733ebd634594a921b7ace60e4142"], "properties": ["runner, bed, bench", "sofa, chair, box"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, bird, hook", "roof, material, wood"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a white of a spaceship and building."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, purple, suspended", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, material, shape", "a room, a cake, a table"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d rendering of a white room with various items in it"], "question": "which entity has a room?", "label": 1}, {"captions": [" a small orange piano with legs.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["d793de7c08d74414beeb8ea50f730705", "b896a0898efe4059a776193c02132129"], "properties": ["color is orange, size is small, legs", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a bench", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a grand piano royalty free 3d model preview no 2", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a low poly of a tree with red apples and a green cactus with red dots.", " a green mountain with trees and grass."], "sample_ids": ["fd7765e391cd49ccbc72891d90850cdb", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, red, apples, tree, cactus, dots", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a group of geometric shapes", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "36d90269173b4d1a84dbd61664593f66"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a, eagle, wood"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white illustration of a map with dots all over it"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a person sitting on the edge of a cliff"], "question": "which entity has a rock formation with various statues", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, shape, text", "house, lake, pool"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a large building"], "question": "which entity has a lake", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, white, containers", "island, terrain, rocks"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a table with a red and white striped base.", "a white of a woman with her arms outstretched."], "sample_ids": ["1c5f4bb610644327ad0db547adb5499e", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["base, color, red, white", "image, color, white"], "captions_pred_pc": ["a black and white illustration of an object that is made up of many small dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white desk with two legs", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "92498f398e244020a867686729633610"], "properties": ["water, boat, rock", "a, house, cat, dog"], "captions_pred_pc": ["a black and white illustration of a surfboard", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a small wooden house with a roof."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "f5904a9d87ff4fa688146c18c1f27fec"], "properties": ["floor, wall, roof", "roof, house, wooden"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white drawing of a house with dots"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small house"], "question": "which entity has a wooden roof", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["water, river, island", "house, roof, wooden"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white photograph of a birdhouse"], "question": "which entity is not a small island with trees", "label": 1}, {"captions": ["white rectangular box in a .", " tall grass, plants, rocks, and a tree."], "sample_ids": ["171d8702ca004ed787b8c7eb0de9a4fd", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["box, white, rectangular", "grass, plants, rocks"], "captions_pred_pc": ["a black and white diamond on a white background", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a white bowl on a gray background royalty free 3d model preview no.1", "a 3d model of a group of trees"], "question": "which object is in a grassy area?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, structure, greenhouse", "house, tree, hill"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a large building with a roof and windows."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "32d1fbd3ee91426882290305f70021e6"], "properties": ["bed, desk, window", "roof, windows, building"], "captions_pred_pc": ["of a black and white drawing of a curved line", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof and windows", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["location, field, gravestone", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a small wooden house."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, structure, house", "house, material, wood"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["floor plan, heating system, ceiling light fixture", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a house", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", " of a white human skull with broken bone elements."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, hat, glasses", "color, white, skull"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["location, highway, train station", "structure, roof, pitch"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a small white box with a green light.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["a5e37b9c782c4340b4dea45fbe1c701a", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, white, light", "table, staircase, light"], "captions_pred_pc": ["a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of a small white box", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["background, color, white", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white image of a cat's head", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a small house with a blue roof.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["roof, color, blue", "roof, trusses, ladder"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", "a yellow gold ring with an engraved quote, \"strength and love.\""], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "c155767db07340f2813c1b3dfa8d63b9"], "properties": ["image, color, pink", "ring, material, gold"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "of a black bangle bracelet on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a white wedding band with the words strength in weakness engraved on it"], "question": "which entity is made of yellow gold", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a spiral staircase with railings."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["buildings, houses, grass", "railings, staircase, spiral"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d rendering of a staircase in a room"], "question": "which entity has more railings", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a green mountain with trees and grass."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, staircase, window", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "18d2e75f23474d7489a6d7d605dfc76d"], "properties": ["a, island, water", "throne, chair, building"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white illustration of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d model of a building on top of a table"], "question": "which entity has a throne made of money?", "label": 1}, {"captions": [" white crocs clogs with blue straps and holes.", " a house with a wooden-framed roof structure."], "sample_ids": ["4622e88fd9264b37997671efeb73af85", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, blue", "roof, material, wood"], "captions_pred_pc": ["of a black and white image of a shoe with holes", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white clog shoe royalty free 3d model preview no 1", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a wooden house with a roof and framing.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["4634a9bdf54549a99f68be77f1464b0a", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["roof, framing, material", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of an abstract pattern", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a barn structure", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, shape, material", "color is white, yellow, plastic"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["light switch, electrical outlet, furniture", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", " a white sofa, chair, and box."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "4c59733ebd634594a921b7ace60e4142"], "properties": ["building, room, sky", "sofa, chair, box"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a small wooden house."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["building, tree, plane", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a machine gun.", " of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design."], "sample_ids": ["2332041c12f640e6a9ce432e6e278455", "c69f60b389124ad9b4f81c64ec332054"], "properties": ["gun, barrel, caliber", "earbuds, light, ring"], "captions_pred_pc": ["a silhouette of a machine gun on a white background", "a black and white drawing of a needle and thread"], "captions_pred_image": ["a 3d model of a machine gun royalty free 3d model preview no 2", "a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background"], "question": "which entity has a ring?", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["staircase, railing, building", "house, fence, playground"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "bded33af34104b9686b845dfd18309a9"], "properties": ["bird, nest, wood", "table, staircase, light"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a small table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, green, squirt gun", "resembles, sea urchin, shell"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a spider-like creature with long arms and legs."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["roof, trusses, beams", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a house with a blue roof.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, color, blue", "a, building, roof"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["a, rock, paper", "grass, plants, rocks"], "captions_pred_pc": ["for a flock of birds in the sky", "a black and white drawing of a tree"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["windmills, silhouette, city model", "island, mountain, grass"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" a building with blue metal framing and structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["ce40210c2a7e49dfaebbd934ccec4eca", "6b745457e06840119058883b35f78f58"], "properties": ["color, blue, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white image of dots on a white background", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a house with a steeple on top"], "question": "which building has a blue roof", "label": 1}, {"captions": [" of a white round table with a red accent.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["fea62a865b4e40899d95785533818329", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, white, red", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a woman's chest"], "question": "which entity is a torso?", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a small wooden house."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["house, tree, pool", "house, material, wood"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "f1b557775310478893242180defa4d80"], "properties": ["roof truss, insulation, suspended ceiling", "shack, roof, door"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["Drawer, Pattern, White", "moss, mushroom, grass"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity is a natural scene?", "label": 1}, {"captions": [" of a metal screw", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["67c7d3e9744e4f5f865af34e803dca80", "c3a82df41875402285608ef13a55df57"], "properties": ["metal, screw, head", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a screw on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d rendering of a screw on a white background", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a rifle with an orange handle, accompanied by a small rake and a knife.", " of a set of ladders."], "sample_ids": ["457043cede9848a6877ed2b5e13022d6", "5152e8c6dd094e49b02b54ef1cd2fabc"], "properties": ["a, handle, orange, rake, knife", "a, set, ladders"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a white wall with a black square on it"], "captions_pred_image": ["a 3d model of a white plastic object on a gray background", "a 3d model of a shelving unit with multiple shelves"], "question": "which object is not a set?", "label": 0}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small building with windows and a roof."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["graffiti, chinese writing, door", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, orange, leather", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of a chair", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house with a flat roof structure."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "abc52d210d71415296730bb00352ce6f"], "properties": ["color, white, yellow, roof, metal", "roof, flat, structure"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", " a two-story small apartment building with a roof."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["building, roof, white, cubes", "two-story, roof, building"], "captions_pred_pc": ["above a black and white image of a map", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["runner, bed, bench", "box, paper clip, lock"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a, dress, flower", "plane, ship, bird"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has more wrecked objects", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a potted christmas pine tree."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["ceiling, light, desks", "a, color, green"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a christmas tree in a vase"], "question": "which object is green", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["Arms, Legs, Color", "roof, trusses, beams"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of the roof of a building"], "question": "which entity has more trusses", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a spiral staircase with a railing in a small building."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["boxing gloves, heart, hand", "staircase, railing, building"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": [" a small house with a roof and door, resembling a shack or shed.", " a house with a wooden-framed roof structure."], "sample_ids": ["f1b557775310478893242180defa4d80", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["shack, roof, door", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a telephone on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small house in the middle of a field", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a modern office building with a green door, green roof, windows, and blue lights."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "d6087023095446fbadef1721478373b2"], "properties": ["roof, green, lawn", "door, roof, window"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white drawing of a toilet brush"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of an apartment building"], "question": "which building has a green door?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a small wooden house with a green roof."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["water, river, island", "roof, color, green"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small white box with a green light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["building, stairs, shelves", "color, white, light"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["table, staircase, light", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white photo of the letter g", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, pattern, wall", "roof, color, yellow"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["ruined building, stone floor, small stone structure", "island, mountain, grass"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "d81d13362ae04371bb2cba46e4939665"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "e098706085a44898abbd549693d12a64"], "properties": ["color, shape, material", "color is black, white, orange"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a red circular object with a checkered pattern, resembling a round pillow or bed cover.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["9cf9fb6d07084488892422a5a5be00ef", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["pattern, color, shape", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black circle on a white background", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a round cushion royalty-free 3d model preview", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a green mountain with trees and grass."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["hat, sword, gun", "mountain, grass, tree"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" a marble environment featuring a table with two oranges and a small toy.", " a wooden billiard table with legs."], "sample_ids": ["632b18133e924299976efaed4a52c74d", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["Object, Table, Oranges", "legs, material, wood"], "captions_pred_pc": ["a black and white illustration of a sphere with dots on it", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a marble bathroom with a shower and a toilet", "a black and white image of a pool table"], "question": "which table is made of wood", "label": 1}, {"captions": [" a black building.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, black, building", "color, white, gold"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a building with blue lines and structure.", " a house with a wooden-framed roof structure."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, shape, structure", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a roof"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "bded33af34104b9686b845dfd18309a9"], "properties": ["floor, table, wall", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d model of a small table with a staircase"], "question": "which table has a staircase?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["roof, color, pink", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": [" a small house with a roof.", " of two rocks with ice elements."], "sample_ids": ["0d2246e433ce4066b76489f17ba8d694", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, house, small", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, yellow, white, wheels", "roof, material, wood"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a small house featuring a wooden floor, stairs, a bathroom with a sink and toilet, and a white box on a table."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "73f2780847f14547b9ae5f9e8a81e348"], "properties": ["graffiti, chinese writing, door", "floor, stairs, bathroom"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white image of a leopard print pattern"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a small table"], "question": "which entity has a bathroom with a sink and toilet?", "label": 1}, {"captions": ["a 3d white cube with windows resembling a building.", " a green mountain with trees and grass."], "sample_ids": ["4a07a5293f024bb0a353954a056ef626", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["- material is white- color is white- texture is textured", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a square made up of small dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a cube", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a yellow monster-sphere with teeth.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["fc5f906bab2c4c36a406ebdc15f58541", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, shape, texture", "color, white, gold"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background illustration", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a 3d model of a white ball with teeth", "a 3d model of a standing mirror on a white background"], "question": "which entity is a mirror?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a small clay jug with a face, handle, and spout, depicted as a ."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "ceee98c20f23424195da092156905ec4"], "properties": ["color, green, handle", "face, handle, spout"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a small, circular object"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a white ceramic vase with a face on it"], "question": "which object has a handle", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a house with a roof and beams."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, roof, green, frame, red", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a building with a roof"], "question": "which house has a roof and beams?", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["red, mouse, handwriting", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["base material is wood, color is red, message is welcome to northwich", "a, color, red"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 0}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white image of a person's face", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "f1b557775310478893242180defa4d80"], "properties": ["roof, ceiling, hole", "shack, roof, door"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a small house in the middle of a field"], "question": "which entity has a roof and a door?", "label": 1}, {"captions": ["a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["8557a15b9f244d2cbf16786dbc8b7b25", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["building, room, sky", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a person's hand holding a paintbrush", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of white clouds floating in the air", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a large steel building with a pool."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, shape, poles", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["size, material, lighthouse", "roof, color, yellow"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "a2354f13774340d392fbf33564934aab"], "properties": ["roof, green, lawn", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", "a white circular table with a black base and a white table lamp, accompanied by a black ceiling light with a hanging wire."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "ff7a1dec37f1416fbad0f0705486806c"], "properties": ["ceiling, light, desks", "table lamp, ceiling light, table"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "an oval table with a mouse on top of it"], "question": "which entity has a table lamp and a ceiling light?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["door, roof, pool", "grass, plants, rocks"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a group of trees"], "question": "which entity has more grass", "label": 1}, {"captions": [" a pink and white spiral staircase resembling an ice cream cone, with striped tower and purple accents.", " a wooden staircase with a railing and table."], "sample_ids": ["1f98d43acd2543e4821f630160cc7b7d", "956247bea850458199c651037d4b1d7f"], "properties": ["color, shape, tower", "railing, table, staircase"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of an ice cream cone on a white background royalty-free 3d model preview no.1", "a 3d model of a table with a staircase"], "question": "which staircase has a railing and table", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, lake, boat", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a white and silver human torso sculpture with rocks.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["3978258c3f26401681c6e44b404e2cca", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, material, texture", "building, window, skeleton"], "captions_pred_pc": ["above a black and white drawing of a skull", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d sculpture of a rock formation on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "a2354f13774340d392fbf33564934aab"], "properties": ["house, hill, forest", "building, roof, yellow"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white image of a cell phone"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a colorful painting featuring a sad buddha and an angel.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["c8d5067bcfdb41a99b103cc0addbb0cb", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, image, subject", "a, color, white"], "captions_pred_pc": ["above a black and white drawing of a square with small black dots", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white drawing of an angel holding a baby", "a 3d model of a desk and chair"], "question": "which image has a white box?", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["bedroom, bathroom, bed", "image size, image, royalty"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of a wildebeest"], "question": "which image is smaller", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["color, white, black, white", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" of an old stone building with stairs, a door, and a clock, resembling a small church.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1c18f1857b934fe6951b7ef129188b1a", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["building, door, clock", "island, mountain, grass"], "captions_pred_pc": ["a black and white image of an object with dots all over it", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a church with a steeple", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a blue ford escort car.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["fa3da8623db242c082e2915b12873186", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, blue, ford escort", "roof, material, wood"], "captions_pred_pc": ["of a black leather bracelet on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a classic car royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a house with a roof and beams."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, red, pink", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a building with a roof"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a small house with a red roof.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["085db9059b744673b5623b5338e02196", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, red, house", "house, rock, bird"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d rendering of a house on a rock"], "question": "which house has a bird on a rock?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", " a large metal building with a roof and truss structure."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, green, orange, star", "roof, truss, structure"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "of a metal grate on a white background"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["a, dress, flower", "building, room, sky"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a crab with long legs, wires, and tentacles, resembling a hybrid of an octopus, squid, spider, and robot.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["ec5914b53b6a4cde8de4820050bc46c5", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["resembles, octopus, squid, spider, robot", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of a jellyfish", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a robotic octopus on a white background royalty free 3d model preview no.2", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["a city, train, dragon", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" a modern orange leather swivel recliner chair and ottoman.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["943ae5d90d654498912d0d3d0114ba35", "12093c89a60941e7884b252bdc05104c"], "properties": ["color, orange, leather", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white illustration of a chair", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a white leather lounge chair and ottoman", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["color, shape, height", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a building with a roof"], "question": "which building has a glass roof", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a small wooden house."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["castle, island, house", "house, material, wood"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": ["a 3d white cube.", " of a toy mushroom character with a white and brown head."], "sample_ids": ["94fbd38f3f9c454eafc09bf4d7544146", "ae8a73809d4647c09cc82f403e47de1d"], "properties": ["color, shape, size", "color, head, white and brown"], "captions_pred_pc": ["of a black lace belt on a white background", "a black and white illustration of a butterfly sitting on a dandelion stock illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a gray and white cartoon character"], "question": "which entity is a toy?", "label": 1}, {"captions": [" a child's room in a small house with windows.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["88847a6445044bcbab9611e6028a19b9", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["room, house, windows", "island, terrain, water"], "captions_pred_pc": ["for a black and white drawing of a snowflake", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " of a set of three white shelves or ceiling panels with lines."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "ff6f8c2347ab4c17a2b3e319b205f191"], "properties": ["red, mouse, handwriting", "set, white, lines"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a set of black and white dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d illustration of a set of three white trays on a gray surface"], "question": "which entity has more lines", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a small house on a hill in a field."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["color, shape, texture", "house, hill, field"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a black and white image of a small house"], "question": "which entity has a hill?", "label": 1}, {"captions": [" a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light.", " a small wooden house with a green roof."], "sample_ids": ["5ea0962b100b4fccb761ed84afe027b5", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["house, table, chair", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of an open door", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a small white table with a chair", "a 3d model of a house with a ladder"], "question": "which house has a green roof", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "table, staircase, light"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a table with a staircase"], "question": "which entity is a table?", "label": 1}, {"captions": ["a featuring a pile of food, leaves, shredded paper, and rocks with scattered broken paper pieces.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["5206d4d96c2d428b9c1f7ee0e13bcffb", "a2354f13774340d392fbf33564934aab"], "properties": ["food, leaves, shredded paper, rocks", "building, roof, yellow"], "captions_pred_pc": ["a black and white image of a bird in flight", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a mountain range on a white surface", "a 3d rendering of a machine with a conveyor belt"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a house with a green, wooden-structured roof."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, bird, green, yellow, blue", "roof, color, green"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, roof, wooden", "house, table, chair"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["room, bed, desk", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white drawing of a door", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a small house with a red roof.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["085db9059b744673b5623b5338e02196", "225e4094141d416faba7c5598dc55ff8"], "properties": ["roof, red, house", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white dotted square on a white background", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["a 3d model of a small shed in the snow", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a character wearing glasses and a hat.", " of two rocks with ice elements."], "sample_ids": ["032e7ce682ff43d5aa5ca4fd34eacf14", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["hat, glasses, character", "image is a rock with ice elements"], "captions_pred_pc": ["in 15 words or less a silhouette of a bell on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a person wearing sunglasses", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" of a large gray sphere", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["size, color, shape", "metal, legs, wheels"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of an old metal locker"], "question": "which object is made of metal", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, material", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a white of a man with arms outstretched."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, white, background, gray", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of an object", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background."], "sample_ids": ["b5afccae993346079483507296fbb029", "dd5849aced0443b1b4b38d413f7e06c4"], "properties": ["shape is square, material is metal, color is rusty", "background, color, white"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white image of a cat's head"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of an animal skull in white on a gray background"], "question": "which entity is not a teddy bear?", "label": 0}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, white, logo", "building, window, skeleton"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a black and white photo of a person's reflection in a mirror"], "question": "which entity has a window", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "205251e4277e41d1aae6b2358267ad56"], "properties": ["color, red, blue, structure", "image, color, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d printed figurine of an alien creature"], "question": "which image is black and white?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, roof, green, frame, red", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d rendering of a table and stool"], "question": "which house has a brown roof?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a 3d wooden toy on a wooden plate with a piece of fruit and bread with a knife."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "1c389c8f46b345838e515b9747c1f982"], "properties": ["a, bird, hook", "plate, fruit, knife"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a hedgehog"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a person riding a skateboard on a wooden surface"], "question": "which entity has a piece of fruit on it?", "label": 1}, {"captions": [" an old building with windows, doors, and a balcony on a street.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["706fb93f885d42f594e0ebbba632d2f2", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, balcony, street", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black ink brush stroke on a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of an old building", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["size, color, shape", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["a small white bowl with a light blue glaze and blue rim.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6f7201fbb58649379398a8d1d5c0cc7a", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, blue, rim, blue", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a dotted circle on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white bowl on a gray background", "a 3d model of a house with a roof"], "question": "which entity has a yellow roof", "label": 1}, {"captions": [" of a lion statue", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["ef45a94abce44c8980363602489f218c", "747110c073314ee39ef2f4a8d63222da"], "properties": ["a, material, statue", "s, laptop, printer"], "captions_pred_pc": ["in 15 words or less 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustr", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d sculpture of a lion sitting on its hind legs", "a black and white image of an electronic device"], "question": "which entity is not a statue?", "label": 0}, {"captions": [" a small purple plastic chair with four legs.", "a white glass beer mug."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color is purple, material is plastic, number of legs is four", "color, white, glass"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a white plastic chair", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a house with a green, wooden-structured roof."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["green, hat, cream", "roof, color, green"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d model of a house with a triangular roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", " a broken human skull and stone bowl."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["shape is cylindrical, color is silver, material is metal", "skull, bowl, human"], "captions_pred_pc": ["a black and white image of a cone shaped object", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a ceramic bowl with a large crack in the middle"], "question": "which object is made of a human skull", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "06a1c233fb444830b577aa06e2c01294"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "house, tree, hill"], "captions_pred_pc": ["a close up of a black object on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small, snow-covered house.", " a large white and metal building with a metal roof structure."], "sample_ids": ["0d00d10b90134dbe9ce7b2b3d6669237", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, snow, cover", "roof, metal, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a piece of broken glass on a white background", "a 3d model of a large white box"], "question": "which building has a white roof", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small white house with a roof."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["roof, color, pink", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a toilet", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a building with a white roof"], "question": "which house has a white roof", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "a17477b445b3443189dad22f768b888b"], "properties": ["color, roof, tray", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a small building with a balcony"], "question": "which house has a roof", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a large steel building with a pool."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["two-story, roof, building", "building material, pool, steel"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " of a small white building with stairs and a lid."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, white, red, pink", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" of a table with a red and white striped tablecloth, a bowl of eggs, a book, and a bowl of ice cream on it.", " of a table with a red and white striped tablecloth, a bowl of eggs, a book, and a bowl of ice cream on it."], "sample_ids": ["45f9d3998d904aa4a77f45e1744b581f", "45f9d3998d904aa4a77f45e1744b581f"], "properties": ["bowl, ice cream, bowl", "bowl, ice cream, bowl"], "captions_pred_pc": ["in 150 words a black and white illustration of a square with dots on it", "in 150 words a black and white illustration of a square with dots on it"], "captions_pred_image": ["a table with a bible and a bowl of fruit on it", "a table with a bible and a bowl of fruit on it"], "question": "which entity has a bowl of ice cream?", "label": 0}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["color, light, jewels", "low poly, llama, kangaroo"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d low poly animal standing on its hind legs"], "question": "which entity is a low poly of a deer", "label": 1}, {"captions": [" a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym.", " of a white chest of drawers with legs."], "sample_ids": ["b494049bb15440949e465d54a72b2f02", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["building, floorplan, gym", "chest of drawers, legs, white"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d model of a white building with two floors", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " a house with a roof and beams."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, mattress, pillows", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["house, roof, green", "house, rock, bird"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d rendering of a house on a rock"], "question": "which house is on an island?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a wooden house with a roof and framing."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "4634a9bdf54549a99f68be77f1464b0a"], "properties": ["roof, structure, wall", "roof, framing, material"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white drawing of an abstract pattern"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a barn structure"], "question": "which house has a roof made of wood", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["a, dress, flower", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a large steel and metal structure with a pool and scaffolding system.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["5850d5c7223447db816081d50292fec0", "c3a82df41875402285608ef13a55df57"], "properties": ["structure, material, pool", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a bridge with chains", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a large concrete structure", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a castle on a hill in the middle of a field."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "5c6965cc9640450d91ba7d788d4e01fe"], "properties": ["floor plan, bathroom, pool", "hill, field, castle"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white photograph of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a castle on a hill"], "question": "which entity has a field?", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["size, color, shape", "resembles, sculpture, rock"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a house with a pink roof."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "6162909df6294848a8eea83c3aa9585b"], "properties": ["color, white, containers", "color, roof, pink"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of the letter 'p' on a white background illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d model of a house in the style of the 1920s and 1930s"], "question": "which entity has a roof that is pink", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, material, pattern", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a sky?", "label": 1}, {"captions": [" a wooden staircase with a railing and table.", " a large steel building with a pool."], "sample_ids": ["956247bea850458199c651037d4b1d7f", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["railing, table, staircase", "building material, pool, steel"], "captions_pred_pc": ["above a black and white drawing of a window", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a table with a staircase", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a truck with luggage on top and various parts.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["a6d5c3b54ebd4d17ba73f86d1527793c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["Parts, Luggage, Truck", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a person holding a paintbrush", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small vehicle with a trailer attached to it royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof, truss, suspended ceiling", "roof, ceiling, hole"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof with a hole?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a featuring a bench with flowers, a bridge, a white sculpture, a bicycle with a flower, a giraffe, and a palm tree."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "12093c89a60941e7884b252bdc05104c"], "properties": ["a, dress, flower", "giraffe, bench, flower"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white drawing of a gear on a white background"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d model of a sculpture made of sticks"], "question": "which entity has more flowers", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["Lights, number, five", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white map of the island of malta"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " of a construction site featuring a concrete wall, tools, equipment, wooden bench, fence, chair, and a graffiti-covered green wheelbarrow."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "766a075b4760433bafdbe88bee546796"], "properties": ["chair, table, refrigerator", "graffiti, wall, wheelbarrow"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "for a black and white image of a bowl on a stand"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a wall with graffiti on it"], "question": "which entity has a wall?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " of two rocks with ice elements."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["orange, forklift, parking lot", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": ["pink and green pendant light hanging from a ceiling.", " a house with a pink roof, brick walls, and insulated ceiling."], "sample_ids": ["1651a898288149edb8cbff0e1b2d692b", "c8936ace72954650b4e2d84246964849"], "properties": ["color, pink, green", "roof, color, pink"], "captions_pred_pc": ["above a black and white photo of a small circular object on a white background", "a black and white drawing of a toilet"], "captions_pred_image": ["a white pendant light hanging from the ceiling", "a 3d model of a house with a roof"], "question": "which entity has a pink roof", "label": 1}, {"captions": [" a house featuring a roof with wooden trusses and a ladder.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["3cd410c4359a4cef98702963a2b9802b", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["roof, trusses, ladder", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a tv screen on a white background", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which house has a roof truss", "label": 1}, {"captions": [" a small building with windows and a roof.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["roof, windows, building", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d rendering of a small house with a covered porch"], "question": "which entity has a roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a small purple plastic chair with holes."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["s, stick, leaf", "color, plastic, purple"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "bf18bfd89efd43389781050230467d58"], "properties": ["a box, a cup, a bottle, a jar", "Lights, number, five"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a broken stone wall featuring an angel sculpture.", " a wooden roof structure with a pink roof."], "sample_ids": ["aae2c42740a04fd68068f5707111d26f", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["image is a sculpture of an angel on a wall", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a toilet paper roll", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a marble sculpture of an angel", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "green toy sand bucket and shovel with a squirt gun."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "ae173b4afc4d4b0499f1e4e55d647c06"], "properties": ["color, shape, and size", "color, green, squirt gun"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bucket and shovel royalty free 3d model preview no.2"], "question": "which object is a toy?", "label": 1}, {"captions": [" a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree.", " of two rocks with ice elements."], "sample_ids": ["4a889132cc444d10bfcbf6c760984416", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, color, white", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a desk and chair", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a pink and gold robotic woman's hand with purple flowers.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["accfe13a2bd448828e45c790118e1b7d", "a17477b445b3443189dad22f768b888b"], "properties": ["color, hand, flowers", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a hand", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a human leg with a broken ankle royalty-free 3d model preview", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["house, rock, pond", "door, lock, handle"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a cartoon panda bear wearing a diaper."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "e2c307d9fa2b4d40b4602537d7f71e24"], "properties": ["A, a, a", "cartoon, bear, diaper"], "captions_pred_pc": ["a black and white illustration of a bench", "a 3d model of a teddy bear on a white background 3d model of a teddy bear on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a cute panda bear"], "question": "which entity is a cartoon?", "label": 1}, {"captions": [" a white rock formation with pebbles and ice elements.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["94d94f5a75de4bd0a43b08609630876e", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, texture", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a pair of shoes on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small rocky island in the middle of a body of water", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " of a small white building with stairs and a lid."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, black, rings", "building, stairs, lid"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a 3d model of a white box on a gray background"], "question": "which object has a lid?", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["size, color, shape", "rusty, warning, metal"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", "a white glass beer mug."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- color is white- shape is cubes- number is 1", "color, white, glass"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a white human skull with broken bone elements."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, white, yellow, roof, metal", "color, white, skull"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "06a1c233fb444830b577aa06e2c01294"], "properties": ["a, dress, flower", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a large white and metal building with a metal roof structure."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["door, roof, pool", "roof, metal, white"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "d49d8ed244094349a99e4faca05e0690"], "properties": ["screen, keyboard, box", "low poly, plant, white"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", "a white of a house with a hole in the ceiling."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "2915cbd03e164ac0bb13866c2d68cc65"], "properties": ["roof trusses, beams, suspended ceiling", "image, house, ceiling"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of a house"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a house with a balcony"], "question": "which image shows a house with a hole in the ceiling?", "label": 1}, {"captions": ["a low poly model of a chef with a mustache wearing a white hat.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["98c69b92a63a4e1681b8d0cb49aa764a", "4a889132cc444d10bfcbf6c760984416"], "properties": ["hat, mustache, chef", "a, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a mushroom on a white background", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a 3d model of a chef's hat", "a 3d model of a desk and chair"], "question": "which entity is not a model?", "label": 0}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["floor, wall, roof", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a person breaking through a brick wall."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color is white, yellow, plastic", "image, brick, wall"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, color, yellow-green", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a 3d white ornate lace doily design resembling a flower with an arrow and cloud element."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "2cec19efecd74b34be9d85ed8198f212"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "- color is white- shape is flower- pattern is lace"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "a white doily with a pair of sunglasses on it"], "captions_pred_image": ["a low poly 3d model of a rock", "a white lace doily on a gray background royalty free 3d model preview no 2"], "question": "which entity is white", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "b896a0898efe4059a776193c02132129"], "properties": ["house, plane, town", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, structure, house", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of a house with roof trusses"], "question": "which structure has a roof", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["- color is white- shape is cube- material is plastic", "metal, rusted, paper"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a white cube", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house with a flat roof structure."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "abc52d210d71415296730bb00352ce6f"], "properties": ["ceiling, beams, light", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a house with a roof"], "question": "which entity has a flat roof structure", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "a17477b445b3443189dad22f768b888b"], "properties": ["lighthouse, fountain, crater", "roof, pillar, stairs"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white image of a square with dots"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "e602ac60041f4b4f84c044161e478781"], "properties": ["room, door, shelf", "floor, wall, roof"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " of a small white building with stairs and a lid."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["shape, bathroom, refrigerator", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a 3d model of a white box on a gray background"], "question": "which entity is a building?", "label": 1}, {"captions": [" a purple and green sphere.", " a white motorcycle with wings."], "sample_ids": ["906b2d1219804f4f9e57d4f6cfd47a83", "7e684a7c012c4fd0ac91844f22457640"], "properties": ["color, shape, size", "color, white, wings"], "captions_pred_pc": ["in 15 words or less a black and white image of a sphere in the shape of a light bulb royalty free illustration", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a ball with a face on it", "a 3d model of a motorcycle on a white background"], "question": "which object is white", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " of a small white building with stairs and a lid."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, mattress, pillows", "building, stairs, lid"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a gray object featuring an axe, guitar headstock, and head."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "ac5c86f38c8e4570a7eefff0958185cf"], "properties": ["color, temperature, england", "Headstock, Guitar, Head"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a toothbrush on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of an axe head"], "question": "which object has a headstock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["color, shape, and size", "Cabinet, drawer, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small triangular-shaped object."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "2d02985030804209a26c2c53b96a06f9"], "properties": ["a box, a cup, a bottle, a jar", "shape, triangle, small"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a wooden table with a plant on it."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["table, bench, deer", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": ["a 3d white ornate lace doily design resembling a flower with an arrow and cloud element.", " a large rock structure with a cave and small hole, resembling a stone sculpture and featuring a white plastic bag."], "sample_ids": ["2cec19efecd74b34be9d85ed8198f212", "120bf1525e8649d9bdf3a593fe8f5ddc"], "properties": ["- color is white- shape is flower- pattern is lace", "resembles, sculpture, rock"], "captions_pred_pc": ["a white doily with a pair of sunglasses on it", "a black and white illustration of a piece of paper with dots on it"], "captions_pred_image": ["a white lace doily on a gray background royalty free 3d model preview no 2", "a 3d model of a bag with a zipper on it"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", "a white 3d-printed plastic container set with a lid, two small containers, and a hat-like attachment."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "1da865c75a5e4a57a17652975dae5474"], "properties": ["size, material, shape", "color, white, plastic"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a white box, a white lid, and a white container"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white square with the words \"what tv\" on it.", "a 3d object featuring a white tray with a decorative pattern, a silver tray with a bird, a laptop, a long knife, and a metal bar."], "sample_ids": ["0c1e8d76d4ff4859835f55c0681408a6", "b1099ba41d9f4af19d1a91761bb6074c"], "properties": ["color, white, words", "Object, Tray, Tray"], "captions_pred_pc": ["a black and white image of a long line of numbers", "above a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a white box on a gray background", "a 3d image of a white tray with an intricate design"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "b896a0898efe4059a776193c02132129"], "properties": ["a, hole, rock", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a lace belt", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, text", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a screw", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a featuring a man, woman, robot, cat, and dog interacting in and around a house.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["92498f398e244020a867686729633610", "92498f398e244020a867686729633610"], "properties": ["a, house, cat, dog", "a, house, cat, dog"], "captions_pred_pc": ["above a black and white illustration of a dog sitting on top of a pile of rocks", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d model of a person standing in front of a wall", "a 3d model of a person standing in front of a wall"], "question": "which entity has a man", "label": 0}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a small white house with a roof."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, lake, boat", "roof, color, white"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a building with a white roof"], "question": "which entity has a roof that is white", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a small house with stairs and a roof."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["Drawer, Handle, Wood", "roof, stairs, house"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d rendering of a podium on a wooden floor"], "question": "which object has a roof", "label": 1}, {"captions": [" a black triangular metal object with a clock and cross on it, and a small machine on top.", " of two rocks with ice elements."], "sample_ids": ["b198a81dc41c4fde8be3ca51c3b0e676", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["metal, cross, clock", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of an object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d image of two rocks on a gray surface"], "question": "which object is made of ice", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a large steel building with a pool."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, structure, truss", "building material, pool, steel"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["roof, air conditioner, house", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a wooden roof structure with a pink roof."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color is white, material is plastic, shape is tube", "roof, color, pink"], "captions_pred_pc": ["a black and white image of a broom on a stand", "above a black and white image of a metal grate"], "captions_pred_image": ["a white object on a gray background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a large gray sphere", "a white of a man in a suit and mask, possibly a diving suit."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "205251e4277e41d1aae6b2358267ad56"], "properties": ["size, color, shape", "image, color, white"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white image of a beetle on a white background"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d printed figurine of an alien creature"], "question": "which entity is a white image?", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a 3d white ornate lace doily design resembling a flower with an arrow and cloud element."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "2cec19efecd74b34be9d85ed8198f212"], "properties": ["color, shape, and material", "- color is white- shape is flower- pattern is lace"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "a white doily with a pair of sunglasses on it"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a white lace doily on a gray background royalty free 3d model preview no 2"], "question": "which entity is made of lace", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["bedroom, bathroom, bed", "house, rock, bird"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " of a white cube-shaped shelf"], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "1fc0969de9bf47cab82cae4cc8fe6c2f"], "properties": ["color, white, black, white", "shape is cube, color is white, material is wood"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a white shelf on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, shape, light", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a sculpture on top of a pedestal"], "question": "which object has a pedestal?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["roof truss, insulation, suspended ceiling", "broom, shovel, fireplace"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", " a small building with a staircase in a room."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "5a5b80af609a42acaebfdd086ae54336"], "properties": ["floor, table, light", "room, staircase, building"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white image of the letter l"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a staircase on a white surface"], "question": "which building has a staircase in a room?", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["d6087023095446fbadef1721478373b2", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["door, roof, window", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white photograph of a birdhouse"], "question": "which building has a wooden roof", "label": 1}, {"captions": [" a house with a roof and beams.", " a large steel building with a pool."], "sample_ids": ["c139e8fcbdbc4f63a9c8a06152c4dc2e", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof, beams, house", "building material, pool, steel"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a 3d object in the shape of a square", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small white barn with a metal roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "4ca3342a96824684845f7d0e062ab176"], "properties": ["roof, purple, suspended", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a barn"], "question": "which roof is made of metal", "label": 1}, {"captions": [" three differently colored wooden cubes with holographic patterns and a light inside one cube.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["1be0870f6d324089a3e3b60a029df6f8", "bded33af34104b9686b845dfd18309a9"], "properties": ["color, material, shape", "table, staircase, light"], "captions_pred_pc": ["of a set of 3 black ceramic tiles on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d rendering of three cubes on a white background", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small house with a tree and a rock.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["house, tree, rock", "house, pool, balcony"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["water, river, island", "hat, skull, bread"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["stair, table, chair", "floor, staircase, table"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which staircase is made of wood", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a house with a roof structure and toothbrushes."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["color, grass, moss", "house, roof, toothbrushes"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a white box with a lot of blades"], "question": "which object has a roof structure", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small, snow-covered house."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "0d00d10b90134dbe9ce7b2b3d6669237"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, snow, cover"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "in 15 words or less a black and white image of a piece of paper on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a piece of broken glass on a white background"], "question": "which house is covered in snow", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["a, bird, lake", "a, material, clay"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, lake, pool", "building, plane, room"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["top, color, wood", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a fireplace", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["color, white, red, pink", "building, plane, city"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a city in black and white"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["computer desk, laptop, monitor", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["desk, chair, lamp", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a city skyline", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a white chest of drawers with legs.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["f00dfa8b5e7e4fc6bbf97d718b66f390", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["chest of drawers, legs, white", "house, pool, balcony"], "captions_pred_pc": ["of a black and white leopard print rug", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a white dresser", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": ["a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["276699bb0f974c47b4e2954cfcd1651c", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, color, white", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a skull in the shape of a butterfly", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an animal with a long nose", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "e602ac60041f4b4f84c044161e478781"], "properties": ["a knife, blade, handle", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color is white, material is plastic, shape is bottle", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a white human skull with broken bone elements."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["s, chimpanzee, human, wolf", "color, white, skull"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a human skull in white"], "question": "which skull is white", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["roof, color, blue", "mossy, rock, grass"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a piece of wood on a white background"], "question": "which entity has a mossy rock?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a building with a purple roof, featuring a ceiling with wooden beams."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "b0cb5cd2fdca4bd5bdf96dd5c0cc13b5"], "properties": ["roof, purple, suspended", "roof, purple, beams"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "the letter l made of snowflakes on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of the roof structure royalty free 3d model no."], "question": "which roof is purple", "label": 1}, {"captions": ["a 3d-printed blue ring with holes in it.", " a small wooden house with a green roof."], "sample_ids": ["9adb0b6d88ec466d8df8c84ead5186a1", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, material, shape", "roof, color, green"], "captions_pred_pc": ["a black and white image of a leopard print design on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d rendering of a circular object with multiple holes in it", "a 3d model of a house with a ladder"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a black tray with three green rings on it.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["77d47814be1c4d1e8fd6207af2f4e095", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, black, rings", "beige, white, round"], "captions_pred_pc": ["a black and white image of three dots on a white background royalty free illustration", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d rendering of a tray with three rings on it", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "a17477b445b3443189dad22f768b888b"], "properties": ["building, fence, snowy", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a small blue and green gazebo with a table and chairs.", " of a white wall-mounted light switch, electrical outlet, and various furniture pieces."], "sample_ids": ["0a3d553ed5d54c9794494af4f7a7e1c6", "b195bf7ba6094e1b812e4312deeeb360"], "properties": ["color, gazebo, table", "light switch, electrical outlet, furniture"], "captions_pred_pc": ["a black and white illustration of a gazebo in the middle of a field of polka dots stock photography \u00a9 2018 iStock", "a black and white image of a pair of sunglasses"], "captions_pred_image": ["a 3d model of a small gazebo with a fountain in the center", "a 3d rendering of a room with a white background"], "question": "which entity has a light switch", "label": 1}, {"captions": [" a green and black bat-winged sword with green flames.", "a black and white of a knife/sword with a handle."], "sample_ids": ["78c5d5bdf2da4b03a467ef9ab2a0c13f", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, shape, material", "image, color, black and white"], "captions_pred_pc": ["of a person standing on a white background holding a long metal rod", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a dragon's wing in the air", "a black and white image of a knife"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a blue and white bird.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["0ae93fbb010846caa3af5fbbe66fc145", "bf18bfd89efd43389781050230467d58"], "properties": ["color, shape, size", "Lights, number, five"], "captions_pred_pc": ["two penguins sitting on top of a fountain", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["an abstract black and white drawing of a woman's face", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" of a japanese-style pagoda house in a pixelated village.", " a small white house with stairs and a wall-mounted shelf."], "sample_ids": ["42c4e6ca4a0c4b7b9a97d543b2442222", "10c4ba5b0db4490db9c00c21c94cb41f"], "properties": ["image is a japanese-style pagoda house in a pixelated village", "house, color, white"], "captions_pred_pc": ["a black and white drawing of a square on a white background stock illustration \u00a9 2019 iStock", "above a black and white drawing of a bench"], "captions_pred_image": ["a 3d model of a japanese temple and pagoda", "a 3d model of a small white building"], "question": "which house is white", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["color, screen, drawer", "table, bench, deer"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a black and white image of a bench and table with a deer's head on the table"], "question": "which object has a deer head on it", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a small building with windows and a roof."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, material, structure", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color, shape, size", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a 3d model of a human bone structure", "a black and white image of a piece of debris on the ground"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " of a large axe with a cross on top."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "4b6734945e204158b076a429a30ce2e9"], "properties": ["color, blue, green, yellow, blue", "axe, cross, top"], "captions_pred_pc": ["a pair of sneakers on a white background", "for an axe on a white background"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a black and white image of an axe on a gray background"], "question": "which object has a cross on top?", "label": 1}, {"captions": [" a large building with a roof and windows.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, windows, building", "box, paper clip, lock"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a small house with stairs and a roof."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["color, tan, brown, orange", "roof, stairs, house"], "captions_pred_pc": ["above a black and white illustration of an office chair", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a low poly of a plant on a white object, resembling a paper or plastic bag.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["d49d8ed244094349a99e4faca05e0690", "a17477b445b3443189dad22f768b888b"], "properties": ["low poly, plant, white", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a plant growing out of a rock", "a 3d model of a small building with a balcony"], "question": "which object has a roof", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", "a white teapot with pink flowers and a handle."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "f6c5e8931d164979a71914127c7e5438"], "properties": ["background, color, white", "color, white, handle"], "captions_pred_pc": ["a black line on a white background", "a black and white dots on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a white tea kettle with a black handle and floral design"], "question": "which object is white", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", "a white of a spaceship and building."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["background, color, white", "image, building, spaceship"], "captions_pred_pc": ["a black and white image of a cat's head", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a white object on a gray background"], "question": "which image has a spaceship and building?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a black and gold pistol."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "402b57a5e32540b4938db1a9d3976220"], "properties": ["color, shape, and size", "color, black, gold"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a toothbrush"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a gun royalty-free 3d model preview no."], "question": "which object is black and gold?", "label": 1}, {"captions": [" a white and blue building with a black roof.", " a house with a wooden-framed roof structure."], "sample_ids": ["c893118316ee43e18322e5964b2806c5", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, blue, roof, black", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a person standing on top of a hill made up of tiny dots", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a white building on a gray background royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a 3d white axe, hammer, and spoon."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "96d127abd21049689918e671ec613ef8"], "properties": ["house, lake, pool", "axe, hammer, spoon"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a black lace belt on a white background"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe 3d model of an axe"], "question": "which object is not a house?", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a white of a man with arms outstretched."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["roof, metal, white", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a man with his arms outstretched"], "question": "which entity is not a white image?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["brown, paint, tape", "metal, legs, wheels"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of an old metal locker"], "question": "which object has legs", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "990f06da2ba4488da8371f68da6b4523"], "properties": ["roof, green, lawn", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d model of a house with a wooden roof"], "question": "which house has a roof truss structure?", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, green, handle", "hat, candy, strawberry"], "captions_pred_pc": ["of a small black object on a white background", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": [" of a black flat screen lcd monitor on a stand.", " a brick building with a roof structure and roof truss."], "sample_ids": ["0cc63371c12344e892d1c7be5a9eb782", "84e8acad28664a738df69d719df9e263"], "properties": ["screen, monitor, stand", "roof, structure, truss"], "captions_pred_pc": ["a black and white close-up of a television on a stand", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a computer monitor royalty free 3d model preview no. 2", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a room featuring a table and chairs, with blue and green walls.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["a49899d9a6194583b745e02f3654841e", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["color, table, chairs", "room, staircase, bus"], "captions_pred_pc": ["a close-up of a white object on a white background", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d rendering of a room with a white wall", "a 3d image of a building with a lot of debris"], "question": "which room has a staircase?", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " a futuristic white sports racing car."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["floor, staircase, railings", "color, white, futuristic"], "captions_pred_pc": ["a black and white drawing of a light switch", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a 3d model of a futuristic sports car"], "question": "which object is white", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "6b745457e06840119058883b35f78f58"], "properties": ["apse, roof, floor plan", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is not blue?", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a lamp, a syringe, a light pole", "building, plane, room"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["chair, table, refrigerator", "box, paper clip, lock"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a silver vintage racing car."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "9d8a1e856251435f9596c031005520bd"], "properties": ["color, black, white", "color, silver, vintage"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white image of a chair with dots all over it"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a vintage racing car"], "question": "which entity is not a vintage car?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "e602ac60041f4b4f84c044161e478781"], "properties": ["houses, trees, road", "floor, wall, roof"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a gray object featuring an axe, guitar headstock, and head.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["ac5c86f38c8e4570a7eefff0958185cf", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["Headstock, Guitar, Head", "building, plane, room"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an axe head", "a 3d model of a box with a lot of items inside"], "question": "which object has a room?", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["Drawer, Handle, Wood", "roof, color, yellow"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white drawing of a room"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is yellow", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["wing, knife, boat", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black umbrella on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, orange, white", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a sculpture on top of a pedestal"], "question": "which object has a pedestal?", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " of a white and wooden chest of drawers cabinet."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "d5722274fb094222aca90bb59f4dff09"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "chest of drawers, cabinet, white"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "a cross on a white background vector illustration of a cross on a white background royalty free stock illustrations"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d rendering of a white cabinet with a drawer"], "question": "which entity is a cabinet?", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "a beaded bag and necklace set featuring the word \"bonno\" and blue, white, and yellow patterns."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "15f0a38c3f134f2c801e92ac2ac5c124"], "properties": ["color, background, arrows", "color, pattern, word"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a black and white photo of a pair of scissors"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a beaded necklace with the word banned on it"], "question": "which entity has a word in it?", "label": 1}, {"captions": ["s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["402601779d1d4146b4cde106dfff1b27", "97e000ff41094665afd94ea565da8b13"], "properties": ["s, cat, fish, person, pig, bird", "roof, material, wood"], "captions_pred_pc": ["above a black and white photo of a toy octopus on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a snowflake in the air on a cloudy day", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " a wooden shed with a gray roof."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["s, chimpanzee, human, wolf", "roof, color, gray"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a shed with a gray roof"], "question": "which entity has a gray roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " of earphones with wire sculpture, musical instrument, and hanging light fixture on a white shelf."], "sample_ids": ["b5afccae993346079483507296fbb029", "4ec4c815539f4f3f8cc2272e09f2aa41"], "properties": ["shape is square, material is metal, color is rusty", "earphones, wire, instrument"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "of a curved metal rod on a white background"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of a wire sculpture on a white surface royalty free 3d model preview no.3"], "question": "which object is made of wire", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", " a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "40285a60f32749a8ae38957c7b073fe8"], "properties": ["color, yellow, white, wheels", "color, yellow, black"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a set of three black and white keychains on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3"], "question": "which object is yellow and black?", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["roof, color, blue", "building, material, stone"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with many windows", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen.", " of a white human skull with broken bone elements."], "sample_ids": ["c9b1c89380e947f58aa06eb56c93c6d8", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["- color is black and gold- shape is cylindrical- material is metal", "color, white, skull"], "captions_pred_pc": ["a black and white image of a circular object on a white background", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a black and white object on a gray background", "a 3d model of a human skull in white"], "question": "which entity is not a skull?", "label": 1}, {"captions": [" a city featuring various buildings, including one with a white roof and numerous white cubes, as well as a plane.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["a3c50635c2a04e548e57d4f027899131", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["building, roof, white, cubes", "image, city, spoon"], "captions_pred_pc": ["above a black and white image of a map", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a 3d model of a city on a white background", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["4a889132cc444d10bfcbf6c760984416", "db74ee1621464be1b164be26a1af050e"], "properties": ["a, color, white", "window, arches, wall"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk and chair", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small white building with stairs and shelves."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "9e1f64d4fd514059be934077717536dc"], "properties": ["color, shape, height", "building, stairs, shelves"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves", "label": 1}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a small wooden house with a green roof."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, skyline, buildings", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d model of a house with a ladder"], "question": "which building is green", "label": 1}, {"captions": ["a pair of yellow pliers.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, yellow, pliers", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- color is red, blue, pink", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a tree with a blue ball and a mushroom.", " a green mountain with trees and grass."], "sample_ids": ["4bb8528bd042471f8865cce122a03924", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["a, ball, mushroom", "mountain, grass, tree"], "captions_pred_pc": ["a black and white illustration of an airplane flying over a tree", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a tree with a ball on top of it royalty free 3d model preview no.2", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["3d printed white gear wheel model", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["d9aba59b3bc645f5926c8dbac67fa42d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color is white, material is 3d printed, object is a gear wheel model", "throne, stairs, tree"], "captions_pred_pc": ["a circular saw blade on a white background 3d illustration of a circular saw blade on a white background 3d illustration of a circular saw blade on a white background royalty free illustration", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a white background 3d printed gear on a", "a 3d model of a throne with a tree on it"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", "a 3d wooden toy castle with red and yellow towers, a red roof, and a man inside."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "311f6655ed854899b07ea10f3613ef7a"], "properties": ["size, material, color", "a, color, red"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white drawing of a wallet on a white background"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a 3d model of a castle with two towers"], "question": "which object is made of wood", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["green, hat, cream", "table, bench, deer"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": ["an orange of a forklift truck in a parking lot.", " a small building with windows and a roof."], "sample_ids": ["32d757fbd29640ffb5aab34925525a29", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["orange, forklift, parking lot", "roof, windows, building"], "captions_pred_pc": ["a black and white illustration of a cell phone", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white photograph of a forklift", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a white lighthouse building with a clock tower, rocket, and ladder."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "88eba412c78a4ced89eb857327653f6c"], "properties": ["color, red, blue, green", "lighthouse, building, tower"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a water droplet on a white background"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a white sofa on a white background"], "question": "which building has a clock tower", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " a two-story small apartment building with a roof."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["background, color, white", "two-story, roof, building"], "captions_pred_pc": ["a black line on a white background", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a long white plastic strip on a gray background", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color is white, yellow, plastic", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a white plastic container with a label on it", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, yellow, black", "box, paper clip, lock"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a large metal building with a roof and truss structure."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, pink", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a toilet", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a long metal fence"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" of a small white dollhouse featuring furnished rooms, including a bedroom with a bed and desk, and a bathroom.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f178fb523ad7421aaa90a92ee736ee00", "97e000ff41094665afd94ea565da8b13"], "properties": ["bedroom, bathroom, bed", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small room with a bed, desk, and chair", "a 3d model of the roof of a building"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a building with blue metal framing and structure."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "ce40210c2a7e49dfaebbd934ccec4eca"], "properties": ["color, light, jewels", "color, blue, structure"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of dots on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a building under construction"], "question": "which entity has a blue structure", "label": 1}, {"captions": [" a small house with a staircase, balcony, and wooden floor.", "a low-poly of a white, shattered sphere."], "sample_ids": ["e67e211004cb450cbaf8139dd74ba39b", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["floor, staircase, balcony", "sphere, color, texture"], "captions_pred_pc": ["a black and white drawing of a wallet", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a bench on a wooden floor", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["a featuring a black and white sailboat, a black and green bird, a triangular lamp, a helicopter, and a kite.", " a wooden staircase with a railing and table."], "sample_ids": ["a59efdbb28a241b8866bfc094c8c80b2", "956247bea850458199c651037d4b1d7f"], "properties": ["a, bird, lamp", "railing, table, staircase"], "captions_pred_pc": ["a silhouette of a person standing in the air", "above a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a futuristic sculpture", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a clay pot with holes in it."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["mossy, rock, grass", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a featuring a crocodile skull, various rocks, and a landscape with sand and grass."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "44c179bcfb4e49768b041c4a8184e885"], "properties": ["color, shape, and size", "a, landscape, sand"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white silhouette of a map on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a rock in the middle of the ocean"], "question": "which entity has a landscape with sand and grass?", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["house, roof, blue", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " of a wooden windmill with a red roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["size, color, shape", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a windmill on a gray background"], "question": "which entity is larger", "label": 1}, {"captions": [" of a white cube-shaped shelf", " a wooden cube."], "sample_ids": ["1fc0969de9bf47cab82cae4cc8fe6c2f", "ad3f96bc1c7e4aa88d71ae3dfafd0ad1"], "properties": ["shape is cube, color is white, material is wood", "shape is cube, material is wood, color is brown"], "captions_pred_pc": ["a black and white pattern of dots on a white background a black and white pattern of dots on a white background royalty free illustration", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white shelf on a gray background", "a 3d model of a wooden crate"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", "star wars stormtrooper "], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["image is rock formation with a white cliff and a rock", "a, color, white"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of a star wars stormtrooper"], "question": "which is not a white object", "label": 0}, {"captions": [" of a human bone", " of a deer and a crystal tree on an island, with a rock and bird nearby."], "sample_ids": ["371bc8ded342446d87f975c3df8e0d4f", "2ce5ec0844114576a247b1de2011e0c7"], "properties": ["a, b, c", "image is a deer and a crystal tree on an island, with a rock and bird nearby"], "captions_pred_pc": ["a black and white photo of a bone on a white background", "a black and white illustration of a flying saucer"], "captions_pred_image": ["a 3d model of a human femur bone on a gray background", "a 3d model of a deer standing on an icy island"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "bf18bfd89efd43389781050230467d58"], "properties": ["a, dress, flower", "Lights, number, five"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["stair, table, chair", "building, plane, room"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a small building with windows and a roof."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["color, shape, height", "roof, windows, building"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof?", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, roof, wall", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of a building", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a set of stainless steel shelves"], "question": "which roof is greener", "label": 1}, {"captions": [" a white motorcycle with wings.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, white, wings", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": ["white and yellow 3d object resembling a city model with a yellow light, featuring a wave-like shape and a plastic knife with a sticker.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["e56ced0c23474bef98adc2505127b8a6", "411c164757fc4de68dfecb35fa858223"], "properties": ["shape, color, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a pair of socks", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a close-up view of a plastic toothbrush on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": ["a featuring a chair, a building, a glass tower, and a throne made of money, with various unique elements such as a green roof and a computer chip.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["18d2e75f23474d7489a6d7d605dfc76d", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["throne, chair, building", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a building on top of a table", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["rusty, sink, graffiti", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a house with a pink roof.", " of a yellow metal locker with legs, wheels, and metal brackets."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "e3fde8fe782c41f0b141c9f1b8e13aa5"], "properties": ["color, roof, pink", "metal, legs, wheels"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of an old metal locker"], "question": "which object has wheels", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a large metal building with a roof and truss structure."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "b85a99699ccd4bcba213322113bb253d"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a long metal fence"], "question": "which entity has a roof with a truss structure?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " a red \"welcome to northwich\" billboard on a wooden base."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "225e4094141d416faba7c5598dc55ff8"], "properties": ["color, bowl, green", "base material is wood, color is red, message is welcome to northwich"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white illustration of a circular object with many small dots on it"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["hat, pants, shirt", "hat, candy, strawberry"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["structure, roof, pitch", "roof, trusses, beams"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of the roof of a building"], "question": "which roof is more complicated to build", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, screen, drawer", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a green pickle", " a pink, ear-shaped object."], "sample_ids": ["4c7904175d6d4676b73866c25110e8d3", "0e08d777c7b948a784dc15748e7b173f"], "properties": ["color is green, shape is cylinder, material is plastic", "shape is ear, color is pink, material is plastic"], "captions_pred_pc": ["of a black object on a white background", "a black and white illustration of a rock on a white background"], "captions_pred_image": ["a 3d model of a peanut on a white background royalty free 3d model preview no.3", "a 3d model of a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small white 3d boat model with a curved wing and knife.", " of a person in a green outfit, resembling a cartoon character."], "sample_ids": ["cafc467aff2643e8b70149c4944263ee", "839a873262a544c9906f3f5799ca4648"], "properties": ["wing, knife, boat", "a, outfit, green"], "captions_pred_pc": ["a black umbrella on a white background", "a person with arms outstretched 3d illustration of a person with arms outstretched on a white background illustration"], "captions_pred_image": ["a 3d model of a rowing boat royalty free 3d model preview no 3", "a person jumping on a trampoline in slow motion"], "question": "which entity is a person?", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["color, tan, brown, orange", "roof, color, yellow"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a room"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of a table and chairs on a white background"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", "a white of a man with arms outstretched."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["arm, light, sign", "image, color, white"], "captions_pred_pc": ["above a black and white image of a skateboard", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d model of a man with his arms outstretched"], "question": "which image is black and white?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["sandbox, sand bucket, wooden blocks", "water, boat, rock"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a large building featuring stairs, a clock tower, a balcony, and a roof.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["e7c78316f9cb4b8aad57a9c933f5278b", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["building, roof, balcony", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white illustration of a group of dots in the shape of a square on a white background royalty free illustration", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a building with a clock tower", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "7f8942ef51dd4246993a587a12df168c"], "properties": ["color, door, window", "house, yard, surrounding buildings"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["color, light, jewels", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["- color is white - shape is box - material is plastic", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a large flying ship, a mountain range with a central lake, and a small island resembling hawaii.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["4d613d2057454e719bcae7f8cf05210a", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, island, resembles, hawaii", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a landscape in black and white 3d model of a", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a brick building with a roof structure and roof truss."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "84e8acad28664a738df69d719df9e263"], "properties": ["color, roof, block", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a brick building with a roof"], "question": "which building has a roof structure and roof truss", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["Steel, Color, Yellow", "building, material, stone"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a large house with a roof on a platform."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof truss, insulation, suspended ceiling", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a snowy small village with farm buildings and a fence.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["6bb669534ccc434f9ab4d7b39bae3510", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["building, fence, snowy", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a boat on the water", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a small village in the snow royalty free 3d model preview no. 3", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house featuring a green roof and red frame.", " a small house with a roof."], "sample_ids": ["00d9a408067d46afa127a404f63b4f65", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["color, roof, green, frame, red", "roof, house, small"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of a building with a metal roof", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" of a city map", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["1c498634f9ef42e6b686ee7370aaca26", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["location, scale, type", "color, frame, shape"], "captions_pred_pc": ["a line of black and white dots on a white background", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d printed map of london royalty-free 3d model", "a 3d model of a building structure"], "question": "which entity is a building structure?", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["a, bird, hook", "building, plane, room"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["building, tree, plane", "roof, structure, greenhouse"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a spider-like creature with long arms and legs."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["earbuds, light, ring", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a woman's chest"], "question": "which entity has a teddy bear?", "label": 1}, {"captions": [" a building with a purple roof, featuring a ceiling with wooden beams.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["b0cb5cd2fdca4bd5bdf96dd5c0cc13b5", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["roof, purple, beams", "a, material, clay"], "captions_pred_pc": ["the letter l made of snowflakes on a white background royalty free illustration", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the roof structure royalty free 3d model no.", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a featuring a running mario character, a jumping black bear, and a person jumping and running in the air, with a bear holding a baseball bat.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["5f46ebb58caa4383b5950c2022d2ffd6", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["a, character, mario", "Wheels, laptop, robot"], "captions_pred_pc": ["for a black and white sculpture of a person", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a cartoon character jumping in the air", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["a train, a ship, a boat", "lizard, rock, stuffed animal"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a submarine", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", "a 3d white cube featuring a hole, wheels, and a diamond."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "e44009d33258425e8efedfbc6823bf70"], "properties": ["color is white, material is plastic, shape is tube", "- color is white- shape is cube- material is plastic"], "captions_pred_pc": ["a black and white image of a broom on a stand", "for a black and white image of a toothbrush in the shape of a toothbrush"], "captions_pred_image": ["a white object on a gray background", "a 3d model of a white cube"], "question": "which object is white", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a potted plant on a wooden table or shelf."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["roof, truss, lamp", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" of a bow and arrow set", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["59388b76417a4ed992e0566afc7e66d8", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["arrows, bow, set", "roof, color, yellow"], "captions_pred_pc": ["for a black and white illustration of a bee", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bow and arrow", "a 3d model of a house with a roof"], "question": "which object has a roof", "label": 1}, {"captions": [" of a tv stand/shelf", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["83e82604e19342c3bee1ef59426d8e2b", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["size, material, color", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white illustration of a person sitting on a bench", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d rendering of a flat screen television on a shelf", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a wooden shed with a gray roof."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["ceiling, beams, light", "roof, color, gray"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, white, red, pink", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a 3d yellow plastic object featuring a cube with a hole, a lid, and a ball.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["7ff3c8f9ab7c49fe93b93130e25fcc4a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color, material, shape", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white photo of a pair of earrings", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a piece of paper"], "question": "which entity is a mountainous landmass", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a house with a roof and beams."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, material", "roof, beams, house"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a brick building with a roof structure and roof truss."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "84e8acad28664a738df69d719df9e263"], "properties": ["color, shape, material", "roof, structure, truss"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a brick building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["room, door, shelf", "building, material, stone"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an empty room", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a house with a green, wooden-structured roof."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, temperature, england", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a stone wall featuring carvings and statues."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "42f663140f834d1ab5f95cd8a5ad04b3"], "properties": ["roof, structure, wall", "carving, statue, wall"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a snowflake on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d image of a group of statues on a wall"], "question": "which wall is more decorative", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, shape, and size", "throne, stairs, tree"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a throne with a tree on it"], "question": "which entity has a throne", "label": 1}, {"captions": ["a white of a spaceship and building.", " a house with a green, wooden-structured roof."], "sample_ids": ["bf7d4277c9184d35abdec85bd5e25956", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["image, building, spaceship", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a tree", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" a green, spiked cube-like creature with eyes and a liquid-like texture.", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["0d2850148a154f3ca72d72817e120759", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["texture, spikes, eyes", "Eye color, Black, Purple"], "captions_pred_pc": ["a black and white drawing of a flower", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of an ice cube on a white background royalty-free 3d model preview no. 3", "a 3d model of a dragon with wings"], "question": "which entity has eyes that are black and purple?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["floor plan, bathroom, pool", "a, material, steel"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", "three white plastic containers with lids, including a box, a cylinder, and a bottle."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "67e8933750254cd8afddbf4865ae9e39"], "properties": ["box, cylinder, bottle", "box, cylinder, bottle"], "captions_pred_pc": ["a black and white dots pattern on a white background", "a black and white dots pattern on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a plastic bottle, a plastic container, and a plastic lid"], "question": "which entity has a box", "label": 0}, {"captions": ["a featuring a small boat, a rock with a hole, and blue water.", " a mouse wearing a top hat and a teddy bear holding a spoon."], "sample_ids": ["7ccdffc0d6404e8d9144260255ea0c5c", "887e410d07854396b563325ae1929583"], "properties": ["water, boat, rock", "hat, mouse, bear"], "captions_pred_pc": ["a black and white illustration of a surfboard", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d image of an animal laying on the ground", "a 3d model of a mouse wearing a top hat and bow tie"], "question": "which entity has a hat", "label": 1}, {"captions": ["a 3d object featuring elements of a green and purple lamp, a cartoon character with a light bulb, an ice cream cone, a syringe, a light pole, a pen with a face, and a doctor's stethoscope.", " a wooden object, including a board, piece of wood, box, and shelf."], "sample_ids": ["42d3657ce7bc4b5dbeb7f444e089a715", "c986212445a1466ca7be7b5ac6bea729"], "properties": ["a lamp, a syringe, a light pole", "wood, board, shelf"], "captions_pred_pc": ["a spoon with black dots on a white background spoon with black dots on a white background, 3d illustration royalty free stock photo", "a black and white drawing of snowflakes on a white background"], "captions_pred_image": ["a 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop on a white background 3d model of a lollipop", "a 3d rendering of a piece of marble"], "question": "which object has more wood", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a large house with a roof on a platform."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, ceiling, hole", "roof, platform, house"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a bottle containing pink liquid.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["176d3a863ccb48eeb84ab4e85054525d", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["color, bottle, liquid", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a bottle with bubbles", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a clear glass bottle on a gray background royalty free 3d model preview no 2", "a 3d model of a throne with a tree on it"], "question": "which entity has a tree?", "label": 1}, {"captions": ["a pair of yellow pliers.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, yellow, pliers", "lizard, rock, stuffed animal"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a pair of scissors on a white background", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a small white house with a roof."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["- material is plastic- color is green- shape is box", "roof, color, white"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a 3d model of a building with a white roof"], "question": "which entity has a roof", "label": 1}, {"captions": ["a yellow gold ring with an engraved quote, \"strength and love.\"", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["c155767db07340f2813c1b3dfa8d63b9", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["ring, material, gold", "metal, cross, clock"], "captions_pred_pc": ["of a black bangle bracelet on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a white wedding band with the words strength in weakness engraved on it", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a small building with windows and a roof."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["light switch, electrical outlet, furniture", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["- color is red, blue, pink", "lizard, rock, stuffed animal"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["hat, sword, gun", "door, lock, handle"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a black and white image of a door with a crack in it"], "question": "which entity has a lock", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "8cd3f5ff0fc041eca9a480faa6739480"], "properties": ["color, red, blue, green", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "in 15 words or less a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a roof structure"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, red, green, blue", "roof, color, yellow"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of a house with a roof"], "question": "which entity has a roof that is yellow?", "label": 1}, {"captions": [" a blue cityscape with water elements, featuring a lake and a boat.", " a large metal building with a roof and truss structure."], "sample_ids": ["6b4e3485993048ae86301a9720782751", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, lake, boat", "roof, truss, structure"], "captions_pred_pc": ["a black and white silhouette of an island on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of an island in the middle of the ocean royalty free 3d model preview no.2", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["building, stairs, shelves", "building, room, sky"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " a house featuring a wooden roof truss structure and ceiling with wood beams."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "990f06da2ba4488da8371f68da6b4523"], "properties": ["color, material, structure", "roof truss, beams, structure"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white illustration of a staircase in the shape of the letter 'l'"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a house with a wooden roof"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a large gray sphere", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["05a7c0e799e34e6998b11933dc743e03", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["size, color, shape", "cloak, sword, spear"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d model of the moon 3d", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": [" of a deer on a grassy hill.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["c039b44fc6c24034b87131ffb9be93c4", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["a, hill, deer", "cloak, sword, spear"], "captions_pred_pc": ["above a black and white image of two objects, one is a light bulb and the other is a toothbrush", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a deer sitting on top of a rock", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity is a pair?", "label": 1}, {"captions": ["a 3d printed model of a human skeleton foot and leg.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["6eea1e2ab3f645f6a4670cccbc85c908", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["for a black and white illustration of an owl in the shape of a heart", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of the foot and ankle bones royalty free 3d model preview no.", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small house with a tree, pool, and pond in a green and blue landscape.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e22489ba182f45cb81f0a83f22abe9bd", "b896a0898efe4059a776193c02132129"], "properties": ["house, tree, pool", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white image of a square with dots around it", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a house and a tree in a box royalty free 3d model preview no.3", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a wooden table and bench with a deer head and branch on it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["857d5391612349f4ae6cd854a1ec96de", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["table, bench, deer", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a table and chairs", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a bench and table with a deer's head on the table", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small orange piano with legs."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "d793de7c08d74414beeb8ea50f730705"], "properties": ["color, pier, stairway", "color is orange, size is small, legs"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of a bench"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a grand piano royalty free 3d model preview no 2"], "question": "which object has legs", "label": 1}, {"captions": ["three white paper windmills and a city model with a nativity scene silhouette.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["fa5ee6165f31465d9d75d046818f4006", "09f2cf267e954c958828325067bcc36a"], "properties": ["windmills, silhouette, city model", "island, terrain, rocks"], "captions_pred_pc": ["a black and white photo of a pair of sunglasses", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a cityscape on a white background", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more diverse terrain", "label": 1}, {"captions": ["a 3d white object featuring stacked racks, toy train, blocks, plastic pipes, lego pieces, and clothes hangers.", " a small wooden house with a green roof."], "sample_ids": ["c9c786f133f54d5e8d99bfc1a588df41", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["stacked, racks, toy train", "roof, color, green"], "captions_pred_pc": ["a black and white photo of a person standing in front of a white wall", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a ship's propeller on a white background", "a 3d model of a house with a ladder"], "question": "which object has a green roof", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " a white building, table, and various piles of paper, including a low-poly object."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "515210fb031f4ec89021ee8ce9e432e9"], "properties": ["graffiti, chinese writing, door", "- building is white, table is white, piles of paper are white"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white drawing of a piece of paper"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a snowy landscape"], "question": "which building is white", "label": 1}, {"captions": [" of a large pile of garbage.", " a long row of steel shelves in a warehouse, featuring a suspended scaffolding system."], "sample_ids": ["5d0d3fecdaf7482d83b509954a8f3bd0", "578fe7a7bd754b889be33aea99cf5050"], "properties": ["size, shape, material", "a, material, steel"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "above a black and white image of a rack with multiple shelves"], "captions_pred_image": ["a black and white photograph of a large piece of debris on the ground", "a 3d model of a large metal structure"], "question": "which object is made of steel", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " of a broken stone wall featuring an angel sculpture."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "aae2c42740a04fd68068f5707111d26f"], "properties": ["color, shape, and size", "image is a sculpture of an angel on a wall"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a toilet paper roll"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a marble sculpture of an angel"], "question": "which entity is a sculpture?", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["desk, chair, table", "lamp, harp, bowl"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " of a barrel and a cube together."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "f00b7661daf544b68cddf85d7d0308c7"], "properties": ["color, light, jewels", "a, barrel, cube"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white illustration of a 3d cube and a 3d sphere"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3"], "question": "which object is not a barrel?", "label": 0}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, white, black, white", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, stone, green, blue", "roof, color, yellow"], "captions_pred_pc": ["a circle of black dots on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the color of yellow?", "label": 1}, {"captions": [" of a mannequin head wearing a leather plague mask with straps.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["7821b30c2f8545ccac3e8b8a305d5082", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["mannequin head, plague mask, straps", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white image of a person's face with dots", "a black and white image of a cone shaped object"], "captions_pred_image": ["a plague doctor's mask on a mannequin head", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", " a red and white robot."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, shape, light", "color, red, white"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which entity is a red and white robot?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, white, material, ceramic", "low poly, plant, white"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": ["a white of a gun.", " a pink and white gun."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "4b13e0c43d6f41138e962e856c930034"], "properties": ["color, white, gun", "color, pink, white"], "captions_pred_pc": ["of a white object on a white background", "a black and white image of an object on top of a pedestal"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a white 3d model of a rocket launcher"], "question": "which gun is white", "label": 1}, {"captions": [" a modern white house with furniture and a black accent.", " a white building with a red roof."], "sample_ids": ["e5025a1ca0034b1aa97a0d42edeeae0f", "1f9580be397d4f948bf53fe1d5bc5756"], "properties": ["color, white, furniture, black", "color, white, roof, red"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or fewer a black and white drawing of a camera"], "captions_pred_image": ["a 3d model of a white building with black and white tiles", "a 3d model of an office building"], "question": "which building has a red roof", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a large house with a roof on a platform."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "cb3e09a301b746918a682a595037c7f7"], "properties": ["runner, bed, bench", "roof, platform, house"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["- color is white - shape is box - material is plastic", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white square with dots all over it", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d-rendered large stainless steel tank on wheels.", " a white castle composed of small cubes."], "sample_ids": ["160a243bf19741c4bd1c0ca9ab166851", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["size, material, wheels", "composed of, white, cubes"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a microscopic virus on a white background royalty free stock illustration", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a stainless steel tank on wheels", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": ["a 3d rendered coffee table with a black and brown base and a square ceiling light.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["27a365f067004d9c9c58e40c12827ce0", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["baseColor, black, brown, tableTopColor, brown, black", "throne, stairs, tree"], "captions_pred_pc": ["a black and white image of a patterned square on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a coffee table", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small yellow table with a staircase and a square ceiling light fixture.", "a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting."], "sample_ids": ["36f4d2cbd02345c6a77f7345ebde841c", "1be04fc7b47c47e9aaa9d2720af16b87"], "properties": ["table, staircase, light", "desk, chair, table"], "captions_pred_pc": ["a black and white photo of the letter g", "for a black and white image of a letter 'f'"], "captions_pred_image": ["a 3d model of a table with stairs", "a 3d model of a staircase in a room"], "question": "which entity has a desk and chair?", "label": 1}, {"captions": ["a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole.", " a spider-like creature with long arms and legs."], "sample_ids": ["cbbcf78010e34fa9b2e963452d081eb7", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["a, box, wall", "arachnid, leg, arm"], "captions_pred_pc": ["a black and white illustration of a flower", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d rendering of a white wall with two hooks hanging from it", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, red, blue, green", "flower, color, pink"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["e8100bef7b8a48d4ac79684bffb349ba", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["Wheels, laptop, robot", "paint, rust, concrete"], "captions_pred_pc": ["a black and white drawing of a cell phone", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a black and white image of a suitcase on wheels", "a 3d model of a concrete wall"], "question": "which object is more likely to be rusty", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", "a low poly of a deer, antelope, llama, capybara, and kangaroo."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "8b4c2e3e76524d85a9395ea1169d953e"], "properties": ["resembles, toy, bookshelf", "low poly, llama, kangaroo"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white image of an animal sculpture"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a 3d low poly animal standing on its hind legs"], "question": "which entity is a low poly of a deer", "label": 1}, {"captions": [" a witch wearing a black and white hat.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["1516bf87d6ee47fa9ede71bf77757b29", "745fed115c5343dab9d7f0c389c98902"], "properties": ["color, black, white", "costume, color, black"], "captions_pred_pc": ["a black and white illustration of a person wearing a wizard's hat and standing next to a snowflake", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a 3d model of a witch wearing a hat and carrying a broom", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" of an ancient stone bowl, wooden headpiece, and broken pottery pieces.", " of a small white building with stairs and a lid."], "sample_ids": ["d48b6ff03d6744eb921c41a4a05ff55d", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["bowl, pottery, headpiece", "building, stairs, lid"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a piece of ancient pottery", "a 3d model of a white box on a gray background"], "question": "which entity has a lid", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, number", "- material is stone, metal, concrete"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a black billboard with a blank screen on a metal stand."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "0c809d7bc6ff40b39d1d81bbb5f1b25e"], "properties": ["a, desk, laptop", "black, screen, blank"], "captions_pred_pc": ["a black and white image of a piece of furniture", "of a 3d illustration of a smartphone with a charging cable"], "captions_pred_image": ["a 3d model of an office desk on a white background", "3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard 3d model of a billboard"], "question": "which screen is blank", "label": 1}, {"captions": [" a blue and green sneaker with a yellow accent and blue sole.", " a small house on an island with trees, shrubs, a pool, and a lake."], "sample_ids": ["a2b393941a564397afb75f9ae8e70276", "c8331489fca44685bedfa1bdadf6ccb3"], "properties": ["color, blue, green, yellow, blue", "house, lake, pool"], "captions_pred_pc": ["a pair of sneakers on a white background", "a black and white image of a pattern on a piece of paper"], "captions_pred_image": ["a 3d model of a pair of sneakers royalty free 3d model preview no 2", "a 3d model of a large building"], "question": "which entity has a pool", "label": 1}, {"captions": ["a featuring a ship, large rock, stone slab, ruined building, stone floor, small stone structure, triangular object, and a piece of concrete.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["d83c5a2fd61c4e9f927d1d7b7c9e5aae", "09f2cf267e954c958828325067bcc36a"], "properties": ["ruined building, stone floor, small stone structure", "island, terrain, rocks"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a mountain", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a 3d model of a piece of broken pottery", "a black and white image of a piece of dirt on the ground"], "question": "which entity has more rocks", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, table, ceiling", "table, staircase, light"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a table with a staircase"], "question": "which table has a light on it?", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a stone wall with a window and a clock."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["a box, a cup, a bottle, a jar", "window, clock, wall"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of a brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["ceiling, beams, light", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["- material is wood, metal, metal", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white image of a cone shaped object"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a futuristic space station featuring a bench, computer desk with a laptop, small coffee machine, printer, and computer monitor.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["9b8e2f9070b24956a343a01a5fabdf03", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["computer desk, laptop, monitor", "roof, color, yellow"], "captions_pred_pc": ["a black and white silhouette of a traditional japanese gate", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic room with a bench", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a cube-shaped structure with a hole, featuring a bathroom scene with a person and a refrigerator.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["59fbbe87e3714115b3daca3159e7ffac", "d81d13362ae04371bb2cba46e4939665"], "properties": ["shape, bathroom, refrigerator", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a person standing in front of a toilet", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a black and white photograph of a piece of furniture in a room", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a bed featuring a blue mattress, blue and yellow pillows, and cushions.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["f7a59020e0764707b4aa354ed6e574cb", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, mattress, pillows", "hat, bow, arrow"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a television", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of the bed royalty free 3d model no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a small island with trees, mountains, a house on a hill, a large building, and a boat floating in the water.", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["37bdbc633c9545878a98ff47c3029e32", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a, island, water", "room, staircase, bus"], "captions_pred_pc": ["a black and white photo of a boat in the water", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d model of a building with trees surrounding it", "a 3d image of a building with a lot of debris"], "question": "which entity has a bus?", "label": 1}, {"captions": ["a featuring a tree stump, mossy wood, leaves, and a rock with grass.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["2527cd763a1a43f9870eb65e44e79f7d", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["mossy, rock, grass", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a person on a skateboard", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a piece of wood on a white background", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small gold and white sword with a handle.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["93011e8549874c54bdc488125e33bd9a", "b896a0898efe4059a776193c02132129"], "properties": ["color, handle, blade", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a black and white image of a diamond shaped object", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a knife on a white background royalty free 3d model preview no. 3", "a 3d model of an ancient statue"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, light, handle", "a, material, clay"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a tree with leaves and roots.", " a white castle composed of small cubes."], "sample_ids": ["1c8dbf1b79c44cd09369d54897402528", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["leaf, root, trunk", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a tree on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white image of a tree with roots", "a 3d model of a castle made of white cubes"], "question": "which entity is not composed of small cubes?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["low poly, llama, kangaroo", "house, fence, playground"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": ["a chocolate cake with a mushroom on top, displayed on a stand.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["728e8c8600584eacae80208bba7eece4", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["chocolate, mushroom, cake", "house, pool, balcony"], "captions_pred_pc": ["a black and white image of a toilet paper holder", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a mushroom on top of a cake royalty free 3d model preview", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, plane, sky", "roof, trusses, ladder"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" a small red and white spaceship.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["92cc1db70a894a23a884f043be2ca9da", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["color, shape, size", "cover, black, plastic"], "captions_pred_pc": ["above a black and white image of a drone in the air", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d model of a small, futuristic spacecraft", "a victor calculator on a white background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small, rocky island with diverse terrain and scattered rocks.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["09f2cf267e954c958828325067bcc36a", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["island, terrain, rocks", "roof, air conditioner, house"], "captions_pred_pc": ["above a black and white photo of a small island in the middle of a body of water", "a black and white illustration of a window"], "captions_pred_image": ["a black and white image of a piece of dirt on the ground", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["ceiling, light, desks", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a white 3d model of a city skyline"], "question": "which entity has a ceiling with holes", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["color, base, warning", "flower, color, pink"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower?", "label": 1}, {"captions": [" of a white and yellow knife with a wooden stick design.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["623bbf500b754624b535b79976c65616", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a black and white image of a tall pole with a blade on top", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", " a small purple plastic chair with holes."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["- material is stone - color is blue - shape is arrowhead", "color, plastic, purple"], "captions_pred_pc": ["above a black and white drawing of an arrow", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, screen, drawer", "table, staircase, light"], "captions_pred_pc": ["above a black and white image of a brush", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a table with a staircase"], "question": "which entity has a light?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "be1376023c274bdda995d54f3694157f"], "properties": ["roof, color, purple", "roof, beams, chimney"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a 3d model of a house with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white building, table, and various piles of paper, including a low-poly object.", " a small white building with stairs and a white table."], "sample_ids": ["515210fb031f4ec89021ee8ce9e432e9", "e30374c614f54fdb90f35b96b071349d"], "properties": ["- building is white, table is white, piles of paper are white", "building, stairs, table"], "captions_pred_pc": ["a black and white drawing of a piece of paper", "above a black and white drawing of a cat sitting on top of a letter 'e'"], "captions_pred_image": ["a 3d model of a snowy landscape", "a 3d model of a building with a staircase"], "question": "which building has stairs?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["room, bed, desk", "house, tree, pool"], "captions_pred_pc": ["a black and white drawing of a door", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": [" a blue character with arms outstretched.", " a white rocking chair with a curved backrest."], "sample_ids": ["e365358ce93a4ba2b1b9a48537b85477", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["color, shape, size", "backrest, curved, yes"], "captions_pred_pc": ["in 15 words or less a black and white image of a hexagonal ring", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a person standing with their back to the camera", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which entity is a chair", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["roof, air conditioner, house", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white illustration of a window", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of a white building on a gray background"], "question": "which entity has a kitchen?", "label": 1}, {"captions": ["3d rendered fish next to a cube.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["e9f8c643d45142cba30d76c608eeeb1a", "b896a0898efe4059a776193c02132129"], "properties": ["3D, fish, cube", "- material is stone, metal, concrete"], "captions_pred_pc": ["for a 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of a humpback whale 3d model of", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a fish and a cube on a black and white background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": ["a 3d mannequin wearing a striped scarf.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["38393ff312904bc9b31585b86c6632e3", "18e392c5360146eda498c5edab25b15c"], "properties": ["mannequin, scarf, color", "frame, beams, trusses"], "captions_pred_pc": ["of a white mannequin with a shawl on it", "a black and white drawing of a metal grate"], "captions_pred_image": ["a mannequin wearing a gray and white striped scarf", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a spiral staircase with a railing in a small building."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["color, light, jewels", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["roof, purple, suspended", "roof, brown, flat"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d rendering of a table and stool"], "question": "which roof is flat", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["color, roof, tray", "color, shape, color"], "captions_pred_pc": ["a black and white image of a metal object", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a large orange pumpkin."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["A, a, a", "orange, large, pumpkin"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a victor calculator with a black plastic cover and wall-mounted design."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "88ffa01f4fc34a8cb3e2a659e9e26125"], "properties": ["Drawer, Pattern, White", "cover, black, plastic"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "of a black and white image of a skateboard"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a victor calculator on a white background"], "question": "which object has a black plastic cover", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["d6087023095446fbadef1721478373b2", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["door, roof, window", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of an apartment building", "a black and white image of a stone sculpture"], "question": "which entity has a skull with a blue hat", "label": 1}, {"captions": ["a collection of various bottles, including accutane, vitamin c with a smiley face, activespray, jolt 3d, active kids, pills, and active junior, all containing different types of medicine.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["bf76d14fcac24579920aa326fa607a17", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["accutane, vitamin c, activespray, active kids, pills, active junior", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a microscopic image of a virus on a white background royalty free stock illustration", "a black and white illustration of a window"], "captions_pred_image": ["a bottle of activated charcoal pills on a white background royalty free 3d model no.", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a building?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["a room, a cake, a table", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a white 3d model of a city skyline"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a house with a green roof and lawn.", " a spiral staircase with railings."], "sample_ids": ["84adcf124ee742a49f7b1fe2104e072d", "7f24a859ed3d4b7c86f940d8cc11218f"], "properties": ["roof, green, lawn", "railings, staircase, spiral"], "captions_pred_pc": ["a black and white image of a knife on a white background royalty free illustration", "above a black and white drawing of a spiral staircase"], "captions_pred_image": ["a 3d model of a small apartment building royalty free 3d model preview no.2", "a 3d rendering of a staircase in a room"], "question": "which staircase has railings", "label": 1}, {"captions": ["a 3d white rectangular box with multiple compartments and a white lid.", " a house with a blue roof."], "sample_ids": ["966f6e9324a74d90831924895d3f2e8c", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["size, color, shape", "roof, color, blue"], "captions_pred_pc": ["a black and white illustration of a patterned rug", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white cardboard box on a gray background", "a 3d model of a house with a roof"], "question": "which entity is larger", "label": 1}, {"captions": [" a large house with a roof on a platform.", "a featuring a tv, chair, desk, laptop, man, couch, computer, and building."], "sample_ids": ["cb3e09a301b746918a682a595037c7f7", "d4208427217343e6af1b9b4a42a2f730"], "properties": ["roof, platform, house", "tv, chair, laptop"], "captions_pred_pc": ["a black and white image of a piece of paper", "for 3d illustration of a smartphone with a qr code on the back and a qr code on the front"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a person sitting on a couch"], "question": "which entity has a laptop", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a potted plant on a wooden table or shelf."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["yellow, table, roof", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a plant in a pot"], "question": "which table is on a shelf?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a building with yellow lines."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "f18e34286cf54876874f55ecc9018492"], "properties": ["houses, trees, road", "color, yellow, lines"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of a map"], "captions_pred_image": ["a black and white photograph of a small town", "a drawing of an airplane flying over a city"], "question": "which entity has more lines", "label": 1}, {"captions": [" of a black shark", " a small bedroom with wooden floors, walls, roof, and shelf."], "sample_ids": ["01b98721613b4c0ea23982c048955c1f", "e602ac60041f4b4f84c044161e478781"], "properties": ["black, mouth, teeth", "floor, wall, roof"], "captions_pred_pc": ["a black and white image of an object on a white background", "above a black and white image of a decorative metal bar"], "captions_pred_image": ["a 3d model of a black shark on a gray background royalty free 3d model preview no.2", "a 3d model of a room with wooden walls and a rug on the floor"], "question": "which entity has a roof?", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["roof, structure, greenhouse", "mountainous, landmass, state"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a staircase with a railing, table, and chair, featuring a square ceiling light.", " a spiral staircase with a railing and wooden floor in a house."], "sample_ids": ["51a0fba79bce472a8b827b78a110b77f", "40921ffd69db479294554d261daf3035"], "properties": ["stair, table, chair", "floor, railing, staircase"], "captions_pred_pc": ["for a black and white image of a toilet paper holder", "above a black and white image of a computer screen"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a spiral staircase"], "question": "which staircase has a railing", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["s, plane, house", "house, tree, pool"], "captions_pred_pc": ["a black and white silhouette of a map", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which entity has a tree", "label": 1}, {"captions": [" a wooden wall with a psychedelic circular pattern in red, green, and blue.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["5376daee484349378cb269a771ca5be0", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, pattern, wall", "roof, material, wood"], "captions_pred_pc": ["of a cross made of black yarn on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a black square with a circular pattern on it royalty free 3d model preview no.1", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a small island with a mountain, a lake in the middle, and a bird flying above.", "a 3d object featuring a white door, box, wall with hooks, plastic bucket, sheet of paper, curved wall, and paper with a hole."], "sample_ids": ["e51fead89ae64968b2ca7f4ccb6d3b97", "cbbcf78010e34fa9b2e963452d081eb7"], "properties": ["a, bird, lake", "a, box, wall"], "captions_pred_pc": ["a black and white photograph of a cloudy sky", "a black and white illustration of a flower"], "captions_pred_image": ["a 3d model of a mountain range in black and white", "a 3d rendering of a white wall with two hooks hanging from it"], "question": "which entity has a mountain?", "label": 0}, {"captions": ["white of a small stool and toilet paper holder.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["b7b32b690a2942878e3bd386de75d29d", "b896a0898efe4059a776193c02132129"], "properties": ["color, white, stool", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of an object in the shape of an open umbrella", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d model of a toilet paper holder royalty free 3d model preview no. 1", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["houses, trees, road", "building, material, stone"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a small town", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which building is made of stone", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a house with a roof and beams."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, shape, size", "roof, beams, house"], "captions_pred_pc": ["a black and white illustration of the letter u", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a building with a roof"], "question": "which entity is a house?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " a large white and metal building with a metal roof structure."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, orange, white", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a clay pot with holes in it."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["a box, a cup, a bottle, a jar", "hole, material, clay"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a barrel and a cube together.", " a potted plant on a wooden table or shelf."], "sample_ids": ["f00b7661daf544b68cddf85d7d0308c7", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["a, barrel, cube", "potted plant, table, shelf"], "captions_pred_pc": ["a black and white illustration of a 3d cube and a 3d sphere", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barrel and a box next to each other royalty free 3d model preview no.3", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["house, roof, toothbrushes", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " of a house with a roof structure, including a greenhouse."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "d7483292784b4e2b81df1c50f2a8664a"], "properties": ["s, stick, leaf", "roof, structure, greenhouse"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a house with multiple roofs and a suspended ceiling, featuring a white and purple tray.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["7907916e8f524df5b16eb566497db83e", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, roof, tray", "stair, table, chair"], "captions_pred_pc": ["a black and white image of a metal object", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a four-legged metal workbench with shelves."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["color, shape, and size", "Four legs, Metal, Shelf"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "for a black and white illustration of a cross"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["roof, color, pink", "island, mountain, grass"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass", "label": 1}, {"captions": [" of a toy gun with a green and white handle, featuring red and green lights.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["81f3fac6a5174827aa6cee5353ba6561", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, light, handle", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d printed model of a futuristic gun", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", "a featuring a flying plane, a destroyed plane, a large airborne ship, a building with a broken roof, and a broken piece of metal."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "4839e3b998ff4f6a84de50488ffae3ba"], "properties": ["roof, purple, suspended", "a, building, roof"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "for a black and white drawing of a person holding a pencil"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of the space shuttle"], "question": "which building has a broken roof", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "b896a0898efe4059a776193c02132129"], "properties": ["color, shape, material", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": ["a 3d white box with an open door and lid.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["4e95f0eca97f48d6af1888a8bacec9f6", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["- color is white - shape is box - material is plastic", "metal, cross, clock"], "captions_pred_pc": ["a black and white square with dots all over it", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white box with an open lid", "a 3d model of a piece of furniture"], "question": "which object is made of metal", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["A, a, a", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a black and white illustration of a bench", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "c3a82df41875402285608ef13a55df57"], "properties": ["balcony, stairs, house", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a small house with stairs and a roof."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["graffiti, bench, wall", "roof, stairs, house"], "captions_pred_pc": ["for a black and white image of a boat", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["low poly, llama, kangaroo", "houses, trees, road"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a black and white photograph of a small town"], "question": "which entity has a road", "label": 1}, {"captions": [" a cube with a wooden ball on top.", "a white 3d printed mickey mouse dice with various numbers and symbols on it."], "sample_ids": ["874f49c0bdd04c9cbcc54fcac1a337ad", "e2645ac544844f3c981203134a99c30c"], "properties": ["shape is cube, material is wood, color is white", "- material is plastic- shape is dice- color is white"], "captions_pred_pc": ["in one line a black and white image of a square made up of tiny dots", "a circle of dots with the number 2 in the center"], "captions_pred_image": ["a 3d model of a ball sitting on top of a cube", "a 3d printed white dice with a mickey mouse face"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small 3d-printed plastic model of a lighthouse.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["9910376529aa4724af8cc35eb2e51146", "97e000ff41094665afd94ea565da8b13"], "properties": ["size, material, lighthouse", "roof, material, wood"], "captions_pred_pc": ["a black and white photo of a water droplet", "a black and white drawing of a floor plan"], "captions_pred_image": ["a black and white photograph of a lighthouse model", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of an origami bird, featuring crane, dragon, frog, and mantis designs.", " a white rocking chair with a curved backrest."], "sample_ids": ["ca6ebf5742c7412699b92ce203ed54bb", "ee0deb90abf943b6894cd5ded1331213"], "properties": ["image size, image, origami", "backrest, curved, yes"], "captions_pred_pc": ["above a black and white illustration of an airplane", "a black and white illustration of a spiral pattern on a white background a black and white illustration of a spiral pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an origami dragon", "a 3d model of a white chair royalty free 3d model no. 3"], "question": "which object has a curved backrest", "label": 1}, {"captions": [" of a slice of bread and knife on a cutting board.", " a spiral staircase with a railing in a small building."], "sample_ids": ["0d5f5baa97754547ad517b694ea8edc7", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["bread, knife, board", "staircase, railing, building"], "captions_pred_pc": ["above a black and white illustration depicting a galaxy with a black hole in the center", "a black and white photograph of a light switch"], "captions_pred_image": ["a loaf of bread and a knife on a cutting board", "a 3d model of a staircase in a white room"], "question": "which object is in a building?", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["hat, food, bowl", "island, terrain, water"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d yellow robot with \"keep out\" written on it.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["663b8e6d4321490c92a4521bfd1ee763", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, text", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white drawing of a cell phone on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d model of a robotic arm royalty free 3d model preview no 3", "a 3d model of a small building with a balcony"], "question": "which entity is a building?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a small white barn with a metal roof."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "4ca3342a96824684845f7d0e062ab176"], "properties": ["background, color, white", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black and white illustration of a house made of dots"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a barn"], "question": "which entity has a white roof", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " of a person breaking through a brick wall."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["color, pier, stairway", "image, brick, wall"], "captions_pred_pc": ["above a black and white illustration of an open door", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a small white sight device.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["02e64f4820ca4719bace985bed1ead5d", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["white, sight, device", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a black and white drawing of a camera royalty free illustration", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a small white object on a gray background", "a white 3d model of a city skyline"], "question": "which image is a laptop?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["pos machine, credit card machine, cash register", "plane, ship, bird"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": [" a small white box with a shelf and a hole in it.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["d023ae78bc5a436eaba13c5ecdd45c56", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["a, hole, shelf", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a house in the middle of a field"], "question": "which entity is situated on a hill", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, white, black, white", "striped, white, black"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d model of a stack of books"], "question": "which object is white and black", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a multicolored cube representing a protein, featuring pink, yellow, red, and green hues."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "ee7c3113f2754f9cbe8980b1b7cc4eff"], "properties": ["lighthouse, fountain, crater", "color, shape, color"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a piece of fabric"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a red and blue metal-framed building structure with a steel house frame.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["a453ac83ef1e4f76bd7978451888d5f5", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, material, frame", "house, tree, hill"], "captions_pred_pc": ["of a black and white photo of a bike on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a metal frame structure", "a black and white image of a house in the middle of a field"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["brown, paint, tape", "door, roof, pool"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a door?", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["box, cylinder, bottle", "house, pool, balcony"], "captions_pred_pc": ["a black and white dots pattern on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a black and white striped fly in the air."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["color, white, yellow, roof, metal", "black, white, fly"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " an old building with windows, doors, and a balcony on a street."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "706fb93f885d42f594e0ebbba632d2f2"], "properties": ["A, a, a", "building, balcony, street"], "captions_pred_pc": ["a black and white illustration of a bench", "in 15 words or less a black ink brush stroke on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of an old building"], "question": "which entity has a balcony", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " of a wildebeest with horns, royalty-free."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "f01175538f7b4ffe8e2648d772e94c5c"], "properties": ["metal, legs, wheels", "image size, image, royalty"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white image of a dog jumping in the air"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of a wildebeest"], "question": "which image is royalty free", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, roof, block", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of the roof of a building"], "question": "which roof is made of wood", "label": 1}, {"captions": [" of a cup, bottle, and two metal buckets on a chessboard with a square ceiling light fixture.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["05b5a5da1a0a4c1fa60a9e5edd5c3424", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["cup, bottle, chessboard", "a room, a cake, a table"], "captions_pred_pc": ["a black and white 3d shape made up of small dots on a white background", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a chess set on a checkered board royalty-free 3d model", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a white hat, plastic cup with a lid, and a bowl.", " of a small island featuring a white lighthouse, a fountain, and a grassy crater."], "sample_ids": ["4a9d79b48eda4ad797a652ee01b1b026", "2a30e69498ff4fd1a33c1fb72286f553"], "properties": ["hat, cup, bowl", "lighthouse, fountain, crater"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a funnel", "a black beanie with sparkles on a white background"], "captions_pred_image": ["a white plastic hat and bowl on a gray background", "a black and white image of an object on top of a pedestal"], "question": "which entity has a lighthouse", "label": 1}, {"captions": ["a wooden-cased radio.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["c79d1be9b9a0478993bee32c63231a88", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["case, material, wood", "rusty, warning, metal"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a computer screen", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["3d model of a vintage radio 3d model of a vintage radio", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " of a person breaking through a brick wall."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["floor plan, heating system, ceiling light fixture", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a house", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a person breaking through a wall?", "label": 1}, {"captions": [" a house featuring a wooden roof truss structure and ceiling with wood beams.", " a small triangular-shaped object."], "sample_ids": ["990f06da2ba4488da8371f68da6b4523", "2d02985030804209a26c2c53b96a06f9"], "properties": ["roof truss, beams, structure", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of a staircase in the shape of the letter 'l'", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d model of a house with a wooden roof", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" of a cactus bunny planter with green leaves in a white bowl.", " of a hammer with a long metal handle."], "sample_ids": ["03614cc7ab6943e5857f17c5814da146", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, bowl, green", "handle, metal, long"], "captions_pred_pc": ["a black and white illustration of a dandelion in the shape of a dandelion on a white background illustration of a black and white illustration of a dandelion in the shape of a dandelion on a white background royalty free illustration", "a black and white toothbrush on a white background"], "captions_pred_image": ["3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3d model of a cactus in a bowl 3", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a large industrial building, including a factory and warehouse.", " a large building with a roof and windows."], "sample_ids": ["e3d0e407049c43f39c3aaa74667f56b1", "32d1fbd3ee91426882290305f70021e6"], "properties": ["building, type, factory", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a city skyline on a white background", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of an aircraft carrier on a white background royalty free 3d model preview no.2", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d cartoon character of a boy wearing a cowboy hat and blue pants.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["e94fb39e384f47ce87cce1930851b8f8", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["hat, pants, shirt", "cloak, sword, spear"], "captions_pred_pc": ["a square made of dots on a white background a square made of dots on a white background royalty free illustration", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a cartoon character wearing a hat", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["- material is wood, metal, metal", "striped, white, black"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a stack of books"], "question": "which object is made of white and black?", "label": 1}, {"captions": [" a black building.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["88702656e9684e1ea1a01dc7075c00e0", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, black, building", "striped, white, black"], "captions_pred_pc": ["a close up of a black and white rug on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a black 3d model of a house on top of a blueprint", "a 3d model of a stack of books"], "question": "which object is black and white?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a wooden table with a plant on it."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "3170a8fc0ebf4d71ab19c723be68987f"], "properties": ["room, bed, desk", "table, plant, wood"], "captions_pred_pc": ["a black and white drawing of a door", "a 3d model of the molecule on a white background a 3d model of the molecule on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a side table with a potted plant sitting on top of it"], "question": "which table has a plant on it", "label": 1}, {"captions": [" a building with blue lines and structure.", " a small white house with a roof."], "sample_ids": ["3bf337b699664ca0adf0817962d58718", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["color, shape, structure", "roof, color, white"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a building with a white roof"], "question": "which building has a roof that is white", "label": 1}, {"captions": ["a purple and blue sword with gold accents.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["4b91f68e3f6d469d9e357d6ca48fc30c", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, material, pattern", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a snowflake on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a sword with a long blade", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " of a black and white striped fly in the air."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["base, speaker, light", "black, white, fly"], "captions_pred_pc": ["above a black and white illustration of a clock", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": [" a white box with a gold handle, featuring a spring inside and functioning as a kitchen utensil holder or electrical box, with gold details.", " a small white building with stairs and shelves."], "sample_ids": ["ca275639b47a4093b4426d304695af7f", "9e1f64d4fd514059be934077717536dc"], "properties": ["holder, spring, box", "building, stairs, shelves"], "captions_pred_pc": ["in 15 words a black and white illustration of a square with dots on a white background abstract illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white background illustration of a black and white illustration of a square with dots on a white", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a plastic container with a spring inside", "a white 3d model of a building with stairs"], "question": "which entity has more shelves", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["lighthouse, fountain, crater", "stair, table, chair"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a staircase in a room"], "question": "which entity is indoors?", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", "star wars stormtrooper "], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, size", "a, color, white"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, white, material, ceramic", "roof, trusses, ladder"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a white vase on a grey background", "a 3d model of the roof of a building"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " a large house with a roof on a platform."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, fence, dog", "roof, platform, house"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a wooden bench with a metal frame."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "c27b018330da406680e58b94266c310b"], "properties": ["color, shape, and size", "frame, material, wood"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black line on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a bench"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small black box on a purple square.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["75f209e543c046669099190953616acc", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, size", "building, plane, room"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small black box sitting on top of a gray surface", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, color, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a house with a pink roof.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["color, roof, pink", "house, roof, blue"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a small house and barn"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a red circle, red and white arrow, mouse, and child's handwriting.", " a small white house with a staircase and a window."], "sample_ids": ["3c233f87bf264968a7f0660b9eac9e4a", "9eb88d17310d42dda9e17883e9922525"], "properties": ["red, mouse, handwriting", "house, staircase, window"], "captions_pred_pc": ["in 15 words or less a black and white image of a person's hand holding a pencil and drawing on a piece of paper", "a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration"], "captions_pred_image": ["a black and white drawing of a person's hand holding a pencil", "a 3d rendering of a small room with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "97e000ff41094665afd94ea565da8b13"], "properties": ["house, staircase, table", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of the roof of a building"], "question": "which house has a wooden roof structure with trusses and beams", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["house, plane, town", "house, plane, town"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 0}, {"captions": [" a white rock with green grass and moss on it.", " a white and black striped box resembling a stack of blocks or paper."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "78246d66fd2e4e1195bc4536f4037862"], "properties": ["color, grass, moss", "striped, white, black"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a black and white illustration of a pair of shoes on a white background vector illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a pair of shoes on a white background illustration of a"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a stack of books"], "question": "which object is white and black?", "label": 1}, {"captions": [" a large steel building with many columns and a pool.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["2ce649a4152a45bab60d8cafa1dcdeb3", "c3a82df41875402285608ef13a55df57"], "properties": ["building material, pool, steel", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a room with dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a concrete structure", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a set of yellow and black tools, including a magnifying glass, hexagonal keys, and screwdrivers.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["40285a60f32749a8ae38957c7b073fe8", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, yellow, black", "broom, shovel, fireplace"], "captions_pred_pc": ["a set of three black and white keychains on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d model of a pair of hexagonal keys and a pair of hexagonal scissors royalty free 3d model preview no 3", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a white staircase with a black railing in a room.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["d05c1b6047e145a4906c467a9ebe7430", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, white, railing, black", "stair, table, chair"], "captions_pred_pc": ["above a black and white image of a computer screen", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d rendering of a white staircase with a stainless steel handrail", "a 3d model of a staircase in a room"], "question": "which staircase has a table and chair?", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " a large house with a roof on a platform."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, roof, wooden", "roof, platform, house"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", "s of a laptop, printer, building, and small bathroom, along with a blue-lit box, white and blue truck, and hp color inkjet cartridge."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "747110c073314ee39ef2f4a8d63222da"], "properties": ["roof, trusses, beams", "s, laptop, printer"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white image of a pair of scissors"], "captions_pred_image": ["a 3d model of a roof structure", "a black and white image of an electronic device"], "question": "which entity has a roof structure with trusses and beams?", "label": 0}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof truss, insulation, suspended ceiling", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a white sphere with red eyes, black stripe, and red accents, resembling a helmet and ball.", " a colorful, wire-framed building structure resembling a cube."], "sample_ids": ["9d8b150bb78a41fcb1b0e632562931fa", "62b7c7c684044d998fee9ff35beeb79b"], "properties": ["color, shape, material", "color, frame, shape"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a dandelion on a white background royalty free illustration", "a black and white illustration of a building made up of dots"], "captions_pred_image": ["a 3d model of a white and black helmet", "a 3d model of a building structure"], "question": "which entity is a cube?", "label": 1}, {"captions": [" a castle on a hill in the middle of a field.", " a small wooden house with a green roof."], "sample_ids": ["5c6965cc9640450d91ba7d788d4e01fe", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["hill, field, castle", "roof, color, green"], "captions_pred_pc": ["a black and white photograph of a snowflake on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a castle on a hill", "a 3d model of a house with a ladder"], "question": "which building has a green roof", "label": 1}, {"captions": ["a white plastic bottle with a lid and cap.", " a rusty green metal box with a handle and a gun inside."], "sample_ids": ["f7e60e3a8ee84ad0954d288c3f1a7220", "76cfd0e88ce243d483919a018a4f1a9e"], "properties": ["color is white, material is plastic, shape is bottle", "box, handle, gun"], "captions_pred_pc": ["of a black circular object on a white background", "a black and white square with dots on a white background"], "captions_pred_image": ["a 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a grey background 3d printed bottle on a", "a 3d rendering of a metal box with a handle"], "question": "which object is made of metal", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "06a1c233fb444830b577aa06e2c01294"], "properties": ["face, handle, spout", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a small, circular object", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a white ceramic vase with a face on it", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": [" of a drum set", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["0bf7985bf5f94236b8b5c2965270e08b", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["size, color, material", "a, desk, laptop"], "captions_pred_pc": ["a black and white illustration of a toy tricycle on a white background royalty free illustration", "a black and white image of a piece of furniture"], "captions_pred_image": ["a 3d model of a drum kit royalty free 3d model preview no 1", "a 3d model of an office desk on a white background"], "question": "which object is not a drum set?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a robotic warrior with a sword."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "1c54afa26eb24e19b8660066718a9c5a"], "properties": ["A, a, a", "weapon, sword, robot"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white image of a small white object on a black surface"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a black and white image of a robot standing on a piece of paper"], "question": "which entity is a robot?", "label": 1}, {"captions": [" a row of houses featuring roof structures with green roofs and tiled roof slats.", " a large orange pumpkin."], "sample_ids": ["aef9b23a78a7450286a961cc13448d00", "684df453535b4ec28c4d5b64dcd60f59"], "properties": ["roof, green, tiled", "orange, large, pumpkin"], "captions_pred_pc": ["of a black and white photo of a decorative metal wall hanging", "a black and white circular pattern on a white background a black and white circular pattern on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a set of stainless steel shelves", "a 3d model of a pumpkin on a white background"], "question": "which object is orange?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "c3a82df41875402285608ef13a55df57"], "properties": ["door, lock, handle", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "c4e45a41478e42418399074b88d8920f"], "properties": ["apse, roof, floor plan", "axe, handle, wood"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a 3d model of a knife on a white background"], "question": "which object has a wooden handle", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["color, temperature, england", "table, bench, deer"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity has a deer head on it?", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, hat, glasses", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a black and white image of a person wearing a hat"], "question": "which entity has a hat", "label": 1}, {"captions": [" a small house with stairs and a roof.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["roof, stairs, house", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": ["a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight.", "star wars stormtrooper "], "sample_ids": ["46511f6f0fd04198b4005c159ac8ae40", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["cloak, sword, spear", "a, color, white"], "captions_pred_pc": ["a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a pair of armored knights standing next to each other", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, roof, wall", "a, material, clay"], "captions_pred_pc": ["a black and white drawing of a building", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a building structure", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["house, fence, dog", "plane, ship, bird"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a featuring a rock with a hole, a piece of metal, a knife, an arrow, and a person near a sand pit.", " a destroyed house and plane amidst a town with buildings."], "sample_ids": ["b57936676e9d43abb635fa1217992287", "0fd3ddca09194b8f94ef731af3b64a08"], "properties": ["a, hole, rock", "house, plane, town"], "captions_pred_pc": ["a black and white image of a lace belt", "above a black and white drawing of a piece of paper"], "captions_pred_image": ["a 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon's surface 3d model of the moon'", "a 3d model of a damaged building"], "question": "which entity has a plane?", "label": 1}, {"captions": [" a black and white striped box.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["00fa8accaaad44c780efe0c04ed4a12b", "b896a0898efe4059a776193c02132129"], "properties": ["color, black, white", "- material is stone, metal, concrete"], "captions_pred_pc": ["in 15 words or less a black and white pattern on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d image of a black and white striped surface", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house with a tree and a rock.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["9dc392a7f6e444e5bfb720684d6f864a", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["house, tree, rock", "lizard, rock, stuffed animal"], "captions_pred_pc": ["in 15 words or less the image depicts a white square on a white background with black dots all over the square stock illustration", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a tree in front of it", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a destroyed building and a damaged yellow-green machine.", " a diverse town featuring houses, buildings, people, animals, and desert elements."], "sample_ids": ["01406e7034fe4b7da32494c6cbf260f2", "436d6492fa06466680ecc82e5e07a7a0"], "properties": ["building, color, yellow-green", "house, building, people"], "captions_pred_pc": ["a black and white photograph of a piece of paper", "a black and white drawing of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged letter 'h' 3d model of a damaged", "a 3d model of a small town in the middle of a field"], "question": "which entity has more buildings", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "bd7aab78974643f5a0660c699daf8eb3"], "properties": ["graffiti, bench, wall", "roof, color, yellow"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a room"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of a table and chairs on a white background"], "question": "which structure has a yellow roof", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " a clay pot with holes in it."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["shape is cylinder, color is white, material is plastic", "hole, material, clay"], "captions_pred_pc": ["of a spike on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "white cylindrical 3d object resembling a roll of soap or tube of cream."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "d8d6903a2dd54b8e9aa12fad2155b372"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "cylinder, white, roll"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "in 15 words or less a black and white image of a dotted object on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a white pillow on a gray background"], "question": "which object is a cylinder?", "label": 1}, {"captions": [" of a house with a pink roof.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["color, roof, pink", "door, roof, pool"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a small purple plastic chair with four legs.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["1bb40ec897884b788dc0a2dac090f347", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["color is purple, material is plastic, number of legs is four", "rusty, warning, metal"], "captions_pred_pc": ["of a black and white image of a baby carrier", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white plastic chair", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a wooden shed with a gray roof.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["8b32e1ded62144768cd9ca8945fa8524", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["roof, color, gray", "rusty, warning, metal"], "captions_pred_pc": ["a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a shed with a gray roof", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " of a person breaking through a brick wall."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["structure, roof, pitch", "image, brick, wall"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a person breaking through a brick wall"], "question": "which image shows bricks?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["lamp, harp, bowl", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a wooden box with a lid"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "6b745457e06840119058883b35f78f58"], "properties": ["bed, desk, window", "roof, color, blue"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is blue", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a house with a green, wooden-structured roof."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["frame, truss, roof", "roof, color, green"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "6b745457e06840119058883b35f78f58"], "properties": ["painting, door, wall", "roof, color, blue"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white image of a building with dots"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house with a steeple on top"], "question": "which entity has a roof that is the color blue", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "f69264c33c324343b8a0a35d49ae0942"], "properties": ["color, temperature, england", "a city, train, dragon"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "a black and white image of a toy car"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a line drawing of an airplane flying in the sky"], "question": "which entity has a train?", "label": 1}, {"captions": [" a white plastic ring, resembling a car fender or mouth guard.", " a wooden billiard table with legs."], "sample_ids": ["f76460ad2a1a4fffb370d4556c405c6e", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["size, material, color", "legs, material, wood"], "captions_pred_pc": ["of a black plastic ring on a white background", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d rendering of a white plastic object on a gray background", "a black and white image of a pool table"], "question": "which object is made of wood", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["floor, staircase, table", "house, roof, wooden"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a black and white photograph of a birdhouse"], "question": "which entity has a wooden roof", "label": 1}, {"captions": ["a white 3d object featuring black and white patterns, resembling a combination of a dish, smoke detector, cake, bowl, alarm clock, and ceiling light.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["6a8cc820f00a4cfc954d56e2b1f6206a", "c4e45a41478e42418399074b88d8920f"], "properties": ["- material is plastic- color is white- shape is cylinder", "axe, handle, wood"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a plate", "for a black and white image of a bird's wing"], "captions_pred_image": ["a cake with a black and white design on the top of the cake", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d object featuring a rock, shell, piece of paper, and cat.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["53efab50e5a74e5ea165c763cea15be4", "bded33af34104b9686b845dfd18309a9"], "properties": ["a, rock, paper", "table, staircase, light"], "captions_pred_pc": ["for a flock of birds in the sky", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of a piece of paper in the shape of an island", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a building with yellow lines."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "f18e34286cf54876874f55ecc9018492"], "properties": ["color, horns, features", "color, yellow, lines"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a drawing of an airplane flying over a city"], "question": "which entity has lines that are yellow?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["a, head, bowl", "roof, trusses, ladder"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d model of the roof of a building"], "question": "which object has a roof?", "label": 1}, {"captions": ["a pair of green sneakers with orange laces and star designs.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["8cf3790e236a4d9ebe21b028646792b2", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, green, orange, star", "a, material, clay"], "captions_pred_pc": ["a black and white photo of a pair of shoes", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a pair of converse sneakers on a white background with stars surrounding the shoes", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a golden eagle with wings, available as a royalty-free emblem and crest.", " a potted christmas pine tree."], "sample_ids": ["069e0f65342444e6a1b6d1ffa483b503", "460c8f3034a844159826fac3b8aa35a5"], "properties": ["color, shape, size", "a, color, green"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of a snowflake on a white background"], "captions_pred_image": ["a 3d model of an eagle on a white background", "a 3d model of a christmas tree in a vase"], "question": "which entity is green", "label": 1}, {"captions": [" of a white chair with arms and legs.", " a wooden billiard table with legs."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["Arms, Legs, Color", "legs, material, wood"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a black and white image of a pool table"], "question": "which object has legs", "label": 1}, {"captions": [" of a black keyboard and ceiling light fixture.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["2378a9b64c054ddcaea234990a3bdba4", "bf18bfd89efd43389781050230467d58"], "properties": ["Black, keyboard, fixture", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a train on a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["3d model of a keyboard royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a small white house with a staircase and a window.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["9eb88d17310d42dda9e17883e9922525", "4389909667db472ea9a57a70eb940fa4"], "properties": ["house, staircase, window", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of a person standing in the middle of a crowd of tiny black dots on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d rendering of a small room with a staircase", "a black and white photo of a person's reflection in a mirror"], "question": "which building has a window", "label": 1}, {"captions": [" a long row of steel shelves in a warehouse, featuring a suspended scaffolding system.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["578fe7a7bd754b889be33aea99cf5050", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["a, material, steel", "- material is wood, rusty, horned"], "captions_pred_pc": ["above a black and white image of a rack with multiple shelves", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large metal structure", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["- color is red, blue, pink", "house, table, chair"], "captions_pred_pc": ["for a black and white image of an object on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a wooden staircase with a red and white railing and a red arrow."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "bb8bb4c9972d4b718b8bbd3ed5fdd14d"], "properties": ["house, color, white", "arrow, red, white"], "captions_pred_pc": ["above a black and white drawing of a bench", "above a black and white image of a square with a white cross in the center"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a spiral staircase"], "question": "which staircase has a red arrow?", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", " a large metal building with a roof and truss structure."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["of a black and white doily on a white background", "of a metal grate on a white background"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a black table with a metal shelf and folding door, featuring a hanging metal shelf from the ceiling.", " of a torn piece of paper, a hole in a wall, and a guitar with a sign on it, accompanied by a piece of metal, wood, and a large rock."], "sample_ids": ["c7fdb8d8f32b415cb5d2a9b41dd7d77b", "cc4ccf85d4c1425cb5975b8b5664d38a"], "properties": ["Black, Shelf, Metal", "paper, hole, sign"], "captions_pred_pc": ["a black and white drawing of a spiral staircase", "a silhouette of a map of the state of karnataka, india on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a black shelf with square tiles", "an image of a torn piece of paper in the shape of a map"], "question": "which entity has a sign on it", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " a house featuring a roof with truss system, framing, insulation, and a ceiling light."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "39876e69e3914d99a07e0dc59611c5c0"], "properties": ["earbuds, light, ring", "roof, truss system, framing"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white drawing of a window with dots all over it"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of the roof of a house"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["building, stairs, shelves", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a solar panel", "label": 1}, {"captions": [" of a wooden cabinet with drawers and filing features.", " a large, ancient stone building, resembling a roman structure and a medieval castle."], "sample_ids": ["abbc90bbd5474f73b16482ccd10e07ec", "f96abfafd34040a4bb09f5e2973403e9"], "properties": ["Cabinet, Drawers, Filing", "building, material, stone"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white drawing of the letter 'l' on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white wooden chest of drawers", "3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosseum 3d model of the colosse"], "question": "which entity is made of stone", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", "a white glass beer mug."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "1d686cbd3e9a4c629a43088658989286"], "properties": ["color, green, squirt gun", "color, white, glass"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " a clay pot with holes in it."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "hole, material, clay"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": ["a pixelated-textured purple sphere .", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["fb68393941804e769d5c9b372864a642", "4389909667db472ea9a57a70eb940fa4"], "properties": ["texture, color, shape", "building, window, skeleton"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a gray sphere on a white background", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a house with wooden framing and trusses."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["location, highway, train station", "frame, trusses, wood"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white drawing of a window"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", "a 3d object of a girl in a pink and purple dress, running and jumping with a backpack and a stick."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "034c093c73fd48758422feee0b10c5d8"], "properties": ["a, desk, laptop", "a, backpack, stick"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a bird in flight"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a pencil drawing of a person holding a sword"], "question": "which object has a backpack?", "label": 1}, {"captions": [" a house with a purple roof and glass block structure.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["e8ac7de076e54f07ace1a0ead07f6f57", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["roof, color, purple", "shape is cube, color is black, white"], "captions_pred_pc": ["a black and white image of a fire hydrant on a white background fire hydrant on a white background royalty free illustration", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a building with a glass roof", "a black and white 3d model of a building"], "question": "which building is a cube?", "label": 1}, {"captions": [" of a large pile of garbage.", " of a wooden windmill with a red roof."], "sample_ids": ["5d0d3fecdaf7482d83b509954a8f3bd0", "2ad8fca30285483d8b7f602fa078215d"], "properties": ["size, shape, material", "roof, color, red"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a white and black image of a snowflake in the shape of a snowflake"], "captions_pred_image": ["a black and white photograph of a large piece of debris on the ground", "a 3d model of a windmill on a gray background"], "question": "which object is made of wood", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, light, jewels", "sphere, pedestal, statue"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "c3a82df41875402285608ef13a55df57"], "properties": ["color, screen, drawer", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a yellow iced donut on a white plate.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["68aecbe5d8a04c2cab43aae6571070db", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, plate, yellow", "beige, white, round"], "captions_pred_pc": ["a black and white image of a hat on a white background", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a doughnut on a white plate", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" of a white plastic tube or metal bar, resembling a knife.", " a table with pillar-like yellow and white poles, featuring a wooden structure, large tent, glass roof, and a chandelier with numerous glass tubes."], "sample_ids": ["8fd3836862a44a8d8b4d224bfc30c2c3", "fa06167d83e54b05bdfbeeae2ca7c8a6"], "properties": ["a knife, blade, handle", "table, structure, roof"], "captions_pred_pc": ["a black and white image of a shelf with a white background", "a black and white image of a map with dots"], "captions_pred_image": ["a piece of white plastic on a gray background", "a 3d model of a building with many pillars"], "question": "which entity has a roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["color, tan, brown, orange", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", "a 3d white object resembling a sphere, frog, egg, hat, and shell."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "0a8e0b95d8ce43ee9159ad01d925aad8"], "properties": ["light source, fixture, color", "shape is sphere, color is white, material is plastic"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "a black and white illustration of a sponge in the shape of a sponge sponge black and white illustration of a sponge in the shape of a sponge royalty free illustration"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d sculpture of an apple on a white background"], "question": "which object is white", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", " a house with a green, wooden-structured roof."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["runner, bed, bench", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a house with a triangular roof"], "question": "which roof is green", "label": 1}, {"captions": ["yellow and white 3d corn on the cob model resembling a toothbrush.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["1fd0e7ffe26349da89815a6d4d6a189a", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, shape, material", "resembles, toy, castle"], "captions_pred_pc": ["a black and white illustration of a circle made up of tiny dots", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a corn on the cob 3d model of a", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond.", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["a452d5381dad4dc09f5ebe10635ae5fe", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["house, roof, green", "building, plane, room"], "captions_pred_pc": ["above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with a black roof", "a 3d model of a box with a lot of items inside"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, structure, wall", "structure, roof, pitch"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of the roof of a house"], "question": "which structure has a pitched roof", "label": 1}, {"captions": [" a white pendant floor lamp.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["073a3fb2e9bd42d1affed98ed2d64794", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["height, lamp, shade", "- material is wood, rusty, horned"], "captions_pred_pc": ["of a black circle on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a light bulb on a pedestal royalty free 3d model preview no.", "3d model of a plague doctor's mask"], "question": "which object is made of wood", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["house, roof, blue", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d rendering of a small white table with a chair"], "question": "which house has a table and chair?", "label": 1}, {"captions": [" a small house with stairs and a roof.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["e9305c80010f4e3b9de9789f01a9bee5", "f1b557775310478893242180defa4d80"], "properties": ["roof, stairs, house", "shack, roof, door"], "captions_pred_pc": ["above a black and white image of a square with dots all over it", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a podium on a wooden floor", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" of a wooden chair.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b2fc4bd184944704ad43d3a31817a676", "c3a82df41875402285608ef13a55df57"], "properties": ["wood, chair, seat", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a close-up view of the bristle brush on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a chair", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a small 3d purple teapot and elephant.", " a large metal building with a roof and truss structure."], "sample_ids": ["4a27592dc8164f709b44446ee11832c0", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, shape, material", "roof, truss, structure"], "captions_pred_pc": ["a black and white 3d illustration of an elephant's head on a white background 3d illustration of an elephant's head on a white background royalty free illustration", "of a metal grate on a white background"], "captions_pred_image": ["a white ceramic teapot on a gray background", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["house, fence, dog", "building, room, sky"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["- color is white- shape is cubes- number is 1", "rusty, warning, metal"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a small building with camouflage pattern in a field.", " of a small white building with stairs and a lid."], "sample_ids": ["0c75e4ce947a4c25ad1b7e5cb4e7a9a1", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["building, pattern, field", "building, stairs, lid"], "captions_pred_pc": ["in 15 or fewer words a black and white image of a couch", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small building in the middle of a desert", "a 3d model of a white box on a gray background"], "question": "which building has a lid?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a small purple plastic chair with holes."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["yellow, shape, wingspan", "color, plastic, purple"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", " of a white supreme logo t-shirt, low poly design."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "bea8441c08d94366b96b53775391d8e6"], "properties": ["color, white, background, gray", "color, white, logo"], "captions_pred_pc": ["above a black and white photograph of an object", "for a black and white image of a shirt with dots"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a white t-shirt with a supreme logo"], "question": "which entity is a white logo?", "label": 1}, {"captions": [" a large rock with a hole in it.", "a white of a man with arms outstretched."], "sample_ids": ["e627ae08f0d348709cdc5131a792ba75", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["size, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a person's face in the shape of a heart", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["black and white image of a rock on a piece of paper", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a dog jumping over rocks, accompanied by a green and black rectangle and a green square with a hole in it.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["aaa52f9a29c141549d8e71058175114d", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["color, shape, size", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white photo of a giraffe standing on its hind legs", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dog jumping over a pile of rocks", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["s, plane, house", "house, fence, dog"], "captions_pred_pc": ["a black and white silhouette of a map", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which entity has a fence", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, shape, poles", "island, terrain, water"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a 3d cartoon character wearing a hat and holding various items, such as a sword, gun, broomstick, and stick.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["9863dee114264b89a95dca4c78d08424", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["hat, sword, gun", "roof, structure, wall"], "captions_pred_pc": ["for a black and white illustration of a small monster holding a spoon in one hand and a cup of coffee in the other", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of a police officer holding a baton and wearing a hat and helmet", "a 3d model of a building with a roof"], "question": "which entity has a roof structure", "label": 1}, {"captions": [" of a wooden stand featuring two legs, six balls, and a row of teddy bears, resembling a puzzle toy, game board, and bookshelf.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["e36ba9c060cd49f48a0acc1790fcf049", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["resembles, toy, bookshelf", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white image of a book cover", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d rendering of a wooden display stand with six cups on it", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " of a character wearing glasses and a hat."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["background, color, white", "hat, glasses, character"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a person wearing sunglasses"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, pier, stairway", "house, tree, hill"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a house in the middle of a field"], "question": "which entity has a tree in front", "label": 1}, {"captions": [" of a lion statue", "a featuring a room with a staircase, a damaged bus and rv, two houses, a large white box, and destroyed buildings with debris."], "sample_ids": ["ef45a94abce44c8980363602489f218c", "a47dcf3d3cf34c58af17b6715d6f1232"], "properties": ["a, material, statue", "room, staircase, bus"], "captions_pred_pc": ["in 15 words or less 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustration of a jellyfish on a white background 3d illustr", "a black and white drawing of a room with dots"], "captions_pred_image": ["a 3d sculpture of a lion sitting on its hind legs", "a 3d image of a building with a lot of debris"], "question": "which entity is a room?", "label": 1}, {"captions": [" a large building with a roof and windows.", " a large house with a roof on a platform."], "sample_ids": ["32d1fbd3ee91426882290305f70021e6", "cb3e09a301b746918a682a595037c7f7"], "properties": ["roof, windows, building", "roof, platform, house"], "captions_pred_pc": ["of a black and white photo of a diamond buckle", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no.2", "a 3d model of a small house"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white of a small archway gate.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["a48aae47988c4daa9531e33b1e3085f8", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["image, color, white", "color, sphere, molecule"], "captions_pred_pc": ["above a black and white illustration of an arch", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a white arch", "a 3d model of a molecule in the shape of a pyramid"], "question": "which image is a molecule?", "label": 1}, {"captions": [" a wooden staircase and small table in a room with wooden floor and ceiling.", " a small wooden house with a green roof."], "sample_ids": ["c6b89316941b4d7c9562cd2ec0bf4706", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["floor, staircase, table", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of an object on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a boat on a wooden surface royalty free 3d model no.3", "a 3d model of a house with a ladder"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a pink butterfly with floral elements.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["4a57365a85194a188ac1bdaf5fe1c398", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, pattern", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white image of a knife on a white background", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["three petals of a flower laying on a gray surface", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "06a1c233fb444830b577aa06e2c01294"], "properties": ["pos machine, credit card machine, cash register", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, bird, green, yellow, blue", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white drawing of a bird's wing"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a building with yellow and white columns, wooden floor, and a ceiling featuring numerous yellow poles.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["1cf4b8f4e6014d36b6537c6ef52ccb96", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["floor, ceiling, poles", "house, pool, balcony"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a building with multiple levels", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": ["a pixelated of a striped brown and white coffee mug.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["656fca269cb042e68b1fb5b629bfa873", "c3a82df41875402285608ef13a55df57"], "properties": ["mug, color, brown, white", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a circle made up of many small dots", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a coffee cup with multiple layers", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", " a house with a blue roof, chimney, and wooden-beamed ceiling."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "b380dd4800124a8d96424a504eb0ec6a"], "properties": ["color, shape, gun", "roof, color, blue"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "of a white lace clutch purse on a white background"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a 3d model of a building with many windows"], "question": "which entity is a building?", "label": 1}, {"captions": [" a green and black robot with cube-like features.", " a small black, white, and orange walkie-talkie."], "sample_ids": ["7d963adb841f47a39cf3386182b1ccf3", "e098706085a44898abbd549693d12a64"], "properties": ["color, shape, material", "color is black, white, orange"], "captions_pred_pc": ["a black and white image of a bottle with dots on it", "of a white and black clutch with a flower design"], "captions_pred_image": ["a 3d model of a tower made from blocks", "a 3d model of a walkie-talkie royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a multicolored cube representing a protein, featuring pink, yellow, red, and green hues.", "star wars stormtrooper "], "sample_ids": ["ee7c3113f2754f9cbe8980b1b7cc4eff", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, shape, color", "a, color, white"], "captions_pred_pc": ["a black and white pattern of small dots on a white background a black and white pattern of small dots on a white background illustration", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a piece of fabric", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": [" of a white chair with arms and legs.", "a pixelated-textured purple sphere ."], "sample_ids": ["61ec56afad7a45deb99ccf1ab1bd2d73", "fb68393941804e769d5c9b372864a642"], "properties": ["Arms, Legs, Color", "texture, color, shape"], "captions_pred_pc": ["of a 3d rendering of a chair in the style of the 1920s and 1930s", "a black and white square made of dots on a white background"], "captions_pred_image": ["a 3d model of a white outdoor chair royalty free preview no 3", "a 3d model of a gray sphere on a white background"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", " a window with a colorful frame."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "59c7c35a04ce42dbb24e8f8e882c4127"], "properties": ["frame, beams, trusses", "frame, color, window"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a banner on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d rendering of a window in a wall"], "question": "which entity has a window with a colorful frame?", "label": 1}, {"captions": [" of a green box with four compartments", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, number", "a, material, clay"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " of a small white building with stairs and a lid."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["floor plan, bathroom, pool", "building, stairs, lid"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a wooden pirate chest with a metal roof."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "5720efe7e68e434fa244d4978e623114"], "properties": ["color, white, yellow, roof, metal", "metal, roof, chest"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white drawing of dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a wooden chest"], "question": "which entity has a metal roof", "label": 1}, {"captions": [" a stone arrowhead with blue crystals and ice-like features.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5f8c7eda0f464019a4acea243114555d", "bf18bfd89efd43389781050230467d58"], "properties": ["- material is stone - color is blue - shape is arrowhead", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of an arrow", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large piece of ice on a white background royalty free 3d model preview no 3", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " of a stone fountain with a lion statue, surrounded by an archway inspired by the arch of triumph."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "a72700696c3b44ef8101d1e71e914bc9"], "properties": ["s of, snowboard, shoes, mask", "lion, statue, fountain"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white image of a metal object"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d image of a lion statue on a wall"], "question": "which entity is a statue?", "label": 1}, {"captions": ["a featuring a green frog face, bunny head, dragon head, flower, monster with a tail, and a monster mask with an open mouth.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["127753bf17de4252aaa7ea88f274545e", "c3a82df41875402285608ef13a55df57"], "properties": ["face, mask, tail", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a 3d model of an orchid flower on a white background 3d model of an orchid flower on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a goat's head", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white bunk bed with a ladder.", " of a crab holding a rubik's cube."], "sample_ids": ["379f488d0624482694bbe150b7bc1059", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["bed, ladder, color, white", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["for a white square on a white background with a black square in the center", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["the bunk bed royalty free 3d model no. 3", "a black and white image of a crab holding a cube"], "question": "which entity is not a bed?", "label": 0}, {"captions": ["yellow metal barricade ", " of an ancient stone bowl, wooden headpiece, and broken pottery pieces."], "sample_ids": ["d40f286201584313bf014f9cdc533af3", "d48b6ff03d6744eb921c41a4a05ff55d"], "properties": ["color is yellow, material is metal, height is 0.5 m", "bowl, pottery, headpiece"], "captions_pred_pc": ["a white barrier on a white background", "a black and white illustration of a circle made up of many small dots"], "captions_pred_image": ["a 3d model of a metal barrier royalty-free 3d model preview no.2", "a 3d model of a piece of ancient pottery"], "question": "which object is made of pottery", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a flying bird, resembling a crow and a pigeon."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "5ec78c8b6ab54f739adb0b46d216a454"], "properties": ["yellow, table, roof", "bird, resembles, crow, pigeon"], "captions_pred_pc": ["a black and white drawing of a floor plan", "above a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a bird in flight"], "question": "which entity is a bird?", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor plan, heating system, ceiling light fixture", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small house with a tree, pool, and pond in a green and blue landscape."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "e22489ba182f45cb81f0a83f22abe9bd"], "properties": ["shape is box, color is white, door is present", "house, tree, pool"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "in 15 words or less a black and white image of a square with dots around it"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of a house and a tree in a box royalty free 3d model preview no.3"], "question": "which house has a tree", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, color, pink", "house, staircase, table"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" a house with a pink roof, truss, and a square white ceiling lamp.", " a spiral staircase with a railing in a small building."], "sample_ids": ["91b2e9e4660946f5b4808a18b5323b69", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["roof, truss, lamp", "staircase, railing, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", " a broken human skull and stone bowl."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "f7f1d8f726cb4ec6bda791aae99a10c2"], "properties": ["- material is plastic- color is green- shape is box", "skull, bowl, human"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white illustration of a toilet bowl with dots all over it"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a ceramic bowl with a large crack in the middle"], "question": "which object is made of stone", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " a house with wooden framing and trusses."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["rusty, sink, graffiti", "frame, trusses, wood"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "a black and white drawing of a window"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "06a1c233fb444830b577aa06e2c01294"], "properties": ["color, shape, size", "house, tree, hill"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a human bone structure", "a black and white image of a house in the middle of a field"], "question": "which entity has a hill?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", " a small house with a roof and ceiling-mounted air conditioner."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "6965067ea9e34357a7af21a2f078fbac"], "properties": ["color, white, red, pink", "roof, air conditioner, house"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white illustration of a window"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d rendering of a small house with a covered porch"], "question": "which entity is a house?", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " of two rocks with ice elements."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["room, bed, desk", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a spiral staircase with a railing and wooden floor in a house.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["40921ffd69db479294554d261daf3035", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["floor, railing, staircase", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of a computer screen", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a spiral staircase", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["black, roof, green", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small purple plastic chair with holes."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, shape, and size", "color, plastic, purple"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a yellow boat/submarine with a red arrow and light.", "a white of a man with arms outstretched."], "sample_ids": ["9b9c31fe4e6b4004a4cb34176f329c04", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, light", "image, color, white"], "captions_pred_pc": ["a black and white image of a letter 'l' on a white background", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d rendering of a table with an object on it", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" a robot with a red, bloody head and red eyes, accompanied by a small toy rocket and a white and red spaceship.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["dd61409988b7464ab025cc1c15f12f43", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["red, eyes, rocket", "houses, trees, road"], "captions_pred_pc": ["of a black and white image of a clock", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a futuristic motorcycle helmet on a white background", "a black and white photograph of a small town"], "question": "which entity has a road?", "label": 1}, {"captions": ["3d snowman model with a wooden stick.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["44f41039246a4df59027c38023d5a576", "c3a82df41875402285608ef13a55df57"], "properties": ["- material is wood - color is white - shape is 3d", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a black dots on a white background a", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d snowman royalty-free 3d model preview", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a white 3d dragon-bat hybrid with wings.", "a 3d object featuring a fish with a long nose and open mouth, a cat head with red, yellow, and green stripes, a frog with a long snout, a white horse with green and yellow stripes, and a wolf mask."], "sample_ids": ["8cb88b6f02c549ee812e092a2e948e1c", "276699bb0f974c47b4e2954cfcd1651c"], "properties": ["wing, color, white", "a, color, white"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white image of a skull in the shape of a butterfly"], "captions_pred_image": ["a white 3d model of a bat flying in the air", "a 3d model of an animal with a long nose"], "question": "which entity has a white horse?", "label": 0}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["building, ceiling, kitchen", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a white 3d model of a city skyline"], "question": "which image shows a laptop?", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["ceiling, light, desks", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a white building on a gray background"], "question": "which entity has a kitchen?", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["color, shape, material", "color, background, white"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "an image of a white background with a few small cubes on it"], "question": "which entity is a solid color?", "label": 0}, {"captions": [" a house with a green, wooden-structured roof.", " a building with a purple, glass roof and a suspended ceiling featuring beams."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "a54c746bb2644e3ea4e53ee65e32df64"], "properties": ["roof, color, green", "roof, glass, purple, ceiling, beams"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "the letter 't' is made up of tiny white dots on a white background"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a building with a roof"], "question": "which roof is made of glass", "label": 1}, {"captions": [" of a house with a roof and a room featuring a pink ceiling.", " a house with a green, wooden-structured roof."], "sample_ids": ["9c9f4e7f7c9442df99a9dc41870083c5", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["roof, room, ceiling", "roof, color, green"], "captions_pred_pc": ["a black and white drawing of the letter 'l' on a white background", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a building with a roof and walls", "a 3d model of a house with a triangular roof"], "question": "which roof is made of wood", "label": 1}, {"captions": [" a house featuring a pink roof with purple tiles, wooden beam ceilings, and interior elements including a bed with a purple frame and a table with purple slats.", " a small white house with stairs and a spiral staircase, featuring a white table and ceiling light."], "sample_ids": ["09561cc68a84496bb14b75c0f516f089", "e9e1cc7fae22458197a61f43a9c355f4"], "properties": ["roof, color, purple, beams, wooden, bed, frame, table, slats, purple", "house, staircase, table"], "captions_pred_pc": ["a black and white image of a square with a pattern of dots", "above a black and white photograph of a dog in a frame"], "captions_pred_image": ["a 3d model of a table with a grid pattern", "a 3d model of a small house with a spiral staircase"], "question": "which house has a staircase?", "label": 1}, {"captions": [" of a hans wegner modern lounge chair in black and wood.", "a white of a woman with her arms outstretched."], "sample_ids": ["133c1231b9de4cc19d470bd6182c3a6e", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, material, shape", "image, color, white"], "captions_pred_pc": ["above a black and white illustration of a chair", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a modern lounge chair royalty free 3d model preview no 2", "a 3d model of a woman with her arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": ["a featuring a lamp, harp, white bowl, and white curved wall.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["55bcec23e1b34f0d9d748b4dcc3ea123", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["lamp, harp, bowl", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a curved line", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a harp in a white room", "a 3d model of a harp in a white room"], "question": "which entity has a lamp", "label": 0}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, trusses, beams", "roof, color, yellow"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, eagle, wood", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a large bird with a nest and a piece of wood.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["839f4875365a4fbab4b57790b102ff7b", "d49d8ed244094349a99e4faca05e0690"], "properties": ["bird, nest, wood", "low poly, plant, white"], "captions_pred_pc": ["a black and white map of malaysia on a white background", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bird in mid-flight", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, truss, structure", "roof, structure, suspended"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d model of a house with a metal roof"], "question": "which roof structure is more complicated", "label": 1}, {"captions": [" a blue and white building structure with a table and suspended ceiling.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["fc63507c452c4a4b89f614f2b8bff76a", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, table, ceiling", "torso, breasts, pattern"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a room", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" a small house on an island with trees, shrubs, a pool, and a lake.", "a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart."], "sample_ids": ["c8331489fca44685bedfa1bdadf6ccb3", "0e20c8a7599d43128d078d9a0973b5f9"], "properties": ["house, lake, pool", "blue, yellow, frog"], "captions_pred_pc": ["a black and white image of a pattern on a piece of paper", "of a black and white photo of a chaise lounge"], "captions_pred_image": ["a 3d model of a large building", "a 3d model of a piece of furniture"], "question": "which entity has a frog?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", "a black and white of a knife/sword with a handle."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["color, white, material, ceramic", "image, color, black and white"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "of a black and white knife on a white background"], "captions_pred_image": ["a white vase on a grey background", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": ["a white 3d printed model of a multi-purpose vehicle.", "a wooden tower made of stacked blocks with holes in them, resembling a toy castle."], "sample_ids": ["0b4007e9c2fd437c83c0e8d7ab471573", "da8b5d21da9b4037982f29383d60b100"], "properties": ["color, material, size", "resembles, toy, castle"], "captions_pred_pc": ["transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee 2018 transformers bumblebee", "a black and white drawing of a pair of scissors"], "captions_pred_image": ["a 3d model of a small white machine on a gray background", "a 3d model of a tower made out of blocks"], "question": "which entity is made of wood", "label": 1}, {"captions": [" of a white plastic bar, resembling a shelf or towel rod, with a metal light fixture.", " a black triangular metal object with a clock and cross on it, and a small machine on top."], "sample_ids": ["f84dec547a3d4710b48db11fc9fa489a", "b198a81dc41c4fde8be3ca51c3b0e676"], "properties": ["light source, fixture, color", "metal, cross, clock"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "above a black and white image of an object on a white background"], "captions_pred_image": ["a 3d rendering of a white object on a gray background", "a 3d model of a piece of furniture"], "question": "which object has a clock and cross on it", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house with a roof."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "9578e8de15ec44ce802072aaa4df3910"], "properties": ["roof, purple, suspended", "roof, house, small"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "above a black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and white photograph of a small black and"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a small house"], "question": "which house has a roof", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "aef9b23a78a7450286a961cc13448d00"], "properties": ["A, a, a", "roof, green, tiled"], "captions_pred_pc": ["a black and white illustration of a bench", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a set of stainless steel shelves"], "question": "which entity has a green roof", "label": 1}, {"captions": [" of a purple laundry rack with multiple lines resembling wires.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["1f0dce1431a842b8bdb24ac4dd05f386", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, material", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white image of a metal structure", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a wire rack on a white background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" of a yellow and black wasp, available in 3ds max, obj, fbx, and c formats.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["6a4b9e9fce7a4a2486fcdc45363f48c2", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["3ds max, obj, fbx, c", "flower, color, pink"], "captions_pred_pc": ["a black and white insect on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a black and white striped mosquito", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": ["a white 3d printed ring with a bow, snake design, and two arms.", " a small white building featuring a green drawer, white curved wall, kitchen sink, and windows, resembling a floor plan of a gym."], "sample_ids": ["1fa054d12a084b7786d1185e0dc8787c", "b494049bb15440949e465d54a72b2f02"], "properties": ["color, material, shape", "building, floorplan, gym"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a virus on a white background stock illustration", "above a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d printed ring with a unique design", "a 3d model of a white building with two floors"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a green box with four compartments", " of a wooden shelf featuring a laptop, sand dune, and ceiling with holes."], "sample_ids": ["85599667bbcf4d7aaeaa11251be6280b", "6192773417e04fa49d2bf8b9eed20640"], "properties": ["color, shape, number", "image is a shelf, laptop, sand dune"], "captions_pred_pc": ["a group of black dots on a white background, arranged in the shape of a sofa", "above a black and white image of a person sitting on a bench"], "captions_pred_image": ["a 3d rendering of a black box with four compartments", "a white 3d model of a city skyline"], "question": "which entity is a shelf?", "label": 1}, {"captions": ["a 3d object featuring a flat roof with blue and white pattern, a purple and white bench, a blue and purple striped runner, a bed with blue and purple stripes, blue and white striped paper, a bench with a blue and purple pattern, and a ceiling light fixture with wooden slats.", "a featuring a boat, table, chairs, umbrella, and solar panel."], "sample_ids": ["28d0cf71ed684dcb87b2c9b2744c3633", "0f0eb3a198d341d28f809b6d7634be8a"], "properties": ["runner, bed, bench", "boat, table, chairs, umbrella, solar panel"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a creative black and white drawing of a snowflake on a white background royalty free illustration", "a black and white illustration of a boat with an umbrella"], "captions_pred_image": ["a 3d model of a long, curved structure", "a 3d model of a boat, a table, chairs, and an umbrella"], "question": "which entity has a boat", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", " a woman in a black dress with wings and shoes, featuring a spider and robot elements."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "745fed115c5343dab9d7f0c389c98902"], "properties": ["a, bird, hook", "costume, color, black"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white illustration of a bumblebee on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a person wearing a futuristic costume"], "question": "which costume is black", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "20a02705a66f460492e07345e84a62ed"], "properties": ["A, a, a", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which entity has a box", "label": 1}, {"captions": [" a large stone bowl with a hole in it.", " a white castle composed of small cubes."], "sample_ids": ["33dda0d266df43f98145f728f6f49291", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["size, material, shape", "composed of, white, cubes"], "captions_pred_pc": ["a black and white illustration of a dotted circle on a white background", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a ceramic bowl with a hole in the middle", "a 3d model of a castle made of white cubes"], "question": "which object is composed of small cubes", "label": 1}, {"captions": [" a pink-framed building structure with beams and trusses.", "a white glass beer mug."], "sample_ids": ["18e392c5360146eda498c5edab25b15c", "1d686cbd3e9a4c629a43088658989286"], "properties": ["frame, beams, trusses", "color, white, glass"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a building under construction", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "white butterfly wall lamp with a white shade and bead, ."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "fd63194cf4f94d5e96bd2b85f542b936"], "properties": ["color, black, shade, black", "shade, white, bead"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white image of a light bulb on a white background"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a wall lamp with a white shade and a butterfly design"], "question": "which lamp has a white shade", "label": 1}, {"captions": [" a white octagonal cylinder with a hole, resembling a recessed light fixture.", "a white of a man with arms outstretched."], "sample_ids": ["827a77638bfa436f9aec49bf851fe00c", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["size, color, shape", "image, color, white"], "captions_pred_pc": ["a black and white circular ornament on a white background a black and white circular ornament on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of a white object on a gray background", "a 3d model of a man with his arms outstretched"], "question": "which entity is a white image?", "label": 1}, {"captions": [" of a metal tool with a yellow handle, a laptop, and a ceiling light fixture.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["b714bf13e9e54acb867c2c1b3ccf8ae8", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["metal, laptop, light fixture", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["for a black and white image of a corner shelf", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of a telescope on a stand", "a white kite flying in the air against a gray background"], "question": "which entity has more flying objects", "label": 1}, {"captions": [" a small silver handgun.", " a house with a wooden-framed roof structure."], "sample_ids": ["107a70cd0305435e8d38c08bcf0a7483", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["size, color, material", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a sock on a white background royalty free illustration", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a hand-held device on a white background", "a 3d model of a building with a roof"], "question": "which is made of wood", "label": 1}, {"captions": [" a brick building with a roof structure and roof truss.", " a building with a roof structure, featuring a wooden truss and ceiling with a light."], "sample_ids": ["84e8acad28664a738df69d719df9e263", "cb42ecb7a3fd4eba99f166150ecbc9a7"], "properties": ["roof, structure, truss", "roof structure, truss, ceiling"], "captions_pred_pc": ["a black and white polka dots pattern on a white background polka dots pattern on a white background illustration", "a black and white image of a stainless steel sculpture"], "captions_pred_image": ["a 3d model of a brick building with a roof", "a 3d model of a barn royalty free 3d model preview no 2"], "question": "which building has a wooden truss?", "label": 1}, {"captions": ["a featuring a boat, table, chairs, umbrella, and solar panel.", "a featuring a lamp, harp, white bowl, and white curved wall."], "sample_ids": ["0f0eb3a198d341d28f809b6d7634be8a", "55bcec23e1b34f0d9d748b4dcc3ea123"], "properties": ["boat, table, chairs, umbrella, solar panel", "lamp, harp, bowl"], "captions_pred_pc": ["a black and white illustration of a boat with an umbrella", "a black and white illustration of a curved line"], "captions_pred_image": ["a 3d model of a boat, a table, chairs, and an umbrella", "a 3d model of a harp in a white room"], "question": "which entity has a white curved wall?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["frame, roof, trusses", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a metal grate", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a large white box"], "question": "which building has a metal roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " a large white and metal building with a metal roof structure."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, red, blue, structure", "roof, metal, white"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a large white box"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a small house with a road in front of it.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, front, road", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, screen, drawer", "torso, breasts, pattern"], "captions_pred_pc": ["above a black and white image of a brush", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", "a black and white of a knife/sword with a handle."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["Drawer, Handle, Wood", "image, color, black and white"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a black and white image of a knife"], "question": "which entity is not a black and white image?", "label": 1}, {"captions": [" of an egyptian sarcophagus.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["70aa484af2ab44149a608dd81a6ff459", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["sarcophagus, material, wood", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a black and white photograph of a sphere with egyptian hieroglyphics on it", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "bded33af34104b9686b845dfd18309a9"], "properties": ["lighthouse, fountain, crater", "table, staircase, light"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a small table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a small wooden house with two roofs.", " of a cherry blossom bonsai tree with pink flowers."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "037fff0f153c41ea8b9c9392c2e2439a"], "properties": ["house, roof, wooden", "flower, color, pink"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "for a black and white illustration of a person on a skateboard"], "captions_pred_image": ["a 3d model of a small barn", "a 3d model of a bonsai tree on a pedestal"], "question": "which entity has a pink flower", "label": 1}, {"captions": [" a large metal building with a roof and truss structure.", " of two rocks with ice elements."], "sample_ids": ["b85a99699ccd4bcba213322113bb253d", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["roof, truss, structure", "image is a rock with ice elements"], "captions_pred_pc": ["of a metal grate on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a long metal fence", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "green and black ak-47 assault rifle with grenade launcher."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "9ffa5ac853354223a7f4f42d532f7633"], "properties": ["color, shape, and size", "color, black, green"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a cell phone on a white background"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of an ak 47 assault rifle royalty free 3d model preview no 2"], "question": "which entity is a weapon?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "a17477b445b3443189dad22f768b888b"], "properties": ["color, light, jewels", "roof, pillar, stairs"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a square with dots"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a house with a blue roof."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "8ff693cd3ca74f8a901ca259b8b3a7ac"], "properties": ["floor plan, bathroom, pool", "roof, color, blue"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white drawing of a cross on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with a roof"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a colorful building with red and blue blocks, a yellow roof, and hanging from the ceiling.", " a green mountain with trees and grass."], "sample_ids": ["2a31c42de6f74ddba6b19b3467066e11", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, roof, block", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a room with a lot of dots", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a table with multiple tables stacked on top of each other", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "db74ee1621464be1b164be26a1af050e"], "properties": ["Drawer, Pattern, White", "window, arches, wall"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", " of a white, labeled stone resembling a block of ice, bar of soap, or rock."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "44723e86bdd14071b0544745879604de"], "properties": ["resembles, toy, castle", "resembles, bar, soap"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "a black and white image of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble on a white background 3d rendering of a piece of marble"], "question": "which entity is a block of ice?", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", " a large white and metal building with a metal roof structure."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["A, a, a", "roof, metal, white"], "captions_pred_pc": ["a black and white illustration of a bench", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a large white box"], "question": "which entity has a white roof", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "e34088fc7b5344c4ab29fef067750225"], "properties": ["color, shape, text", "sphere, pedestal, statue"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" of a wooden stand with a red and black cross flag on it.", " of a white plastic tube with a hole and a chip on it."], "sample_ids": ["9f1d9f519d874d389d6d3949e7ca1eab", "9968e06a62e8487ea33460e640abc573"], "properties": ["flag, stand, color", "color is white, material is plastic, shape is tube"], "captions_pred_pc": ["of a 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard on a pedestal 3d illustration of a whiteboard", "a black and white image of a broom on a stand"], "captions_pred_image": ["a black and white image of a banner on a stand", "a white object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a house featuring a detailed roof structure and a suspended ceiling with a map on it."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "ee7e6031912b46bc8ca7205a959c5c16"], "properties": ["roof, color, green", "roof, structure, suspended"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white image of a piece of lace"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d model of a house with a metal roof"], "question": "which roof is suspended", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", "a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "f57ae66555d34349aeadc38b33f8f267"], "properties": ["a, plane, small plane", "a, bird, hook"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "of a 3d scan of a person's torso and limbs"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a black and white photo of a kite flying in the sky"], "question": "which entity has a bird suspended in the air?", "label": 0}, {"captions": [" a red, blue, and green striped tower building.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, red, blue, green", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is made of plastic", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a city with buildings, houses, trees, and grass."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "bc649e19956041cf89c1572f1a33cff1"], "properties": ["color, screen, drawer", "buildings, houses, grass"], "captions_pred_pc": ["above a black and white image of a brush", "in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "an image of a pile of trash on the ground"], "question": "which entity has more buildings", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["color, grass, moss", "house, table, chair"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d rendering of a small white table with a chair"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a red steel playground structure with yellow rails, featuring a bench and storage rack.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["91e069e84f754aceb99e28541cf7ae39", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["color, bench, rack", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a 3d illustration of a black and white square frame", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", "white of a rhino head with horns."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "8481aade84de47cab1a9accf8067e678"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "image, rhino, head"], "captions_pred_pc": ["a black and white map of germany on a white background", "of a penguin skull in black and white"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "rhino head 3d model royalty free 3d model preview no 3"], "question": "which image shows a rhino head?", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " of a pontoon boat with two seats and a canopy."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "dccff5eccf6943f8b14cd269710ae6ff"], "properties": ["a, desk, laptop", "seat, canopy, pontoon"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white drawing of a leopard print purse"], "captions_pred_image": ["a 3d model of an office desk on a white background", "2019 pontoon boat for sale, model of the boat is a 2019 pontoon boat & image 2 of 10"], "question": "which entity has a canopy", "label": 1}, {"captions": [" a red and black striped battery box resembling a radiator, with elements of black and white striped walls.", " a green mountain with trees and grass."], "sample_ids": ["6d4cb53d5953447aaf3c44872cd3ae6f", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["color, shape, material", "mountain, grass, tree"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench royalty free illustration", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of a black and white building", "a 3d model of a mountain with snow on it"], "question": "which entity is a mountain?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", "a black and white of a knife/sword with a handle."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["a, head, bowl", "image, color, black and white"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a black and white image of a knife"], "question": "which image is black and white", "label": 1}, {"captions": ["a 3d white cube featuring various text and logos, including \"gypsy stribes,\" \"guinea pig studios,\" \"guillaume pi sodds,\" \"happy studios,\" and \"guillem pie sos.\"", " a black and purple dragon with wings and purple eyes."], "sample_ids": ["5d08c34bfb2c4c9b9538e24d68761331", "9fdaa7bf7dbe499482d10705cbe366d2"], "properties": ["- material is plastic- color is white- shape is cube", "Eye color, Black, Purple"], "captions_pred_pc": ["of a black and white photo of a person sitting on a bench", "a black and white illustration of an airplane on a white background"], "captions_pred_image": ["a 3d image of a cube with the word 'stories' written on it", "a 3d model of a dragon with wings"], "question": "which entity has black eyes", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", "a low-poly of a white, shattered sphere."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, and size", "sphere, color, texture"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a wooden table and bench with a deer head and branch on it."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "857d5391612349f4ae6cd854a1ec96de"], "properties": ["roof truss, insulation, suspended ceiling", "table, bench, deer"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a table and chairs"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a black and white image of a bench and table with a deer's head on the table"], "question": "which entity is a table?", "label": 1}, {"captions": ["a featuring white and red cubes, and a pink and white chair.", "a white of a woman with her arms outstretched."], "sample_ids": ["f2c44a82ba744ba8b93e9a1c2272c117", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["color, white, red, pink", "image, color, white"], "captions_pred_pc": ["a black and white illustration of a house made of dots", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white structure with stairs", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["sandbox, sand bucket, wooden blocks", "camera, speaker, ceiling fan"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" a black and white object, possibly a car, arrow, or light fixture.", "a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier."], "sample_ids": ["ff2fc36f68c642b6940407bed2ee6917", "ef8288c9fdfc4e0f9c1fe25d570a104e"], "properties": ["color, black, white", "color is white, yellow, plastic"], "captions_pred_pc": ["for a black and white image of a pair of scissors", "a black and white image of a metal bowl with dots"], "captions_pred_image": ["a 3d model of an airplane on a white background", "a white plastic container with a label on it"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light.", " a wooden staircase and small table in a room with wooden floor and ceiling."], "sample_ids": ["5565c16f297e405f9d5dbf0ebb623605", "c6b89316941b4d7c9562cd2ec0bf4706"], "properties": ["table, stairs, ladder", "floor, staircase, table"], "captions_pred_pc": ["above a black and white photograph of a small square in the center of the image", "above a black and white photograph of an object on a white background"], "captions_pred_image": ["a 3d model of a table with a stool on top", "a 3d model of a boat on a wooden surface royalty free 3d model no.3"], "question": "which table is in a room with wooden floor and ceiling?", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["s of, snowboard, shoes, mask", "roof, trusses, ladder"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": [" of a yellow metal locker with legs, wheels, and metal brackets.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["e3fde8fe782c41f0b141c9f1b8e13aa5", "97e000ff41094665afd94ea565da8b13"], "properties": ["metal, legs, wheels", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white illustration of a black and white", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of an old metal locker", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a red toy robot cowboy with a hat and glasses.", "a pair of black armored warriors with swords, spears, and cloaks, including a female warrior and a dark knight."], "sample_ids": ["83a910fb2e714b7082fb7606fce83dc4", "46511f6f0fd04198b4005c159ac8ae40"], "properties": ["color, hat, glasses", "cloak, sword, spear"], "captions_pred_pc": ["a black and white image of a brake pad", "a black and white photo of a pair of snowflakes on a white background snowflakes on a white background royalty free stock photography"], "captions_pred_image": ["a 3d model of a cowboy hat on top of a vending machine royalty free 3d model no.2", "a 3d model of a pair of armored knights standing next to each other"], "question": "which entity has a cloak?", "label": 1}, {"captions": [" a small white house with stairs and a spiral staircase, featuring a white table and ceiling light.", " a green mountain with trees and grass."], "sample_ids": ["e9e1cc7fae22458197a61f43a9c355f4", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["house, staircase, table", "mountain, grass, tree"], "captions_pred_pc": ["above a black and white photograph of a dog in a frame", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house with a spiral staircase", "a 3d model of a mountain with snow on it"], "question": "which entity has more grass", "label": 1}, {"captions": ["a white chandelier with six lamps, five lights, and glass shades.", " a wooden shed with a gray roof."], "sample_ids": ["bf18bfd89efd43389781050230467d58", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["Lights, number, five", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a white chandelier with five white shades", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is gray", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", " of a small white building with stairs and a lid."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["color, background, arrows", "building, stairs, lid"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a tall glass tower featuring blue, green, and white squares.", " a white castle composed of small cubes."], "sample_ids": ["405d68eda26c401fbcddc7e3a457c74e", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["color, shape, height", "composed of, white, cubes"], "captions_pred_pc": ["of a black and white photo of a pair of earrings", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a black and white photograph of a metal sculpture on a pedestal", "a 3d model of a castle made of white cubes"], "question": "which is a building", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, base, warning", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d rendering of a plastic box with several compartments"], "question": "which box is made of plastic", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a small wooden house with a green roof."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["a, plane, small plane", "roof, color, green"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a 3d model of a house with a ladder"], "question": "which object has a roof that is the color of green", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", " a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "a2354f13774340d392fbf33564934aab"], "properties": ["house, plane, town", "building, roof, yellow"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white image of a cell phone"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d rendering of a machine with a conveyor belt"], "question": "which building has a yellow roof", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "a white of a building with columns, stairs, and railings."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "c9ad30f336844b629cb237fa5b0d94f2"], "properties": ["location, field, gravestone", "image, building, stairs"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no."], "question": "which image shows a building with columns", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["hat, bag, blanket", "house, pool, balcony"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small white house with a roof.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["5776bd692bd240cb9c14817c821d7c22", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["roof, color, white", "house, tree, hill"], "captions_pred_pc": ["a black and white drawing of a house on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a 3d model of a building with a white roof", "a 3d model of a house in the middle of a field"], "question": "which house has a tree in front", "label": 1}, {"captions": [" of a wooden tv stand with two drawers and handles.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["6409380e790442e6a5733eb447d4c510", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["Drawer, Handle, Wood", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a line of dots on a white background", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d rendering of a wooden entertainment center", "a 3d image of a small island in the middle of a lake"], "question": "which entity is a mountain?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a wooden shed with a gray roof."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof structure, truss, ceiling", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a shed with a gray roof"], "question": "which roof is gray", "label": 1}, {"captions": ["a pair of men's grey and tan leather lace-up sneakers with blue accents.", " a small house with a tree in front, situated on a hill."], "sample_ids": ["0070d09cecd94178b4217e244dd72efc", "3bde44b5f10946398f1bb9843dc14caa"], "properties": ["color, tan, grey, blue", "house, tree, hill"], "captions_pred_pc": ["a black and white image of a shoe on a white background", "a black and white photo of a cell phone in a puddle of water"], "captions_pred_image": ["a pair of gray shoes on a white background", "a 3d model of a house in the middle of a field"], "question": "which entity is not a pair of men's grey and tan leather lace-up sneakers with blue accents?", "label": 1}, {"captions": ["an orange and white striped rocket model.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "6b745457e06840119058883b35f78f58"], "properties": ["color, orange, white", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d model of a house with a steeple on top"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "bf18bfd89efd43389781050230467d58"], "properties": ["image, building, painting", "Lights, number, five"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", "a black and white of a knife/sword with a handle."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["- material is wood - color is white - height is 1.8 m", "image, color, black and white"], "captions_pred_pc": ["an illustration of a barbed wire fence", "of a black and white knife on a white background"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a black and white image of a knife"], "question": "which entity is not a color image?", "label": 1}, {"captions": [" of a jacket on a mannequin with arms outstretched.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["1dc7708fd7bd4ea1b035f4c48dbd7868", "bf18bfd89efd43389781050230467d58"], "properties": ["arm, jacket, mannequin", "Lights, number, five"], "captions_pred_pc": ["a black and white image of a woman's torso", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman's jacket royalty free 3d model preview no.2", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a house with a roof and white brick wall.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["00915b83a52b45d498962d0cd42af491", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["roof, wall, color", "house, fence, playground"], "captions_pred_pc": ["a black and white image of a rectangle with dots all over it", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a small white house with a roof", "a 3d model of a room with a lot of wires"], "question": "which house has a fence", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a house with a wooden-framed roof structure."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, pier, stairway", "roof, material, wood"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which structure has a wooden-framed roof", "label": 1}, {"captions": [" the earth featuring various elements such as temperature chart, blue and green stripes, blue arrow, exosphere label, england label, blue and purple stripes, and a blue flag.", " a tree with green leaves."], "sample_ids": ["4945571db2d8467cb2aed8dd0d891c2e", "1a902b67735845198efb1b84f434b580"], "properties": ["color, temperature, england", "leaf, color, green"], "captions_pred_pc": ["of a black and white photo of an airplane on a white background", "for a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of the earth with a rainbow in the sky", "a 3d model of a tree with a lot of foliage"], "question": "which entity has leaves that are green?", "label": 1}, {"captions": ["a white of a gun.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["d7c12235efd1471db5b7145b63dbd11a", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, white, gun", "roof, trusses, beams"], "captions_pred_pc": ["of a white object on a white background", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a white 3d model of a rifle on a gray background", "a 3d model of the roof of a building"], "question": "which object has a roof", "label": 1}, {"captions": [" a potted christmas pine tree.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["460c8f3034a844159826fac3b8aa35a5", "97e000ff41094665afd94ea565da8b13"], "properties": ["a, color, green", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a snowflake on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a christmas tree in a vase", "a 3d model of the roof of a building"], "question": "which is not made of wood", "label": 1}, {"captions": ["white space shuttle model.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["c5f8ada1dab549c3a1c77997dcea0ca2", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color is white, model is space shuttle, size is small", "a room, a cake, a table"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a white 3d model of a space shuttle on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["roof, color, yellow", "roof, trusses, beams"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of the roof of a building"], "question": "which roof is made of trusses", "label": 1}, {"captions": [" of a hammer with a metal handle, compatible with 3ds max, maya, blender, and other ing and animation software.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["5d0b9c038a1847f29384ec09cffc43d9", "b896a0898efe4059a776193c02132129"], "properties": ["- material is metal - weight is 0 - height is 0", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a person flying a kite", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a metal clamp with a spike on top of it", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a small house on an island with a boat and a bird on a rock.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["1e56a92a0ddc41e59694bd1ad1656149", "b896a0898efe4059a776193c02132129"], "properties": ["house, rock, bird", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white drawing of a boat in the middle of a body of water", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a house on a rock", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a house with a roof and beams."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["color, white, yellow, roof, metal", "roof, beams, house"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a building with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small island featuring a large house, trees, and a village on a hill.", " a house with a wooden-framed roof structure."], "sample_ids": ["06a1c233fb444830b577aa06e2c01294", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["house, tree, hill", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a surfboard on a white background", "a black and white drawing of a staircase"], "captions_pred_image": ["a black and white image of a house in the middle of a field", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": [" a small building with a yellow roof, featuring a box, a chair, and a plane flying overhead.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["a2354f13774340d392fbf33564934aab", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["building, roof, yellow", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white image of a cell phone", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d rendering of a machine with a conveyor belt", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" of a sword with a wooden handle.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["bf448dbb4b6a43d89b2514929e8f7c43", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["handle, material, wood", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a sword on a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a sword with two blades", "a 3d model of a house with a roof"], "question": "the handle of the sword is made of wood", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["apse, roof, floor plan", "house, roof, wooden"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white photograph of a birdhouse"], "question": "which entity has a roof made of wood", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["color is white, yellow, plastic", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "a black and white map of the state of new york"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a piece of paper"], "question": "which entity is a landmass", "label": 1}, {"captions": [" a small white building with stairs and shelves.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["building, stairs, shelves", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", "a black and white of a knife/sword with a handle."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "c7692fa635e049bda0a2039fa5a784a4"], "properties": ["collection, color, black, handle, wooden", "image, color, black and white"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "of a black and white knife on a white background"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a black and white image of a knife"], "question": "which image is black and white?", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, room, table", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black square on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a house with a wooden-framed roof structure."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["floor plan, heating system, ceiling light fixture", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a building with a roof"], "question": "which house has a wooden-framed roof structure", "label": 1}, {"captions": ["a 3d white arrow, letter s, toothpick, skateboard, and knife forming a logo.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["2ee9dcd863514073a849ece8ea7714dd", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["3D, toothpick, skateboard", "hat, skull, bread"], "captions_pred_pc": ["above a black and white image of a person's hand holding a pencil", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a white toothbrush on a gray background", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["- material is wood, metal, metal", "box, paper clip, lock"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a small white table with stairs and a ladder, featuring a black and white kitchen hood and a black square ceiling light."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "5565c16f297e405f9d5dbf0ebb623605"], "properties": ["color, horns, features", "table, stairs, ladder"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "above a black and white photograph of a small square in the center of the image"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a table with a stool on top"], "question": "which entity has a ladder?", "label": 1}, {"captions": [" of white spheres resembling a molecule.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["9d2c94d03ca745948b8cb4e8cafddb1c", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, shape, number", "resembles, sea urchin, shell"], "captions_pred_pc": ["of a black and white 3d model of a molecule on a white background a black and white 3d model of a molecule on a white background royalty free illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d sculpture of a white ball on a gray background", "a 3d model of a sea urchin"], "question": "which entity is a shell?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a red and white robot."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "75e058152d8e438a9c6f8abf112e8d89"], "properties": ["color, light, jewels", "color, red, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white drawing of a monkey wearing a hat"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3"], "question": "which robot is red and white?", "label": 1}, {"captions": ["a 3d object featuring a head with wires, a bowl of spaghetti, and a scribbled ball.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["9050ebb69503447680d4757dfc708754", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["a, head, bowl", "island, mountain, grass"], "captions_pred_pc": ["in your own words a black and white illustration of a vase filled with beads", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white drawing of a bunch of tangled wires", "a 3d image of a small island in the middle of a lake"], "question": "which object has more grass", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["two-story, roof, building", "roof, trusses, beams"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of the roof of a building"], "question": "which building has a roof", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a white table with grey legs, a white top, writing on it, and three legs."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "68e0d097351843a3980421f2ae624c59"], "properties": ["top, color, wood", "white, top, writing"], "captions_pred_pc": ["a black and white drawing of a fireplace", "a group of black dots on a white background stock illustration a group of black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a table with writing on it and a mouse on top of it"], "question": "which table has a white top", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["lighthouse, fountain, crater", "floor, staircase, balcony"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "a black and white drawing of a wallet"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a 3d model of a bench on a wooden floor"], "question": "which entity has a staircase", "label": 1}, {"captions": ["modern tan leather lounge chair.", " a church building at night with a projection, snow, and a window, featuring a hand with a skeleton on it."], "sample_ids": ["409916a53a0d434599e2a3f52bfe9396", "4389909667db472ea9a57a70eb940fa4"], "properties": ["color, tan, leather", "building, window, skeleton"], "captions_pred_pc": ["a black and white illustration of an object in the shape of a butterfly on a white background 3d illustration of a black and white illustration of an object in the shape of a butterfly on a white background vector illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustration of an object in the shape of a butterfly on a white background illustration of a black and white illustr", "a black and white image of a piece of paper"], "captions_pred_image": ["a gray leather lounge chair with a metal base", "a black and white photo of a person's reflection in a mirror"], "question": "which entity is a building?", "label": 1}, {"captions": [" a small white and brown house with windows and a door.", " a white and blue building with a black roof."], "sample_ids": ["7de99253a4bc4d98bd941e40bbad8c7a", "c893118316ee43e18322e5964b2806c5"], "properties": ["color, door, window", "color, white, blue, roof, black"], "captions_pred_pc": ["of a person wearing a black and white striped shirt", "a black and white illustration of a person standing on top of a hill made up of tiny dots"], "captions_pred_image": ["a 3d model of a police box royalty free 3d model preview no.2", "a 3d model of a white building on a gray background royalty free 3d model no."], "question": "which building has a black roof", "label": 1}, {"captions": [" a small black house with a green roof, resembling a shed or container.", " a house with a wooden-framed roof structure."], "sample_ids": ["bdb8e4c36ccb477890fd6ae569ae305c", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["black, roof, green", "roof, material, wood"], "captions_pred_pc": ["a black and white drawing of a square with dots all over it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of a small black building", "a 3d model of a building with a roof"], "question": "which roof is made of wood", "label": 1}, {"captions": ["a wooden tower made of stacked blocks with holes in them, resembling a toy castle.", "stainless steel tray with two metal tubes, resembling a light fixture."], "sample_ids": ["da8b5d21da9b4037982f29383d60b100", "a095621f2d5845af83db3f59f5685982"], "properties": ["resembles, toy, castle", "- material is stainless steel- color is silver- shape is round"], "captions_pred_pc": ["a black and white drawing of a pair of scissors", "of a black ribbon on a white background"], "captions_pred_image": ["a 3d model of a tower made out of blocks", "a metal tray with two rolls of paper in it"], "question": "which object is made of metal", "label": 1}, {"captions": [" a damaged desert house with an open door and a cross, surrounded by sand and dirt.", " a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house."], "sample_ids": ["95e9d8f8ba3849feba93c2a7c7932a8c", "37954d951eb24f23a4956df5a683bb92"], "properties": ["house, door, cross", "door, white, structure"], "captions_pred_pc": ["above a black and white image of a map", "a black and white drawing of a house made up of tiny dots"], "captions_pred_image": ["a black and white drawing of a house", "a 3d model of a modern, minimalist bathroom"], "question": "which structure has a door", "label": 1}, {"captions": [" a house with a roof, roof truss, and suspended ceiling structure.", " a snowy city with buildings and a plane flying overhead."], "sample_ids": ["5abf69f79b92484fb54d41ff0c0a2c11", "cc63ceb2b5e84872a1a1f6423de419e2"], "properties": ["roof, truss, suspended ceiling", "building, plane, city"], "captions_pred_pc": ["a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration", "a black and white photo of an airplane on a white background"], "captions_pred_image": ["a 3d model of a house with roof trusses", "a 3d model of a city in black and white"], "question": "which entity is a city?", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of a meat skewer with a small piece of bread and a sausage on a stick."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "1728f2cb8eca4080af02b22262ff45d5"], "properties": ["variation, bread, pot", "meat, bread, sausage"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white image of a brush on a white background"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "an image of a small white object on a gray background"], "question": "which entity has more bread", "label": 1}, {"captions": ["a gray background featuring a mix of black and white lines, as well as black and white arrows.", "a featuring a futuristic chair, a black cat with a sword, a person holding an umbrella, and a black and blue dragon, airplane, and helicopter."], "sample_ids": ["1859eafe26e54a11b279c02d175769f0", "4df70180f2ea400782d2e2de76063894"], "properties": ["color, background, arrows", "color, black, blue"], "captions_pred_pc": ["a series of black and white photographs of a man in different poses", "a 3d illustration of a girl in a dress 3d illustration of a girl in a dress, isolated on a white background royalty free stock illustration"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a black and white 3d model of a person holding a sword in the shape of a paper airplane"], "question": "which entity has a black cat?", "label": 1}, {"captions": [" three white cubes, one featuring a black door.", " a wooden shed with a gray roof."], "sample_ids": ["be791c81b1964def8e1f3b4e9a802e24", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["color, shape, number", "roof, color, gray"], "captions_pred_pc": ["a black and white illustration of a cross made up of dots", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d rendering of three white cubes in a row", "a 3d model of a shed with a gray roof"], "question": "which entity has a roof that is the same color as the shed?", "label": 1}, {"captions": [" of a white wall-mounted light switch, electrical outlet, and various furniture pieces.", " a white castle composed of small cubes."], "sample_ids": ["b195bf7ba6094e1b812e4312deeeb360", "d0d00e27b8744e29a0a869c5ca277197"], "properties": ["light switch, electrical outlet, furniture", "composed of, white, cubes"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white illustration of the letter 'k'"], "captions_pred_image": ["a 3d rendering of a room with a white background", "a 3d model of a castle made of white cubes"], "question": "which entity is composed of white cubes", "label": 1}, {"captions": ["white korean word on a gray background.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["b0031bafaeff45e4bbb1c01721cf5b9e", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, background, font", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white photo of a group of pipes in the shape of the letter 'o'", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a person holding a pair of chopsticks in front of a gray background", "a 3d rendering of a plastic box with several compartments"], "question": "which entity is a box?", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "18e392c5360146eda498c5edab25b15c"], "properties": ["castle, island, house", "frame, beams, trusses"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a building under construction"], "question": "which entity is a building structure?", "label": 1}, {"captions": [" a small island with trees, water, and a river.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["water, river, island", "a train, a ship, a boat"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a submarine"], "question": "which entity has a boat", "label": 1}, {"captions": [" of a plague mask with a rusty, horned, wooden helmet and a crow's head design.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["2b0896f810074399a5ae7d6dbab8c330", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["- material is wood, rusty, horned", "house, fence, playground"], "captions_pred_pc": ["in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["3d model of a plague doctor's mask", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" of a house with a roof structure, including a greenhouse.", " a large, black and white circular building, resembling a stadium or ring structure."], "sample_ids": ["d7483292784b4e2b81df1c50f2a8664a", "67f46bb0048244c687a58d1017a08f6b"], "properties": ["roof, structure, greenhouse", "building, color, black and white"], "captions_pred_pc": ["a 3d illustration of a window with dots on a white background 3d illustration of a window with dots on a white background royalty free illustration", "the letter c in black and white illustration of the letter c in black and white illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustration of the letter c isolated on a white background illustr"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a circular fence with black and white stripes"], "question": "which building is black and white", "label": 1}, {"captions": ["s of a plane, house, pile of rocks, and islands, accompanied by watercolor paintings of a tree, rocks, and a boat in a sand dune.", " a small white building with stairs and shelves."], "sample_ids": ["8da8da6ccf5f4011a4115977c55d1cb8", "9e1f64d4fd514059be934077717536dc"], "properties": ["s, plane, house", "building, stairs, shelves"], "captions_pred_pc": ["a black and white silhouette of a map", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a white 3d model of a building with stairs"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" of a mushroom cloud with white tree and coral plant elements, featuring blue and green leaves.", " a wooden frame featuring a curved, colorful screen."], "sample_ids": ["bca5233d878e4cf09b5bc2bb6f3915b0", "e6ff8537a6ba409296954984071218a3"], "properties": ["color, shape, texture", "frame, screen, color"], "captions_pred_pc": ["a black and white image of a square with dots on it", "of a black and white cross on a white background"], "captions_pred_image": ["a 3d model of a tree made out of white flowers", "a 3d rendering of a black screen with a circular pattern"], "question": "which entity has a screen that is colorful?", "label": 1}, {"captions": [" of a tree stump and rock with flowers on them.", " a small village featuring houses, trees, and a winding road."], "sample_ids": ["3f74af45aeeb43ee95e2c8a5e3afeae6", "7acf46c0265d4e39b97ac084852abde8"], "properties": ["flower, rock, tree stump", "houses, trees, road"], "captions_pred_pc": ["above a black and white drawing of a flower on a white background", "in 15 words or less a black and white photo of a mountain landscape"], "captions_pred_image": ["a 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree stump in the snow 3d model of a tree st", "a black and white photograph of a small town"], "question": "which entity has more trees", "label": 1}, {"captions": [" a black and white box-like object with various interpretations, such as a coffee table, building, book, and ceiling fixture.", " a gray, metal pillar/cylinder."], "sample_ids": ["404d7e2cd8894c31bdda02d2b3196464", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["black, white, coffee table", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white drawing of a square with dots on it", "of a black candle on a white background"], "captions_pred_image": ["a black and white 3d model of a building", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": [" a teal and white building structure with metal poles, blue lines, and a hanging ceiling featuring numerous metal rods.", " white crocs clogs with blue straps and holes."], "sample_ids": ["e4133ffb79714c50b70e9d62b4648c39", "4622e88fd9264b37997671efeb73af85"], "properties": ["color, material, structure", "color, white, blue"], "captions_pred_pc": ["a black and white drawing of a room with dots", "of a black and white image of a shoe with holes"], "captions_pred_image": ["a 3d rendering of a table with multiple tables and chairs", "a 3d model of a white clog shoe royalty free 3d model preview no 1"], "question": "which entity is a shoe?", "label": 1}, {"captions": [" a building with a roof structure, featuring a wooden truss and ceiling with a light.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["cb42ecb7a3fd4eba99f166150ecbc9a7", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["roof structure, truss, ceiling", "roof, ceiling, hole"], "captions_pred_pc": ["a black and white image of a stainless steel sculpture", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a barn royalty free 3d model preview no 2", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a ceiling with a hole", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " of a house with a roof truss, chimney, and suspended ceiling."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "9401dfc901b2447a9c0eb27da56854d7"], "properties": ["bed, desk, window", "roof truss, chimney, suspended ceiling"], "captions_pred_pc": ["of a black and white drawing of a curved line", "in 15 words or less a black and white illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a bird in a cage on a white background illustration of a"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which entity has a roof truss", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["color, grass, moss", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which object has a lock?", "label": 1}, {"captions": ["a 3d minecraft model of the acropolis and a city, featuring a desert building and a room with debris.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["3cbdd3ff48804f9a8041b890838613ec", "7f8942ef51dd4246993a587a12df168c"], "properties": ["acropolis, city, building", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white drawing of a dotted square on a white background a black and white drawing of a dotted square on a white background royalty free illustration", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of the temple of olympian zeus in athens, greece royalty free 3d model preview", "a 3d model of a house in the middle of a field"], "question": "which entity has a yard", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, tan, brown, orange", "island, mountain, grass"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white map of the island of malta"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more grass", "label": 1}, {"captions": [" a hand featuring red, green, and blue stripes.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["6ea21f8f91b04144b43aa4b606339de3", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, red, green, blue", "roof, material, wood"], "captions_pred_pc": ["above a black and white image of a glove", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a white and gray glove", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a white wooden climbing frame with swing set and ladders.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["f2935306c64a479685462220e33e6f3c", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["- material is wood - color is white - height is 1.8 m", "island, mountain, grass"], "captions_pred_pc": ["an illustration of a barbed wire fence", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of a playground ladder set royalty free 3d model preview no.2", "a 3d image of a small island in the middle of a lake"], "question": "which is not a mountain", "label": 1}, {"captions": ["a white teddy bear, cloud, skull, octopus, and bird in various positions on a gray background.", " a green mountain with trees and grass."], "sample_ids": ["dd5849aced0443b1b4b38d413f7e06c4", "08fb23bdc67b4b0ba5fc64ea5c97e5f7"], "properties": ["background, color, white", "mountain, grass, tree"], "captions_pred_pc": ["a black and white image of a cat's head", "in 15 words or less a black ink blot on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of an animal skull in white on a gray background", "a 3d model of a mountain with snow on it"], "question": "which entity has a mountain with trees and grass?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", " a wooden billiard table with legs."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "b20ad62516fa467ba6e8de063998e8e4"], "properties": ["color, pier, stairway", "legs, material, wood"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white drawing of a rectangular shaped object"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a black and white image of a pool table"], "question": "which entity has legs", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "a low-poly of a white, shattered sphere."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["hair, legs, wings", "sphere, color, texture"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a 3d model of a cracked egg"], "question": "which entity has no texture?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", "\"multiple white cubes arranged in a row on a gray background.\""], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "17c8222d4ce04e518117078e7de6aaed"], "properties": ["location, field, gravestone", "color, background, white"], "captions_pred_pc": ["a black and white illustration of a whale", "a black and white image of a box with the words 'box 2' and 'thoughtful'"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "an image of a white background with a few small cubes on it"], "question": "which object is white", "label": 0}, {"captions": [" of a white round table with a red accent.", " a house with a wooden-framed roof structure."], "sample_ids": ["fea62a865b4e40899d95785533818329", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["color, white, red", "roof, material, wood"], "captions_pred_pc": ["above a black and white photograph of a person hanging from the ceiling", "a black and white drawing of a staircase"], "captions_pred_image": ["an empty white plate on a gray background", "a 3d model of a building with a roof"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a green and red toy gun with a scope and yellow accents.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["4b7263b58a6647c3a03226b39c42108a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, green, yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a toothbrush", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an assault rifle on a gray background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a small room with a bunk bed, desk, chair, table, and a blue house.", " a small building with windows and a roof."], "sample_ids": ["dd3a9323ed514ccab330973ff9588015", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["room, bed, desk", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a door", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a small room with a bunk bed", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small wooden log cabin.", " a house with a flat roof structure."], "sample_ids": ["dc05e20369e640609f0651ce66118669", "abc52d210d71415296730bb00352ce6f"], "properties": ["size, material, log", "roof, flat, structure"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench in a park royalty free illustration", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a log cabin 3d model of a log cabin royalty free 3d model preview no 3", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a white and black horned demon with bunny features.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["1d3537d1341a423f89990e9b06924904", "be1376023c274bdda995d54f3694157f"], "properties": ["color, horns, features", "roof, beams, chimney"], "captions_pred_pc": ["above a black and white image of a pair of headphones", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a skull with horns on its head", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a large steel building with a pool."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["roof truss, insulation, suspended ceiling", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" of a white sculpture, resembling a horse and paper plane, on a gray background.", " of a hammer with a long metal handle."], "sample_ids": ["179b4438edfc4a43a27a83784f38ff4b", "30f4b6bcbbb44f568cab4fd439d05145"], "properties": ["color, background, white", "handle, metal, long"], "captions_pred_pc": ["above a black and white image of a sculpture in the shape of a bird", "a black and white toothbrush on a white background"], "captions_pred_image": ["a 3d printed sculpture of a horse's head on a gray background", "a hammer with a wooden handle and metal head"], "question": "which object has a long metal handle", "label": 1}, {"captions": [" a ring featuring a green and blue stone.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["de3a0907767b4ba6b7ccf99c45ccc0e5", "97e000ff41094665afd94ea565da8b13"], "properties": ["color, stone, green, blue", "roof, material, wood"], "captions_pred_pc": ["a circle of black dots on a white background", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d rendered image of a ring with a bee on it", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d low-poly helmet model with green and beige colors and wings.", " a house featuring a pink-purple roof with trusses and wooden ceiling beams."], "sample_ids": ["b9f40c80d70e432390780273137dcbc0", "b6b6a3f82bdd47c3afaf9af885ba8703"], "properties": ["color, material, texture", "roof, trusses, beams"], "captions_pred_pc": ["a black and white image of a spider's head", "a black and white pattern of dots in the shape of a square royalty free illustration"], "captions_pred_image": ["a 3d model of a futuristic helmet with wings", "a 3d model of the roof of a building"], "question": "which entity has a roof", "label": 1}, {"captions": [" of a house featuring a wooden roof structure with trusses and beams.", " a large steel and metal structure with a pool and scaffolding system."], "sample_ids": ["8cd3f5ff0fc041eca9a480faa6739480", "5850d5c7223447db816081d50292fec0"], "properties": ["roof, trusses, beams", "structure, material, pool"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a window", "a black and white drawing of a bridge with chains"], "captions_pred_image": ["a 3d model of a roof structure", "a 3d model of a large concrete structure"], "question": "which structure is made of metal", "label": 1}, {"captions": [" a red \"welcome to northwich\" billboard on a wooden base.", " a wooden roof structure with a pink roof."], "sample_ids": ["225e4094141d416faba7c5598dc55ff8", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["base material is wood, color is red, message is welcome to northwich", "roof, color, pink"], "captions_pred_pc": ["a black and white illustration of a circular object with many small dots on it", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a chalkboard on a pedestal royalty free 3d model preview no.2", "a 3d model of the roof of a building"], "question": "which structure has a pink roof", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a spiral staircase with a railing in a small building."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["buildings, houses, grass", "staircase, railing, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "a black and white photograph of a light switch"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a staircase in a white room"], "question": "which entity has a railing", "label": 1}, {"captions": [" a dragon flying above a city, accompanied by a train, various objects, animals, and a person walking.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["f69264c33c324343b8a0a35d49ae0942", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["a city, train, dragon", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a toy car", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a line drawing of an airplane flying in the sky", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": ["a white of a building with columns, stairs, and railings.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["c9ad30f336844b629cb237fa5b0d94f2", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["image, building, stairs", "house, fence, playground"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a multi-level building with stairs and balconies royalty-free 3d model no.", "a 3d model of a room with a lot of wires"], "question": "which image shows a house with a fence?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, containers", "roof, brown, flat"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a house with a green, wooden-structured roof.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["d58bb529b1434809a64b62f1b2899c3f", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["roof, color, green", "island, terrain, water"], "captions_pred_pc": ["a black and white image of the letter 'l' made up of dots on a white background", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a house with a triangular roof", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a rocky terrain", "label": 1}, {"captions": ["three white plastic containers with lids, including a box, a cylinder, and a bottle.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["67e8933750254cd8afddbf4865ae9e39", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["box, cylinder, bottle", "house, fence, playground"], "captions_pred_pc": ["a black and white dots pattern on a white background", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic container, and a plastic lid", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "3a509431d96b43f8a7aebe2846f08b96"], "properties": ["color, white, yellow, roof, metal", "roof, brown, flat"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d rendering of a table and stool"], "question": "which entity has a brown roof", "label": 1}, {"captions": [" a pair of fur-trimmed boxing gloves and a human heart, with a man's hand wearing a hat.", " a small square table with an integrated staircase and a ceiling light."], "sample_ids": ["661c85f7cea14b7c81fb30b31d603cab", "bded33af34104b9686b845dfd18309a9"], "properties": ["boxing gloves, heart, hand", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a sponge in the shape of the letter 'v'", "above a black and white image of a square with a square in the center"], "captions_pred_image": ["a 3d model of the human heart", "a 3d model of a small table with a staircase"], "question": "which object has a staircase?", "label": 1}, {"captions": [" a small house with stairs and a balcony.", " a small white building with stairs and shelves."], "sample_ids": ["0fbc5f16d301450c820b1f2158fd4f69", "9e1f64d4fd514059be934077717536dc"], "properties": ["balcony, stairs, house", "building, stairs, shelves"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white image of a person standing in front of a white background"], "captions_pred_image": ["a 3d model of a building with two floors and a balcony", "a white 3d model of a building with stairs"], "question": "which building has stairs and shelves?", "label": 1}, {"captions": [" a house with wooden framing and trusses.", " a large steel building with a pool."], "sample_ids": ["4501794e257c4a8ba60a94757d8e93a9", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["frame, trusses, wood", "building material, pool, steel"], "captions_pred_pc": ["a black and white drawing of a window", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "b16fb21cda9a4a21a024df749c2304f4"], "properties": ["floor, wall, roof", "roof, ceiling, hole"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "a black and white image of a square with dots on it"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a 3d model of a small house and a tree in the foreground"], "question": "which entity has a roof", "label": 1}, {"captions": ["a featuring a graffiti-covered train, bench, wall, and skateboard.", " a house featuring a roof with wooden trusses and a ladder."], "sample_ids": ["6de9fcac063d45df9424decdc215b379", "3cd410c4359a4cef98702963a2b9802b"], "properties": ["graffiti, bench, wall", "roof, trusses, ladder"], "captions_pred_pc": ["for a black and white image of a boat", "a black and white drawing of a tv screen on a white background"], "captions_pred_image": ["a graffiti-covered wall in a black and white photograph", "a 3d model of the roof of a building"], "question": "which entity has a roof with wooden trusses and a ladder?", "label": 1}, {"captions": ["3d stone sculpture of a bat", " of a black and white striped fly in the air."], "sample_ids": ["5d5ced90c170408b89f9e5ac7852c1f2", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["- material is stone - shape is bat", "black, white, fly"], "captions_pred_pc": ["a black and white image of an object on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d image of a stone sculpture in the shape of a bird", "a black and white photograph of a fly"], "question": "which entity is a fly", "label": 1}, {"captions": ["a collection featuring a black umbrella, a hammer, a door, and an axe, all with wooden handles.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["c6e87b303e9945a3b0fc282e8527b473", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["collection, color, black, handle, wooden", "island, mountain, grass"], "captions_pred_pc": ["a black and white photo of a person in a suit and tie standing in front of a white wall", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white image of a door handle and a knife", "a 3d image of a small island in the middle of a lake"], "question": "which entity has grass?", "label": 1}, {"captions": [" of a small house featuring a flat, brown roof, table with two chairs and a stool, ceiling light, and a window.", " a small wooden house."], "sample_ids": ["3a509431d96b43f8a7aebe2846f08b96", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["roof, brown, flat", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a snowflake on a white background a black and white drawing of a snowflake on a white background royalty free illustration", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a table and stool", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" of a pillow featuring a hot dog shape and a bag of chips with a dragon design.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4ae6ac813d584d12a5d5d608a595bfe5", "06a1c233fb444830b577aa06e2c01294"], "properties": ["shape is hot dog, design is dragon, color is black", "house, tree, hill"], "captions_pred_pc": ["a black and white illustration of an eye with dots", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a black and white photo of a pillow with a soda can on it", "a black and white image of a house in the middle of a field"], "question": "which entity has a house?", "label": 1}, {"captions": [" a house featuring a pitched roof structure with brick detailing.", " a house with a wooden-framed roof structure."], "sample_ids": ["5fbd274f897b44fcafa02ee84228debf", "ef2edaf670a64ec29114d7eeeaec7776"], "properties": ["structure, roof, pitch", "roof, material, wood"], "captions_pred_pc": ["a black and white illustration of a square with a lot of dots on it", "a black and white drawing of a staircase"], "captions_pred_image": ["a 3d model of the roof of a house", "a 3d model of a building with a roof"], "question": "which roof structure is made of wood", "label": 1}, {"captions": [" of a white building with a small house and a desk with a laptop.", " a small house on a hill in a field."], "sample_ids": ["9244a2d3a9e94c8398ef991f1661bb58", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["a, desk, laptop", "house, hill, field"], "captions_pred_pc": ["a black and white image of a piece of furniture", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of an office desk on a white background", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a large house/building structure with a roof.", " a two-story small apartment building with a roof."], "sample_ids": ["82859e4c6d4e4bbea94b6252bef1d398", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["roof, structure, house", "two-story, roof, building"], "captions_pred_pc": ["a black and white photograph of a metal sculpture", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a large white structure", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": [" of a wooden building frame with truss and roof structure.", " a large steel building with a pool."], "sample_ids": ["1313f8185cf24f3bbd73ff4e4ddfab3e", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["frame, truss, roof", "building material, pool, steel"], "captions_pred_pc": ["a black and white image of a ladder on a white background", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d rendering of a bridge over a road", "a 3d model of a concrete structure"], "question": "which building material is used to build the pool", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a wooden roof structure with a pink roof."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "b70565bda31d42958d3597bf6067ddd2"], "properties": ["color, sphere, molecule", "roof, color, pink"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "above a black and white image of a metal grate"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of the roof of a building"], "question": "which entity has a roof that is pink?", "label": 1}, {"captions": [" a wooden door with a lock, handle, and a piece of paper on it.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["78762b19b7dc4823a0033ec63f092ca5", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["door, lock, handle", "island, terrain, water"], "captions_pred_pc": ["in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a black and white image of a door with a crack in it", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, base, warning", "table, staircase, light"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a 3d model of a table with a staircase"], "question": "which object has a light?", "label": 1}, {"captions": [" a brown couch with peeling paint and tape on it.", " tall grass, plants, rocks, and a tree."], "sample_ids": ["8da7e0d122f544e2862b4e592988e183", "eefed882ed5f4711bc5a76332d9712f3"], "properties": ["brown, paint, tape", "grass, plants, rocks"], "captions_pred_pc": ["above a black and white image of a couch with a leopard print pattern", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a couch royalty free 3d model preview no.2", "a 3d model of a group of trees"], "question": "which object has more grass", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", " a house with a green, wooden-structured roof."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["chair, table, refrigerator", "roof, color, green"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light.", " a small wooden house."], "sample_ids": ["0d7e4d9471414a21b4a5b18a54f7ec22", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["ceiling, light, desks", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a square on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of an office space with desks and chairs", "a 3d model of a small cottage"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " of a white chest of drawers with legs."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["building, tree, plane", "chest of drawers, legs, white"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", "a featuring a house with a fence, tennis court, playground with slide, and buildings with pipes, wires, and colored lines."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "c516e491e5ee4313a4c06365ef13af3f"], "properties": ["color, shape, material", "house, fence, playground"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "above a black and white drawing of an industrial machine"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a 3d model of a room with a lot of wires"], "question": "which entity has a fence", "label": 1}, {"captions": [" a spiral staircase with a railing in a small building.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["28cae056856c4a8ba9d1a6af5355f831", "06a1c233fb444830b577aa06e2c01294"], "properties": ["staircase, railing, building", "house, tree, hill"], "captions_pred_pc": ["a black and white photograph of a light switch", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a staircase in a white room", "a black and white image of a house in the middle of a field"], "question": "which entity has a house and trees?", "label": 1}, {"captions": [" of a row of insects and animals on cubes, with flowers and a snake on a stick.", " a toy motorcycle, car, and robot on an orange platform."], "sample_ids": ["fdecae38142646179e3e37d95e36ca50", "7407a108e0354925b83b750339bc03df"], "properties": ["a, b, c", "platform, color, orange"], "captions_pred_pc": ["for a black square tile on a white background", "a black and white illustration of a bicycle"], "captions_pred_image": ["a line of white cubes with various insects on them", "a 3d model of a motorcycle on a pedestal"], "question": "which entity has a platform that is orange?", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", " a two-story small apartment building with a roof."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "8d1102e923954604ae7045a7ca14c1f6"], "properties": ["building, tree, plane", "two-story, roof, building"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of an apartment building royalty free 3d model preview no 2"], "question": "which building has a roof", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["color, shape, size", "color, sphere, molecule"], "captions_pred_pc": ["a black and white illustration of the letter u", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": ["a featuring a bowl of soup, a brush, a knife, a slice of pizza, a torn piece of paper, and a roof with a hole in it.", " a house with a yellow roof, wooden beams, and yellow frames."], "sample_ids": ["db19e46828c94b1a8b9a6ca9f673c604", "703dce44052e48cfb024bceb08141554"], "properties": ["a, roof, soup", "roof, beams, frames"], "captions_pred_pc": ["in 15 words or fewer a black and white illustration of the moon", "a black and white drawing of a boat"], "captions_pred_image": ["a 3d model of a bowl and chopsticks on a sheet of paper", "a 3d model of a wooden structure"], "question": "which roof is yellow", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", " a concrete wall with peeling paint and rusted metal features."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "4376831ff557462dbacc4cce88a8cc86"], "properties": ["color, shape, and material", "paint, rust, concrete"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white image of a shelf on a white background"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a concrete wall"], "question": "which entity is made of rust", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a 3d printed green robot with two arms and two legs."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "04e3e8ce541e487b9e342570fe1b4eb2"], "properties": ["color, light, jewels", "color is green, material is 3d printed, number of limbs is 2"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "a black and white image of a robot in the shape of a snowflake"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a futuristic robot standing on its hind legs"], "question": "which robot has more limbs", "label": 1}, {"captions": [" a white and gold mirror on a wooden easel stand.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["0d10d734448d4a5d8d07b938c12d9d80", "c3a82df41875402285608ef13a55df57"], "properties": ["color, white, gold", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["for a black and white image of a shoe on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a standing mirror on a white background", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", "3d white playground set with slides and swings, featuring a plane, building, and dragon in the sky."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "e694d53545d449319a64cceb0280c3c6"], "properties": ["top, color, wood", "3d, slide, swing"], "captions_pred_pc": ["a black and white drawing of a fireplace", "for a 3d model of the letter 'j'"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a playground slide"], "question": "which object has a slide?", "label": 1}, {"captions": ["a 3d collection featuring a cash register, destroyed car, pos machine with credit card machine, broken cell phone, black and blue phone, atm machine, crocodile's head, and broken roof.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["d9681d1f6fad42ab8d498cba24339ca8", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["pos machine, credit card machine, cash register", "moss, mushroom, grass"], "captions_pred_pc": ["a black and white illustration of a glass bottle", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a vintage cash register sitting on top of a table", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has moss?", "label": 1}, {"captions": ["s of a cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, and cow.", " a small, modern house with a green roof, located on a hill, surrounded by trees, grass, and a pond."], "sample_ids": ["7adf9de5fb734455a3a3a7f084e3d628", "a452d5381dad4dc09f5ebe10635ae5fe"], "properties": ["cat, toilet, white bird with black eyes, stuffed animal, man in a white shirt, paper airplane, cow", "house, roof, green"], "captions_pred_pc": ["a black and white image of a flying saucer", "above an illustration of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white image of a black and white"], "captions_pred_image": ["a black and white image of a fighter plane flying upside down", "a 3d model of a building with a black roof"], "question": "which entity has a green roof", "label": 1}, {"captions": [" a white and pink unicorn toy with a horn, wearing pink shoes and a blue and pink hat.", " of two rocks with ice elements."], "sample_ids": ["a89c39825f9b473ea30970d8d196fa43", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, hat, shoes", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a teddy bear", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a cartoon character laying on the ground royalty free 3d model no.2", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a 3d collection featuring a black and white motorcycle helmet, a white plastic cup with a black lid, a cow's head, a white face mask, a white helmet, a white and black earphone, and a black and white chair.", " a small white box with a green light."], "sample_ids": ["06a5097b2bcf4192b8b881e04a74a580", "a5e37b9c782c4340b4dea45fbe1c701a"], "properties": ["color, white, black, white", "color, white, light"], "captions_pred_pc": ["a black and white image of a toothbrush on a white background", "a 3d sculpture of a vase made of small black dots on a white background 3d sculpture of a vase made of small black dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d illustration of a black and white cow's head on a white background", "a 3d rendering of a small white box"], "question": "which object is white", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["roof, purple, suspended", "door, lock, handle"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white image of a door with a crack in it"], "question": "which door has a lock", "label": 1}, {"captions": [" a small house with a blue roof.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, color, blue", "roof, color, yellow"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small house with trees and plants, featuring a white box with a blue lid and a green triangle, accompanied by a christmas tree."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "4a889132cc444d10bfcbf6c760984416"], "properties": ["color, shape, and size", "a, color, white"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white illustration of a dandelion on a white background dandelion illustration on a white background stock illustration \u00a9 iStock/Getty Images"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a 3d model of a desk and chair"], "question": "which entity is a white color?", "label": 1}, {"captions": ["a 3d blue star featuring various text, including \"prchen,\" \"bible chen,\" \"rib chicken,\" and \"birch chen.\"", " a white plastic container with a lid, a small box, a cup, a bottle, and a jar."], "sample_ids": ["0b712fc68ad44ce8a33592d2b26aac18", "20a02705a66f460492e07345e84a62ed"], "properties": ["color, shape, text", "a box, a cup, a bottle, a jar"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "a black and white pattern of dots on a white background"], "captions_pred_image": ["a white paper airplane flying over a gray background", "a 3d model of a plastic bottle, a plastic cap, and a plastic container"], "question": "which object has a lid", "label": 1}, {"captions": [" a modern office building with a green door, green roof, windows, and blue lights.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["d6087023095446fbadef1721478373b2", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["door, roof, window", "island, mountain, grass"], "captions_pred_pc": ["a black and white drawing of a toilet brush", "a black and white map of the island of malta"], "captions_pred_image": ["a 3d model of an apartment building", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small wooden house."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["a room, a cake, a table", "house, material, wood"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a small white building with stairs and a white table.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["e30374c614f54fdb90f35b96b071349d", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["building, stairs, table", "house, rock, bird"], "captions_pred_pc": ["above a black and white drawing of a cat sitting on top of a letter 'e'", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of a building with a staircase", "a 3d rendering of a house on a rock"], "question": "which entity has a bird on a rock?", "label": 1}, {"captions": [" a small white closet-like structure with a door, resembling a kitchen cabinet or miniature house.", " a large white and metal building with a metal roof structure."], "sample_ids": ["37954d951eb24f23a4956df5a683bb92", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["door, white, structure", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of a house made up of tiny dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a modern, minimalist bathroom", "a 3d model of a large white box"], "question": "which structure has a metal roof", "label": 1}, {"captions": [" a shattered piece of paper, resembling a broken phone and a flying newspaper.", " a stone throne with stairs and a tree, accompanied by a concrete wall featuring a statue and a fireplace with a shelf above it."], "sample_ids": ["80d02e2b6ceb4a3a81b6b67d2d98bc0a", "93fb4197f0014f7582029af24c7ed9de"], "properties": ["shattered, resembles, broken phone", "throne, stairs, tree"], "captions_pred_pc": ["for black ink brush strokes on a white background", "in 15 words or less a black and white image of a toilet paper roll on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a snowboarder in mid-air over a snowy landscape", "a 3d model of a throne with a tree on it"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["building, stairs, shelves", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a table with a staircase"], "question": "which entity has a staircase", "label": 1}, {"captions": [" of a green and black dragon sword with axe features.", " of a character wearing glasses and a hat."], "sample_ids": ["261ee727223544b695ce4e98eb395cbb", "032e7ce682ff43d5aa5ca4fd34eacf14"], "properties": ["color, shape, material", "hat, glasses, character"], "captions_pred_pc": ["of a 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space shuttle 3d model of a space", "in 15 words or less a silhouette of a bell on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a skull-shaped helmet with spikes", "a 3d model of a person wearing sunglasses"], "question": "which entity is a character?", "label": 1}, {"captions": ["a 3d white object resembling a knife, sword, and airplane.", " of two rocks with ice elements."], "sample_ids": ["d88df1cb10da467bb6f77af6aeaa8f86", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["shape is cylinder, color is white, material is plastic", "image is a rock with ice elements"], "captions_pred_pc": ["of a spike on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d image of two rocks on a gray surface"], "question": "which object is made of ice", "label": 1}, {"captions": [" a house featuring a detailed roof structure and a suspended ceiling with a map on it.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["ee7e6031912b46bc8ca7205a959c5c16", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["roof, structure, suspended", "roof, color, yellow"], "captions_pred_pc": ["a black and white image of a piece of lace", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a house with a metal roof", "a 3d model of a house with a roof"], "question": "which roof is yellow", "label": 1}, {"captions": [" a small gnome chandelier with three candles, featuring red and blue lights and adorned with pink and blue ribbons.", " of a crab holding a rubik's cube."], "sample_ids": ["6398f4e75a2d480da58396827ac64249", "d351e74340e14ef09fb24b69dd4a6502"], "properties": ["- color is red, blue, pink", "image is a crab holding a rubik's cube"], "captions_pred_pc": ["for a black and white image of an object on a white background", "a black and white drawing of a spider on a white background"], "captions_pred_image": ["a white chandelier with three light bulbs hanging from the ceiling", "a black and white image of a crab holding a cube"], "question": "which entity is a picture of a crab holding a rubik's cube?", "label": 1}, {"captions": [" a small village featuring houses, trees, and a winding road.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["7acf46c0265d4e39b97ac084852abde8", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["houses, trees, road", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["in 15 words or less a black and white photo of a mountain landscape", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a black and white photograph of a small town", "a 3d model of an antique gramophone"], "question": "which image has a wooden base", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " of a person breaking through a brick wall."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "image, brick, wall"], "captions_pred_pc": ["a black and white map of germany on a white background", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": ["a 3d black and white lego man wearing a top hat and glasses.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["6035f4b6e60e437dbee47d2ace2d159e", "d81d13362ae04371bb2cba46e4939665"], "properties": ["color, hat, glasses", "hat, bow, arrow"], "captions_pred_pc": ["a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a penguin wearing a top hat and holding a cane royalty-free 3d model preview", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat", "label": 1}, {"captions": ["a black rock with writing on it.", " a white and gold mirror on a wooden easel stand."], "sample_ids": ["f9e35785655f464d8384a8d562de4ba2", "0d10d734448d4a5d8d07b938c12d9d80"], "properties": ["color, black, writing", "color, white, gold"], "captions_pred_pc": ["a black and white image of a sphere with dots on it", "for a black and white image of a shoe on a white background"], "captions_pred_image": ["a black and white photograph of a rock with writing on it", "a 3d model of a standing mirror on a white background"], "question": "which object is white and gold?", "label": 1}, {"captions": [" a large bridge over a highway, with an airport and train station nearby.", " a child's room in a small house with windows."], "sample_ids": ["b348fddc913f47df93cf35db302427d0", "88847a6445044bcbab9611e6028a19b9"], "properties": ["location, highway, train station", "room, house, windows"], "captions_pred_pc": ["a black and white photo of a small square on a white background", "for a black and white drawing of a snowflake"], "captions_pred_image": ["an aerial view of a city with a highway in the foreground and buildings in the background", "a 3d model of a child's room with toys and furniture in it royalty free 3d model preview no.1"], "question": "which entity is a room?", "label": 1}, {"captions": ["sonic the hedgehog with a red nose and blue monster features.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["f2a462cfea214cd894692af7544f8441", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, nose, blue", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a funny monster", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a cartoon character", "a sculpture of a man's head on a pedestal"], "question": "which entity is made of clay", "label": 1}, {"captions": ["a 3d bronze statue of a buddha sitting on a wooden chair with an eagle design.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["80cc05e292b0437ba3189b68f6da0ca0", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["buddha, chair, design", "house, table, chair"], "captions_pred_pc": ["a black and white image of a cactus on a white background", "above a black and white photograph of an open door"], "captions_pred_image": ["3d model of a buddha statue royalty free 3d model preview no 3", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" of a gray stereo system with a blue drawer, resembling a printer and computer with a blue screen, featuring a cd player.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["3d4d965e67744415b69ff6aaeb11f420", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, screen, drawer", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a brush", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a printer on a white background royalty free 3d model no.2", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a woman wearing a green outfit with a top and pants."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "19c7f81bdc5d45c2ac9e522a5c330678"], "properties": ["bed, desk, window", "outfit, color, green"], "captions_pred_pc": ["of a black and white drawing of a curved line", "above a black and white illustration of a person wearing a jumpsuit"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a mannequin wearing a shirt and pants"], "question": "which entity is a top and pants?", "label": 1}, {"captions": ["a white of a city landscape with various objects and a ceiling light.", " a small white house with windows and a black lid."], "sample_ids": ["770e577c9795435898209fd24191635b", "4b40af369c1149949f5ccb68becd8430"], "properties": ["image, color, light", "white, windows, lid"], "captions_pred_pc": ["a black and white drawing of a window in the shape of a square on a white background a black and white drawing of a window in the shape of a square on a white background royalty free illustration", "above a black and white image of dots on a white background"], "captions_pred_image": ["a white 3d model of a small town", "a 3d model of a white house with three windows"], "question": "which image is black and white?", "label": 1}, {"captions": [" a white dragon with red horns and eyes.", " of two rocks with ice elements."], "sample_ids": ["b7efa835186c4084b4d6ca2479af78fb", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, horns, eyes", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white image of a sculpture made up of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a goat's head with horns", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a house with a flat roof structure."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "abc52d210d71415296730bb00352ce6f"], "properties": ["roof, color, pink", "roof, flat, structure"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": [" a leather recliner chair and ottoman set, featuring swivel functionality and available in modern orange, tan, and brown colors.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["44be138ae8e2409bbbca44a96fc67d45", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, tan, brown, orange", "water, boat, rock"], "captions_pred_pc": ["above a black and white illustration of an office chair", "a black and white illustration of a surfboard"], "captions_pred_image": ["a grey leather lounge chair with ottoman and footstool", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " of a small white building with stairs and a lid."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "6ba301c579fa465fa454fe7487eb70cb"], "properties": ["s, chimpanzee, human, wolf", "building, stairs, lid"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "in 15 words or less a black and white drawing of a leopard on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a 3d model of a white box on a gray background"], "question": "which entity has a lid?", "label": 1}, {"captions": [" a red and black jellyfish, flower, crab, and bomb.", " a small triangular-shaped object."], "sample_ids": ["2cc8ee5ed7e74a08aec2f503ddc49d25", "2d02985030804209a26c2c53b96a06f9"], "properties": ["color, shape, and size", "shape, triangle, small"], "captions_pred_pc": ["a 3d sculpture of a girl in a dress holding an umbrella", "a black and white image of a piece of metal"], "captions_pred_image": ["a black and white image of a group of small objects floating in the air", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", " a black and white cube-shaped building with a staircase."], "sample_ids": ["b5afccae993346079483507296fbb029", "587e65f2d904440488a98dfa9a4e9dbe"], "properties": ["shape is square, material is metal, color is rusty", "shape is cube, color is black, white"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "above a black and white photograph of a sculpture"], "captions_pred_image": ["a 3d model of a concrete column", "a black and white 3d model of a building"], "question": "which building is black and white?", "label": 1}, {"captions": [" a white hospital operating room with blue containers and medical equipment.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["a10f3196831647bc8842eacac640047d", "5414d75e47104589837f3df8b6de6d22"], "properties": ["color, white, containers", "beige, white, round"], "captions_pred_pc": ["a black and white illustration of the letter 'f' made up of tiny dots", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room 3d model of a hospital room", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is white", "label": 1}, {"captions": [" a castle on an island with a small floating house, trees, and clouds.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["c4c09479570943e2845fbd4c6a450568", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["castle, island, house", "bed, desk, window"], "captions_pred_pc": ["above a black and white illustration of a group of dots in the shape of a circle", "of a black and white drawing of a curved line"], "captions_pred_image": ["a 3d model of a small house on an island", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" of a small white building or house with a white ceiling and kitchen hood.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["17b23d23309d4385938ced3ca536a1d1", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["building, ceiling, kitchen", "building, ceiling, kitchen"], "captions_pred_pc": ["above a black and white drawing of a bathroom with a toilet and sink", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of a white building on a gray background", "a 3d model of a white building on a gray background"], "question": "which entity has a white ceiling and kitchen hood?", "label": 0}, {"captions": [" a vibrant city skyline featuring various colored buildings, trees, and skyscrapers.", " a floating small island with trees, grass, and a mountain."], "sample_ids": ["1a1fb9b0d83845f6b1238fb45e0defff", "95e0d4e2464b433dbb6c4d1d30e8150f"], "properties": ["color, skyline, buildings", "island, mountain, grass"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white map of the island of malta"], "captions_pred_image": ["a black and white 3d model of a city skyline", "a 3d image of a small island in the middle of a lake"], "question": "which entity has a mountain?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "a white ceramic vase with the words 'happy' and 'fish' written on it."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "243cd2c469984313b1522dca099eefd3"], "properties": ["color, shape, material", "color, white, material, ceramic"], "captions_pred_pc": ["of a black bracelet with dots on it", "a black and white image of a vase in the shape of a fish"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a white vase on a grey background"], "question": "which object is made of ceramic", "label": 1}, {"captions": [" a black and purple cylinder with a map, purple flower, and shattered pieces.", "a black motorcycle helmet with a face mask and visor."], "sample_ids": ["5b75108921124a39a71d9bc53d41d245", "ad6df43a2ce24edfb15f5bb64755ed0d"], "properties": ["color, shape, material", "color, black, visor"], "captions_pred_pc": ["a black and white abstract explosion on a white background a black and white abstract explosion on a white background royalty free illustration", "a black and white circular shape made up of many small dots on a white background a black and white circular shape made up of many small dots on a white background illustration"], "captions_pred_image": ["a 3d rendering of a black cylinder with white writing on it", "a black motorcycle helmet with a visor on top"], "question": "which entity is made of a visor", "label": 1}, {"captions": [" of a metal plaque featuring a picture of a person.", " of a white chest of drawers with legs."], "sample_ids": ["b9aca92461fc41f89c32dedbfab62be4", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["picture, plaque, person", "chest of drawers, legs, white"], "captions_pred_pc": ["a long black line on a white background royalty free illustration", "of a black and white leopard print rug"], "captions_pred_image": ["a black and white photo of a plaque on a wall", "a 3d rendering of a white dresser"], "question": "which object has legs", "label": 1}, {"captions": [" a small wooden house.", " a large white and metal building with a metal roof structure."], "sample_ids": ["4cb4dba1237443eb8dc299530fa12521", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["house, material, wood", "roof, metal, white"], "captions_pred_pc": ["a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a small cottage", "a 3d model of a large white box"], "question": "which building is made of metal", "label": 1}, {"captions": ["a small blue plastic box with a lid and handle.", " a small house with a roof and door, resembling a shack or shed."], "sample_ids": ["3e5cc957c888491ba1a5773299d3daa9", "f1b557775310478893242180defa4d80"], "properties": ["blue, lid, handle", "shack, roof, door"], "captions_pred_pc": ["in 15 or fewer words a black and white illustration of a rectangular tray", "a black and white illustration of a telephone on a white background"], "captions_pred_image": ["a 3d rendering of a gray plastic container", "a 3d model of a small house in the middle of a field"], "question": "which entity is a shack?", "label": 1}, {"captions": [" a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole.", "a 3d low poly model of a hammer and an axe with wooden handles."], "sample_ids": ["6823de4492ef4b5b835c7468d53e0325", "c4e45a41478e42418399074b88d8920f"], "properties": ["shape is cylindrical, color is silver, material is metal", "axe, handle, wood"], "captions_pred_pc": ["a black and white image of a cone shaped object", "for a black and white image of a bird's wing"], "captions_pred_image": ["a 3d model of a tall, slender object in the air", "a 3d model of a knife on a white background"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a skeleton, torn paper, long stick, rock, and broken wood.", " of two rocks with ice elements."], "sample_ids": ["46903bf029934b1989bc062dcb0a5531", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["skeleton, torn, paper, long stick, rock, broken wood", "image is a rock with ice elements"], "captions_pred_pc": ["a close up of a black object on a white background", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d sculpture of a person's hand in the air royalty-free 3d model preview", "a 3d image of two rocks on a gray surface"], "question": "which image shows a rock with ice elements?", "label": 1}, {"captions": ["green toy sand bucket and shovel with a squirt gun.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["ae173b4afc4d4b0499f1e4e55d647c06", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["color, green, squirt gun", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a bucket with a sponge and a sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in the shape of a sponge sponge brush in", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of a bucket and shovel royalty free 3d model preview no.2", "a black and white image of a rock formation on a gray background"], "question": "which image is a rock formation?", "label": 1}, {"captions": [" a white shelf with holes and brackets.", " a small purple plastic chair with holes."], "sample_ids": ["8f17016d6c0049fc98c5bfe5e6265740", "fe2bf0f8f5c64dd6bac3e2da0d1b89d0"], "properties": ["color, white, holes", "color, plastic, purple"], "captions_pred_pc": ["a black and white image of a triangle with dots on it", "this image may contain clothing apparel accessory purse bag and handbag"], "captions_pred_image": ["a white bench with a shelf on top", "3d model of a chair royalty free 3d model preview no 3"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " of a stone wall with a window and multiple stone arches."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "db74ee1621464be1b164be26a1af050e"], "properties": ["a box, a cup, a bottle, a jar", "window, arches, wall"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white illustration of a bolt and nut on a white background a black and white illustration of a bolt and nut on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of an old brick wall"], "question": "which entity has a window", "label": 1}, {"captions": [" of a flat roof with a floor heating system and ceiling featuring wood beams and light.", " a house with a roof and beams."], "sample_ids": ["30a0b34d05ae48cf9f9e26eb0d842e50", "c139e8fcbdbc4f63a9c8a06152c4dc2e"], "properties": ["ceiling, beams, light", "roof, beams, house"], "captions_pred_pc": ["a black and white drawing of a window", "in 15 words or less a black and white illustration of a 3d object in the shape of a square"], "captions_pred_image": ["a 3d model of a brick wall with a roof on top", "a 3d model of a building with a roof"], "question": "which entity has a roof and beams", "label": 1}, {"captions": [" of a colorful green, yellow, and blue bird.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["b8c3b9076fd14b0e934f2784d8de105a", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["color, bird, green, yellow, blue", "island, terrain, water"], "captions_pred_pc": ["above a black and white image of a bird in flight", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["3d model of a bird royalty-free 3d model preview", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" of a small wooden house with a roof.", " a house with a roof, roof truss, and suspended ceiling structure."], "sample_ids": ["f5904a9d87ff4fa688146c18c1f27fec", "5abf69f79b92484fb54d41ff0c0a2c11"], "properties": ["roof, house, wooden", "roof, truss, suspended ceiling"], "captions_pred_pc": ["a black and white drawing of a house with dots", "a suitcase made of dots on a white background a suitcase made of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a house with roof trusses"], "question": "which house has a roof", "label": 1}, {"captions": [" of an ipad stand with a small speaker and blue-white light on a cylindrical base.", " of a beige and white round soap dish/small bowl."], "sample_ids": ["e0694fef8e414d69a6a89cdffd212c86", "5414d75e47104589837f3df8b6de6d22"], "properties": ["base, speaker, light", "beige, white, round"], "captions_pred_pc": ["above a black and white illustration of a clock", "of a 3d model of a bracelet 3d model of a bracelet on a white background royalty free illustration 2019"], "captions_pred_image": ["a 3d model of a tablet stand on a pedestal royalty-free 3d model", "a white ceramic bowl sitting on top of a gray surface"], "question": "which object is round?", "label": 1}, {"captions": [" a red and white robot.", "a 3d white cube with windows resembling a building."], "sample_ids": ["75e058152d8e438a9c6f8abf112e8d89", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, red, white", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a black and white drawing of a monkey wearing a hat", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a robot standing in a neutral pose royalty free 3d model preview no 3", "a 3d model of a cube"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a red hat, floating cup, bowl filled with candy, and a strawberry.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["e27a9fd533dc41da9cf2eeb8fee2a5af", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["hat, candy, strawberry", "building, room, sky"], "captions_pred_pc": ["a black and white illustration of two spheres", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a black and white image of a person wearing a hat", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a room?", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["roof truss, insulation, suspended ceiling", "table, staircase, light"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a 3d model of a table with a staircase"], "question": "which entity has a staircase?", "label": 1}, {"captions": [" featuring a sandbox, sand bucket, wooden blocks, water container, and a lamp made out of blocks.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["674a36147ffb47059e48abc9fa19d923", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["sandbox, sand bucket, wooden blocks", "roof, color, yellow"], "captions_pred_pc": ["for a black and white photo of a basketball hoop", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a brick, a box, and a pile of dirt royalty free 3d model preview no. 3", "a 3d model of a house with a roof"], "question": "which entity has a roof", "label": 1}, {"captions": [" a large, rusty, square-shaped metal pillar resembling a rusted tower.", "royalty-free of a golden gramophone with a wooden base and umbrella."], "sample_ids": ["b5afccae993346079483507296fbb029", "90bd720f583c4130a6273f5a94f6ae69"], "properties": ["shape is square, material is metal, color is rusty", "image is royalty-free, gramophone, base"], "captions_pred_pc": ["above a black and white image of a square frame with dots", "a black and white illustration of a water droplet in the shape of a snowflake"], "captions_pred_image": ["a 3d model of a concrete column", "a 3d model of an antique gramophone"], "question": "which object has a wooden base", "label": 1}, {"captions": ["a featuring a plane, a small plane, a bird, and a dragonfly all flying in the air.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["f39783d05dec49e49482c407d656e0f7", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["a, plane, small plane", "hat, skull, bread"], "captions_pred_pc": ["of a black and white photo of an airplane propeller", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d printed model of a fighter plane in the air", "a black and white image of a stone sculpture"], "question": "which entity has a skull?", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "white ceramic face sculpture resembling an ice cream blob."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "8abc3a28cbba40428c9b364f90a4982a"], "properties": ["- material is plastic- shape is dice- color is white", "blob, face, white"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "above a black and white photograph of a starfish"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a head with eyes and a nose"], "question": "which object is made of ceramic?", "label": 1}, {"captions": [" a woman with long wings, legs, hair, and spikes, accompanied by a spider with long legs.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["68cf560d0c424ec6a3c58e1b9967508d", "bf18bfd89efd43389781050230467d58"], "properties": ["hair, legs, wings", "Lights, number, five"], "captions_pred_pc": ["of a white and black bird flying in front of a white background", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a woman with a large spider-like creature on her back", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": [" a green cucumber wearing a white hat, tie, and white cream, accompanied by a green bottle with a white cap, a cartoon character in a green shirt, and a green and black bomb.", " a small island with trees, grass, water, and rocky terrain."], "sample_ids": ["0434eb3aa73e42a5a2570ec9c1a9b96b", "d5e708b7549e48e2b02fd6fe9f197ec2"], "properties": ["green, hat, cream", "island, terrain, water"], "captions_pred_pc": ["a black and white image of a pair of earrings", "a black and white photograph of a piece of paper with dots on it"], "captions_pred_image": ["a 3d model of a vibrator in a grey and white color scheme royalty-free 3d model no.", "a 3d image of a small island in the middle of a lake"], "question": "which entity has more water", "label": 1}, {"captions": [" a white plastic container with a lid, a small box, a cup, a bottle, and a jar.", " a small building with windows and a roof."], "sample_ids": ["20a02705a66f460492e07345e84a62ed", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["a box, a cup, a bottle, a jar", "roof, windows, building"], "captions_pred_pc": ["a black and white pattern of dots on a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a plastic bottle, a plastic cap, and a plastic container", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which entity has a roof", "label": 1}, {"captions": [" a mountainous landmass, resembling a small island or state like kentucky or wyoming.", "s of a cat, fish, person with a hat, pig with a green hat and swimsuit, and a green and pink bird."], "sample_ids": ["8ca9b999b69c4965bd9eb4445d605bf2", "402601779d1d4146b4cde106dfff1b27"], "properties": ["mountainous, landmass, state", "s, cat, fish, person, pig, bird"], "captions_pred_pc": ["a black and white map of the state of new york", "above a black and white photo of a toy octopus on a white background"], "captions_pred_image": ["a 3d model of a piece of paper", "a snowflake in the air on a cloudy day"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a white sofa, chair, and box.", " of two rocks with ice elements."], "sample_ids": ["4c59733ebd634594a921b7ace60e4142", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["sofa, chair, box", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a couch with dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a white chair", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a multicolored rock with various green, brown, and other hues, featuring a hole.", "a featuring a building, a square, a cloud with a square in the middle, a group of people in a room and a field, and clouds floating in the sky."], "sample_ids": ["04be3554cef349f2bc631b7f30898228", "8557a15b9f244d2cbf16786dbc8b7b25"], "properties": ["color, shape, material", "building, room, sky"], "captions_pred_pc": ["a map of the country in black ink on a white background royalty free illustration", "above a black and white image of a person's hand holding a paintbrush"], "captions_pred_image": ["a 3d model of a rock on a white background royalty free 3d model preview no 1", "a 3d rendering of white clouds floating in the air"], "question": "which entity has a building?", "label": 1}, {"captions": ["a 3d white cube with a square in the middle.", " a wooden door with a lock, handle, and a piece of paper on it."], "sample_ids": ["78fd9a7f4b2849c48ff4a7eef383883e", "78762b19b7dc4823a0033ec63f092ca5"], "properties": ["color, shape, size", "door, lock, handle"], "captions_pred_pc": ["a black and white illustration of the letter u", "in 15 words or fewer a silhouette of an airplane flying in the sky royalty free illustration"], "captions_pred_image": ["a 3d model of a white box on a gray background", "a black and white image of a door with a crack in it"], "question": "which entity is a door?", "label": 1}, {"captions": ["s of a rock, boat, plane, and leaf on a stick.", " a pink room featuring a bed, desk, window, and lamp."], "sample_ids": ["be0884a7ced34b3d92687b6087798a1e", "395af20de6fe49dbbbb030f0e452cbe1"], "properties": ["s, stick, leaf", "bed, desk, window"], "captions_pred_pc": ["above a black and white drawing of an object floating in the sky", "of a black and white drawing of a curved line"], "captions_pred_image": ["a black and white photograph of a rock on a sandy surface", "a 3d model of a bedroom royalty free 3d model preview no.2"], "question": "which entity has a bed", "label": 1}, {"captions": [" a small building with a school, house, soccer field, and white ceiling light, featuring a white and green paper clip.", " a large steel building with a pool."], "sample_ids": ["97f487941d26472294e005fa97c403be", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, white, green", "building material, pool, steel"], "captions_pred_pc": ["for a black and white drawing of a computer keyboard", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of an office building", "a 3d model of a concrete structure"], "question": "which building is made of steel", "label": 1}, {"captions": [" a small house with a blue roof.", "a white of a spaceship and building."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "bf7d4277c9184d35abdec85bd5e25956"], "properties": ["roof, color, blue", "image, building, spaceship"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white drawing of a tree"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a white object on a gray background"], "question": "which image shows a spaceship and building?", "label": 1}, {"captions": [" a white, three-legged chair with a wooden heart-shaped backrest.", "a white glass beer mug."], "sample_ids": ["60a15d2032dc41b38dc8544e1a01f3cc", "1d686cbd3e9a4c629a43088658989286"], "properties": ["backrest, heart, wooden", "color, white, glass"], "captions_pred_pc": ["a black silhouette of a chair on a white background chair silhouette on a white background chair silhouette on a white background silhouette of a chair on a white background royalty free illustration", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a white chair with a wooden seat and legs", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" of a multi-colored spooling machine with wires and circuit board, featuring a lamp and shelf with toys.", " of a white chest of drawers with legs."], "sample_ids": ["0e3f5cc16806492b948d41a748819ce3", "f00dfa8b5e7e4fc6bbf97d718b66f390"], "properties": ["color, shape, material", "chest of drawers, legs, white"], "captions_pred_pc": ["a black and white image of a decorative tile", "of a black and white leopard print rug"], "captions_pred_image": ["a 3d rendering of an electronic device on a white surface", "a 3d rendering of a white dresser"], "question": "which object is made of wood", "label": 1}, {"captions": [" featuring a pink and white dress, a purple and white vase, a box, and a coffee cup with a purple flower.", " of two rocks with ice elements."], "sample_ids": ["ec2de6c604e44e6782ffab0c46daf33b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["a, dress, flower", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white drawing of a tea bag in the shape of a flower on a white background a black and white drawing of a tea bag in the shape of a flower on a white background royalty free illustration", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a vase and a book next to each other", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" of a white sheet of paper or box on a gray background.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["7b0c1e02d9b14f2fae4f1f7040661cc7", "d49d8ed244094349a99e4faca05e0690"], "properties": ["color, white, background, gray", "low poly, plant, white"], "captions_pred_pc": ["above a black and white photograph of an object", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a paper airplane", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a small clay pot/bowl with a stone and brick variation, accompanied by a piece of bread.", " of two rocks with ice elements."], "sample_ids": ["936714802d2849bea3efb1eb5c83cee6", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["variation, bread, pot", "image is a rock with ice elements"], "captions_pred_pc": ["above a black and white drawing of an object", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of an ancient pottery bowl", "a 3d image of two rocks on a gray surface"], "question": "which image is a rock with ice elements?", "label": 1}, {"captions": [" a small house with a blue roof, a door, and a pool.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["40c52c2d278345c5b4e8d00a991271dc", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["door, roof, pool", "house, roof, wooden"], "captions_pred_pc": ["of a black and white photo of a window with fringes", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a small house", "a black and white photograph of a birdhouse"], "question": "which house has a wooden roof", "label": 1}, {"captions": [" a white building with a square ceiling panel and a white 3d printed plane on top.", " a spider-like creature with long arms and legs."], "sample_ids": ["eb3ea0e6963f4efda2a8cf0732befd56", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["- material is 3d printed, ceiling panel is square, plane is white", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white drawing of a cross", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a 3d model of a building on a white surface", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a spider-like creature with long arms and legs."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "199bcb789e0c439bb2eeb32f2425cc36"], "properties": ["s of, snowboard, shoes, mask", "arachnid, leg, arm"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white illustration of a spider on a white background"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a black and white image of an alien creature"], "question": "which entity has more legs", "label": 1}, {"captions": ["white dragon with wings, .", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["353a650264d64cf28e6e0a080f76ee28", "bf18bfd89efd43389781050230467d58"], "properties": ["wings, white, dragon", "Lights, number, five"], "captions_pred_pc": ["for a black and white silhouette of a dragon", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a dragon flying in the sky royalty free 3d model preview no. 1", "a white chandelier with five white shades"], "question": "which entity has more lights", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a small white house with stairs, featuring a table, chair, and white box, along with a ceiling light."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "5ea0962b100b4fccb761ed84afe027b5"], "properties": ["a, eagle, wood", "house, table, chair"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a black and white photograph of an open door"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d rendering of a small white table with a chair"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a yellow triangular kite, resembling a bird with long legs, flying like a glider or airplane.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["22228e69a1704e58af5c9dd184843508", "b896a0898efe4059a776193c02132129"], "properties": ["yellow, shape, wingspan", "- material is stone, metal, concrete"], "captions_pred_pc": ["above a 3d rendering of a human body on a white background", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a white kite flying in the sky on a gray background", "a 3d model of an ancient statue"], "question": "which object is made of stone", "label": 1}, {"captions": [" of a white plastic tube with a hole and a chip on it.", " a destroyed car with rusted, broken metal and torn paper."], "sample_ids": ["9968e06a62e8487ea33460e640abc573", "3fe31c3bf5cd4574a8ca02222411a988"], "properties": ["color is white, material is plastic, shape is tube", "metal, rusted, paper"], "captions_pred_pc": ["a black and white image of a broom on a stand", "a black and white drawing of a person sitting in a chair"], "captions_pred_image": ["a white object on a gray background", "a black and white image of a piece of debris on the ground"], "question": "which object is made of metal", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", "an orange of a forklift truck in a parking lot."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "32d757fbd29640ffb5aab34925525a29"], "properties": ["bed, desk, window", "orange, forklift, parking lot"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white illustration of a cell phone"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a black and white photograph of a forklift"], "question": "which image shows a forklift truck in a parking lot?", "label": 1}, {"captions": [" a small building with a staircase in a room.", " a small white house with a roof."], "sample_ids": ["5a5b80af609a42acaebfdd086ae54336", "5776bd692bd240cb9c14817c821d7c22"], "properties": ["room, staircase, building", "roof, color, white"], "captions_pred_pc": ["a black and white image of the letter l", "a black and white drawing of a house on a white background"], "captions_pred_image": ["a 3d model of a staircase on a white surface", "a 3d model of a building with a white roof"], "question": "which building has a white roof", "label": 1}, {"captions": [" a small house with a road in front of it.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "c3a82df41875402285608ef13a55df57"], "properties": ["house, front, road", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house on a road", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a gold robot arm with a thank you sign, holding a camera and featuring a light and keychain.", " a small house with stairs and a roof."], "sample_ids": ["3f010c9478164c3db00cab997fdafa40", "e9305c80010f4e3b9de9789f01a9bee5"], "properties": ["arm, light, sign", "roof, stairs, house"], "captions_pred_pc": ["above a black and white image of a skateboard", "above a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on a pedestal 3d model of a robotic arm on", "a 3d rendering of a podium on a wooden floor"], "question": "which entity has a roof", "label": 1}, {"captions": [" of an egyptian sarcophagus.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["70aa484af2ab44149a608dd81a6ff459", "c3a82df41875402285608ef13a55df57"], "properties": ["sarcophagus, material, wood", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white circular pattern on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a black and white photograph of a sphere with egyptian hieroglyphics on it", "a white plastic object on a gray background"], "question": "which object is made of plastic", "label": 1}, {"captions": [" various fruits and vegetables.", " a small house with stairs, a roof, and a pillar."], "sample_ids": ["885fa3a9c60e4279ba7eb0d29c64ae3d", "a17477b445b3443189dad22f768b888b"], "properties": ["color, shape, size", "roof, pillar, stairs"], "captions_pred_pc": ["a black and white image of a sponge-like object", "a black and white image of a square with dots"], "captions_pred_image": ["a collection of various fruits and vegetables arranged on a table", "a 3d model of a small building with a balcony"], "question": "which entity has a roof", "label": 1}, {"captions": ["a white featuring a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet.", " a building with yellow lines."], "sample_ids": ["f28f57745af04115b0bacdde80c3b9ee", "f18e34286cf54876874f55ecc9018492"], "properties": ["a pair of binoculars, a coffee mug, a box with two handles, a trash can, and a toilet", "color, yellow, lines"], "captions_pred_pc": ["a black and white illustration of a pair of sunglasses", "a black and white drawing of a map"], "captions_pred_image": ["a 3d model of a medieval drinking horn 3d model available for 3d printing royalty free 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d model no. 3d", "a drawing of an airplane flying over a city"], "question": "which entity is a building?", "label": 1}, {"captions": [" a bridge structure with a pier, stairway, railings, and red and green elements.", " a large steel building with a pool."], "sample_ids": ["23701a9674204ea881fb8af9914b1924", "72eed67d8d884c819b28e2e95eb48f06"], "properties": ["color, pier, railings", "building material, pool, steel"], "captions_pred_pc": ["a black and white illustration of a computer keyboard", "a black and white illustration of a building with a tree growing out of it"], "captions_pred_image": ["a 3d model of a staircase in the middle of a field", "a 3d model of a concrete structure"], "question": "which building has a pool", "label": 1}, {"captions": [" a city with buildings, houses, trees, and grass.", " a blue and white sphere on a pedestal, with a blue and gold pillar and statue featuring a blue and white crown."], "sample_ids": ["bc649e19956041cf89c1572f1a33cff1", "e34088fc7b5344c4ab29fef067750225"], "properties": ["buildings, houses, grass", "sphere, pedestal, statue"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake on a white background royalty free illustration", "the image is a black and white illustration of a toilet bowl with a toilet seat on top of it the toilet bowl is made up of tiny dots and the toilet seat is also made up of tiny dots royalty free illustration"], "captions_pred_image": ["an image of a pile of trash on the ground", "a 3d model of a sculpture on top of a pedestal"], "question": "which entity has a sphere on a pedestal?", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", "a 3d white cube with windows resembling a building."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "4a07a5293f024bb0a353954a056ef626"], "properties": ["color, eye, handle", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a cube"], "question": "which entity is textured", "label": 1}, {"captions": ["a small blue couch with gold trim and a key attached, a blue and yellow chair, and various s of bags containing blue and green objects, a blue stone, and a frog on a cart.", " a white sofa, chair, and box."], "sample_ids": ["0e20c8a7599d43128d078d9a0973b5f9", "4c59733ebd634594a921b7ace60e4142"], "properties": ["blue, yellow, frog", "sofa, chair, box"], "captions_pred_pc": ["of a black and white photo of a chaise lounge", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a piece of furniture", "a 3d model of a white chair"], "question": "which entity has a sofa", "label": 1}, {"captions": [" a small white house with stairs and a wall-mounted shelf.", " a small house with a blue roof, a door, and a pool."], "sample_ids": ["10c4ba5b0db4490db9c00c21c94cb41f", "40c52c2d278345c5b4e8d00a991271dc"], "properties": ["house, color, white", "door, roof, pool"], "captions_pred_pc": ["above a black and white drawing of a bench", "of a black and white photo of a window with fringes"], "captions_pred_image": ["a 3d model of a small white building", "a 3d model of a small house"], "question": "which house has a blue roof", "label": 1}, {"captions": ["a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box.", " a wooden shed with a gray roof."], "sample_ids": ["7e2b63ba4ce24cecacea67dd052016c1", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["building, plane, room", "roof, color, gray"], "captions_pred_pc": ["a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a box with a lot of items inside", "a 3d model of a shed with a gray roof"], "question": "which building has a gray roof", "label": 1}, {"captions": [" a house featuring a roof, floor plan, small bathroom, pool, and ceiling light fixtures.", " a molecule featuring green, red, and blue spheres."], "sample_ids": ["6c6549e2975a48a1b59ebe2a6562900e", "1c0e821eb7c4489dbff9e20d7e8575a3"], "properties": ["floor plan, bathroom, pool", "color, sphere, molecule"], "captions_pred_pc": ["the floor plan of the house the floor plan of the house on a white background royalty free illustration", "a black and white photograph of a group of geometric shapes arranged in the shape of a diamond"], "captions_pred_image": ["a 3d model of a small house", "a 3d model of a molecule in the shape of a pyramid"], "question": "which entity is a molecule?", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " a pink-framed building structure with beams and trusses."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "18e392c5360146eda498c5edab25b15c"], "properties": ["color, head, white and brown", "frame, beams, trusses"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "a black and white drawing of a metal grate"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a building under construction"], "question": "which entity has a frame?", "label": 1}, {"captions": [" a wooden-framed house with roof trusses.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["e60dd370c5ec468da4689a801f951157", "6b745457e06840119058883b35f78f58"], "properties": ["frame, roof, trusses", "roof, color, blue"], "captions_pred_pc": ["a black and white drawing of a metal grate", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d model of a house under construction", "a 3d model of a house with a steeple on top"], "question": "which house has a blue roof", "label": 1}, {"captions": [" a metal-framed wall with red and blue bars in a steel structure.", " of a small wooden house with a blue roof and clock tower."], "sample_ids": ["fefc99453e2d4406a9668d5697224c0f", "6b745457e06840119058883b35f78f58"], "properties": ["color, red, blue, structure", "roof, color, blue"], "captions_pred_pc": ["a black and white image of a person holding a toothbrush", "a black and white image of a building with dots"], "captions_pred_image": ["a 3d rendering of a metal frame structure", "a 3d model of a house with a steeple on top"], "question": "which structure has a blue roof", "label": 1}, {"captions": [" a small white house with windows and a black lid.", " a small island featuring a large house, trees, and a village on a hill."], "sample_ids": ["4b40af369c1149949f5ccb68becd8430", "06a1c233fb444830b577aa06e2c01294"], "properties": ["white, windows, lid", "house, tree, hill"], "captions_pred_pc": ["above a black and white image of dots on a white background", "above a black and white image of a surfboard on a white background"], "captions_pred_image": ["a 3d model of a white house with three windows", "a black and white image of a house in the middle of a field"], "question": "which house is on a hill?", "label": 1}, {"captions": [" of a house with a pink roof.", " a row of houses featuring roof structures with green roofs and tiled roof slats."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "aef9b23a78a7450286a961cc13448d00"], "properties": ["color, roof, pink", "roof, green, tiled"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "of a black and white photo of a decorative metal wall hanging"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a set of stainless steel shelves"], "question": "which roof is made of tiles", "label": 1}, {"captions": [" a yellow and black hazard sign that says \"authorized personnel only.\"", " of two rocks with ice elements."], "sample_ids": ["74e8408828da4ce9b0faead75c01e0dd", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, shape, text", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white image of a screw", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a traffic barrier on a white background royalty-free 3d model preview no. 3", "a 3d image of two rocks on a gray surface"], "question": "which entity is a picture of a rock?", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "c3a82df41875402285608ef13a55df57"], "properties": ["color, red, blue, green", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a colorful, wire-framed building structure resembling a cube.", " of two rocks with ice elements."], "sample_ids": ["62b7c7c684044d998fee9ff35beeb79b", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, frame, shape", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of a building made up of dots", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a 3d model of a building structure", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", " a white sofa, chair, and box."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "4c59733ebd634594a921b7ace60e4142"], "properties": ["a, eagle, wood", "sofa, chair, box"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" of a black and white coffee table with a laptop, featuring a performance studio and ceiling grid structure.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["a177693cc8c7428292680816001b48c6", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["black, white, laptop", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a room with dots on the floor", "a black and white illustration of two spheres"], "captions_pred_image": ["a dishwasher with a dish inside it", "a black and white image of a person wearing a hat"], "question": "which entity has a floating cup?", "label": 1}, {"captions": [" a blue circuit board with electronic components.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["4816a2780af54492b6692fd78347f1ac", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["color, blue, components", "floor, staircase, balcony"], "captions_pred_pc": ["a black and white drawing of a person sitting on a bench", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d printed circuit board with various electronic components", "a 3d model of a bench on a wooden floor"], "question": "which entity has a floor", "label": 1}, {"captions": [" a small house with a roof and ceiling-mounted air conditioner.", " a stone statue featuring a woman with leaves and flowers, partially broken and surrounded by metal and concrete pieces."], "sample_ids": ["6965067ea9e34357a7af21a2f078fbac", "b896a0898efe4059a776193c02132129"], "properties": ["roof, air conditioner, house", "- material is stone, metal, concrete"], "captions_pred_pc": ["a black and white illustration of a window", "of a white candle in the shape of a buddha"], "captions_pred_image": ["a 3d rendering of a small house with a covered porch", "a 3d model of an ancient statue"], "question": "which entity is made of stone", "label": 1}, {"captions": [" a house featuring a pink-purple roof with trusses and wooden ceiling beams.", " a small house on an island with a boat and a bird on a rock."], "sample_ids": ["b6b6a3f82bdd47c3afaf9af885ba8703", "1e56a92a0ddc41e59694bd1ad1656149"], "properties": ["roof, trusses, beams", "house, rock, bird"], "captions_pred_pc": ["a black and white pattern of dots in the shape of a square royalty free illustration", "a black and white drawing of a boat in the middle of a body of water"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d rendering of a house on a rock"], "question": "which house has a boat?", "label": 1}, {"captions": [" a snow-covered mountain with blue and white stripes.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["a95e4948175142f39e7d157f801c60c3", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, shape, texture", "camera, speaker, ceiling fan"], "captions_pred_pc": ["above a black and white image of a spiral in the sky", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a mountain range in the desert royalty-free 3d model preview no. 1", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has more speakers", "label": 1}, {"captions": [" orange and yellow fish, candy, and a pair of shoes.", "a featuring a man, woman, robot, cat, and dog interacting in and around a house."], "sample_ids": ["0fa2a605d7e940e5946f63c0f74234f3", "92498f398e244020a867686729633610"], "properties": ["color, shape, and material", "a, house, cat, dog"], "captions_pred_pc": ["a black and white photograph of a group of plastic cups", "above a black and white illustration of a dog sitting on top of a pile of rocks"], "captions_pred_image": ["a 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes on a white background 3d rendering of a pair of shoes", "a 3d model of a person standing in front of a wall"], "question": "which entity is a photograph?", "label": 1}, {"captions": [" a small island featuring a large building, trees, and a house on a hill, surrounded by a forest.", " a potted plant on a wooden table or shelf."], "sample_ids": ["d557c62e9be741a6b0f6b204d11a9c6f", "1f99b86478764fa7abd65785a53ebbe8"], "properties": ["house, hill, forest", "potted plant, table, shelf"], "captions_pred_pc": ["above a black and white illustration of a small island in the middle of a body of water", "a black and white illustration of a plant in a vase on a white background vector illustration of a black and white illustration of a plant in a vase on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a small island in the middle of a body of water", "a black and white image of a plant in a pot"], "question": "which object is on a table?", "label": 1}, {"captions": [" a gold, silver, and brown shield.", " a small table with a staircase and a square ceiling light."], "sample_ids": ["b196502dac494aae8f343bf0e35b71cf", "ef0cbf4628b74253b885480deefe6fbd"], "properties": ["color, shape, material", "table, staircase, light"], "captions_pred_pc": ["a black and white image of a necklace with dots on it", "for a black and white image of a small square on a white background"], "captions_pred_image": ["a 3d rendering of a black and white wall mounted light fixture", "a 3d model of a table with a staircase"], "question": "which object is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " of a stone wall with a window and a clock."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "46fc13a04c8b47fa86215b9efc2eb1f9"], "properties": ["- color is white- shape is cube- material is plastic", "window, clock, wall"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a bullet in the middle of a starry sky"], "captions_pred_image": ["a 3d model of a white cube", "a 3d model of a brick wall"], "question": "which object is made of stone", "label": 1}, {"captions": [" a stone knife.", " a rusted metal barrel with a yellow and red warning sign and stripe on it."], "sample_ids": ["5f47b28737234dfab45608705baaf56f", "5a49ad82ef7a4d33badea2261720f518"], "properties": ["material is stone, blade is sharp, handle is wooden", "rusty, warning, metal"], "captions_pred_pc": ["a black and white image of a knife on a white background", "a black and white drawing of dots on a white background a black and white drawing of dots on a white background royalty free illustration"], "captions_pred_image": ["a knife with a long blade and a serrated edge", "a black and white photograph of a barrel"], "question": "which object is made of metal", "label": 1}, {"captions": [" a building structure featuring yellow and white poles, a yellow roof, and a suspended ceiling with yellow poles.", " of a person breaking through a brick wall."], "sample_ids": ["bd7aab78974643f5a0660c699daf8eb3", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["roof, color, yellow", "image, brick, wall"], "captions_pred_pc": ["a black and white drawing of a room", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of a table and chairs on a white background", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a destroyed car with rusted, broken metal and torn paper.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["3fe31c3bf5cd4574a8ca02222411a988", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["metal, rusted, paper", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white drawing of a person sitting in a chair", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a black and white image of a piece of debris on the ground", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": [" a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["f6c6e7a65a3e42dfa431b1d984c72f28", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, fence, dog", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white drawing of a bathroom", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" the white text \"ekberkaslan\" with a row of white cubes and a numbered box.", " a spiral staircase with a railing in a small building."], "sample_ids": ["87ee30d475f34b799c24bf7ef3a7b540", "28cae056856c4a8ba9d1a6af5355f831"], "properties": ["- color is white- shape is cubes- number is 1", "staircase, railing, building"], "captions_pred_pc": ["a close up of a black and white striped scarf", "a black and white photograph of a light switch"], "captions_pred_image": ["a 3d image of the word ebercaskalan on a white background", "a 3d model of a staircase in a white room"], "question": "which object has a railing", "label": 1}, {"captions": [" a blue and white cube with a hole in one wall, resembling a room or building.", " of a white human skull with broken bone elements."], "sample_ids": ["5c04dac989a64d228283687588484b93", "6ca0f91b85464d7a845b3977351dd0b5"], "properties": ["color, shape, material", "color, white, skull"], "captions_pred_pc": ["a 3d model of a ribbon with dots on it 3d model of a ribbon with dots on it, isolated on a white background royalty free illustration", "a black and white image of a cat's x-ray"], "captions_pred_image": ["a 3d model of a brick wall with a hole in it", "a 3d model of a human skull in white"], "question": "which entity is white", "label": 1}, {"captions": [" a white and yellow table with yellow legs and a metal roof structure.", " a chair with a yellow seat."], "sample_ids": ["a71c43af3c944bf5b6d12375f7d54811", "a4de5f2055154465968f33d6289c64e6"], "properties": ["color, white, yellow, roof, metal", "color, yellow, seat"], "captions_pred_pc": ["above a black and white drawing of a floor plan", "above a black and white drawing of a square with small dots"], "captions_pred_image": ["a 3d model of a white table with multiple cubes", "a 3d model of a chair on a white background royalty free 3d model no."], "question": "which object has a yellow seat", "label": 1}, {"captions": [" of a toy mushroom character with a white and brown head.", " of a white and brown sea shell with a hole and small pearls on it, resembling a sea urchin."], "sample_ids": ["ae8a73809d4647c09cc82f403e47de1d", "411c164757fc4de68dfecb35fa858223"], "properties": ["color, head, white and brown", "resembles, sea urchin, shell"], "captions_pred_pc": ["a black and white illustration of a butterfly sitting on a dandelion stock illustration", "in 15 words or less a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a white background illustration of a black and white illustration of a dandelion on a"], "captions_pred_image": ["a 3d model of a gray and white cartoon character", "a 3d model of a sea urchin"], "question": "which entity is a sea shell?", "label": 1}, {"captions": ["a pair of yellow pliers.", " a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink."], "sample_ids": ["570d29f10e5b428b91da27cff52bac56", "1ee3df6f94ea4c329a9c5245634e34d5"], "properties": ["color, yellow, pliers", "graffiti, chinese writing, door"], "captions_pred_pc": ["of a pair of pliers on a white background vector illustration of a pair of pliers on a white background illustration", "a black and white illustration of a bridge with dots"], "captions_pred_image": ["a pair of scissors on a white background", "a black and white image of a bathroom with a sink and a toilet"], "question": "which entity has a door?", "label": 1}, {"captions": [" a wall-mounted wooden panel with brown, black, gold, and white stripes.", " of two rocks with ice elements."], "sample_ids": ["2218f0aa140f4f2f87abaaabe3de5516", "a6e002dc07f94f65adc7a650de87d9f3"], "properties": ["color, material, pattern", "image is a rock with ice elements"], "captions_pred_pc": ["a black and white illustration of an ice cream cone", "a black and white image of two rocks on a white background"], "captions_pred_image": ["a black and white image of a shelf with multiple shelves", "a 3d image of two rocks on a gray surface"], "question": "which entity is a rock?", "label": 1}, {"captions": [" a green electrical utility box with a warning sign and a small blue box on a concrete base.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["8e39d4766ed4444ea527d6c5ea33a5ef", "c3a82df41875402285608ef13a55df57"], "properties": ["color, base, warning", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white illustration of a box with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of an electrical box royalty-free 3d model preview no.2", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a house with roof trusses and wooden beams on a suspended ceiling.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["3c2e3a3670b042069bd8290e2c357702", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["roof trusses, beams, suspended ceiling", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a house with a roof in progress royalty free 3d model preview no. 1", "a 3d model of a modern house"], "question": "which house has a pool", "label": 1}, {"captions": [" a building or house with a roof and floor plan, resembling a pyramid with a flat roof.", " a stone, wood, rock, sliced bread, and a skull with a blue hat."], "sample_ids": ["7a91292e1ed64e60a1bbbb499209a0df", "0169af65ffc64bbf8e2fe6c6de08d485"], "properties": ["apse, roof, floor plan", "hat, skull, bread"], "captions_pred_pc": ["a black and white drawing of a room", "a black and white illustration of a skull in the shape of dots"], "captions_pred_image": ["a 3d model of a building in the shape of a pyramid", "a black and white image of a stone sculpture"], "question": "which entity has a hat", "label": 1}, {"captions": [" a building featuring a radio tower with a red antenna.", " a house with a roof structure and toothbrushes."], "sample_ids": ["15d6b41485754984b57ea7990faa53cd", "7632d1ba4e8144c19484c263b6074d0c"], "properties": ["building, tower, color", "house, roof, toothbrushes"], "captions_pred_pc": ["for a black square on a white background", "a black and white illustration of the letter 'b' isolated on a white background illustration"], "captions_pred_image": ["a 3d model of a radio tower royalty free 3d model preview no 2", "a 3d rendering of a white box with a lot of blades"], "question": "which object is a roof structure?", "label": 1}, {"captions": [" a white arrowhead-shaped rock.", " a small house with a staircase, balcony, and wooden floor."], "sample_ids": ["d0d2a6bc3c3440028789eba8f9894d8e", "e67e211004cb450cbaf8139dd74ba39b"], "properties": ["shape, color, material", "floor, staircase, balcony"], "captions_pred_pc": ["of an arrowhead on a white background stock illustration illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background vector illustration of an arrowhead on a white background royalty free illustration illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on a white background illustration of an arrowhead on", "a black and white drawing of a wallet"], "captions_pred_image": ["a 3d model of a snowflake on a white background", "a 3d model of a bench on a wooden floor"], "question": "which object is made of wood", "label": 1}, {"captions": ["purple speech bubble and circle", "a featuring a building, a plane, a printing machine, a large machine, a room with a computer, and a large gray box."], "sample_ids": ["382b2c7ab4e14027a89be90966795733", "7e2b63ba4ce24cecacea67dd052016c1"], "properties": ["color, shape, size", "building, plane, room"], "captions_pred_pc": ["a black and white speech bubble on a white background", "a black and white image of a rectangular frame with dots on a white background a black and white image of a rectangular frame with dots on a white background royalty free illustration"], "captions_pred_image": ["a gray circle on a gray background with a small white dot in the center of the circle", "a 3d model of a box with a lot of items inside"], "question": "which entity has more rooms", "label": 1}, {"captions": [" a small white building with a door, resembling a box-shaped house.", " a small building with windows and a roof."], "sample_ids": ["1b5fe88d0ff149ae9d8b4eb455c5c90c", "0ef2cac27e364c0687afae7ab5040cc3"], "properties": ["shape is box, color is white, door is present", "roof, windows, building"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white square made up of small dots on a white background"], "captions_pred_image": ["a 3d model of a white, open shelving unit", "a 3d model of an apartment building royalty free 3d model preview no 3"], "question": "which building has a roof", "label": 1}, {"captions": ["a featuring a metal refrigerator, a graffiti-covered sink, and a metal toilet, all with rusted elements.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["e65de9c4ec9242679a45e74733f7d61d", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["rusty, sink, graffiti", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a black and white drawing of a room with a door and a rug on the floor a black and white drawing of a room with a door and a rug on the floor royalty free illustration", "for a black and white image of an object on a white background"], "captions_pred_image": ["a stainless steel toilet bowl on a pedestal", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": [" of a house with a pink roof.", " a large white and metal building with a metal roof structure."], "sample_ids": ["6162909df6294848a8eea83c3aa9585b", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color, roof, pink", "roof, metal, white"], "captions_pred_pc": ["a black and white drawing of the letter 'p' on a white background illustration", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a house in the style of the 1920s and 1930s", "a 3d model of a large white box"], "question": "which roof is made of metal", "label": 1}, {"captions": [" of a meat skewer with a small piece of bread and a sausage on a stick.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["1728f2cb8eca4080af02b22262ff45d5", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["meat, bread, sausage", "box, paper clip, lock"], "captions_pred_pc": ["a black and white image of a brush on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["an image of a small white object on a gray background", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock", "label": 1}, {"captions": [" a wooden cube.", " a clear glass table with metal legs and balls on top."], "sample_ids": ["ad3f96bc1c7e4aa88d71ae3dfafd0ad1", "7c2bfa826f274377ac21f48d510848c3"], "properties": ["shape is cube, material is wood, color is brown", "glass, metal, balls"], "captions_pred_pc": ["a black and white square made of dots on a white background", "a black and white image of a wine glass"], "captions_pred_image": ["a 3d model of a wooden crate", "a clear acrylic foosball table"], "question": "which object is made of glass", "label": 1}, {"captions": ["a 3d wooden pole with a metal spear handle.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["1d5cf234576e41f0ba209c5e19d2db47", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["- material is wood, metal, metal", "broom, shovel, fireplace"], "captions_pred_pc": ["of a black and white illustration of a vase on a pedestal", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a black and white image of an old-fashioned pitchfork", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a large metal building with a roof and truss structure."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "b85a99699ccd4bcba213322113bb253d"], "properties": ["top, color, wood", "roof, truss, structure"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a beige bottle, teddy bear, and head.", " a house featuring a wooden roof structure with trusses and beams."], "sample_ids": ["f2fcfd53946e48f59c7bfd992ef658b1", "97e000ff41094665afd94ea565da8b13"], "properties": ["beige, head, bottle", "roof, material, wood"], "captions_pred_pc": ["a black and white image of a flower in the shape of a dandelion", "a black and white drawing of a floor plan"], "captions_pred_image": ["a 3d model of a light bulb royalty free 3d model preview no. 3", "a 3d model of the roof of a building"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a white 3d printed mickey mouse dice with various numbers and symbols on it.", "red heart-shaped object."], "sample_ids": ["e2645ac544844f3c981203134a99c30c", "a848538c7e4249a4af8e86c477193fa1"], "properties": ["- material is plastic- shape is dice- color is white", "shape, heart, red"], "captions_pred_pc": ["a circle of dots with the number 2 in the center", "a black and white image of a skateboard with dots"], "captions_pred_image": ["a 3d printed white dice with a mickey mouse face", "a 3d model of a heart shaped object"], "question": "which object is red", "label": 1}, {"captions": [" a building featuring graffiti, chinese writing, a door, a broken window, and an interior bathroom with a sink.", " of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse."], "sample_ids": ["1ee3df6f94ea4c329a9c5245634e34d5", "9b2c93d651c3409096118c5ce5b993f2"], "properties": ["graffiti, chinese writing, door", "house, roof, blue"], "captions_pred_pc": ["a black and white illustration of a bridge with dots", "a black and white illustration of a coffee mug on a white background royalty free illustration"], "captions_pred_image": ["a black and white image of a bathroom with a sink and a toilet", "a 3d model of a small house and barn"], "question": "which entity has a blue roof", "label": 1}, {"captions": [" the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood.", " a white sofa, chair, and box."], "sample_ids": ["ee440fcbc493488e879539d37a8d820e", "4c59733ebd634594a921b7ace60e4142"], "properties": ["island, fish, ice", "sofa, chair, box"], "captions_pred_pc": ["above a black and white image of a mountain on a white background", "a black and white drawing of a couch with dots"], "captions_pred_image": ["a 3d map of the country of israel", "a 3d model of a white chair"], "question": "which entity has more furniture", "label": 1}, {"captions": [" of a small wooden house with two roofs.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["30fc23ae4edb42609e30e029dede54bd", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["house, roof, wooden", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["of a pair of stainless steel screws on a white background", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a small barn", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a two-story small apartment building with a roof.", " of a person breaking through a brick wall."], "sample_ids": ["8d1102e923954604ae7045a7ca14c1f6", "0708be2186d24d52815e8ac9d751fc37"], "properties": ["two-story, roof, building", "image, brick, wall"], "captions_pred_pc": ["a black and white pattern of dots in the shape of the letter c on a white background vector illustration of a black and white pattern of dots in the shape of the letter c on a white background royalty free illustration", "for a black and white illustration of an ice cream cone"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 2", "a 3d model of a person breaking through a brick wall"], "question": "which image shows a wall made of bricks?", "label": 1}, {"captions": [" a wooden desk with drawers and a green top.", " a large building with a roof and windows."], "sample_ids": ["ae41fa78e18748ab89571113754ea59a", "32d1fbd3ee91426882290305f70021e6"], "properties": ["top, color, wood", "roof, windows, building"], "captions_pred_pc": ["a black and white drawing of a fireplace", "of a black and white photo of a diamond buckle"], "captions_pred_image": ["a 3d model of a desk royalty free 3d model preview no 3", "a 3d model of an apartment building royalty free 3d model preview no.2"], "question": "which entity has a roof", "label": 1}, {"captions": [" a house with a roof structure and toothbrushes.", " a building featuring yellow columns, a yellow roof, and a wooden structure."], "sample_ids": ["7632d1ba4e8144c19484c263b6074d0c", "0ce6a4102f4f40e2a0084938b0a93941"], "properties": ["house, roof, toothbrushes", "structure, columns, roof"], "captions_pred_pc": ["a black and white illustration of the letter 'b' isolated on a white background illustration", "a black and white drawing of a window"], "captions_pred_image": ["a 3d rendering of a white box with a lot of blades", "a 3d model of a building with multiple levels"], "question": "which structure is made of wood", "label": 1}, {"captions": [" of a white rock-like object, possibly a shell or ice.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["096e42b466ec438d95c5d89a85191534", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["white, rock, shell", "mossy, rock, grass"], "captions_pred_pc": ["in one hundred words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words or less 100 words", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a white rock on a gray background", "a 3d model of a piece of wood on a white background"], "question": "which rock is covered in grass", "label": 1}, {"captions": ["a small clay jug with a face, handle, and spout, depicted as a .", " a clay pot with holes in it."], "sample_ids": ["ceee98c20f23424195da092156905ec4", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["face, handle, spout", "hole, material, clay"], "captions_pred_pc": ["a black and white image of a small, circular object", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a white ceramic vase with a face on it", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" a small black, white, and orange walkie-talkie.", " a large white and metal building with a metal roof structure."], "sample_ids": ["e098706085a44898abbd549693d12a64", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["color is black, white, orange", "roof, metal, white"], "captions_pred_pc": ["of a white and black clutch with a flower design", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d model of a walkie-talkie royalty free 3d model preview no 3", "a 3d model of a large white box"], "question": "which entity is made of metal", "label": 1}, {"captions": [" a house with a roof structure, featuring a brick wall and suspended box.", " a house with a yard, trees, bushes, and surrounding buildings."], "sample_ids": ["1a7bfcf3755142bab90d3d7cb02d0f2c", "7f8942ef51dd4246993a587a12df168c"], "properties": ["roof, structure, wall", "house, yard, surrounding buildings"], "captions_pred_pc": ["a black and white illustration of a group of dots on a white background", "a black and white image of a truck on a white background"], "captions_pred_image": ["a 3d model of a building with a roof", "a 3d model of a house in the middle of a field"], "question": "which house has a yard", "label": 1}, {"captions": [" a house with a blue roof, chimney, and wooden-beamed ceiling.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["b380dd4800124a8d96424a504eb0ec6a", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["roof, color, blue", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["of a white lace clutch purse on a white background", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a building with many windows", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a futuristic black and gold spaceship with a gun on it.", "a black rock with writing on it."], "sample_ids": ["6c34eb48b0c44667864a2af3fed92d6c", "f9e35785655f464d8384a8d562de4ba2"], "properties": ["color, shape, gun", "color, black, writing"], "captions_pred_pc": ["above a black and white photograph of a fighter jet", "a black and white image of a sphere with dots on it"], "captions_pred_image": ["a 3d model of a futuristic space fighter", "a black and white photograph of a rock with writing on it"], "question": "which object is black", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a small house on a hill in a field."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "bd873071252047d38160c4a5fdd2c1b7"], "properties": ["roof, purple, suspended", "house, hill, field"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white photograph of a piece of paper"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a black and white image of a small house"], "question": "which house is on a hill?", "label": 1}, {"captions": [" a white and black chair with a black handle and armrest.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["cf1f435c54b046f68d6603cd3369a94f", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, black, white, handle, armrest", "hat, candy, strawberry"], "captions_pred_pc": ["a black and white drawing of a geometric shape", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d rendering of a white chair with a black handle", "a black and white image of a person wearing a hat"], "question": "which entity has a strawberry?", "label": 1}, {"captions": ["a low poly of a deer, antelope, llama, capybara, and kangaroo.", " a four-legged metal workbench with shelves."], "sample_ids": ["8b4c2e3e76524d85a9395ea1169d953e", "e93b633d477942d9b79ef8ab566473d6"], "properties": ["low poly, llama, kangaroo", "Four legs, Metal, Shelf"], "captions_pred_pc": ["above a black and white image of an animal sculpture", "for a black and white illustration of a cross"], "captions_pred_image": ["a 3d low poly animal standing on its hind legs", "a 3d model of a table with four legs"], "question": "which object has four legs", "label": 1}, {"captions": [" a building with yellow and pink walls, a pink roof, and multicolored structural elements.", " a small wooden house."], "sample_ids": ["8b1eda5d040f4dc29255cde2db077c30", "4cb4dba1237443eb8dc299530fa12521"], "properties": ["color, roof, wall", "house, material, wood"], "captions_pred_pc": ["a black and white drawing of a building", "a house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots on a white background house made of dots"], "captions_pred_image": ["a 3d model of a building structure", "a 3d model of a small cottage"], "question": "which house is made of wood", "label": 1}, {"captions": [" a wooden frame with a black chalkboard.", "a white chandelier with six lamps, five lights, and glass shades."], "sample_ids": ["547c9cbf51464f3cb664e8d1bc9c2139", "bf18bfd89efd43389781050230467d58"], "properties": ["frame, chalkboard, color", "Lights, number, five"], "captions_pred_pc": ["of a black and white image of a television on a wall", "a black and white illustration of a snowflake on a white background royalty free illustration"], "captions_pred_image": ["3d model of a picture frame royalty-free 3d model preview number 2", "a white chandelier with five white shades"], "question": "which object has more lights", "label": 1}, {"captions": ["a featuring a rock formation with various statues, including a woman, an eagle, and elements like wood and a shell.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["36d90269173b4d1a84dbd61664593f66", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["a, eagle, wood", "box, paper clip, lock"], "captions_pred_pc": ["a black and white illustration of a map with dots all over it", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d model of a person sitting on the edge of a cliff", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" of a round blue and brown concrete bowl with a logo.", "s of a rock, boat, plane, and leaf on a stick."], "sample_ids": ["926ff028e22a4a628b76baba18e8d94e", "be0884a7ced34b3d92687b6087798a1e"], "properties": ["color, shape, material", "s, stick, leaf"], "captions_pred_pc": ["of a black bracelet with dots on it", "above a black and white drawing of an object floating in the sky"], "captions_pred_image": ["a 3d rendering of a concrete bowl on a white background", "a black and white photograph of a rock on a sandy surface"], "question": "which object is made of a stick?", "label": 1}, {"captions": [" of a computer with a green screen, keyboard, and white box.", "a 3d white cube with windows resembling a building."], "sample_ids": ["fb1e5a04ef4644f98219e1d5d52ab073", "4a07a5293f024bb0a353954a056ef626"], "properties": ["screen, keyboard, box", "- material is white- color is white- texture is textured"], "captions_pred_pc": ["a box made up of many small dots on a white background a box made up of many small dots on a white background royalty free illustration", "a black and white image of a square made up of small dots"], "captions_pred_image": ["a 3d model of a vintage computer royalty-free 3d model preview", "a 3d model of a cube"], "question": "which object is white", "label": 1}, {"captions": [" a white room featuring a round table and the words \"may lin\" on various elements.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["459f89a281bc456d8a6aeb1e8fe25e8a", "c3a82df41875402285608ef13a55df57"], "properties": ["color, room, table", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black square on a white background", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white room with a round table in the center", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a white rock with green grass and moss on it.", "a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe."], "sample_ids": ["0b53ca3fca7b4ef7bef27cb287daf32e", "fdcbb46224a44faca5c3fb20264eb2e7"], "properties": ["color, grass, moss", "broom, shovel, fireplace"], "captions_pred_pc": ["above a black and white drawing of a long, curved line on a white background", "a close-up view of a white plastic bag with a small hole in it"], "captions_pred_image": ["a 3d sculpture of a piece of white chocolate in the shape of a map", "a 3d model of an outdoor fireplace"], "question": "which entity has a fireplace?", "label": 1}, {"captions": ["an orange and white striped rocket model.", "a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars."], "sample_ids": ["9f19d5d47d174d3382c7dc31aaf22f0b", "1b3945962a4b4cda9fe939dc5d63e789"], "properties": ["color, orange, white", "a room, a cake, a table"], "captions_pred_pc": ["a black and white drawing of a tree on a white background vector illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a tree on a white background, isolated on a white background, vector illustration of a black and white drawing of a", "a black and white illustration of an object on a white background"], "captions_pred_image": ["a 3d model of a rocket on a gray background", "a 3d rendering of a white room with various items in it"], "question": "which entity has a table?", "label": 1}, {"captions": ["a gray background featuring a white line in the middle.", " a black and white striped box."], "sample_ids": ["47f89f92bef14b7193d0ffa3934f6977", "00fa8accaaad44c780efe0c04ed4a12b"], "properties": ["color, line, gray", "color, black, white"], "captions_pred_pc": ["above a black and white image of a piece of furniture", "in 15 words or less a black and white pattern on a white background"], "captions_pred_image": ["an airplane flying in the sky with the sun shining behind it", "a 3d image of a black and white striped surface"], "question": "which is a black and white striped box", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " a small wooden cabinet with a drawer, doubling as a bedside table."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "3755f3c19ae549c4bf708462db1b2581"], "properties": ["mossy, rock, rocky", "Cabinet, drawer, wood"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a black and white image of a square with dots all over it"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a wooden box with a lid"], "question": "which object is made of wood", "label": 1}, {"captions": ["a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic.", " of a wrecked plane, ship, and bird on a pile of rocks with grass."], "sample_ids": ["49c5a9d42ba64fb2b681ef583d700b98", "b0c703df20154bbf9fd8707c61137fc5"], "properties": ["a train, a ship, a boat", "plane, ship, bird"], "captions_pred_pc": ["above a black and white image of a long, curved line on a white background", "a black and white watercolor map of the state of ohio"], "captions_pred_image": ["a 3d model of a submarine", "a black and white photograph of a pile of debris on the ground"], "question": "which entity has a plane", "label": 1}, {"captions": ["a collection featuring a broken egg in a bowl, food wrapped in paper, torn and whole paper pieces, a white paper hat, a skull with a hat, a snowy iceberg, and a piece of cake.", " a wooden staircase with a railing and table."], "sample_ids": ["3d7bd392c9a14f4ab7c0aae2cf75b487", "956247bea850458199c651037d4b1d7f"], "properties": ["hat, food, bowl", "railing, table, staircase"], "captions_pred_pc": ["in 15 words or less a black and white image of dots on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of the earth with a hole cut out of it", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", "s of a boat, bird, paper airplane, and kite flying in the air."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "795cfa41d48a4cfc893ff1981318594d"], "properties": ["broom, shovel, fireplace", "s, boat, bird, airplane, kite"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "above a 3d illustration of a boy standing with his arms outstretched"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a white kite flying in the air against a gray background"], "question": "which entity has a boat", "label": 1}, {"captions": ["a featuring a small desk and chair, table, staircase, bathroom with sink, and square ceiling light in a small house setting.", " featuring a moss-covered rock, mushroom in grass, and green leaves with a brown spot."], "sample_ids": ["1be04fc7b47c47e9aaa9d2720af16b87", "34ebe81ae93841ca829efd15aee4d8c1"], "properties": ["desk, chair, table", "moss, mushroom, grass"], "captions_pred_pc": ["for a black and white image of a letter 'f'", "for a black and white illustration of a cloud on a white background"], "captions_pred_image": ["a 3d model of a staircase in a room", "a 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor in the lymphatic system 3d model of a cancerous tumor"], "question": "which entity has a moss-covered rock?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", "a white of a man with arms outstretched."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, light, jewels", "image, color, white"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a man with his arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a tall wooden bookcase with four shelves ()", " a large white and metal building with a metal roof structure."], "sample_ids": ["132b59c1ba384379b54cc1d1536cc210", "0ee2683270b1486991f9b9ef12990a78"], "properties": ["height, material, shelves", "roof, metal, white"], "captions_pred_pc": ["a black ladder on a white background", "of a lamp with a black shade on a white background"], "captions_pred_image": ["a 3d rendering of a tall, wooden bookshelf", "a 3d model of a large white box"], "question": "which entity has a roof made of metal", "label": 1}, {"captions": ["white 3d screw model", " a small wooden house with a green roof."], "sample_ids": ["90ef4675ea1a419ca5f0c15f1aab96ec", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["color, shape, material", "roof, color, green"], "captions_pred_pc": ["of a black lace doily on a white background", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d printed screw on a white background", "a 3d model of a house with a ladder"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a 3d white cube featuring a hole, wheels, and a diamond.", " a clay pot with holes in it."], "sample_ids": ["e44009d33258425e8efedfbc6823bf70", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["- color is white- shape is cube- material is plastic", "hole, material, clay"], "captions_pred_pc": ["for a black and white image of a toothbrush in the shape of a toothbrush", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a white cube", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9951e345202c44c19ab1eec11934bc52", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["image is a stone wall with writing, metal bars, and a broken piece featuring a metal hook, resembling an egyptian cuneiform tablet", "house, pool, balcony"], "captions_pred_pc": ["above a black and white drawing of a pair of binoculars", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d rendering of a stone wall with a metal bracket holding it in place", "a 3d model of a modern house"], "question": "which entity is a house?", "label": 1}, {"captions": [" a silver spaceship-skull hybrid with blue lights, spheres, and jewels, featuring a robot with a head and blue eyes.", " a staircase with a railing, table, and chair, featuring a square ceiling light."], "sample_ids": ["ae7c805076b14abe83578069c7bf1c03", "51a0fba79bce472a8b827b78a110b77f"], "properties": ["color, light, jewels", "stair, table, chair"], "captions_pred_pc": ["in 15 words or less a black and white image of a snowflake on a white background royalty free illustration", "for a black and white image of a toilet paper holder"], "captions_pred_image": ["a 3d sculpture of a heart with various objects on top of it", "a 3d model of a staircase in a room"], "question": "which entity has a table and chair?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", "star wars stormtrooper "], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "05678f11f4fe47178c9b4941ee334e16"], "properties": ["color, sphere, molecule", "a, color, white"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white illustration of a stormtrooper"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a star wars stormtrooper"], "question": "which entity is white", "label": 1}, {"captions": ["a featuring a sailboat with a hook, a bird suspended in the air, and a pair of scissors.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["f57ae66555d34349aeadc38b33f8f267", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["a, bird, hook", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["of a 3d scan of a person's torso and limbs", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a black and white photo of a kite flying in the sky", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" an ice cream machine, popsicle with two sticks, and a shelf with a computer monitor.", "s of chimpanzee, human, and wolf skulls."], "sample_ids": ["cb840159fea7436d81eb33bdccad3596", "16a6e8b5830b4da6828af63e91f75f9b"], "properties": ["A, a, a", "s, chimpanzee, human, wolf"], "captions_pred_pc": ["a black and white illustration of a bench", "a black and white photograph of a skull on a white background"], "captions_pred_image": ["a 3d rendering of a white and gray wall mounted shelf", "a 3d model of a gorilla skull royalty free 3d model preview no.2"], "question": "which entity has more skulls", "label": 1}, {"captions": [" a small green cannon wheel with a handle.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["97d13db38fa24556afa1eef04fc518e6", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, green, handle", "a, material, clay"], "captions_pred_pc": ["of a small black object on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d model of a cannon with wheels", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" of a small wooden house with a blue roof, featuring a police sign and resembling a lighthouse.", " a large house with a roof on a platform."], "sample_ids": ["9b2c93d651c3409096118c5ce5b993f2", "cb3e09a301b746918a682a595037c7f7"], "properties": ["house, roof, blue", "roof, platform, house"], "captions_pred_pc": ["a black and white illustration of a coffee mug on a white background royalty free illustration", "a black and white image of a piece of paper"], "captions_pred_image": ["a 3d model of a small house and barn", "a 3d model of a small house"], "question": "which house has a roof on a platform", "label": 1}, {"captions": [" a wooden bench with a metal frame.", " of a wooden building frame with truss and roof structure."], "sample_ids": ["c27b018330da406680e58b94266c310b", "1313f8185cf24f3bbd73ff4e4ddfab3e"], "properties": ["frame, material, wood", "frame, truss, roof"], "captions_pred_pc": ["a black line on a white background", "a black and white image of a ladder on a white background"], "captions_pred_image": ["a 3d model of a bench", "a 3d rendering of a bridge over a road"], "question": "which frame is made of wood", "label": 1}, {"captions": ["s of a skateboard, snowboard, door, and three pairs of shoes, along with a paper mask and a paper with a hole.", " a house with wooden framing and trusses."], "sample_ids": ["a267d906e4cf4d36bfe841c6cc9e698b", "4501794e257c4a8ba60a94757d8e93a9"], "properties": ["s of, snowboard, shoes, mask", "frame, trusses, wood"], "captions_pred_pc": ["above a black and white image of a person standing on a piece of paper", "a black and white drawing of a window"], "captions_pred_image": ["a black and white image of a surfboard flying through the air", "a 3d model of a house under construction"], "question": "which entity is made of wood", "label": 1}, {"captions": ["a featuring a staircase, small red and white building, red box, table, and ceiling light.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["11e2e8ca1f8849e394dfbf532c6d7ae0", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["a, building, staircase", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["for a black and white photograph of a piece of metal", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a staircase in the middle of a floor", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white tiled floor with a ceiling light and small holes.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["9906caefe141465990aacb312e1025f0", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["light, floor, ceiling", "house, pool, balcony"], "captions_pred_pc": ["a black and white polka dot pattern on a white background", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white tile floor", "a 3d model of a modern house"], "question": "which entity has a pool", "label": 1}, {"captions": [" a small bedroom with wooden floors, walls, roof, and shelf.", " of a black and white striped fly in the air."], "sample_ids": ["e602ac60041f4b4f84c044161e478781", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["floor, wall, roof", "black, white, fly"], "captions_pred_pc": ["above a black and white image of a decorative metal bar", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a 3d model of a room with wooden walls and a rug on the floor", "a black and white photograph of a fly"], "question": "which entity has a black and white striped fly?", "label": 1}, {"captions": [" of a yellow bird with black eyes.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["6354119423d14471a803b77aa539b2eb", "c3a82df41875402285608ef13a55df57"], "properties": ["Eye color is black, Eyes are black, Color is yellow", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a flower in the shape of a butterfly", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a bird's head with a hole in it", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" a small island with trees, water, and a river.", " a house with a flat roof structure."], "sample_ids": ["5a9c593092c04deaa0f17a1c28a79476", "abc52d210d71415296730bb00352ce6f"], "properties": ["water, river, island", "roof, flat, structure"], "captions_pred_pc": ["in 15 words or less a black and white polka dot pattern on a white background", "a black and white drawing of a window with dots around it"], "captions_pred_image": ["a 3d model of a snowy landscape with trees in the foreground royalty free 3d model preview no.2", "a 3d model of a house with a roof"], "question": "which structure has a flat roof", "label": 1}, {"captions": ["a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["9bcb7cc44b444326bc426cd9e2aacf60", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["- material is plastic- color is green- shape is box", "a, material, clay"], "captions_pred_pc": ["a black and white illustration of a toilet brush and toilet brush holder", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a plastic box with several compartments", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": ["a featuring a mossy rock, a piece of wood, a rocky island, a plane, a tree branch, a gray rock, a rocky mountain, and a moss-covered tree branch.", " featuring a chair, table, and refrigerator."], "sample_ids": ["09e5288a9e98421985ee6e0042b3c325", "cd967e38e9364ed28c4090e905740c9d"], "properties": ["mossy, rock, rocky", "chair, table, refrigerator"], "captions_pred_pc": ["a black and white illustration of a small island in the middle of a body of water", "a 3d rendering of a white surface with black dots on it"], "captions_pred_image": ["a 3d model of the comet 67p/churyumov-gerasimenko", "a 3d model of a chair, a table, and a refrigerator"], "question": "which object is not a rock", "label": 1}, {"captions": [" a purple sphere with polka dots, flowers, and a hole, containing a pink ball inside.", "a white of a man with arms outstretched."], "sample_ids": ["1000e3065aaa4d6fb93cea89b99e1748", "84afafb3f8f04499bd77d4e7cbc40fb7"], "properties": ["color, shape, material", "image, color, white"], "captions_pred_pc": ["a black and white image of a dotted circle on a white background royalty free illustration", "of a black and white silhouette of a person holding an umbrella"], "captions_pred_image": ["a 3d model of an object with a ball in the center", "a 3d model of a man with his arms outstretched"], "question": "which entity is a picture of a man?", "label": 1}, {"captions": [" of a destroyed building with a watercolor painting of a dilapidated house.", " a clay pot with holes in it."], "sample_ids": ["5a33f024faf145ac80cdadcdfef8a797", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["image, building, painting", "hole, material, clay"], "captions_pred_pc": ["above a black and white drawing of a building", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a black and white photograph of a damaged house", "a clay sculpture of a face with holes in it"], "question": "which object is made of clay", "label": 1}, {"captions": [" the island of greece, featuring a small fish, a piece of ice, a tree branch, and a mossy piece of wood.", "a featuring a white box with a hole, a paper clip, and a lock."], "sample_ids": ["ee440fcbc493488e879539d37a8d820e", "839e143bb1684aaa955f2c3e0cf4eef2"], "properties": ["island, fish, ice", "box, paper clip, lock"], "captions_pred_pc": ["above a black and white image of a mountain on a white background", "above a black and white image of a clock in the shape of a spiral"], "captions_pred_image": ["a 3d map of the country of israel", "a 3d model of a stapler with a staple in it royalty free 3d model no."], "question": "which entity has a lock?", "label": 1}, {"captions": [" a small white gravestone on a grassy field.", " a small house with a pond and situated on a rock."], "sample_ids": ["b43779ae94f74bffba4f29863518f506", "92859eb82a344134806b37cc209927c6"], "properties": ["location, field, gravestone", "house, rock, pond"], "captions_pred_pc": ["a black and white illustration of a whale", "in 15 words or less a black and white drawing of a toaster"], "captions_pred_image": ["a 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake on a white background 3d model of a snowflake", "a 3d model of a house in the middle of a field"], "question": "which location has a pond", "label": 1}, {"captions": [" a wooden roof structure with a pink roof.", " a wooden shed with a gray roof."], "sample_ids": ["b70565bda31d42958d3597bf6067ddd2", "8b32e1ded62144768cd9ca8945fa8524"], "properties": ["roof, color, pink", "roof, color, gray"], "captions_pred_pc": ["above a black and white image of a metal grate", "a black and white drawing of a window in the shape of dots on a white background a black and white drawing of a window in the shape of dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of the roof of a building", "a 3d model of a shed with a gray roof"], "question": "which roof is darker", "label": 1}, {"captions": [" of a small island featuring a white lighthouse, a fountain, and a grassy crater.", " a small island featuring a large building, trees, and a house on a hill, surrounded by a forest."], "sample_ids": ["2a30e69498ff4fd1a33c1fb72286f553", "d557c62e9be741a6b0f6b204d11a9c6f"], "properties": ["lighthouse, fountain, crater", "house, hill, forest"], "captions_pred_pc": ["a black beanie with sparkles on a white background", "above a black and white illustration of a small island in the middle of a body of water"], "captions_pred_image": ["a black and white image of an object on top of a pedestal", "a black and white image of a small island in the middle of a body of water"], "question": "which entity has a house on a hill?", "label": 1}, {"captions": [" of a wooden nightstand with a hexagonal pattern, white top, and drawer.", "a featuring a fireplace, wooden bench, sled, log, castle, and cat."], "sample_ids": ["e6f2dbec6d464b4da4aa47bce242f6e5", "fe4cd6c3972940a5b7854ca1ebc8a5a3"], "properties": ["Drawer, Pattern, White", "fireplace, bench, log"], "captions_pred_pc": ["a cross made of dots on a white background vector illustration of a cross made of dots on a white background royalty free illustration illustration of a cross made of dots on a white background vector illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a white background illustration of a cross made of dots on a", "a black and white illustration of a snowflake"], "captions_pred_image": ["a 3d rendering of a wooden box with a handle", "a 3d model of a fireplace with snow on the ground"], "question": "which entity has a fireplace", "label": 1}, {"captions": ["a featuring a phone booth, desk, chair, lamp, ladder, and two additional chairs.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["7da804ad2b554c9a9915d775afb015d3", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["desk, chair, lamp", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a black and white illustration of a city skyline", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d rendering of a desk and chair in a room", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a small red renault clio car.", " a futuristic white sports racing car."], "sample_ids": ["e4f9463f6e004b90bb977d12f6375b9c", "95f5d1518f1b4a638f4bc5e444a7e1a1"], "properties": ["color is red, make is renault, model is clio", "color, white, futuristic"], "captions_pred_pc": ["a close-up view of the back of a cell phone on a white background", "| all images person 2019 3d model by person | person 2019 3d model by person"], "captions_pred_image": ["a 3d model of a car royalty free 3d model preview no.2", "a 3d model of a futuristic sports car"], "question": "which car is white", "label": 1}, {"captions": ["a small yellow and black helicopter flying in the air.", " a house with a green, wooden-structured roof."], "sample_ids": ["7qxP6dQ5nNuaG8d0vswXXKnd0vq", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["color, yellow, black", "roof, color, green"], "captions_pred_pc": ["a black and white illustration of an airplane", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a black and white helicopter flying in the air", "a 3d model of a house with a triangular roof"], "question": "which object is made of wood", "label": 1}, {"captions": [" a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["c1a7d264b34841409009b3d5d39d5b99", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["Steel, Color, Yellow", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white illustration of a building", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a table with multiple tables and chairs", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": ["a collection featuring a furnished room, destroyed building, us map, house with roof, flying plane, and a ring with paper.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["f13d2d1d78cd49e78f3430abbb251edd", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["collection, room, destroyed, house, roof, plane, ring, paper", "house, roof, wooden"], "captions_pred_pc": ["a black and white image of a person's face", "for a black and white image of an object on a white background"], "captions_pred_image": ["a black and white photograph of a person sitting on a couch", "a black and white photograph of a birdhouse"], "question": "which house has a roof", "label": 0}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a small black house with a green roof, resembling a shed or container."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "bdb8e4c36ccb477890fd6ae569ae305c"], "properties": ["roof, ceiling, hole", "black, roof, green"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a square with dots all over it"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a 3d model of a small black building"], "question": "which house has a green roof", "label": 1}, {"captions": [" a house with a roof, featuring roof truss, insulation, and a suspended ceiling.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["c1462fda08db4a769f68adae5c88cd43", "c3a82df41875402285608ef13a55df57"], "properties": ["roof truss, insulation, suspended ceiling", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white drawing of an arrow pointing to the right", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a white bench with a grid pattern", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": [" of a rock formation with a white cliff and a rock.", " of a white building with a small house and a desk with a laptop."], "sample_ids": ["4a25f6dfbea943bca137dacd2f7b984f", "9244a2d3a9e94c8398ef991f1661bb58"], "properties": ["image is rock formation with a white cliff and a rock", "a, desk, laptop"], "captions_pred_pc": ["above a black and white map of spain on a white background", "a black and white image of a piece of furniture"], "captions_pred_image": ["a black and white image of a rock formation on a gray background", "a 3d model of an office desk on a white background"], "question": "which entity is a building?", "label": 1}, {"captions": [" of a white supreme logo t-shirt, low poly design.", " a modern house with a pool, balcony, and a small white box with a hole in it."], "sample_ids": ["bea8441c08d94366b96b53775391d8e6", "795cebc8a9bd4780aa44c8dbccfd6d1a"], "properties": ["color, white, logo", "house, pool, balcony"], "captions_pred_pc": ["for a black and white image of a shirt with dots", "above a black and white image of a room with a lot of dots"], "captions_pred_image": ["a 3d model of a white t-shirt with a supreme logo", "a 3d model of a modern house"], "question": "which entity is a building?", "label": 1}, {"captions": [" a blue cube with yellow stripes and squares.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["dfea9b63b59a42419ced64b540b88691", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["color, shape, material", "a, material, clay"], "captions_pred_pc": ["of a black and white doily on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a 3d rendering of a large white box with many square tiles", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a red, blue, and green striped tower building.", " a female torso with large breasts, featuring a shirt with a hexagonal pattern, a teddy bear, and a snake head."], "sample_ids": ["8668f9e9d1a64b86b31f260b8056cd19", "71143d4e7bc94fc4aa73a2d7c86635cd"], "properties": ["color, red, blue, green", "torso, breasts, pattern"], "captions_pred_pc": ["a black and white drawing of a butterfly on a white background a black and white drawing of a butterfly on a white background royalty free illustration", "above a black and white illustration of a woman's breasts"], "captions_pred_image": ["a 3d model of a pair of cylindrical towers with a staircase leading up to the top of one of the towers", "a 3d model of a woman's chest"], "question": "which entity has a pattern", "label": 1}, {"captions": ["a modern white geometric pendant light.", "a clay sculpture of a man's head on a wooden block."], "sample_ids": ["3545287f7d844a309f45671d2d70fbf9", "52b7f2034d0044bb82cd714d6f7651d5"], "properties": ["size, material, color", "a, material, clay"], "captions_pred_pc": ["of a black button on a white background", "a black and white image of a man's head made up of dots"], "captions_pred_image": ["a white pendant lamp with a geometric design on the shade", "a sculpture of a man's head on a pedestal"], "question": "which object is made of clay", "label": 1}, {"captions": [" a cartoon character wearing a hat, holding a bag, a baseball bat, and a blanket, resembling a toy animal.", " various vehicles, including a car, truck, monster truck, and military vehicle, along with a stuffed animal and a lizard on a rock."], "sample_ids": ["7e7272f3ddc24551905eccb63f3da42e", "74d87b126e9d4d65839f4117de835ca7"], "properties": ["hat, bag, blanket", "lizard, rock, stuffed animal"], "captions_pred_pc": ["a black and white illustration of a cell with dots", "a black and white drawing of a tricycle on a white background a black and white drawing of a tricycle on a white background royalty free illustration"], "captions_pred_image": ["a 3d printed sculpture of a baseball player holding a bat", "a 3d model of a vehicle with wheels and tires"], "question": "which entity has a stuffed animal?", "label": 1}, {"captions": [" a yellow and white structure with yellow poles.", " of a plague mask with a rusty, horned, wooden helmet and a crow's head design."], "sample_ids": ["bada91e216fd486d9e3e356d48978f33", "2b0896f810074399a5ae7d6dbab8c330"], "properties": ["color, shape, poles", "- material is wood, rusty, horned"], "captions_pred_pc": ["a black and white drawing of a dotted pattern on a white background a black and white drawing of a dotted pattern on a white background royalty free illustration", "in 15 words or less a black and white image of a face made up of tiny dots on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a building with multiple levels", "3d model of a plague doctor's mask"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a small building with windows and a roof.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["0ef2cac27e364c0687afae7ab5040cc3", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["roof, windows, building", "structure, roof, pitch"], "captions_pred_pc": ["a black and white square made up of small dots on a white background", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of an apartment building royalty free 3d model preview no 3", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": ["a white and yellow plastic container with a lid and label, resembling a smoke detector or air purifier.", " a large metal building with a roof and truss structure."], "sample_ids": ["ef8288c9fdfc4e0f9c1fe25d570a104e", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color is white, yellow, plastic", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a metal bowl with dots", "of a metal grate on a white background"], "captions_pred_image": ["a white plastic container with a label on it", "a 3d model of a long metal fence"], "question": "which entity is made of metal", "label": 1}, {"captions": ["3d lego model of the white house with a garden and tennis racket.", " of a rock formation with a white cliff and a rock."], "sample_ids": ["349d70e3f3d24c72ad05d5ceeee291b6", "4a25f6dfbea943bca137dacd2f7b984f"], "properties": ["a, model, white house", "image is rock formation with a white cliff and a rock"], "captions_pred_pc": ["a black and white photo of a person sitting on top of a pile of rocks", "above a black and white map of spain on a white background"], "captions_pred_image": ["a 3d model of the white house royalty free 3d model", "a black and white image of a rock formation on a gray background"], "question": "which image is a rock formation?", "label": 1}, {"captions": [" of a white spiral, earbuds, ceiling light, and silver ring with black and white scissors and design.", " of a wooden table and chair."], "sample_ids": ["c69f60b389124ad9b4f81c64ec332054", "884d232f9cd54b6c8c41b6bf357c704f"], "properties": ["earbuds, light, ring", "table, chair, wood"], "captions_pred_pc": ["a black and white drawing of a needle and thread", "a black and white pattern on a white background"], "captions_pred_image": ["a black and white illustration of a pair of sunglasses and a pair of scissors next to each other on a white background", "a 3d model of a small wooden table"], "question": "which entity is made of wood", "label": 1}, {"captions": [" a house with a pink roof, brick walls, and insulated ceiling.", " of a small white building or house with a white ceiling and kitchen hood."], "sample_ids": ["c8936ace72954650b4e2d84246964849", "17b23d23309d4385938ced3ca536a1d1"], "properties": ["roof, color, pink", "building, ceiling, kitchen"], "captions_pred_pc": ["a black and white drawing of a toilet", "above a black and white drawing of a bathroom with a toilet and sink"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a white building on a gray background"], "question": "which building has a kitchen?", "label": 1}, {"captions": ["a featuring a fireplace with a broom, shovel, and other items, a man and a dog, a table with a bucket, and a vase with a pipe.", " a small, rusty toy character with a hat, dart, dartboard, and leaves, standing on a rock."], "sample_ids": ["fdcbb46224a44faca5c3fb20264eb2e7", "a24872444e5c468a9264d503a9ca7276"], "properties": ["broom, shovel, fireplace", "rusty, hat, dartboard"], "captions_pred_pc": ["a close-up view of a white plastic bag with a small hole in it", "in 15 words or less an illustration of a 3d character on a white background stock illustration"], "captions_pred_image": ["a 3d model of an outdoor fireplace", "a 3d sculpture of a teddy bear standing on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a white rocket ship.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["22137b9fff744310ad3b4abe6d869718", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["color, shape, size", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["above a black and white illustration of a planet", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a rocket ship royalty free 3d model preview no.1", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" of a pile of metal, torn and shredded paper, rocks, and a decayed animal.", " a wooden staircase with a railing and table."], "sample_ids": ["c117f1923cad4ecf9df61b6e3d633374", "956247bea850458199c651037d4b1d7f"], "properties": ["a pile of metal, torn and shredded paper, rocks, and a decayed animal", "railing, table, staircase"], "captions_pred_pc": ["a black and white map of germany on a white background", "above a black and white drawing of a window"], "captions_pred_image": ["a 3d model of a crumpled piece of paper on a white background", "a 3d model of a table with a staircase"], "question": "which entity has a table?", "label": 1}, {"captions": [" a celtic stone cross.", "a white glass beer mug."], "sample_ids": ["95c9f6a3061c4850be22339959ac70d6", "1d686cbd3e9a4c629a43088658989286"], "properties": ["- material is stone- shape is cross- color is black", "color, white, glass"], "captions_pred_pc": ["for a black and white image of a watch", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a celtic cross gravestone royalty free 3d model preview no.3", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a house with a blue roof.", "a featuring a tree stump, mossy wood, leaves, and a rock with grass."], "sample_ids": ["8ff693cd3ca74f8a901ca259b8b3a7ac", "2527cd763a1a43f9870eb65e44e79f7d"], "properties": ["roof, color, blue", "mossy, rock, grass"], "captions_pred_pc": ["a black and white drawing of a cross on a white background royalty free illustration", "a black and white image of a person on a skateboard"], "captions_pred_image": ["a 3d model of a house with a roof", "a 3d model of a piece of wood on a white background"], "question": "which object is covered in grass", "label": 1}, {"captions": ["a featuring a teddy bear on a rainbow, accompanied by a baby, a cat, a dog, and a drink, with a pink and green sign displaying \"close the sky over dreams.\"", " a house with a green, wooden-structured roof."], "sample_ids": ["80dfbe37b3d74f11b712ca1ad6570f70", "d58bb529b1434809a64b62f1b2899c3f"], "properties": ["image, color, pink", "roof, color, green"], "captions_pred_pc": ["above a black and white photograph of a dog in a bowl", "a black and white image of the letter 'l' made up of dots on a white background"], "captions_pred_image": ["a 3d sculpture of an animal on a piece of paper", "a 3d model of a house with a triangular roof"], "question": "which entity has a roof that is green?", "label": 1}, {"captions": ["a white ceramic vase with the words 'happy' and 'fish' written on it.", " a small, rocky island with diverse terrain and scattered rocks."], "sample_ids": ["243cd2c469984313b1522dca099eefd3", "09f2cf267e954c958828325067bcc36a"], "properties": ["color, white, material, ceramic", "island, terrain, rocks"], "captions_pred_pc": ["a black and white image of a vase in the shape of a fish", "above a black and white photo of a small island in the middle of a body of water"], "captions_pred_image": ["a white vase on a grey background", "a black and white image of a piece of dirt on the ground"], "question": "which object is made of rocks", "label": 1}, {"captions": [" a small building with stairs and a glass floor, featuring a square table and a black square ceiling light.", "a white of a woman with her arms outstretched."], "sample_ids": ["8aaad713b8834739b008ccf2f3d86cce", "2cbfaa4fb2d84a6f94e67b4fd6e2f26f"], "properties": ["floor, table, light", "image, color, white"], "captions_pred_pc": ["above a black and white photograph of a window", "a black and white silhouette of a person on a skateboard"], "captions_pred_image": ["a black and white 3d model of a staircase on a platform", "a 3d model of a woman with her arms outstretched"], "question": "which image is white", "label": 1}, {"captions": ["a pink pixelated 3d pig model with black eyes and a handle.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["d9006ea4af304f3c9398339f9fc99fc3", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, eye, handle", "roof, color, yellow"], "captions_pred_pc": ["above a black and white drawing of a room", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a small white box", "a 3d model of a house with a roof"], "question": "which entity has a roof that is the same color as the building?", "label": 1}, {"captions": [" a small white building featuring a room with a door and a white shelf.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["d7b78fa9a6b64f6095b881bc619b04fe", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["room, door, shelf", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["above a black and white illustration of a person standing in front of a door", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of an empty room", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" a white circular light with a yellow dot in the middle.", " of a house with a roof and roof framing, featuring a building with a yellow roof."], "sample_ids": ["fa753fe490854b35be3b76450d2641e0", "44cc75e4baf4434daf96ec819cd86410"], "properties": ["color, shape, size", "roof, color, yellow"], "captions_pred_pc": ["above an illustration of a black circle with a white background", "a black and white illustration of a 3d object in the shape of a diamond on a white background abstract illustration of a 3d object in the shape of a diamond on a white background royalty free illustration"], "captions_pred_image": ["a white circular object on a gray background", "a 3d model of a house with a roof"], "question": "which entity is a building?", "label": 1}, {"captions": [" a house featuring a purple roof and a suspended ceiling with a light fixture.", " a house with a roof structure, featuring a brick wall and suspended box."], "sample_ids": ["579b43057ef74bd08d06bdd3e8d973a0", "1a7bfcf3755142bab90d3d7cb02d0f2c"], "properties": ["roof, purple, suspended", "roof, structure, wall"], "captions_pred_pc": ["a black and white image of a piece of paper with a pattern of dots on it", "a black and white illustration of a group of dots on a white background"], "captions_pred_image": ["a 3d model of the roof of a building royalty free 3d model no.", "a 3d model of a building with a roof"], "question": "which house has a brick wall", "label": 1}, {"captions": ["a small white wooden castle with flags, turrets, and two towers.", " a small wooden building with a roof, resembling a birdhouse or cabinet."], "sample_ids": ["345b1c7d2d9b4524aa0dcdc3cd27e4da", "a60e4d5f34aa4a6280343a8f15bb1c13"], "properties": ["turrets, flags, towers", "house, roof, wooden"], "captions_pred_pc": ["a black and white illustration of a square made up of many small dots on a white background", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d model of a castle with towers and a drawbridge royalty-free 3d model preview no.1", "a black and white photograph of a birdhouse"], "question": "which entity has a roof", "label": 1}, {"captions": [" a small white barn with a metal roof.", "a low poly of a plant on a white object, resembling a paper or plastic bag."], "sample_ids": ["4ca3342a96824684845f7d0e062ab176", "d49d8ed244094349a99e4faca05e0690"], "properties": ["roof, metal, white", "low poly, plant, white"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a house made of dots", "a black and white illustration of a dandelion on a white background a black and white illustration of a dandelion on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a barn", "a 3d model of a plant growing out of a rock"], "question": "which object is white", "label": 1}, {"captions": [" of a wooden staircase with marble floor and wooden railings in a house.", " of a mannequin head wearing a leather plague mask with straps."], "sample_ids": ["ee70964ce5e841bd87381cff40d59b88", "7821b30c2f8545ccac3e8b8a305d5082"], "properties": ["floor, staircase, railings", "mannequin head, plague mask, straps"], "captions_pred_pc": ["a black and white drawing of a light switch", "above a black and white image of a person's face with dots"], "captions_pred_image": ["a 3d model of a staircase on a marble surface", "a plague doctor's mask on a mannequin head"], "question": "which object has a plague mask with straps?", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a suitcase on wheels, featuring a bird, a laptop, a robot, and a vacuum cleaner."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "e8100bef7b8a48d4ac79684bffb349ba"], "properties": ["yellow, table, roof", "Wheels, laptop, robot"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a cell phone"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a black and white image of a suitcase on wheels"], "question": "which entity has a laptop?", "label": 1}, {"captions": [" a small white bookcase-like building with stairs and a light fixture.", " a house featuring a pitched roof structure with brick detailing."], "sample_ids": ["5f99eb9d1f1e4d57b5690446f832c841", "5fbd274f897b44fcafa02ee84228debf"], "properties": ["building, color, white", "structure, roof, pitch"], "captions_pred_pc": ["in 15 words or less a black and white image of the letter 'f' made up of dots", "a black and white illustration of a square with a lot of dots on it"], "captions_pred_image": ["a 3d model of a bookshelf on a white background", "a 3d model of the roof of a house"], "question": "which building has a pitched roof", "label": 1}, {"captions": [" a wooden barrel.", " a gray, metal pillar/cylinder."], "sample_ids": ["77ceb4db6ddc4a6c8c4a83ab1519e78b", "11391e6bab574dc0be8f2440fbc3b724"], "properties": ["material is wood, shape is barrel, color is brown", "color is gray, material is metal, shape is cylinder"], "captions_pred_pc": ["a black and white image of dots on a white background a black and white image of dots on a white background royalty free illustration", "of a black candle on a white background"], "captions_pred_image": ["a 3d model of a gray and white barrel", "a 3d model of a candlestick"], "question": "which object is made of metal", "label": 1}, {"captions": ["a featuring a kite, paper airplane, and birds flying alongside a red, white, and blue plane in the sky.", " of a small camera, black stereo system, speaker, and ceiling fan."], "sample_ids": ["f7bb7dcf3c774149809444d6c7d20ab8", "c6cef5b8f3a741e4a619e3441bee54d5"], "properties": ["color, plane, sky", "camera, speaker, ceiling fan"], "captions_pred_pc": ["a silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a cliff silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of a man and a child standing on the edge of a silhouette of", "for a black and white image of an object on a white background"], "captions_pred_image": ["a 3d sculpture of a bird in flight on a gray background", "a 3d model of a vintage camera royalty free 3d model preview no 3"], "question": "which entity has a speaker?", "label": 1}, {"captions": ["a black table lamp with a black shade and a hat on top.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["31c00c8337de4854a20299d719136cce", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["color, black, shade, black", "water, boat, rock"], "captions_pred_pc": ["in 15 words or less a black and white illustration of a circular object on a white background royalty free illustration", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a table lamp royalty free 3d model preview no.2", "a 3d image of an animal laying on the ground"], "question": "which entity has a rock with a hole in it", "label": 1}, {"captions": [" a small white building with stairs and shelves.", " a white and yellow metal shelving unit with a steel structure, yellow legs, and suspended ceiling system."], "sample_ids": ["9e1f64d4fd514059be934077717536dc", "c1a7d264b34841409009b3d5d39d5b99"], "properties": ["building, stairs, shelves", "Steel, Color, Yellow"], "captions_pred_pc": ["a black and white image of a person standing in front of a white background", "a black and white illustration of a building"], "captions_pred_image": ["a white 3d model of a building with stairs", "a 3d model of a table with multiple tables and chairs"], "question": "which entity is made of yellow", "label": 1}, {"captions": [" a small house with a tree and a tree stump, featuring a roof and a square ceiling with a hole.", " a white, curved plastic object resembling an ear, mouth guard, or hat."], "sample_ids": ["b16fb21cda9a4a21a024df749c2304f4", "c3a82df41875402285608ef13a55df57"], "properties": ["roof, ceiling, hole", "shape is curved, color is white, material is plastic"], "captions_pred_pc": ["a black and white image of a square with dots on it", "a black and white drawing of a bird's wing"], "captions_pred_image": ["a 3d model of a small house and a tree in the foreground", "a white plastic object on a gray background"], "question": "which object is white", "label": 1}, {"captions": ["a featuring a table with yellow legs, buildings and houses with yellow columns and roofs, a steel structure with yellow poles, and a suspended ceiling with yellow poles.", " a spacious office featuring numerous desks, chairs, computers, and a ceiling with blue and white triangles and a ceiling light."], "sample_ids": ["8a319c41f6214ee78bf11069ec8535ab", "0d7e4d9471414a21b4a5b18a54f7ec22"], "properties": ["yellow, table, roof", "ceiling, light, desks"], "captions_pred_pc": ["a black and white drawing of a floor plan", "a black and white drawing of a square on a white background"], "captions_pred_image": ["a 3d model of a white structure with multiple tables and chairs", "a 3d model of an office space with desks and chairs"], "question": "which entity has a ceiling light", "label": 1}, {"captions": [" a white motorcycle with wings.", " a large metal building with a roof and truss structure."], "sample_ids": ["7e684a7c012c4fd0ac91844f22457640", "b85a99699ccd4bcba213322113bb253d"], "properties": ["color, white, wings", "roof, truss, structure"], "captions_pred_pc": ["a black and white image of a pair of sunglasses", "of a metal grate on a white background"], "captions_pred_image": ["a 3d model of a motorcycle on a white background", "a 3d model of a long metal fence"], "question": "which entity has a roof and truss structure", "label": 1}, {"captions": [" a house featuring a roof, floor plan, heating system, and ceiling light fixture.", " a mountainous landmass, resembling a small island or state like kentucky or wyoming."], "sample_ids": ["269939560e08432f9e134309b9a1c587", "8ca9b999b69c4965bd9eb4445d605bf2"], "properties": ["floor plan, heating system, ceiling light fixture", "mountainous, landmass, state"], "captions_pred_pc": ["a black and white drawing of a house", "a black and white map of the state of new york"], "captions_pred_image": ["a 3d model of a building with a glass facade", "a 3d model of a piece of paper"], "question": "which entity is not a state?", "label": 1}, {"captions": [" featuring a chair, table, and refrigerator.", "a green plastic box with two compartments, a green lid, and the words \"moddo fas so\" and \"modido\" printed on it."], "sample_ids": ["cd967e38e9364ed28c4090e905740c9d", "9bcb7cc44b444326bc426cd9e2aacf60"], "properties": ["chair, table, refrigerator", "- material is plastic- color is green- shape is box"], "captions_pred_pc": ["a 3d rendering of a white surface with black dots on it", "a black and white illustration of a toilet brush and toilet brush holder"], "captions_pred_image": ["a 3d model of a chair, a table, and a refrigerator", "a 3d rendering of a plastic box with several compartments"], "question": "which object is made of plastic", "label": 1}, {"captions": [" a cityscape featuring various buildings, trees, an airport runway, and a plane.", "a white of a city with buildings and a gold spoon."], "sample_ids": ["9b45036d3f0342a78db9a25938dc77fc", "2351471a2d2145c59fec5f68ffae4816"], "properties": ["building, tree, plane", "image, city, spoon"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a snowflake in the shape of a snowflake royalty free illustration", "a black and white image of a diamond shaped piece of fabric"], "captions_pred_image": ["a black and white image of an industrial area with buildings and trucks in the foreground", "a 3d model of a city skyline in white"], "question": "which image shows a city with buildings and a gold spoon?", "label": 1}, {"captions": [" a blue and pink spiked fish.", "a low-poly of a white, shattered sphere."], "sample_ids": ["60032d1c1dcc43129b6e54bac3ebf68a", "94119660e7054fc5b7baa68a4e39968c"], "properties": ["color, shape, size", "sphere, color, texture"], "captions_pred_pc": ["a black and white image of a spiky brush on a white background", "a black and white illustration of a dandelion on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white background illustration of a dandelion on a white background, isolated on a white"], "captions_pred_image": ["a 3d model of an object with spikes", "a 3d model of a cracked egg"], "question": "which entity is a sphere?", "label": 1}, {"captions": ["low poly of a blue ice cube, resembling a pear-shaped sphere with a flame-like structure.", "a featuring a train, large ship, long metal pipe, boat, black map of kenya, and a black piece of plastic."], "sample_ids": ["6813afb531d041e48532088d01b00db9", "49c5a9d42ba64fb2b681ef583d700b98"], "properties": ["- color is blue- shape is pear-like- structure is flame-like", "a train, a ship, a boat"], "captions_pred_pc": ["a black and white drawing of a starfish on a white background starfish on a white background royalty free illustration", "above a black and white image of a long, curved line on a white background"], "captions_pred_image": ["a low poly 3d model of a rock", "a 3d model of a submarine"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a destroyed house and plane amidst a town with buildings.", "a white glass beer mug."], "sample_ids": ["0fd3ddca09194b8f94ef731af3b64a08", "1d686cbd3e9a4c629a43088658989286"], "properties": ["house, plane, town", "color, white, glass"], "captions_pred_pc": ["above a black and white drawing of a piece of paper", "a black and white drawing of a beer mug on a white background"], "captions_pred_image": ["a 3d model of a damaged building", "a 3d model of a glass pitcher"], "question": "which object is made of glass", "label": 1}, {"captions": [" a small house with a road in front of it.", " a small wooden house with a green roof, fire pit, wooden fence, bench, and a dog."], "sample_ids": ["9ff45258feba4c68bb279efeb829538f", "f6c6e7a65a3e42dfa431b1d984c72f28"], "properties": ["house, front, road", "house, fence, dog"], "captions_pred_pc": ["above a black and white drawing of a building", "above a black and white drawing of a bathroom"], "captions_pred_image": ["a 3d model of a small house on a road", "a 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a small cabin in the woods 3d model of a"], "question": "which house has a fence?", "label": 1}, {"captions": [" a pink room featuring a bed, desk, window, and lamp.", " a small wooden house with a green roof."], "sample_ids": ["395af20de6fe49dbbbb030f0e452cbe1", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["bed, desk, window", "roof, color, green"], "captions_pred_pc": ["of a black and white drawing of a curved line", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a 3d model of a bedroom royalty free 3d model preview no.2", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": [" featuring a table with objects, a stone wall with a ball, and a teapot and vase on a tiled floor.", "a featuring a small boat, a rock with a hole, and blue water."], "sample_ids": ["654c49e07bb54e6b94637b5f7b65bf08", "7ccdffc0d6404e8d9144260255ea0c5c"], "properties": ["floor, table, wall", "water, boat, rock"], "captions_pred_pc": ["a black and white illustration of a coffee cup, a spoon, and a knife on a black background", "a black and white illustration of a surfboard"], "captions_pred_image": ["a 3d model of a bench on a tiled floor royalty free 3d model preview no.3", "a 3d image of an animal laying on the ground"], "question": "which entity has a boat?", "label": 1}, {"captions": [" a human foot with a red, white, and pink bone structure, including a skull with red and white details.", " a clay pot with holes in it."], "sample_ids": ["39cdff793d3f4dcd898dd6b5222cb289", "8ffcd902aa0a4efea55ca1dbab28f462"], "properties": ["color, shape, size", "hole, material, clay"], "captions_pred_pc": ["a black and white image of an ornate design on a white background", "a black and white illustration of a microscopic image of a virus on a white background illustration of a black and white illustration of a microscopic image of a virus on a white background royalty free illustration"], "captions_pred_image": ["a 3d model of a human bone structure", "a clay sculpture of a face with holes in it"], "question": "which entity is made of clay", "label": 1}, {"captions": [" a room featuring a wall with a painting, a hole, and a door.", " a small wooden house with a green roof."], "sample_ids": ["1d1328346a464d2482463d6d5288e934", "912e0b8da1e8496489833d8a8ecffd31"], "properties": ["painting, door, wall", "roof, color, green"], "captions_pred_pc": ["in one hundred words or less an illustration of an igloo on a white background stock illustration", "a black and white map of hawaii on a white background"], "captions_pred_image": ["a black and white photograph of a torn piece of paper in the shape of a bird", "a 3d model of a house with a ladder"], "question": "which entity has a roof that is the color of green", "label": 1}, {"captions": ["a white and red lego gazebo with a pixelated design and 3d structure.", " a silver, cylindrical object resembling a pair of chopsticks or a tall, thin pole."], "sample_ids": ["9c628774529c489aaa7abb1a6dfb2140", "6823de4492ef4b5b835c7468d53e0325"], "properties": ["gazebo, color, white, red", "shape is cylindrical, color is silver, material is metal"], "captions_pred_pc": ["a black and white circular shape made up of many small dots on a white background, resembling a snowflake", "a black and white image of a cone shaped object"], "captions_pred_image": ["a 3d model of a gazebo in white 3d printed material", "a 3d model of a tall, slender object in the air"], "question": "which object is made of metal", "label": 1}, {"captions": [" of a white rectangular shelf or light fixture on a gray background.", " of a black and white striped fly in the air."], "sample_ids": ["a84221f27ed0416280f8e67563f95ed7", "77e2b8c9032945248951e06bc7e209e0"], "properties": ["background, color, white", "black, white, fly"], "captions_pred_pc": ["a black line on a white background", "for a silhouette of a butterfly on a white background"], "captions_pred_image": ["a long white plastic strip on a gray background", "a black and white photograph of a fly"], "question": "which entity is black and white?", "label": 1}, {"captions": [" a small house with a pond and situated on a rock.", " a house with a roof, wooden beams, and chimney."], "sample_ids": ["92859eb82a344134806b37cc209927c6", "be1376023c274bdda995d54f3694157f"], "properties": ["house, rock, pond", "roof, beams, chimney"], "captions_pred_pc": ["in 15 words or less a black and white drawing of a toaster", "a black and white drawing of a bathroom with a shower"], "captions_pred_image": ["a 3d model of a house in the middle of a field", "a 3d model of a house with a roof"], "question": "which house has a roof", "label": 1}, {"captions": ["s of chimpanzee, human, and wolf skulls.", " an african figurine with a bow and arrow, standing on a wooden base, wearing a hat."], "sample_ids": ["16a6e8b5830b4da6828af63e91f75f9b", "d81d13362ae04371bb2cba46e4939665"], "properties": ["s, chimpanzee, human, wolf", "hat, bow, arrow"], "captions_pred_pc": ["a black and white photograph of a skull on a white background", "above a black and white photo of an ice sculpture"], "captions_pred_image": ["a 3d model of a gorilla skull royalty free 3d model preview no.2", "a sculpture of an african man sitting on a pedestal"], "question": "which entity has a hat?", "label": 1}, {"captions": [" a yellow and white structure featuring lamp posts, bridge, poles, pier, stairway, and hanging rods.", "a featuring a red hat, floating cup, bowl filled with candy, and a strawberry."], "sample_ids": ["34257a26ad2e4c6d91ef6d5cd4bd7c43", "e27a9fd533dc41da9cf2eeb8fee2a5af"], "properties": ["color, pier, stairway", "hat, candy, strawberry"], "captions_pred_pc": ["above a black and white illustration of an open door", "a black and white illustration of two spheres"], "captions_pred_image": ["a 3d model of a long bench on a white background royalty free 3d model no.", "a black and white image of a person wearing a hat"], "question": "which entity has a hat?", "label": 1}, {"captions": ["a featuring a room with various objects, a display stand, a cake with a slice, a table with a cup of coffee, a building with a rainbow, a sand dune with a sun, and a ceiling light with stars.", " a small triangular-shaped object."], "sample_ids": ["1b3945962a4b4cda9fe939dc5d63e789", "2d02985030804209a26c2c53b96a06f9"], "properties": ["a room, a cake, a table", "shape, triangle, small"], "captions_pred_pc": ["a black and white illustration of an object on a white background", "a black and white image of a piece of metal"], "captions_pred_image": ["a 3d rendering of a white room with various items in it", "a black piece of furniture on a white background"], "question": "which object is a triangle?", "label": 1}, {"captions": [" a molecule featuring green, red, and blue spheres.", " a small yellow table with a staircase and a square ceiling light fixture."], "sample_ids": ["1c0e821eb7c4489dbff9e20d7e8575a3", "36f4d2cbd02345c6a77f7345ebde841c"], "properties": ["color, sphere, molecule", "table, staircase, light"], "captions_pred_pc": ["a black and white photograph of a group of geometric shapes arranged in the shape of a diamond", "a black and white photo of the letter g"], "captions_pred_image": ["a 3d model of a molecule in the shape of a pyramid", "a 3d model of a table with stairs"], "question": "which entity is a table?", "label": 1}, {"captions": [" a yellow and white pickup truck with yellow wheels.", "a black and gold cylindrical object with a gold handle, resembling a cigarette lighter, lamp, and pen."], "sample_ids": ["6f6861c416be4a59ac201f8cb019c349", "c9b1c89380e947f58aa06eb56c93c6d8"], "properties": ["color, yellow, white, wheels", "- color is black and gold- shape is cylindrical- material is metal"], "captions_pred_pc": ["a car made of dots on a white background a car made of dots on a white background stock illustration \u00a9 iStock/Getty Images", "a black and white image of a circular object on a white background"], "captions_pred_image": ["a 3d model of a pickup truck royalty-free 3d model preview no.2", "a 3d model of a black and white object on a gray background"], "question": "which object is made of metal", "label": 1}, {"captions": [" a small house with a blue roof.", " a brick building with a roof structure and roof truss."], "sample_ids": ["fa21afd3a99d448cb23fa527a784769c", "84e8acad28664a738df69d719df9e263"], "properties": ["roof, color, blue", "roof, structure, truss"], "captions_pred_pc": ["a house made of dots on a white background a house made of dots on a white background royalty free illustration", "a black and white polka dots pattern on a white background polka dots pattern on a white background illustration"], "captions_pred_image": ["a 3d model of a house with a porch and balcony royalty-free 3d model preview no.2", "a 3d model of a brick building with a roof"], "question": "which roof is made of a truss", "label": 1}] \ No newline at end of file diff --git a/lavis/configs/datasets/esc50/defaults_mm_cls.yaml b/lavis/configs/datasets/esc50/defaults_mm_cls.yaml new file mode 100644 index 000000000..375b62b3b --- /dev/null +++ b/lavis/configs/datasets/esc50/defaults_mm_cls.yaml @@ -0,0 +1,37 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /export/einstein-vision/audio_datasets/ESC-50-master/meta/esc50.csv + + audio: + storage: /export/einstein-vision/audio_datasets/ESC-50-master/audio \ No newline at end of file diff --git a/lavis/configs/datasets/flickr30k/defaults_cap.yaml b/lavis/configs/datasets/flickr30k/defaults_cap.yaml new file mode 100644 index 000000000..021f5033e --- /dev/null +++ b/lavis/configs/datasets/flickr30k/defaults_cap.yaml @@ -0,0 +1,39 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + flickr30k_caption: # name of the dataset builder + # dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_train.json + storage: flickr30k/annotations/train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: flickr30k/annotations/val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k diff --git a/lavis/configs/datasets/flickr30k/defaults_cap_instruct.yaml b/lavis/configs/datasets/flickr30k/defaults_cap_instruct.yaml new file mode 100644 index 000000000..15f075038 --- /dev/null +++ b/lavis/configs/datasets/flickr30k/defaults_cap_instruct.yaml @@ -0,0 +1,41 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + flickr30k_caption_instruct: # name of the dataset builder + # dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_train.json + storage: flickr30k/annotations/train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: flickr30k/annotations/val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k diff --git a/lavis/configs/datasets/gqa/balanced_testdev_instruct.yaml b/lavis/configs/datasets/gqa/balanced_testdev_instruct.yaml new file mode 100644 index 000000000..0d3b49589 --- /dev/null +++ b/lavis/configs/datasets/gqa/balanced_testdev_instruct.yaml @@ -0,0 +1,46 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + gqa: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ diff --git a/lavis/configs/datasets/gqa/balanced_val_instruct.yaml b/lavis/configs/datasets/gqa/balanced_val_instruct.yaml new file mode 100644 index 000000000..43f2277dc --- /dev/null +++ b/lavis/configs/datasets/gqa/balanced_val_instruct.yaml @@ -0,0 +1,47 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + gqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/val_balanced_questions.json + storage: + - gqa/annotations/val_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ diff --git a/lavis/configs/datasets/gqa/defaults_instruct.yaml b/lavis/configs/datasets/gqa/defaults_instruct.yaml new file mode 100644 index 000000000..86bcc6e1e --- /dev/null +++ b/lavis/configs/datasets/gqa/defaults_instruct.yaml @@ -0,0 +1,55 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + gqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/gqa/train_all_questions_0.json + # - /export/share/datasets/vision/GQA/questions1.2/train_all_questions/train_all_questions_0.json + # - /export/share/datasets/vision/GQA/questions1.2/val_all_questions.json + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/gqa/val_all_questions.json + storage: + - gqa/annotations/train_all_questions_0.json + - gqa/annotations/val_all_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_val.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/large_vocab_train_lavis.json + storage: + - aokvqa/annotations/aokvqa_v1p0_val.json + - aokvqa/annotations/large_vocab_train_lavis.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_test.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/large_vocab_train_lavis.json + storage: + - aokvqa/annotations/aokvqa_v1p0_test.json + - aokvqa/annotations/large_vocab_train_lavis.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ diff --git a/lavis/configs/datasets/iconqa/defaults.yaml b/lavis/configs/datasets/iconqa/defaults.yaml new file mode 100644 index 000000000..b09339987 --- /dev/null +++ b/lavis/configs/datasets/iconqa/defaults.yaml @@ -0,0 +1,52 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + iconqa: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + + text_processor: + train: + name: blip_question + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/iconqa/annotations_train.json + # - /export/share/datasets/vision_language/iconqa/annotations_train.json + storage: + - iconqa/annotations/train.json + # - /export/share/datasets/vision_language/iconqa/annotations_train.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/iconqa/annotations_val.json + # - /export/share/datasets/vision_language/iconqa/annotations_val.json + storage: + - iconqa/annotations/val.json + # - /export/share/datasets/vision_language/iconqa/annotations_val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/iconqa/annotations_test.json + # - /export/share/datasets/vision_language/iconqa/annotations_test.json + storage: + - iconqa/annotations/test.json + # - /export/share/datasets/vision_language/iconqa/annotations_test.json + images: + storage: /export/share/datasets/vision_language/iconqa/all_images/ + diff --git a/lavis/configs/datasets/iconqa/defaults_instruct.yaml b/lavis/configs/datasets/iconqa/defaults_instruct.yaml new file mode 100644 index 000000000..d4308e7d3 --- /dev/null +++ b/lavis/configs/datasets/iconqa/defaults_instruct.yaml @@ -0,0 +1,55 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + iconqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/iconqa/annotations_train.json + # - /export/share/datasets/vision_language/iconqa/annotations_train.json + storage: + - iconqa/annotations/train.json + # - /export/share/datasets/vision_language/iconqa/annotations_train.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/iconqa/annotations_val.json + # - /export/share/datasets/vision_language/iconqa/annotations_val.json + storage: + - iconqa/annotations/val.json + # - /export/share/datasets/vision_language/iconqa/annotations_val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/iconqa/annotations_test.json + # - /export/share/datasets/vision_language/iconqa/annotations_test.json + storage: + - iconqa/annotations/test.json + # - /export/share/datasets/vision_language/iconqa/annotations_test.json + + images: + storage: /export/share/datasets/vision_language/iconqa/all_images/ + diff --git a/lavis/configs/datasets/laion/defaults_400M.yaml b/lavis/configs/datasets/laion/defaults_400M.yaml new file mode 100644 index 000000000..a93b76995 --- /dev/null +++ b/lavis/configs/datasets/laion/defaults_400M.yaml @@ -0,0 +1,20 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + laion400M: + + data_type: images + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + storage: /export/laion400m-data-ssd/laion115m_capfilt_20220817/{part0/part0,part1/part1,part2/part2}_node{00..15}_shard{000000..000118}.tar +# storage: /export/laion/laion2B-multi/part-00000/{00000..01743}.tar diff --git a/lavis/configs/datasets/laion/defaults_400M_instruct.yaml b/lavis/configs/datasets/laion/defaults_400M_instruct.yaml new file mode 100644 index 000000000..b7f4a5c17 --- /dev/null +++ b/lavis/configs/datasets/laion/defaults_400M_instruct.yaml @@ -0,0 +1,31 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + laion400M_instruct: + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + storage: /export/laion400m-data-ssd/laion115m_capfilt_20220817/{part0/part0,part1/part1,part2/part2}_node{00..15}_shard{000000..000118}.tar +# storage: /export/laion/laion2B-multi/part-00000/{00000..01743}.tar diff --git a/lavis/configs/datasets/llava150k/defaults_dial.yaml b/lavis/configs/datasets/llava150k/defaults_dial.yaml new file mode 100644 index 000000000..f315dd6f7 --- /dev/null +++ b/lavis/configs/datasets/llava150k/defaults_dial.yaml @@ -0,0 +1,32 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + + build_info: + annotations: + train: + url: + - https://huggingface.co/datasets/liuhaotian/LLaVA-Instruct-150K/resolve/main/llava_instruct_150k.json + storage: + - LLaVA-Instruct-150K/annotations/lava_instruct_150k.json + # Be careful not to append minus sign (-) before split to avoid itemizing + images: + storage: /export/share/datasets/vision/coco/images/train2017 diff --git a/lavis/configs/datasets/modelnet40/defaults_cls.yaml b/lavis/configs/datasets/modelnet40/defaults_cls.yaml new file mode 100644 index 000000000..8c16d0aa6 --- /dev/null +++ b/lavis/configs/datasets/modelnet40/defaults_cls.yaml @@ -0,0 +1,55 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc, images] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img \ No newline at end of file diff --git a/lavis/configs/datasets/msrvtt/defaults_cap_instruct.yaml b/lavis/configs/datasets/msrvtt/defaults_cap_instruct.yaml new file mode 100644 index 000000000..ce550ec35 --- /dev/null +++ b/lavis/configs/datasets/msrvtt/defaults_cap_instruct.yaml @@ -0,0 +1,48 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + msrvtt_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + # val: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + # storage: msrvtt/annotations/cap_val.json + # test: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + # storage: msrvtt/annotations/cap_test.json + videos: + storage: msrvtt/videos diff --git a/lavis/configs/datasets/msrvtt/defaults_qa_instruct.yaml b/lavis/configs/datasets/msrvtt/defaults_qa_instruct.yaml new file mode 100644 index 000000000..1d9c58247 --- /dev/null +++ b/lavis/configs/datasets/msrvtt/defaults_qa_instruct.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + msrvtt_qa_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + # val: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + # storage: msrvtt/annotations/qa_val.json + # test: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + # storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: msrvtt/videos diff --git a/lavis/configs/datasets/msvd/defaults_cap_instruct.yaml b/lavis/configs/datasets/msvd/defaults_cap_instruct.yaml new file mode 100644 index 000000000..4032b298c --- /dev/null +++ b/lavis/configs/datasets/msvd/defaults_cap_instruct.yaml @@ -0,0 +1,50 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + msvd_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos diff --git a/lavis/configs/datasets/msvd/defaults_qa_instruct.yaml b/lavis/configs/datasets/msvd/defaults_qa_instruct.yaml new file mode 100644 index 000000000..b7b2ad77b --- /dev/null +++ b/lavis/configs/datasets/msvd/defaults_qa_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + msvd_qa_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id diff --git a/lavis/configs/datasets/music_avqa/defaults_mm_qa.yaml b/lavis/configs/datasets/music_avqa/defaults_mm_qa.yaml new file mode 100644 index 000000000..4c5da606e --- /dev/null +++ b/lavis/configs/datasets/music_avqa/defaults_mm_qa.yaml @@ -0,0 +1,66 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +datasets: + musicavqa_mm: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_question + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + # - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-val.json + storage: + - /musicavqa/annotations/avqa-val.json + # - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-val.json + + test: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-test.json + storage: + # - /musicavqa/annotations/avqa-test.json + - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-test.json + + templates: null + + audio: + storage: /export/video-language-dataset/data/MUSIC-AVQA/data/MUSIC-AVQA-videos-Real + + video: + storage: /export/video-language-dataset/data/MUSIC-AVQA/data/MUSIC-AVQA-videos-Real + diff --git a/lavis/configs/datasets/music_avqa/defaults_mm_qa_instruct.yaml b/lavis/configs/datasets/music_avqa/defaults_mm_qa_instruct.yaml new file mode 100644 index 000000000..11d78f6cf --- /dev/null +++ b/lavis/configs/datasets/music_avqa/defaults_mm_qa_instruct.yaml @@ -0,0 +1,69 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + # - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-val.json + storage: + - /musicavqa/annotations/avqa-val.json + # - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + # - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-test.json + storage: + - /musicavqa/annotations/avqa-test.json + # - /export/video-language-dataset/data/MUSIC-AVQA/data/json/avqa-test.json + + templates: null + + audio: + storage: /export/video-language-dataset/data/MUSIC-AVQA/data/MUSIC-AVQA-videos-Real + + video: + storage: /export/video-language-dataset/data/MUSIC-AVQA/data/MUSIC-AVQA-videos-Real + diff --git a/lavis/configs/datasets/objaverse/defaults_mm_cap.yaml b/lavis/configs/datasets/objaverse/defaults_mm_cap.yaml new file mode 100644 index 000000000..083e628d4 --- /dev/null +++ b/lavis/configs/datasets/objaverse/defaults_mm_cap.yaml @@ -0,0 +1,54 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + objaverse_mm_caption: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [pc, images] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ \ No newline at end of file diff --git a/lavis/configs/datasets/objaverse/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/objaverse/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..ec36400bc --- /dev/null +++ b/lavis/configs/datasets/objaverse/defaults_mm_cap_instruct.yaml @@ -0,0 +1,55 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc, images] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + # val: + # url: + # # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + # storage: + # # - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ \ No newline at end of file diff --git a/lavis/configs/datasets/objaverse/defaults_mm_qa.yaml b/lavis/configs/datasets/objaverse/defaults_mm_qa.yaml new file mode 100644 index 000000000..0e9134632 --- /dev/null +++ b/lavis/configs/datasets/objaverse/defaults_mm_qa.yaml @@ -0,0 +1,55 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + kwargs: + add_binary: True + remove_model_answer: True + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + # val: + # url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + # storage: + # - objaverse_qa/annotations/val.csv + # # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel \ No newline at end of file diff --git a/lavis/configs/datasets/ocrvqa/defaults.yaml b/lavis/configs/datasets/ocrvqa/defaults.yaml new file mode 100644 index 000000000..eab021156 --- /dev/null +++ b/lavis/configs/datasets/ocrvqa/defaults.yaml @@ -0,0 +1,33 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + ocr_vqa: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: "blip_question" + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/ocrvqa/ocrvqa.json + # - /export/video-language-dataset/ocrvqa/ocrvqa.json + storage: + - ocrvqa/annotations/ocrvqa.json + # - /export/video-language-dataset/ocrvqa/ocrvqa.json + images: + storage: /export/video-language-dataset/ocrvqa/images/ diff --git a/lavis/configs/datasets/ocrvqa/defaults_instruct.yaml b/lavis/configs/datasets/ocrvqa/defaults_instruct.yaml new file mode 100644 index 000000000..a6fb4eef8 --- /dev/null +++ b/lavis/configs/datasets/ocrvqa/defaults_instruct.yaml @@ -0,0 +1,35 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + ocr_vqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/ocrvqa/ocrvqa.json + # - /export/video-language-dataset/ocrvqa/ocrvqa.json + storage: + - ocrvqa/annotations/ocrvqa.json + # - /export/video-language-dataset/ocrvqa/ocrvqa.json + images: + storage: /export/video-language-dataset/ocrvqa/images/ diff --git a/lavis/configs/datasets/okvqa/defaults_instruct.yaml b/lavis/configs/datasets/okvqa/defaults_instruct.yaml new file mode 100644 index 000000000..96c56c240 --- /dev/null +++ b/lavis/configs/datasets/okvqa/defaults_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + ok_vqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + # test: + # url: + # # TODO make this order insensitive + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + # storage: + # - okvqa/annotations/vqa_val_eval.json + # - okvqa/annotations/answer_list.json + # - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + # - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images diff --git a/lavis/configs/datasets/sbu_caption/defaults_instruct.yaml b/lavis/configs/datasets/sbu_caption/defaults_instruct.yaml new file mode 100644 index 000000000..1611df1c8 --- /dev/null +++ b/lavis/configs/datasets/sbu_caption/defaults_instruct.yaml @@ -0,0 +1,38 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + sbu_caption_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/sbu/sbu.json + # - /export/share/dongxuli/data/lavis/sbu/annotation/sbu.json + storage: + - sbu_captions/annotations/sbu.json + images: + storage: sbu_captions/images + # storage: /export/share/datasets/vision_language/sbu_resize diff --git a/lavis/configs/datasets/scienceqa/defaults.yaml b/lavis/configs/datasets/scienceqa/defaults.yaml new file mode 100644 index 000000000..e33493b6d --- /dev/null +++ b/lavis/configs/datasets/scienceqa/defaults.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + scienceqa: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_question + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/scienceqa/problems_train.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_train.json + storage: + - scienceqa/annotations/problems_train.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_train.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/scienceqa/problems_val.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_val.json + storage: + - scienceqa/annotations/problems_val.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/scienceqa/problems_test.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_test.json + storage: + - scienceqa/annotations/problems_test.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_test.json + + images: + storage: /export/video-language-dataset/ScienceQA/data/scienceqa/images/ + diff --git a/lavis/configs/datasets/scienceqa/defaults_instruct.yaml b/lavis/configs/datasets/scienceqa/defaults_instruct.yaml new file mode 100644 index 000000000..3128647c2 --- /dev/null +++ b/lavis/configs/datasets/scienceqa/defaults_instruct.yaml @@ -0,0 +1,54 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + scienceqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/scienceqa/problems_train.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_train.json + storage: + - scienceqa/annotations/problems_train.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_train.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/scienceqa/problems_val.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_val.json + storage: + - scienceqa/annotations/problems_val.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/scienceqa/problems_test.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_test.json + storage: + - scienceqa/annotations/problems_test.json + # - /export/video-language-dataset/ScienceQA/data/scienceqa/problems_test.json + + images: + storage: /export/video-language-dataset/ScienceQA/data/scienceqa/images/ + diff --git a/lavis/configs/datasets/shapenet/defaults_mm_cap.yaml b/lavis/configs/datasets/shapenet/defaults_mm_cap.yaml new file mode 100644 index 000000000..1c6fb08a2 --- /dev/null +++ b/lavis/configs/datasets/shapenet/defaults_mm_cap.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +datasets: + shapenet_mm_caption: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [pc, images] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/shapenet/train_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/train_ann.json + storage: + - shapenet/annotations/train_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/train_ann.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/shapenet/test_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/test_ann.json + storage: + - shapenet/annotations/test_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/test_ann.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/shapenet_pc + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/rendered_images \ No newline at end of file diff --git a/lavis/configs/datasets/shapenet/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/shapenet/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..002379fc0 --- /dev/null +++ b/lavis/configs/datasets/shapenet/defaults_mm_cap_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +datasets: + shapenet_mm_caption_instruct: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc, images] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/shapenet/train_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/train_ann.json + storage: + - shapenet/annotations/train_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/train_ann.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/shapenet/test_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/test_ann.json + storage: + - shapenet/annotations/test_ann.json + # - /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/test_ann.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/shapenet_pc + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/ShapeNet55/rendered_images \ No newline at end of file diff --git a/lavis/configs/datasets/snli_ve/defaults_instruct.yaml b/lavis/configs/datasets/snli_ve/defaults_instruct.yaml new file mode 100644 index 000000000..32d30846c --- /dev/null +++ b/lavis/configs/datasets/snli_ve/defaults_instruct.yaml @@ -0,0 +1,49 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/snlive/ve_train.json + # - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/snlive/ve_dev.json + # - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/snlive/ve_test.json + # - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images diff --git a/lavis/configs/datasets/textcaps/defaults.yaml b/lavis/configs/datasets/textcaps/defaults.yaml new file mode 100644 index 000000000..36b30915d --- /dev/null +++ b/lavis/configs/datasets/textcaps/defaults.yaml @@ -0,0 +1,46 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + textcaps_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://dl.fbaipublicfiles.com/textvqa/data/textcaps/TextCaps_0.1_train.json + storage: + - TextCaps/TextCaps_0.1_train.json + val: + url: + - https://dl.fbaipublicfiles.com/textvqa/data/textcaps/TextCaps_0.1_val.json + storage: + - TextCaps/TextCaps_0.1_val.json + test: + url: + - https://dl.fbaipublicfiles.com/textvqa/data/textcaps/TextCaps_0.1_test.json + storage: + - TextCaps/TextCaps_0.1_test.json + images: + # storage: nocaps/images + storage: /export/share/datasets/vision_language/TextCaps/images diff --git a/lavis/configs/datasets/textcaps/defaults_instruct.yaml b/lavis/configs/datasets/textcaps/defaults_instruct.yaml new file mode 100644 index 000000000..109da7c89 --- /dev/null +++ b/lavis/configs/datasets/textcaps/defaults_instruct.yaml @@ -0,0 +1,47 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + textcaps_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://dl.fbaipublicfiles.com/textvqa/data/textcaps/TextCaps_0.1_train.json + storage: + - TextCaps/TextCaps_0.1_train.json + val: + url: + - https://dl.fbaipublicfiles.com/textvqa/data/textcaps/TextCaps_0.1_val.json + storage: + - TextCaps/TextCaps_0.1_val.json + test: + url: + - https://dl.fbaipublicfiles.com/textvqa/data/textcaps/TextCaps_0.1_test.json + storage: + - TextCaps/TextCaps_0.1_test.json + images: + # storage: nocaps/images + storage: /export/share/datasets/vision_language/TextCaps/images diff --git a/lavis/configs/datasets/valor/defaults_mm_cap.yaml b/lavis/configs/datasets/valor/defaults_mm_cap.yaml new file mode 100644 index 000000000..7451e6e0a --- /dev/null +++ b/lavis/configs/datasets/valor/defaults_mm_cap.yaml @@ -0,0 +1,68 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + valor_mm_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/valor/desc_val.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_val.json + storage: + - valor/annotations/desc_val.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/valor/desc_test.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_test.json + storage: + - valor/annotations/desc_test.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_test.json + + templates: null + + audio: + storage: /export/video-language-dataset/data/VALOR/videos + + video: + storage: /export/video-language-dataset/data/VALOR/videos + diff --git a/lavis/configs/datasets/valor/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/valor/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..5a47aa857 --- /dev/null +++ b/lavis/configs/datasets/valor/defaults_mm_cap_instruct.yaml @@ -0,0 +1,70 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + valor_mm_caption_instruct: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/valor/desc_val.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_val.json + storage: + - valor/annotations/desc_val.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/valor/desc_test.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_test.json + storage: + - valor/annotations/desc_test.json + # - /export/video-language-dataset/data/VALOR/valor-32k-annotations/desc_test.json + + templates: null + + audio: + storage: /export/video-language-dataset/data/VALOR/videos + + video: + storage: /export/video-language-dataset/data/VALOR/videos + diff --git a/lavis/configs/datasets/vatex/defaults_cap.yaml b/lavis/configs/datasets/vatex/defaults_cap.yaml index 888f66d60..a5dc1c7ff 100644 --- a/lavis/configs/datasets/vatex/defaults_cap.yaml +++ b/lavis/configs/datasets/vatex/defaults_cap.yaml @@ -1,4 +1,4 @@ - # Copyright (c) 2022, salesforce.com, inc. + # Copyright (c) 2023, salesforce.com, inc. # All rights reserved. # SPDX-License-Identifier: BSD-3-Clause # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause diff --git a/lavis/configs/datasets/vatex/defaults_cap_instruct.yaml b/lavis/configs/datasets/vatex/defaults_cap_instruct.yaml new file mode 100644 index 000000000..7fd5f0038 --- /dev/null +++ b/lavis/configs/datasets/vatex/defaults_cap_instruct.yaml @@ -0,0 +1,62 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vatex_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [video, audio] + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ diff --git a/lavis/configs/datasets/vg/defaults_caption_instruct.yaml b/lavis/configs/datasets/vg/defaults_caption_instruct.yaml new file mode 100644 index 000000000..8015e94ae --- /dev/null +++ b/lavis/configs/datasets/vg/defaults_caption_instruct.yaml @@ -0,0 +1,34 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vg_caption_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/visual_genome/vg_caption.json + storage: vg/annotations/vg_caption.json + images: + storage: /export/share/datasets/vision/visual-genome/ #vg/images/ diff --git a/lavis/configs/datasets/vg/defaults_vqa_instruct.yaml b/lavis/configs/datasets/vg/defaults_vqa_instruct.yaml new file mode 100644 index 000000000..787c9529c --- /dev/null +++ b/lavis/configs/datasets/vg/defaults_vqa_instruct.yaml @@ -0,0 +1,34 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vg_vqa_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/visual_genome/vg_qa.json + storage: vg/annotations/vg_qa.json + images: + storage: /export/share/datasets/vision/visual-genome/ #vg/images/ diff --git a/lavis/configs/datasets/violin/defaults_cap.yaml b/lavis/configs/datasets/violin/defaults_cap.yaml new file mode 100644 index 000000000..dc90d4823 --- /dev/null +++ b/lavis/configs/datasets/violin/defaults_cap.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + violin_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + storage: + - violin/annotations/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + # val: + # url: + # # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + # storage: + # # - violin/annotations/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + videos: + storage: /export/video-language-dataset/data/violin/videos diff --git a/lavis/configs/datasets/violin/defaults_cap_instruct.yaml b/lavis/configs/datasets/violin/defaults_cap_instruct.yaml new file mode 100644 index 000000000..0d43317f4 --- /dev/null +++ b/lavis/configs/datasets/violin/defaults_cap_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + violin_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_instruction + modality: video + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + storage: + - violin/annotations/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + # val: + # url: + # # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + # storage: + # # - violin/annotations/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + videos: + storage: /export/video-language-dataset/data/violin/videos diff --git a/lavis/configs/datasets/violin/defaults_entail.yaml b/lavis/configs/datasets/violin/defaults_entail.yaml new file mode 100644 index 000000000..82c33bd7e --- /dev/null +++ b/lavis/configs/datasets/violin/defaults_entail.yaml @@ -0,0 +1,52 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + violin_entailment: # 22452 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + storage: + - violin/annotations/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + # val: + # url: + # # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + # storage: + # # - violin/annotations/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + videos: + storage: /export/video-language-dataset/data/violin/videos diff --git a/lavis/configs/datasets/violin/defaults_entail_instruct.yaml b/lavis/configs/datasets/violin/defaults_entail_instruct.yaml new file mode 100644 index 000000000..8eda1a263 --- /dev/null +++ b/lavis/configs/datasets/violin/defaults_entail_instruct.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + violin_entailment_instruct: # 22452 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + storage: + - violin/annotations/train.json + # - /export/video-language-dataset/data/violin/annotations_lavis.json + # val: + # url: + # # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/violin/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + # storage: + # # - violin/annotations/test.json + # - /export/video-language-dataset/data/violin/annotations_lavis_test.json + videos: + storage: /export/video-language-dataset/data/violin/videos diff --git a/lavis/configs/datasets/visdial/defaults_dial.yaml b/lavis/configs/datasets/visdial/defaults_dial.yaml new file mode 100644 index 000000000..b4aaf7158 --- /dev/null +++ b/lavis/configs/datasets/visdial/defaults_dial.yaml @@ -0,0 +1,41 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + visdial: # name of the dataset builder + data_type: images #extracted features of videos (I3D, VGGish) # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/datasets/vision_language/visdial/visdial_1.0_train.json + storage: + - /export/share/datasets/vision_language/visdial/visdial_1.0_train.json + val: + url: + - /export/share/datasets/vision_language/visdial/visdial_1.0_val.json + storage: + - /export/share/datasets/vision_language/visdial/visdial_1.0_val.json + # test: + # url: /export/share/datasets/vision_language/visdial/visdial_1.0_test.json + # storage: /export/share/datasets/vision_language/visdial/visdial_1.0_test.json + images: + storage: /export/share/datasets/vision_language/visdial/ diff --git a/lavis/configs/datasets/visdial/defaults_dial_instruct.yaml b/lavis/configs/datasets/visdial/defaults_dial_instruct.yaml new file mode 100644 index 000000000..4849c9148 --- /dev/null +++ b/lavis/configs/datasets/visdial/defaults_dial_instruct.yaml @@ -0,0 +1,41 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + visdial_instruct: # name of the dataset builder + data_type: images #extracted features of videos (I3D, VGGish) # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/datasets/vision_language/visdial/visdial_1.0_train.json + storage: + - /export/share/datasets/vision_language/visdial/visdial_1.0_train.json + val: + url: + - /export/share/datasets/vision_language/visdial/visdial_1.0_val.json + storage: + - /export/share/datasets/vision_language/visdial/visdial_1.0_val.json + # test: + # url: /export/share/datasets/vision_language/visdial/visdial_1.0_test.json + # storage: /export/share/datasets/vision_language/visdial/visdial_1.0_test.json + images: + storage: /export/share/datasets/vision_language/visdial/ diff --git a/lavis/configs/datasets/vizwiz/defaults.yaml b/lavis/configs/datasets/vizwiz/defaults.yaml new file mode 100644 index 000000000..e44fa7761 --- /dev/null +++ b/lavis/configs/datasets/vizwiz/defaults.yaml @@ -0,0 +1,43 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vizwiz_vqa: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_question + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images diff --git a/lavis/configs/datasets/vlep/defaults_cap.yaml b/lavis/configs/datasets/vlep/defaults_cap.yaml new file mode 100644 index 000000000..0987a49e2 --- /dev/null +++ b/lavis/configs/datasets/vlep/defaults_cap.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vlep_caption: # 4900 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vlep/annotations_train_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_train_existing.json + storage: + - vlep/annotations/annotations_train_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_train_existing.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vlep/annotations_dev_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_dev_existing.json + storage: + - vlep/annotations/annotations_dev_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_dev_existing.json + videos: + storage: /export/video-language-dataset/data/vlep/videos diff --git a/lavis/configs/datasets/vlep/defaults_cap_instruct.yaml b/lavis/configs/datasets/vlep/defaults_cap_instruct.yaml new file mode 100644 index 000000000..5d5e703ca --- /dev/null +++ b/lavis/configs/datasets/vlep/defaults_cap_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vlep_caption_instruct: # 4900 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vlep/annotations_train_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_train_existing.json + storage: + - vlep/annotations/annotations_train_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_train_existing.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vlep/annotations_dev_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_dev_existing.json + storage: + - vlep/annotations/annotations_dev_existing.json + # - /export/video-language-dataset/data/vlep/annotations/annotations_dev_existing.json + videos: + storage: /export/video-language-dataset/data/vlep/videos diff --git a/lavis/configs/datasets/vsr/defaults.yaml b/lavis/configs/datasets/vsr/defaults.yaml new file mode 100644 index 000000000..f9e29b847 --- /dev/null +++ b/lavis/configs/datasets/vsr/defaults.yaml @@ -0,0 +1,49 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vsr_classification_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + storage: + - vsr/annotations/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + storage: + - vsr/annotations/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + storage: + - vsr/annotations/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + images: + storage: /export/share/datasets/vision_language/VSR/images diff --git a/lavis/configs/datasets/vsr/defaults_classification.yaml b/lavis/configs/datasets/vsr/defaults_classification.yaml new file mode 100644 index 000000000..11edcfd28 --- /dev/null +++ b/lavis/configs/datasets/vsr/defaults_classification.yaml @@ -0,0 +1,49 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vsr_classification: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + storage: + - vsr/annotations/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + storage: + - vsr/annotations/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + storage: + - vsr/annotations/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + images: + storage: /export/share/datasets/vision_language/VSR/images diff --git a/lavis/configs/datasets/vsr/defaults_classification_instruct.yaml b/lavis/configs/datasets/vsr/defaults_classification_instruct.yaml new file mode 100644 index 000000000..b09c521ef --- /dev/null +++ b/lavis/configs/datasets/vsr/defaults_classification_instruct.yaml @@ -0,0 +1,49 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vsr_caption_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + storage: + - vsr/annotations/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + storage: + - vsr/annotations/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + storage: + - vsr/annotations/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + images: + storage: /export/share/datasets/vision_language/VSR/images diff --git a/lavis/configs/datasets/vsr/defaults_instruct.yaml b/lavis/configs/datasets/vsr/defaults_instruct.yaml new file mode 100644 index 000000000..e96c6e765 --- /dev/null +++ b/lavis/configs/datasets/vsr/defaults_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + vsr_caption_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + storage: + - vsr/annotations/train.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/train.jsonl + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + storage: + - vsr/annotations/dev.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/dev.jsonl + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vsr/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + storage: + - vsr/annotations/test.jsonl + # - /export/home/data/annotations/VSR/visual-spatial-reasoning/data/splits/zeroshot/test.jsonl + images: + storage: /export/share/datasets/vision_language/VSR/images diff --git a/lavis/configs/datasets/wavcaps/defaults_mm_cap.yaml b/lavis/configs/datasets/wavcaps/defaults_mm_cap.yaml new file mode 100644 index 000000000..463a8a5d9 --- /dev/null +++ b/lavis/configs/datasets/wavcaps/defaults_mm_cap.yaml @@ -0,0 +1,63 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +datasets: + wavcaps_mm_caption: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + data_type: [audio] + + build_info: + kwargs: + cached: False + cached_dir: /export/share/datasets/audio/WavCaps/beats_features/ + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/BBC_Sound_Effects/bbc_final.json + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/FreeSound/fsd_final.json + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/SoundBible/sb_final.json + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/AudioSet_SL/as_final.json + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/wavcaps/json_data.json + storage: + - wavcaps/json_files/BBC_Sound_Effects/bbc_final.json + - wavcaps/json_files/FreeSound/fsd_final.json + - wavcaps/json_files/SoundBible/sb_final.json + - wavcaps/json_files/AudioSet_SL/as_final.json + - wavcaps/annotations/json_data.json + # train: + # url: + # - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + # - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + # - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + # - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + # - /export/share/datasets/audio/WavCaps/json_data.json + # storage: + # - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + # - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + # - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + # - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + # - /export/share/datasets/audio/WavCaps/json_data.json + + audio: + storage: /export/share/datasets/audio/WavCaps/ + \ No newline at end of file diff --git a/lavis/configs/datasets/wavcaps/defaults_mm_cap_instruct.yaml b/lavis/configs/datasets/wavcaps/defaults_mm_cap_instruct.yaml new file mode 100644 index 000000000..227a47570 --- /dev/null +++ b/lavis/configs/datasets/wavcaps/defaults_mm_cap_instruct.yaml @@ -0,0 +1,63 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +datasets: + wavcaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + cached: True + cached_dir: /export/share/datasets/audio/WavCaps/beats_features/ + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + # url: + # - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + # - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + # - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + # - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + # - /export/share/datasets/audio/WavCaps/json_data.json + # storage: + # - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + # - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + # - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + # - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + # - /export/share/datasets/audio/WavCaps/json_data.json + url: + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/BBC_Sound_Effects/bbc_final.json + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/FreeSound/fsd_final.json + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/SoundBible/sb_final.json + - https://raw.githubusercontent.com/XinhaoMei/WavCaps/master/data/json_files/AudioSet_SL/as_final.json + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/wavcaps/json_data.json + storage: + - wavcaps/json_files/BBC_Sound_Effects/bbc_final.json + - wavcaps/json_files/FreeSound/fsd_final.json + - wavcaps/json_files/SoundBible/sb_final.json + - wavcaps/json_files/AudioSet_SL/as_final.json + - wavcaps/annotations/json_data.json + + audio: + storage: /export/share/datasets/audio/WavCaps/ + \ No newline at end of file diff --git a/lavis/configs/datasets/webvid/defaults_cap.yaml b/lavis/configs/datasets/webvid/defaults_cap.yaml new file mode 100644 index 000000000..94203848e --- /dev/null +++ b/lavis/configs/datasets/webvid/defaults_cap.yaml @@ -0,0 +1,41 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + webvid2m_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/webvid2m/train.json + # - /export/home/LAVIS/webvid_annotation.json + storage: + - webvid2m/annotations/train.json + # - /export/home/LAVIS/webvid_annotation.json + images: + storage: /export/video-language-dataset/data/webvid2m/postprocess/downsampled_videos diff --git a/lavis/configs/datasets/webvid/defaults_cap_instruct.yaml b/lavis/configs/datasets/webvid/defaults_cap_instruct.yaml new file mode 100644 index 000000000..a98325f14 --- /dev/null +++ b/lavis/configs/datasets/webvid/defaults_cap_instruct.yaml @@ -0,0 +1,43 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + webvid2m_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_instruction" + modality: video + task: caption + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/webvid2m/train.json + # - /export/home/LAVIS/webvid_annotation.json + storage: + - webvid2m/annotations/train.json + # - /export/home/LAVIS/webvid_annotation.json + images: + storage: /export/video-language-dataset/data/webvid2m/postprocess/downsampled_videos diff --git a/lavis/configs/datasets/youcook/defaults_cap.yaml b/lavis/configs/datasets/youcook/defaults_cap.yaml new file mode 100644 index 000000000..035c897e8 --- /dev/null +++ b/lavis/configs/datasets/youcook/defaults_cap.yaml @@ -0,0 +1,51 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + youcook_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/youcook/train_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/train_annotations.json + storage: + - youcook/annotations/train_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/train_annotations.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/youcook/val_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/val_annotations.json + storage: + - youcook/annotations/val_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/val_annotations.json + videos: + storage: /export/video-language-dataset/data/youcook/raw_videos diff --git a/lavis/configs/datasets/youcook/defaults_cap_instruct.yaml b/lavis/configs/datasets/youcook/defaults_cap_instruct.yaml new file mode 100644 index 000000000..45b371c72 --- /dev/null +++ b/lavis/configs/datasets/youcook/defaults_cap_instruct.yaml @@ -0,0 +1,53 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + youcook_caption_instruct: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + text_processor: + train: + name: blip_instruction + modality: video + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/youcook/train_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/train_annotations.json + storage: + - youcook/annotations/train_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/train_annotations.json + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/youcook/val_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/val_annotations.json + storage: + - youcook/annotations/val_annotations.json + # - /export/video-language-dataset/data/youcook/annotations/val_annotations.json + videos: + storage: /export/video-language-dataset/data/youcook/raw_videos diff --git a/lavis/configs/datasets/yt8m/defaults_mm_dial.yaml b/lavis/configs/datasets/yt8m/defaults_mm_dial.yaml new file mode 100644 index 000000000..e46f41707 --- /dev/null +++ b/lavis/configs/datasets/yt8m/defaults_mm_dial.yaml @@ -0,0 +1,62 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +datasets: + yt8m_mm_dialogue: # name of the dataset builder + data_type: [video] #extracted features of videos (I3D, VGGish) # [images|videos|features] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: False + + audio_processor: + train: + name: beats_audio + # sampling_rate: 16000 + eval: + name: beats_audio + # sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/video-language-dataset/data/yt-8m/ytd_gpt3_safe_json/train.json + storage: + - /export/video-language-dataset/data/yt-8m/ytd_gpt3_safe_json/train.json + val: + url: + - /export/video-language-dataset/data/yt-8m/ytd_gpt3_safe_json/validation.json + storage: + - /export/video-language-dataset/data/yt-8m/ytd_gpt3_safe_json/validation.json + + templates: null + + audio: + storage: /export/video-language-dataset/data/yt-8m/audios + + video: + storage: /export/video-language-dataset/data/yt-8m/videos + diff --git a/lavis/configs/models/blip2/blip2_xinstruct_vicuna13b.yaml b/lavis/configs/models/blip2/blip2_xinstruct_vicuna13b.yaml new file mode 100644 index 000000000..7502033df --- /dev/null +++ b/lavis/configs/models/blip2/blip2_xinstruct_vicuna13b.yaml @@ -0,0 +1,74 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/models/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/models/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/models/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/models/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" diff --git a/lavis/configs/models/blip2/blip2_xinstruct_vicuna7b.yaml b/lavis/configs/models/blip2/blip2_xinstruct_vicuna7b.yaml new file mode 100644 index 000000000..023c2bc21 --- /dev/null +++ b/lavis/configs/models/blip2/blip2_xinstruct_vicuna7b.yaml @@ -0,0 +1,77 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_improved.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer_improved.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_improved.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_improved.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-7b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video", "pc", "image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "USER: " + postfix: "\nASSISTANT:" + predict_with_gen: False + clean_tokenization: True \ No newline at end of file diff --git a/lavis/datasets/builders/audio_caption_builder.py b/lavis/datasets/builders/audio_caption_builder.py new file mode 100644 index 000000000..b4e3828e6 --- /dev/null +++ b/lavis/datasets/builders/audio_caption_builder.py @@ -0,0 +1,123 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.common.registry import registry +from lavis.datasets.builders.base_dataset_builder import BaseDatasetBuilder, MultiModalDatasetBuilder + +from lavis.datasets.datasets.audio_captioning_datasets import ( + AudioSetDataset, + AudioSetEvalDataset, + AudioSetInstructDataset, + AudioCapsDataset, + AudioCapsEvalDataset, + AudioCapsInstructDataset, + ClothoV2Dataset, + ClothoV2InstructDataset, + ClothoV2EvalDataset, + AudioLanguagePretrainDataset, + AudioLanguagePretrainEvalDataset, + AudioLanguagePretrainInstructDataset +) + + +class AudioCapBuilder(MultiModalDatasetBuilder): + train_dataset_cls = AudioSetDataset + eval_dataset_cls = AudioSetEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/audioset/defaults_mm_cap.yaml", + } + + + def build(self): + datasets = super().build() + build_info = self.config.build_info + for split,ds in datasets.items(): + # TODO: add option to download templates + templates = build_info.get('templates') + if templates == None: + ds._build_templates(None) + else: + ds._build_templates(build_info.templates.storage) + return datasets + +@registry.register_builder("audioset_mm_caption") +class AudioSetBuilder(AudioCapBuilder): + train_dataset_cls = AudioSetDataset + eval_dataset_cls = AudioSetEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/audioset/defaults_mm_cap.yaml", + } + +@registry.register_builder("audioset_mm_caption_instruct") +class AudioSetInstructBuilder(AudioCapBuilder): + train_dataset_cls = AudioSetInstructDataset + eval_dataset_cls = AudioSetEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/audioset/defaults_mm_cap_instruct.yaml", + } + +@registry.register_builder("audiocaps_mm_caption") +class AudioCapsCapBuilder(AudioCapBuilder): + train_dataset_cls = AudioCapsDataset + eval_dataset_cls = AudioCapsEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/audiocaps/defaults_mm_cap.yaml", + } + +@registry.register_builder("audiocaps_mm_caption_instruct") +class AudioCapsInstructCapBuilder(AudioCapBuilder): + train_dataset_cls = AudioCapsInstructDataset + eval_dataset_cls = AudioCapsEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/audiocaps/defaults_mm_cap_instruct.yaml", + } + +@registry.register_builder("clothov2") +class ClothoCapInstructBuilder(MultiModalDatasetBuilder): + train_dataset_cls = ClothoV2Dataset + eval_dataset_cls = ClothoV2EvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/clotho/defaults_mm_cap.yaml", + } + +@registry.register_builder("clothov2_instruct") +class ClothoCapInstructBuilder(MultiModalDatasetBuilder): + train_dataset_cls = ClothoV2InstructDataset + eval_dataset_cls = ClothoV2EvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/clotho/defaults_mm_cap_instruct.yaml", + } + + +@registry.register_builder("wavcaps_mm_caption") +class WavCapsCapBuilder(AudioCapBuilder): + train_dataset_cls = AudioLanguagePretrainDataset + eval_dataset_cls = AudioLanguagePretrainEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/wavcaps/defaults_mm_cap.yaml", + } + + + +@registry.register_builder("wavcaps_mm_caption_instruct") +class WavCapsCapInstructBuilder(AudioCapBuilder): + train_dataset_cls = AudioLanguagePretrainInstructDataset + eval_dataset_cls = AudioLanguagePretrainEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/wavcaps/defaults_mm_cap_instruct.yaml", + } + + diff --git a/lavis/datasets/builders/audio_qa_builder.py b/lavis/datasets/builders/audio_qa_builder.py new file mode 100644 index 000000000..8e9435a2d --- /dev/null +++ b/lavis/datasets/builders/audio_qa_builder.py @@ -0,0 +1,28 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.common.registry import registry +from lavis.datasets.builders.audio_caption_builder import AudioCapBuilder +from lavis.datasets.datasets.audio_qa_datasets import AudioCapsQADataset, ClothoQADataset + +@registry.register_builder("audiocaps_mm_qa") +class AudioCapsQABuilder(AudioCapBuilder): + train_dataset_cls = AudioCapsQADataset + eval_dataset_cls = AudioCapsQADataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/audiocaps/defaults_mm_qa.yaml", + } + +@registry.register_builder("clotho_qa") +class ClothoQABuilder(AudioCapBuilder): + train_dataset_cls = ClothoQADataset + eval_dataset_cls = ClothoQADataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/clotho/defaults_mm_qa.yaml", + } \ No newline at end of file diff --git a/lavis/datasets/builders/discrn_builders.py b/lavis/datasets/builders/discrn_builders.py new file mode 100644 index 000000000..0f7cc690b --- /dev/null +++ b/lavis/datasets/builders/discrn_builders.py @@ -0,0 +1,28 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.common.registry import registry +from lavis.datasets.builders.base_dataset_builder import BaseDatasetBuilder, MultiModalDatasetBuilder +from lavis.datasets.datasets.discriminatory_reasoning_datasets import DisCRnDataset + + + +@registry.register_builder("image_pc_discrn") +class DiscrnImagePcBuilder(MultiModalDatasetBuilder): + eval_dataset_cls = DisCRnDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/discriminatory_reasoning/defaults_mm_image_pc.yaml", + } + +@registry.register_builder("audio_video_discrn") +class DiscrnAudioVideoBuilder(MultiModalDatasetBuilder): + eval_dataset_cls = DisCRnDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/discriminatory_reasoning/defaults_mm_audio_video.yaml", + } diff --git a/lavis/datasets/builders/object3d_caption_builder.py b/lavis/datasets/builders/object3d_caption_builder.py new file mode 100644 index 000000000..fd764cb76 --- /dev/null +++ b/lavis/datasets/builders/object3d_caption_builder.py @@ -0,0 +1,65 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.common.registry import registry +from lavis.datasets.builders.base_dataset_builder import MultiModalDatasetBuilder +from lavis.datasets.datasets.object3d_captioning_datasets import ( + ObjaverseCaptionDataset, + ObjaverseCaptionEvalDataset, + ObjaverseCaptionInstructDataset, + ShapenetCaptionDataset, + ShapenetCaptionEvalDataset, + ShapenetCaptionInstructDataset, +) + +@registry.register_builder("objaverse_mm_caption") +class ObjaverseCaptionBuilder(MultiModalDatasetBuilder): + train_dataset_cls = ObjaverseCaptionDataset + eval_dataset_cls = ObjaverseCaptionEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/objaverse/defaults_mm_cap.yaml", + } + + def build(self): + datasets = super().build() + build_info = self.config.build_info + for split,ds in datasets.items(): + # TODO: add option to download templates + templates = build_info.get('templates') + if templates == None: + ds._build_templates(None) + else: + ds._build_templates(build_info.templates.storage) + return datasets + +@registry.register_builder("objaverse_mm_caption_instruct") +class ObjaverseCaptionInstructBuilder(ObjaverseCaptionBuilder): + train_dataset_cls = ObjaverseCaptionInstructDataset + eval_dataset_cls = ObjaverseCaptionEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/objaverse/defaults_mm_cap_instruct.yaml", + } + +@registry.register_builder("shapenet_mm_caption") +class ShapenetCaptionBuilder(ObjaverseCaptionBuilder): + train_dataset_cls = ShapenetCaptionDataset + eval_dataset_cls = ShapenetCaptionEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/shapenet/defaults_mm_cap.yaml", + } + +@registry.register_builder("shapenet_mm_caption_instruct") +class ShapenetCaptionInstructBuilder(ObjaverseCaptionBuilder): + train_dataset_cls = ShapenetCaptionInstructDataset + eval_dataset_cls = ShapenetCaptionEvalDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/shapenet/defaults_mm_cap_instruct.yaml", + } \ No newline at end of file diff --git a/lavis/datasets/builders/object3d_classification_builder.py b/lavis/datasets/builders/object3d_classification_builder.py new file mode 100644 index 000000000..b214d5df7 --- /dev/null +++ b/lavis/datasets/builders/object3d_classification_builder.py @@ -0,0 +1,19 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.common.registry import registry +from lavis.datasets.builders.base_dataset_builder import BaseDatasetBuilder, MultiModalDatasetBuilder +from lavis.datasets.datasets.object3d_classification_datasets import ModelNetClassificationDataset + +@registry.register_builder("modelnet40_cls") +class ModelNetClassificationBuilder(MultiModalDatasetBuilder): + train_dataset_cls = ModelNetClassificationDataset + eval_dataset_cls = ModelNetClassificationDataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/modelnet40/defaults_cls.yaml", + } \ No newline at end of file diff --git a/lavis/datasets/builders/object3d_qa_builder.py b/lavis/datasets/builders/object3d_qa_builder.py new file mode 100644 index 000000000..50ef545f8 --- /dev/null +++ b/lavis/datasets/builders/object3d_qa_builder.py @@ -0,0 +1,19 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.common.registry import registry +from lavis.datasets.builders.object3d_caption_builder import ObjaverseCaptionBuilder +from lavis.datasets.datasets.object3d_qa_datasets import ObjaverseQADataset + +@registry.register_builder("objaverse_mm_qa") +class ObjaverseQABuilder(ObjaverseCaptionBuilder): + train_dataset_cls = ObjaverseQADataset + eval_dataset_cls = ObjaverseQADataset + + DATASET_CONFIG_DICT = { + "default": "configs/datasets/objaverse/defaults_mm_qa.yaml", + } \ No newline at end of file diff --git a/lavis/datasets/datasets/audio_captioning_datasets.py b/lavis/datasets/datasets/audio_captioning_datasets.py new file mode 100644 index 000000000..7884e40e0 --- /dev/null +++ b/lavis/datasets/datasets/audio_captioning_datasets.py @@ -0,0 +1,407 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +from collections import OrderedDict +import torch +import copy +import pathlib +import random +import json +import pandas as pd +import torchaudio +import torch +from tqdm import tqdm + +from lavis.datasets.datasets.base_dataset import BaseDataset + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + + return OrderedDict( + { + "file": ann["image"], + "label": ann["caption"], + "audio": sample["audio"], + "audio_path": sample["audio_path"], + "caption": sample["caption"], + + } + ) + + +class AudioCaptioningDataset(BaseDataset, __DisplMixin): + def __init__(self, **kwargs): + self.modalities = kwargs['modalities'] + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + for modality in self.modalities: + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + + def get_audio_path(self, ann): + raise NotImplementedError("Subclasses should implement this!") + + def is_empty_audio(self, ann): + path = self.get_audio_path(ann) + try: + waveform, sr = torchaudio.load(path) + + # Convert to mono if it's stereo + if waveform.shape[0] == 2: + waveform = torch.mean(waveform, dim=0) + + except torchaudio.TorchaudioException: + return True # Audio loading failed + + return waveform.nelement() == 0 + + def get_existing_audio_annotations(self): + return [f.split('_')[0] for f in os.listdir(self.audio_root)] + + def get_existing_video_annotations(self): + return os.listdir(self.video_root) + + def get_existing_images_annotations(self): + return os.listdir(self.vis_root) + + def get_video_path(self, ann): + return pathlib.Path(os.path.join(self.video_root, ann[self.sample_id_key])).resolve() + + def get_images_path(self, ann): + return pathlib.Path(os.path.join(self.vis_root, ann[self.sample_id_key])).resolve() + + def __len__(self): + return len(self.annotation) + + def __getitem__(self, index): + raise NotImplementedError("Subclasses should implement this!") + + def _build_templates(self, templates_path): + # use captions not templates + if templates_path is None: + self.templates = None + else: + with open(templates_path) as f: + self.templates = json.load(f) + +class AudioSetDataset(AudioCaptioningDataset): + def __init__(self, **kwargs): + self.dataset_name = 'audioset' + self.sample_id_key = 'YTID' + clean_ids = [l.strip() for l in open(kwargs['ann_paths'][-1]).readlines()] + df = pd.read_csv(kwargs['ann_paths'][-1]) + self.mid2label = {k: v for k, v in zip(df['mid'].tolist(), df['display_name'].tolist())} + annotation = [] + for ann_path in kwargs['ann_paths'][:-1]: + df = pd.read_csv(ann_path, comment='#', header=None,names=['YTID', 'start_seconds', 'end_seconds', 'positive_labels'], skiprows=3, quotechar='"', delimiter=',', skipinitialspace=True ) + annotation.extend([row.to_dict() for i,row in df.iterrows()]) + kwargs['ann_paths'] = [] + super().__init__(**kwargs) + self.annotation = annotation + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + + self.annotation = [ann for ann in self.annotation if ann[self.sample_id_key] in self.sample_ids and ann[self.sample_id_key]] + self._add_instance_ids() + print(f"Loaded {len(self.annotation)} examples.") + + def get_audio_path(self, ann): + if 'end_seconds' not in ann: + ann['start_seconds'] = float(ann['start_time']) + del ann['start_time'] + ann['end_seconds'] = float(ann['start_seconds']) + 10.0 + return str(os.path.realpath(os.path.join(self.audio_root, ann[self.sample_id_key] + '_{:.1f}-{:.1f}.wav'.format(ann['start_seconds'], ann['end_seconds'])))).replace('all_audio/', '') + + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann["sample_id"] = ann["YTID"] + objects = ann['positive_labels'].split(',') + objects = [self.mid2label[l] for l in objects] + ann['label'] = objects + if self.templates: + ann['captions'] = [random.choice(self.templates).format(obj) for obj in objects] + else: + ann['captions'] = [random.choice(objects)] + + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if isinstance(ann[f"{modality}_path"], list): + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + else: + ann[modality if 'image' not in modality else 'image'] = getattr(self, f"{'vis' if 'image' in modality else modality}_processor")(ann[f"{modality}_path"]) + + if isinstance(ann['captions'], list): + ann['text_input'] = self.text_processor(random.choice(ann['captions'])) + else: + ann['text_input'] = self.text_processor(ann['captions']) + + if ann["audio"].sum() == 0: + return None + + return ann + +class AudioSetInstructDataset(AudioSetDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class AudioSetEvalDataset(AudioSetDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data + +class AudioCapsDataset(AudioCaptioningDataset): + def __init__(self, **kwargs): + self.sample_id_key = "youtube_id" + self.split = 'train' if 'train' in kwargs['ann_paths'][0] else 'test' if 'test' in kwargs['ann_paths'][0] else 'val' + self.modalities = kwargs['modalities'] + for modality in self.modalities: + kwargs[f"{modality}_root"] = os.path.join(kwargs[f"{modality}_root"],f'{self.split}') + super().__init__(**kwargs) + self.cached = kwargs.get('cached', False) + self.cache_dir = kwargs.get('cached_dir', '') + def get_existing_audio_annotations(self): + return [f.split('_')[0] for f in os.listdir(self.audio_root)] if not self.cached else [f.split('_')[0] for f in os.listdir(self.cached_dir)] + + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + self.annotation = [ann for ann in self.annotation if ann[self.sample_id_key] in self.sample_ids and ann[self.sample_id_key] not in kwargs.get('missing_ids', [])] + self._add_instance_ids() + print(f"Loaded {len(self.annotation)} examples.") + + def get_audio_path(self, ann): + if 'end_seconds' not in ann: + ann['start_seconds'] = float(ann['start_time']) + ann['end_seconds'] = ann['start_seconds'] + 10.0 + return os.path.join(self.audio_root, ann[self.sample_id_key] + '_{}.flac'.format(int(ann['start_seconds']))) + + def get_cached_audio_path(self, ann): + if 'end_seconds' not in ann: + ann['start_seconds'] = float(ann['start_time']) + ann['end_seconds'] = ann['start_seconds'] + 10.0 + return os.path.join(self.cache_dir, ann[self.sample_id_key] + '_{}.flac.pt'.format(int(ann['start_seconds']))) + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann['captions'] = ann['caption'] + ann["sample_id"] = ann["youtube_id"] + + for modality in self.modalities: + if modality == 'audio' and self.cached: + ann[f"{modality}_path"] = getattr(self, f"get_cached_{modality}_path")(ann) + ann["audio"] = torch.load(ann[f"{modality}_path"]) + else: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if isinstance(ann[f"{modality}_path"], list): + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + ann[modality if 'image' not in modality else 'image'] = getattr(self, f"{'vis' if 'image' in modality else modality}_processor")(ann[f"{modality}_path"]) + + if isinstance(ann['captions'], list): + ann['text_input'] = self.text_processor(random.choice(ann['captions'])) + else: + ann['text_input'] = self.text_processor(ann['captions']) + + if ann["audio"].sum() == 0: + return None + + return ann + +class AudioCapsInstructDataset(AudioCapsDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class AudioCapsEvalDataset(AudioCapsDataset): + def __init__(self, **kwargs): + super().__init__(**kwargs) + seen = set() + self.annotation = [x for x in self.annotation if x["youtube_id"] not in seen and not seen.add(x["youtube_id"])] + + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data + +class ClothoV2Dataset(BaseDataset, __DisplMixin): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + # Captions column names in CSV files + self._CAPTIONS_KEYS = ( + "caption_1", + "caption_2", + "caption_3", + "caption_4", + "caption_5", + ) + self.split = kwargs['ann_paths'][-1].split('_')[-1].split('.')[0] + for ann in self.annotation: + ann["fname"] = ann["file_name"] + ann["sound_id"] = ann["fname"] + ann["captions"] = [ann[caption_key] for caption_key in self._CAPTIONS_KEYS] + + self.audio_processor = kwargs[f"audio_processor"] + self.audio_root = kwargs[f"audio_root"] + self._add_instance_ids() + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann['audio'] = self.audio_processor(os.path.join(self.audio_root,self.split,ann['fname'])) + if ann["audio"].sum() == 0: + return None + ann['audio_path'] = os.path.join(self.audio_root,self.split,ann['fname']) + ann["text_input"] = self.text_processor(random.choice(ann['captions'])) + return ann + +class ClothoV2InstructDataset(ClothoV2Dataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class ClothoV2EvalDataset(ClothoV2Dataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data + +# class ClothoV2EvalDataset(BaseDataset, __DisplMixin): +# def __init__(self, **kwargs): +# super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) +# # Captions column names in CSV files +# self._CAPTIONS_KEYS = ( +# "caption_1", +# "caption_2", +# "caption_3", +# "caption_4", +# "caption_5", +# ) + +# for ann in self.annotation: +# ann["fname"] = ann["file_name"] +# ann["sound_id"] = ann["fname"] +# ann["captions"] = [ann[caption_key] for caption_key in self._CAPTIONS_KEYS] +# self.audio_processor = kwargs[f"audio_processor"] +# self.audio_root = kwargs[f"audio_root"] +# self._add_instance_ids() + +# def __getitem__(self, index): +# ann = copy.deepcopy(self.annotation[index]) +# ann['audio'] = self.audio_processor(os.path.join(self.audio_root,ann['fname'])) +# if ann["audio"].sum() == 0: +# return None +# ann['audio_path'] = os.path.join(self.audio_root,ann['fname']) +# # ann["text_input"] = ann['captions'] +# return ann + +class AudioLanguagePretrainDataset(BaseDataset, __DisplMixin): + def __init__(self, **kwargs): + json_files = kwargs['ann_paths'][:-1] + blacklist = None + # self._load_json_file(json_files, kwargs["audio_root"], blacklist) + self.annotation = json.load(open(kwargs['ann_paths'][-1])) + self.cached = kwargs.get('cached', False) + self.cache_dir = kwargs.get('cached_dir', '') + self.text_processor = kwargs.get('text_processor', None) + self.audio_processor = kwargs['audio_processor'] + self._add_instance_ids() + + # https://github.com/XinhaoMei/WavCaps/blob/c17ff4fe61a650a5d19fb7df8b85569c9ebc74e3/retrieval/data_handling/pretrain_dataset.py#L55 + def _load_json_file(self, files, audio_root, blacklist=None): + json_data = [] + audio_id = 0 + if blacklist is not None: + with open(blacklist, 'r') as f: + blacklist = json.load(f) + for file in files: + with open(file, "r") as f: + json_obj = json.load(f) + if json_obj["num_captions_per_audio"] == 1: + for item in tqdm(json_obj["data"]): + if "FreeSound" in file and blacklist is not None: + if item["id"] in blacklist["FreeSound"]: + continue + elif "AudioSet" in file and blacklist is not None: + if item["id"] in blacklist["AudioSet"]: + continue + if 'AudioSet' in file: + audio_path = f"{audio_root}/AudioSet_SL_flac/{item['id'].split('.')[0]}.flac" + elif 'BBC_Sound' in file: + audio_path = f"{audio_root}/BBC_Sound_Effects_flac/{item['id'].split('.')[0]}.flac" + elif 'FreeSound' in file: + audio_path = f"{audio_root}/FreeSound_flac/{item['id'].split('.')[0]}.flac" + elif 'SoundBible' in file: + audio_path = f"{audio_root}/SoundBible_flac/{item['id'].split('.')[0]}.flac" + if not os.path.exists(audio_path): + # print(f'Skipped {audio_path}') + continue + temp_dict = {"audio": item["audio"], "caption": item["caption"], "id": item['id'],"duration": item["duration"], 'audio_path': audio_path} + json_data.append(temp_dict) + audio_id += 1 + else: + for item in json_obj["data"]: + for i in range(1, json_obj["num_captions_per_audio"] + 1): + temp_dict = {"audio": item["audio"], "caption": item[f"caption_{i}"], "id": item['id'], + "duration": item["duration"]} + json_data.append(temp_dict) + audio_id += 1 + return json_data + + def __len__(self): + return len(self.annotation) + + def __getitem__(self, index): + ann = self.annotation[index] + + ## CACHED REPRESENTATIONS + if self.cached: + audio = torch.load(os.path.join(self.cache_dir, f"{ann['id']}.pt"), map_location=torch.device('cpu')) + else: + audio = self.audio_processor(ann["audio_path"]) + + if audio.sum() == 0: + return None + + caption = self.text_processor(ann["caption"]) + audio_id = ann["id"] + + return { + "audio": audio , + "text_input": caption, + "sample_id": audio_id, + "instance_id": ann["instance_id"] + } + + def _build_templates(self, templates_path): + self.templates = None + +class AudioLanguagePretrainInstructDataset(AudioLanguagePretrainDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class AudioLanguagePretrainEvalDataset(AudioLanguagePretrainDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data \ No newline at end of file diff --git a/lavis/datasets/datasets/audio_classification_datasets.py b/lavis/datasets/datasets/audio_classification_datasets.py new file mode 100644 index 000000000..0eb8fb7a2 --- /dev/null +++ b/lavis/datasets/datasets/audio_classification_datasets.py @@ -0,0 +1,100 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +from collections import OrderedDict +import torch +import copy +import pathlib +import random +import json +import pandas as pd +import torchaudio +import torch +from tqdm import tqdm + +from lavis.datasets.datasets.base_dataset import BaseDataset + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + + return OrderedDict( + { + "file": ann["image"], + "label": ann["caption"], + "audio": sample["audio"], + "audio_path": sample["audio_path"], + "caption": sample["caption"], + + } + ) + + +class ESC50(BaseDataset, __DisplMixin): + def __init__(self, **kwargs): + self.modalities = kwargs['modalities'] + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + for modality in self.modalities: + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + self.classnames = list(set([ann['category'] for ann in self.annotation])) + self.classnames = [c.replace('_', ' ') for c in self.classnames] + + def get_audio_path(self, ann): + return os.path.join(self.audio_root, ann["sample_id"]) + + def is_empty_audio(self, ann): + path = self.get_audio_path(ann) + try: + waveform, sr = torchaudio.load(path) + + # Convert to mono if it's stereo + if waveform.shape[0] == 2: + waveform = torch.mean(waveform, dim=0) + + except torchaudio.TorchaudioException: + return True # Audio loading failed + + return waveform.nelement() == 0 + + def get_existing_audio_annotations(self): + return [f for f in os.listdir(self.audio_root)] + + def get_existing_video_annotations(self): + return os.listdir(self.video_root) + + def get_existing_images_annotations(self): + return os.listdir(self.vis_root) + + def get_video_path(self, ann): + return pathlib.Path(os.path.join(self.video_root, ann[self.sample_id_key])).resolve() + + def get_images_path(self, ann): + return pathlib.Path(os.path.join(self.vis_root, ann[self.sample_id_key])).resolve() + + def __len__(self): + return len(self.annotation) + + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann["sample_id"] = ann["filename"] + ann['label'] = ann['category'].replace('_', ' ') + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if isinstance(ann[f"{modality}_path"], list): + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + else: + ann[modality if 'image' not in modality else 'image'] = getattr(self, f"{'vis' if 'image' in modality else modality}_processor")(ann[f"{modality}_path"]) + + if ann["audio"].sum() == 0: + return None + + return ann + diff --git a/lavis/datasets/datasets/audio_qa_datasets.py b/lavis/datasets/datasets/audio_qa_datasets.py new file mode 100644 index 000000000..873cdbf74 --- /dev/null +++ b/lavis/datasets/datasets/audio_qa_datasets.py @@ -0,0 +1,116 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" +import copy +import os +from lavis.datasets.datasets.audio_captioning_datasets import AudioCapsDataset +from lavis.datasets.datasets.base_dataset import BaseDataset +import torch +import random +from collections import Counter + +class AudioCapsQADataset(AudioCapsDataset): + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.add_binary = kwargs.get('add_binary', False) + self.binary_templates = ["do you hear {}?", "is this {}?", "does the audio contain {}?"] + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + for modality in self.modalities: + if modality == 'audio' and self.cached: + ann[f"{modality}_path"] = getattr(self, f"get_cached_{modality}_path")(ann) + ann["audio"] = torch.load(ann[f"{modality}_path"]) + else: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if isinstance(ann[f"{modality}_path"], list): + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + ann[modality if 'image' not in modality else 'image'] = getattr(self, f"{'vis' if 'image' in modality else modality}_processor")(ann[f"{modality}_path"]) + + if ann["audio"].sum() == 0: + return None + if self.add_binary and random.randint(0,10) < 3: + yes_answer = random.randint(0,10)<5 + if not yes_answer: + caption_index = random.choice(list(set(range(len(self.annotation))).difference(set([index])))) + caption = self.annotation[caption_index]['caption'] + else: + caption = ann['caption'] + + question = random.choice(self.binary_templates).format(caption) + answer = 'yes' if yes_answer else 'no' + return { + "text_input": self.text_processor(question), + "instance_id": ann["instance_id"], + "text_output":answer, + "answer":answer, + "caption": ann['caption'], + "audio": ann['audio'], + "audio_id": ann['youtube_id'], + "question_id": ann['youtube_id'], + } + + return { + "text_input": self.text_processor(ann['question']), + "instance_id": ann["instance_id"], + "text_output":ann['answer'], + "answer":ann['answer'], + "caption": ann['caption'], + "audio": ann['audio'], + "audio_id": ann['youtube_id'], + "question_id": ann['youtube_id'], + } + + + +class ClothoQADataset(BaseDataset): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.non_binary_cls = kwargs.get('non_bin',False) + self.unanimous = kwargs.get('unanimous',False) + + + annotation = [] + for i in range(0, len(self.annotation), 3): + new_ann = self.annotation[i] + new_ann['question'] = new_ann['QuestionText'] + del new_ann['QuestionText'] + new_ann['answer'] = [self.annotation[i+off]['answer'] for off in range(3)] + if self.unanimous and Counter(new_ann['answer'])[new_ann['answer'][0]] != 3: + continue + if self.non_binary_cls and ('yes' in new_ann['answer'] or 'no' in new_ann['answer']): + continue + new_ann["question_id"] = new_ann['instance_id'] + annotation.append(new_ann) + self.modalities = kwargs['modalities'] + for modality in self.modalities: + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + self.annotation = annotation + + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + audio_path = os.path.join(self.audio_root, ann["file_name"]) + ann['audio'] = self.audio_processor(audio_path) + + if ann["audio"].sum() == 0: + return None + + return { + "text_input": self.text_processor(ann['question']), + "question": self.text_processor(ann['question']), + "instance_id": ann["instance_id"], + "text_output":random.choice(ann['answer']), + "answer":ann['answer'], + "answers":ann['answer'], + "audio": ann['audio'], + "question_id": ann['instance_id'], + } + + def _build_templates(self, template): + return None diff --git a/lavis/datasets/datasets/capfilt_dataset.py b/lavis/datasets/datasets/capfilt_dataset.py new file mode 100644 index 000000000..37bc984f4 --- /dev/null +++ b/lavis/datasets/datasets/capfilt_dataset.py @@ -0,0 +1,58 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import json + +from PIL import Image +from PIL import ImageFile + +from lavis.datasets.datasets.caption_datasets import CaptionDataset, CaptionEvalDataset, __DisplMixin +from lavis.datasets.datasets.base_dataset import BaseDataset + +class CapFiltCaptionDataset(BaseDataset, __DisplMixin): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + self.img_ids = {} + n = 0 + for ann in self.annotation: + ann["image_id"] = ''.join(ann['image'].split('.')[:-1]) + img_id = ann["image_id"] + if img_id not in self.img_ids.keys(): + self.img_ids[img_id] = n + n += 1 + + def __getitem__(self, index): + ann = self.annotation[index] + + image_path = os.path.join(ann["image"]) + try: + image = Image.open(image_path).convert("RGB") + except: + return None # image does not exist + + image = self.vis_processor(image) + caption = self.text_processor(ann["caption"]) + + return { + "image": image, + "text_input": caption, + "image_id": ann["image_id"] + } + +class CapFiltCaptionInstructDataset(CapFiltCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data \ No newline at end of file diff --git a/lavis/datasets/datasets/discriminatory_reasoning_datasets.py b/lavis/datasets/datasets/discriminatory_reasoning_datasets.py new file mode 100644 index 000000000..d00be18b0 --- /dev/null +++ b/lavis/datasets/datasets/discriminatory_reasoning_datasets.py @@ -0,0 +1,165 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +from collections import OrderedDict +from PIL import Image +import copy + +from lavis.datasets.datasets.base_dataset import BaseDataset +from lavis.common.utils import is_serializable + + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + + serializable_sample_keys = [k for k,v in sample.items() if is_serializable(v)] + serializable_ann_keys = [k for k,v in ann.items() if is_serializable(v)] + display = {k:sample[k] for k in serializable_sample_keys} + display.update({k:ann[k] for k in serializable_ann_keys}) + + return OrderedDict( + display + ) + + + +class DisCRnDataset(BaseDataset, __DisplMixin): + def __init__(self, **kwargs): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + pc_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.ds_name = kwargs['dataset_name'] + self.modalities = [str(m) for m in kwargs['modalities']] + ## from lavis convention, sometimes "image" modality is denoted as images + if "images" in self.modalities: + self.modalities[self.modalities.index("images")] = "image" + self.npoints = 8192 + self.sample_points_num = self.npoints + self.annotation = self.annotation + self.view = kwargs.get('view', 2) + self.classnames = copy.deepcopy(self.modalities) + self.classnames = kwargs.get('classnames', ["first", "second"]) + self.total = kwargs.get('total', 'all') + self.ground_truth = kwargs.get('ground_truth', False) + self.shuffle_modalities = kwargs.get('shuffle_modalities', False) + self.balance_labels = kwargs.get('balance_labels', True) + self.raw = kwargs.get('raw', False) + + if self.total != 'all': + self.annotation = self.annotation[:self.total] + + for modality in self.modalities: + if "image" not in modality: + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + self.annotation = [ann for ann in self.annotation if ann['sample_ids'][0] in self.sample_ids and ann['sample_ids'][1] in self.sample_ids] + self._add_instance_ids() + + def get_existing_image_annotations(self): + if self.ds_name == 'objaverse': + return [f.split('_')[0] for f in os.listdir(os.path.join(self.vis_root, f'compressed_imgs_view{self.view}/Cap3D_imgs_view{self.view}/'))] + + def get_image_path(self, ann, entity_index): + if self.ds_name == 'objaverse': + # data downloaded from: https://huggingface.co/datasets/tiange/Cap3D/tree/main/RenderedImage_zips + return os.path.join(self.vis_root, f'compressed_imgs_view{self.view}/Cap3D_imgs_view{self.view}/', ann['sample_ids'][entity_index]+f'_{self.view}.jpeg') + + def get_existing_audio_annotations(self): + return [f.split('_')[0] for f in os.listdir(self.audio_root)] + + def get_audio_path(self, ann, entity_index): + if self.ds_name == 'audiocaps': + return str(os.path.join(self.audio_root, ann['sample_ids'][entity_index] + '_{}.flac'.format(int(ann['start_seconds'][entity_index])))) + + def get_video_path(self, ann, entity_index): + if self.ds_name == 'audiocaps': + return str(os.path.realpath(os.path.join(self.video_root,ann['sample_ids'][entity_index] + '_{}.mp4'.format(int(ann['start_seconds'][entity_index]))))) + + def get_existing_video_annotations(self): + return [f.split('_')[0] for f in os.listdir(self.video_root)] + + def get_existing_pc_annotations(self): + if self.ds_name == 'objaverse': + return os.listdir(self.pc_root) + + def get_pc_path(self, ann, entity_index): + if self.ds_name == 'objaverse': + return os.path.join(self.pc_root, ann['sample_ids'][entity_index], '{}_{}.npz'.format(ann['sample_ids'][entity_index], self.npoints)) + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + N = 2 # number of inputs + ann["question_id"] = ann["instance_id"] + ann[f"modalities"] = copy.deepcopy(self.modalities) + for i,modality in enumerate(self.modalities): + if ann[f'captions_pred_{modality}'] == None or ann[f'captions_pred_{modality}'][i]== None: + return None + if len(self.modalities) == 1: # both modalities of the same type. + ann[f"modalities"] = [self.modalities[0]] * N + + if self.balance_labels: + if (index%2 and ann["label"] == 1) or (not index%2 and ann['label'] == 0): + ann["label"] = 1- ann["label"] + ann["properties"] = [ann['properties'][1],ann['properties'][0]] + ann["captions"] = [ann['captions'][1],ann['captions'][0]] + if self.shuffle_modalities: + ann['modalities'] = [ann['modalities'][1],ann['modalities'][0]] # if we comment this out, we can have batch size > 1. Maintaining for reproducibility. + for modality in self.modalities: + ann[f'captions_pred_{modality}'] = [ann[f'captions_pred_{modality}'][1], ann[f'captions_pred_{modality}'][0]] + + ## baseline captions + ann["baseline_captions"] = [c for c in ann["captions"]] if self.ground_truth else [ann[f'captions_pred_{ann["modalities"][0]}'][0], ann[f'captions_pred_{ann["modalities"][1]}'][1]] + # ann["baseline_captions"] = [c.replace('..', '.') for c in ann["baseline_captions"]] + ann["baseline_captions"] = [c.strip() if c!=None else "" for c in ann["baseline_captions"]] + ## text input + ann["text_input"] = self.text_processor(f'{ann["question"].replace("which entity", "which of the two options").replace("which object", "which of the two options").replace("which image", "which of the two options").replace("which audio", "which of the two options").replace("audio", "object").replace("image", "object")}?'.replace('??', '?')) + # ann["text_input"] = self.text_processor(f'{ann["question"]}?'.replace('??', '?')) + ## answers + first_answers = [ann['modalities'][0], "the first option.", "the first", "left one", "(a) left", "(a) left one", "(a)", 'a.', 'A.', "a)", "(A)", 'Input A', 'Entity 1', 'Object 1','Entity A', 'Object A', 'left', 'first', '1st', 'input 1', '1','a', 'input a', "the first", "the left one"] + second_answers = [ann['modalities'][1], "the second option.", "the second.", "second option", "the second option", "second option.", "right one","(b) right", "(b) right one" , "(b)", "b)", 'Input B', 'right', 'second', '2nd', 'input 2', '2', 'b', 'input b', 'Object 2','Entity B', 'Object B', "the second", "the right one", "the second one"] + if ann["label"] == 0: + ann["answers"] = first_answers + else: + ann["answers"] = second_answers + if 'pc' in ann["answers"]: + ann["answers"].extend(['3d', '3d model', 'model', 'rendering', 'a 3d', 'a 3d model']) + if 'image' in ann["answers"]: + ann["answers"].extend(['photo', 'picture']) + if 'audio' in ann["answers"]: + ann["answers"].append('sound') + ## label + ann["label"] = self.classnames[ann["label"]] + ann['answer'] = ann["answers"] # for vqa task compatibility + + ## get data + for i,modality in enumerate(ann["modalities"]): + path = getattr(self, f"get_{modality}_path")(ann, i) + if 'image' in modality: + path = Image.open(path).convert("RGB") + if self.raw: + ann[modality] = path + continue + try: + ann[modality] = getattr(self, f"{'vis' if 'image' in modality else modality}_processor")(path) + except: + return None + + ann["discrn"] = True # signify to model, this is a discrn task + + return ann + + def __len__(self): + return len(self.annotation) \ No newline at end of file diff --git a/lavis/datasets/datasets/iconqa_datasets.py b/lavis/datasets/datasets/iconqa_datasets.py new file mode 100644 index 000000000..02936854a --- /dev/null +++ b/lavis/datasets/datasets/iconqa_datasets.py @@ -0,0 +1,143 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from collections import OrderedDict +import json +import os +import torch +import pathlib +import random + +from PIL import Image + +from lavis.datasets.datasets.vqa_datasets import VQADataset, VQAEvalDataset + + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + return OrderedDict( + { + "file": ann["image"], + "question": ann["question"], + "question_id": ann["question_id"], + "direct_answers": "; ".join(ann["direct_answers"]), + "choices": "; ".join(ann["choices"]), + "correct_choice": ann["choices"][ann["correct_choice_idx"]], + "image": sample["image"], + } + ) + + +class IconQADataset(VQADataset, __DisplMixin): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + self.vis_processor = vis_processor + self.text_processor = text_processor + + + def __getitem__(self, index): + ann = self.annotation[index] + + image_path = pathlib.Path(os.path.join(self.vis_root, ann["image"])).resolve() + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + question = self.text_processor(ann["question"]) + + answers = [ann['choices'][ann['answer']]] + + return { + "image": image, + "text_input": question, + "direct_answers": answers, + "weights": [1], + } + +class IconQAInstructDataset(IconQADataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = random.choice(data["direct_answers"]) + return data + + def collater(self, samples): + data = super().collatter(samples) + data['text_output'] = data['answer'] + return data + + +class IconQAEvalDataset(VQAEvalDataset, __DisplMixin): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + self.vis_processor = vis_processor + self.text_processor = text_processor + + def collater(self, samples): + ( + image_list, + question_list, + question_id_list, + instance_id_list, + choices_list, + correct_choice_idx_list, + direct_answers_list, + ) = ([], [], [], [], [], [], []) + + for sample in samples: + image_list.append(sample["image"]) + question_list.append(sample["text_input"]) + question_id_list.append(sample["question_id"]) + instance_id_list.append(sample["instance_id"]) + choices_list.append(sample["choices"]) + correct_choice_idx_list.append(sample["correct_choice_idx"]) + direct_answers_list.append(sample["direct_answers"]) + + return { + "image": torch.stack(image_list, dim=0), + "text_input": question_list, + "instance_id": instance_id_list, + "choices": choices_list, + "correct_choice_idx": correct_choice_idx_list, + "direct_answers": direct_answers_list, + } + + def __getitem__(self, index): + ann = self.annotation[index] + + image_path = pathlib.Path(os.path.join(self.vis_root, ann["image"])).resolve() + + answers = [ann['choices'][ann['answer']]] + + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + question = self.text_processor(ann["question"]) + + choices = ann["choices"] + correct_choice_idx = ann["answer"] + + return { + "image": image, + "text_input": question, + "instance_id": ann["instance_id"], + "choices": choices, + "correct_choice_idx": correct_choice_idx, + "direct_answers": answers, + "question_id": ann["instance_id"] + } diff --git a/lavis/datasets/datasets/llava150k_dataset.py b/lavis/datasets/datasets/llava150k_dataset.py new file mode 100644 index 000000000..256698468 --- /dev/null +++ b/lavis/datasets/datasets/llava150k_dataset.py @@ -0,0 +1,37 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.datasets.datasets.base_dataset import BaseDataset +import os +from PIL import Image + + +class LLaVA150kInstructDataset(BaseDataset): + def __init__(self, vis_processor, text_processor,ann_paths, vis_root): + super().__init__(vis_processor=vis_processor, text_processor=text_processor, ann_paths=ann_paths, vis_root=vis_root) + self.inner_dataset = self.annotation + self.location = vis_root + + def __len__(self): + return len(self.inner_dataset) + + def __getitem__(self, index): + + example = self.inner_dataset[index] + text_input = example['conversations'][0]['value'].replace('', '').strip() + text_output = example['conversations'][1]['value'] + image_id = example['image'] + image_path = os.path.join(self.location, image_id) + image = Image.open(image_path).convert("RGB") + image = self.vis_processor(image) + return { + "image": image, + "instance_id":image_id, + "text_input": self.text_processor(text_input), + "text_output": self.text_processor(text_output), + "image_path": image_path + } diff --git a/lavis/datasets/datasets/music_avqa.py b/lavis/datasets/datasets/music_avqa.py new file mode 100644 index 000000000..7d7c849fa --- /dev/null +++ b/lavis/datasets/datasets/music_avqa.py @@ -0,0 +1,71 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import torch +import copy +import os +import random +import json +import ast +from PIL import Image +from lavis.datasets.datasets.base_dataset import BaseDataset + +class MusicAVQADataset(BaseDataset): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.modalities = kwargs['modalities'] + + for modality in self.modalities: + if 'image' in modality: + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + continue + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + self.annotation = [ann for ann in self.annotation if ann['video_id'] in self.sample_ids] + + def get_existing_audio_annotations(self): + return [f.split('.')[0] for f in os.listdir(self.audio_root)] + + def get_existing_video_annotations(self): + return [f.split('.')[0] for f in os.listdir(self.video_root)] + + def get_audio_path(self, ann): + # return os.path.join(self.audio_root, f'{ann["video_id"]}.flac') + return os.path.join(self.audio_root, f'{ann["video_id"]}.mp4') + + def get_video_path(self, ann): + return os.path.join(self.video_root, f'{ann["video_id"]}.mp4') + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if type(ann[f"{modality}_path"]) == list: + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + if 'image' in modality: + ann['image'] = self.vis_processor(Image.open(ann[f"images_path"])) + else: + ann[modality] = getattr(self, f"{modality}_processor")(ann[f"{modality}_path"]).to(torch.float32) + + ann["sample_id"] = ann["video_id"] + question = ann['question_content'].replace( '', '{}').format(*ast.literal_eval(ann['templ_values'])) + ann['text_input'] = self.text_processor(question) + ann["question_id"] = ann['question_id'] + ann['answers'] = ann['anser'] + return ann + + +class MusicAVQAInstructDataset(MusicAVQADataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['answer'] = data["answers"] # needed to use gqa task + data['text_output'] = data["answers"] + return data diff --git a/lavis/datasets/datasets/object3d_captioning_datasets.py b/lavis/datasets/datasets/object3d_captioning_datasets.py new file mode 100644 index 000000000..efd6bc275 --- /dev/null +++ b/lavis/datasets/datasets/object3d_captioning_datasets.py @@ -0,0 +1,177 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os, sys +from collections import OrderedDict +import random + +from lavis.datasets.datasets.base_dataset import BaseDataset +from lavis.common.utils import is_serializable + +from PIL import Image +import numpy as np +from tqdm import tqdm +import json +import torch +import copy + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + serializable_sample_keys = [k for k,v in sample.items() if is_serializable(v)] + serializable_ann_keys = [k for k,v in ann.items() if is_serializable(v)] + display = {k:sample[k] for k in serializable_sample_keys} + display.update({k:ann[k] for k in serializable_ann_keys}) + + return OrderedDict( + display + ) + + + +class Object3dCaptionDataset(BaseDataset, __DisplMixin): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.modalities = kwargs['modalities'] + self.npoints = 8192 + self.sample_points_num = self.npoints + + for modality in self.modalities: + if 'image' in modality: + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + continue + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + self.annotation = [ann for ann in self.annotation if ann['sample_id'] in self.sample_ids] + + def get_existing_depth_annotations(self): + return os.listdir(self.depth_root) + + def get_existing_images_annotations(self): + return os.listdir(self.vis_root) + + def get_existing_pc_annotations(self): + raise NotImplementedError("Subclasses should implement this!") + + def get_pc_path(self, sample_key): + raise NotImplementedError("Subclasses should implement this!") + + def get_images_path(self, sample_key): + raise NotImplementedError("Subclasses should implement this!") + + def get_depth_path(self, sample_key): + raise NotImplementedError("Subclasses should implement this!") + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann['captions'] = ann['data'] + del ann['data'] + + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann['sample_id']) + if type(ann[f"{modality}_path"]) == list: # select from image views + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + if 'image' in modality: + ann['image'] = self.vis_processor(Image.open(ann[f"images_path"])) + else: + ann[modality] = getattr(self, f"{modality}_processor")(ann[f"{modality}_path"]).to(torch.float32) + return ann + + def __len__(self): + return len(self.annotation) + + def _build_templates(self, templates_path): + # use captions not templates + if templates_path is None: + self.templates = None + else: + with open(templates_path) as f: + self.templates = json.load(f) + + +class ObjaverseCaptionDataset(Object3dCaptionDataset, __DisplMixin): + def __init__(self, **kwargs): + super().__init__(**kwargs) + + def get_existing_images_annotations(self): + return [f.split('_')[0] for f in os.listdir(os.path.join(self.vis_root, f'compressed_imgs_view{0}/Cap3D_imgs_view{0}/'))] + + def get_existing_pc_annotations(self): + return list(set(os.listdir(self.pc_root)).intersection(set(ann['sample_id'] for ann in self.annotation))) + + def get_pc_path(self, sample_key): + return os.path.join(self.pc_root, sample_key, '{}_{}.npz'.format(sample_key, self.npoints)) + + def get_images_path(self, sample_key): + # data downloaded from: https://huggingface.co/datasets/tiange/Cap3D/tree/main/RenderedImage_zips + return [os.path.join(self.vis_root, f'compressed_imgs_view{i}/Cap3D_imgs_view{i}/', sample_key+f'_{i}.jpeg') for i in range(8)] + + def __getitem__(self, index): + ann = super().__getitem__(index) + ann['text_input'] = self.text_processor(random.choice(ann['captions'])) + return ann + +class ObjaverseCaptionInstructDataset(ObjaverseCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + + +class ObjaverseCaptionEvalDataset(ObjaverseCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data + + + +class ShapenetCaptionDataset(Object3dCaptionDataset, __DisplMixin): + def __init__(self, **kwargs): + super().__init__(**kwargs) + + def get_existing_pc_annotations(self): + return list(set([f.replace('.npy', '') for f in os.listdir(self.pc_root)])) + + def get_pc_path(self, sample_key): + return os.path.join(self.pc_root, sample_key+'.npy') + + def get_images_path(self, sample_key): + return [os.path.join(self.vis_root,sample_key, img_path) for img_path in os.listdir(os.path.join(self.vis_root, sample_key))] + + def __getitem__(self, index): + ann = super().__getitem__(index) + if not isinstance(ann['captions'], list): + if self.templates: + ann['objects'] = ann['captions'] + ann['captions'] = [random.choice(self.templates).format(obj) for obj in ann['objects'].split(',')] + else: + ann['objects'] = ann['captions'] + ann['captions'] = [random.choice(ann['objects'].split(','))] + ann['text_input'] = self.text_processor(random.choice(ann['captions'])) + return ann + +class ShapenetCaptionInstructDataset(ShapenetCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class ShapenetCaptionEvalDataset(ShapenetCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data diff --git a/lavis/datasets/datasets/object3d_classification_datasets.py b/lavis/datasets/datasets/object3d_classification_datasets.py new file mode 100644 index 000000000..f1fd0d0a7 --- /dev/null +++ b/lavis/datasets/datasets/object3d_classification_datasets.py @@ -0,0 +1,158 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +# Adapted from https://github.com/salesforce/ULIP/blob/48d8d00b1cdb2aee79005817a202816f1c521911/models/pointnext/PointNeXt/openpoints/dataset/modelnet/modelnet40_normal_resampled_loader.py + +import os +from collections import OrderedDict +import numpy as np +from tqdm import tqdm +import torch +import copy +import random +import pickle +from PIL import Image +from lavis.processors.ulip_processors import farthest_point_sample, pc_normalize +from lavis.datasets.datasets.base_dataset import BaseDataset + + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + + return OrderedDict( + { + "file": ann["image"], + "caption": ann["caption"], + "image": sample["image"], + "pc": sample["pc"], + } + ) + +class ModelNetClassificationDataset(BaseDataset, __DisplMixin): + """ + Dataset for ModelNet Classification. + """ + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], []) + + self.modalities = kwargs['modalities'] + # Setting dataset specific properties + self.npoints = 8192 + self.use_normals = False + self.num_category = 40 + self.process_data = True + self.uniform = True + self.generate_from_raw_data = False + ann_paths = kwargs['ann_paths'] + + assert 'pc_root' in kwargs, "Point cloud root needs to be provided to retrieve labels." + self.pc_root = kwargs["pc_root"] + + # Fetching class names and IDs + self.classnames = [line.rstrip() for line in open(ann_paths[0])] + self.classes = dict(zip(self.classnames, range(len(self.classnames)))) + self.shape_ids = [line.rstrip() for line in open(ann_paths[-1])] + self.shape_names = ['_'.join(x.split('_')[0:-1]) for x in self.shape_ids] + + # Setting data paths + self.datapath = [(self.shape_names[i], os.path.join(self.pc_root, self.shape_names[i], self.shape_ids[i]) + '.txt') for i + in range(len(self.shape_ids))] + + + # Saving path settings + self.save_path = ann_paths[1] if self.uniform else ann_paths[0].replace('_fps', '') + + # Processing or loading data + self._prepare_data() + + + def _prepare_data(self): + # Check for pre-processed data + if self.process_data: + if not os.path.exists(self.save_path): + if self.generate_from_raw_data: + print('Processing data %s (only running in the first time)...' % self.save_path) + self._process_raw_data() + else: + print('Load processed data from %s...' % self.save_path) + with open(self.save_path, 'rb') as f: + self.list_of_points, self.list_of_labels = pickle.load(f) + else: + print('Load processed data from %s...' % self.save_path) + with open(self.save_path, 'rb') as f: + self.list_of_points, self.list_of_labels = pickle.load(f) + + def _process_raw_data(self): + self.list_of_points = [None] * len(self.datapath) + self.list_of_labels = [None] * len(self.datapath) + for index in tqdm(range(len(self.datapath)), total=len(self.datapath)): + fn = self.datapath[index] + cls = self.classes[self.datapath[index][0]] + cls = np.array([cls]).astype(np.int32) + point_set = np.loadtxt(fn[1], delimiter=',').astype(np.float32) + + if self.uniform: + point_set = farthest_point_sample(point_set, self.npoints) + print("uniformly sampled out {} points".format(self.npoints)) + else: + point_set = point_set[0:self.npoints, :] + + self.list_of_points[index] = point_set + self.list_of_labels[index] = cls + + with open(self.save_path, 'wb') as f: + pickle.dump([self.list_of_points, self.list_of_labels], f) + + def __len__(self): + return len(self.list_of_labels) + + def _get_item(self, index): + if self.process_data: + point_set, label = self.list_of_points[index], self.list_of_labels[index] + else: + fn = self.datapath[index] + cls = self.classes[self.datapath[index][0]] + label = np.array([cls]).astype(np.int32) + point_set = np.loadtxt(fn[1], delimiter=',').astype(np.float32) + + # Uniform sampling or trimming + if self.uniform: + point_set = farthest_point_sample(point_set, self.npoints) + else: + point_set = point_set[0:self.npoints, :] + if self.npoints < point_set.shape[0]: + point_set = farthest_point_sample(point_set, self.npoints) + + point_set[:, 0:3] = pc_normalize(point_set[:, 0:3]) + if not self.use_normals: + point_set = point_set[:, 0:3] + + return point_set, label[0] + + def __getitem__(self, index): + points, label = self._get_item(index) + label_name = self.classnames[int(label)] + + data = { + "instance_id": index, + "sample_key": index, + "image_id": index, + "label": label_name + } + + if 'pc' in self.modalities: + pt_idxs = np.arange(0, points.shape[0]) + np.random.shuffle(pt_idxs) + current_points = points[pt_idxs].copy() + current_points = torch.from_numpy(current_points).float() + data['pc'] = current_points + if any([k in self.modalities for k in ['images', 'image']]): + img = Image.open(os.path.join(self.vis_root,f"{index}.jpeg" )) + data['image'] = self.vis_processor(img) + + return data diff --git a/lavis/datasets/datasets/object3d_qa_datasets.py b/lavis/datasets/datasets/object3d_qa_datasets.py new file mode 100644 index 000000000..5e77f633b --- /dev/null +++ b/lavis/datasets/datasets/object3d_qa_datasets.py @@ -0,0 +1,65 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import copy +import random +from PIL import Image +import torch + +from lavis.datasets.datasets.object3d_captioning_datasets import Object3dCaptionDataset + +class ObjaverseQADataset(Object3dCaptionDataset): + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.add_binary = kwargs.get('add_binary', False) + self.binary_templates = ["do you see {}?", "is this {}?", "does the 3d model contain {}?"] + self.remove_model_answer = kwargs.get('remove_model_answer', False) + if self.remove_model_answer: + self.annotation = [ann for ann in self.annotation if 'model' not in ann['answer']] + + def get_existing_pc_annotations(self): + return list(set(os.listdir(self.pc_root)).intersection(set(ann['sample_id'] for ann in self.annotation))) + + def get_pc_path(self, sample_key): + return os.path.join(self.pc_root, sample_key, '{}_{}.npz'.format(sample_key, self.npoints)) + + def get_images_path(self, sample_key): + # data downloaded from: https://huggingface.co/datasets/tiange/Cap3D/tree/main/RenderedImage_zips + return [os.path.join(self.vis_root, f'compressed_imgs_view{i}/Cap3D_imgs_view{i}/', sample_key+f'_{i}.jpeg') for i in range(8)] + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann['sample_id']) + if type(ann[f"{modality}_path"]) == list: + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + if 'image' in modality: + ann['image'] = self.vis_processor(Image.open(ann[f"image_path"])) + else: + ann[modality] = getattr(self, f"{modality}_processor")(ann[f"{modality}_path"]).to(torch.float32) + + if self.add_binary and random.randint(0,10) < 3: + yes_answer = random.randint(0,10)<5 + if not yes_answer: + caption_index = random.choice(list(set(range(len(self.annotation))).difference(set([index])))) + caption = self.annotation[caption_index]['caption'] + else: + caption = ann['caption'] + + question = random.choice(self.binary_templates).format(caption) + answer = 'yes' if yes_answer else 'no' + ann['text_input'] = self.text_processor(question) + ann['text_output'] = answer + + else: + ann['text_input'] = self.text_processor(ann['question']) + ann['text_output'] = ann['answer'] + + ann['answers'] = [ann['text_output']] + ann['question_id'] = ann['instance_id'] + return ann \ No newline at end of file diff --git a/lavis/datasets/datasets/ocr_datasets.py b/lavis/datasets/datasets/ocr_datasets.py new file mode 100644 index 000000000..713ddbe10 --- /dev/null +++ b/lavis/datasets/datasets/ocr_datasets.py @@ -0,0 +1,69 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import random +import copy + +from PIL import Image +from lavis.datasets.datasets.vqa_datasets import VQADataset + + +class OCRVQADataset(VQADataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + count_id = 0 + annotations = [] + for ann in self.annotation: + for q,a in zip(ann['questions'],ann['answers']): + new_ann = {} + new_ann = copy.deepcopy(ann) + new_ann['questions'] = q + new_ann['answers'] = a + new_ann['instance_id'] = count_id + new_ann['sample_id'] = ann["sample_id"] + image_id = ann['sample_id'] + '.jpg' + image_path = os.path.join(self.vis_root, image_id) + if not os.path.exists(image_path): + continue + count_id+= 1 + annotations.append(new_ann) + self.annotation = annotations + + def __getitem__(self, index): + ann = self.annotation[index] + image_id = ann['sample_id'] + '.jpg' + image_path = os.path.join(self.vis_root, image_id) + try: + image = Image.open(image_path).convert("RGB") + except: + return None + image = self.vis_processor(image) + question = self.text_processor(ann["questions"]) + + answers = [ann["answers"]] + # TODO this should be configured better + weights = [1.] + + return { + "image": image, + "text_input": question, + "answers": answers, + "weights": weights, + "question_id": ann["sample_id"] + } + +class OCRVQAInstructDataset(OCRVQADataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = random.choice(data["answers"]) + return data + def collater(self, samples): + data = super().collater(samples) + data['text_output'] = data['answer'] + return data \ No newline at end of file diff --git a/lavis/datasets/datasets/textcaps_datasets.py b/lavis/datasets/datasets/textcaps_datasets.py new file mode 100644 index 000000000..4588fc327 --- /dev/null +++ b/lavis/datasets/datasets/textcaps_datasets.py @@ -0,0 +1,57 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" +from lavis.datasets.datasets.base_dataset import BaseDataset +from lavis.datasets.datasets.caption_datasets import CaptionDataset, CaptionEvalDataset + +class TextCapsCapDataset(CaptionDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + BaseDataset.__init__(self, vis_processor, text_processor, vis_root, ann_paths) + self.annotation = self.annotation[3]['data'] + self.img_ids = {} + n = 0 + for ann in self.annotation: + img_id = ann["image_id"] + if img_id not in self.img_ids.keys(): + self.img_ids[img_id] = n + n += 1 + ann["image"] = ann["image_id"]+'.jpg' + ann["caption"] = ann["caption_str"] + del ann["caption_str"] + +class TextCapsCapInstructDataset(TextCapsCapDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class TextCapsCapEvalDataset(CaptionEvalDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + BaseDataset.__init__(self, vis_processor, text_processor, vis_root, ann_paths) + self.annotation = self.annotation[3]['data'] + self.annotation = [ann for ann in self.annotation if "caption_str" in ann] # only keep annotations with captions + + self.img_ids = {} + n = 0 + for ann in self.annotation: + img_id = ann["image_id"] + if img_id not in self.img_ids.keys(): + self.img_ids[img_id] = n + n += 1 + ann["image"] = ann["image_id"]+'.jpg' + ann["caption"] = ann["caption_str"] + del ann["caption_str"] + self._add_instance_ids() \ No newline at end of file diff --git a/lavis/datasets/datasets/valor_caption.py b/lavis/datasets/datasets/valor_caption.py new file mode 100644 index 000000000..cc0f9d2cf --- /dev/null +++ b/lavis/datasets/datasets/valor_caption.py @@ -0,0 +1,104 @@ + +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import torch +import copy +import os +import random +import json +from PIL import Image +from lavis.datasets.datasets.base_dataset import BaseDataset + +class VALORCaptionDataset(BaseDataset): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.modalities = kwargs['modalities'] + + for modality in self.modalities: + if 'image' in modality: + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + continue + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + # self.annotation = [ann for ann in self.annotation if ann['video_id'].replace('000', '0') in self.sample_ids] + seen = set() + self.annotation = [x for x in self.annotation if x["video"] not in seen and not seen.add(x["image_id"])] + + def __len__(self): + return len(self.annotation) + + def get_existing_audio_annotations(self): + return ['.'.join(f.split('.')[:-1]) for f in os.listdir(self.audio_root)] + + def get_existing_video_annotations(self): + return ['.'.join(f.split('.')[:-1]) for f in os.listdir(self.video_root)] + + + def get_audio_path(self, ann): + return os.path.join(self.audio_root, f'{ann["video"]}') + + # def get_audio_path(self, ann): + # return os.path.join(self.audio_root, f'{ann["video_id"].replace("000", "0")}.mp4') + + # def get_video_path(self, ann): + # return os.path.join(self.video_root, f'{ann["video_id"].replace("000", "0")}.mp4') + + def get_video_path(self, ann): + return os.path.join(self.video_root, f'{ann["video"]}') + + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann["video_path"] = ann["video"] + ann["audio_path"] = ann["video"] + # ann["sample_id"] = ann["video_id"] + ann["sample_id"] = ann["video"] + # ann["caption"] = self.text_processor(ann['desc']) + ann['text_input'] = ann["caption"] + ann["image_id"] = ann["video"] + # ann["image_id"] = ann["video_id"] + + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if type(ann[f"{modality}_path"]) == list: + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + if 'image' in modality: + ann['image'] = self.vis_processor(Image.open(ann[f"images_path"])) + else: + ann[modality] = getattr(self, f"{modality}_processor")(ann[f"{modality}_path"]).to(torch.float32) + + # # ann["sample_id"] = ann["video_id"] + # ann["sample_id"] = ann["video"] + # # ann["caption"] = self.text_processor(ann['desc']) + # ann['text_input'] = ann["caption"] + # ann["image_id"] = ann["video"] + # # ann["image_id"] = ann["video_id"] + + + return ann + + +class VALORCaptionEvalDataset(VALORCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data['text_input'] + return data + + +class VALORCaptionInstuctDataset(VALORCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data diff --git a/lavis/datasets/datasets/vatex_captioning_datasets.py b/lavis/datasets/datasets/vatex_captioning_datasets.py new file mode 100644 index 000000000..057535559 --- /dev/null +++ b/lavis/datasets/datasets/vatex_captioning_datasets.py @@ -0,0 +1,104 @@ + +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import torch +import copy +import os +import random +import json +from PIL import Image +from lavis.datasets.datasets.base_dataset import BaseDataset + +class VATEXCaptionDataset(BaseDataset): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.modalities = kwargs['modalities'] + + for modality in self.modalities: + if 'image' in modality: + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + continue + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + # self.annotation = [ann for ann in self.annotation if ann['video_id'].replace('000', '0') in self.sample_ids] + seen = set() + self.annotation = [x for x in self.annotation if x["video"] not in seen and not seen.add(x["image_id"])] + + def __len__(self): + return len(self.annotation) + + def get_existing_audio_annotations(self): + return ['.'.join(f.split('.')[:-1]) for f in os.listdir(self.audio_root)] + + def get_existing_video_annotations(self): + return ['.'.join(f.split('.')[:-1]) for f in os.listdir(self.video_root)] + + + def get_audio_path(self, ann): + return os.path.join(self.audio_root, f'{ann["video"]}') + + # def get_audio_path(self, ann): + # return os.path.join(self.audio_root, f'{ann["video_id"].replace("000", "0")}.mp4') + + # def get_video_path(self, ann): + # return os.path.join(self.video_root, f'{ann["video_id"].replace("000", "0")}.mp4') + + def get_video_path(self, ann): + return os.path.join(self.video_root, f'{ann["video"]}') + + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + ann["video_path"] = ann["video"] + ann["audio_path"] = ann["video"] + # ann["sample_id"] = ann["video_id"] + ann["sample_id"] = ann["video"] + # ann["caption"] = self.text_processor(ann['desc']) + ann['text_input'] = ann["caption"] + ann["image_id"] = ann["video"] + # ann["image_id"] = ann["video_id"] + + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if type(ann[f"{modality}_path"]) == list: + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + if 'image' in modality: + ann['image'] = self.vis_processor(Image.open(ann[f"images_path"])) + else: + ann[modality] = getattr(self, f"{modality}_processor")(ann[f"{modality}_path"]).to(torch.float32) + + # # ann["sample_id"] = ann["video_id"] + # ann["sample_id"] = ann["video"] + # # ann["caption"] = self.text_processor(ann['desc']) + # ann['text_input'] = ann["caption"] + # ann["image_id"] = ann["video"] + # # ann["image_id"] = ann["video_id"] + + + return ann + + +class VATEXCaptionEvalDataset(VATEXCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data['text_input'] + return data + + +class VATEXCaptionInstuctDataset(VATEXCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data diff --git a/lavis/datasets/datasets/violin_dataset.py b/lavis/datasets/datasets/violin_dataset.py new file mode 100644 index 000000000..f3f8538da --- /dev/null +++ b/lavis/datasets/datasets/violin_dataset.py @@ -0,0 +1,112 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import random +from lavis.datasets.datasets.base_dataset import BaseDataset + +from lavis.datasets.datasets.multimodal_classification_datasets import ( + MultimodalClassificationDataset, +) + +from lavis.datasets.datasets.caption_datasets import CaptionDataset + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + + return OrderedDict( + { + "file": ann["video_path"], + "sentence": ann["sentence"], + "label": ann["label"], + "video": sample["video"], + } + ) + +class ViolinVideoEntailmentDataset(MultimodalClassificationDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + self.class_labels = self._build_class_labels() + + def _build_class_labels(self): + return {"wrong": 0, "correct": 1} + + def __getitem__(self, index): + + ann = self.annotation[index] + + vname = ann['video_path'] + video_path = os.path.join(self.vis_root, vname) + + try: + video = self.vis_processor(video_path, start_sec=ann['start_time'], end_sec=ann['end_time']) + except: + return None + + sentence = self.text_processor(ann["statement"]) + + # "image_id" is kept to stay compatible with the COCO evaluation format + return { + "video": video, + "video_path": vname, + "sentence": sentence, + "label": self.class_labels[ann["label"]], + "image_id": ann["source"], + "instance_id": ann['instance_id'], + } + +class ViolinVideoEntailmentInstructDataset(ViolinVideoEntailmentDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + templates = ["is it true that {}?", "is the satement {} contained in the video?", "is the statement {} entailed in the video?"] + if data != None: + data['text_output'] = "yes" if data['label'] == 'correct' else 'no' + data['text_input'] = random.choice(templates).format(data["sentence"]) + return data + + +class ViolinVideoCaptionDataset(BaseDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + self.annotation = [ann for ann in self.annotation if ann['label'] == 'correct'] + + def __getitem__(self, index): + + ann = self.annotation[index] + + vname = ann['video_path'] + video_path = os.path.join(self.vis_root, vname) + + try: + video = self.vis_processor(video_path, start_sec=ann['start_time'], end_sec=ann['end_time']) + except: + return None + caption = self.text_processor(ann["statement"]) + + # "image_id" is kept to stay compatible with the COCO evaluation format + return { + "video": video, + "text_input": self.text_processor(caption), + "image_id": ann["source"], + "instance_id": ann['instance_id'], + } + +class ViolinVideoCaptionInstructDataset(ViolinVideoCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + +class ViolinVideoCaptionEvalDataset(ViolinVideoCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data diff --git a/lavis/datasets/datasets/visdial_dialogue_datasets.py b/lavis/datasets/datasets/visdial_dialogue_datasets.py new file mode 100644 index 000000000..5f036fe30 --- /dev/null +++ b/lavis/datasets/datasets/visdial_dialogue_datasets.py @@ -0,0 +1,138 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +from collections import OrderedDict + +from PIL import Image + +from lavis.datasets.datasets.dialogue_datasets import DialogueDataset, DialogueEvalDataset + +import json +import copy + + +class __DisplMixin: + def displ_item(self, index): + sample, ann = self.__getitem__(index), self.annotation[index] + + return OrderedDict( + { + "file": ann["image"], + "dialogue": ann["dialogue"], + "image": sample["image"], + } + ) + + +class VisDialDataset(DialogueDataset, __DisplMixin): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + + self.vis_root = vis_root + self.annotation = [] + for ann_path in ann_paths: + data = json.load(open(ann_path, "r"))['data'] + dialogs = data['dialogs'] + answers = data['answers'] + questions = data['questions'] + + for dialog in dialogs: + all_turns = [ + { + "answer": answers[d["answer"]], + "question": questions[d["question"]], + } + for d in dialog['dialog'] + ] + for i in range(len(all_turns)): + dialogue_context = ' '.join([f" q: {t['question']} a: {t['answer']}" for t in all_turns[:i]]).strip() + last_turn = all_turns[i] + + question = last_turn["question"] + answer = last_turn["answer"] + + dialog["dialog"] = dialogue_context + dialog["question"] = question + dialog["answer"] = answer + + self.annotation.append(dialog) + + self.vis_processor = vis_processor + self.text_processor = text_processor + + self._add_instance_ids() + + self.vis_processor = vis_processor + self.text_processor = text_processor + + self._add_instance_ids() + + self.img_ids = {} + n = 0 + for ann in self.annotation: + img_id = ann["image_id"] + if img_id not in self.img_ids.keys(): + self.img_ids[img_id] = n + n += 1 + + def __getitem__(self, index): + + ann = self.annotation[index] + + image_path = os.path.join(self.vis_root,"VisualDialog_train2018", f'VisualDialog_train2018_'+ str(ann["image_id"]).zfill(12)+'.jpg') + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + return { + "image": image, + "dialog": self.text_processor(ann["dialog"]), + "text_input": self.text_processor(ann["question"]), + "image_id": self.img_ids[ann["image_id"]], + "answer": ann["answer"] + } + + +class VisDialInstructDataset(VisDialDataset, __DisplMixin): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data["text_output"] = data["answer"] + return data + +class VisDialEvalDataset(VisDialDataset, __DisplMixin): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + def __getitem__(self, index): + + ann = self.annotation[index] + image_path = os.path.join(self.vis_root, "VisualDialog_val2018", 'VisualDialog_val2018_'+str(ann["image_id"]).zfill(12)+'.jpg') + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + return { + "image": image, + "dialog": self.text_processor(ann["dialog"]), + "text_input": self.text_processor(ann["question"]), + "image_id": self.img_ids[ann["image_id"]], + "answer": ann["answer"] + } \ No newline at end of file diff --git a/lavis/datasets/datasets/vizwiz_vqa_datasets.py b/lavis/datasets/datasets/vizwiz_vqa_datasets.py new file mode 100644 index 000000000..c94c7b450 --- /dev/null +++ b/lavis/datasets/datasets/vizwiz_vqa_datasets.py @@ -0,0 +1,54 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" +import os +from collections import Counter +from PIL import Image +from lavis.datasets.datasets.vqa_datasets import VQAEvalDataset + +class VizWizEvalDataset(VQAEvalDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + def __getitem__(self, index): + ann = self.annotation[index] + if 'val' in ann["image"]: + image_path = os.path.join(self.vis_root.replace('images', 'val'), ann["image"]) + else: + image_path = os.path.join(self.vis_root.replace('images', 'test'), ann["image"]) + + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + question = self.text_processor(ann["question"]) + + if "answers" in ann: + num_annotators = len(ann["answers"]) + answers = [item['answer'] for item in ann["answers"]] + answer_counts = Counter(answers) + answers = list(set(answers)) + weights = [answer_counts[ans]/num_annotators for ans in answers] + else: + # test + return { + "image": image, + "question_id": ann["image"], + "instance_id": ann["instance_id"], + "text_input": question, + } + + return { + "image": image, + "text_input": question, + "instance_id": ann["instance_id"], + "question_id": ann["instance_id"], + "weights": weights, + "answer": answers + } diff --git a/lavis/datasets/datasets/vlep_dataset.py b/lavis/datasets/datasets/vlep_dataset.py new file mode 100644 index 000000000..f02acc1a5 --- /dev/null +++ b/lavis/datasets/datasets/vlep_dataset.py @@ -0,0 +1,72 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import random +from lavis.datasets.datasets.base_dataset import BaseDataset +import math + +from lavis.datasets.datasets.caption_datasets import CaptionDataset + + +class VlepVideoDataset(BaseDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + split (string): val or test + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + existing_videos = [f.replace('.mp4', '') for f in os.listdir(self.vis_root)] + self.annotation = [ann for ann in self.annotation if ann['vid_name'] in existing_videos] + + + def __getitem__(self, index): + ann = self.annotation[index] + + vname = ann['vid_name']+'.mp4' + video_path = os.path.join(self.vis_root, vname) + + try: + video = self.vis_processor(video_path, start_sec=math.floor(ann['ts'][0]), end_sec=math.ceil(ann['ts'][1])) + except: + return None + + caption = self.text_processor(ann['events'][ann['answer']]) + + # "image_id" is kept to stay compatible with the COCO evaluation format + return { + "video": video, + "text_input": self.text_processor(caption), + "image_id": vname, + "example_id": ann['example_id'], + "instance_id": ann["instance_id"] + } + +class VlepVideoInstructDataset(VlepVideoDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + templates = [ + "what is likely to happen next?", + "what comes after this?", + "where is this leading?", + "in your estimation, what's the next move?", + "can you foresee the subsequent events?", + "based on the video, what might follow?", + "can you give a glimpse into what might be coming?", + ] + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor(random.choice(templates)) + return data + +class VlepVideoEvalDataset(VlepVideoDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data \ No newline at end of file diff --git a/lavis/datasets/datasets/vsr_datasets.py b/lavis/datasets/datasets/vsr_datasets.py new file mode 100644 index 000000000..dddb6cee1 --- /dev/null +++ b/lavis/datasets/datasets/vsr_datasets.py @@ -0,0 +1,104 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import json + +from PIL import Image +from PIL import ImageFile + +from lavis.datasets.datasets.multimodal_classification_datasets import ( + MultimodalClassificationDataset, +) +from lavis.datasets.datasets.base_dataset import BaseDataset + +class VSRClassificationDataset(MultimodalClassificationDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + self.class_labels = self._build_class_labels() + self.classnames = ['no', 'yes'] + + def _build_class_labels(self): + return {"no": 0, "yes": 1} + + def __getitem__(self, index): + ann = self.annotation[index] + + image_path = os.path.join(self.vis_root, ann["image"]) + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + + img_id = ann["image"].split('.')[0] + + return { + "image": image, + "image_id": img_id, + "text_input": ann['caption'], + "label": ann["label"], + "instance_id": ann["instance_id"], + } + +class VSRClassificationInstructDataset(VSRClassificationDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data["answer"]= ["yes", "true"] if data['label'] == 1 else ["no", "false"] + data["text_output"] = "yes" if data["label"] == 1 else "no" + return data + +class VSRCaptionDataset(BaseDataset): + def __init__(self, vis_processor, text_processor, vis_root, ann_paths): + """ + vis_root (string): Root directory of images (e.g. coco/images/) + ann_root (string): directory to store the annotation file + """ + super().__init__(vis_processor, text_processor, vis_root, ann_paths) + self.annotation = [ann for ann in self.annotation if ann['label'] == 1] + + def __getitem__(self, index): + ann = self.annotation[index] + + image_path = os.path.join(self.vis_root, ann["image"]) + image = Image.open(image_path).convert("RGB") + + image = self.vis_processor(image) + + img_id = ann["image"].split('.')[0] + + return { + "image": image, + "image_id": img_id, + "text_input": ann['caption'], + } + +class VSRCaptionInstructDataset(VSRCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + data['text_output'] = data["text_input"] + data['text_input'] = self.text_processor("") + return data + + +class VSRCaptionEvalDataset(VSRCaptionDataset): + def __getitem__(self, index): + data = super().__getitem__(index) + if data != None: + del data["text_input"] + return data \ No newline at end of file diff --git a/lavis/datasets/datasets/yt8m_video_dialogue_datasets.py b/lavis/datasets/datasets/yt8m_video_dialogue_datasets.py new file mode 100644 index 000000000..ca33ac25f --- /dev/null +++ b/lavis/datasets/datasets/yt8m_video_dialogue_datasets.py @@ -0,0 +1,66 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import torch +import os +import copy +import random +from PIL import Image +from lavis.datasets.datasets.base_dataset import ( + BaseDataset +) + + +class YT8MDialDataset(BaseDataset): + def __init__(self, **kwargs): + super().__init__(kwargs['vis_processor'], kwargs['text_processor'], kwargs['vis_root'], kwargs['ann_paths']) + + self.modalities = kwargs['modalities'] + + for modality in self.modalities: + if 'image' in modality: + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + continue + setattr(self, f"{modality}_root", kwargs[f"{modality}_root"]) + setattr(self, f"{modality}_processor", kwargs[f"{modality}_processor"]) + setattr(self, f"existing_{modality}_annotation",getattr(self, f'get_existing_{modality}_annotations')()) + self.sample_ids = set.intersection(*[set(getattr(self, f"existing_{modality}_annotation")) for modality in self.modalities]) + self.annotation = [ann for ann in self.annotation if ann['youtube_id'] in self.sample_ids] + + def get_existing_audio_annotations(self): + return [f.split('_')[0] for f in os.listdir(self.audio_root)] + + def get_existing_video_annotations(self): + return [f.split('_')[0] for f in os.listdir(self.video_root)] + + def get_audio_path(self, ann): + return os.path.join(self.audio_root, f'{ann["youtube_id"]}_{ann["start_sec"]}_{ann["end_sec"]}.flac') + + def get_video_path(self, ann): + return os.path.join(self.video_root, f'{ann["youtube_id"]}_{ann["start_sec"]}_{ann["end_sec"]}.mp4') + + def __getitem__(self, index): + ann = copy.deepcopy(self.annotation[index]) + for modality in self.modalities: + ann[f"{modality}_path"] = getattr(self, f"get_{modality}_path")(ann) + if type(ann[f"{modality}_path"]) == list: + ann[f"{modality}_path"] = random.choice(ann[f"{modality}_path"]) + if 'video' in modality: + try: + ann['video'] = getattr(self, f"video_processor")(ann[f"video_path"], start_sec=ann['start_sec'], end_sec=ann['end_sec']).to(torch.float32) + except: + return None + elif 'image' in modality: + ann['image'] = self.vis_processor(Image.open(ann[f"images_path"])) + else: + ann[modality] = getattr(self, f"{modality}_processor")(ann[f"{modality}_path"]).to(torch.float32) + ann["sample_id"] = ann["youtube_id"] + ann['text_output'] = self.text_processor(ann['response']) + ann['text_input'] = self.text_processor(ann['context']) + ann["question_id"] = index + ann['captions'] = ann['response'] + return ann \ No newline at end of file diff --git a/lavis/datasets/download_scripts/download_charade.py b/lavis/datasets/download_scripts/download_charade.py new file mode 100644 index 000000000..b8dd1d711 --- /dev/null +++ b/lavis/datasets/download_scripts/download_charade.py @@ -0,0 +1,26 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import json +from tqdm import tqdm + +train_file = './train.jsonl' +test_file = './test.jsonl' + +train_data = [json.loads(l.strip()) for l in open(train_file).readlines()] +test_data = [json.loads(l.strip()) for l in open(test_file).readlines()] + +for d in tqdm(train_data): + d['video_path'] = d['video_id'] + '.mp4' + d['ts'] = [float(d['start']), float(d['end'])] + +for d in tqdm(test_data): + d['video_path'] = d['video_id'] + '.mp4' + d['ts'] = [float(d['start']), float(d['end'])] + +json.dump(train_data, open('train_lavis.json', 'w')) +json.dump(test_data, open('test_lavis.json', 'w')) \ No newline at end of file diff --git a/lavis/datasets/download_scripts/download_coin.py b/lavis/datasets/download_scripts/download_coin.py new file mode 100644 index 000000000..8376aa00a --- /dev/null +++ b/lavis/datasets/download_scripts/download_coin.py @@ -0,0 +1,57 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + + +## Pre-requisities: run 'pip install youtube-dl' to install the youtube-dl package. +## Specify your location of output videos and input json file. +## It can also be used for youcookii by updating the file paths. +import json +import os + +output_path = './videos' +json_path = './COIN.json' + +if not os.path.exists(output_path): + os.mkdir(output_path) + +data = json.load(open(json_path, 'r'))['database'] +youtube_ids = list(data.keys()) + +for youtube_id in data: + info = data[youtube_id] + type = info['recipe_type'] + url = info['video_url'] + vid_loc = output_path + '/' + str(type) + if not os.path.exists(vid_loc): + os.mkdir(vid_loc) + os.system('youtube-dl -o ' + vid_loc + '/' + youtube_id + '.mp4' + ' -f best ' + url) + + # To save disk space, you could download the best format available + # but not better that 480p or any other qualities optinally + # See https://askubuntu.com/questions/486297/how-to-select-video-quality-from-youtube-dl + +## convert annotations +all_json = json.load(open(json_path))['database'] +train_data = [] +test_data = [] +for k,v in all_json.items(): + for gt_ann in v['annotation']: + new_ann = {} + youtube_id = v["video_url"].split("/")[-1] + new_ann['youtube_id'] = youtube_id + new_ann["recipe_type"] = v["recipe_type"] + new_ann['video_path'] = f'{v["recipe_type"]}/{youtube_id}.mp4' + new_ann['caption'] = gt_ann['label'] + new_ann['id'] = gt_ann['id'] + new_ann['ts'] = gt_ann['ts'] + if v['subset'] == 'training': + train_data.append(new_ann) + else: + test_data.append(new_ann) + +json.dump(train_data, open('train.json', 'w')) +json.dump(test_data, open('test.json', 'w')) \ No newline at end of file diff --git a/lavis/datasets/download_scripts/download_iconqa.py b/lavis/datasets/download_scripts/download_iconqa.py new file mode 100644 index 000000000..1070c436a --- /dev/null +++ b/lavis/datasets/download_scripts/download_iconqa.py @@ -0,0 +1,35 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import os +import json +from tqdm import tqdm +import shutil +import subprocess + + +image_dir = f'./all_images' +os.makedirs(image_dir, exist_ok=True) +for split in ['train', 'test', 'val']: + print(f"Processing split {split}...") + path = f'{os.path.abspath(image_dir)}/{split}/choose_txt' + annotations = [] + for id in tqdm(os.listdir(path)): + if not os.path.isdir(os.path.join(path, id)): + continue + ann = json.load(open(os.path.join(path, id, 'data.json'), "r")) + ann['instance_id'] = id + ann['image_id'] = f'{split}_{id}' + ann['image'] = f'{split}_{id}.png' + os.system(' '.join(('ln -s',os.path.join(path, id, 'image.png'),os.path.join(image_dir,ann["image"])))) + + annotations.append(ann) + f = open(f'annotations_{split}.json', 'w') + f.write(json.dumps(annotations)) + f.close() + + \ No newline at end of file diff --git a/lavis/datasets/download_scripts/download_violin.py b/lavis/datasets/download_scripts/download_violin.py new file mode 100644 index 000000000..45b850965 --- /dev/null +++ b/lavis/datasets/download_scripts/download_violin.py @@ -0,0 +1,19 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import json +import os + +json_path = './violin_annotation.json' + +## convert annotations +all_json = json.load(open(json_path)) +train_data = [v for v in all_json.values() if 'split' in v and v['split'] == 'train'] +test_data = [v for v in all_json.values() if 'split' in v and v['split'] == 'test'] + +json.dump(train_data, open('train.json', 'w')) +json.dump(test_data, open('test.json', 'w')) \ No newline at end of file diff --git a/lavis/models/beats/BEATs.py b/lavis/models/beats/BEATs.py new file mode 100644 index 000000000..7a5e38876 --- /dev/null +++ b/lavis/models/beats/BEATs.py @@ -0,0 +1,180 @@ +# -------------------------------------------------------- +# BEATs: Audio Pre-Training with Acoustic Tokenizers (https://arxiv.org/abs/2212.09058) +# Github source: https://github.com/microsoft/unilm/tree/master/beats +# Copyright (c) 2022 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Based on fairseq code bases +# https://github.com/pytorch/fairseq +# -------------------------------------------------------- + + +import torch +import torch.nn as nn +from torch.nn import LayerNorm +import torchaudio.compliance.kaldi as ta_kaldi + +from lavis.models.beats.backbone import ( + TransformerEncoder, +) + +import logging +from typing import Optional + +logger = logging.getLogger(__name__) + + +class BEATsConfig: + def __init__(self, cfg=None): + self.input_patch_size: int = -1 # path size of patch embedding + self.embed_dim: int = 512 # patch embedding dimension + self.conv_bias: bool = False # include bias in conv encoder + + self.encoder_layers: int = 12 # num encoder layers in the transformer + self.encoder_embed_dim: int = 768 # encoder embedding dimension + self.encoder_ffn_embed_dim: int = 3072 # encoder embedding dimension for FFN + self.encoder_attention_heads: int = 12 # num encoder attention heads + self.activation_fn: str = "gelu" # activation function to use + + self.layer_wise_gradient_decay_ratio: float = 1.0 # ratio for layer-wise gradient decay + self.layer_norm_first: bool = False # apply layernorm first in the transformer + self.deep_norm: bool = False # apply deep_norm first in the transformer + + # dropouts + self.dropout: float = 0.1 # dropout probability for the transformer + self.attention_dropout: float = 0.1 # dropout probability for attention weights + self.activation_dropout: float = 0.0 # dropout probability after activation in FFN + self.encoder_layerdrop: float = 0.0 # probability of dropping a tarnsformer layer + self.dropout_input: float = 0.0 # dropout to apply to the input (after feat extr) + + # positional embeddings + self.conv_pos: int = 128 # number of filters for convolutional positional embeddings + self.conv_pos_groups: int = 16 # number of groups for convolutional positional embedding + + # relative position embedding + self.relative_position_embedding: bool = False # apply relative position embedding + self.num_buckets: int = 320 # number of buckets for relative position embedding + self.max_distance: int = 1280 # maximum distance for relative position embedding + self.gru_rel_pos: bool = False # apply gated relative position embedding + + # label predictor + self.finetuned_model: bool = False # whether the model is a fine-tuned model. + self.predictor_dropout: float = 0.1 # dropout probability for the predictor + self.predictor_class: int = 527 # target class number for the predictor + + if cfg is not None: + self.update(cfg) + + def update(self, cfg: dict): + self.__dict__.update(cfg) + + +class BEATs(nn.Module): + def __init__( + self, + cfg: BEATsConfig, + ) -> None: + super().__init__() + logger.info(f"BEATs Config: {cfg.__dict__}") + + self.cfg = cfg + + self.embed = cfg.embed_dim + self.post_extract_proj = ( + nn.Linear(self.embed, cfg.encoder_embed_dim) + if self.embed != cfg.encoder_embed_dim + else None + ) + + self.input_patch_size = cfg.input_patch_size + self.patch_embedding = nn.Conv2d(1, self.embed, kernel_size=self.input_patch_size, stride=self.input_patch_size, + bias=cfg.conv_bias) + + self.dropout_input = nn.Dropout(cfg.dropout_input) + + assert not cfg.deep_norm or not cfg.layer_norm_first + self.encoder = TransformerEncoder(cfg) + self.layer_norm = LayerNorm(self.embed) + + if cfg.finetuned_model: + self.predictor_dropout = nn.Dropout(cfg.predictor_dropout) + self.predictor = nn.Linear(cfg.encoder_embed_dim, cfg.predictor_class) + else: + self.predictor = None + + def forward_padding_mask( + self, + features: torch.Tensor, + padding_mask: torch.Tensor, + ) -> torch.Tensor: + extra = padding_mask.size(1) % features.size(1) + if extra > 0: + padding_mask = padding_mask[:, :-extra] + padding_mask = padding_mask.view( + padding_mask.size(0), features.size(1), -1 + ) + padding_mask = padding_mask.all(-1) + return padding_mask + + def preprocess( + self, + source: torch.Tensor, + fbank_mean: float = 15.41663, + fbank_std: float = 6.55582, + ) -> torch.Tensor: + fbanks = [] + for waveform in source: + waveform = waveform.unsqueeze(0) * 2 ** 15 + fbank = ta_kaldi.fbank(waveform, num_mel_bins=128, sample_frequency=16000, frame_length=25, frame_shift=10) + fbanks.append(fbank) + fbank = torch.stack(fbanks, dim=0) + fbank = (fbank - fbank_mean) / (2 * fbank_std) + return fbank + + def extract_features( + self, + fbank: torch.Tensor, + padding_mask: Optional[torch.Tensor] = None, + fbank_mean: float = 15.41663, + fbank_std: float = 6.55582, + ): + ## NOTE: preprocessing is done separately in lavis.processsors.audio_processors.BeatsAudioProcessor + # fbank = self.preprocess(source, fbank_mean=fbank_mean, fbank_std=fbank_std) + + if padding_mask is not None: + padding_mask = self.forward_padding_mask(fbank, padding_mask) + + fbank = fbank.unsqueeze(1) + features = self.patch_embedding(fbank) + features = features.reshape(features.shape[0], features.shape[1], -1) + features = features.transpose(1, 2) + features = self.layer_norm(features) + + if padding_mask is not None: + padding_mask = self.forward_padding_mask(features, padding_mask) + + if self.post_extract_proj is not None: + features = self.post_extract_proj(features) + + x = self.dropout_input(features) + + x, layer_results = self.encoder( + x, + padding_mask=padding_mask, + ) + + if self.predictor is not None: + x = self.predictor_dropout(x) + logits = self.predictor(x) + + if padding_mask is not None and padding_mask.any(): + logits[padding_mask] = 0 + logits = logits.sum(dim=1) + logits = logits / (~padding_mask).sum(dim=1).unsqueeze(-1).expand_as(logits) + else: + logits = logits.mean(dim=1) + + lprobs = torch.sigmoid(logits) + + return lprobs, padding_mask + else: + return x, padding_mask diff --git a/lavis/models/beats/LICENSE_BEATs.txt b/lavis/models/beats/LICENSE_BEATs.txt new file mode 100644 index 000000000..7bb386e6f --- /dev/null +++ b/lavis/models/beats/LICENSE_BEATs.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/lavis/models/beats/README.md b/lavis/models/beats/README.md new file mode 100644 index 000000000..fd54e797a --- /dev/null +++ b/lavis/models/beats/README.md @@ -0,0 +1,127 @@ + +# BEATs + +[**BEATs**](https://arxiv.org/abs/2212.09058): **Audio Pre-Training with Acoustic Tokenizers** + +Official PyTorch implementation and pretrained models of BEATs + +## Pre-Trained and Fine-Tuned Tokenizers and Models +Iterations | Tokenizer | Pre-Trained Model | AudioSet Fine-Tuned Model 1 | AudioSet Fine-Tuned Model 2 +|---|---|---|---|--- +Iter1 | Random Projection | [BEATs_iter1](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter1.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter1 (cpt1)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter1_finetuned_on_AS2M_cpt1.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter1 (cpt2)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter1_finetuned_on_AS2M_cpt2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | +Iter2 | [Tokenizer_iter2](https://valle.blob.core.windows.net/share/BEATs/Tokenizer_iter2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D)| [BEATs_iter2](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter2 (cpt1)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter2_finetuned_on_AS2M_cpt1.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter2 (cpt2)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter2_finetuned_on_AS2M_cpt2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | +Iter3 | [Tokenizer_iter3](https://valle.blob.core.windows.net/share/BEATs/Tokenizer_iter3.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D)| [BEATs_iter3](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter3 (cpt1)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_finetuned_on_AS2M_cpt1.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter3 (cpt2)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_finetuned_on_AS2M_cpt2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | +Iter3+ | [Tokenizer_iter3+ (AS20K)](https://valle.blob.core.windows.net/share/BEATs/Tokenizer_iter3_plus_AS20K.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D)| [BEATs_iter3+ (AS20K)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS20K.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter3+ (AS20K) (cpt1)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS20K_finetuned_on_AS2M_cpt1.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter3+ (AS20K) (cpt2)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS20K_finetuned_on_AS2M_cpt2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | +Iter3+ | [Tokenizer_iter3+ (AS2M)](https://valle.blob.core.windows.net/share/BEATs/Tokenizer_iter3_plus_AS2M.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D)| [BEATs_iter3+ (AS2M)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS2M.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter3+ (AS2M) (cpt1)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS2M_finetuned_on_AS2M_cpt1.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | [Fine-tuned BEATs_iter3+ (AS2M) (cpt2)](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS2M_finetuned_on_AS2M_cpt2.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) | + + +### Load Tokenizers + +```python +import torch +from Tokenizers import TokenizersConfig, Tokenizers + +# load the pre-trained checkpoints +checkpoint = torch.load('/path/to/tokenizer.pt') + +cfg = TokenizersConfig(checkpoint['cfg']) +BEATs_tokenizer = Tokenizers(cfg) +BEATs_tokenizer.load_state_dict(checkpoint['model']) +BEATs_tokenizer.eval() + +# tokenize the audio and generate the labels +audio_input_16khz = torch.randn(1, 10000) +padding_mask = torch.zeros(1, 10000).bool() + +labels = BEATs_tokenizer.extract_labels(audio_input_16khz, padding_mask=padding_mask) +``` + + +### Load Pre-Trained Models + +```python +import torch +from BEATs import BEATs, BEATsConfig + +# load the pre-trained checkpoints +checkpoint = torch.load('/path/to/model.pt') + +cfg = BEATsConfig(checkpoint['cfg']) +BEATs_model = BEATs(cfg) +BEATs_model.load_state_dict(checkpoint['model']) +BEATs_model.eval() + +# extract the the audio representation +audio_input_16khz = torch.randn(1, 10000) +padding_mask = torch.zeros(1, 10000).bool() + +representation = BEATs_model.extract_features(audio_input_16khz, padding_mask=padding_mask)[0] +``` + + +### Load Fine-tuned Models + +```python +import torch +from BEATs import BEATs, BEATsConfig + +# load the fine-tuned checkpoints +checkpoint = torch.load('/path/to/model.pt') + +cfg = BEATsConfig(checkpoint['cfg']) +BEATs_model = BEATs(cfg) +BEATs_model.load_state_dict(checkpoint['model']) +BEATs_model.eval() + +# predict the classification probability of each class +audio_input_16khz = torch.randn(3, 10000) +padding_mask = torch.zeros(3, 10000).bool() + +probs = BEATs_model.extract_features(audio_input_16khz, padding_mask=padding_mask)[0] + +for i, (top5_label_prob, top5_label_idx) in enumerate(zip(*probs.topk(k=5))): + top5_label = [checkpoint['label_dict'][label_idx.item()] for label_idx in top5_label_idx] + print(f'Top 5 predicted labels of the {i}th audio are {top5_label} with probability of {top5_label_prob}') +``` + +## Evaluation Results + +### Comparing with the SOTA Single Models +![alt text](Evaluation_Results/Comparing_with_the_SOTA_Single_Models.png) + + +### Comparing with the SOTA Ensemble Models +![alt text](Evaluation_Results/Comparing_with_the_SOTA_Ensemble_Models.png) + + +### Comparing Different BEATS Tokenizers +![alt text](Evaluation_Results/Comparing_Different_BEATS_Tokenizers.png) + + +### Comparing Different Pre-Training Targets +![alt text](Evaluation_Results/Comparing_Different_Pre-Training_Targets.png) + + +## License +This project is licensed under the license found in the LICENSE file in the root directory of this source tree. +Portions of the source code are based on the [FAIRSEQ](https://github.com/pytorch/fairseq) and [VQGAN](https://github.com/CompVis/taming-transformers) project. + +[Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct) + + +### Reference +If you find our work is useful in your research, please cite the following paper: +``` latex +@article{Chen2022beats, + title = {BEATs: Audio Pre-Training with Acoustic Tokenizers}, + author = {Sanyuan Chen and Yu Wu and Chengyi Wang and Shujie Liu and Daniel Tompkins and Zhuo Chen and Furu Wei}, + eprint={2212.09058}, + archivePrefix={arXiv}, + year={2022} +} +``` +### Contact Information + +For help or issues using BEATs models, please submit a GitHub issue. + +For other communications related to BEATs, please contact Yu Wu (`yuwu1@microsoft.com`). diff --git a/lavis/models/beats/Tokenizers.py b/lavis/models/beats/Tokenizers.py new file mode 100644 index 000000000..d1bc36890 --- /dev/null +++ b/lavis/models/beats/Tokenizers.py @@ -0,0 +1,173 @@ +# -------------------------------------------------------- +# BEATs: Audio Pre-Training with Acoustic Tokenizers (https://arxiv.org/abs/2212.09058) +# Github source: https://github.com/microsoft/unilm/tree/master/beats +# Copyright (c) 2022 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Based on fairseq code bases +# https://github.com/pytorch/fairseq +# -------------------------------------------------------- + + +import torch +import torch.nn as nn +from torch.nn import LayerNorm +import torchaudio.compliance.kaldi as ta_kaldi + +from lavis.models.beats.backbone import ( + TransformerEncoder, +) +from lavis.models.beats.quantizer import ( + NormEMAVectorQuantizer, +) + +import logging +from typing import Optional + +logger = logging.getLogger(__name__) + + +class TokenizersConfig: + def __init__(self, cfg=None): + self.input_patch_size: int = -1 # path size of patch embedding + self.embed_dim: int = 512 # patch embedding dimension + self.conv_bias: bool = False # include bias in conv encoder + + self.encoder_layers: int = 12 # num encoder layers in the transformer + self.encoder_embed_dim: int = 768 # encoder embedding dimension + self.encoder_ffn_embed_dim: int = 3072 # encoder embedding dimension for FFN + self.encoder_attention_heads: int = 12 # num encoder attention heads + self.activation_fn: str = "gelu" # activation function to use + + self.layer_norm_first: bool = False # apply layernorm first in the transformer + self.deep_norm: bool = False # apply deep_norm first in the transformer + + # dropouts + self.dropout: float = 0.1 # dropout probability for the transformer + self.attention_dropout: float = 0.1 # dropout probability for attention weights + self.activation_dropout: float = 0.0 # dropout probability after activation in FFN + self.encoder_layerdrop: float = 0.0 # probability of dropping a tarnsformer layer + self.dropout_input: float = 0.0 # dropout to apply to the input (after feat extr) + + # positional embeddings + self.conv_pos: int = 128 # number of filters for convolutional positional embeddings + self.conv_pos_groups: int = 16 # number of groups for convolutional positional embedding + + # relative position embedding + self.relative_position_embedding: bool = False # apply relative position embedding + self.num_buckets: int = 320 # number of buckets for relative position embedding + self.max_distance: int = 1280 # maximum distance for relative position embedding + self.gru_rel_pos: bool = False # apply gated relative position embedding + + # quantizer + self.quant_n: int = 1024 # codebook number in quantizer + self.quant_dim: int = 256 # codebook dimension in quantizer + + if cfg is not None: + self.update(cfg) + + def update(self, cfg: dict): + self.__dict__.update(cfg) + + +class Tokenizers(nn.Module): + def __init__( + self, + cfg: TokenizersConfig, + ) -> None: + super().__init__() + logger.info(f"Tokenizers Config: {cfg.__dict__}") + + self.cfg = cfg + + self.embed = cfg.embed_dim + self.post_extract_proj = ( + nn.Linear(self.embed, cfg.encoder_embed_dim) + if self.embed != cfg.encoder_embed_dim + else None + ) + + self.input_patch_size = cfg.input_patch_size + self.patch_embedding = nn.Conv2d(1, self.embed, kernel_size=self.input_patch_size, stride=self.input_patch_size, + bias=cfg.conv_bias) + + self.dropout_input = nn.Dropout(cfg.dropout_input) + + assert not cfg.deep_norm or not cfg.layer_norm_first + self.encoder = TransformerEncoder(cfg) + self.layer_norm = LayerNorm(self.embed) + + self.quantize = NormEMAVectorQuantizer( + n_embed=cfg.quant_n, embedding_dim=cfg.quant_dim, beta=1.0, kmeans_init=True, decay=0.99, + ) + self.quant_n = cfg.quant_n + self.quantize_layer = nn.Sequential( + nn.Linear(cfg.encoder_embed_dim, cfg.encoder_embed_dim), + nn.Tanh(), + nn.Linear(cfg.encoder_embed_dim, cfg.quant_dim) # for quantize + ) + + def forward_padding_mask( + self, + features: torch.Tensor, + padding_mask: torch.Tensor, + ) -> torch.Tensor: + extra = padding_mask.size(1) % features.size(1) + if extra > 0: + padding_mask = padding_mask[:, :-extra] + padding_mask = padding_mask.view( + padding_mask.size(0), features.size(1), -1 + ) + padding_mask = padding_mask.all(-1) + return padding_mask + + def preprocess( + self, + source: torch.Tensor, + fbank_mean: float = 15.41663, + fbank_std: float = 6.55582, + ) -> torch.Tensor: + fbanks = [] + for waveform in source: + waveform = waveform.unsqueeze(0) * 2 ** 15 + fbank = ta_kaldi.fbank(waveform, num_mel_bins=128, sample_frequency=16000, frame_length=25, frame_shift=10) + fbanks.append(fbank) + fbank = torch.stack(fbanks, dim=0) + fbank = (fbank - fbank_mean) / (2 * fbank_std) + return fbank + + def extract_labels( + self, + source: torch.Tensor, + padding_mask: Optional[torch.Tensor] = None, + fbank_mean: float = 15.41663, + fbank_std: float = 6.55582, + ): + fbank = self.preprocess(source, fbank_mean=fbank_mean, fbank_std=fbank_std) + + if padding_mask is not None: + padding_mask = self.forward_padding_mask(fbank, padding_mask) + + fbank = fbank.unsqueeze(1) + features = self.patch_embedding(fbank) + features = features.reshape(features.shape[0], features.shape[1], -1) + features = features.transpose(1, 2) + features = self.layer_norm(features) + + if padding_mask is not None: + padding_mask = self.forward_padding_mask(features, padding_mask) + + if self.post_extract_proj is not None: + features = self.post_extract_proj(features) + + x = self.dropout_input(features) + + x, layer_results = self.encoder( + x, + padding_mask=padding_mask, + ) + + quantize_input = self.quantize_layer(x) + quantize_feature, embed_loss, embed_ind = self.quantize(quantize_input) + + return embed_ind + diff --git a/lavis/models/beats/backbone.py b/lavis/models/beats/backbone.py new file mode 100644 index 000000000..ea843ff65 --- /dev/null +++ b/lavis/models/beats/backbone.py @@ -0,0 +1,783 @@ +# -------------------------------------------------------- +# BEATs: Audio Pre-Training with Acoustic Tokenizers (https://arxiv.org/abs/2212.09058) +# Github source: https://github.com/microsoft/unilm/tree/master/beats +# Copyright (c) 2022 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Based on fairseq code bases +# https://github.com/pytorch/fairseq +# -------------------------------------------------------- + +import math +import numpy as np +from typing import Dict, Optional, Tuple +import torch +from torch import Tensor, nn +import torch.nn.functional as F +from torch.nn import LayerNorm, Parameter +from lavis.models.beats.modules import ( + GradMultiply, + SamePad, + get_activation_fn, + GLU_Linear, + quant_noise, +) + + +class TransformerEncoder(nn.Module): + def __init__(self, args): + super().__init__() + + self.dropout = args.dropout + self.embedding_dim = args.encoder_embed_dim + + self.pos_conv = nn.Conv1d( + self.embedding_dim, + self.embedding_dim, + kernel_size=args.conv_pos, + padding=args.conv_pos // 2, + groups=args.conv_pos_groups, + ) + dropout = 0 + std = math.sqrt((4 * (1.0 - dropout)) / (args.conv_pos * self.embedding_dim)) + nn.init.normal_(self.pos_conv.weight, mean=0, std=std) + nn.init.constant_(self.pos_conv.bias, 0) + + self.pos_conv = nn.utils.weight_norm(self.pos_conv, name="weight", dim=2) + self.pos_conv = nn.Sequential(self.pos_conv, SamePad(args.conv_pos), nn.GELU()) + + if hasattr(args, "relative_position_embedding"): + self.relative_position_embedding = args.relative_position_embedding + self.num_buckets = args.num_buckets + self.max_distance = args.max_distance + else: + self.relative_position_embedding = False + self.num_buckets = 0 + self.max_distance = 0 + + self.layers = nn.ModuleList( + [ + TransformerSentenceEncoderLayer( + embedding_dim=self.embedding_dim, + ffn_embedding_dim=args.encoder_ffn_embed_dim, + num_attention_heads=args.encoder_attention_heads, + dropout=self.dropout, + attention_dropout=args.attention_dropout, + activation_dropout=args.activation_dropout, + activation_fn=args.activation_fn, + layer_norm_first=args.layer_norm_first, + deep_norm=args.deep_norm, + has_relative_attention_bias=self.relative_position_embedding, + num_buckets=self.num_buckets, + max_distance=self.max_distance, + gru_rel_pos=args.gru_rel_pos, + encoder_layers=args.encoder_layers, + ) + for i in range(args.encoder_layers) + ] + ) + if self.relative_position_embedding: + for i in range(1, args.encoder_layers): + del self.layers[i].self_attn.relative_attention_bias + self.layers[i].self_attn.relative_attention_bias = self.layers[0].self_attn.relative_attention_bias + + self.layer_norm_first = args.layer_norm_first + self.layer_norm = LayerNorm(self.embedding_dim) + self.layerdrop = args.encoder_layerdrop + + self.apply(init_bert_params) + + if args.deep_norm: + deep_norm_beta = math.pow(8 * args.encoder_layers, -1 / 4) + for i in range(args.encoder_layers): + nn.init.xavier_normal_(self.layers[i].self_attn.k_proj.weight, gain=1) + nn.init.xavier_normal_(self.layers[i].self_attn.v_proj.weight, gain=deep_norm_beta) + nn.init.xavier_normal_(self.layers[i].self_attn.q_proj.weight, gain=1) + nn.init.xavier_normal_(self.layers[i].self_attn.out_proj.weight, gain=deep_norm_beta) + nn.init.xavier_normal_(self.layers[i].fc1.weight, gain=deep_norm_beta) + nn.init.xavier_normal_(self.layers[i].fc2.weight, gain=deep_norm_beta) + + self.layer_wise_gradient_decay_ratio = getattr(args, "layer_wise_gradient_decay_ratio", 1) + + def forward(self, x, padding_mask=None, layer=None): + x, layer_results = self.extract_features(x, padding_mask, layer) + + if self.layer_norm_first and layer is None: + x = self.layer_norm(x) + + return x, layer_results + + def extract_features(self, x, padding_mask=None, tgt_layer=None): + + if padding_mask is not None: + x[padding_mask] = 0 + + x_conv = self.pos_conv(x.transpose(1, 2)) + x_conv = x_conv.transpose(1, 2) + x = x + x_conv + + if not self.layer_norm_first: + x = self.layer_norm(x) + + x = F.dropout(x, p=self.dropout, training=self.training) + + # B x T x C -> T x B x C + x = x.transpose(0, 1) + + layer_results = [] + z = None + if tgt_layer is not None: + layer_results.append((x, z)) + r = None + pos_bias = None + for i, layer in enumerate(self.layers): + if self.layer_wise_gradient_decay_ratio != 1.0: + x = GradMultiply.apply(x, self.layer_wise_gradient_decay_ratio) + dropout_probability = np.random.random() + if not self.training or (dropout_probability > self.layerdrop): + x, z, pos_bias = layer(x, self_attn_padding_mask=padding_mask, need_weights=False, pos_bias=pos_bias) + if tgt_layer is not None: + layer_results.append((x, z)) + if i == tgt_layer: + r = x + break + + if r is not None: + x = r + + # T x B x C -> B x T x C + x = x.transpose(0, 1) + + return x, layer_results + + +class TransformerSentenceEncoderLayer(nn.Module): + def __init__( + self, + embedding_dim: float = 768, + ffn_embedding_dim: float = 3072, + num_attention_heads: float = 8, + dropout: float = 0.1, + attention_dropout: float = 0.1, + activation_dropout: float = 0.1, + activation_fn: str = "relu", + layer_norm_first: bool = False, + deep_norm: bool = False, + has_relative_attention_bias: bool = False, + num_buckets: int = 0, + max_distance: int = 0, + rescale_init: bool = False, + gru_rel_pos: bool = False, + encoder_layers: int = 0, + ) -> None: + + super().__init__() + self.embedding_dim = embedding_dim + self.dropout = dropout + self.activation_dropout = activation_dropout + + self.activation_name = activation_fn + self.activation_fn = get_activation_fn(activation_fn) + self.self_attn = MultiheadAttention( + self.embedding_dim, + num_attention_heads, + dropout=attention_dropout, + self_attention=True, + has_relative_attention_bias=has_relative_attention_bias, + num_buckets=num_buckets, + max_distance=max_distance, + rescale_init=rescale_init, + gru_rel_pos=gru_rel_pos, + ) + + self.dropout1 = nn.Dropout(dropout) + self.dropout2 = nn.Dropout(self.activation_dropout) + self.dropout3 = nn.Dropout(dropout) + + self.layer_norm_first = layer_norm_first + + self.self_attn_layer_norm = LayerNorm(self.embedding_dim) + + if self.activation_name == "glu": + self.fc1 = GLU_Linear(self.embedding_dim, ffn_embedding_dim, "swish") + else: + self.fc1 = nn.Linear(self.embedding_dim, ffn_embedding_dim) + self.fc2 = nn.Linear(ffn_embedding_dim, self.embedding_dim) + + self.final_layer_norm = LayerNorm(self.embedding_dim) + + self.deep_norm = deep_norm + if self.deep_norm: + self.deep_norm_alpha = math.pow(2 * encoder_layers, 1 / 4) + else: + self.deep_norm_alpha = 1 + + def forward( + self, + x: torch.Tensor, + self_attn_mask: torch.Tensor = None, + self_attn_padding_mask: torch.Tensor = None, + need_weights: bool = False, + pos_bias=None + ): + residual = x + + if self.layer_norm_first: + x = self.self_attn_layer_norm(x) + x, attn, pos_bias = self.self_attn( + query=x, + key=x, + value=x, + key_padding_mask=self_attn_padding_mask, + need_weights=False, + attn_mask=self_attn_mask, + position_bias=pos_bias + ) + x = self.dropout1(x) + x = residual + x + + residual = x + x = self.final_layer_norm(x) + if self.activation_name == "glu": + x = self.fc1(x) + else: + x = self.activation_fn(self.fc1(x)) + x = self.dropout2(x) + x = self.fc2(x) + x = self.dropout3(x) + x = residual + x + else: + x, attn, pos_bias = self.self_attn( + query=x, + key=x, + value=x, + key_padding_mask=self_attn_padding_mask, + need_weights=need_weights, + attn_mask=self_attn_mask, + position_bias=pos_bias + ) + + x = self.dropout1(x) + x = residual * self.deep_norm_alpha + x + + x = self.self_attn_layer_norm(x) + + residual = x + if self.activation_name == "glu": + x = self.fc1(x) + else: + x = self.activation_fn(self.fc1(x)) + x = self.dropout2(x) + x = self.fc2(x) + x = self.dropout3(x) + x = residual * self.deep_norm_alpha + x + x = self.final_layer_norm(x) + + return x, attn, pos_bias + + +class MultiheadAttention(nn.Module): + """Multi-headed attention. + + See "Attention Is All You Need" for more details. + """ + + def __init__( + self, + embed_dim, + num_heads, + kdim=None, + vdim=None, + dropout=0.0, + bias=True, + add_bias_kv=False, + add_zero_attn=False, + self_attention=False, + encoder_decoder_attention=False, + q_noise=0.0, + qn_block_size=8, + has_relative_attention_bias=False, + num_buckets=32, + max_distance=128, + gru_rel_pos=False, + rescale_init=False, + ): + super().__init__() + self.embed_dim = embed_dim + self.kdim = kdim if kdim is not None else embed_dim + self.vdim = vdim if vdim is not None else embed_dim + self.qkv_same_dim = self.kdim == embed_dim and self.vdim == embed_dim + + self.num_heads = num_heads + self.dropout_module = nn.Dropout(dropout) + + self.has_relative_attention_bias = has_relative_attention_bias + self.num_buckets = num_buckets + self.max_distance = max_distance + if self.has_relative_attention_bias: + self.relative_attention_bias = nn.Embedding(num_buckets, num_heads) + + self.head_dim = embed_dim // num_heads + self.q_head_dim = self.head_dim + self.k_head_dim = self.head_dim + assert ( + self.head_dim * num_heads == self.embed_dim + ), "embed_dim must be divisible by num_heads" + self.scaling = self.head_dim ** -0.5 + + self.self_attention = self_attention + self.encoder_decoder_attention = encoder_decoder_attention + + assert not self.self_attention or self.qkv_same_dim, ( + "Self-attention requires query, key and " "value to be of the same size" + ) + + k_bias = True + if rescale_init: + k_bias = False + + k_embed_dim = embed_dim + q_embed_dim = embed_dim + + self.k_proj = quant_noise( + nn.Linear(self.kdim, k_embed_dim, bias=k_bias), q_noise, qn_block_size + ) + self.v_proj = quant_noise( + nn.Linear(self.vdim, embed_dim, bias=bias), q_noise, qn_block_size + ) + self.q_proj = quant_noise( + nn.Linear(embed_dim, q_embed_dim, bias=bias), q_noise, qn_block_size + ) + + self.out_proj = quant_noise( + nn.Linear(embed_dim, embed_dim, bias=bias), q_noise, qn_block_size + ) + + if add_bias_kv: + self.bias_k = Parameter(torch.Tensor(1, 1, embed_dim)) + self.bias_v = Parameter(torch.Tensor(1, 1, embed_dim)) + else: + self.bias_k = self.bias_v = None + + self.add_zero_attn = add_zero_attn + + self.gru_rel_pos = gru_rel_pos + if self.gru_rel_pos: + self.grep_linear = nn.Linear(self.q_head_dim, 8) + self.grep_a = nn.Parameter(torch.ones(1, num_heads, 1, 1)) + + self.reset_parameters() + + def reset_parameters(self): + if self.qkv_same_dim: + # Empirically observed the convergence to be much better with + # the scaled initialization + nn.init.xavier_uniform_(self.k_proj.weight, gain=1 / math.sqrt(2)) + nn.init.xavier_uniform_(self.v_proj.weight, gain=1 / math.sqrt(2)) + nn.init.xavier_uniform_(self.q_proj.weight, gain=1 / math.sqrt(2)) + else: + nn.init.xavier_uniform_(self.k_proj.weight) + nn.init.xavier_uniform_(self.v_proj.weight) + nn.init.xavier_uniform_(self.q_proj.weight) + + nn.init.xavier_uniform_(self.out_proj.weight) + if self.out_proj.bias is not None: + nn.init.constant_(self.out_proj.bias, 0.0) + if self.bias_k is not None: + nn.init.xavier_normal_(self.bias_k) + if self.bias_v is not None: + nn.init.xavier_normal_(self.bias_v) + if self.has_relative_attention_bias: + nn.init.xavier_normal_(self.relative_attention_bias.weight) + + def _relative_positions_bucket(self, relative_positions, bidirectional=True): + num_buckets = self.num_buckets + max_distance = self.max_distance + relative_buckets = 0 + + if bidirectional: + num_buckets = num_buckets // 2 + relative_buckets += (relative_positions > 0).to(torch.long) * num_buckets + relative_positions = torch.abs(relative_positions) + else: + relative_positions = -torch.min(relative_positions, torch.zeros_like(relative_positions)) + + max_exact = num_buckets // 2 + is_small = relative_positions < max_exact + + relative_postion_if_large = max_exact + ( + torch.log(relative_positions.float() / max_exact) + / math.log(max_distance / max_exact) + * (num_buckets - max_exact) + ).to(torch.long) + relative_postion_if_large = torch.min( + relative_postion_if_large, torch.full_like(relative_postion_if_large, num_buckets - 1) + ) + + relative_buckets += torch.where(is_small, relative_positions, relative_postion_if_large) + return relative_buckets + + def compute_bias(self, query_length, key_length): + context_position = torch.arange(query_length, dtype=torch.long)[:, None] + memory_position = torch.arange(key_length, dtype=torch.long)[None, :] + relative_position = memory_position - context_position + relative_position_bucket = self._relative_positions_bucket( + relative_position, + bidirectional=True + ) + relative_position_bucket = relative_position_bucket.to(self.relative_attention_bias.weight.device) + values = self.relative_attention_bias(relative_position_bucket) + values = values.permute([2, 0, 1]) + return values + + def forward( + self, + query, + key: Optional[Tensor], + value: Optional[Tensor], + key_padding_mask: Optional[Tensor] = None, + incremental_state: Optional[Dict[str, Dict[str, Optional[Tensor]]]] = None, + need_weights: bool = True, + static_kv: bool = False, + attn_mask: Optional[Tensor] = None, + before_softmax: bool = False, + need_head_weights: bool = False, + position_bias: Optional[Tensor] = None + ) -> Tuple[Tensor, Optional[Tensor], Optional[Tensor]]: + """Input shape: Time x Batch x Channel + + Args: + key_padding_mask (ByteTensor, optional): mask to exclude + keys that are pads, of shape `(batch, src_len)`, where + padding elements are indicated by 1s. + need_weights (bool, optional): return the attention weights, + averaged over heads (default: False). + attn_mask (ByteTensor, optional): typically used to + implement causal attention, where the mask prevents the + attention from looking forward in time (default: None). + before_softmax (bool, optional): return the raw attention + weights and values before the attention softmax. + need_head_weights (bool, optional): return the attention + weights for each head. Implies *need_weights*. Default: + return the average attention weights over all heads. + """ + if need_head_weights: + need_weights = True + + is_tpu = query.device.type == "xla" + + tgt_len, bsz, embed_dim = query.size() + src_len = tgt_len + assert embed_dim == self.embed_dim + assert list(query.size()) == [tgt_len, bsz, embed_dim] + if key is not None: + src_len, key_bsz, _ = key.size() + if not torch.jit.is_scripting(): + assert key_bsz == bsz + assert value is not None + assert src_len, bsz == value.shape[:2] + + if self.has_relative_attention_bias and position_bias is None: + position_bias = self.compute_bias(tgt_len, src_len) + position_bias = position_bias.unsqueeze(0).repeat(bsz, 1, 1, 1).view(bsz * self.num_heads, tgt_len, src_len) + + if incremental_state is not None: + saved_state = self._get_input_buffer(incremental_state) + if saved_state is not None and "prev_key" in saved_state: + # previous time steps are cached - no need to recompute + # key and value if they are static + if static_kv: + assert self.encoder_decoder_attention and not self.self_attention + key = value = None + else: + saved_state = None + + if self.self_attention: + q = self.q_proj(query) + k = self.k_proj(query) + v = self.v_proj(query) + elif self.encoder_decoder_attention: + # encoder-decoder attention + q = self.q_proj(query) + if key is None: + assert value is None + k = v = None + else: + k = self.k_proj(key) + v = self.v_proj(key) + + else: + assert key is not None and value is not None + q = self.q_proj(query) + k = self.k_proj(key) + v = self.v_proj(value) + q *= self.scaling + alpha = 32 + q *= 1 / alpha + + if self.bias_k is not None: + assert self.bias_v is not None + k = torch.cat([k, self.bias_k.repeat(1, bsz, 1)]) + v = torch.cat([v, self.bias_v.repeat(1, bsz, 1)]) + if attn_mask is not None: + attn_mask = torch.cat( + [attn_mask, attn_mask.new_zeros(attn_mask.size(0), 1)], dim=1 + ) + if key_padding_mask is not None: + key_padding_mask = torch.cat( + [ + key_padding_mask, + key_padding_mask.new_zeros(key_padding_mask.size(0), 1), + ], + dim=1, + ) + + q = ( + q.contiguous() + .view(tgt_len, bsz * self.num_heads, self.q_head_dim) + .transpose(0, 1) + ) + if k is not None: + k = ( + k.contiguous() + .view(-1, bsz * self.num_heads, self.k_head_dim) + .transpose(0, 1) + ) + if v is not None: + v = ( + v.contiguous() + .view(-1, bsz * self.num_heads, self.head_dim) + .transpose(0, 1) + ) + + if saved_state is not None: + # saved states are stored with shape (bsz, num_heads, seq_len, head_dim) + if "prev_key" in saved_state: + _prev_key = saved_state["prev_key"] + assert _prev_key is not None + prev_key = _prev_key.view(bsz * self.num_heads, -1, self.head_dim) + if static_kv: + k = prev_key + else: + assert k is not None + k = torch.cat([prev_key, k], dim=1) + src_len = k.size(1) + if "prev_value" in saved_state: + _prev_value = saved_state["prev_value"] + assert _prev_value is not None + prev_value = _prev_value.view(bsz * self.num_heads, -1, self.head_dim) + if static_kv: + v = prev_value + else: + assert v is not None + v = torch.cat([prev_value, v], dim=1) + prev_key_padding_mask: Optional[Tensor] = None + if "prev_key_padding_mask" in saved_state: + prev_key_padding_mask = saved_state["prev_key_padding_mask"] + assert k is not None and v is not None + key_padding_mask = MultiheadAttention._append_prev_key_padding_mask( + key_padding_mask=key_padding_mask, + prev_key_padding_mask=prev_key_padding_mask, + batch_size=bsz, + src_len=k.size(1), + static_kv=static_kv, + ) + + saved_state["prev_key"] = k.view(bsz, self.num_heads, -1, self.head_dim) + saved_state["prev_value"] = v.view(bsz, self.num_heads, -1, self.head_dim) + saved_state["prev_key_padding_mask"] = key_padding_mask + # In this branch incremental_state is never None + assert incremental_state is not None + incremental_state = self._set_input_buffer(incremental_state, saved_state) + assert k is not None + assert k.size(1) == src_len + + # This is part of a workaround to get around fork/join parallelism + # not supporting Optional types. + if key_padding_mask is not None and key_padding_mask.dim() == 0: + key_padding_mask = None + + if key_padding_mask is not None: + assert key_padding_mask.size(0) == bsz + assert key_padding_mask.size(1) == src_len + + if self.add_zero_attn: + assert v is not None + src_len += 1 + k = torch.cat([k, k.new_zeros((k.size(0), 1) + k.size()[2:])], dim=1) + v = torch.cat([v, v.new_zeros((v.size(0), 1) + v.size()[2:])], dim=1) + if attn_mask is not None: + attn_mask = torch.cat( + [attn_mask, attn_mask.new_zeros(attn_mask.size(0), 1)], dim=1 + ) + if key_padding_mask is not None: + key_padding_mask = torch.cat( + [ + key_padding_mask, + torch.zeros(key_padding_mask.size(0), 1).type_as( + key_padding_mask + ), + ], + dim=1, + ) + + attn_weights = torch.bmm(q, k.transpose(1, 2)) + attn_weights = (attn_weights - attn_weights.max(dim=-1, keepdim=True)[0]) * alpha + attn_weights = self.apply_sparse_mask(attn_weights, tgt_len, src_len, bsz) + + assert list(attn_weights.size()) == [bsz * self.num_heads, tgt_len, src_len] + + if attn_mask is not None: + attn_mask = attn_mask.unsqueeze(0) + attn_weights += attn_mask + + if key_padding_mask is not None: + # don't attend to padding symbols + attn_weights = attn_weights.view(bsz, self.num_heads, tgt_len, src_len) + if not is_tpu: + attn_weights = attn_weights.masked_fill( + key_padding_mask.unsqueeze(1).unsqueeze(2).to(torch.bool), + float("-inf"), + ) + else: + attn_weights = attn_weights.transpose(0, 2) + attn_weights = attn_weights.masked_fill(key_padding_mask, float("-inf")) + attn_weights = attn_weights.transpose(0, 2) + attn_weights = attn_weights.view(bsz * self.num_heads, tgt_len, src_len) + + if before_softmax: + return attn_weights, v, position_bias + + if position_bias is not None: + attn_mask_rel_pos = position_bias + if self.gru_rel_pos == 1: + query_layer = q.view(bsz, self.num_heads, tgt_len, self.q_head_dim) * alpha / self.scaling + _B, _H, _L, __ = query_layer.size() + gate_a, gate_b = torch.sigmoid(self.grep_linear(query_layer).view( + _B, _H, _L, 2, 4).sum(-1, keepdim=False)).chunk(2, dim=-1) + gate_a_1 = gate_a * (gate_b * self.grep_a - 1.0) + 2.0 + attn_mask_rel_pos = gate_a_1.view(bsz * self.num_heads, tgt_len, 1) * position_bias + + attn_mask_rel_pos = attn_mask_rel_pos.view(attn_weights.size()) + + attn_weights = attn_weights + attn_mask_rel_pos + + attn_weights_float = F.softmax( + attn_weights, dim=-1 + ) + attn_weights = attn_weights_float.type_as(attn_weights) + attn_probs = self.dropout_module(attn_weights) + + assert v is not None + attn = torch.bmm(attn_probs, v) + assert list(attn.size()) == [bsz * self.num_heads, tgt_len, self.head_dim] + attn = attn.transpose(0, 1).contiguous().view(tgt_len, bsz, embed_dim) + attn = self.out_proj(attn) + attn_weights: Optional[Tensor] = None + if need_weights: + attn_weights = attn_weights_float.view( + bsz, self.num_heads, tgt_len, src_len + ).transpose(1, 0) + if not need_head_weights: + # average attention weights over heads + attn_weights = attn_weights.mean(dim=0) + + return attn, attn_weights, position_bias + + @staticmethod + def _append_prev_key_padding_mask( + key_padding_mask: Optional[Tensor], + prev_key_padding_mask: Optional[Tensor], + batch_size: int, + src_len: int, + static_kv: bool, + ) -> Optional[Tensor]: + # saved key padding masks have shape (bsz, seq_len) + if prev_key_padding_mask is not None and static_kv: + new_key_padding_mask = prev_key_padding_mask + elif prev_key_padding_mask is not None and key_padding_mask is not None: + new_key_padding_mask = torch.cat( + [prev_key_padding_mask.float(), key_padding_mask.float()], dim=1 + ) + # During incremental decoding, as the padding token enters and + # leaves the frame, there will be a time when prev or current + # is None + elif prev_key_padding_mask is not None: + if src_len > prev_key_padding_mask.size(1): + filler = torch.zeros( + (batch_size, src_len - prev_key_padding_mask.size(1)), + device=prev_key_padding_mask.device, + ) + new_key_padding_mask = torch.cat( + [prev_key_padding_mask.float(), filler.float()], dim=1 + ) + else: + new_key_padding_mask = prev_key_padding_mask.float() + elif key_padding_mask is not None: + if src_len > key_padding_mask.size(1): + filler = torch.zeros( + (batch_size, src_len - key_padding_mask.size(1)), + device=key_padding_mask.device, + ) + new_key_padding_mask = torch.cat( + [filler.float(), key_padding_mask.float()], dim=1 + ) + else: + new_key_padding_mask = key_padding_mask.float() + else: + new_key_padding_mask = prev_key_padding_mask + return new_key_padding_mask + + def _get_input_buffer( + self, incremental_state: Optional[Dict[str, Dict[str, Optional[Tensor]]]] + ) -> Dict[str, Optional[Tensor]]: + result = self.get_incremental_state(incremental_state, "attn_state") + if result is not None: + return result + else: + empty_result: Dict[str, Optional[Tensor]] = {} + return empty_result + + def _set_input_buffer( + self, + incremental_state: Dict[str, Dict[str, Optional[Tensor]]], + buffer: Dict[str, Optional[Tensor]], + ): + return self.set_incremental_state(incremental_state, "attn_state", buffer) + + def apply_sparse_mask(self, attn_weights, tgt_len: int, src_len: int, bsz: int): + return attn_weights + + +def init_bert_params(module): + """ + Initialize the weights specific to the BERT Model. + This overrides the default initializations depending on the specified arguments. + 1. If normal_init_linear_weights is set then weights of linear + layer will be initialized using the normal distribution and + bais will be set to the specified value. + 2. If normal_init_embed_weights is set then weights of embedding + layer will be initialized using the normal distribution. + 3. If normal_init_proj_weights is set then weights of + in_project_weight for MultiHeadAttention initialized using + the normal distribution (to be validated). + """ + + def normal_(data): + # with FSDP, module params will be on CUDA, so we cast them back to CPU + # so that the RNG is consistent with and without FSDP + data.copy_( + data.cpu().normal_(mean=0.0, std=0.02).to(data.device) + ) + + if isinstance(module, nn.Linear): + normal_(module.weight.data) + if module.bias is not None: + module.bias.data.zero_() + if isinstance(module, nn.Embedding): + normal_(module.weight.data) + if module.padding_idx is not None: + module.weight.data[module.padding_idx].zero_() + if isinstance(module, MultiheadAttention): + normal_(module.q_proj.weight.data) + normal_(module.k_proj.weight.data) + normal_(module.v_proj.weight.data) diff --git a/lavis/models/beats/modules.py b/lavis/models/beats/modules.py new file mode 100644 index 000000000..7772b2d74 --- /dev/null +++ b/lavis/models/beats/modules.py @@ -0,0 +1,219 @@ +# -------------------------------------------------------- +# BEATs: Audio Pre-Training with Acoustic Tokenizers (https://arxiv.org/abs/2212.09058) +# Github source: https://github.com/microsoft/unilm/tree/master/beats +# Copyright (c) 2022 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Based on fairseq code bases +# https://github.com/pytorch/fairseq +# -------------------------------------------------------- + +import math +import warnings +import torch +from torch import Tensor, nn +import torch.nn.functional as F + + +class GradMultiply(torch.autograd.Function): + @staticmethod + def forward(ctx, x, scale): + ctx.scale = scale + res = x.new(x) + return res + + @staticmethod + def backward(ctx, grad): + return grad * ctx.scale, None + + +class SamePad(nn.Module): + def __init__(self, kernel_size, causal=False): + super().__init__() + if causal: + self.remove = kernel_size - 1 + else: + self.remove = 1 if kernel_size % 2 == 0 else 0 + + def forward(self, x): + if self.remove > 0: + x = x[:, :, : -self.remove] + return x + + +class Swish(nn.Module): + def __init__(self): + super(Swish, self).__init__() + self.act = torch.nn.Sigmoid() + + def forward(self, x): + return x * self.act(x) + + +class GLU_Linear(nn.Module): + def __init__(self, input_dim, output_dim, glu_type="sigmoid", bias_in_glu=True): + super(GLU_Linear, self).__init__() + + self.glu_type = glu_type + self.output_dim = output_dim + + if glu_type == "sigmoid": + self.glu_act = torch.nn.Sigmoid() + elif glu_type == "swish": + self.glu_act = Swish() + elif glu_type == "relu": + self.glu_act = torch.nn.ReLU() + elif glu_type == "gelu": + self.glu_act = torch.nn.GELU() + + if bias_in_glu: + self.linear = nn.Linear(input_dim, output_dim * 2, True) + else: + self.linear = nn.Linear(input_dim, output_dim * 2, False) + + def forward(self, x): + # to be consistent with GLU_Linear, we assume the input always has the #channel (#dim) in the last dimension of the tensor, so need to switch the dimension first for 1D-Conv case + x = self.linear(x) + + if self.glu_type == "bilinear": + x = (x[:, :, 0:self.output_dim] * x[:, :, self.output_dim:self.output_dim * 2]) + else: + x = (x[:, :, 0:self.output_dim] * self.glu_act(x[:, :, self.output_dim:self.output_dim * 2])) + + return x + + +def gelu_accurate(x): + if not hasattr(gelu_accurate, "_a"): + gelu_accurate._a = math.sqrt(2 / math.pi) + return ( + 0.5 * x * (1 + torch.tanh(gelu_accurate._a * (x + 0.044715 * torch.pow(x, 3)))) + ) + + +def gelu(x: torch.Tensor) -> torch.Tensor: + return torch.nn.functional.gelu(x.float()).type_as(x) + + +def get_activation_fn(activation: str): + """Returns the activation function corresponding to `activation`""" + + if activation == "relu": + return F.relu + elif activation == "gelu": + return gelu + elif activation == "gelu_fast": + warnings.warn( + "--activation-fn=gelu_fast has been renamed to gelu_accurate" + ) + return gelu_accurate + elif activation == "gelu_accurate": + return gelu_accurate + elif activation == "tanh": + return torch.tanh + elif activation == "linear": + return lambda x: x + elif activation == "glu": + return lambda x: x + else: + raise RuntimeError("--activation-fn {} not supported".format(activation)) + + +def quant_noise(module, p, block_size): + """ + Wraps modules and applies quantization noise to the weights for + subsequent quantization with Iterative Product Quantization as + described in "Training with Quantization Noise for Extreme Model Compression" + + Args: + - module: nn.Module + - p: amount of Quantization Noise + - block_size: size of the blocks for subsequent quantization with iPQ + + Remarks: + - Module weights must have the right sizes wrt the block size + - Only Linear, Embedding and Conv2d modules are supported for the moment + - For more detail on how to quantize by blocks with convolutional weights, + see "And the Bit Goes Down: Revisiting the Quantization of Neural Networks" + - We implement the simplest form of noise here as stated in the paper + which consists in randomly dropping blocks + """ + + # if no quantization noise, don't register hook + if p <= 0: + return module + + # supported modules + assert isinstance(module, (nn.Linear, nn.Embedding, nn.Conv2d)) + + # test whether module.weight has the right sizes wrt block_size + is_conv = module.weight.ndim == 4 + + # 2D matrix + if not is_conv: + assert ( + module.weight.size(1) % block_size == 0 + ), "Input features must be a multiple of block sizes" + + # 4D matrix + else: + # 1x1 convolutions + if module.kernel_size == (1, 1): + assert ( + module.in_channels % block_size == 0 + ), "Input channels must be a multiple of block sizes" + # regular convolutions + else: + k = module.kernel_size[0] * module.kernel_size[1] + assert k % block_size == 0, "Kernel size must be a multiple of block size" + + def _forward_pre_hook(mod, input): + # no noise for evaluation + if mod.training: + if not is_conv: + # gather weight and sizes + weight = mod.weight + in_features = weight.size(1) + out_features = weight.size(0) + + # split weight matrix into blocks and randomly drop selected blocks + mask = torch.zeros( + in_features // block_size * out_features, device=weight.device + ) + mask.bernoulli_(p) + mask = mask.repeat_interleave(block_size, -1).view(-1, in_features) + + else: + # gather weight and sizes + weight = mod.weight + in_channels = mod.in_channels + out_channels = mod.out_channels + + # split weight matrix into blocks and randomly drop selected blocks + if mod.kernel_size == (1, 1): + mask = torch.zeros( + int(in_channels // block_size * out_channels), + device=weight.device, + ) + mask.bernoulli_(p) + mask = mask.repeat_interleave(block_size, -1).view(-1, in_channels) + else: + mask = torch.zeros( + weight.size(0), weight.size(1), device=weight.device + ) + mask.bernoulli_(p) + mask = ( + mask.unsqueeze(2) + .unsqueeze(3) + .repeat(1, 1, mod.kernel_size[0], mod.kernel_size[1]) + ) + + # scale weights and apply mask + mask = mask.to( + torch.bool + ) # x.bool() is not currently supported in TorchScript + s = 1 / (1 - p) + mod.weight.data = s * weight.masked_fill(mask, 0) + + module.register_forward_pre_hook(_forward_pre_hook) + return module + diff --git a/lavis/models/beats/quantizer.py b/lavis/models/beats/quantizer.py new file mode 100644 index 000000000..5370d02e7 --- /dev/null +++ b/lavis/models/beats/quantizer.py @@ -0,0 +1,215 @@ +# -------------------------------------------------------- +# BEATs: Audio Pre-Training with Acoustic Tokenizers (https://arxiv.org/abs/2212.09058) +# Github source: https://github.com/microsoft/unilm/tree/master/beats +# Copyright (c) 2022 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Based on VQGAN code bases +# https://github.com/CompVis/taming-transformers +# --------------------------------------------------------' + +import torch +import torch.nn as nn +import torch.nn.functional as F +import torch.distributed as distributed + +try: + from einops import rearrange, repeat +except ImportError: + pass + + +def l2norm(t): + return F.normalize(t, p=2, dim=-1) + + +def ema_inplace(moving_avg, new, decay): + moving_avg.data.mul_(decay).add_(new, alpha=(1 - decay)) + + +def sample_vectors(samples, num): + num_samples, device = samples.shape[0], samples.device + + if num_samples >= num: + indices = torch.randperm(num_samples, device=device)[:num] + else: + indices = torch.randint(0, num_samples, (num,), device=device) + + return samples[indices] + + +def kmeans(samples, num_clusters, num_iters=10, use_cosine_sim=False): + dim, dtype, device = samples.shape[-1], samples.dtype, samples.device + + means = sample_vectors(samples, num_clusters) + + for _ in range(num_iters): + if use_cosine_sim: + dists = samples @ means.t() + else: + diffs = rearrange(samples, 'n d -> n () d') \ + - rearrange(means, 'c d -> () c d') + dists = -(diffs ** 2).sum(dim=-1) + + buckets = dists.max(dim=-1).indices + bins = torch.bincount(buckets, minlength=num_clusters) + zero_mask = bins == 0 + bins_min_clamped = bins.masked_fill(zero_mask, 1) + + new_means = buckets.new_zeros(num_clusters, dim, dtype=dtype) + new_means.scatter_add_(0, repeat(buckets, 'n -> n d', d=dim), samples) + new_means = new_means / bins_min_clamped[..., None] + + if use_cosine_sim: + new_means = l2norm(new_means) + + means = torch.where(zero_mask[..., None], means, new_means) + + return means, bins + + +class EmbeddingEMA(nn.Module): + def __init__(self, num_tokens, codebook_dim, decay=0.99, eps=1e-5, kmeans_init=True, codebook_init_path=''): + super().__init__() + self.num_tokens = num_tokens + self.codebook_dim = codebook_dim + self.decay = decay + self.eps = eps + if codebook_init_path == '': + if not kmeans_init: + weight = torch.randn(num_tokens, codebook_dim) + weight = l2norm(weight) + else: + weight = torch.zeros(num_tokens, codebook_dim) + self.register_buffer('initted', torch.Tensor([not kmeans_init])) + else: + print(f"load init codebook weight from {codebook_init_path}") + codebook_ckpt_weight = torch.load(codebook_init_path, map_location='cpu') + weight = codebook_ckpt_weight.clone() + self.register_buffer('initted', torch.Tensor([True])) + + self.weight = nn.Parameter(weight, requires_grad=False) + self.cluster_size = nn.Parameter(torch.zeros(num_tokens), requires_grad=False) + self.embed_avg = nn.Parameter(weight.clone(), requires_grad=False) + # self.register_buffer('initted', torch.Tensor([not kmeans_init])) + self.update = True + + @torch.jit.ignore + def init_embed_(self, data): + if self.initted: + return + print("Performing Kemans init for codebook") + embed, cluster_size = kmeans(data, self.num_tokens, 10, use_cosine_sim=True) + self.weight.data.copy_(embed) + self.cluster_size.data.copy_(cluster_size) + self.initted.data.copy_(torch.Tensor([True])) + + def forward(self, embed_id): + return F.embedding(embed_id, self.weight) + + def cluster_size_ema_update(self, new_cluster_size): + self.cluster_size.data.mul_(self.decay).add_(new_cluster_size, alpha=1 - self.decay) + + def embed_avg_ema_update(self, new_embed_avg): + self.embed_avg.data.mul_(self.decay).add_(new_embed_avg, alpha=1 - self.decay) + + def weight_update(self, num_tokens): + n = self.cluster_size.sum() + smoothed_cluster_size = ( + (self.cluster_size + self.eps) / (n + num_tokens * self.eps) * n + ) + # normalize embedding average with smoothed cluster size + embed_normalized = self.embed_avg / smoothed_cluster_size.unsqueeze(1) + # embed_normalized = l2norm(self.embed_avg / smoothed_cluster_size.unsqueeze(1)) + self.weight.data.copy_(embed_normalized) + + +def norm_ema_inplace(moving_avg, new, decay): + moving_avg.data.mul_(decay).add_(new, alpha=(1 - decay)) + moving_avg.data.copy_(l2norm(moving_avg.data)) + + +class NormEMAVectorQuantizer(nn.Module): + def __init__(self, n_embed, embedding_dim, beta, decay=0.99, eps=1e-5, + statistic_code_usage=True, kmeans_init=False, codebook_init_path=''): + super().__init__() + self.codebook_dim = embedding_dim + self.num_tokens = n_embed + self.beta = beta + self.decay = decay + + # learnable = True if orthogonal_reg_weight > 0 else False + self.embedding = EmbeddingEMA(self.num_tokens, self.codebook_dim, decay, eps, kmeans_init, codebook_init_path) + + self.statistic_code_usage = statistic_code_usage + if statistic_code_usage: + self.register_buffer('cluster_size', torch.zeros(n_embed)) + if distributed.is_available() and distributed.is_initialized(): + print("ddp is enable, so use ddp_reduce to sync the statistic_code_usage for each gpu!") + self.all_reduce_fn = distributed.all_reduce + else: + self.all_reduce_fn = nn.Identity() + + def reset_cluster_size(self, device): + if self.statistic_code_usage: + self.register_buffer('cluster_size', torch.zeros(self.num_tokens)) + self.cluster_size = self.cluster_size.to(device) + + def forward(self, z): + # reshape z -> (batch, height, width, channel) and flatten + # z, 'b c h w -> b h w c' + # z = rearrange(z, 'b c h w -> b h w c') + # z = z.transpose(1, 2) + z = l2norm(z) + z_flattened = z.reshape(-1, self.codebook_dim) + + self.embedding.init_embed_(z_flattened) + + d = z_flattened.pow(2).sum(dim=1, keepdim=True) + \ + self.embedding.weight.pow(2).sum(dim=1) - 2 * \ + torch.einsum('bd,nd->bn', z_flattened, self.embedding.weight) # 'n d -> d n' + + encoding_indices = torch.argmin(d, dim=1) + + z_q = self.embedding(encoding_indices).view(z.shape) + + encodings = F.one_hot(encoding_indices, self.num_tokens).type(z.dtype) + + if not self.training: + with torch.no_grad(): + cluster_size = encodings.sum(0) + self.all_reduce_fn(cluster_size) + ema_inplace(self.cluster_size, cluster_size, self.decay) + + if self.training and self.embedding.update: + # EMA cluster size + + bins = encodings.sum(0) + self.all_reduce_fn(bins) + + # self.embedding.cluster_size_ema_update(bins) + ema_inplace(self.cluster_size, bins, self.decay) + + zero_mask = (bins == 0) + bins = bins.masked_fill(zero_mask, 1.) + + embed_sum = z_flattened.t() @ encodings + self.all_reduce_fn(embed_sum) + + embed_normalized = (embed_sum / bins.unsqueeze(0)).t() + embed_normalized = l2norm(embed_normalized) + + embed_normalized = torch.where(zero_mask[..., None], self.embedding.weight, + embed_normalized) + norm_ema_inplace(self.embedding.weight, embed_normalized, self.decay) + + # compute loss for embedding + loss = self.beta * F.mse_loss(z_q.detach(), z) + + # preserve gradients + z_q = z + (z_q - z).detach() + + # reshape back to match original input shape + # z_q, 'b h w c -> b c h w' + # z_q = rearrange(z_q, 'b h w c -> b c h w') + # z_q = z_q.transpose(1, 2) + return z_q, loss, encoding_indices diff --git a/lavis/models/beats_encoder.py b/lavis/models/beats_encoder.py new file mode 100644 index 000000000..b09113803 --- /dev/null +++ b/lavis/models/beats_encoder.py @@ -0,0 +1,43 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +from lavis.models.base_model import BaseEncoder +from lavis.models.beats.BEATs import BEATs, BEATsConfig +import torch +from lavis.common.utils import is_url +from lavis.common.dist_utils import download_cached_file +import os + + +class BeatsEncoder(BaseEncoder): + def __init__(self, checkpoint_path): + super().__init__() + + # load the pre-trained checkpoints + if is_url(checkpoint_path): + cached_file = download_cached_file( + checkpoint_path, check_hash=False, progress=True + ) + checkpoint = torch.load(checkpoint_path) + elif os.path.isfile(checkpoint_path): + checkpoint = torch.load(checkpoint_path) + + cfg = BEATsConfig(checkpoint['cfg']) + self.num_features = cfg.encoder_embed_dim + self.model = BEATs(cfg) + self.model.load_state_dict(checkpoint['model']) + self.model.eval() + + @classmethod + def from_config(cls, cfg): + checkpoint_path = cfg.get("checkpoint_path", "https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS2M.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D") + return cls(checkpoint_path) + + def forward(self, x): + with torch.no_grad(): + return self.model.extract_features(x.squeeze(1))[0] + diff --git a/lavis/models/blip2_models/blip2_vicuna_xinstruct.py b/lavis/models/blip2_models/blip2_vicuna_xinstruct.py new file mode 100644 index 000000000..744d9eecb --- /dev/null +++ b/lavis/models/blip2_models/blip2_vicuna_xinstruct.py @@ -0,0 +1,2640 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +""" +Requires Transformer 4.28 and above, implementation may change according the Llama implementation +""" +import logging +import string +from packaging import version +import os +from omegaconf import OmegaConf + +import torch +from torch.cuda.amp import autocast as autocast +import torch.nn as nn +from torch.nn.modules.module import _IncompatibleKeys + +from peft import ( + get_peft_model, + LoraConfig, + TaskType, +) + +import transformers +import random +from lavis.common.registry import registry +from lavis.models.base_model import BaseModel +from lavis.models.blip2_models.blip2 import Blip2Base, disabled_train, LayerNorm +from lavis.models.ulip_models.ULIP_models import ULIP_PointBERT +from lavis.tasks.multimodal_classification import MultimodalClassificationTask + +from lavis.common.utils import is_url +from lavis.models.blip2_models.Qformer import BertConfig, BertLMHeadModel +from lavis.common.dist_utils import download_cached_file +from lavis.processors.blip_processors import BlipCaptionProcessor + +class CastOutputToFloat(nn.Sequential): + def forward(self, x): return super().forward(x).to(torch.float32) + + +@registry.register_model("blip2_vicuna_xinstruct") +class Blip2VicunaXInstruct(Blip2Base): + """ + BLIP2 Vicuna model. + Supported model types: + - vicuna7b + - vicuna13b + Usage: + >>> from lavis.models import load_model + >>> model = load_model("blip2_vicuna_xinstruct", "vicuna7b") + """ + + PRETRAINED_MODEL_CONFIG_DICT = { + "vicuna7b": "configs/models/blip2/blip2_xinstruct_vicuna7b.yaml", + "vicuna13b": "configs/models/blip2/blip2_xinstruct_vicuna13b.yaml", + } + + SEQUENCIAL_ENCODERS = [ + "eva_clip_g", + "beats" + ] + + SEQUENCIAL_MODALITIES = [ + "video", + "audio" + ] + + MODALITY_TO_CUE = { + "image": " image: ", + "pc": " 3d: ", + "video": " video: ", + "audio": " audio: ", + } + + def __init__( + self, + + modalities = ["image", "pc", "audio", "video"], + use_cues=True, + num_query_token=32, + qformer_text_input=True, + llm_text_input=False, + apply_lemmatizer=False, + + ## encoders + image_model="eva_clip_g", + pc_model="ulip2_pointbert", + video_model="eva_clip_g", + audio_model="beats", + + image_encoder_kwargs = {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False}, + pc_encoder_kwargs = {}, + video_encoder_kwargs = {}, + audio_encoder_kwargs = {}, + + image_precision="fp16", + pc_precision="fp16", + video_precision="fp16", + audio_precision="fp16", + + freeze_image=True, + freeze_pc=True, + freeze_video=True, + freeze_audio=True, + + ## load pretrained parameters + pretrained_image_qformer=None, + pretrained_pc_qformer=None, + pretrained_video_qformer=None, + pretrained_audio_qformer=None, + + load_attention_image_qformer=False, + load_attention_pc_qformer=False, + load_attention_video_qformer=False, + load_attention_audio_qformer=False, + + load_qformer_type_image="", + load_qformer_type_pc="", + load_qformer_type_video="", + load_qformer_type_audio="", + + load_ln_type_image="", + load_ln_type_pc="", + load_ln_type_video="", + load_ln_type_audio="", + + load_projection_image=True, + load_projection_pc=True, + load_projection_video=True, + load_projection_audio=True, + + load_projection_type_image="", + load_projection_type_pc="", + load_projection_type_video="", + load_projection_type_audio="", + + ## llm model parameters + llm_model="", + lora_model="", + lora=False, + + ## generation parameters + prompt="", + prefix="", + postfix="", + max_txt_len=128, + max_output_txt_len=256, + special_qformer_input_prompt=False, + enumerate_inputs=False, + add_space=False, + remove_start=False, + clean_tokenization=False, # if set to true removes whitespace from cue, and start token from prompt. + + ## shared Q-former setup + shared_qformer=False, + pretrained_shared_qformer=None, + load_attention_shared_qformer=False, + load_qformer_type_shared="", + load_projection_shared=False, + load_projection_type_shared="", + encoder_projection_type_image="", + encoder_projection_type_pc="", + encoder_projection_type_video="", + encoder_projection_type_audio="", + shared_qformer_num_features=512, + + ## use cached features + cached_audio=False, + cached_image=False, + cached_pc=False, + cached_video=False, + + ## num features for modality (only needed in cached cases.) + num_features_audio=768, + num_features_image=1408, + num_features_video=1408, + num_features_pc=512, + + joint_video_audio=False, + + ## DisCRN + use_caption=False, + use_describe=False, + + ## classification setup + predict_with_gen=False, + format_candidates_prompt="{}", + + + ## projection only parameters + projection_only=False, + projection_only_audio=False, + projection_only_pc=False, + projection_only_video=False, + projection_only_image=False, + + projection_path_audio=False, + projection_path_pc=False, + projection_path_video=False, + projection_path_image=False, + + proj_dim=1, + + + ): + + super().__init__() + + transformers_version = version.parse(transformers.__version__) + assert transformers_version >= version.parse("4.28"), "BLIP-2 Vicuna requires transformers>=4.28" + from transformers import LlamaTokenizer + from lavis.models.blip2_models.modeling_llama import LlamaForCausalLM + logging.info(f"Using modalities {modalities}") + self.modalities = modalities + + logging.info(f"Shared Qformer is set to {shared_qformer}") + self.shared_qformer = shared_qformer + + logging.info(f"Video-audio interleaving is set to {joint_video_audio}") + self.joint_video_audio = joint_video_audio + + logging.info(f"Using Spacy en_core_wb_sm lemmatizer is set to {apply_lemmatizer}") + self._lemmatizer = None + self.apply_lemmatizer = apply_lemmatizer + + logging.info(f"Qformer text input {qformer_text_input} and LLM Text Input {llm_text_input}") + self.qformer_text_input = qformer_text_input + self.llm_text_input = llm_text_input + + self.projection_only = projection_only + self.proj_dim = proj_dim + logging.info(f"Projection only setup is set to {projection_only} with dimension {proj_dim}") + + for modality in self.modalities: + setattr(self, f"cached_{modality}", locals()[f"cached_{modality}"]) + if locals()[f"cached_{modality}"]: + setattr(self, f"num_features_{modality}", locals()[f"num_features_{modality}"]) + logging.info(f"Using cached {modality} representation with {getattr(self, f'num_features_{modality}')} embedding dim.") + + ### Initialize modality enoders ### + for modality in self.modalities: + modality_model = locals()[f"{modality}_model"] + modality_precision = locals()[f"{modality}_precision"] + modality_kwargs = locals()[f"{modality}_encoder_kwargs"] + modality_kwargs['load_ln_path'] = locals()[f"pretrained_shared_qformer"] if shared_qformer else \ + locals()[f"pretrained_{modality}_qformer"] + setattr(self, f"projection_only_{modality}", locals()[f"projection_only_{modality}"]) + setattr(self, f"projection_path_{modality}", locals()[f"projection_path_{modality}"]) + modality_kwargs['load_ln_type'] = locals()[f"load_ln_type_{modality}"] + if self.projection_only or locals()[f"projection_only_{modality}"]: + modality_kwargs['load_ln_path'] = getattr(self, f"projection_path_{modality}") + modality_kwargs['load_ln_type'] = modality + setattr(self, f"load_ln_type_{modality}", locals()[f"load_ln_type_{modality}"]) + setattr(self, f"pretrained_{modality}_qformer", locals()[f"pretrained_{modality}_qformer"]) + modality_encoder, modality_ln = getattr(self, f"init_{modality}_encoder")( + modality_model, + precision=modality_precision, + **modality_kwargs + ) + + freeze_modality = locals()[f"freeze_{modality}"] + cached_modality = locals()[f"cached_{modality}"] + if cached_modality: + setattr(self, f"{modality}_encoder", modality_encoder) + setattr(self, f"{modality}_ln", modality_ln) + continue + if freeze_modality: + for name, param in modality_encoder.named_parameters(): + param.requires_grad = False + modality_encoder = modality_encoder.eval() + modality_encoder.train = disabled_train + logging.info(f"freeze {modality} encoder") + + setattr(self, f"{modality}_encoder", modality_encoder) + setattr(self, f"{modality}_ln", modality_ln) + + ##### Init QFormers #### + self.tokenizer = self.init_tokenizer(truncation_side="left") # 30523 tokens. + self.num_query_token = num_query_token + if self.shared_qformer: + logging.info(f"Initializing shared QFormer with {shared_qformer_num_features} \ + number of features and query tokens of length {num_query_token}") + setattr(self, f"pretrained_shared_qformer", pretrained_shared_qformer) + setattr(self, f"load_qformer_type_shared", load_qformer_type_shared) + self.shared_Qformer, self.shared_query_tokens = self.init_Qformer( + num_query_token, + shared_qformer_num_features, + pretrained_qformer=pretrained_shared_qformer, + load_attention=load_attention_shared_qformer, + load_qformer_type=load_qformer_type_shared + ) + + if not qformer_text_input: + self.shared_Qformer.bert.embeddings.word_embeddings = None + self.shared_Qformer.bert.embeddings.position_embeddings = None + for layer in self.shared_Qformer.bert.encoder.layer: + layer.output = None + layer.intermediate = None + else: + self.shared_Qformer.resize_token_embeddings(len(self.tokenizer)) + self.shared_Qformer.cls = None + + # Map shared Qformer by reference to all modalities. + for modality in self.modalities: + setattr(self, f"{modality}_Qformer", self.shared_Qformer) + setattr(self, f"{modality}_query_tokens", self.shared_query_tokens) + encoder_proj_type=locals()[f"encoder_projection_type_{modality}"] + setattr(self, f"encoder_projection_type_{modality}", locals()[f"encoder_projection_type_{modality}"]) + modality_encoder_features = getattr(self, f"{modality}_encoder").num_features + setattr(self, f"{modality}_encoder_projection", self.init_encoder_projection(modality_encoder_features, shared_qformer_num_features, pretrained_shared_qformer, encoder_proj_type)) + else: + for modality in self.modalities: + if getattr(self,f"cached_{modality}"): + modality_num_features = locals()[f"num_features_{modality}"] + else: + modality_num_features = getattr(self, f"{modality}_encoder").num_features + + setattr(self, f"pretrained_{modality}_qformer", locals()[f"pretrained_{modality}_qformer"]) + setattr(self, f"load_qformer_type_{modality}", locals()[f"load_qformer_type_{modality}"]) + + + setattr(self, f"projection_only_{modality}", locals()[f"projection_only_{modality}"]) + setattr(self, f"projection_path_{modality}", locals()[f"projection_path_{modality}"]) + + if self.projection_only or locals()[f"projection_only_{modality}"]: + logging.info(f"Initializing {modality} projection") + setattr(self, f"pretrained_{modality}_qformer", False) + if modality == 'audio' and proj_dim == 1: + modality_num_features *= 256 # hack to get full beats embedding. define better. + modality_projection = self.init_vicuna_projection( + modality_num_features, + num_query_token*proj_dim, + load_projection_path=getattr(self, f"projection_path_{modality}"), + load_projection_type=modality, + projection_key=f"{modality}_projection" + ) + setattr(self, f"{modality}_projection", modality_projection) + else: + logging.info(f"Initializing {modality} QFormer and query tokens of length {num_query_token}") + modality_qformer, modality_query_tokens = self.init_Qformer( + num_query_token, + modality_num_features, + pretrained_qformer=locals()[f"pretrained_{modality}_qformer"], + load_attention=locals()[f"load_attention_{modality}_qformer"], + load_qformer_type=locals()[f"load_qformer_type_{modality}"] + ) + + if not qformer_text_input: + modality_qformer.bert.embeddings.word_embeddings = None + modality_qformer.bert.embeddings.position_embeddings = None + for layer in modality_qformer.bert.encoder.layer: + layer.output = None + layer.intermediate = None + else: + modality_qformer.resize_token_embeddings(len(self.tokenizer)) + modality_qformer.cls = None + setattr(self, f"{modality}_Qformer", modality_qformer) + setattr(self, f"{modality}_query_tokens", modality_query_tokens) + + ### Set up LLM ### + logging.info(f"Setting up llm model {llm_model}") + self.lora = lora + print(f"Lora is set to {self.lora}") + self.llm_tokenizer = LlamaTokenizer.from_pretrained(llm_model, use_fast=False, truncation_side="left") + self.llm_tokenizer.add_special_tokens({'pad_token': '[PAD]'}) + self.llm_tokenizer.add_special_tokens({'bos_token': ''}) + self.llm_tokenizer.add_special_tokens({'eos_token': ''}) + self.llm_tokenizer.add_special_tokens({'unk_token': ''}) + if self.lora: + # https://github.com/lxe/llama-peft-tuner/blob/main/finetune_peft.py + self.llm_model = LlamaForCausalLM.from_pretrained( + llm_model, + load_in_8bit=True, + torch_dtype=torch.float16 + ) + self.llm_model.resize_token_embeddings(len(self.llm_tokenizer)) + self.peft_config = LoraConfig( + task_type=TaskType.CAUSAL_LM, + r=8, + lora_alpha=32, lora_dropout=0.1, + target_modules=['q_proj', 'v_proj'] + ) + self.llm_model.gradient_checkpointing_enable() + self.llm_model.enable_input_require_grads() + self.llm_model.lm_head = CastOutputToFloat(self.llm_model.lm_head) + self.llm_model.config.use_cache = False # silence the warnings. Please re-enable for inference! + self.llm_hidden_size = self.llm_model.config.hidden_size + self.llm_model = get_peft_model(self.llm_model, self.peft_config) + self.lora_model = lora_model + + else: + self.llm_model = LlamaForCausalLM.from_pretrained( + llm_model, torch_dtype=torch.float16 + ) + self.llm_model.resize_token_embeddings(len(self.llm_tokenizer)) + self.llm_hidden_size = self.llm_model.config.hidden_size + + for name, param in self.llm_model.named_parameters(): + param.requires_grad = False + + # Load LM projections + if self.shared_qformer and load_projection_shared: + qformer = getattr(self, f"shared_Qformer") + load_projection_path = locals()[f"load_projection_shared"] + if load_projection_path: + load_projection_path = locals()[f"pretrained_shared_qformer"] + load_projection_type = locals()[f"load_projection_type_shared"] + setattr(self, f"load_projection_shared", load_projection_path) + setattr(self, f"load_projection_type_shared", locals()[f"load_projection_type_shared"]) + logging.info(f"Loading shared Qformer projection.") + proj = self.init_vicuna_projection( + qformer.config.hidden_size, + self.llm_hidden_size, + load_projection_path=load_projection_path + ) + # Map projection by reference to all modalities. + for modality in self.modalities: + setattr(self, f"{modality}_llm_proj", proj) + else: + for modality in self.modalities: + load_projection_path = locals()[f"load_projection_{modality}"] + if load_projection_path == True: + load_projection_path = locals()[f"pretrained_{modality}_qformer"] + load_projection_type = locals()[f"load_projection_type_{modality}"] + setattr(self, f"load_projection_{modality}", load_projection_path) + setattr(self, f"load_projection_type_{modality}", load_projection_type) + if self.projection_only or getattr(self, f"projection_only_{modality}"): + proj = self.init_vicuna_projection( + self.num_query_token if proj_dim==1 else proj_dim, + self.num_query_token*self.llm_hidden_size if proj_dim==1 else self.llm_hidden_size, + load_projection_path=getattr(self, f"projection_path_{modality}"), + load_projection_type=load_projection_type, + ) + else: + qformer = getattr(self, f"{modality}_Qformer") + proj = self.init_vicuna_projection( + qformer.config.hidden_size, + self.llm_hidden_size, + load_projection_path=load_projection_path, + load_projection_type=load_projection_type + ) + setattr(self, f"{modality}_llm_proj", proj) + + self.clean_tokenization = clean_tokenization + logging.info(f"Clean tokenization is set to {self.clean_tokenization}") + + self.max_txt_len = max_txt_len + self.max_output_txt_len = max_output_txt_len + self.prompt = prompt + + self.prefix = prefix + if self.prefix: + self.tokenized_prefix = self.llm_tokenizer(self.prefix, return_tensors="pt") + + self.postfix = postfix + if type(self.postfix) != str or not self.postfix: + self.postfix = "" + logging.info(f"Using prefix set to {self.prefix} and postfix set to {self.postfix}.") + + self.use_cues = use_cues + logging.info(f"Using cues set to {self.use_cues}.") + if self.use_cues: + logging.info(f"Modality to cue {Blip2VicunaXInstruct.MODALITY_TO_CUE}") + self.tokenized_cue = {} + self.emb_cue = {} + self.att_cue = {} + for modality in self.modalities: + if self.clean_tokenization: + Blip2VicunaXInstruct.MODALITY_TO_CUE[modality] = Blip2VicunaXInstruct.MODALITY_TO_CUE[modality].lstrip() + self.tokenized_cue[modality] = self.llm_tokenizer(Blip2VicunaXInstruct.MODALITY_TO_CUE[modality], return_tensors="pt") + self.emb_cue[modality] = self.llm_model.get_input_embeddings()(self.tokenized_cue[modality].input_ids.to(self.device)) + self.att_cue[modality] = self.tokenized_cue[modality].attention_mask.to(self.device) + + + ## generation parameters + self.use_caption=use_caption + self.use_describe=use_describe + self.predict_with_gen=predict_with_gen + self.format_candidates_prompt=format_candidates_prompt + self.special_qformer_input_prompt=special_qformer_input_prompt + self.enumerate_inputs=enumerate_inputs + self.add_space=add_space + self.remove_start=remove_start + if self.projection_only: + self.qformer_text_input=False + + def concat_text_input_output(self, input_ids, input_atts, output_ids, output_atts): + input_part_targets_len = [] + llm_tokens = {"input_ids": [], "attention_mask": []} + for i in range(input_ids.size(0)): + this_input_ones = input_atts[i].sum() + input_part_targets_len.append(this_input_ones) + llm_tokens['input_ids'].append( + torch.cat([ + input_ids[i][:this_input_ones], + output_ids[i][1:], + input_ids[i][this_input_ones:] + ]) + ) + llm_tokens['attention_mask'].append( + torch.cat([ + input_atts[i][:this_input_ones], + output_atts[i][1:], + input_atts[i][this_input_ones:] + ]) + ) + llm_tokens['input_ids'] = torch.stack(llm_tokens['input_ids']) + llm_tokens['attention_mask'] = torch.stack(llm_tokens['attention_mask']) + return llm_tokens, input_part_targets_len + + def forward(self, samples): + # print('-----------------') + # print(samples["text_input"]) + # print(samples["text_output"]) + # print('-----------------') + if samples == None or samples == {} or not any([modality in samples for modality in self.modalities]): + return {"loss": torch.tensor(0.0)} + + random.shuffle(self.modalities) + + curr_modalities = [modality for modality in self.modalities if modality in samples] + excess_modalities = [modality for modality in self.modalities if modality not in curr_modalities] + # disable gradient in excess modalities + dummy_loss = 0. + for modality in excess_modalities: + if self.shared_qformer: + for name, param in getattr(self, f"{modality}_encoder_projection").named_parameters(): + # param.requires_grad = False + dummy_loss += param.sum()*0. + for name, param in getattr(self,f"{modality}_ln").named_parameters(): + # param.requires_grad = False + dummy_loss += param.sum()*0. + dummy_loss += getattr(self, f"{modality}_query_tokens").sum()*0. + for name, param in getattr(self, f'{modality}_Qformer').named_parameters(): + # param.requires_grad = False + dummy_loss += param.sum()*0. + for name, param in getattr(self, f'{modality}_llm_proj').named_parameters(): + # param.requires_grad = False + dummy_loss += param.sum()*0. + + embeds = {} + query_tokens = {} + data_atts = {} + for modality in curr_modalities: + data = samples[modality] + ln = getattr(self, f"{modality}_ln") + encoder = getattr(self, f"{modality}_encoder") + if modality == "video" and self.video_enc_name in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(2)): + this_frame = data[:,:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][-1] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + # B, Token Size, LM EMB + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(data.size(0), -1, -1) + + elif modality == 'audio' and self.audio_enc_name in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(1)): + this_frame = data[:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][j] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + # B, Token Size, LM EMB + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(data.size(0), -1, -1) + else: + with self.maybe_autocast(): + embeds[modality] = ln(encoder(data)) + if len(embeds[modality].size()) == 2: + # B, C, D + embeds[modality] = embeds[modality].unsqueeze(1) + # B, C + if self.shared_qformer: + embeds[modality] = getattr(self, f"{modality}_encoder_projection")(embeds[modality]) + data_atts[modality] = torch.ones(embeds[modality].size()[:-1], dtype=torch.long).to(self.device) + + # B, Token Size, LM EMB + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(embeds[modality].shape[0], -1, -1) + + query_outputs = {} + if self.qformer_text_input: + text_Qformer = self.tokenizer( + samples["text_input"] if not self.special_qformer_input_prompt else self.special_qformer_input_prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + + + Qformer_atts = {} + query_atts = {} + + for modality in curr_modalities: + # B, Token Size + query_atts[modality] = torch.ones(query_tokens[modality].size()[:-1], dtype=torch.long).to(self.device) + # B, Token Size + Inp Size + Qformer_atts[modality] = torch.cat([query_atts[modality],text_Qformer.attention_mask],dim=1) + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num)]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num, self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids.repeat(num, 1), + attention_mask=Qformer_atts[modality].repeat(num, 1), + query_embeds=query_tokens[modality].repeat(num, 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids, + attention_mask=Qformer_atts[modality], + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + else: + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num)]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num, self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality].repeat(num, 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + bs = embeds[modality].shape[0] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), # pc data is floa16. + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + + inputs_llm = {} + atts_llm = {} + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + # num*bs, num query tokens, llm emb size + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].unsqueeze(1)).reshape(bs*num, self.num_query_token, -1) + else: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality]).reshape(bs*num, self.num_query_token, -1) + inputs_llm[modality] = inputs_llm[modality].reshape(bs, num, self.num_query_token, -1).view(bs, num*self.num_query_token, -1) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + continue + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].last_hidden_state[:,:query_tokens[modality].size(1),:]) + # bs, num, num query tokens, llm emb size -> bs, num*num query tokens, llm emb size + inputs_llm[modality] = inputs_llm[modality].reshape(bs, num, self.num_query_token, -1).view(bs, num*self.num_query_token, -1) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim == 1: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].mean(-1)).reshape(bs, self.num_query_token, -1) + else: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].reshape(bs, self.num_query_token, -1)) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + continue + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].last_hidden_state[:,:query_tokens[modality].size(1),:]) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + + self.llm_tokenizer.padding_side = "right" + self.llm_tokenizer.truncation_side = 'left' + + if self.llm_text_input: + text_input_tokens = self.llm_tokenizer( + [f"{t}{self.postfix}" for t in samples['text_input']] if self.postfix else samples['text_input'], + return_tensors="pt", + padding="longest", + truncation=True, + max_length=self.max_txt_len, + add_special_tokens= not self.clean_tokenization + ).to(self.device) + + self.llm_tokenizer.truncation_side = 'right' + text_output_tokens = self.llm_tokenizer( + [t + self.llm_tokenizer.eos_token for t in samples['text_output']], + return_tensors="pt", + padding="longest", + truncation=True, + max_length=self.max_output_txt_len, + ).to(self.device) + + if self.llm_text_input: + llm_tokens, input_part_targets_len = self.concat_text_input_output( + text_input_tokens.input_ids, + text_input_tokens.attention_mask, + text_output_tokens.input_ids, + text_output_tokens.attention_mask, + ) + else: + llm_tokens = text_output_tokens + input_part_targets_len = [0 for _ in range(llm_tokens['input_ids'].shape[0])] # input length is 0 + + + # do not apply loss to the padding + targets = llm_tokens['input_ids'].masked_fill( + llm_tokens['input_ids'] == self.llm_tokenizer.pad_token_id, -100 + ) + + # do not apply loss to the text input (i.e., instruction) + for i, l in enumerate(input_part_targets_len): + targets[i][:l] = -100 + + inputs_embeds = self.llm_model.get_input_embeddings()(llm_tokens['input_ids']) + + bs = inputs_embeds.shape[0] + + att_list = [] + inp_list = [] + + if self.prefix: + att_list = [self.tokenized_prefix.attention_mask.repeat(bs, 1).to(self.device)] + inp_list = [self.llm_model.get_input_embeddings()(self.tokenized_prefix.input_ids.to(self.device)).repeat(bs, 1, 1)] + for modality in curr_modalities: + if self.use_cues: + if self.prefix and self.clean_tokenization: + att_list.extend([self.att_cue[modality][:,1:].repeat(bs, 1).to(self.device), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality][:,1:].repeat(bs, 1, 1).to(self.device), inputs_llm[modality]]) + att_list.extend([self.att_cue[modality].repeat(bs, 1).to(self.device), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality].repeat(bs, 1, 1).to(self.device), inputs_llm[modality]]) + else: + att_list.extend([atts_llm[modality]]) + inp_list.extend([inputs_llm[modality]]) + + # do not apply loss to the query tokens + empty_targets = ( + torch.ones(torch.cat(att_list, dim=1).size(), dtype=torch.long).to(self.device).fill_(-100) + ) + + # append llm prompt + output to queries + att_list.append(llm_tokens['attention_mask']) + inp_list.append(inputs_embeds) + + inputs_embeds = torch.cat(inp_list, dim=1) + attention_mask = torch.cat(att_list, dim=1) + targets = torch.cat([empty_targets, targets], dim=1) + + + + with self.maybe_autocast(): + outputs = self.llm_model( + inputs_embeds=inputs_embeds, + attention_mask=attention_mask, + return_dict=True, + labels=targets, + ) + + loss = dummy_loss+outputs.loss + + + + return {"loss": loss} + + + def init_image_encoder(self, + model_name, + precision, + **kwargs): + + load_ln_path = kwargs['load_ln_path'] + del kwargs['load_ln_path'] + load_ln_type=kwargs['load_ln_type'] + del kwargs['load_ln_type'] + + encoder, _ = super().init_vision_encoder(model_name, kwargs['image_size'], kwargs['drop_path_rate'], kwargs['use_grad_checkpoint'], precision) + ln = self.init_ln(encoder.num_features, load_ln_path=load_ln_path, load_ln_type=load_ln_type) + return encoder, ln + + def init_pc_encoder( + self, model_name, precision, **kwargs + ): + assert model_name in [ + "ulip1_pointbert", + "ulip2_pointbert", + "ulip_shapenet", + "ulip_objaverse", + "objaverse_shapenet_k_1", + "ulip2_scaledup" + "" + ], "pc model must be in [ulip1_pointbert,ulip2_pointbert]" + + load_ln_path = kwargs['load_ln_path'] + del kwargs['load_ln_path'] + load_ln_type=kwargs['load_ln_type'] + del kwargs['load_ln_type'] + + if model_name == "ulip2_pointbert": + pc_encoder = ULIP_PointBERT(ulip_v=2) + elif model_name == "ulip_shapenet": + pc_encoder = ULIP_PointBERT(ulip_v="shapenet") + elif model_name == "ulip_objaverse": + pc_encoder = ULIP_PointBERT(ulip_v="objaverse_k_1") + elif model_name == "objaverse_shapenet_k_1": + pc_encoder = ULIP_PointBERT(ulip_v="objaverse_shapenet_k_1") + elif model_name == "ulip2_scaledup": + pc_encoder = ULIP_PointBERT(ulip_v="ulip2_scaledup") + else: + pc_encoder = ULIP_PointBERT(ulip_v=1) + ln_pc = self.init_ln(pc_encoder.num_features, load_ln_path=load_ln_path, load_ln_type=load_ln_type) + self.pc_enc_name = model_name + return pc_encoder, ln_pc + + + def init_video_encoder( + self, model_name, precision, **kwargs + ): + assert model_name in [ + "eva_clip_g", + "eva2_clip_L", + "clip_L", + ], "video_model must be in [eva_clip_g, eva2_clip_L, clip_L]" + + if model_name in ["eva_clip_g","eva2_clip_L","clip_L",]: + video_encoder, ln_video = self.init_image_encoder( + model_name, precision=precision, **kwargs + ) + self.video_enc_name = model_name + return video_encoder, ln_video + + def init_audio_encoder( + self, model_name, precision, **kwargs + ): + assert model_name in [ + 'beats' + ], "audio model must be in [beats]" + + load_ln_path = kwargs['load_ln_path'] + del kwargs['load_ln_path'] + load_ln_type=kwargs['load_ln_type'] + del kwargs['load_ln_type'] + if "beats" in model_name: + from lavis.models.beats_encoder import BeatsEncoder + if self.cached_audio: + audio_encoder = lambda x: x + ln_audio = self.init_ln(768, load_ln_path=load_ln_path, load_ln_type=load_ln_type) + else: + audio_encoder = BeatsEncoder(**kwargs) + if not self.cached_audio: + ln_audio = self.init_ln(audio_encoder.num_features, load_ln_path=load_ln_path, load_ln_type=load_ln_type) + self.audio_enc_name = model_name + return audio_encoder, ln_audio + + @torch.no_grad() + def get_query_outputs( + self, + samples + ): + if samples == None or samples == {}: + return + + curr_modalities = [modality for modality in self.modalities if modality in samples] + if len(curr_modalities) == 0: + print("Model modalities do not match sample modalities.") + return + + # get batch size + bs = None + for modality in curr_modalities: + data = samples[modality] + bs = data.size(0) + break + + if "prompt" in samples.keys(): + prompt = samples["prompt"] + elif "text_input" in samples.keys(): + prompt = samples["text_input"] + else: + prompt = self.prompt + + if isinstance(prompt, str): + prompt = [prompt] * bs + else: + assert len(prompt) == bs, "The number of prompts must be equal to the batch size." + + embeds = {} + query_tokens = {} + data_atts = {} + + for modality in curr_modalities: + data = samples[modality] + ln = getattr(self, f"{modality}_ln") + encoder = getattr(self, f"{modality}_encoder") + if modality == "video" and self.video_enc_name in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(2)): + this_frame = data[:,:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][-1] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + # B, Token Size, LM EMB + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(data.size(0), -1, -1) + + elif modality == 'audio' and self.audio_enc_name in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(1)): + this_frame = data[:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][j] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + # B, Token Size, LM EMB + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(data.size(0), -1, -1) + else: + with self.maybe_autocast(): + embeds[modality] = ln(encoder(data)) + if len(embeds[modality].size()) == 2: + # B, C, D + embeds[modality] = embeds[modality].unsqueeze(1) + # B, C + if self.shared_qformer: + embeds[modality] = getattr(self, f"{modality}_encoder_projection")(embeds[modality]) + + data_atts[modality] = torch.ones(embeds[modality].size()[:-1], dtype=torch.long).to(self.device) + + # B, Token Size, LM EMB + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(embeds[modality].shape[0], -1, -1) + + query_outputs = {} + if self.qformer_text_input: + text_Qformer = self.tokenizer( + prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + + + Qformer_atts = {} + query_atts = {} + num = {} + for modality in curr_modalities: + # B, Token Size + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_atts[modality] = torch.ones(query_tokens[modality].size()[:-1], dtype=torch.long).to(self.device) + # B, Token Size + Inp Size + Qformer_atts[modality] = torch.cat([query_atts[modality],text_Qformer.attention_mask],dim=1) + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num[modality] = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num[modality])]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num[modality], self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids.repeat(num[modality], 1), + attention_mask=Qformer_atts[modality].repeat(num[modality], 1), + query_embeds=query_tokens[modality].repeat(num[modality], 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids, + attention_mask=Qformer_atts[modality], + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + else: + num = {} + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num[modality] = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num[modality])]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num, self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality].repeat(num[modality], 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), # pc data is floa16. + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[f'llm_proj_{modality}'] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].unsqueeze(1)).reshape(bs*num, self.num_query_token, -1) + else: + query_outputs[f'llm_proj_{modality}'] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality]).reshape(bs*num, self.num_query_token, -1) + query_outputs[f'llm_proj_{modality}'] = query_outputs[f'llm_proj_{modality}'].reshape(bs, num[modality], self.num_query_token, -1).contiguous().view(bs, num[modality]*self.num_query_token, -1) + query_outputs[modality] = query_outputs[modality].view(bs, num[modality]*self.num_query_token, -1) + else: + query_outputs[f'llm_proj_{modality}'] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality]['last_hidden_state'][:,:query_tokens[modality].size(1),:]).contiguous().view(bs, num[modality]*self.num_query_token, -1) + query_outputs[modality] = query_outputs[modality]['last_hidden_state'][:,:query_tokens[modality].size(1),:].contiguous().view(bs, num[modality]*self.num_query_token, -1) + + + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim == 1: + query_outputs[f'llm_proj_{modality}'] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].mean(-1)).reshape(bs, self.num_query_token, -1) + else: + query_outputs[f'llm_proj_{modality}']= getattr(self, f"{modality}_llm_proj")(query_outputs[modality].reshape(bs, self.num_query_token, -1)) + else: + query_outputs[modality] = query_outputs[modality].last_hidden_state[:,:query_tokens[modality].size(1),:] + query_outputs[f'llm_proj_{modality}'] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality]) + + for modality in curr_modalities: + query_outputs[f'embeds_{modality}'] = embeds[modality] + return query_outputs + + @torch.no_grad() + def generate( + self, + samples, + use_nucleus_sampling=False, + num_beams=5, + max_length=256, + min_length=1, + top_p=0.9, + repetition_penalty=1.5, + length_penalty=1, + num_captions=1, + temperature=1, + special_qformer_input_prompt=False + ): + self.llm_tokenizer.padding_side = "left" + + if samples == None or samples == {}: + return + + if 'modalities' in samples: + curr_modalities = samples['modalities'][0] if isinstance(samples['modalities'][0], list) else samples['modalities'] + elif self.joint_video_audio: + curr_modalities = ["video", "audio"] + else: + curr_modalities = [modality for modality in self.modalities if modality in samples] + + + if len(curr_modalities) == 0: + print("Model modalities do not match sample modalities.") + return + + # get batch size + bs = None + for modality in curr_modalities: + data = samples[modality] + if isinstance(data, torch.Tensor): + bs = data.size(0) + else: + bs = len(data) + break + + if "prompt" in samples.keys(): + prompt = samples["prompt"] + elif self.prompt and 'text_input' in samples and '{}' in self.prompt: + prompt = [self.prompt.format(t) for t in samples["text_input"]] + elif "text_input" in samples.keys(): + prompt = samples["text_input"] + else: + prompt = self.prompt + + if isinstance(prompt, str): + prompt = [prompt] * bs + else: + assert len(prompt) == bs, "The number of prompts must be equal to the batch size." + + # For TextCaps + if "ocr_tokens" in samples.keys() and "{}" in prompt[0]: + prompt = [p.format(', '.join(samples['ocr_tokens'][i][:30])) for i, p in enumerate(prompt)] + + + if 'discrn' in samples and self.use_caption: ## discriminatory reasoning + if self.postfix: + prompt = [f'{t}{self.postfix}' for t in prompt] + if self.enumerate_inputs: + prompt = [f'{self.prefix}(a){Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][0]] if self.use_cues else " "}{samples["baseline_captions"][i][0]} (b){Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][1]] if self.use_cues else " "}{samples["baseline_captions"][i][1]} {prompt[i]}' for i in range(bs)] + else: + prompt = [f'{self.prefix}{Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][0]]}{samples["baseline_captions"][i][0] if self.use_cues else " "}{Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][1]] if self.use_cues else " "}{samples["baseline_captions"][i][1]} {prompt[i]}' for i in range(bs)] + llm_tokens = self.llm_tokenizer( + prompt, + padding="longest", + return_tensors="pt" + ).to(self.device) + inputs_embeds = self.llm_model.get_input_embeddings()(llm_tokens.input_ids) + + with self.maybe_autocast(): + outputs = self.llm_model.generate( + inputs_embeds=inputs_embeds, + attention_mask=llm_tokens.attention_mask, + do_sample=use_nucleus_sampling, + top_p=top_p, + temperature=temperature, + num_beams=num_beams, + max_length=max_length, + min_length=min_length, + repetition_penalty=repetition_penalty, + length_penalty=length_penalty, + num_return_sequences=num_captions, + ) + + outputs[outputs == 0] = 2 # convert output id 0 to 2 (eos_token_id) + output_text = self.llm_tokenizer.batch_decode(outputs, skip_special_tokens=True) + output_text = [o.strip() for o in output_text] + # print(output) + return output_text + + query_tokens = {} + for modality in curr_modalities: + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(bs, -1, -1) + if self.qformer_text_input: + if self.special_qformer_input_prompt or special_qformer_input_prompt: + qformer_prompt = special_qformer_input_prompt if special_qformer_input_prompt else self.special_qformer_input_prompt + qformer_prompt = [qformer_prompt] * len(prompt) + if "text_input" in samples.keys(): + if type(samples["text_input"][0]) == list: + qformer_prompt = [qformer_prompt[i].format(*samples["text_input"][i]) for i in range(len(qformer_prompt))] + else: + qformer_prompt = [qformer_prompt[i].format(samples["text_input"][i]) for i in range(len(qformer_prompt))] + text_Qformer = self.tokenizer( + qformer_prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + + elif self.use_describe: + modality2prompt = { + "video": "a short description of the video", + "audio": "an audio that shows", + "image": "a short image caption", + "pc": "a 3d model of" + } + qformer_prompt = [modality2prompt[modality] for _ in samples['text_input']] + + text_Qformer = self.tokenizer( + qformer_prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + + else: + text_Qformer = self.tokenizer( + prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + + Qformer_atts = {} + query_atts = {} + + for modality in curr_modalities: + if not getattr(self, f"projection_only_{modality}"): + # B, Token Size + query_atts[modality] = torch.ones(query_tokens[modality].size()[:-1], dtype=torch.long).to(self.device) + # B, Token Size + Inp Size + Qformer_atts[modality] = torch.cat([query_atts[modality],text_Qformer.attention_mask],dim=1) + + embeds = {} + data_atts = {} + for modality in curr_modalities: + data = samples[modality] + ln = getattr(self, f"{modality}_ln") + encoder = getattr(self, f"{modality}_encoder") + if modality == "video" and "clip" in self.video_enc_name: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(2)): + this_frame = data[:,:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][j] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + elif modality == 'audio' and 'beats' in self.audio_enc_name: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(1)): + this_frame = data[:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][j] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + else: + with self.maybe_autocast(): + embeds[modality] = ln(encoder(data)) + if len(embeds[modality].size()) == 2: + embeds[modality] = embeds[modality].unsqueeze(1) + if self.shared_qformer: + with self.maybe_autocast(): + embeds[modality] = getattr(self, f"{modality}_encoder_projection")(embeds[modality]) + data_atts[modality] = torch.ones(embeds[modality].size()[:-1], dtype=torch.long).to(self.device) + + query_outputs = {} + num = {} + if self.qformer_text_input: + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num[modality] = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num[modality])]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num[modality], self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids.repeat(num[modality], 1), + attention_mask=Qformer_atts[modality].repeat(num[modality], 1), + query_embeds=query_tokens[modality].repeat(num[modality], 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + bs = embeds[modality].shape[0] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids, + attention_mask=Qformer_atts[modality], + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + else: + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num[modality] = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num[modality])]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num[modality], self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality].repeat(num[modality], 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + bs = embeds[modality].shape[0] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + with self.maybe_autocast(): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + + inputs_llm = {} + atts_llm = {} + enumeration = {} + + for i,modality in enumerate(curr_modalities): + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].unsqueeze(1)).reshape(bs*num[modality], self.num_query_token, -1) + else: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].reshape(bs*num, self.num_query_token, -1)) + inputs_llm[modality] = inputs_llm[modality].reshape(bs, num[modality], self.num_query_token, -1).view(bs, num[modality]*self.num_query_token, -1) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + continue + # num*bs, num query tokens, llm emb size + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].last_hidden_state[:,:query_tokens[modality].size(1),:]) + # bs, num, num query tokens, llm emb size -> bs, num*num query tokens, llm emb size + inputs_llm[modality] = inputs_llm[modality].reshape(bs, num[modality], self.num_query_token, -1).view(bs, num[modality]*self.num_query_token, -1) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim == 1: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].mean(-1)).reshape(bs, self.num_query_token, -1) + else: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].reshape(bs, self.num_query_token, -1)) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + continue + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality]['last_hidden_state'][:,:query_tokens[modality].size(1),:]) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + if self.enumerate_inputs: + enumeration[modality] = self.llm_tokenizer( + [f"{'' if i == 0 else ' '}({chr(97+i)}) " for _ in prompt], + return_tensors="pt", + add_special_tokens=False if (i!= 0 or self.prefix) else True + ).to(self.device) + + ## remove trailing whitespace + prompt = [p.strip() for p in prompt] + + if 'dialog' in samples: + llm_tokens = self.llm_tokenizer( + [f"{d} {p}" if d else p for d, p in zip(samples['dialog'], prompt)], + padding="longest", + return_tensors="pt", + add_special_tokens= not self.clean_tokenization + ).to(self.device) + else: + llm_tokens = self.llm_tokenizer( + [f"{p}{self.postfix}" for p in prompt] if self.postfix else prompt, + padding="longest", + return_tensors="pt", + add_special_tokens= not self.clean_tokenization + ).to(self.device) + bs = llm_tokens.input_ids.shape[0] + + att_list = [] + inp_list = [] + if self.prefix: + att_list = [self.tokenized_prefix.attention_mask.repeat(bs, 1).to(self.device)] + inp_list = [self.llm_model.get_input_embeddings()(self.tokenized_prefix.input_ids.to(self.device)).repeat(bs, 1, 1)] + + if self.joint_video_audio: + for pos in range(num['video']): + if self.enumerate_inputs: + enumeration_pos = self.llm_tokenizer( + [f"{'' if pos == 0 else ' '}({chr(97+pos)}) " for _ in prompt], + return_tensors="pt", + add_special_tokens=False if (pos!= 0 or self.prefix) else True + ).to(self.device) + enumeration_inputs_llm = self.llm_model.get_input_embeddings()(enumeration_pos.input_ids) + enumeration_atts_llm = enumeration_pos.attention_mask.to(self.device) + inp_list.extend([enumeration_inputs_llm]) + att_list.extend([enumeration_atts_llm]) + if self.use_cues: + for modality in ['video', 'audio']: + if self.clean_tokenization: + if self.prefix or pos > 1 or self.enumerate_inputs or modality == 'audio': + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask[:,1:]).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality].view(bs, num[modality], self.num_query_token)[:, pos, :]]) + inp_list.extend([self.emb_cue[modality][:,1:].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality].view(bs, num[modality], self.num_query_token, -1)[:, pos, :, :]]) + continue + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality].view(bs, num[modality], self.num_query_token)[:, pos, :]]) + inp_list.extend([self.emb_cue[modality].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality].view(bs, num[modality], self.num_query_token, -1)[:, pos, :, :]]) + else: + att_list.extend([atts_llm[modality].view(bs, num[modality], self.num_query_token)[:, pos, :]]) + inp_list.extend([inputs_llm[modality].view(bs, num[modality], self.num_query_token, -1)[:, pos, :, :]]) + else: + for modality in curr_modalities: + if self.enumerate_inputs: + enumeration_inputs_llm = self.llm_model.get_input_embeddings()(enumeration[modality].input_ids.to(self.device)) + enumeration_atts_llm = enumeration[modality].attention_mask.to(self.device) + inp_list.extend([enumeration_inputs_llm]) + att_list.extend([enumeration_atts_llm]) + if self.use_cues: + if self.clean_tokenization or self.remove_start: + if (modality==curr_modalities[0] and not (self.prefix or self.enumerate_inputs)): + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality]]) + else: + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask[:,1:]).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality][:,1:].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality]]) + else: + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality]]) + + else: + att_list.extend([atts_llm[modality]]) + inp_list.extend([inputs_llm[modality]]) + + if self.add_space: + space_tok = self.llm_tokenizer( + [f" " for _ in prompt], + return_tensors="pt", + add_special_tokens=False + ) + space_inputs_llm = self.llm_model.get_input_embeddings()(space_tok.input_ids.to(self.device)) + space_atts_llm = space_tok.attention_mask.to(self.device) + inp_list.extend([space_inputs_llm]) + att_list.extend([space_atts_llm]) + + att_list.append(llm_tokens.attention_mask) + inputs_embeds = self.llm_model.get_input_embeddings()(llm_tokens.input_ids) + inp_list.append(inputs_embeds) + + attention_mask = torch.cat(att_list, dim=1) + inputs_embeds = torch.cat(inp_list, dim=1) + + + with self.maybe_autocast(): + outputs = self.llm_model.generate( + inputs_embeds=inputs_embeds, + attention_mask=attention_mask, + do_sample=use_nucleus_sampling, + top_p=top_p, + temperature=temperature, + num_beams=num_beams, + max_length=max_length, + min_length=min_length, + repetition_penalty=repetition_penalty, + length_penalty=length_penalty, + num_return_sequences=num_captions, + ) + outputs[outputs == 0] = 2 # convert output id 0 to 2 (eos_token_id) + output_text = self.llm_tokenizer.batch_decode(outputs, skip_special_tokens=True) + output_text = [o.strip() for o in output_text] + return output_text + + @torch.no_grad() + def predict_answers( + self, + samples, + num_beams=5, + inference_method="generate", + max_len=10, + min_len=1, + num_ans_candidates=128, + answer_list=None, + prompt="", + length_penalty=-1, + **kwargs + ): + if samples == None or samples == {}: + return None + + # get batch size + bs = None + if 'modalities' in samples: + curr_modalities = samples['modalities'][0] if isinstance(samples['modalities'][0], list) else samples['modalities'] + else: + curr_modalities = [modality for modality in self.modalities if modality in samples] + for modality in curr_modalities: + data = samples[modality] + if isinstance(data, torch.Tensor): + bs = data.size(0) + else: + bs = len(data) + break + + if "text_input" not in samples: + samples["text_input"] = self.prompt + if isinstance(samples["text_input"], str): + samples["text_input"] = [samples["text_input"]] * bs + text_input = samples['text_input'] + + if not prompt and self.prompt: + prompt=self.prompt + if prompt: + if prompt.count("{}") == 2: + if 'ocr_tokens' in samples: + text_input = [ + prompt.format(', '.join(samples['ocr_tokens'][i][:30]), samples["text_input"][i]) + for i in range(len(samples["text_input"]))] + elif 'choices' in samples: + text_input = [] + for i in range(len(samples["text_input"])): + this_choices = [f"({string.ascii_lowercase[j]}) {ch}" for j, ch in enumerate(samples["choices"][i])] + this_choices = " ".join(this_choices) + text_input.append(prompt.format(samples["text_input"][i], this_choices)) + else: + text_input = [prompt.format(question) for question in samples["text_input"]] + samples["prompt"] = text_input + + if 'discrn' in samples and self.use_caption: ## discriminatory reasoning + self.llm_tokenizer.padding_side = "left" + + text_input = samples['text_input'] if 'prompt' not in samples else samples['prompt'] + if self.postfix: + text_input = [f'{t}{self.postfix}' for t in text_input] + if self.enumerate_inputs: + prompt = [f'{self.prefix}(a){Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][0]] if self.use_cues else " "}{samples["baseline_captions"][i][0]} (b){Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][1]] if self.use_cues else " "}{samples["baseline_captions"][i][1]} {text_input[i]}' for i in range(bs)] + else: + prompt = [f'{self.prefix}{Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][0]]}{samples["baseline_captions"][i][0] if self.use_cues else " "}{Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][1]] if self.use_cues else " "}{samples["baseline_captions"][i][1]} {text_input[i]}' for i in range(bs)] + llm_tokens = self.llm_tokenizer( + prompt, + padding="longest", + return_tensors="pt" + ).to(self.device) + + with self.maybe_autocast(): + outputs = self.llm_model.generate( + inputs_embeds=self.llm_model.get_input_embeddings()(llm_tokens.input_ids), + attention_mask=llm_tokens.attention_mask, + do_sample=False, + num_beams=num_beams, + max_length=max_len, + min_length=min_len, + repetition_penalty=1.5, + # eos_token_id=self.eos_token_id, + length_penalty=length_penalty, + ) + outputs[outputs == 0] = 2 # convert output id 0 to 2 (eos_token_id) + output_text = self.llm_tokenizer.batch_decode(outputs, skip_special_tokens=True) + return output_text + + output_text = self.generate( + samples, + num_beams=num_beams, + max_length=max_len, + min_length=min_len, + length_penalty=length_penalty + ) + + if "apply_lemmatizer" in samples.keys() and samples["apply_lemmatizer"]: + output_text = self._lemmatize(output_text) + + #vizwiz + output_text = [o if o != "" else "unanswerable" for o in output_text] + + return output_text + + def predict( + self, + samples, + candidates=None, + n_segments=1, + max_length=10, + min_length=1, + length_penalty=-1., + special_qformer_input_prompt=False + ): + + self.llm_tokenizer.padding_side = "left" + + if candidates == None: + candidates = self.candidates + else: + self.candidates = candidates # for the output targets. + + if self.predict_with_gen: + output = self.generate(samples,max_length=max_length,min_length=min_length,length_penalty=length_penalty) + result = [] + for text in output: + text = BlipCaptionProcessor().pre_caption(text) + pred_label = "" # default to an empty string + for cand in candidates: + cand = BlipCaptionProcessor().pre_caption(cand) + if cand in text.split(" "): + pred_label = cand + break # stop as soon as we find a match + result.append(pred_label) + return {"predictions":result, "target": samples["label"]} + + + # If candidates is a list of lists, each sample has its candidates, then we need to iterate one by one + if type(candidates[0]) == list: + results = [] + + for i in range(samples["image"].size(0)): + this_sample = { + "image": samples["image"][i].unsqueeze(0), + "prompt": samples["prompt"], + } + + if "text_input" in samples.keys(): + this_sample["text_input"] = [samples["text_input"][i]] + + if 'context' in samples.keys(): + this_sample['context'] = [samples["context"][i]] + + if 'history' in samples.keys(): + this_sample['history'] = [samples["history"][i]] + + if 'caption' in samples.keys(): + this_sample['caption'] = [samples["caption"][i]] + + this_result = self._predict_class(this_sample, candidates[i], n_segments, special_qformer_input_prompt) + results.append(this_result) + + try: + results = torch.cat(results, dim=0) + except: + results = [res.tolist()[0] for res in results] + + return results + + return self._predict_class(samples, candidates, n_segments, special_qformer_input_prompt) + + def _predict_class( + self, + samples, + candidates, + n_segments=1, + special_qformer_input_prompt=False, + ): + if list(samples.keys()) == []: + return None + + if "prompt" in samples: + prompt = samples["prompt"] + else: + prompt = self.prompt + + candidates = [self.format_candidates_prompt.format(c) for c in candidates] + + if 'modalities' in samples: + curr_modalities = samples['modalities'][0] if isinstance(samples['modalities'][0], list) else samples['modalities'] + else: + curr_modalities = [modality for modality in self.modalities if modality in samples] + + # get batch size + for modality in curr_modalities: + data = samples[modality] + if isinstance(data, torch.Tensor): + bs = data.size(0) + else: + bs = len(data) + break + + if isinstance(prompt, str): + prompt = [prompt] * bs + else: + assert len(prompt) == bs, "The number of prompts must be equal to the batch size." + + if "text_input" in samples.keys(): + if type(samples["text_input"][0]) == list: + prompt = [prompt[i].format(*samples["text_input"][i]) for i in range(len(prompt))] + else: + prompt = [prompt[i].format(samples["text_input"][i]) for i in range(len(prompt))] + + # scienceqa + if 'context' in samples.keys() and samples['context'] != '': + prompt = [f'context: {samples["context"][i]}. {prompt[i]}' for i in range(len(prompt))] + + # visual dialog + if 'history' in samples.keys() and samples['history'][0] != '': + prompt = [f'dialog history: {samples["history"][i]}\n{prompt[i]}' for i in range(len(prompt))] + + if 'caption' in samples.keys() and samples['caption'][0] != '': + prompt = [f'This image has the caption "{samples["caption"][i]}". {prompt[i]}' for i in range(len(prompt))] + + + + if 'discrn' in samples and self.use_caption: ## discriminatory reasoning + if self.postfix: + prompt = [f'{p}{self.postfix}' for p in prompt] + if self.enumerate_inputs: + prompt = [f'{self.prefix}(a){Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][0]] if self.use_cues else " "}{samples["baseline_captions"][i][0]} (b){Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][1]] if self.use_cues else " "}{samples["baseline_captions"][i][1]} {prompt[i]}' for i in range(bs)] + else: + prompt = [f'{self.prefix}{Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][0]]}{samples["baseline_captions"][i][0] if self.use_cues else " "}{Blip2VicunaXInstruct.MODALITY_TO_CUE[samples["modalities"][i][1]] if self.use_cues else " "}{samples["baseline_captions"][i][1]} {prompt[i]}' for i in range(bs)] + text_input_tokens = self.llm_tokenizer( + prompt, + padding="longest", + return_tensors="pt" + ).to(self.device) + else: + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + query_tokens = {} + for modality in self.modalities: + if modality not in samples: + continue + query_tokens[modality] = getattr(self, f"{modality}_query_tokens").expand(bs, -1, -1) + + if self.qformer_text_input: + if self.special_qformer_input_prompt or special_qformer_input_prompt: + + qformer_prompt = special_qformer_input_prompt if special_qformer_input_prompt else self.special_qformer_input_prompt + qformer_prompt = [qformer_prompt] * len(prompt) + if "text_input" in samples.keys(): + if type(samples["text_input"][0]) == list: + qformer_prompt = [qformer_prompt[i].format(*samples["text_input"][i]) for i in range(len(qformer_prompt))] + else: + qformer_prompt = [qformer_prompt[i].format(samples["text_input"][i]) for i in range(len(qformer_prompt))] + + text_Qformer = self.tokenizer( + qformer_prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + elif self.use_describe: + modality2prompt = { + "video": "a short description of the video", + "audio": "an audio that shows", + "image": "a short image caption", + "pc": "a 3d model of" + } + qformer_prompt = [modality2prompt[modality] for _ in samples['text_input']] + + # qformer_prompt = [f'Describe the {Blip2VicunaXInstruct.MODALITY_TO_CUE[modality].replace(":", "").strip() if modality != "pc" else "3d model"}.' for _ in samples["text_input"]] + text_Qformer = self.tokenizer( + qformer_prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + else: + text_Qformer = self.tokenizer( + prompt, + padding='longest', + truncation=True, + max_length=self.max_txt_len, + return_tensors="pt", + ).to(self.device) + + Qformer_atts = {} + query_atts = {} + + for modality in curr_modalities: + # B, Token Size + query_atts[modality] = torch.ones(query_tokens[modality].size()[:-1], dtype=torch.long).to(self.device) + # B, Token Size + Inp Size + Qformer_atts[modality] = torch.cat([query_atts[modality],text_Qformer.attention_mask],dim=1) + + embeds = {} + data_atts = {} + for modality in curr_modalities: + data = samples[modality] + ln = getattr(self, f"{modality}_ln") + encoder = getattr(self, f"{modality}_encoder") + if modality == "video" and "clip" in self.video_enc_name: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(2)): + this_frame = data[:,:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][j] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + + elif modality == 'audio' and 'beats' in self.audio_enc_name: + embeds[modality] = [] + data_atts[modality] = [] + for j in range(data.size(1)): + this_frame = data[:,j,:,:] + with self.maybe_autocast(): + embeds[modality].append(ln(encoder(this_frame))) + if self.shared_qformer: + embeds[modality][j] = getattr(self, f"{modality}_encoder_projection")(embeds[modality][j]) + data_atts[modality].append(torch.ones(embeds[modality][j].size()[:-1], dtype=torch.long).to(self.device)) + else: + with self.maybe_autocast(): + embeds[modality] = ln(encoder(data)) + if len(embeds[modality].size()) == 2: + # B, C, D + embeds[modality] = embeds[modality].unsqueeze(1) + # B, C + if self.shared_qformer: + embeds[modality] = getattr(self, f"{modality}_encoder_projection")(embeds[modality]) + data_atts[modality] = torch.ones(embeds[modality].size()[:-1], dtype=torch.long).to(self.device) + + query_outputs = {} + num = {} + if self.qformer_text_input: + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num[modality] = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num[modality])]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num[modality], self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids.repeat(num[modality], 1), + attention_mask=Qformer_atts[modality].repeat(num[modality], 1), + query_embeds=query_tokens[modality].repeat(num[modality], 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + bs = embeds[modality].shape[0] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + text_Qformer.input_ids, + attention_mask=Qformer_atts[modality], + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + else: + for modality in curr_modalities: + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + num[modality] = len(embeds[modality]) + bs = embeds[modality][0].shape[0] + indices = [j_+r for r,j in enumerate([[i*bs for i in range(num[modality])]]*bs) for j_ in j] + reordered_embeds = torch.cat(embeds[modality])[indices] + reordered_atts = torch.cat(data_atts[modality])[indices] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.mean(1,keepdim=True)).view(bs*num[modality], self.num_query_token, -1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(reordered_embeds.view(reordered_embeds.shape[0],-1)) + continue + query_output = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality].repeat(num[modality], 1, 1), + encoder_hidden_states=reordered_embeds, + encoder_attention_mask=reordered_atts, + return_dict=True, + ) + query_outputs[modality] = query_output + else: + bs = embeds[modality].shape[0] + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality].mean(1, keepdim=True)).reshape(bs, self.num_query_token,-1) + else: + query_outputs[modality] = getattr(self, f"{modality}_projection")(embeds[modality]).reshape(bs, self.num_query_token,-1) + continue + query_outputs[modality] = getattr(self, f"{modality}_Qformer").bert( + query_embeds=query_tokens[modality], + encoder_hidden_states=embeds[modality].to(torch.float32), + encoder_attention_mask=data_atts[modality], + return_dict=True, + ) + + inputs_llm = {} + atts_llm = {} + enumeration = {} + # from pdb import set_trace; set_trace() + for i,modality in enumerate(curr_modalities): + if modality in Blip2VicunaXInstruct.SEQUENCIAL_MODALITIES and getattr(self, f'{modality}_enc_name') in Blip2VicunaXInstruct.SEQUENCIAL_ENCODERS: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim != 1: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].unsqueeze(1)).reshape(bs*num[modality], self.num_query_token, -1) + else: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].reshape(bs*num, self.num_query_token, -1)) + inputs_llm[modality] = inputs_llm[modality].reshape(bs, num[modality], self.num_query_token, -1).view(bs, num[modality]*self.num_query_token, -1) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + continue + # num*bs, num query tokens, llm emb size + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].last_hidden_state[:,:query_tokens[modality].size(1),:]) + # bs, num, num query tokens, llm emb size -> bs, num*num query tokens, llm emb size + inputs_llm[modality] = inputs_llm[modality].reshape(bs, num[modality], self.num_query_token, -1).view(bs, num[modality]*self.num_query_token, -1) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + + else: + if self.projection_only or getattr(self, f"projection_only_{modality}"): + if self.proj_dim == 1: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].mean(-1)).reshape(bs, self.num_query_token, -1) + else: + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality].reshape(bs, self.num_query_token, -1)) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + continue + inputs_llm[modality] = getattr(self, f"{modality}_llm_proj")(query_outputs[modality]['last_hidden_state'][:,:query_tokens[modality].size(1),:]) + atts_llm[modality] = torch.ones(inputs_llm[modality].size()[:-1], dtype=torch.long).to(self.device) + if self.enumerate_inputs: + enumeration[modality] = self.llm_tokenizer( + [f"{'' if i == 0 else ' '}({chr(97+i)}) " for _ in prompt], + return_tensors="pt", + add_special_tokens=False if (i!= 0 or self.prefix) else True + ).to(self.device) + + att_list = [] + inp_list = [] + if self.prefix: + att_list = [self.tokenized_prefix.attention_mask.repeat(bs, 1).to(self.device)] + inp_list = [self.llm_model.get_input_embeddings()(self.tokenized_prefix.input_ids.to(self.device)).repeat(bs, 1, 1)] + + for modality in curr_modalities: + if self.enumerate_inputs: + enumeration_inputs_llm = self.llm_model.get_input_embeddings()(enumeration[modality].input_ids.to(self.device)) + enumeration_atts_llm = enumeration[modality].attention_mask.to(self.device) + inp_list.extend([enumeration_inputs_llm]) + att_list.extend([enumeration_atts_llm]) + if self.use_cues: + if self.clean_tokenization or self.remove_start: + if (modality==curr_modalities[0] and not (self.prefix or self.enumerate_inputs)): + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality]]) + else: + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask[:,1:]).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality][:,1:].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality]]) + else: + att_list.extend([torch.tensor(self.tokenized_cue[modality].attention_mask).to(self.device).repeat(atts_llm[modality].shape[0], 1), atts_llm[modality]]) + inp_list.extend([self.emb_cue[modality].to(self.device).repeat(inputs_llm[modality].shape[0], 1, 1), inputs_llm[modality]]) + + else: + att_list.extend([atts_llm[modality]]) + inp_list.extend([inputs_llm[modality]]) + + if self.add_space: + space_tok = self.llm_tokenizer( + [f" " for _ in prompt], + return_tensors="pt", + add_special_tokens=False + ) + space_inputs_llm = self.llm_model.get_input_embeddings()(space_tok.input_ids.to(self.device)) + space_atts_llm = space_tok.attention_mask.to(self.device) + inp_list.extend([space_inputs_llm]) + att_list.extend([space_atts_llm]) + + + + atts_llm = torch.cat(att_list, dim=1) + empty_targets = torch.ones(atts_llm.size(), dtype=torch.long).to(self.device).fill_(-100) + inputs_llm = torch.cat(inp_list, dim=1) + + + self.llm_tokenizer.padding_side = "right" + self.llm_tokenizer.truncation_side = 'left' + + + text_input_tokens = self.llm_tokenizer( + [f"{p}{self.postfix}" for p in prompt] if self.postfix else prompt, + padding="longest", + return_tensors="pt", + add_special_tokens= not self.clean_tokenization + ).to(self.device) + + self.llm_tokenizer.truncation_side = 'right' + n_cands = len(candidates) + with self.maybe_autocast(): + all_losses = [] + for n in range(n_segments): + seg_len = n_cands // n_segments + if n == (n_segments - 1): + seg_len = n_cands - seg_len * (n_segments - 1) + + start_i = n * (n_cands // n_segments) + end_i = start_i + seg_len + this_output_tokens = self.llm_tokenizer( + candidates[start_i:end_i], + return_tensors="pt", + padding="longest", + # truncation=True, + # max_length=self.max_output_txt_len, + ).to(self.device) + + this_input_tokens_ids = text_input_tokens.input_ids.repeat_interleave(seg_len, dim=0) + this_input_tokens_atts = text_input_tokens.attention_mask.repeat_interleave(seg_len, dim=0) + + this_output_tokens_ids = this_output_tokens.input_ids.repeat(bs, 1) + this_output_tokens_atts = this_output_tokens.attention_mask.repeat(bs, 1) + + this_llm_tokens, this_input_targets_len = self.concat_text_input_output( + this_input_tokens_ids, + this_input_tokens_atts, + this_output_tokens_ids, + this_output_tokens_atts + ) + + this_llm_input_ids = this_llm_tokens['input_ids'] + this_llm_atts = this_llm_tokens['attention_mask'] + + inputs_embeds = self.llm_model.get_input_embeddings()(this_llm_input_ids) + + if self.use_caption: + inputs_embeds = torch.cat([inputs_embeds], dim=1) + attention_mask = torch.cat([this_llm_atts], dim=1) + else: + inputs_embeds = torch.cat([inputs_llm.repeat_interleave(seg_len, dim=0), inputs_embeds], dim=1) + attention_mask = torch.cat([atts_llm.repeat_interleave(seg_len, dim=0), this_llm_atts], dim=1) + + + this_targets = this_llm_input_ids.masked_fill(this_llm_input_ids == self.llm_tokenizer.pad_token_id, -100) + + for i, l in enumerate(this_input_targets_len): + this_targets[i][:l] = -100 + + if self.use_caption: + torch.cat([this_targets], dim=1) + else: + this_targets = torch.cat([empty_targets.repeat_interleave(seg_len, dim=0), this_targets], dim=1) + + + outputs = self.llm_model( + inputs_embeds=inputs_embeds, + attention_mask=attention_mask, + return_dict=True, + labels=this_targets, + reduction="none", + ) + + loss = outputs.loss + + loss = loss.reshape(bs, seg_len) + all_losses.append(loss) + + all_losses = torch.cat(all_losses, dim=-1) + all_losses = -all_losses + output_class_ranks = torch.argsort(all_losses, dim=-1) + return {"predictions": all_losses, "targets": torch.tensor([self.candidates.index(l) for l in samples["label"]])} + + def _lemmatize(self, answers): + def apply(answer): + doc = self.lemmatizer(answer) + + words = [] + for token in doc: + if token.pos_ in ["NOUN", "VERB"]: + words.append(token.lemma_) + else: + words.append(token.text) + answer = " ".join(words) + + return answer + + return [apply(answer) for answer in answers] + + @property + def lemmatizer(self): + if self._lemmatizer is None: + try: + import spacy + + self._lemmatizer = spacy.load("en_core_web_sm") + except ImportError: + logging.error( + """ + Please install spacy and en_core_web_sm model to apply lemmatization. + python -m spacy download en_core_web_sm + OR + import spacy.cli + spacy.cli.download("en_core_web_sm") + """ + ) + exit(1) + + return self._lemmatizer + + def get_optimizer_params(self, weight_decay, lr_scale=1): + return BaseModel.get_optimizer_params(self, weight_decay, lr_scale=lr_scale) + + @classmethod + def from_config(cls, cfg): + image_model = cfg.get("image_model","eva_clip_g") + pc_model = cfg.get("pc_model","ulip2_pointbert") + video_model = cfg.get("video_model","eva_clip_g") + audio_model = cfg.get("audio_model","beats") + + pretrained_image_qformer = cfg.get("pretrained_image_qformer",None) + pretrained_pc_qformer = cfg.get("pretrained_pc_qformer",None) + pretrained_video_qformer = cfg.get("pretrained_video_qformer",None) + pretrained_audio_qformer = cfg.get("pretrained_audio_qformer",None) + + load_attention_image_qformer = cfg.get("load_attention_image_qformer",False) + load_attention_pc_qformer = cfg.get("load_attention_pc_qformer",False) + load_attention_video_qformer = cfg.get("load_attention_video_qformer",False) + load_attention_audio_qformer = cfg.get("load_attention_audio_qformer",False) + + load_qformer_type_image=cfg.get('load_qformer_type_image', "") + load_qformer_type_pc=cfg.get('load_qformer_type_pc', "") + load_qformer_type_video=cfg.get('load_qformer_type_video', "") + load_qformer_type_audio=cfg.get('load_qformer_type_audio',"") + + load_projection_image=cfg.get('load_projection_image', True) + load_projection_pc=cfg.get('load_projection_pc', True) + load_projection_video=cfg.get('load_projection_video', True) + load_projection_audio=cfg.get('load_projection_audio', True) + + load_projection_type_image=cfg.get('load_projection_type_image', "") + load_projection_type_pc=cfg.get('load_projection_type_pc', "") + load_projection_type_video=cfg.get('load_projection_type_video', "") + load_projection_type_audio=cfg.get('load_projection_type_audio', "") + + load_ln_type_image=cfg.get('load_ln_type_image', "") + load_ln_type_pc=cfg.get('load_ln_type_pc', "") + load_ln_type_video=cfg.get('load_ln_type_video', "") + load_ln_type_audio=cfg.get('load_ln_type_audio', "") + + image_encoder_kwargs = cfg.get("image_encoder_kwargs", {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False}) + pc_encoder_kwargs = cfg.get("pc_encoder_kwargs",{}) + video_encoder_kwargs = cfg.get("video_encoder_kwargs",{}) + audio_encoder_kwargs = cfg.get("audio_encoder_kwargs",{}) + + image_precision = cfg.get("image_precision","fp16") + pc_precision = cfg.get("pc_precision","fp16") + video_precision = cfg.get("video_precision","fp16") + audio_precision = cfg.get("audio_precision","fp16") + + freeze_image = cfg.get("freeze_image",True) + freeze_pc = cfg.get("freeze_pc",True) + freeze_video = cfg.get("freeze_video",True) + freeze_audio = cfg.get("freeze_audio",True) + num_query_token = cfg.get("num_query_token") + + llm_model = cfg.get("llm_model") + freeze_pc = cfg.get("freeze_pc", True) + freeze_video = cfg.get("freeze_video", True) + freeze_audio = cfg.get("freeze_audio", True) + + prompt = cfg.get("prompt", "") + max_txt_len = cfg.get("max_txt_len", 128) + max_output_txt_len = cfg.get("max_output_txt_len", 256) + + apply_lemmatizer = cfg.get("apply_lemmatizer", False) + + qformer_text_input = cfg.get("qformer_text_input", True) + modalities = cfg.get("modalities", ["image"]) + use_cues = cfg.get("use_cues", True) + shared_qformer = cfg.get("shared_qformer",False) + pretrained_shared_qformer = cfg.get("pretrained_shared_qformer", None) + load_attention_shared_qformer = cfg.get("load_attention_shared_qformer", None) + load_qformer_type_shared= cfg.get('load_qformer_type_shared',"") + load_projection_shared= cfg.get('load_projection_shared',False) + load_projection_type_shared= cfg.get('load_projection_type_shared',"") + shared_qformer_num_features=cfg.get("shared_qformer_num_features", 512) + encoder_projection_type_image=cfg.get("encoder_projection_type_image","") + encoder_projection_type_video=cfg.get("encoder_projection_type_video","") + encoder_projection_type_audio=cfg.get("encoder_projection_type_audio","") + encoder_projection_type_pc=cfg.get("encoder_projection_type_pc","") + + llm_text_input = cfg.get("llm_text_input", True) + lora = cfg.get("lora", False) + prefix = cfg.get("prefix", "") + postfix = cfg.get("postfix", "") + + cached_audio= cfg.get("cached_audio", False) + cached_image= cfg.get("cached_image", False) + cached_video= cfg.get("cached_video", False) + cached_pc= cfg.get("cached_pc", False) + + num_features_audio=cfg.get('num_features_audio', 768) + num_features_image=cfg.get('num_features_image', 1408) + num_features_video=cfg.get('num_features_video', 14080) + num_features_pc=cfg.get('num_features_depth', 512) + + joint_video_audio=cfg.get('joint_video_audio', False) + use_caption=cfg.get('use_caption', False) + use_describe=cfg.get('use_describe', False) + predict_with_gen = cfg.get('predict_with_gen', False) + format_candidates_prompt = cfg.get('format_candidates_prompt', "{}") + special_qformer_input_prompt = cfg.get('special_qformer_input_prompt', False) + enumerate_inputs = cfg.get('enumerate_inputs', False) + add_space = cfg.get('add_space', True) + projection_only = cfg.get('projection_only', False) + + lora_model = cfg.get('lora_model', '') + + projection_only_audio= cfg.get('projection_only_audio', False) + projection_only_pc= cfg.get('projection_only_pc', False) + projection_only_video= cfg.get('projection_only_video', False) + projection_only_image= cfg.get('projection_only_image', False) + + projection_path_audio=cfg.get('projection_path_audio', False) + projection_path_pc=cfg.get('projection_path_pc', False) + projection_path_video=cfg.get('projection_path_video', False) + projection_path_image=cfg.get('projection_path_image', False) + remove_start=cfg.get('remove_start', False) + proj_dim=cfg.get('proj_dim', 1) + clean_tokenization=cfg.get('clean_tokenization', False) + + logging.info("Model Config Arguments:") + logging.info(OmegaConf.to_yaml(cfg)) + + model = cls( + image_model=image_model, + pc_model=pc_model, + video_model=video_model, + audio_model=audio_model, + + pretrained_image_qformer=pretrained_image_qformer, + pretrained_pc_qformer=pretrained_pc_qformer, + pretrained_video_qformer=pretrained_video_qformer, + pretrained_audio_qformer=pretrained_audio_qformer, + + load_attention_image_qformer=load_attention_image_qformer, + load_attention_pc_qformer=load_attention_pc_qformer, + load_attention_video_qformer=load_attention_video_qformer, + load_attention_audio_qformer=load_attention_audio_qformer, + + load_qformer_type_image=load_qformer_type_image, + load_qformer_type_pc=load_qformer_type_pc, + load_qformer_type_video=load_qformer_type_video, + load_qformer_type_audio=load_qformer_type_audio, + + load_projection_image=load_projection_image, + load_projection_pc=load_projection_pc, + load_projection_video=load_projection_video, + load_projection_audio=load_projection_audio, + + load_projection_type_image=load_projection_type_image, + load_projection_type_pc=load_projection_type_pc, + load_projection_type_video=load_projection_type_video, + load_projection_type_audio=load_projection_type_audio, + + load_ln_type_image=load_ln_type_image, + load_ln_type_pc=load_ln_type_pc, + load_ln_type_video=load_ln_type_video, + load_ln_type_audio=load_ln_type_audio, + + image_encoder_kwargs = image_encoder_kwargs, + pc_encoder_kwargs = pc_encoder_kwargs, + video_encoder_kwargs = video_encoder_kwargs, + audio_encoder_kwargs = audio_encoder_kwargs, + + image_precision=image_precision, + pc_precision=pc_precision, + video_precision=video_precision, + audio_precision=audio_precision, + + freeze_image=freeze_image, + freeze_pc=freeze_pc, + freeze_video=freeze_video, + freeze_audio=freeze_audio, + + num_query_token=num_query_token, + llm_model=llm_model, + lora_model=lora_model, + lora = lora, + prompt=prompt, + max_txt_len=max_txt_len, + max_output_txt_len=max_output_txt_len, + apply_lemmatizer=apply_lemmatizer, + qformer_text_input=qformer_text_input, + modalities=modalities, + use_cues=use_cues, + llm_text_input=llm_text_input, + shared_qformer=shared_qformer, + pretrained_shared_qformer = pretrained_shared_qformer, + load_attention_shared_qformer = load_attention_shared_qformer, + shared_qformer_num_features=shared_qformer_num_features, + load_qformer_type_shared= load_qformer_type_shared, + load_projection_shared= load_projection_shared, + + encoder_projection_type_image=encoder_projection_type_image, + encoder_projection_type_video=encoder_projection_type_video, + encoder_projection_type_audio=encoder_projection_type_audio, + encoder_projection_type_pc=encoder_projection_type_pc, + + projection_path_audio=projection_path_audio, + projection_path_pc=projection_path_pc, + projection_path_video=projection_path_video, + projection_path_image=projection_path_image, + + load_projection_type_shared= load_projection_type_shared, + + prefix=prefix, + postfix=postfix, + + cached_audio=cached_audio, + cached_image=cached_image, + cached_video=cached_video, + cached_pc=cached_pc, + + num_features_audio=num_features_audio, + num_features_image=num_features_image, + num_features_video=num_features_video, + num_features_pc=num_features_pc, + + joint_video_audio=joint_video_audio, + use_caption=use_caption, + use_describe=use_describe, + predict_with_gen=predict_with_gen, + format_candidates_prompt=format_candidates_prompt, + special_qformer_input_prompt=special_qformer_input_prompt, + enumerate_inputs=enumerate_inputs, + add_space=add_space, + projection_only=projection_only, + + projection_only_audio= projection_only_audio, + projection_only_pc= projection_only_pc, + projection_only_video= projection_only_video, + projection_only_image= projection_only_image, + remove_start= remove_start, + proj_dim=proj_dim, + clean_tokenization=clean_tokenization + ) + + stage1_url_or_filename = cfg.get("stage1_url_or_filename","") + + if stage1_url_or_filename: + model.load_from_pretrained(stage1_url_or_filename) + + model.load_checkpoint_from_config(cfg) + return model + + @classmethod + def init_ln(cls, num_features, load_ln_path=False, load_ln_type=""): + ln = LayerNorm(num_features) + if load_ln_path and load_ln_type: + url_or_filename=load_ln_path + logging.info(f"Loading pretrained layer norm weights from {url_or_filename} of type {load_ln_type}") + if is_url(url_or_filename): + cached_file = download_cached_file( + url_or_filename, check_hash=False, progress=True + ) + checkpoint = torch.load(cached_file, map_location="cpu") + elif os.path.isfile(url_or_filename): + checkpoint = torch.load(url_or_filename, map_location="cpu") + else: + raise RuntimeError("checkpoint url or path is invalid") + + if load_ln_type: + load_ln_type = f"{load_ln_type}_ln" if "vision" not in load_ln_type else "ln_vision" + loaded_state_dict = {} + if 'model' in checkpoint: + checkpoint = checkpoint['model'] + for k in checkpoint.keys(): + if load_ln_type in k: + loaded_state_dict['.'.join(k.split('.')[1:])] = checkpoint[k] + ln.load_state_dict(loaded_state_dict, strict=False) + + return ln + + @classmethod + def init_encoder_projection(cls, enc_num_features, shared_qformer_num_features, load_proj_path=False, load_proj_type=""): + encoder_projection = nn.Linear(enc_num_features, shared_qformer_num_features) + if load_proj_path and load_proj_type: + url_or_filename=load_proj_path + logging.info(f"Loading shared Qformer encoder projection weights from {url_or_filename} of type {load_proj_type}") + if is_url(url_or_filename): + cached_file = download_cached_file( + url_or_filename, check_hash=False, progress=True + ) + checkpoint = torch.load(cached_file, map_location="cpu") + elif os.path.isfile(url_or_filename): + checkpoint = torch.load(url_or_filename, map_location="cpu") + else: + raise RuntimeError("checkpoint url or path is invalid") + + if load_proj_type: + load_proj_type = f"{load_proj_type}_" + loaded_state_dict = {} + if 'model' in checkpoint: + checkpoint = checkpoint['model'] + for k in checkpoint.keys(): + if load_proj_type+'encoder_projection' in k: + loaded_state_dict['.'.join(k.split('.')[1:])] = checkpoint[k] + encoder_projection.load_state_dict(loaded_state_dict, strict=False) + + return encoder_projection + + @classmethod + def init_vicuna_projection(cls, input_size, output_size, load_projection_path=False, load_projection_type="", projection_key=None): + proj = nn.Linear(input_size, output_size) + if load_projection_path: + url_or_filename=load_projection_path + logging.info(f"Loading pretrained projection weights from {url_or_filename} of type {load_projection_type} with key {projection_key if projection_key else load_projection_type+'_llm_proj.'}") + if is_url(url_or_filename): + cached_file = download_cached_file( + url_or_filename, check_hash=False, progress=True + ) + checkpoint = torch.load(cached_file, map_location="cpu") + elif os.path.isfile(url_or_filename): + checkpoint = torch.load(url_or_filename, map_location="cpu") + else: + raise RuntimeError("checkpoint url or path is invalid") + if load_projection_type: + load_projection_type = f"{load_projection_type}_" + loaded_state_dict = {} + if 'model' in checkpoint: + checkpoint = checkpoint['model'] + for k in checkpoint.keys(): + if projection_key: + if projection_key in k: + loaded_state_dict['.'.join(k.split('.')[1:])] = checkpoint[k] + else: + if load_projection_type+'llm_proj.' in k: + loaded_state_dict['.'.join(k.split('.')[1:])] = checkpoint[k] + proj.load_state_dict(loaded_state_dict, strict=False) + + return proj + + @classmethod + def init_Qformer(cls, num_query_token, modality_width, cross_attention_freq=2, pretrained_qformer=None, load_attention=False, load_qformer_type=""): + encoder_config = BertConfig.from_pretrained("bert-base-uncased") + encoder_config.encoder_width = modality_width + # insert cross-attention layer every other block + encoder_config.add_cross_attention = True + encoder_config.cross_attention_freq = cross_attention_freq + encoder_config.query_length = num_query_token + encoder_config.vocab_size += 1 # for special token [DEC] + Qformer = BertLMHeadModel(config=encoder_config) + query_tokens = nn.Parameter( + torch.zeros(1, num_query_token, encoder_config.hidden_size) + ) + query_tokens.data.normal_(mean=0.0, std=encoder_config.initializer_range) + + if pretrained_qformer: + url_or_filename=pretrained_qformer + logging.info(f"Loading pretrained qformer weights and query tokens from {url_or_filename} of type {load_qformer_type}") + if is_url(url_or_filename): + cached_file = download_cached_file( + url_or_filename, check_hash=False, progress=True + ) + checkpoint = torch.load(cached_file, map_location="cpu") + elif os.path.isfile(url_or_filename): + checkpoint = torch.load(url_or_filename, map_location="cpu") + else: + raise RuntimeError("checkpoint url or path is invalid") + + if load_qformer_type: + load_qformer_type = f"{load_qformer_type}_" + loaded_state_dict = {} + if 'model' in checkpoint: + checkpoint = checkpoint['model'] + for k in checkpoint.keys(): + if load_qformer_type+'Qformer.' in k: + if not load_attention and 'attention' in k: + continue + loaded_state_dict['.'.join(k.split('.')[1:])] = checkpoint[k] + Qformer.load_state_dict(loaded_state_dict, strict=False) + query_tokens.data = checkpoint[load_qformer_type+'query_tokens'] + + return Qformer, query_tokens + + def get_state_dict(self, url_or_filename, **kwargs): + if is_url(url_or_filename): + cached_file = download_cached_file( + url_or_filename, check_hash=False, progress=True + ) + checkpoint = torch.load(cached_file, map_location="cpu") + elif os.path.isfile(url_or_filename): + checkpoint = torch.load(url_or_filename, map_location="cpu") + else: + raise RuntimeError("checkpoint url or path is invalid") + + if "model" in checkpoint.keys(): + state_dict = checkpoint["model"] + else: + state_dict = checkpoint + return state_dict + + def load_from_pretrained(self, url_or_filename, **kwargs): + state_dict = self.get_state_dict(url_or_filename) + self.load_state_dict(state_dict, strict=False) + logging.info("load checkpoint from %s" % url_or_filename) + + def load_checkpoint(self, url_or_filename, **kwargs): + """ + Load from a finetuned checkpoint. + + This should expect no mismatch in the model keys and the checkpoint keys. + """ + state_dict = self.get_state_dict(url_or_filename) + self.load_state_dict(state_dict, strict=True) + logging.info("load checkpoint from %s" % url_or_filename) + + def load_state_dict(self, state_dict, strict=True): + # from pdb import set_trace; set_trace() + unexpected_keys = [] + missing_keys = [] + if self.shared_qformer and not self.projection_only: + ## Load Q-Former if it is not loaded from config + if not getattr(self, "pretrained_shared_qformer"): + shared_qformer_state_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if "shared_Qformer" == k.split('.')[0]} + msg = self.shared_Qformer.load_state_dict(shared_qformer_state_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + ## Load query tokens + if "shared_query_tokens" not in state_dict: + missing_keys.append("shared_query_tokens") + else: + self.shared_query_tokens = state_dict["shared_query_tokens"] + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + + for modality in self.modalities: + # Map shared Qformer by reference to all modalities. + setattr(self, f"{modality}_Qformer", self.shared_Qformer) + getattr(self, f"{modality}_query_tokens").data = state_dict[f"shared_query_tokens"] + # load encoder projections + modality_encoder_projection_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"{modality}_encoder_projection" in k.split('.')[0]} + msg = getattr(self, f"{modality}_encoder_projection").load_state_dict(modality_encoder_projection_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + # load modality layer norm + if getattr(self,f"load_ln_type_{modality}") == "vision": + modality_ln_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"ln_vision" in k.split('.')[0]} + else: + modality_ln_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"{modality}_ln" in k.split('.')[0]} + msg = getattr(self, f"{modality}_ln").load_state_dict(modality_ln_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + + ## Load Shared LLM projection if not loaded by config + if not getattr(self, "load_projection_shared"): + shared_llm_projection_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"shared_llm_proj" in k.split('.')[0]} + msg = self.shared_llm_proj.load_state_dict(shared_llm_projection_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + for modality in self.modalities: + ## Map to modality projections by reference + msg = setattr(self, f"{modality}_llm_proj", self.shared_llm_proj) + else: + for modality in self.modalities: + ## Load Q-Former if not loaded from config + if not getattr(self, f"pretrained_{modality}_qformer") or ((self.projection_only or getattr(self, f"projection_only_{modality}")) and not getattr(self, f"projection_path_{modality}")): + + if self.projection_only or getattr(self, f"projection_only_{modality}") : + if not getattr(self, f"projection_path_{modality}"): + logging.info(f"Loaded {modality} projection") + modality_qformer_state_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"{modality}_projection" == k.split('.')[0]} + msg = getattr(self, f"{modality}_projection").load_state_dict(modality_qformer_state_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + else: + modality_qformer_state_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"{modality}_Qformer" == k.split('.')[0]} + msg = getattr(self, f"{modality}_Qformer").load_state_dict(modality_qformer_state_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + ## Load query tokens + if not self.projection_only and not getattr(self, f"projection_only_{modality}"): + if f"{modality}_query_tokens" not in state_dict: + missing_keys.append(f"{modality}_query_tokens") + else: + logging.info(f"Loaded {modality} query tokens") + getattr(self, f"{modality}_query_tokens").data = state_dict[f"{modality}_query_tokens"] + # load modality layer norm if not loaded from config + if getattr(self,f"load_ln_type_{modality}") == "vision": + logging.info(f"Loaded {modality} vision ln") + modality_ln_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"ln_vision" in k.split('.')[0]} + else: + modality_ln_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"{modality}_ln" in k.split('.')[0]} + msg = getattr(self, f"{modality}_ln").load_state_dict(modality_ln_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + ## Load LLM projections if not loaded from config + if not getattr(self, f"load_projection_{modality}") or (getattr(self, f"projection_only_{modality}") or self.projection_only): + if not getattr(self, f"projection_path_{modality}"): + logging.info(f"Loaded {modality} llm projection") + modality_llm_projection_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"{modality}_llm_proj" in k.split('.')[0]} + msg = getattr(self, f"{modality}_llm_proj").load_state_dict(modality_llm_projection_dict, strict=strict) + missing_keys.extend(msg.missing_keys) + unexpected_keys.extend(msg.unexpected_keys) + + ## llm model is loaded from pretrained + lora_state_dict = {'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"llm_model" in k.split('.')[0]} + + if not self.lora or len(lora_state_dict) == 0: + unexpected_keys = [k for k in unexpected_keys if k.split('.')[0] != 'llm_model'] + else: + msg = self.llm_model.load_state_dict({'.'.join(k.split('.')[1:]):v for k,v in state_dict.items() if f"llm_model" in k.split('.')[0]}, strict=False) + missing_keys.extend(["llm_model."+k for k in msg.missing_keys]) + missing_keys = [k for k in missing_keys if 'encoder' not in k.split('.')[0]] + missing_keys = [k for k in missing_keys if k.split('.')[0] != 'llm_model'] + return _IncompatibleKeys(missing_keys, unexpected_keys) + + + def before_evaluation(self, dataset, task_type, **kwargs): + if task_type == MultimodalClassificationTask: + self.candidates = dataset.classnames + print(self.candidates) \ No newline at end of file diff --git a/lavis/models/ulip_models/ULIP_models.py b/lavis/models/ulip_models/ULIP_models.py new file mode 100644 index 000000000..ef6a06407 --- /dev/null +++ b/lavis/models/ulip_models/ULIP_models.py @@ -0,0 +1,243 @@ +''' + * Copyright (c) 2023, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: BSD-3-Clause + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + * By Le Xue +''' +## FROM: https://github.com/salesforce/ULIP +## TODO: Convert to LAVIS format. Currently only supports functionality for XInstructBLIP + +# Modified from github.com/openai/CLIP +from collections import OrderedDict + +import timm +from torch import nn +from lavis.models.ulip_models import losses +from torch.nn.parameter import Parameter +from easydict import EasyDict +import torch +import numpy as np +from lavis.common.dist_utils import download_cached_file + + +class LayerNorm(nn.LayerNorm): + """Subclass torch's LayerNorm to handle fp16.""" + + def forward(self, x: torch.Tensor): + orig_type = x.dtype + ret = super().forward(x.type(torch.float32)) + return ret.type(orig_type) + + +class QuickGELU(nn.Module): + def forward(self, x: torch.Tensor): + return x * torch.sigmoid(1.702 * x) + + +class ResidualAttentionBlock(nn.Module): + def __init__(self, d_model: int, n_head: int, attn_mask: torch.Tensor = None): + super().__init__() + + self.attn = nn.MultiheadAttention(d_model, n_head) + self.ln_1 = LayerNorm(d_model) + self.mlp = nn.Sequential(OrderedDict([ + ("c_fc", nn.Linear(d_model, d_model * 4)), + ("gelu", QuickGELU()), + ("c_proj", nn.Linear(d_model * 4, d_model)) + ])) + self.ln_2 = LayerNorm(d_model) + self.attn_mask = attn_mask + + def attention(self, x: torch.Tensor): + self.attn_mask = self.attn_mask.to(dtype=x.dtype, device=x.device) if self.attn_mask is not None else None + return self.attn(x, x, x, need_weights=False, attn_mask=self.attn_mask)[0] + + def forward(self, x: torch.Tensor): + x = x + self.attention(self.ln_1(x)) + x = x + self.mlp(self.ln_2(x)) + return x + + +class Transformer(nn.Module): + def __init__(self, width: int, layers: int, heads: int, attn_mask: torch.Tensor = None): + super().__init__() + self.width = width + self.layers = layers + self.resblocks = nn.Sequential(*[ResidualAttentionBlock(width, heads, attn_mask) for _ in range(layers)]) + + def forward(self, x: torch.Tensor): + return self.resblocks(x) + + +class ULIP_WITH_IMAGE(nn.Module): + def __init__(self, point_encoder, **kwargs): + # super().__init__(ssl_mlp_dim, ssl_emb_dim, **kwargs) + super().__init__() + kwargs = EasyDict(kwargs) + self.context_length = kwargs.context_length + self.vision_width = kwargs.vision_width + self.visual = kwargs.vision_model + self.num_features = kwargs.embed_dim + + self.transformer = Transformer( + width=kwargs.transformer_width, + layers=kwargs.transformer_layers, + heads=kwargs.transformer_heads, + attn_mask=self.build_attention_mask(), + ) + + self.vocab_size = kwargs.vocab_size + self.token_embedding = nn.Embedding(kwargs.vocab_size, kwargs.transformer_width) + self.positional_embedding = nn.Parameter(torch.empty(self.context_length, kwargs.transformer_width)) + self.ln_final = LayerNorm(kwargs.transformer_width) + + self.image_projection = nn.Parameter(torch.empty(kwargs.vision_width, kwargs.embed_dim)) + self.text_projection = nn.Parameter(torch.empty(kwargs.transformer_width, kwargs.embed_dim)) + self.logit_scale = nn.Parameter(torch.ones([]) * np.log(1 / 0.07)) + + self.initialize_parameters() + + self.point_encoder = point_encoder + + self.pc_projection = nn.Parameter(torch.empty(kwargs.pc_feat_dims, kwargs.embed_dim )) + nn.init.normal_(self.pc_projection, std= kwargs.embed_dim ** -0.5) + + def encode_image(self, image): + x = self.visual(image) + x = x @ self.image_projection + + return x + + def encode_text(self, text): + x = self.token_embedding(text) # [batch_size, n_ctx, d_model] + x = x + self.positional_embedding + x = x.permute(1, 0, 2) # NLD -> LND + x = self.transformer(x) + x = x.permute(1, 0, 2) # LND -> NLD + x = self.ln_final(x) + + # take features from the eot embedding (eot_token is the highest number in each sequence) + x = x[torch.arange(x.shape[0]), text.argmax(dim=-1)] @ self.text_projection + + return x + + def build_attention_mask(self): + # lazily create causal attention mask, with full attention between the vision tokens + # pytorch uses additive attention mask; fill with -inf + mask = torch.empty(self.context_length, self.context_length) + mask.fill_(float("-inf")) + mask.triu_(1) # zero out the lower diagonal + return mask + + def initialize_parameters(self): + nn.init.normal_(self.token_embedding.weight, std=0.02) + nn.init.normal_(self.positional_embedding, std=0.01) + + proj_std = (self.transformer.width ** -0.5) * ((2 * self.transformer.layers) ** -0.5) + attn_std = self.transformer.width ** -0.5 + fc_std = (2 * self.transformer.width) ** -0.5 + for block in self.transformer.resblocks: + nn.init.normal_(block.attn.in_proj_weight, std=attn_std) + nn.init.normal_(block.attn.out_proj.weight, std=proj_std) + nn.init.normal_(block.mlp.c_fc.weight, std=fc_std) + nn.init.normal_(block.mlp.c_proj.weight, std=proj_std) + + nn.init.normal_(self.image_projection, std=self.vision_width ** -0.5) + nn.init.normal_(self.text_projection, std=self.transformer.width ** -0.5) + + def encode_pc(self, pc): + pc_feat = self.point_encoder(pc) + pc_embed = pc_feat @ self.pc_projection + return pc_embed + + def forward(self, pc, text=None, image=None): + + if text is not None: + text_embed_all = [] + for i in range(text.shape[0]): + text_for_one_sample = text[i] + text_embed = self.encode_text(text_for_one_sample) + text_embed = text_embed / text_embed.norm(dim=-1, keepdim=True) + text_embed = text_embed.mean(dim=0) + text_embed = text_embed / text_embed.norm(dim=-1, keepdim=True) + text_embed_all.append(text_embed) + + text_embed_all = torch.stack(text_embed_all) + else: + text_embed_all = None + + pc_embed = self.encode_pc(pc) + if image is not None: + image_embed = self.encode_image(image) + else: + image_embed = None + + res = {'text_embed': text_embed_all, + 'pc_embed': pc_embed, + 'image_embed': image_embed, + 'logit_scale': self.logit_scale.exp() + } + return pc_embed + + +def get_loss(args): + return losses.ULIPWithImageLoss() + + +def get_metric_names(model): + return ['loss', 'ulip_loss', 'ulip_pc_image_acc', 'ulip_pc_text_acc'] + +def ULIP_PointBERT(ulip_v=2): + vision_model = timm.create_model('vit_base_patch16_224', num_classes=0) + + # ===================================================================== + # import the 3D backbone and specify the output point cloud feature dimension + from lavis.models.ulip_models.pointbert.point_encoder import PointTransformer + from lavis.models.ulip_models.utils.config import cfg_from_yaml_file + ## TODO: parse as config + # config_addr = '/export/home/LAVIS/lavis/models/ulip_models/pointbert/PointTransformer_8192point.yaml' + url = "https://raw.githubusercontent.com/salesforce/ULIP/48d8d00b1cdb2aee79005817a202816f1c521911/models/pointbert/PointTransformer_8192point.yaml" + config_addr = download_cached_file( + url, check_hash=False, progress=True + ) + config = cfg_from_yaml_file(config_addr) + pc_feat_dims = 768 + if ulip_v == "ulip2_scaledup": + config.model.depth = 18 + transformer_layers = 18 + embed_dim=1280 + else: + embed_dim=512 + + transformer_layers = 12 + point_encoder = PointTransformer(config.model) + # ===================================================================== + model = ULIP_WITH_IMAGE(embed_dim=embed_dim, vision_width=pc_feat_dims, point_encoder=point_encoder, vision_model=vision_model, + context_length=77, vocab_size=49408, + transformer_width=512, transformer_heads=8, transformer_layers=transformer_layers, pc_feat_dims=pc_feat_dims) + + ## TODO: setup config + if ulip_v == 2: + cached_file = '/export/share/lxue/shared_models/ULIP-2/objaverse_shapenet_k_5/ULIP-2_pointbert_last.pt' + elif ulip_v == 1: + cached_file = '/export/share/lxue/shared_models/ULIP-1/objaverse/ULIP-1_pointbert_last.pt' + elif ulip_v == 'shapenet': + cached_file = '/export/share/lxue/shared_models/ULIP-1/objaverse_shapenet/checkpoint_last.pt' + elif ulip_v == 'objaverse_k_1': + cached_file = '/export/share/lxue/shared_models/ULIP-2/objaverse_k_1/checkpoint_last.pt' + elif ulip_v == 'objaverse_shapenet_k_1': + cached_file = '/export/share/lxue/shared_models/ULIP-2/objaverse_shapenet_k_1/checkpoint_last.pt' + elif ulip_v == "ulip2_scaledup": + cached_file = "/export/share/lxue/shared_models/ULIP-2/objaverse_shapenet_k_1_scaled_up/checkpoint_last.pt" + # url = "https://storage.cloud.google.com/sfr-ulip-code-release-research/pretrained_models/ckpt_zero-sho_classification/checkpoint_pointbert.pt" + # cached_file = download_cached_file( + # url, check_hash=False, progress=True + # ) + ckpt = torch.load(cached_file, map_location='cpu') + state_dict = OrderedDict() + for k, v in ckpt['state_dict'].items(): + state_dict[k.replace('module.', '')] = v + # model.cuda() + model.load_state_dict(state_dict, strict=False) + return model \ No newline at end of file diff --git a/lavis/models/ulip_models/losses.py b/lavis/models/ulip_models/losses.py new file mode 100644 index 000000000..b9e2c9ca2 --- /dev/null +++ b/lavis/models/ulip_models/losses.py @@ -0,0 +1,62 @@ +''' + * Copyright (c) 2023, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: BSD-3-Clause + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + * By Le Xue +''' +import torch +import torch.nn as nn +import torch.nn.functional as F + +from lavis.models.ulip_models.utils import utils + +class ULIPWithImageLoss(nn.Module): + def __init__(self): + super().__init__() + self.labels = None + self.last_local_batch_size = None + + def forward(self, outputs): + pc_embed = outputs['pc_embed'] + text_embed = outputs['text_embed'] + image_embed = outputs['image_embed'] + logit_scale = outputs['logit_scale'] + local_batch_size = pc_embed.size(0) + + if local_batch_size != self.last_local_batch_size: + self.labels = local_batch_size * utils.get_rank() + torch.arange( + local_batch_size, device=pc_embed.device + ) + self.last_local_batch_size = local_batch_size + + # normalized features + pc_embed = F.normalize(pc_embed, dim=-1, p=2) + text_embed = F.normalize(text_embed, dim=-1, p=2) + image_embed = F.normalize(image_embed, dim=-1, p=2) + + # gather features from all GPUs + pc_embed_all, text_embed_all, image_embed_all = \ + utils.all_gather_batch([pc_embed, text_embed, image_embed]) + + # cosine similarity as logits + logits_per_pc_text = logit_scale * pc_embed @ text_embed_all.t() + logits_per_text_pc = logit_scale * text_embed @ pc_embed_all.t() + logits_per_pc_image = logit_scale * pc_embed @ image_embed_all.t() + logits_per_image_pc = logit_scale * image_embed @ pc_embed_all.t() + + loss = (F.cross_entropy(logits_per_pc_text, self.labels) + \ + F.cross_entropy(logits_per_text_pc, self.labels)) / 2 + \ + (F.cross_entropy(logits_per_pc_image, self.labels) + F.cross_entropy(logits_per_image_pc, self.labels)) / 2 + + # compute accuracy + with torch.no_grad(): + pred = torch.argmax(logits_per_pc_text, dim=-1) + correct = pred.eq(self.labels).sum() + pc_text_acc = 100 * correct / local_batch_size + + pred = torch.argmax(logits_per_pc_image, dim=-1) + correct = pred.eq(self.labels).sum() + pc_image_acc = 100 * correct / local_batch_size + + return {'loss': loss, 'ulip_loss': loss, 'ulip_pc_image_acc': pc_image_acc, 'ulip_pc_text_acc': pc_text_acc} diff --git a/lavis/models/ulip_models/pointbert/PointTransformer_8192point.yaml b/lavis/models/ulip_models/pointbert/PointTransformer_8192point.yaml new file mode 100644 index 000000000..f7b59621c --- /dev/null +++ b/lavis/models/ulip_models/pointbert/PointTransformer_8192point.yaml @@ -0,0 +1,32 @@ +optimizer : { + type: AdamW, + kwargs: { + lr : 0.0005, + weight_decay : 0.05 +}} + +scheduler: { + type: CosLR, + kwargs: { + epochs: 300, + initial_epochs : 10 +}} + +model : { + NAME: PointTransformer, + trans_dim: 384, + depth: 12, + drop_path_rate: 0.1, + cls_dim: 40, + num_heads: 6, + group_size: 32, + num_group: 512, + encoder_dims: 256, +} +npoints: 8192 +total_bs : 32 +step_per_update : 1 +max_epoch : 300 +grad_norm_clip : 10 + +consider_metric: CDL1 \ No newline at end of file diff --git a/lavis/models/ulip_models/pointbert/checkpoint.py b/lavis/models/ulip_models/pointbert/checkpoint.py new file mode 100644 index 000000000..2ac680ab7 --- /dev/null +++ b/lavis/models/ulip_models/pointbert/checkpoint.py @@ -0,0 +1,126 @@ +from collections import defaultdict +import torch.nn as nn + +from typing import Any +from typing import Optional, List, Dict, NamedTuple, Tuple, Iterable + +from termcolor import colored + +def get_missing_parameters_message(keys: List[str]) -> str: + """ + Get a logging-friendly message to report parameter names (keys) that are in + the model but not found in a checkpoint. + Args: + keys (list[str]): List of keys that were not found in the checkpoint. + Returns: + str: message. + """ + groups = _group_checkpoint_keys(keys) + msg = "Some model parameters or buffers are not found in the checkpoint:\n" + msg += "\n".join( + " " + colored(k + _group_to_str(v), "blue") for k, v in groups.items() + ) + return msg + + +def get_unexpected_parameters_message(keys: List[str]) -> str: + """ + Get a logging-friendly message to report parameter names (keys) that are in + the checkpoint but not found in the model. + Args: + keys (list[str]): List of keys that were not found in the model. + Returns: + str: message. + """ + groups = _group_checkpoint_keys(keys) + msg = "The checkpoint state_dict contains keys that are not used by the model:\n" + msg += "\n".join( + " " + colored(k + _group_to_str(v), "magenta") for k, v in groups.items() + ) + return msg + + +def _strip_prefix_if_present(state_dict: Dict[str, Any], prefix: str) -> None: + """ + Strip the prefix in metadata, if any. + Args: + state_dict (OrderedDict): a state-dict to be loaded to the model. + prefix (str): prefix. + """ + keys = sorted(state_dict.keys()) + if not all(len(key) == 0 or key.startswith(prefix) for key in keys): + return + + for key in keys: + newkey = key[len(prefix):] + state_dict[newkey] = state_dict.pop(key) + + # also strip the prefix in metadata, if any.. + try: + metadata = state_dict._metadata # pyre-ignore + except AttributeError: + pass + else: + for key in list(metadata.keys()): + # for the metadata dict, the key can be: + # '': for the DDP module, which we want to remove. + # 'module': for the actual model. + # 'module.xx.xx': for the rest. + + if len(key) == 0: + continue + newkey = key[len(prefix):] + metadata[newkey] = metadata.pop(key) + + +def _group_checkpoint_keys(keys: List[str]) -> Dict[str, List[str]]: + """ + Group keys based on common prefixes. A prefix is the string up to the final + "." in each key. + Args: + keys (list[str]): list of parameter names, i.e. keys in the model + checkpoint dict. + Returns: + dict[list]: keys with common prefixes are grouped into lists. + """ + groups = defaultdict(list) + for key in keys: + pos = key.rfind(".") + if pos >= 0: + head, tail = key[:pos], [key[pos + 1:]] + else: + head, tail = key, [] + groups[head].extend(tail) + return groups + + +def _group_to_str(group: List[str]) -> str: + """ + Format a group of parameter name suffixes into a loggable string. + Args: + group (list[str]): list of parameter name suffixes. + Returns: + str: formated string. + """ + if len(group) == 0: + return "" + + if len(group) == 1: + return "." + group[0] + + return ".{" + ", ".join(group) + "}" + + +def _named_modules_with_dup( + model: nn.Module, prefix: str = "" +) -> Iterable[Tuple[str, nn.Module]]: + """ + The same as `model.named_modules()`, except that it includes + duplicated modules that have more than one name. + """ + yield prefix, model + for name, module in model._modules.items(): # pyre-ignore + if module is None: + continue + submodule_prefix = prefix + ("." if prefix else "") + name + yield from _named_modules_with_dup(module, submodule_prefix) \ No newline at end of file diff --git a/lavis/models/ulip_models/pointbert/dvae.py b/lavis/models/ulip_models/pointbert/dvae.py new file mode 100644 index 000000000..4adb3236d --- /dev/null +++ b/lavis/models/ulip_models/pointbert/dvae.py @@ -0,0 +1,342 @@ +import torch.nn as nn +import torch +import torch.nn.functional as F +from lavis.models.ulip_models.pointbert import misc + +if torch.cuda.is_available(): + from knn_cuda import KNN + + knn = KNN(k=4, transpose_mode=False) +else: + knn=None + +class DGCNN(nn.Module): + def __init__(self, encoder_channel, output_channel): + super().__init__() + ''' + K has to be 16 + ''' + self.input_trans = nn.Conv1d(encoder_channel, 128, 1) + + self.layer1 = nn.Sequential(nn.Conv2d(256, 256, kernel_size=1, bias=False), + nn.GroupNorm(4, 256), + nn.LeakyReLU(negative_slope=0.2) + ) + + self.layer2 = nn.Sequential(nn.Conv2d(512, 512, kernel_size=1, bias=False), + nn.GroupNorm(4, 512), + nn.LeakyReLU(negative_slope=0.2) + ) + + self.layer3 = nn.Sequential(nn.Conv2d(1024, 512, kernel_size=1, bias=False), + nn.GroupNorm(4, 512), + nn.LeakyReLU(negative_slope=0.2) + ) + + self.layer4 = nn.Sequential(nn.Conv2d(1024, 1024, kernel_size=1, bias=False), + nn.GroupNorm(4, 1024), + nn.LeakyReLU(negative_slope=0.2) + ) + + self.layer5 = nn.Sequential(nn.Conv1d(2304, output_channel, kernel_size=1, bias=False), + nn.GroupNorm(4, output_channel), + nn.LeakyReLU(negative_slope=0.2) + ) + + @staticmethod + def get_graph_feature(coor_q, x_q, coor_k, x_k): + # coor: bs, 3, np, x: bs, c, np + + k = 4 + batch_size = x_k.size(0) + num_points_k = x_k.size(2) + num_points_q = x_q.size(2) + + with torch.no_grad(): + _, idx = knn(coor_k, coor_q) # bs k np + assert idx.shape[1] == k + idx_base = torch.arange(0, batch_size, device=x_q.device).view(-1, 1, 1) * num_points_k + idx = idx + idx_base + idx = idx.view(-1) + num_dims = x_k.size(1) + x_k = x_k.transpose(2, 1).contiguous() + feature = x_k.view(batch_size * num_points_k, -1)[idx, :] + feature = feature.view(batch_size, k, num_points_q, num_dims).permute(0, 3, 2, 1).contiguous() + x_q = x_q.view(batch_size, num_dims, num_points_q, 1).expand(-1, -1, -1, k) + feature = torch.cat((feature - x_q, x_q), dim=1) + return feature + + def forward(self, f, coor): + # f: B G C + # coor: B G 3 + + # bs 3 N bs C N + feature_list = [] + coor = coor.transpose(1, 2).contiguous() # B 3 N + f = f.transpose(1, 2).contiguous() # B C N + f = self.input_trans(f) # B 128 N + + f = self.get_graph_feature(coor, f, coor, f) # B 256 N k + f = self.layer1(f) # B 256 N k + f = f.max(dim=-1, keepdim=False)[0] # B 256 N + feature_list.append(f) + + f = self.get_graph_feature(coor, f, coor, f) # B 512 N k + f = self.layer2(f) # B 512 N k + f = f.max(dim=-1, keepdim=False)[0] # B 512 N + feature_list.append(f) + + f = self.get_graph_feature(coor, f, coor, f) # B 1024 N k + f = self.layer3(f) # B 512 N k + f = f.max(dim=-1, keepdim=False)[0] # B 512 N + feature_list.append(f) + + f = self.get_graph_feature(coor, f, coor, f) # B 1024 N k + f = self.layer4(f) # B 1024 N k + f = f.max(dim=-1, keepdim=False)[0] # B 1024 N + feature_list.append(f) + + f = torch.cat(feature_list, dim=1) # B 2304 N + + f = self.layer5(f) # B C' N + + f = f.transpose(-1, -2) + + return f + + +### ref https://github.com/Strawberry-Eat-Mango/PCT_Pytorch/blob/main/util.py ### +def knn_point(nsample, xyz, new_xyz): + """ + Input: + nsample: max sample number in local region + xyz: all points, [B, N, C] + new_xyz: query points, [B, S, C] + Return: + group_idx: grouped points index, [B, S, nsample] + """ + sqrdists = square_distance(new_xyz, xyz) + _, group_idx = torch.topk(sqrdists, nsample, dim=-1, largest=False, sorted=False) + return group_idx + + +def square_distance(src, dst): + """ + Calculate Euclid distance between each two points. + src^T * dst = xn * xm + yn * ym + zn * zm; + sum(src^2, dim=-1) = xn*xn + yn*yn + zn*zn; + sum(dst^2, dim=-1) = xm*xm + ym*ym + zm*zm; + dist = (xn - xm)^2 + (yn - ym)^2 + (zn - zm)^2 + = sum(src**2,dim=-1)+sum(dst**2,dim=-1)-2*src^T*dst + Input: + src: source points, [B, N, C] + dst: target points, [B, M, C] + Output: + dist: per-point square distance, [B, N, M] + """ + B, N, _ = src.shape + _, M, _ = dst.shape + dist = -2 * torch.matmul(src, dst.permute(0, 2, 1)) + dist += torch.sum(src ** 2, -1).view(B, N, 1) + dist += torch.sum(dst ** 2, -1).view(B, 1, M) + return dist + + +class Group(nn.Module): + def __init__(self, num_group, group_size): + super().__init__() + self.num_group = num_group + self.group_size = group_size + self.knn = KNN(k=self.group_size, transpose_mode=True) + + def forward(self, xyz): + ''' + input: B N 3 + --------------------------- + output: B G M 3 + center : B G 3 + ''' + batch_size, num_points, _ = xyz.shape + # fps the centers out + center = misc.fps(xyz, self.num_group) # B G 3 + # knn to get the neighborhood + # _, idx = self.knn(xyz, center) # B G M + idx = knn_point(self.group_size, xyz, center) # B G M + assert idx.size(1) == self.num_group + assert idx.size(2) == self.group_size + idx_base = torch.arange(0, batch_size, device=xyz.device).view(-1, 1, 1) * num_points + idx = idx + idx_base + idx = idx.view(-1) + neighborhood = xyz.view(batch_size * num_points, -1)[idx, :] + neighborhood = neighborhood.view(batch_size, self.num_group, self.group_size, 3).contiguous() + # normalize + neighborhood = neighborhood - center.unsqueeze(2) + return neighborhood, center + + +class Encoder(nn.Module): + def __init__(self, encoder_channel): + super().__init__() + self.encoder_channel = encoder_channel + self.first_conv = nn.Sequential( + nn.Conv1d(3, 128, 1), + nn.BatchNorm1d(128), + nn.ReLU(inplace=True), + nn.Conv1d(128, 256, 1) + ) + self.second_conv = nn.Sequential( + nn.Conv1d(512, 512, 1), + nn.BatchNorm1d(512), + nn.ReLU(inplace=True), + nn.Conv1d(512, self.encoder_channel, 1) + ) + + def forward(self, point_groups): + ''' + point_groups : B G N 3 + ----------------- + feature_global : B G C + ''' + bs, g, n, _ = point_groups.shape + point_groups = point_groups.reshape(bs * g, n, 3) + # encoder + feature = self.first_conv(point_groups.transpose(2, 1)) # BG 256 n + feature_global = torch.max(feature, dim=2, keepdim=True)[0] # BG 256 1 + feature = torch.cat([feature_global.expand(-1, -1, n), feature], dim=1) # BG 512 n + feature = self.second_conv(feature) # BG 1024 n + feature_global = torch.max(feature, dim=2, keepdim=False)[0] # BG 1024 + return feature_global.reshape(bs, g, self.encoder_channel) + + +class Decoder(nn.Module): + def __init__(self, encoder_channel, num_fine): + super().__init__() + self.num_fine = num_fine + self.grid_size = 2 + self.num_coarse = self.num_fine // 4 + assert num_fine % 4 == 0 + + self.mlp = nn.Sequential( + nn.Linear(encoder_channel, 1024), + nn.ReLU(inplace=True), + nn.Linear(1024, 1024), + nn.ReLU(inplace=True), + nn.Linear(1024, 3 * self.num_coarse) + ) + self.final_conv = nn.Sequential( + nn.Conv1d(encoder_channel + 3 + 2, 512, 1), + nn.BatchNorm1d(512), + nn.ReLU(inplace=True), + nn.Conv1d(512, 512, 1), + nn.BatchNorm1d(512), + nn.ReLU(inplace=True), + nn.Conv1d(512, 3, 1) + ) + a = torch.linspace(-0.05, 0.05, steps=self.grid_size, dtype=torch.float).view(1, self.grid_size).expand( + self.grid_size, self.grid_size).reshape(1, -1) + b = torch.linspace(-0.05, 0.05, steps=self.grid_size, dtype=torch.float).view(self.grid_size, 1).expand( + self.grid_size, self.grid_size).reshape(1, -1) + self.folding_seed = torch.cat([a, b], dim=0).view(1, 2, self.grid_size ** 2) # 1 2 S + + def forward(self, feature_global): + ''' + feature_global : B G C + ------- + coarse : B G M 3 + fine : B G N 3 + + ''' + bs, g, c = feature_global.shape + feature_global = feature_global.reshape(bs * g, c) + + coarse = self.mlp(feature_global).reshape(bs * g, self.num_coarse, 3) # BG M 3 + + point_feat = coarse.unsqueeze(2).expand(-1, -1, self.grid_size ** 2, -1) # BG (M) S 3 + point_feat = point_feat.reshape(bs * g, self.num_fine, 3).transpose(2, 1) # BG 3 N + + seed = self.folding_seed.unsqueeze(2).expand(bs * g, -1, self.num_coarse, -1) # BG 2 M (S) + seed = seed.reshape(bs * g, -1, self.num_fine).to(feature_global.device) # BG 2 N + + feature_global = feature_global.unsqueeze(2).expand(-1, -1, self.num_fine) # BG 1024 N + feat = torch.cat([feature_global, seed, point_feat], dim=1) # BG C N + + center = coarse.unsqueeze(2).expand(-1, -1, self.grid_size ** 2, -1) # BG (M) S 3 + center = center.reshape(bs * g, self.num_fine, 3).transpose(2, 1) # BG 3 N + + fine = self.final_conv(feat) + center # BG 3 N + fine = fine.reshape(bs, g, 3, self.num_fine).transpose(-1, -2) + coarse = coarse.reshape(bs, g, self.num_coarse, 3) + return coarse, fine + + +class DiscreteVAE(nn.Module): + def __init__(self, config, **kwargs): + super().__init__() + self.group_size = config.group_size + self.num_group = config.num_group + self.encoder_dims = config.encoder_dims + self.tokens_dims = config.tokens_dims + + self.decoder_dims = config.decoder_dims + self.num_tokens = config.num_tokens + + self.group_divider = Group(num_group=self.num_group, group_size=self.group_size) + self.encoder = Encoder(encoder_channel=self.encoder_dims) + self.dgcnn_1 = DGCNN(encoder_channel=self.encoder_dims, output_channel=self.num_tokens) + self.codebook = nn.Parameter(torch.randn(self.num_tokens, self.tokens_dims)) + + self.dgcnn_2 = DGCNN(encoder_channel=self.tokens_dims, output_channel=self.decoder_dims) + self.decoder = Decoder(encoder_channel=self.decoder_dims, num_fine=self.group_size) + # self.build_loss_func() + + # def build_loss_func(self): + # self.loss_func_cdl1 = ChamferDistanceL1().cuda() + # self.loss_func_cdl2 = ChamferDistanceL2().cuda() + # self.loss_func_emd = emd().cuda() + + def recon_loss(self, ret, gt): + whole_coarse, whole_fine, coarse, fine, group_gt, _ = ret + + bs, g, _, _ = coarse.shape + + coarse = coarse.reshape(bs * g, -1, 3).contiguous() + fine = fine.reshape(bs * g, -1, 3).contiguous() + group_gt = group_gt.reshape(bs * g, -1, 3).contiguous() + + loss_coarse_block = self.loss_func_cdl1(coarse, group_gt) + loss_fine_block = self.loss_func_cdl1(fine, group_gt) + + loss_recon = loss_coarse_block + loss_fine_block + + return loss_recon + + def get_loss(self, ret, gt): + # reconstruction loss + loss_recon = self.recon_loss(ret, gt) + # kl divergence + logits = ret[-1] # B G N + softmax = F.softmax(logits, dim=-1) + mean_softmax = softmax.mean(dim=1) + log_qy = torch.log(mean_softmax) + log_uniform = torch.log(torch.tensor([1. / self.num_tokens], device=gt.device)) + loss_klv = F.kl_div(log_qy, log_uniform.expand(log_qy.size(0), log_qy.size(1)), None, None, 'batchmean', + log_target=True) + + return loss_recon, loss_klv + + def forward(self, inp, temperature=1., hard=False, **kwargs): + neighborhood, center = self.group_divider(inp) + logits = self.encoder(neighborhood) # B G C + logits = self.dgcnn_1(logits, center) # B G N + soft_one_hot = F.gumbel_softmax(logits, tau=temperature, dim=2, hard=hard) # B G N + sampled = torch.einsum('b g n, n c -> b g c', soft_one_hot, self.codebook) # B G C + feature = self.dgcnn_2(sampled, center) + coarse, fine = self.decoder(feature) + + with torch.no_grad(): + whole_fine = (fine + center.unsqueeze(2)).reshape(inp.size(0), -1, 3) + whole_coarse = (coarse + center.unsqueeze(2)).reshape(inp.size(0), -1, 3) + + assert fine.size(2) == self.group_size + ret = (whole_coarse, whole_fine, coarse, fine, neighborhood, logits) + return ret diff --git a/lavis/models/ulip_models/pointbert/logger.py b/lavis/models/ulip_models/pointbert/logger.py new file mode 100644 index 000000000..847c1c7a2 --- /dev/null +++ b/lavis/models/ulip_models/pointbert/logger.py @@ -0,0 +1,127 @@ +import logging +import torch.distributed as dist + +logger_initialized = {} + +def get_root_logger(log_file=None, log_level=logging.INFO, name='main'): + """Get root logger and add a keyword filter to it. + The logger will be initialized if it has not been initialized. By default a + StreamHandler will be added. If `log_file` is specified, a FileHandler will + also be added. The name of the root logger is the top-level package name, + e.g., "mmdet3d". + Args: + log_file (str, optional): File path of log. Defaults to None. + log_level (int, optional): The level of logger. + Defaults to logging.INFO. + name (str, optional): The name of the root logger, also used as a + filter keyword. Defaults to 'mmdet3d'. + Returns: + :obj:`logging.Logger`: The obtained logger + """ + logger = get_logger(name=name, log_file=log_file, log_level=log_level) + # add a logging filter + logging_filter = logging.Filter(name) + logging_filter.filter = lambda record: record.find(name) != -1 + + return logger + + +def get_logger(name, log_file=None, log_level=logging.INFO, file_mode='w'): + """Initialize and get a logger by name. + If the logger has not been initialized, this method will initialize the + logger by adding one or two handlers, otherwise the initialized logger will + be directly returned. During initialization, a StreamHandler will always be + added. If `log_file` is specified and the process rank is 0, a FileHandler + will also be added. + Args: + name (str): Logger name. + log_file (str | None): The log filename. If specified, a FileHandler + will be added to the logger. + log_level (int): The logger level. Note that only the process of + rank 0 is affected, and other processes will set the level to + "Error" thus be silent most of the time. + file_mode (str): The file mode used in opening log file. + Defaults to 'w'. + Returns: + logging.Logger: The expected logger. + """ + logger = logging.getLogger(name) + if name in logger_initialized: + return logger + # handle hierarchical names + # e.g., logger "a" is initialized, then logger "a.b" will skip the + # initialization since it is a child of "a". + for logger_name in logger_initialized: + if name.startswith(logger_name): + return logger + + # handle duplicate logs to the console + # Starting in 1.8.0, PyTorch DDP attaches a StreamHandler (NOTSET) + # to the root logger. As logger.propagate is True by default, this root + # level handler causes logging messages from rank>0 processes to + # unexpectedly show up on the console, creating much unwanted clutter. + # To fix this issue, we set the root logger's StreamHandler, if any, to log + # at the ERROR level. + for handler in logger.root.handlers: + if type(handler) is logging.StreamHandler: + handler.setLevel(logging.ERROR) + + stream_handler = logging.StreamHandler() + handlers = [stream_handler] + + if dist.is_available() and dist.is_initialized(): + rank = dist.get_rank() + else: + rank = 0 + + # only rank 0 will add a FileHandler + if rank == 0 and log_file is not None: + # Here, the default behaviour of the official logger is 'a'. Thus, we + # provide an interface to change the file mode to the default + # behaviour. + file_handler = logging.FileHandler(log_file, file_mode) + handlers.append(file_handler) + + formatter = logging.Formatter( + '%(asctime)s - %(name)s - %(levelname)s - %(message)s') + for handler in handlers: + handler.setFormatter(formatter) + handler.setLevel(log_level) + logger.addHandler(handler) + + if rank == 0: + logger.setLevel(log_level) + else: + logger.setLevel(logging.ERROR) + + logger_initialized[name] = True + + + return logger + + +def print_log(msg, logger=None, level=logging.INFO): + """Print a log message. + Args: + msg (str): The message to be logged. + logger (logging.Logger | str | None): The logger to be used. + Some special loggers are: + - "silent": no message will be printed. + - other str: the logger obtained with `get_root_logger(logger)`. + - None: The `print()` method will be used to print log messages. + level (int): Logging level. Only available when `logger` is a Logger + object or "root". + """ + if logger is None: + print(msg) + elif isinstance(logger, logging.Logger): + logger.log(level, msg) + elif logger == 'silent': + pass + elif isinstance(logger, str): + _logger = get_logger(logger) + _logger.log(level, msg) + else: + raise TypeError( + 'logger should be either a logging.Logger object, str, ' + f'"silent" or None, but got {type(logger)}') \ No newline at end of file diff --git a/lavis/models/ulip_models/pointbert/misc.py b/lavis/models/ulip_models/pointbert/misc.py new file mode 100644 index 000000000..02071cb2e --- /dev/null +++ b/lavis/models/ulip_models/pointbert/misc.py @@ -0,0 +1,287 @@ +import numpy as np +import matplotlib.pyplot as plt +from mpl_toolkits.mplot3d import Axes3D +import random +import torch +import torch.nn as nn +import torch.nn.functional as F +import os +from collections import abc +# from pointnet2_ops import pointnet2_utils + + +# def fps(data, number): +# ''' +# data B N 3 +# number int +# ''' +# fps_idx = pointnet2_utils.furthest_point_sample(data, number) +# fps_data = pointnet2_utils.gather_operation(data.transpose(1, 2).contiguous(), fps_idx).transpose(1,2).contiguous() +# return fps_data + +def index_points(points, idx): + """ + Input: + points: input points data, [B, N, C] + idx: sample index data, [B, S] + Return: + new_points:, indexed points data, [B, S, C] + """ + device = points.device + B = points.shape[0] + view_shape = list(idx.shape) + view_shape[1:] = [1] * (len(view_shape) - 1) + repeat_shape = list(idx.shape) + repeat_shape[0] = 1 + batch_indices = torch.arange(B, dtype=torch.long).to(device).view(view_shape).repeat(repeat_shape) + new_points = points[batch_indices, idx, :] + return new_points + +def fps(xyz, npoint): + """ + Input: + xyz: pointcloud data, [B, N, 3] + npoint: number of samples + Return: + centroids: sampled pointcloud index, [B, npoint] + """ + device = xyz.device + B, N, C = xyz.shape + centroids = torch.zeros(B, npoint, dtype=torch.long).to(device) + distance = torch.ones(B, N).to(device) * 1e10 + farthest = torch.randint(0, N, (B,), dtype=torch.long).to(device) + batch_indices = torch.arange(B, dtype=torch.long).to(device) + for i in range(npoint): + centroids[:, i] = farthest + centroid = xyz[batch_indices, farthest, :].view(B, 1, 3) + dist = torch.sum((xyz - centroid) ** 2, -1) + distance = torch.min(distance, dist) + farthest = torch.max(distance, -1)[1] + return index_points(xyz, centroids) + +def worker_init_fn(worker_id): + np.random.seed(np.random.get_state()[1][0] + worker_id) + +def build_lambda_sche(opti, config): + if config.get('decay_step') is not None: + lr_lbmd = lambda e: max(config.lr_decay ** (e / config.decay_step), config.lowest_decay) + scheduler = torch.optim.lr_scheduler.LambdaLR(opti, lr_lbmd) + else: + raise NotImplementedError() + return scheduler + +def build_lambda_bnsche(model, config): + if config.get('decay_step') is not None: + bnm_lmbd = lambda e: max(config.bn_momentum * config.bn_decay ** (e / config.decay_step), config.lowest_decay) + bnm_scheduler = BNMomentumScheduler(model, bnm_lmbd) + else: + raise NotImplementedError() + return bnm_scheduler + +def set_random_seed(seed, deterministic=False): + """Set random seed. + Args: + seed (int): Seed to be used. + deterministic (bool): Whether to set the deterministic option for + CUDNN backend, i.e., set `torch.backends.cudnn.deterministic` + to True and `torch.backends.cudnn.benchmark` to False. + Default: False. + + # Speed-reproducibility tradeoff https://pytorch.org/docs/stable/notes/randomness.html + if cuda_deterministic: # slower, more reproducible + cudnn.deterministic = True + cudnn.benchmark = False + else: # faster, less reproducible + cudnn.deterministic = False + cudnn.benchmark = True + + """ + random.seed(seed) + np.random.seed(seed) + torch.manual_seed(seed) + torch.cuda.manual_seed_all(seed) + if deterministic: + torch.backends.cudnn.deterministic = True + torch.backends.cudnn.benchmark = False + + +def is_seq_of(seq, expected_type, seq_type=None): + """Check whether it is a sequence of some type. + Args: + seq (Sequence): The sequence to be checked. + expected_type (type): Expected type of sequence items. + seq_type (type, optional): Expected sequence type. + Returns: + bool: Whether the sequence is valid. + """ + if seq_type is None: + exp_seq_type = abc.Sequence + else: + assert isinstance(seq_type, type) + exp_seq_type = seq_type + if not isinstance(seq, exp_seq_type): + return False + for item in seq: + if not isinstance(item, expected_type): + return False + return True + + +def set_bn_momentum_default(bn_momentum): + def fn(m): + if isinstance(m, (nn.BatchNorm1d, nn.BatchNorm2d, nn.BatchNorm3d)): + m.momentum = bn_momentum + return fn + +class BNMomentumScheduler(object): + + def __init__( + self, model, bn_lambda, last_epoch=-1, + setter=set_bn_momentum_default + ): + if not isinstance(model, nn.Module): + raise RuntimeError( + "Class '{}' is not a PyTorch nn Module".format( + type(model).__name__ + ) + ) + + self.model = model + self.setter = setter + self.lmbd = bn_lambda + + self.step(last_epoch + 1) + self.last_epoch = last_epoch + + def step(self, epoch=None): + if epoch is None: + epoch = self.last_epoch + 1 + + self.last_epoch = epoch + self.model.apply(self.setter(self.lmbd(epoch))) + + def get_momentum(self, epoch=None): + if epoch is None: + epoch = self.last_epoch + 1 + return self.lmbd(epoch) + + + +def seprate_point_cloud(xyz, num_points, crop, fixed_points = None, padding_zeros = False): + ''' + seprate point cloud: usage : using to generate the incomplete point cloud with a setted number. + ''' + _,n,c = xyz.shape + + assert n == num_points + assert c == 3 + if crop == num_points: + return xyz, None + + INPUT = [] + CROP = [] + for points in xyz: + if isinstance(crop,list): + num_crop = random.randint(crop[0],crop[1]) + else: + num_crop = crop + + points = points.unsqueeze(0) + + if fixed_points is None: + center = F.normalize(torch.randn(1,1,3),p=2,dim=-1).cuda() + else: + if isinstance(fixed_points,list): + fixed_point = random.sample(fixed_points,1)[0] + else: + fixed_point = fixed_points + center = fixed_point.reshape(1,1,3).cuda() + + distance_matrix = torch.norm(center.unsqueeze(2) - points.unsqueeze(1), p =2 ,dim = -1) # 1 1 2048 + + idx = torch.argsort(distance_matrix,dim=-1, descending=False)[0,0] # 2048 + + if padding_zeros: + input_data = points.clone() + input_data[0, idx[:num_crop]] = input_data[0,idx[:num_crop]] * 0 + + else: + input_data = points.clone()[0, idx[num_crop:]].unsqueeze(0) # 1 N 3 + + crop_data = points.clone()[0, idx[:num_crop]].unsqueeze(0) + + if isinstance(crop,list): + INPUT.append(fps(input_data,2048)) + CROP.append(fps(crop_data,2048)) + else: + INPUT.append(input_data) + CROP.append(crop_data) + + input_data = torch.cat(INPUT,dim=0)# B N 3 + crop_data = torch.cat(CROP,dim=0)# B M 3 + + return input_data.contiguous(), crop_data.contiguous() + +def get_ptcloud_img(ptcloud): + fig = plt.figure(figsize=(8, 8)) + + x, z, y = ptcloud.transpose(1, 0) + ax = fig.gca(projection=Axes3D.name, adjustable='box') + ax.axis('off') + # ax.axis('scaled') + ax.view_init(30, 45) + max, min = np.max(ptcloud), np.min(ptcloud) + ax.set_xbound(min, max) + ax.set_ybound(min, max) + ax.set_zbound(min, max) + ax.scatter(x, y, z, zdir='z', c=x, cmap='jet') + + fig.canvas.draw() + img = np.fromstring(fig.canvas.tostring_rgb(), dtype=np.uint8, sep='') + img = img.reshape(fig.canvas.get_width_height()[::-1] + (3, )) + return img + + + +def visualize_KITTI(path, data_list, titles = ['input','pred'], cmap=['bwr','autumn'], zdir='y', + xlim=(-1, 1), ylim=(-1, 1), zlim=(-1, 1) ): + fig = plt.figure(figsize=(6*len(data_list),6)) + cmax = data_list[-1][:,0].max() + + for i in range(len(data_list)): + data = data_list[i][:-2048] if i == 1 else data_list[i] + color = data[:,0] /cmax + ax = fig.add_subplot(1, len(data_list) , i + 1, projection='3d') + ax.view_init(30, -120) + b = ax.scatter(data[:, 0], data[:, 1], data[:, 2], zdir=zdir, c=color,vmin=-1,vmax=1 ,cmap = cmap[0],s=4,linewidth=0.05, edgecolors = 'black') + ax.set_title(titles[i]) + + ax.set_axis_off() + ax.set_xlim(xlim) + ax.set_ylim(ylim) + ax.set_zlim(zlim) + plt.subplots_adjust(left=0, right=1, bottom=0, top=1, wspace=0.2, hspace=0) + if not os.path.exists(path): + os.makedirs(path) + + pic_path = path + '.png' + fig.savefig(pic_path) + + np.save(os.path.join(path, 'input.npy'), data_list[0].numpy()) + np.save(os.path.join(path, 'pred.npy'), data_list[1].numpy()) + plt.close(fig) + + +def random_dropping(pc, e): + up_num = max(64, 768 // (e//50 + 1)) + pc = pc + random_num = torch.randint(1, up_num, (1,1))[0,0] + pc = fps(pc, random_num) + padding = torch.zeros(pc.size(0), 2048 - pc.size(1), 3).to(pc.device) + pc = torch.cat([pc, padding], dim = 1) + return pc + + +def random_scale(partial, scale_range=[0.8, 1.2]): + scale = torch.rand(1).cuda() * (scale_range[1] - scale_range[0]) + scale_range[0] + return partial * scale diff --git a/lavis/models/ulip_models/pointbert/point_encoder.py b/lavis/models/ulip_models/pointbert/point_encoder.py new file mode 100644 index 000000000..6ef9420aa --- /dev/null +++ b/lavis/models/ulip_models/pointbert/point_encoder.py @@ -0,0 +1,225 @@ +import torch +import torch.nn as nn +import torch.nn.functional as F +from timm.models.layers import DropPath +from lavis.models.ulip_models.pointbert.dvae import Group +from lavis.models.ulip_models.pointbert.dvae import Encoder +from lavis.models.ulip_models.pointbert.logger import print_log + +from lavis.models.ulip_models.pointbert.checkpoint import get_missing_parameters_message, get_unexpected_parameters_message + +class Mlp(nn.Module): + def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.): + super().__init__() + out_features = out_features or in_features + hidden_features = hidden_features or in_features + self.fc1 = nn.Linear(in_features, hidden_features) + self.act = act_layer() + self.fc2 = nn.Linear(hidden_features, out_features) + self.drop = nn.Dropout(drop) + + def forward(self, x): + x = self.fc1(x) + x = self.act(x) + x = self.drop(x) + x = self.fc2(x) + x = self.drop(x) + return x + + +class Attention(nn.Module): + def __init__(self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0., proj_drop=0.): + super().__init__() + self.num_heads = num_heads + head_dim = dim // num_heads + # NOTE scale factor was wrong in my original version, can set manually to be compat with prev weights + self.scale = qk_scale or head_dim ** -0.5 + + self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias) + self.attn_drop = nn.Dropout(attn_drop) + self.proj = nn.Linear(dim, dim) + self.proj_drop = nn.Dropout(proj_drop) + + def forward(self, x): + B, N, C = x.shape + qkv = self.qkv(x).reshape(B, N, 3, self.num_heads, C // self.num_heads).permute(2, 0, 3, 1, 4) + q, k, v = qkv[0], qkv[1], qkv[2] # make torchscript happy (cannot use tensor as tuple) + + attn = (q @ k.transpose(-2, -1)) * self.scale + attn = attn.softmax(dim=-1) + attn = self.attn_drop(attn) + + x = (attn @ v).transpose(1, 2).reshape(B, N, C) + x = self.proj(x) + x = self.proj_drop(x) + return x + + +class Block(nn.Module): + def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop=0., attn_drop=0., + drop_path=0., act_layer=nn.GELU, norm_layer=nn.LayerNorm): + super().__init__() + self.norm1 = norm_layer(dim) + + # NOTE: drop path for stochastic depth, we shall see if this is better than dropout here + self.drop_path = DropPath(drop_path) if drop_path > 0. else nn.Identity() + self.norm2 = norm_layer(dim) + mlp_hidden_dim = int(dim * mlp_ratio) + self.mlp = Mlp(in_features=dim, hidden_features=mlp_hidden_dim, act_layer=act_layer, drop=drop) + + self.attn = Attention( + dim, num_heads=num_heads, qkv_bias=qkv_bias, qk_scale=qk_scale, attn_drop=attn_drop, proj_drop=drop) + + def forward(self, x): + x = x + self.drop_path(self.attn(self.norm1(x))) + x = x + self.drop_path(self.mlp(self.norm2(x))) + return x + + +class TransformerEncoder(nn.Module): + """ Transformer Encoder without hierarchical structure + """ + + def __init__(self, embed_dim=768, depth=4, num_heads=12, mlp_ratio=4., qkv_bias=False, qk_scale=None, + drop_rate=0., attn_drop_rate=0., drop_path_rate=0.): + super().__init__() + + self.blocks = nn.ModuleList([ + Block( + dim=embed_dim, num_heads=num_heads, mlp_ratio=mlp_ratio, qkv_bias=qkv_bias, qk_scale=qk_scale, + drop=drop_rate, attn_drop=attn_drop_rate, + drop_path=drop_path_rate[i] if isinstance(drop_path_rate, list) else drop_path_rate + ) + for i in range(depth)]) + + def forward(self, x, pos): + for _, block in enumerate(self.blocks): + x = block(x + pos) + return x + + +class PointTransformer(nn.Module): + def __init__(self, config, **kwargs): + super().__init__() + self.config = config + # self.args = kwargs["args"] + self.num_features = 512 + self.trans_dim = config.trans_dim + self.depth = config.depth + self.drop_path_rate = config.drop_path_rate + self.cls_dim = config.cls_dim + self.num_heads = config.num_heads + + self.group_size = config.group_size + self.num_group = config.num_group + # grouper + self.group_divider = Group(num_group=self.num_group, group_size=self.group_size) + # define the encoder + self.encoder_dims = config.encoder_dims + self.encoder = Encoder(encoder_channel=self.encoder_dims) + # bridge encoder and transformer + self.reduce_dim = nn.Linear(self.encoder_dims, self.trans_dim) + + self.cls_token = nn.Parameter(torch.zeros(1, 1, self.trans_dim)) + self.cls_pos = nn.Parameter(torch.randn(1, 1, self.trans_dim)) + + self.pos_embed = nn.Sequential( + nn.Linear(3, 128), + nn.GELU(), + nn.Linear(128, self.trans_dim) + ) + + dpr = [x.item() for x in torch.linspace(0, self.drop_path_rate, self.depth)] + self.blocks = TransformerEncoder( + embed_dim=self.trans_dim, + depth=self.depth, + drop_path_rate=dpr, + num_heads=self.num_heads + ) + + self.norm = nn.LayerNorm(self.trans_dim) + # self.load_model_from_ckpt('/export/home/repos/SLIP/pretrained_models/point_transformer_8192.pt') + # if not self.args.evaluate_3d: + ## TODO: pass as config + # self.load_model_from_ckpt('/export/home/ULIP/data/initialize_models/ULIP-2_pointbert_last.pt') + + # self.cls_head_finetune = nn.Sequential( + # nn.Linear(self.trans_dim * 2, 256), + # nn.ReLU(inplace=True), + # nn.Dropout(0.5), + # nn.Linear(256, self.cls_dim) + # ) + + # self.build_loss_func() + + def build_loss_func(self): + self.loss_ce = nn.CrossEntropyLoss() + + def get_loss_acc(self, pred, gt, smoothing=True): + # import pdb; pdb.set_trace() + gt = gt.contiguous().view(-1).long() + + if smoothing: + eps = 0.2 + n_class = pred.size(1) + + one_hot = torch.zeros_like(pred).scatter(1, gt.view(-1, 1), 1) + one_hot = one_hot * (1 - eps) + (1 - one_hot) * eps / (n_class - 1) + log_prb = F.log_softmax(pred, dim=1) + + loss = -(one_hot * log_prb).sum(dim=1).mean() + else: + loss = self.loss_ce(pred, gt.long()) + + pred = pred.argmax(-1) + acc = (pred == gt).sum() / float(gt.size(0)) + + return loss, acc * 100 + + def load_model_from_ckpt(self, bert_ckpt_path): + ckpt = torch.load(bert_ckpt_path, map_location='cpu') + base_ckpt = {k.replace("module.", ""): v for k, v in ckpt['state_dict'].items()} + for k in list(base_ckpt.keys()): + if k.startswith('transformer_q') and not k.startswith('transformer_q.cls_head'): + base_ckpt[k[len('transformer_q.'):]] = base_ckpt[k] + elif k.startswith('base_model'): + base_ckpt[k[len('base_model.'):]] = base_ckpt[k] + del base_ckpt[k] + + incompatible = self.load_state_dict(base_ckpt, strict=True) + + if incompatible.missing_keys: + print_log('missing_keys', logger='Transformer') + print_log( + get_missing_parameters_message(incompatible.missing_keys), + logger='Transformer' + ) + if incompatible.unexpected_keys: + print_log('unexpected_keys', logger='Transformer') + print_log( + get_unexpected_parameters_message(incompatible.unexpected_keys), + logger='Transformer' + ) + + print_log(f'[Transformer] Successful Loading the ckpt from {bert_ckpt_path}', logger='Transformer') + + def forward(self, pts): + # divide the point cloud in the same form. This is important + neighborhood, center = self.group_divider(pts) + # encoder the input cloud blocks + group_input_tokens = self.encoder(neighborhood) # B G N + group_input_tokens = self.reduce_dim(group_input_tokens) + # prepare cls + cls_tokens = self.cls_token.expand(group_input_tokens.size(0), -1, -1) + cls_pos = self.cls_pos.expand(group_input_tokens.size(0), -1, -1) + # add pos embedding + pos = self.pos_embed(center) + # final input + x = torch.cat((cls_tokens, group_input_tokens), dim=1) + pos = torch.cat((cls_pos, pos), dim=1) + # transformer + x = self.blocks(x, pos) + x = self.norm(x) + concat_f = torch.cat([x[:, 0], x[:, 1:].max(1)[0]], dim=-1) + # ret = self.cls_head_finetune(concat_f) + return concat_f \ No newline at end of file diff --git a/lavis/models/ulip_models/ulip_scaled_up_config.yaml b/lavis/models/ulip_models/ulip_scaled_up_config.yaml new file mode 100644 index 000000000..6042dfcef --- /dev/null +++ b/lavis/models/ulip_models/ulip_scaled_up_config.yaml @@ -0,0 +1,32 @@ +optimizer : { + type: AdamW, + kwargs: { + lr : 0.0005, + weight_decay : 0.05 +}} + +scheduler: { + type: CosLR, + kwargs: { + epochs: 300, + initial_epochs : 10 +}} + +model : { + NAME: PointTransformer, + trans_dim: 384, + depth: 18, + drop_path_rate: 0.1, + cls_dim: 40, + num_heads: 6, + group_size: 32, + num_group: 512, + encoder_dims: 256, +} +npoints: 8192 +total_bs : 32 +step_per_update : 1 +max_epoch : 300 +grad_norm_clip : 10 + +consider_metric: CDL1 \ No newline at end of file diff --git a/lavis/models/ulip_models/utils/__init__.py b/lavis/models/ulip_models/utils/__init__.py new file mode 100644 index 000000000..aa793b40c --- /dev/null +++ b/lavis/models/ulip_models/utils/__init__.py @@ -0,0 +1,7 @@ +''' + * Copyright (c) 2023, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: BSD-3-Clause + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + * By Le Xue +''' diff --git a/lavis/models/ulip_models/utils/build.py b/lavis/models/ulip_models/utils/build.py new file mode 100644 index 000000000..db9c4beeb --- /dev/null +++ b/lavis/models/ulip_models/utils/build.py @@ -0,0 +1,17 @@ +from utils import registry + + +DATASETS = registry.Registry('dataset') + + +def build_dataset_from_cfg(cfg, default_args = None): + """ + Build a dataset, defined by `dataset_name`. + Args: + cfg (eDICT): + Returns: + Dataset: a constructed dataset specified by dataset_name. + """ + return DATASETS.build(cfg, default_args = default_args) + + diff --git a/lavis/models/ulip_models/utils/config.py b/lavis/models/ulip_models/utils/config.py new file mode 100644 index 000000000..b364ee774 --- /dev/null +++ b/lavis/models/ulip_models/utils/config.py @@ -0,0 +1,63 @@ +import yaml +from easydict import EasyDict +import os +from .logger import print_log + +def log_args_to_file(args, pre='args', logger=None): + for key, val in args.__dict__.items(): + print_log(f'{pre}.{key} : {val}', logger = logger) + +def log_config_to_file(cfg, pre='cfg', logger=None): + for key, val in cfg.items(): + if isinstance(cfg[key], EasyDict): + print_log(f'{pre}.{key} = edict()', logger = logger) + log_config_to_file(cfg[key], pre=pre + '.' + key, logger=logger) + continue + print_log(f'{pre}.{key} : {val}', logger = logger) + +def merge_new_config(config, new_config): + for key, val in new_config.items(): + if not isinstance(val, dict): + if key == '_base_': + with open(new_config['_base_'], 'r') as f: + try: + val = yaml.load(f, Loader=yaml.FullLoader) + except: + val = yaml.load(f) + config[key] = EasyDict() + merge_new_config(config[key], val) + else: + config[key] = val + continue + if key not in config: + config[key] = EasyDict() + merge_new_config(config[key], val) + return config + +def cfg_from_yaml_file(cfg_file): + config = EasyDict() + with open(cfg_file, 'r') as f: + try: + new_config = yaml.load(f, Loader=yaml.FullLoader) + except: + new_config = yaml.load(f) + merge_new_config(config=config, new_config=new_config) + return config + +def get_config(args, logger=None): + if args.resume: + cfg_path = os.path.join(args.experiment_path, 'config.yaml') + if not os.path.exists(cfg_path): + print_log("Failed to resume", logger = logger) + raise FileNotFoundError() + print_log(f'Resume yaml from {cfg_path}', logger = logger) + args.config = cfg_path + config = cfg_from_yaml_file(args.config) + if not args.resume and args.local_rank == 0: + save_experiment_config(args, config, logger) + return config + +def save_experiment_config(args, config, logger = None): + config_path = os.path.join(args.experiment_path, 'config.yaml') + os.system('cp %s %s' % (args.config, config_path)) + print_log(f'Copy the Config file from {args.config} to {config_path}',logger = logger ) \ No newline at end of file diff --git a/lavis/models/ulip_models/utils/io.py b/lavis/models/ulip_models/utils/io.py new file mode 100755 index 000000000..d0edd1dd4 --- /dev/null +++ b/lavis/models/ulip_models/utils/io.py @@ -0,0 +1,42 @@ +import h5py +import numpy as np +import open3d +import os + +class IO: + @classmethod + def get(cls, file_path): + _, file_extension = os.path.splitext(file_path) + + if file_extension in ['.npy']: + return cls._read_npy(file_path) + elif file_extension in ['.pcd']: + return cls._read_pcd(file_path) + elif file_extension in ['.h5']: + return cls._read_h5(file_path) + elif file_extension in ['.txt']: + return cls._read_txt(file_path) + else: + raise Exception('Unsupported file extension: %s' % file_extension) + + # References: https://github.com/numpy/numpy/blob/master/numpy/lib/format.py + @classmethod + def _read_npy(cls, file_path): + return np.load(file_path) + + # References: https://github.com/dimatura/pypcd/blob/master/pypcd/pypcd.py#L275 + # Support PCD files without compression ONLY! + @classmethod + def _read_pcd(cls, file_path): + pc = open3d.io.read_point_cloud(file_path) + ptcloud = np.array(pc.points) + return ptcloud + + @classmethod + def _read_txt(cls, file_path): + return np.loadtxt(file_path) + + @classmethod + def _read_h5(cls, file_path): + f = h5py.File(file_path, 'r') + return f['data'][()] \ No newline at end of file diff --git a/lavis/models/ulip_models/utils/logger.py b/lavis/models/ulip_models/utils/logger.py new file mode 100644 index 000000000..847c1c7a2 --- /dev/null +++ b/lavis/models/ulip_models/utils/logger.py @@ -0,0 +1,127 @@ +import logging +import torch.distributed as dist + +logger_initialized = {} + +def get_root_logger(log_file=None, log_level=logging.INFO, name='main'): + """Get root logger and add a keyword filter to it. + The logger will be initialized if it has not been initialized. By default a + StreamHandler will be added. If `log_file` is specified, a FileHandler will + also be added. The name of the root logger is the top-level package name, + e.g., "mmdet3d". + Args: + log_file (str, optional): File path of log. Defaults to None. + log_level (int, optional): The level of logger. + Defaults to logging.INFO. + name (str, optional): The name of the root logger, also used as a + filter keyword. Defaults to 'mmdet3d'. + Returns: + :obj:`logging.Logger`: The obtained logger + """ + logger = get_logger(name=name, log_file=log_file, log_level=log_level) + # add a logging filter + logging_filter = logging.Filter(name) + logging_filter.filter = lambda record: record.find(name) != -1 + + return logger + + +def get_logger(name, log_file=None, log_level=logging.INFO, file_mode='w'): + """Initialize and get a logger by name. + If the logger has not been initialized, this method will initialize the + logger by adding one or two handlers, otherwise the initialized logger will + be directly returned. During initialization, a StreamHandler will always be + added. If `log_file` is specified and the process rank is 0, a FileHandler + will also be added. + Args: + name (str): Logger name. + log_file (str | None): The log filename. If specified, a FileHandler + will be added to the logger. + log_level (int): The logger level. Note that only the process of + rank 0 is affected, and other processes will set the level to + "Error" thus be silent most of the time. + file_mode (str): The file mode used in opening log file. + Defaults to 'w'. + Returns: + logging.Logger: The expected logger. + """ + logger = logging.getLogger(name) + if name in logger_initialized: + return logger + # handle hierarchical names + # e.g., logger "a" is initialized, then logger "a.b" will skip the + # initialization since it is a child of "a". + for logger_name in logger_initialized: + if name.startswith(logger_name): + return logger + + # handle duplicate logs to the console + # Starting in 1.8.0, PyTorch DDP attaches a StreamHandler (NOTSET) + # to the root logger. As logger.propagate is True by default, this root + # level handler causes logging messages from rank>0 processes to + # unexpectedly show up on the console, creating much unwanted clutter. + # To fix this issue, we set the root logger's StreamHandler, if any, to log + # at the ERROR level. + for handler in logger.root.handlers: + if type(handler) is logging.StreamHandler: + handler.setLevel(logging.ERROR) + + stream_handler = logging.StreamHandler() + handlers = [stream_handler] + + if dist.is_available() and dist.is_initialized(): + rank = dist.get_rank() + else: + rank = 0 + + # only rank 0 will add a FileHandler + if rank == 0 and log_file is not None: + # Here, the default behaviour of the official logger is 'a'. Thus, we + # provide an interface to change the file mode to the default + # behaviour. + file_handler = logging.FileHandler(log_file, file_mode) + handlers.append(file_handler) + + formatter = logging.Formatter( + '%(asctime)s - %(name)s - %(levelname)s - %(message)s') + for handler in handlers: + handler.setFormatter(formatter) + handler.setLevel(log_level) + logger.addHandler(handler) + + if rank == 0: + logger.setLevel(log_level) + else: + logger.setLevel(logging.ERROR) + + logger_initialized[name] = True + + + return logger + + +def print_log(msg, logger=None, level=logging.INFO): + """Print a log message. + Args: + msg (str): The message to be logged. + logger (logging.Logger | str | None): The logger to be used. + Some special loggers are: + - "silent": no message will be printed. + - other str: the logger obtained with `get_root_logger(logger)`. + - None: The `print()` method will be used to print log messages. + level (int): Logging level. Only available when `logger` is a Logger + object or "root". + """ + if logger is None: + print(msg) + elif isinstance(logger, logging.Logger): + logger.log(level, msg) + elif logger == 'silent': + pass + elif isinstance(logger, str): + _logger = get_logger(logger) + _logger.log(level, msg) + else: + raise TypeError( + 'logger should be either a logging.Logger object, str, ' + f'"silent" or None, but got {type(logger)}') \ No newline at end of file diff --git a/lavis/models/ulip_models/utils/registry.py b/lavis/models/ulip_models/utils/registry.py new file mode 100644 index 000000000..60c4dc43f --- /dev/null +++ b/lavis/models/ulip_models/utils/registry.py @@ -0,0 +1,288 @@ +import inspect +import warnings +from functools import partial +from . import config + +class Registry: + """A registry to map strings to classes. + Registered object could be built from registry. + Example: + >>> MODELS = Registry('models') + >>> @MODELS.register_module() + >>> class ResNet: + >>> pass + >>> resnet = MODELS.build(dict(NAME='ResNet')) + Please refer to https://mmcv.readthedocs.io/en/latest/registry.html for + advanced useage. + Args: + name (str): Registry name. + build_func(func, optional): Build function to construct instance from + Registry, func:`build_from_cfg` is used if neither ``parent`` or + ``build_func`` is specified. If ``parent`` is specified and + ``build_func`` is not given, ``build_func`` will be inherited + from ``parent``. Default: None. + parent (Registry, optional): Parent registry. The class registered in + children registry could be built from parent. Default: None. + scope (str, optional): The scope of registry. It is the key to search + for children registry. If not specified, scope will be the name of + the package where class is defined, e.g. mmdet, mmcls, mmseg. + Default: None. + """ + + def __init__(self, name, build_func=None, parent=None, scope=None): + self._name = name + self._module_dict = dict() + self._children = dict() + self._scope = self.infer_scope() if scope is None else scope + + # self.build_func will be set with the following priority: + # 1. build_func + # 2. parent.build_func + # 3. build_from_cfg + if build_func is None: + if parent is not None: + self.build_func = parent.build_func + else: + self.build_func = build_from_cfg + else: + self.build_func = build_func + if parent is not None: + assert isinstance(parent, Registry) + parent._add_children(self) + self.parent = parent + else: + self.parent = None + + def __len__(self): + return len(self._module_dict) + + def __contains__(self, key): + return self.get(key) is not None + + def __repr__(self): + format_str = self.__class__.__name__ + \ + f'(name={self._name}, ' \ + f'items={self._module_dict})' + return format_str + + @staticmethod + def infer_scope(): + """Infer the scope of registry. + The name of the package where registry is defined will be returned. + Example: + # in mmdet/models/backbone/resnet.py + >>> MODELS = Registry('models') + >>> @MODELS.register_module() + >>> class ResNet: + >>> pass + The scope of ``ResNet`` will be ``mmdet``. + Returns: + scope (str): The inferred scope name. + """ + # inspect.stack() trace where this function is called, the index-2 + # indicates the frame where `infer_scope()` is called + filename = inspect.getmodule(inspect.stack()[2][0]).__name__ + split_filename = filename.split('.') + return split_filename[0] + + @staticmethod + def split_scope_key(key): + """Split scope and key. + The first scope will be split from key. + Examples: + >>> Registry.split_scope_key('mmdet.ResNet') + 'mmdet', 'ResNet' + >>> Registry.split_scope_key('ResNet') + None, 'ResNet' + Return: + scope (str, None): The first scope. + key (str): The remaining key. + """ + split_index = key.find('.') + if split_index != -1: + return key[:split_index], key[split_index + 1:] + else: + return None, key + + @property + def name(self): + return self._name + + @property + def scope(self): + return self._scope + + @property + def module_dict(self): + return self._module_dict + + @property + def children(self): + return self._children + + def get(self, key): + """Get the registry record. + Args: + key (str): The class name in string format. + Returns: + class: The corresponding class. + """ + scope, real_key = self.split_scope_key(key) + if scope is None or scope == self._scope: + # get from self + if real_key in self._module_dict: + return self._module_dict[real_key] + else: + # get from self._children + if scope in self._children: + return self._children[scope].get(real_key) + else: + # goto root + parent = self.parent + while parent.parent is not None: + parent = parent.parent + return parent.get(key) + + def build(self, *args, **kwargs): + return self.build_func(*args, **kwargs, registry=self) + + def _add_children(self, registry): + """Add children for a registry. + The ``registry`` will be added as children based on its scope. + The parent registry could build objects from children registry. + Example: + >>> models = Registry('models') + >>> mmdet_models = Registry('models', parent=models) + >>> @mmdet_models.register_module() + >>> class ResNet: + >>> pass + >>> resnet = models.build(dict(NAME='mmdet.ResNet')) + """ + + assert isinstance(registry, Registry) + assert registry.scope is not None + assert registry.scope not in self.children, \ + f'scope {registry.scope} exists in {self.name} registry' + self.children[registry.scope] = registry + + def _register_module(self, module_class, module_name=None, force=False): + if not inspect.isclass(module_class): + raise TypeError('module must be a class, ' + f'but got {type(module_class)}') + + if module_name is None: + module_name = module_class.__name__ + if isinstance(module_name, str): + module_name = [module_name] + for name in module_name: + if not force and name in self._module_dict: + raise KeyError(f'{name} is already registered ' + f'in {self.name}') + self._module_dict[name] = module_class + + def deprecated_register_module(self, cls=None, force=False): + warnings.warn( + 'The old API of register_module(module, force=False) ' + 'is deprecated and will be removed, please use the new API ' + 'register_module(name=None, force=False, module=None) instead.') + if cls is None: + return partial(self.deprecated_register_module, force=force) + self._register_module(cls, force=force) + return cls + + def register_module(self, name=None, force=False, module=None): + """Register a module. + A record will be added to `self._module_dict`, whose key is the class + name or the specified name, and value is the class itself. + It can be used as a decorator or a normal function. + Example: + >>> backbones = Registry('backbone') + >>> @backbones.register_module() + >>> class ResNet: + >>> pass + >>> backbones = Registry('backbone') + >>> @backbones.register_module(name='mnet') + >>> class MobileNet: + >>> pass + >>> backbones = Registry('backbone') + >>> class ResNet: + >>> pass + >>> backbones.register_module(ResNet) + Args: + name (str | None): The module name to be registered. If not + specified, the class name will be used. + force (bool, optional): Whether to override an existing class with + the same name. Default: False. + module (type): Module class to be registered. + """ + if not isinstance(force, bool): + raise TypeError(f'force must be a boolean, but got {type(force)}') + # NOTE: This is a walkaround to be compatible with the old api, + # while it may introduce unexpected bugs. + if isinstance(name, type): + return self.deprecated_register_module(name, force=force) + + # raise the error ahead of time + if not (name is None or isinstance(name, str) or misc.is_seq_of(name, str)): + raise TypeError( + 'name must be either of None, an instance of str or a sequence' + f' of str, but got {type(name)}') + + # use it as a normal method: x.register_module(module=SomeClass) + if module is not None: + self._register_module( + module_class=module, module_name=name, force=force) + return module + + # use it as a decorator: @x.register_module() + def _register(cls): + self._register_module( + module_class=cls, module_name=name, force=force) + return cls + + return _register + + +def build_from_cfg(cfg, registry, default_args=None): + """Build a module from config dict. + Args: + cfg (edict): Config dict. It should at least contain the key "NAME". + registry (:obj:`Registry`): The registry to search the type from. + Returns: + object: The constructed object. + """ + if not isinstance(cfg, dict): + raise TypeError(f'cfg must be a dict, but got {type(cfg)}') + if 'NAME' not in cfg: + if default_args is None or 'NAME' not in default_args: + raise KeyError( + '`cfg` or `default_args` must contain the key "NAME", ' + f'but got {cfg}\n{default_args}') + if not isinstance(registry, Registry): + raise TypeError('registry must be an mmcv.Registry object, ' + f'but got {type(registry)}') + + if not (isinstance(default_args, dict) or default_args is None): + raise TypeError('default_args must be a dict or None, ' + f'but got {type(default_args)}') + + if default_args is not None: + cfg = config.merge_new_config(cfg, default_args) + + obj_type = cfg.get('NAME') + + if isinstance(obj_type, str): + obj_cls = registry.get(obj_type) + if obj_cls is None: + raise KeyError( + f'{obj_type} is not in the {registry.name} registry') + elif inspect.isclass(obj_type): + obj_cls = obj_type + else: + raise TypeError( + f'type must be a str or valid type, but got {type(obj_type)}') + try: + return obj_cls(cfg) + except Exception as e: + # Normal TypeError does not print class name. + raise type(e)(f'{obj_cls.__name__}: {e}') \ No newline at end of file diff --git a/lavis/models/ulip_models/utils/tokenizer.py b/lavis/models/ulip_models/utils/tokenizer.py new file mode 100644 index 000000000..3bf421618 --- /dev/null +++ b/lavis/models/ulip_models/utils/tokenizer.py @@ -0,0 +1,151 @@ +# Modified from github.com/openai/CLIP +import gzip +import html +import os +from functools import lru_cache + +import ftfy +import regex as re +import torch + + +@lru_cache() +def default_bpe(): + return os.path.join(os.path.dirname(os.path.abspath(__file__)), "bpe_simple_vocab_16e6.txt.gz") + + +@lru_cache() +def bytes_to_unicode(): + """ + Returns list of utf-8 byte and a corresponding list of unicode strings. + The reversible bpe codes work on unicode strings. + This means you need a large # of unicode characters in your vocab if you want to avoid UNKs. + When you're at something like a 10B token dataset you end up needing around 5K for decent coverage. + This is a signficant percentage of your normal, say, 32K bpe vocab. + To avoid that, we want lookup tables between utf-8 bytes and unicode strings. + And avoids mapping to whitespace/control characters the bpe code barfs on. + """ + bs = list(range(ord("!"), ord("~")+1))+list(range(ord("¡"), ord("¬")+1))+list(range(ord("®"), ord("ÿ")+1)) + cs = bs[:] + n = 0 + for b in range(2**8): + if b not in bs: + bs.append(b) + cs.append(2**8+n) + n += 1 + cs = [chr(n) for n in cs] + return dict(zip(bs, cs)) + + +def get_pairs(word): + """Return set of symbol pairs in a word. + Word is represented as tuple of symbols (symbols being variable-length strings). + """ + pairs = set() + prev_char = word[0] + for char in word[1:]: + pairs.add((prev_char, char)) + prev_char = char + return pairs + + +def basic_clean(text): + text = ftfy.fix_text(text) + text = html.unescape(html.unescape(text)) + return text.strip() + + +def whitespace_clean(text): + text = re.sub(r'\s+', ' ', text) + text = text.strip() + return text + + +class SimpleTokenizer(object): + def __init__(self, bpe_path: str = default_bpe()): + self.byte_encoder = bytes_to_unicode() + self.byte_decoder = {v: k for k, v in self.byte_encoder.items()} + merges = gzip.open(bpe_path).read().decode("utf-8").split('\n') + merges = merges[1:49152-256-2+1] + merges = [tuple(merge.split()) for merge in merges] + vocab = list(bytes_to_unicode().values()) + vocab = vocab + [v+'' for v in vocab] + for merge in merges: + vocab.append(''.join(merge)) + vocab.extend(['<|startoftext|>', '<|endoftext|>']) + self.encoder = dict(zip(vocab, range(len(vocab)))) + self.decoder = {v: k for k, v in self.encoder.items()} + self.bpe_ranks = dict(zip(merges, range(len(merges)))) + self.cache = {'<|startoftext|>': '<|startoftext|>', '<|endoftext|>': '<|endoftext|>'} + self.pat = re.compile(r"""<\|startoftext\|>|<\|endoftext\|>|'s|'t|'re|'ve|'m|'ll|'d|[\p{L}]+|[\p{N}]|[^\s\p{L}\p{N}]+""", re.IGNORECASE) + + def bpe(self, token): + if token in self.cache: + return self.cache[token] + word = tuple(token[:-1]) + ( token[-1] + '',) + pairs = get_pairs(word) + + if not pairs: + return token+'' + + while True: + bigram = min(pairs, key = lambda pair: self.bpe_ranks.get(pair, float('inf'))) + if bigram not in self.bpe_ranks: + break + first, second = bigram + new_word = [] + i = 0 + while i < len(word): + try: + j = word.index(first, i) + new_word.extend(word[i:j]) + i = j + except: + new_word.extend(word[i:]) + break + + if word[i] == first and i < len(word)-1 and word[i+1] == second: + new_word.append(first+second) + i += 2 + else: + new_word.append(word[i]) + i += 1 + new_word = tuple(new_word) + word = new_word + if len(word) == 1: + break + else: + pairs = get_pairs(word) + word = ' '.join(word) + self.cache[token] = word + return word + + def encode(self, text): + bpe_tokens = [] + text = whitespace_clean(basic_clean(text)).lower() + for token in re.findall(self.pat, text): + token = ''.join(self.byte_encoder[b] for b in token.encode('utf-8')) + bpe_tokens.extend(self.encoder[bpe_token] for bpe_token in self.bpe(token).split(' ')) + return bpe_tokens + + def decode(self, tokens): + text = ''.join([self.decoder[token] for token in tokens]) + text = bytearray([self.byte_decoder[c] for c in text]).decode('utf-8', errors="replace").replace('', ' ') + return text + + def __call__(self, texts, context_length=77): + if isinstance(texts, str): + texts = [texts] + + sot_token = self.encoder["<|startoftext|>"] + eot_token = self.encoder["<|endoftext|>"] + all_tokens = [[sot_token] + self.encode(text) + [eot_token] for text in texts] + result = torch.zeros(len(all_tokens), context_length, dtype=torch.long) + + for i, tokens in enumerate(all_tokens): + tokens = tokens[:context_length] + result[i, :len(tokens)] = torch.tensor(tokens) + + if len(result) == 1: + return result[0] + return result \ No newline at end of file diff --git a/lavis/models/ulip_models/utils/utils.py b/lavis/models/ulip_models/utils/utils.py new file mode 100644 index 000000000..e45d171d3 --- /dev/null +++ b/lavis/models/ulip_models/utils/utils.py @@ -0,0 +1,242 @@ +import numpy as np +import os +import random +import shutil +import torch +import torch.distributed as dist +import torch.autograd as autograd + +from PIL import ImageFilter +from easydict import EasyDict +import yaml +# from data.dataset_3d import Dataset_3D + +def merge_new_config(config, new_config): + for key, val in new_config.items(): + if not isinstance(val, dict): + if key == '_base_': + with open(new_config['_base_'], 'r') as f: + try: + val = yaml.load(f, Loader=yaml.FullLoader) + except: + val = yaml.load(f) + config[key] = EasyDict() + merge_new_config(config[key], val) + else: + config[key] = val + continue + if key not in config: + config[key] = EasyDict() + merge_new_config(config[key], val) + return config +def cfg_from_yaml_file(cfg_file): + config = EasyDict() + with open(cfg_file, 'r') as f: + # try: + new_config = yaml.load(f, Loader=yaml.FullLoader) + # except: + # new_config = yaml.load(f) + merge_new_config(config=config, new_config=new_config) + return config + +def get_model(model): + if isinstance(model, torch.nn.DataParallel) \ + or isinstance(model, torch.nn.parallel.DistributedDataParallel): + return model.module + else: + return model + + +def setup_for_distributed(is_master): + """ + This function disables printing when not in master process + """ + import builtins as __builtin__ + builtin_print = __builtin__.print + + def print(*args, **kwargs): + force = kwargs.pop('force', False) + if is_master or force: + builtin_print(*args, **kwargs) + + __builtin__.print = print + + +def is_dist_avail_and_initialized(): + if not dist.is_available(): + return False + if not dist.is_initialized(): + return False + return True + + +def get_world_size(): + if not is_dist_avail_and_initialized(): + return 1 + return dist.get_world_size() + + +def get_rank(): + if not is_dist_avail_and_initialized(): + return 0 + return dist.get_rank() + + +def is_main_process(): + return get_rank() == 0 + + +def save_on_master(state, is_best, output_dir): + if is_main_process(): + ckpt_path = '{}/checkpoint_{}.pt'.format(output_dir, state['epoch']) + best_path = f'{output_dir}/checkpoint_best.pt' + torch.save(state, ckpt_path) + if is_best: + shutil.copyfile(ckpt_path, best_path) + + +def init_distributed_mode(args): + if 'RANK' in os.environ and 'WORLD_SIZE' in os.environ: + args.rank = int(os.environ["RANK"]) + args.world_size = int(os.environ['WORLD_SIZE']) + args.gpu = int(os.environ['LOCAL_RANK']) + elif 'SLURM_PROCID' in os.environ: + args.rank = int(os.environ['SLURM_PROCID']) + args.gpu = args.rank % torch.cuda.device_count() + else: + print('Not using distributed mode') + args.distributed = False + return + + args.distributed = True + + torch.cuda.set_device(args.gpu) + args.dist_backend = 'nccl' + print('| distributed init (rank {}): {}'.format( + args.rank, args.dist_url), flush=True) + torch.distributed.init_process_group(backend=args.dist_backend, init_method=args.dist_url, + world_size=args.world_size, rank=args.rank) + torch.distributed.barrier() + setup_for_distributed(args.rank == 0) + + +def scaled_all_reduce(tensors, is_scale=True): + """Performs the scaled all_reduce operation on the provided tensors. + The input tensors are modified in-place. Currently supports only the sum + reduction operator. The reduced values are scaled by the inverse size of the + world size. + """ + world_size = get_world_size() + # There is no need for reduction in the single-proc case + if world_size == 1: + return tensors + # Queue the reductions + reductions = [] + for tensor in tensors: + reduction = dist.all_reduce(tensor, async_op=True) + reductions.append(reduction) + # Wait for reductions to finish + for reduction in reductions: + reduction.wait() + # Scale the results + if is_scale: + for tensor in tensors: + tensor.mul_(1.0 / world_size) + return tensors + + +def all_gather_batch(tensors): + """ + Performs all_gather operation on the provided tensors. + """ + # Queue the gathered tensors + world_size = get_world_size() + # There is no need for reduction in the single-proc case + if world_size == 1: + return tensors + tensor_list = [] + output_tensor = [] + for tensor in tensors: + tensor_all = [torch.ones_like(tensor) for _ in range(world_size)] + dist.all_gather( + tensor_all, + tensor, + async_op=False # performance opt + ) + + tensor_list.append(tensor_all) + + for tensor_all in tensor_list: + output_tensor.append(torch.cat(tensor_all, dim=0)) + return output_tensor + + +class GatherLayer(autograd.Function): + """ + Gather tensors from all workers with support for backward propagation: + This implementation does not cut the gradients as torch.distributed.all_gather does. + """ + + @staticmethod + def forward(ctx, x): + output = [torch.zeros_like(x) for _ in range(dist.get_world_size())] + dist.all_gather(output, x) + return tuple(output) + + @staticmethod + def backward(ctx, *grads): + all_gradients = torch.stack(grads) + dist.all_reduce(all_gradients) + return all_gradients[dist.get_rank()] + + +def all_gather_batch_with_grad(tensors): + """ + Performs all_gather operation on the provided tensors. + Graph remains connected for backward grad computation. + """ + # Queue the gathered tensors + world_size = get_world_size() + # There is no need for reduction in the single-proc case + if world_size == 1: + return tensors + tensor_list = [] + output_tensor = [] + + for tensor in tensors: + tensor_all = GatherLayer.apply(tensor) + tensor_list.append(tensor_all) + + for tensor_all in tensor_list: + output_tensor.append(torch.cat(tensor_all, dim=0)) + return output_tensor + + +def cosine_scheduler(base_value, final_value, epochs, niter_per_ep, warmup_epochs=0, start_warmup_value=0): + warmup_schedule = np.array([]) + warmup_iters = warmup_epochs * niter_per_ep + if warmup_epochs > 0: + warmup_schedule = np.linspace(start_warmup_value, base_value, warmup_iters) + + iters = np.arange(epochs * niter_per_ep - warmup_iters) + schedule = final_value + 0.5 * (base_value - final_value) * (1 + np.cos(np.pi * iters / len(iters))) + + schedule = np.concatenate((warmup_schedule, schedule)) + assert len(schedule) == epochs * niter_per_ep + return schedule + + +class GaussianBlur(object): + """Gaussian blur augmentation in SimCLR https://arxiv.org/abs/2002.05709""" + + def __init__(self, sigma=[.1, 2.]): + self.sigma = sigma + + def __call__(self, x): + sigma = random.uniform(self.sigma[0], self.sigma[1]) + x = x.filter(ImageFilter.GaussianBlur(radius=sigma)) + return x + +# def get_dataset(train_transform, tokenizer, args, dataset_name=None, files_list=None): +# dataset_3d = Dataset_3D(args, tokenizer, dataset_name, train_transform, files_list=files_list) +# return dataset_3d.dataset \ No newline at end of file diff --git a/lavis/processors/audio_processors.py b/lavis/processors/audio_processors.py new file mode 100644 index 000000000..9dcafbff3 --- /dev/null +++ b/lavis/processors/audio_processors.py @@ -0,0 +1,141 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import torch +import torchaudio +import torchaudio.transforms as transforms +from moviepy.editor import VideoFileClip +from omegaconf import OmegaConf +import torchaudio.compliance.kaldi as ta_kaldi + +from lavis.common.registry import registry +from lavis.processors.base_processor import BaseProcessor +from lavis.models.beats.Tokenizers import TokenizersConfig, Tokenizers + +MAX_INT = registry.get("MAX_INT") + + +@registry.register_processor("beats_audio") +class BeatsAudioProcessor(BaseProcessor): + def __init__(self, model_name, sampling_rate, n_frames, frame_length, is_eval): + """ + Adapted from https://github.com/NINAnor/rare_species_detections/blob/main/BEATs/BEATs.py + """ + super().__init__() + + self.model_name = model_name + self.sampling_rate = sampling_rate + self.n_frames = n_frames + self.frame_length = frame_length + self.fbank_mean = 15.41663 + self.fbank_std = 6.55582 + self.is_eval = is_eval + + def _load_audio(self, aupath): + if aupath.endswith('.mp4'): + video = VideoFileClip(aupath) + audio_np = video.audio.to_soundarray(fps=self.sampling_rate) + if len(audio_np.shape) == 2: + audio_np = audio_np.mean(axis=1) # Convert to mono + waveform = torch.tensor(audio_np).float() + sr = self.sampling_rate + else: + waveform, sr = torchaudio.load(aupath) + if waveform.shape[0] == 2: + waveform = torch.mean(waveform, dim=0) + if sr != self.sampling_rate: + resampler = torchaudio.transforms.Resample(sr, self.sampling_rate) + waveform = resampler(waveform) + return waveform + + def __call__(self, aupath, start_sec=None, end_sec=None): + """ + Args: + aupath: path to audio file + Returns: + torch.tensor: audio clip after transforms. + """ + # Helper function to return empty tensor for invalid audio + def empty_audio_tensor(): + return torch.zeros((self.n_frames, self.frame_length, 128)) + + try: + # Handle MP4 files + if aupath.endswith('.mp4'): + video = VideoFileClip(aupath) + if start_sec is not None and end_sec is not None: + video = video.subclip(start_sec, end_sec) + audio_np = video.audio.to_soundarray(fps=self.sampling_rate) + if audio_np.ndim == 2: + audio_np = audio_np.mean(axis=1) # Convert to mono + waveform = torch.tensor(audio_np).float() + sr = self.sampling_rate + else: + waveform, sr = torchaudio.load(aupath) + + # Validate waveform + if len(waveform.shape) == 0: + return empty_audio_tensor() + + # Convert stereo to mono + if waveform.shape[0] == 2: + waveform = torch.mean(waveform, dim=0) + + # Resample waveform if necessary + if sr != self.sampling_rate: + resampler = torchaudio.transforms.Resample(sr, self.sampling_rate) + waveform = resampler(waveform) + + except: + return empty_audio_tensor() + + if waveform.ndim == 1: + waveform = waveform.unsqueeze(0) + + waveform = waveform * 2**15 + + # Compute fbank features + try: + fbank = ta_kaldi.fbank( + waveform, + num_mel_bins=128, + sample_frequency=self.sampling_rate, + frame_length=25, + frame_shift=10, + ) + fbank = (fbank - self.fbank_mean) / (2 * self.fbank_std) + except: + return empty_audio_tensor() + + # Handle padding and frames extraction differently for eval and training modes + if not self.is_eval: + fbank_pad_len = self.frame_length * self.n_frames - fbank.shape[0] + if fbank_pad_len > 0: + fbank = torch.nn.ZeroPad2d((0, 0, 0, fbank_pad_len))(fbank) + fbank = fbank[:self.frame_length * self.n_frames] + frames = [fbank[i*self.frame_length:(i+1)*self.frame_length].unsqueeze(0) for i in range(self.n_frames)] + else: + fbank_pad_len = fbank.shape[0] % self.frame_length + if fbank_pad_len > 0: + fbank = torch.nn.ZeroPad2d((0, 0, 0, fbank_pad_len))(fbank) + curr_frames = fbank.shape[0] // self.frame_length + frames = [fbank[i*self.frame_length:(i+1)*self.frame_length].unsqueeze(0) for i in range(curr_frames)] + + return torch.cat(frames, dim=0) + + @classmethod + def from_config(cls, cfg=None): + if cfg is None: + cfg = OmegaConf.create() + + return cls( + model_name=cfg.get("model_name", 'iter3'), + sampling_rate=cfg.get("sampling_rate", 16000), + n_frames=cfg.get("n_frames", 2), + frame_length=cfg.get("frame_length", 512), + is_eval=cfg.get("is_eval", False) + ) \ No newline at end of file diff --git a/lavis/processors/instruction_text_processors.py b/lavis/processors/instruction_text_processors.py new file mode 100644 index 000000000..6b332f8fd --- /dev/null +++ b/lavis/processors/instruction_text_processors.py @@ -0,0 +1,502 @@ +""" + Copyright (c) 2023, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +import re + +from lavis.common.registry import registry +from lavis.processors.base_processor import BaseProcessor +from lavis.processors.randaugment import RandomAugment +from omegaconf import OmegaConf +from torchvision import transforms +from torchvision.transforms.functional import InterpolationMode +import random +import nltk +import pickle + +TEMPLATES = {"image":{}, "pc":{}, "audio":{}, "video":{}} + + +TEMPLATES["video"]["qa"] = [ +"Given the video, {}", +"Q: {} A:", +"Answer the following question based on the video: {}", +"Question: {} Answer:", +"How would you answer {} after watching the video?", +"What is the answer to the question {} after viewing the video?", +"Answer the question based on the video. Question: {} Answer: ", +"Instruction: Answer the following question by reference to the input video. Question: {} Answer:", +"Given the video, what is the answer to the question {}?", +"What's your response to the query {} after watching the video?", +"Please provide an answer to {} after watching the video", +"Respond to the query {} based on the video", +"Based on the given video, respond to {}", +"Question: {} What's your response after watching the video?", +"Consider the following query: {}", +"Could you help answer the question {}?", +"Referencing the provided video, can you answer the question {}?", +"With respect to the video shown, please answer {}", +"What's your answer to {} in the context of the provided video?", +"Question (refer to the video for context): {} Answer:", +"In response to the question {}, what would your answer be after viewing the video?" +] + +TEMPLATES["video"]["classification"] = [ +"Identify the objects in this video:", +"What objects can you spot in the clip?", +"Classify the objects in the video:", +"Name the objects visible in the video:", +"Identify and classify the objects in this video:", +"What type of objects are in the video?", +"Classify the main object in the clip:", +"Identify the primary object in this video:", +"Name the main object visible in the clip:", +"What is the central object in the video?", +"Can you classify the central object in this video?", +"Determine the type of the main object in this video:", +"What objects do you identify in the video?", +"Please classify the objects in the video:", +"Please identify the main object in the video:", +"What kind of object is displayed in the video?", +"What object is predominantly featured in the video?", +"Classify the object that is the focus of this video:", +"What is the main object in the video?", +"Identify the primary object in the video:" +] + +TEMPLATES["video"]["caption"] = [ +"A short caption for the video:", +"A short description of the video:", +"A video of", +"A video that shows", +"Describe the video briefly.", +"Write a description for the video.", +"Provide a description of what is presented in the video.", +"Briefly describe the content of the video.", +"Can you briefly explain what you see in the video?", +"Could you use a few words to describe what you perceive in the video?", +"Please provide a short description of the video.", +"Using language, provide a short account of the video.", +"Use a few words to illustrate what is happening in the video." +] + +TEMPLATES["image"]["qa"] = [ + "{}", + "Q: {} A:", + "Answer the following question: {}", + "Question: {} Answer:", + "How would you answer {}?", + "What is the answer to the question {}?", + "Answer the question based on the image. Question: {} Answer: ", + "Instruction: Answer the following question by reference to the input image. Question: {} Answer:", + "Given the photo, what is the answer to the question {}?", + "What's your response to the query {}?", + "Please provide an answer to {}", + "Respond to the query {}", + "Based on the given image, respond to {}", + "Question: {} What's your response?", + "Consider the following query: {}", + "Could you help answer the question {}?", + "Referencing the provided image, can you answer the question {}?", + "With respect to the image shown, please answer {}", + "What's your answer to {} in the context of the provided image?", + "Question (refer to the image for context): {} Answer:", + "In response to the question {}, what would your answer be?", + "Considering the details of the image, {}", + "Contemplating the image, {}", + "Upon examining the image, how would you address {}?", + "Using the image as a guideline, {}", + "From the perspective of the image, {}", + "Please provide a detailed answer to {} based on your insights from the image.", + "If you were to use the image as a sole reference, how would you address {}?", + "Factoring in the image's details, what's your take on {}?", + "In light of the provided image, {}", + "Relying solely on the image, how would you tackle {}?", + "Referencing the intricate details of the image, {}", + "Giving heed to the image, how would you reply to {}?", + "In the context of the image's attributes, {}", + "Having the image in mind, provide an answer to {}.", + "Reflecting upon the image, {}", + "Question: {}. Keeping the image in mind, please provide an answer.", + "By referencing the key aspects of the image, {}", + "While considering the intricacies of the image, how would you approach answering {}?", + "Having thoroughly reviewed the image, please respond to {}.", + "Let's focus on the image. In its context, how would you interpret {}?", + "With the nuances of the image at the forefront, {}", + "Taking a cue from the image, {}", + "Bearing in mind the characteristics of the image, how would you elucidate {}?", + "Gauging by the image, {}", + "In accordance with the image's specifications, {}", + "Drawing insights from the image, {}" +] + +TEMPLATES["image"]["classification"] = [ + "Identify the objects in this image:", + "What objects can you spot in the picture?", + "Classify the objects in the photo:", + "Name the objects visible in the image:", + "Identify and classify the objects in this image:", + "What type of objects are in the photo?", + "Classify the main object in the picture:", + "Identify the primary object in this image:", + "Name the main object visible in the photo:", + "What is the central object in the image?", + "Can you classify the central object in this photo?", + "Determine the type of the main object in this picture:", + "What objects do you identify in the photo?", + "Please classify the objects in the image:", + "Please identify the main object in the picture:", + "What kind of object is displayed in the image?", + "What object is predominantly featured in the photo?", + "Classify the object that is the focus of this image:", + "What is the main object in the picture?", + "Identify the primary object in the photo:" +] + +TEMPLATES["image"]["caption"] = [ + "A short caption:", + "A short description:", + "A short image caption:", + "A short image description:", + "A photo of", + "A photo that shows", + "A picture of", + "A picture that shows", + "An image of", + "An image that shows", + "Write a short description.", + "Write a description for the image.", + "Provide a description of what is presented in the image.", + "Briefly describe the content of the image.", + "Can you briefly explain what you see in the image?", + "Could you use a few words to describe what you perceive in the image?", + "Please provide a short description of the image.", + "Using language, provide a short account of the image.", + "Use a few words to illustrate what is happening in the photo." + "Write a description for the photo.", + "Provide a description of what is presented in the photo.", + "Briefly describe the content of the photo.", + "Can you briefly explain what you see in the photo?", + "Could you use a few words to describe what you perceive in the photo?", + "Please provide a short description of the picture.", + "Using language, provide a short account of the picture.", + "Use a few words to illustrate what is happening in the picture.", + "Write a description for the picture.", + "Provide a description of what is presented in the picture.", + "Briefly describe the content of the picture.", + "Can you briefly explain what you see in the picture?", + "Could you use a few words to describe what you perceive in the picture?", + "Please provide a short description of the picture.", + "Using language, provide a short account of the picture.", + "Use a few words to illustrate what is happening in the picture.", + "What can you tell me about this image?", + "Please detail what's in this image.", + "Narrate the scene captured in this image.", + "Describe the main elements in this photo.", + "Tell me what stands out in this picture.", + "What is the focal point of this image?", + "Please identify the primary subjects in this photo.", + "Detail the atmosphere or mood of this image.", + "Paint a verbal picture based on this image.", + "Elaborate on the contents of this photo.", + "How would you introduce this image to someone?", + "Share a summary of this image.", + "What are the notable features of this image?", + "Highlight the main themes present in this photo.", + "Sketch the scene using words.", + "Enumerate the elements you see in this image.", + "Characterize the essence of this picture.", + "Relate the story depicted in this image.", + "Describe this image as if speaking to someone who can't see it." + ] + + + +TEMPLATES["audio"]["caption"] = [ + "A short caption:", + "A short description:", + "An audio of", + "An audio that shows", + "Write a short description.", + "Write a description for the audio.", + "Provide a description of what is presented in the audio.", + "Briefly describe the content of the audio.", + "Can you briefly explain what you hear in the audio?", + "Could you use a few words to describe what you perceive in the audio?", + "Please provide a short description of the audio.", + "Using language, provide a short account of the audio.", + "Use a few words to illustrate what is happening in the audio.", + "Describe briefly the contents of the audio.", + "Please provide a brief summary of the audio.", + "What does the audio contain?", + "What can you hear in the audio?", + "What sounds are present in the audio?", + "Summarize the audio in a few words.", + "Write a brief summary of the audio content.", + "Could you provide a concise explanation of the audio's contents?", + "Describe what the audio represents.", + "What is the audio depicting?", + "In a few words, describe what you hear in the audio." +] + + +TEMPLATES["audio"]["classification"] = [ + "Classify the following audio:", + "What is the category of this audio clip?", + "Identify the content of the following audio:", + "Provide a classification for the audio.", + "Analyze and categorize the following audio.", + "Describe the category of the given audio.", + "Determine the type of this audio clip.", + "Can you classify what you hear in the audio?", + "What type of audio is this?", + "How would you classify this audio clip?", + "Please identify the category of the following audio:", + "What category does the following audio fall into?", + "Classify the sounds in this audio clip." +] + +TEMPLATES["audio"]["qa"] = [ + "{}", + "Question: {} Answer:", + "Q: {} A:", + "Based on the audio, {}", + "Answer the following question based on the audio: {}", + "Question: {} Provide an answer based on the audio.", + "How would you answer {} based on the audio?", + "What is the answer to the question {} using the audio as a reference?", + "Answer the question using the audio. Question: {} Answer: ", + "Instruction: Answer the following question by referencing the audio. Question: {} Answer:", + "Given the audio, what is the answer to the question {}?", + "What's your response to the query {} considering the audio?", + "Please provide an answer to {} using the audio as context.", + "Respond to the query {} based on the audio content.", + "Based on the provided audio, respond to {}", + "Question: {} What's your response using the audio for context?", + "Consider the following query and the audio: {}", + "Could you help answer the question {} using the audio as reference?", + "Referencing the provided audio, can you answer the question {}?", + "With respect to the audio provided, please answer {}", + "What's your answer to {} in the context of the provided audio?", + "Question (refer to the audio for context): {} Answer:", + "In response to the question {}, what would your answer be based on the audio?", + "Given the audio, how would you respond to {}?", + "Taking the audio into consideration, what is your response to {}?", + "Based on the audio, how would you answer {}?" +] + +TEMPLATES["pc"]["caption"] = [ + "A short caption:", + "A short description:", + "A short 3D caption:", + "A short 3D description:", + "A 3D model of", + "A 3D model that shows", + "Write a short description.", + "Write a description for the 3D model.", + "Provide a description of what is presented in the 3D model.", + "Briefly describe the content of the 3D model.", + "Can you briefly explain what you see in the 3D model?", + "Could you use a few words to describe what you perceive in the 3D model?", + "Please provide a short description of the 3D model.", + "Using language, provide a short account of the 3D model.", + "Use a few words to illustrate what is happening in the 3D model.", + "Describe briefly the contents of the 3D model.", + "Please provide a brief summary of the 3D model.", + "What does the 3D model contain?", + "What can you identify in the 3D model?", + "What structures are present in the 3D model?", + "Summarize the 3D model in a few words.", + "Write a brief summary of the 3D model content.", + "Could you provide a concise explanation of the 3D model's contents?", + "Describe what the 3D model represents.", + "What is the 3D model depicting?", + "In a few words, describe what you see in the 3D model.", + "What can you tell me about this image?", + "Please detail what's in this 3D model.", + "Narrate the scene captured in this 3D model.", + "Describe the main elements in this 3D model.", + "Tell me what stands out in this 3D model.", + "What is the focal point of this 3D model?", + "Please identify the primary subjects in this 3D model.", + "Detail the atmosphere or mood of this 3D model.", + "Paint a verbal picture based on this 3D model.", + "Elaborate on the contents of this 3D model.", + "How would you introduce this 3D model to someone?", + "Share a summary of this 3D model.", + "What are the notable features of this 3D model?", + "Highlight the main themes present in this 3D model.", + "Sketch the scene using words.", + "Enumerate the elements you see in this 3D model.", + "Characterize the essence of this 3D model.", + "Relate the story depicted in this 3D model.", + "Describe this 3D model as if speaking to someone who can't see it." +] + +TEMPLATES["pc"]["classification"] = [ + "Classify the following 3D model:", + "What is the category of this 3D model?", + "Identify the content of the following 3D model:", + "Provide a classification for the 3D model.", + "Analyze and categorize the following 3D model.", + "Describe the category of the given 3D model.", + "Determine the type of this 3D model.", + "Can you classify what you see in the 3D model?", + "What type of 3D model is this?", + "How would you classify this 3D model?", + "Please identify the category of the following 3D model:", + "What category does the following 3D model fall into?", + "Classify the structures in this 3D model." +] + +TEMPLATES["pc"]["qa"] = [ + "{}", + "Question: {} Answer:", + "Q: {} A:", + "Based on the 3D model, {}", + "Answer the following question based on the 3D model: {}", + "Question: {} Provide an answer based on the 3D model.", + "How would you answer {} based on the 3D model?", + "What is the answer to the question {} using the 3D model as a reference?", + "Answer the question using the 3D model. Question: {} Answer: ", + "Instruction: Answer the following question by referencing the 3D model. Question: {} Answer:", + "Given the 3D model, what is the answer to the question {}?", + "What's your response to the query {} considering the 3D model?", + "Please provide an answer to {} using the 3D model as context.", + "Respond to the query {} based on the 3D model content.", + "Based on the provided 3D model, respond to {}", + "Question: {} What's your response using the 3D model for context?", + "Consider the following query and the 3D model: {}", + "Could you help answer the question {} using the 3D model as reference?", + "Referencing the provided 3D model, can you answer the question {}?", + "With respect to the 3D model provided, please answer {}", + "What's your answer to {} in the context of the provided 3D model?", + "Question (refer to the 3D model for context): {} Answer:", + "In response to the question {}, what would your answer be based on the 3D model?", + "Given the 3D model, how would you respond to {}?", + "Taking the 3D model into consideration, what is your response to {}?", + "Based on the 3D model, how would you answer {}?", + "Considering the details of the 3D model, {}", + "Contemplating the 3D model, {}", + "Upon examining the 3D model, how would you address {}?", + "Using the 3D model as a guideline, {}", + "From the perspective of the 3D model, {}", + "Please provide a detailed answer to {} based on your insights from the 3D model.", + "If you were to use the 3D model as a sole reference, how would you address {}?", + "Factoring in the 3D model's details, what's your take on {}?", + "In light of the provided 3D model, {}", + "Relying solely on the 3D model, how would you tackle {}?", + "Referencing the intricate details of the 3D model, {}", + "Giving heed to the 3D model, how would you reply to {}?", + "In the context of the 3D model's attributes, {}", + "Having the 3D model in mind, provide an answer to {}.", + "Reflecting upon the 3D model, {}", + "Question: {}. Keeping the 3D model in mind, please provide an answer.", + "By referencing the key aspects of the 3D model, {}", + "While considering the intricacies of the 3D model, how would you approach answering {}?", + "Having thoroughly reviewed the 3D model, please respond to {}.", + "Let's focus on the 3D model. In its context, how would you interpret {}?", + "With the nuances of the 3D model at the forefront, {}", + "Taking a cue from the 3D model, {}", + "Bearing in mind the characteristics of the 3D model, how would you elucidate {}?", + "Gauging by the 3D model, {}", + "In accordance with the 3D model's specifications, {}", + "Drawing insights from the 3D model, {}" +] + + +@registry.register_processor("blip_instruction") +class BlipInstructionProcessor(BaseProcessor): + def __init__(self, prompt, max_words, modality, task, cmu_dict_path): + self.prompt = prompt + self.max_words = max_words + self.modality = modality + self.task = task + if task == 'classification': + ## download cmu_dict and save it as pickle file + if cmu_dict_path: + self.pronounciations = pickle.load(open(cmu_dict_path, 'rb')) + else: + # try: + # nltk.download('cmudict') + # except: + # pass + from nltk.corpus import cmudict + self.pronounciations = cmudict.dict() + + + def classification_output(self, label): + if self.starts_with_vowel_sound(label) or label[0] in 'aeiou': + label = 'an ' + label + else: + label = 'a ' + label + if self.modality == "audio": + prompts = ["This is ", "It is ", "I hear ", "The audio is ", "This is the sound of ", ""] + else: + prompts = ["", "This is ", "It is "] + caption = random.choice(prompts) + label + return caption.lower() + + def starts_with_vowel_sound(self,word): + for syllables in self.pronounciations.get(word, []): + return syllables[0][-1].isdigit() # use only the first one + + + def __call__(self, caption): + if self.task == 'eval': + if caption == "": + caption = self.prompt + else: + caption = self.pre_caption(caption) + return caption + if caption == "" and self.task == 'caption': + caption = self.prompt + random.choice(TEMPLATES[self.modality][self.task]) + elif self.task == 'qa': + caption = self.prompt + random.choice(TEMPLATES[self.modality][self.task]).format(caption).replace('??', '?') + elif self.task == 'classification': + if caption == "": + caption = self.prompt + random.choice(TEMPLATES[self.modality][self.task]) + else: + caption = self.classification_output(caption) + else: + caption = self.pre_caption(caption) + + return caption.lower().strip() + + @classmethod + def from_config(classification, cfg=None): + if cfg is None: + cfg = OmegaConf.create() + + prompt = cfg.get("prompt", "") + max_words = cfg.get("max_words", 50) + modality = cfg.get("modality", 'image') + task = cfg.get("task", 'caption') + cmu_dict_path = cfg.get("cmu_dict_path", None) + return classification(prompt=prompt, max_words=max_words, modality=modality, task=task, cmu_dict_path=cmu_dict_path) + + def pre_caption(self, caption): + if isinstance(caption,list): + caption = random.choice(caption) + caption = re.sub( + r"([.!\"()*#:;~])", + " ", + caption.lower(), + ) + caption = re.sub( + r"\s{2,}", + " ", + caption, + ) + caption = caption.rstrip("\n") + caption = caption.strip(" ") + + # truncate caption + caption_words = caption.split(" ") + if len(caption_words) > self.max_words: + caption = " ".join(caption_words[: self.max_words]) + + return caption \ No newline at end of file diff --git a/lavis/processors/ulip_processors.py b/lavis/processors/ulip_processors.py new file mode 100644 index 000000000..a2aecbea8 --- /dev/null +++ b/lavis/processors/ulip_processors.py @@ -0,0 +1,260 @@ +""" + Copyright (c) 2022, salesforce.com, inc. + All rights reserved. + SPDX-License-Identifier: BSD-3-Clause + For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +""" + +""" +Adapted from ULIP codebase: https://github.com/salesforce/ULIP +""" + +from lavis.common.registry import registry +from lavis.processors.blip_processors import BlipImageBaseProcessor +from omegaconf import OmegaConf +import torchvision.transforms as transforms +from lavis.models.ulip_models.utils.io import IO + +import numpy as np +from PIL import Image +import torch + + +def pc_norm(pc): + """ pc: NxC, return NxC """ + centroid = np.mean(pc, axis=0) + pc = pc - centroid + m = np.max(np.sqrt(np.sum(pc ** 2, axis=1))) + pc = pc / m + return pc + +def random_sample(permutation, pc, num): + np.random.shuffle(permutation) + pc = pc[permutation[:num]] + return pc + +def pil_loader(path): + # open path as file to avoid ResourceWarning (https://github.com/python-pillow/Pillow/issues/835) + with open(path, 'rb') as f: + img = Image.open(f) + return img.convert('RGB') + +def pc_normalize(pc): + centroid = np.mean(pc, axis=0) + pc = pc - centroid + m = np.max(np.sqrt(np.sum(pc**2, axis=1))) + pc = pc / m + return pc + +def farthest_point_sample(point, npoint): + """ + Input: + xyz: pointcloud data, [N, D] + npoint: number of samples + Return: + centroids: sampled pointcloud index, [npoint, D] + """ + N, D = point.shape + xyz = point[:,:3] + centroids = np.zeros((npoint,)) + distance = np.ones((N,)) * 1e10 + farthest = np.random.randint(0, N) + for i in range(npoint): + centroids[i] = farthest + centroid = xyz[farthest, :] + dist = np.sum((xyz - centroid) ** 2, -1) + mask = dist < distance + distance[mask] = dist[mask] + farthest = np.argmax(distance, -1) + point = point[centroids.astype(np.int32)] + return point + +def rotate_point_cloud(batch_data): + """ Randomly rotate the point clouds to augument the dataset + rotation is per shape based along up direction + Input: + BxNx3 array, original batch of point clouds + Return: + BxNx3 array, rotated batch of point clouds + """ + rotated_data = np.zeros(batch_data.shape, dtype=np.float32) + for k in range(batch_data.shape[0]): + rotation_angle = np.random.uniform() * 2 * np.pi + cosval = np.cos(rotation_angle) + sinval = np.sin(rotation_angle) + rotation_matrix = np.array([[cosval, 0, sinval], + [0, 1, 0], + [-sinval, 0, cosval]]) + shape_pc = batch_data[k, ...] + rotated_data[k, ...] = np.dot(shape_pc.reshape((-1, 3)), rotation_matrix) + return rotated_data + +def random_point_dropout(batch_pc, max_dropout_ratio=0.875): + ''' batch_pc: BxNx3 ''' + for b in range(batch_pc.shape[0]): + dropout_ratio = np.random.random()*max_dropout_ratio # 0~0.875 + drop_idx = np.where(np.random.random((batch_pc.shape[1]))<=dropout_ratio)[0] + if len(drop_idx)>0: + batch_pc[b,drop_idx,:] = batch_pc[b,0,:] # set to the first point + return batch_pc + +def random_scale_point_cloud(batch_data, scale_low=0.8, scale_high=1.25): + """ Randomly scale the point cloud. Scale is per point cloud. + Input: + BxNx3 array, original batch of point clouds + Return: + BxNx3 array, scaled batch of point clouds + """ + B, N, C = batch_data.shape + scales = np.random.uniform(scale_low, scale_high, B) + for batch_index in range(B): + batch_data[batch_index,:,:] *= scales[batch_index] + return batch_data + +def shift_point_cloud(batch_data, shift_range=0.1): + """ Randomly shift point cloud. Shift is per point cloud. + Input: + BxNx3 array, original batch of point clouds + Return: + BxNx3 array, shifted batch of point clouds + """ + B, N, C = batch_data.shape + shifts = np.random.uniform(-shift_range, shift_range, (B,3)) + for batch_index in range(B): + batch_data[batch_index,:,:] += shifts[batch_index,:] + return batch_data + +def jitter_point_cloud(batch_data, sigma=0.01, clip=0.05): + """ Randomly jitter points. jittering is per point. + Input: + BxNx3 array, original batch of point clouds + Return: + BxNx3 array, jittered batch of point clouds + """ + B, N, C = batch_data.shape + assert(clip > 0) + jittered_data = np.clip(sigma * np.random.randn(B, N, C), -1*clip, clip) + jittered_data += batch_data + return jittered_data + +def rotate_perturbation_point_cloud(batch_data, angle_sigma=0.06, angle_clip=0.18): + """ Randomly perturb the point clouds by small rotations + Input: + BxNx3 array, original batch of point clouds + Return: + BxNx3 array, rotated batch of point clouds + """ + rotated_data = np.zeros(batch_data.shape, dtype=np.float32) + for k in range(batch_data.shape[0]): + angles = np.clip(angle_sigma*np.random.randn(3), -angle_clip, angle_clip) + Rx = np.array([[1,0,0], + [0,np.cos(angles[0]),-np.sin(angles[0])], + [0,np.sin(angles[0]),np.cos(angles[0])]]) + Ry = np.array([[np.cos(angles[1]),0,np.sin(angles[1])], + [0,1,0], + [-np.sin(angles[1]),0,np.cos(angles[1])]]) + Rz = np.array([[np.cos(angles[2]),-np.sin(angles[2]),0], + [np.sin(angles[2]),np.cos(angles[2]),0], + [0,0,1]]) + R = np.dot(Rz, np.dot(Ry,Rx)) + shape_pc = batch_data[k, ...] + rotated_data[k, ...] = np.dot(shape_pc.reshape((-1, 3)), R) + return rotated_data + + +@registry.register_processor("ulip_pc") +class ULIPPCProcessor(BlipImageBaseProcessor): + def __init__( + self, + npoints=8192, + augment=False, + uniform=True, + ssl=False, + oversample=False, + use_height=False, + ): + + super().__init__() + + self.npoints=npoints + self.augment=augment + self.uniform=uniform + self.ssl=ssl + self.oversample=oversample + self.use_height=use_height + self.permutation = np.arange(self.npoints) + + + def __call__(self, pc_data_path): + if isinstance(pc_data_path, np.ndarray): + pc_data = pc_data_path + else: + try: + pc_data = np.load(pc_data_path, allow_pickle=True)['arr_0'].astype(np.float32) + except: + pc_data = IO.get(pc_data_path).astype(np.float32) + data = pc_norm(pc_data) + + if self.uniform and self.npoints < data.shape[0]: + data = farthest_point_sample(data, self.npoints) + else: + data = random_sample(self.permutation, data, self.npoints) + + if self.augment: + data = random_point_dropout(data[None, ...]) + data = random_scale_point_cloud(data) + data = shift_point_cloud(data) + data = rotate_perturbation_point_cloud(data) + data = rotate_point_cloud(data) + data = data.squeeze() + + if self.ssl: + data_for_aug = data[:] + data_aug_1 = random_point_dropout(data_for_aug[None, ...]) + data_aug_1 = random_scale_point_cloud(data_aug_1, scale_low=0.5, scale_high=1.5) + data_aug_1 = shift_point_cloud(data_aug_1, shift_range=0.4) + data_aug_1 = rotate_perturbation_point_cloud(data_aug_1, angle_sigma=0.1, angle_clip=0.3) + data_aug_1 = rotate_point_cloud(data_aug_1) + data_aug_1 = data_aug_1.squeeze() + + data_aug_2 = random_point_dropout(data_for_aug[None, ...]) + data_aug_2 = random_scale_point_cloud(data_aug_2, scale_low=0.5, scale_high=1.5) + data_aug_2 = shift_point_cloud(data_aug_2, shift_range=0.4) + data_aug_2 = rotate_perturbation_point_cloud(data_aug_2, angle_sigma=0.1, angle_clip=0.3) + data_aug_2 = rotate_point_cloud(data_aug_2) + data_aug_2 = data_aug_2.squeeze() + + if self.use_height: + self.gravity_dim = 1 + height_array = data[:, self.gravity_dim:self.gravity_dim + 1] - data[:, + self.gravity_dim:self.gravity_dim + 1].min() + data = np.concatenate((data, height_array), axis=1) + data = torch.from_numpy(data).float() + else: + data = torch.from_numpy(data).float() + + if self.ssl: + return {"data": data, "data_aug_1": data_aug_1, "data_aug_2": data_aug_2} + else: + return data + + @classmethod + def from_config(cls, cfg=None): + if cfg is None: + cfg = OmegaConf.create() + + npoints= cfg.get('npoints', 8192) + augment= cfg.get('augment',False) + uniform= cfg.get('uniform',True) + ssl= cfg.get('ssl',False) + oversample= cfg.get('oversample',False) + use_height= cfg.get('use_height',False) + + return cls( + npoints=npoints, + augment=augment, + uniform=uniform, + ssl=ssl, + oversample=oversample, + use_height=use_height, + ) \ No newline at end of file diff --git a/lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xl_eval.yaml b/lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xl_eval.yaml new file mode 100644 index 000000000..81e1c10a2 --- /dev/null +++ b/lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xl_eval.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5 + model_type: pretrain_flant5xl + use_grad_checkpoint: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + eval: + name: "blip_image_eval" + image_size: 224 + + text_processor: + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/BLIP2/nocaps_out_domain_captioning_flant5xl/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xxl_eval.yaml b/lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xxl_eval.yaml new file mode 100644 index 000000000..c0982a2c7 --- /dev/null +++ b/lavis/projects/blip2/eval/caption_nocaps_out_domain_flant5xxl_eval.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5 + model_type: pretrain_flant5xxl + use_grad_checkpoint: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + eval: + name: "blip_image_eval" + image_size: 224 + + text_processor: + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/BLIP2/nocaps_out_domain_captioning_flant5xxl/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/instructblip/caption_coco_flant5xl_eval_test.yaml b/lavis/projects/instructblip/caption_coco_flant5xl_eval_test.yaml new file mode 100644 index 000000000..d6fe2a27e --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_flant5xl_eval_test.yaml @@ -0,0 +1,89 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_flant5xl_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/caption_coco_flant5xl_eval_val.yaml b/lavis/projects/instructblip/caption_coco_flant5xl_eval_val.yaml new file mode 100644 index 000000000..77c0e5e90 --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_flant5xl_eval_val.yaml @@ -0,0 +1,89 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_flant5xl_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/caption_coco_flant5xxl_eval_test.yaml b/lavis/projects/instructblip/caption_coco_flant5xxl_eval_test.yaml new file mode 100644 index 000000000..50ea024d0 --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_flant5xxl_eval_test.yaml @@ -0,0 +1,89 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_flant5xxl_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/caption_coco_flant5xxl_eval_val.yaml b/lavis/projects/instructblip/caption_coco_flant5xxl_eval_val.yaml new file mode 100644 index 000000000..bc15cd9cc --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_flant5xxl_eval_val.yaml @@ -0,0 +1,89 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_flant5xxl_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/caption_coco_vicuna13b_eval_test.yaml b/lavis/projects/instructblip/caption_coco_vicuna13b_eval_test.yaml new file mode 100644 index 000000000..fc4f6a607 --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_vicuna13b_eval_test.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_vicuna13b_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_coco_vicuna13b_eval_val.yaml b/lavis/projects/instructblip/caption_coco_vicuna13b_eval_val.yaml new file mode 100644 index 000000000..df6b113e9 --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_vicuna13b_eval_val.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_vicuna13b_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_coco_vicuna7b_eval_test.yaml b/lavis/projects/instructblip/caption_coco_vicuna7b_eval_test.yaml new file mode 100644 index 000000000..813a738b0 --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_vicuna7b_eval_test.yaml @@ -0,0 +1,89 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_vicuna7b_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_coco_vicuna7b_eval_val.yaml b/lavis/projects/instructblip/caption_coco_vicuna7b_eval_val.yaml new file mode 100644 index 000000000..e4cfa812f --- /dev/null +++ b/lavis/projects/instructblip/caption_coco_vicuna7b_eval_val.yaml @@ -0,0 +1,89 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "A short image caption." + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/coco_captioning_vicuna7b_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_test.yaml b/lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_test.yaml new file mode 100644 index 000000000..a23fb154e --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_test.yaml @@ -0,0 +1,95 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: a short description + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_flant5xl_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_test_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_val.yaml b/lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_val.yaml new file mode 100644 index 000000000..c7b2608ee --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_flant5xl_eval_val.yaml @@ -0,0 +1,96 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_flant5xl_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_test.yaml b/lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_test.yaml new file mode 100644 index 000000000..2d7b68d3e --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_test.yaml @@ -0,0 +1,96 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_flant5xxl_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_test_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_val.yaml b/lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_val.yaml new file mode 100644 index 000000000..2dad0743c --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_flant5xxl_eval_val.yaml @@ -0,0 +1,96 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_flant5xxl_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_test.yaml b/lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_test.yaml new file mode 100644 index 000000000..4dfa7f881 --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_test.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_vicuna13b_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_test_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_val.yaml b/lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_val.yaml new file mode 100644 index 000000000..c4ac576d0 --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_vicuna13b_eval_val.yaml @@ -0,0 +1,94 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_vicuna13b_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_test.yaml b/lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_test.yaml new file mode 100644 index 000000000..0b573df81 --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_test.yaml @@ -0,0 +1,95 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 1 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + length_penalty: 1. + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_vicuna7b_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_test_annotations.json + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_val.yaml b/lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_val.yaml new file mode 100644 index 000000000..736b3ece9 --- /dev/null +++ b/lavis/projects/instructblip/caption_msrvtt_vicuna7b_eval_val.yaml @@ -0,0 +1,95 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "a short description" + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + length_penalty: 1. + + seed: 42 + output_dir: "output/instructblip/msrvtt_caption_vicuna7b_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/caption_msvd_flant5xl_eval.yaml b/lavis/projects/instructblip/caption_msvd_flant5xl_eval.yaml new file mode 100644 index 000000000..5fde071d1 --- /dev/null +++ b/lavis/projects/instructblip/caption_msvd_flant5xl_eval.yaml @@ -0,0 +1,92 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "a short description" + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msvd_caption_flant5xl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/instructblip/caption_msvd_flant5xxl_eval.yaml b/lavis/projects/instructblip/caption_msvd_flant5xxl_eval.yaml new file mode 100644 index 000000000..f88ba7f2e --- /dev/null +++ b/lavis/projects/instructblip/caption_msvd_flant5xxl_eval.yaml @@ -0,0 +1,92 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "a short description" + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/msvd_caption_flant5xxl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/instructblip/caption_msvd_vicuna13b_eval.yaml b/lavis/projects/instructblip/caption_msvd_vicuna13b_eval.yaml new file mode 100644 index 000000000..7ec9638bb --- /dev/null +++ b/lavis/projects/instructblip/caption_msvd_vicuna13b_eval.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "a short description" + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + seed: 42 + output_dir: "output/instructblip/msvd_caption_vicuna13b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/instructblip/caption_msvd_vicuna7b_eval.yaml b/lavis/projects/instructblip/caption_msvd_vicuna7b_eval.yaml new file mode 100644 index 000000000..cc80ce15b --- /dev/null +++ b/lavis/projects/instructblip/caption_msvd_vicuna7b_eval.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "a short description" + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + seed: 42 + output_dir: "output/instructblip/msvd_caption_vicuna7b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/instructblip/caption_nocaps_out_domain_flant5xl_eval.yaml b/lavis/projects/instructblip/caption_nocaps_out_domain_flant5xl_eval.yaml new file mode 100644 index 000000000..1d79075d7 --- /dev/null +++ b/lavis/projects/instructblip/caption_nocaps_out_domain_flant5xl_eval.yaml @@ -0,0 +1,82 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "A short image caption." + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + eval: + name: "blip_image_eval" + image_size: 224 + + text_processor: + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/instructblip/nocaps_out_domain_captioning_flant5xl/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/instructblip/caption_nocaps_out_domain_flant5xxl_eval.yaml b/lavis/projects/instructblip/caption_nocaps_out_domain_flant5xxl_eval.yaml new file mode 100644 index 000000000..8d66c5d16 --- /dev/null +++ b/lavis/projects/instructblip/caption_nocaps_out_domain_flant5xxl_eval.yaml @@ -0,0 +1,82 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "A short image caption." + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + eval: + name: "blip_image_eval" + image_size: 224 + + text_processor: + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/instructblip/nocaps_out_domain_captioning_flant5xxl/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/instructblip/caption_nocaps_out_domain_vicuna13b_eval.yaml b/lavis/projects/instructblip/caption_nocaps_out_domain_vicuna13b_eval.yaml new file mode 100644 index 000000000..365496013 --- /dev/null +++ b/lavis/projects/instructblip/caption_nocaps_out_domain_vicuna13b_eval.yaml @@ -0,0 +1,82 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "A short image caption." + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + eval: + name: "blip_image_eval" + image_size: 224 + + text_processor: + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/instructblip/nocaps_out_domain_captioning_vicuna13b/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/instructblip/caption_nocaps_out_domain_vicuna7b_eval.yaml b/lavis/projects/instructblip/caption_nocaps_out_domain_vicuna7b_eval.yaml new file mode 100644 index 000000000..87f383228 --- /dev/null +++ b/lavis/projects/instructblip/caption_nocaps_out_domain_vicuna7b_eval.yaml @@ -0,0 +1,82 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "A short image caption." + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + eval: + name: "blip_image_eval" + image_size: 224 + + text_processor: + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + # prompt: an image that shows + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/instructblip/nocaps_out_domain_captioning_vicuna7b/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/instructblip/caption_vatex_flant5xl_eval.yaml b/lavis/projects/instructblip/caption_vatex_flant5xl_eval.yaml new file mode 100644 index 000000000..14484ddfa --- /dev/null +++ b/lavis/projects/instructblip/caption_vatex_flant5xl_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "a short description" + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/vatex_caption_flant5xl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_vatex_flant5xxl_eval.yaml b/lavis/projects/instructblip/caption_vatex_flant5xxl_eval.yaml new file mode 100644 index 000000000..cf210113f --- /dev/null +++ b/lavis/projects/instructblip/caption_vatex_flant5xxl_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "a short description" + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/vatex_caption_flant5xxl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_vatex_vicuna13b_eval.yaml b/lavis/projects/instructblip/caption_vatex_vicuna13b_eval.yaml new file mode 100644 index 000000000..e7e51bdd4 --- /dev/null +++ b/lavis/projects/instructblip/caption_vatex_vicuna13b_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "describe the video" + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 0. + + + seed: 42 + output_dir: "output/instructblip/msvd_caption_vicuna13b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/caption_vatex_vicuna7b_eval.yaml b/lavis/projects/instructblip/caption_vatex_vicuna7b_eval.yaml new file mode 100644 index 000000000..70559fc8e --- /dev/null +++ b/lavis/projects/instructblip/caption_vatex_vicuna7b_eval.yaml @@ -0,0 +1,91 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "a short description" + + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 1. + + + seed: 42 + output_dir: "output/instructblip/vatex_caption_vicuna7b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/classification_modelnet40_vicuna13b.yaml b/lavis/projects/instructblip/classification_modelnet40_vicuna13b.yaml new file mode 100644 index 000000000..1891a79e0 --- /dev/null +++ b/lavis/projects/instructblip/classification_modelnet40_vicuna13b.yaml @@ -0,0 +1,101 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "describe the 3d model." + format_candidates_prompt: " a 3d model of a {}" + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc, images] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet_images8192 + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the 3d model." + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/instructblip/modelent_classification_vicuna13b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/classification_modelnet40_vicuna7b.yaml b/lavis/projects/instructblip/classification_modelnet40_vicuna7b.yaml new file mode 100644 index 000000000..ad3906b67 --- /dev/null +++ b/lavis/projects/instructblip/classification_modelnet40_vicuna7b.yaml @@ -0,0 +1,100 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "describe the 3d model." + format_candidates_prompt: " a 3d model of a {}" + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc, images] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet_images8192 + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the 3d model." + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/instructblip/modelent_classification_vicuna7b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/instructblip/classification_snlive_flant5xl.yaml b/lavis/projects/instructblip/classification_snlive_flant5xl.yaml new file mode 100644 index 000000000..6f5647064 --- /dev/null +++ b/lavis/projects/instructblip/classification_snlive_flant5xl.yaml @@ -0,0 +1,94 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: +## note flant5 has been trained on snli + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/snlive_classification_flant5xl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/classification_snlive_flant5xxl.yaml b/lavis/projects/instructblip/classification_snlive_flant5xxl.yaml new file mode 100644 index 000000000..6aa66f63f --- /dev/null +++ b/lavis/projects/instructblip/classification_snlive_flant5xxl.yaml @@ -0,0 +1,95 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: +## note flant5 has been trained on snli + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "" + + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/snlive_classification_flant5xxl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/classification_snlive_vicuna13b.yaml b/lavis/projects/instructblip/classification_snlive_vicuna13b.yaml new file mode 100644 index 000000000..92681c9c5 --- /dev/null +++ b/lavis/projects/instructblip/classification_snlive_vicuna13b.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/snlive_classification_vicuna13b_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/classification_snlive_vicuna13b_test.yaml b/lavis/projects/instructblip/classification_snlive_vicuna13b_test.yaml new file mode 100644 index 000000000..93be7b1d4 --- /dev/null +++ b/lavis/projects/instructblip/classification_snlive_vicuna13b_test.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/snlive_classification_vicuna13b_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/classification_snlive_vicuna7b_test.yaml b/lavis/projects/instructblip/classification_snlive_vicuna7b_test.yaml new file mode 100644 index 000000000..b938d19b1 --- /dev/null +++ b/lavis/projects/instructblip/classification_snlive_vicuna7b_test.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/snlive_classification_vicuna7b_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/classification_snlive_vicuna7b_val.yaml b/lavis/projects/instructblip/classification_snlive_vicuna7b_val.yaml new file mode 100644 index 000000000..5427b6a53 --- /dev/null +++ b/lavis/projects/instructblip/classification_snlive_vicuna7b_val.yaml @@ -0,0 +1,93 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/dongxuli/data/lavis/snli/ve_train.json + storage: + - snli/annotations/ve_train.json + val: + url: + - /export/share/dongxuli/data/lavis/snli/ve_dev.json + storage: + - snli/annotations/ve_dev.json + test: + url: + - /export/share/dongxuli/data/lavis/snli/ve_test.json + storage: + - snli/annotations/ve_test.json + images: + # storage: flickr30k/images/flickr30k-images + storage: /export/share/datasets/vision/flickr30k/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/snlive_classification_vicuna7b_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/completion_modelnet40_vicuna13b.yaml b/lavis/projects/instructblip/completion_modelnet40_vicuna13b.yaml new file mode 100644 index 000000000..c8e96151e --- /dev/null +++ b/lavis/projects/instructblip/completion_modelnet40_vicuna13b.yaml @@ -0,0 +1,101 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "describe the 3d model" + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [images,pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet_images8192 + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/instructblip/modelent_completion_vicuna13b/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/instructblip/completion_modelnet40_vicuna7b.yaml b/lavis/projects/instructblip/completion_modelnet40_vicuna7b.yaml new file mode 100644 index 000000000..ccb0ccb62 --- /dev/null +++ b/lavis/projects/instructblip/completion_modelnet40_vicuna7b.yaml @@ -0,0 +1,102 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "describe the 3d model" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [images, pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet_images8192 + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/instructblip/modelent_completion_vicuna7b/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/instructblip/qa_msrvtt_flant5xl_eval_test.yaml b/lavis/projects/instructblip/qa_msrvtt_flant5xl_eval_test.yaml new file mode 100644 index 000000000..491de9bc1 --- /dev/null +++ b/lavis/projects/instructblip/qa_msrvtt_flant5xl_eval_test.yaml @@ -0,0 +1,92 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_qa_flant5xl_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/qa_msrvtt_flant5xxl_eval_test.yaml b/lavis/projects/instructblip/qa_msrvtt_flant5xxl_eval_test.yaml new file mode 100644 index 000000000..5dc726fce --- /dev/null +++ b/lavis/projects/instructblip/qa_msrvtt_flant5xxl_eval_test.yaml @@ -0,0 +1,92 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_qa_flant5xxl_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/qa_msrvtt_vicuna13b_eval_test.yaml b/lavis/projects/instructblip/qa_msrvtt_vicuna13b_eval_test.yaml new file mode 100644 index 000000000..0467b44b3 --- /dev/null +++ b/lavis/projects/instructblip/qa_msrvtt_vicuna13b_eval_test.yaml @@ -0,0 +1,92 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_qa_vicuna13b_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/qa_msrvtt_vicuna7b_eval_test.yaml b/lavis/projects/instructblip/qa_msrvtt_vicuna7b_eval_test.yaml new file mode 100644 index 000000000..e60a48f23 --- /dev/null +++ b/lavis/projects/instructblip/qa_msrvtt_vicuna7b_eval_test.yaml @@ -0,0 +1,92 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msrvtt_qa_vicuna7b_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + diff --git a/lavis/projects/instructblip/qa_msvd_flant5xl_eval.yaml b/lavis/projects/instructblip/qa_msvd_flant5xl_eval.yaml new file mode 100644 index 000000000..fd2f9d6d6 --- /dev/null +++ b/lavis/projects/instructblip/qa_msvd_flant5xl_eval.yaml @@ -0,0 +1,100 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "Question: {} Short Answer:" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msvd_qa_flant5xl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_msvd_flant5xxl_eval.yaml b/lavis/projects/instructblip/qa_msvd_flant5xxl_eval.yaml new file mode 100644 index 000000000..2d3ecee13 --- /dev/null +++ b/lavis/projects/instructblip/qa_msvd_flant5xxl_eval.yaml @@ -0,0 +1,100 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "Question: {} Short Answer:" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msvd_qa_flant5xxl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_msvd_vicuna13b_eval.yaml b/lavis/projects/instructblip/qa_msvd_vicuna13b_eval.yaml new file mode 100644 index 000000000..fe5fd31f0 --- /dev/null +++ b/lavis/projects/instructblip/qa_msvd_vicuna13b_eval.yaml @@ -0,0 +1,100 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "Question: {} Short Answer:" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msvd_qa_vicuna13b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_msvd_vicuna7b_eval.yaml b/lavis/projects/instructblip/qa_msvd_vicuna7b_eval.yaml new file mode 100644 index 000000000..7f0c46173 --- /dev/null +++ b/lavis/projects/instructblip/qa_msvd_vicuna7b_eval.yaml @@ -0,0 +1,100 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "Question: {} Short Answer:" + length_penalty: -1. + + + seed: 42 + output_dir: "output/instructblip/msvd_qa_vicuna7b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_okvqa_flant5xl_eval.yaml b/lavis/projects/instructblip/qa_okvqa_flant5xl_eval.yaml new file mode 100644 index 000000000..78e1f61b3 --- /dev/null +++ b/lavis/projects/instructblip/qa_okvqa_flant5xl_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xl + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/okavqa_qa_flant5xl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_okvqa_flant5xxl_eval.yaml b/lavis/projects/instructblip/qa_okvqa_flant5xxl_eval.yaml new file mode 100644 index 000000000..b0cd6555c --- /dev/null +++ b/lavis/projects/instructblip/qa_okvqa_flant5xxl_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_t5_instruct + model_type: flant5xxl + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/okavqa_qa_flant5xxl/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_okvqa_vicuna13b_eval.yaml b/lavis/projects/instructblip/qa_okvqa_vicuna13b_eval.yaml new file mode 100644 index 000000000..ccddfc32d --- /dev/null +++ b/lavis/projects/instructblip/qa_okvqa_vicuna13b_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna13b + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/okavqa_qa_vicuna13b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/instructblip/qa_okvqa_vicuna7b_eval.yaml b/lavis/projects/instructblip/qa_okvqa_vicuna7b_eval.yaml new file mode 100644 index 000000000..0cb0b202f --- /dev/null +++ b/lavis/projects/instructblip/qa_okvqa_vicuna7b_eval.yaml @@ -0,0 +1,90 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + prompt: "Question: {} Short Answer:" + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + length_penalty: -1. + + seed: 42 + output_dir: "output/instructblip/okavqa_qa_vicuna7b/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption.yaml new file mode 100644 index 000000000..fd99d95e6 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption.yaml @@ -0,0 +1,176 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: True + use_describe: False + enumerate_inputs: False + add_space: True + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: True + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 0 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/audio_video_caption" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption_13b.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption_13b.yaml new file mode 100644 index 000000000..c2d76f0b7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_caption_13b.yaml @@ -0,0 +1,176 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: True + use_describe: False + enumerate_inputs: False + add_space: True + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: True + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 0 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/discrn/audio_video_caption" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe.yaml new file mode 100644 index 000000000..8abfdb253 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe.yaml @@ -0,0 +1,176 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: 100 + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/audio_video_describe" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_13b.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_13b.yaml new file mode 100644 index 000000000..0d3bd3270 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_13b.yaml @@ -0,0 +1,177 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer_last.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + # special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + remove_start: True + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: 100 + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/discrn/audio_video_describe" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_nocue.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_nocue.yaml new file mode 100644 index 000000000..cc5746040 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_nocue.yaml @@ -0,0 +1,176 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/audio_video_describe_nocue" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj copy.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj copy.yaml new file mode 100644 index 000000000..8ce996f97 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj copy.yaml @@ -0,0 +1,179 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio/20231115194/checkpoint_65001.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + projection_only_audio: True + projection_path_audio: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + proj_dim: 768 + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/audio_video_describe_proj" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj.yaml new file mode 100644 index 000000000..8ce996f97 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_proj.yaml @@ -0,0 +1,179 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio/20231115194/checkpoint_65001.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + projection_only_audio: True + projection_path_audio: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + proj_dim: 768 + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/audio_video_describe_proj" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_rand_init.yaml b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_rand_init.yaml new file mode 100644 index 000000000..9ffe02363 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/audio_video_describe_rand_init.yaml @@ -0,0 +1,176 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_no_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : [audio, video] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + + +datasets: + audio_video_discrn: + # data_dir: ${env.data_dir}/datasets + audio_processor: + train: + name: beats_audio + n_frames: 2 + eval: + name: beats_audio + n_frames: 2 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + data_type: [audio, video] # [images|videos|features] + + build_info: + kwargs: + total: all + shuffle_modalities: False + balance_labels: True + dataset_name: audiocaps + ground_truth: False + classnames: [audio, video] + raw: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/audiocaps.json + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio/val + video: + storage: /export/einstein-vision/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/audio/val + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/audio_video_describe_rand_init" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption.yaml new file mode 100644 index 000000000..473463487 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: True + use_describe: False + enumerate_inputs: False + add_space: True + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # [images|videos|features] + + + build_info: + kwargs: + total: all + raw: True + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 10 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/image_3d_caption" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption_13b.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption_13b.yaml new file mode 100644 index 000000000..df33cb3ed --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_caption_13b.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: True + use_describe: False + enumerate_inputs: False + add_space: True + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # [images|videos|features] + + + build_info: + kwargs: + total: 100 + raw: True + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 2 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/discrn/image_3d_caption" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe.yaml new file mode 100644 index 000000000..883e66ae7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # [images|videos|features] + + + build_info: + kwargs: + total: all + raw: False + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 10 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: 1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/image_3d_describe" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_13b.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_13b.yaml new file mode 100644 index 000000000..3dc0b077c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_13b.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # [images|videos|features] + + + build_info: + kwargs: + total: all + raw: False + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 10 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/image_3d_describe" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_no_init.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_no_init.yaml new file mode 100644 index 000000000..7ff45b13f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_no_init.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer_no_init.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # [images|videos|features] + + + build_info: + kwargs: + total: all + raw: False + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 10 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: 1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/image_3d_describe" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_nocue.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_nocue.yaml new file mode 100644 index 000000000..2e600bd8c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_nocue.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # # [images|videos|features] + + + build_info: + kwargs: + total: all + raw: False + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/image_3d_describe_nocue" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_proj.yaml b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_proj.yaml new file mode 100644 index 000000000..57c73209f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/discrn/image_3d_describe_proj.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: null + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question: {} answer:" + modalities : [image, pc] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "You are given two inputs. Select exactly one of the two by referece to its relative position (first or second, left or right) that best answers the question. " + predict_with_gen: False + use_caption: False + use_describe: False + enumerate_inputs: False + add_space: True + projection_only_pc: True + projection_path_pc: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear_768.pth + proj_dim: 768 + +datasets: + image_pc_discrn: # name of the dataset builder + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + data_type: [images, pc] # # [images|videos|features] + + + build_info: + kwargs: + total: all + raw: False + shuffle_modalities: False + balance_labels: True + dataset_name: objaverse + classnames: [image, 3d] + ground_truth: False + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + storage: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/discrn/objaverse.json + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + +run: + task: discrn_qa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + segments: 1 + + # inference-specific + max_len: 10 + min_len: 1 + length_penalty: -1. + num_beams: 5 + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["val"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/discrn/image_3d_describe_proj" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_qa.yaml new file mode 100644 index 000000000..f4ce89227 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_qa.yaml @@ -0,0 +1,159 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + annotations: + + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + storage: + - audiocaps_qa/annotation/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + storage: + - audiocaps_qa/annotation/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/audiocaps_captioning_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_test.yaml new file mode 100644 index 000000000..40b7f284e --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_test.yaml @@ -0,0 +1,161 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/audiocaps_captioning_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_val.yaml new file mode 100644 index 000000000..d45c7dc79 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/audiocaps_captioning_val.yaml @@ -0,0 +1,161 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/audiocaps_captioning_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothoQA_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothoQA_captioning.yaml new file mode 100644 index 000000000..92fb83837 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothoQA_captioning.yaml @@ -0,0 +1,155 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 4 + accum_grad_iters: 1 + prompt: "Question: {} Answer:" + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/clothovqa_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov1_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov1_captioning.yaml new file mode 100644 index 000000000..eace5f3b5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov1_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: evaluation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/clothov1_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov2_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov2_captioning.yaml new file mode 100644 index 000000000..9720ac2f4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/clothov2_captioning.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer_old.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer_old.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + prompt: "a short description" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: validation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_validation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_validation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/clothov2_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification.yaml new file mode 100644 index 000000000..1bc69eac5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification_completion.yaml new file mode 100644 index 000000000..50b8159d2 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/audio/esc50_classification_completion.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + # format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/audio/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_audio_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_audio_eval.yaml new file mode 100644 index 000000000..8e18940e7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_audio_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 0 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + ques_files: { + "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_testt_questions.json" + } + anno_files: { + "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/crossmodal/musicavqa/audio/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_joint_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_joint_eval.yaml new file mode 100644 index 000000000..42006919e --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_joint_eval.yaml @@ -0,0 +1,181 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video,audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 6 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + # ques_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_questions.json" + # } + # anno_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + # } + + # model specific + k_test: 128 + + # misc + seed: 123 + output_dir: "output/xinstructblip/eval/vicuna13b/crossmodal/musicavqa/joint/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_video_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_video_eval.yaml new file mode 100644 index 000000000..90862d6bd --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/musicavqa/musicavqa_video_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + # ques_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_questions.json" + # } + # anno_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + # } + + # model specific + k_test: 128 + + # misc + seed: 123 + output_dir: "output/xinstructblip/eval/vicuna13b/crossmodal/musicavqa/video/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_audio_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_audio_captioning.yaml new file mode 100644 index 000000000..e04439d1c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_audio_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + valor_mm_caption: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_captioning.yaml new file mode 100644 index 000000000..17f0211fb --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_captioning.yaml @@ -0,0 +1,180 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 0. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning.yaml new file mode 100644 index 000000000..c4c00058c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml new file mode 100644 index 000000000..c273ac9e4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml @@ -0,0 +1,184 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + joint_video_audio: True + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_joint_captioning_interleave/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_test.yaml new file mode 100644 index 000000000..1bc938947 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_val.yaml new file mode 100644 index 000000000..2de78c209 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/flickr30k_captioning.yaml new file mode 100644 index 000000000..b0de96468 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/flickr30k_captioning.yaml @@ -0,0 +1,150 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/gqa_qa.yaml new file mode 100644 index 000000000..c2b741b07 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/gqa_qa.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_captioning.yaml new file mode 100644 index 000000000..ebb7ff267 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_captioning.yaml @@ -0,0 +1,142 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..e198f7f8c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/nocaps_out_domain_captioning.yaml @@ -0,0 +1,143 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/okvqa_qa.yaml new file mode 100644 index 000000000..d59ea5687 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/okvqa_qa.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_test.yaml new file mode 100644 index 000000000..7f20ed632 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_test.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_val.yaml new file mode 100644 index 000000000..4408c0706 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/snlive_classification_val.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/vizwiz_qa.yaml new file mode 100644 index 000000000..a80fdea55 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image/vizwiz_qa.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: based on the given image respond to {} + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_test.yaml new file mode 100644 index 000000000..fb5a51e61 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna13b/image/20231027210/checkpoint_40000.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_val.yaml new file mode 100644 index 000000000..27a291008 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna13b/image/20231027210/checkpoint_40000.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/flickr30k_captioning.yaml new file mode 100644 index 000000000..f95728656 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/flickr30k_captioning.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/gqa_qa.yaml new file mode 100644 index 000000000..709e7e60f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/gqa_qa.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_captioning.yaml new file mode 100644 index 000000000..48c36ee1a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_captioning.yaml @@ -0,0 +1,142 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..9b8acaa56 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/nocaps_out_domain_captioning.yaml @@ -0,0 +1,143 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/okvqa_qa.yaml new file mode 100644 index 000000000..791845a42 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/okvqa_qa.yaml @@ -0,0 +1,156 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_test.yaml new file mode 100644 index 000000000..075517e27 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_test.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_val.yaml new file mode 100644 index 000000000..397644749 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/snlive_classification_val.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/vizwiz_qa.yaml new file mode 100644 index 000000000..7cf484065 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/image_with_coco/vizwiz_qa.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: based on the given image respond to {} + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/image_coco/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_classification.yaml new file mode 100644 index 000000000..af71f0a2f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/pc/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: describe the 3d model + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_completion.yaml new file mode 100644 index 000000000..6dc4b2c6c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/modelnet40_completion.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/pc/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_captioning.yaml new file mode 100644 index 000000000..5f7eed342 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/pc/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_qa.yaml new file mode 100644 index 000000000..f89ed3c61 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/pc/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/pc/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning.yaml new file mode 100644 index 000000000..000d164f0 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning.yaml @@ -0,0 +1,159 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msrvtt_captioning/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_test.yaml new file mode 100644 index 000000000..cc87181d3 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msrvtt_captioning_test/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_val.yaml new file mode 100644 index 000000000..ca556dfae --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msrvtt_captioning_val/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_test.yaml new file mode 100644 index 000000000..e7583dcd3 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_test.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msrvtt_qa_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_val.yaml new file mode 100644 index 000000000..1e135a0c1 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msrvtt_qa_val.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msrvtt_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_captioning.yaml new file mode 100644 index 000000000..b35ddc7d2 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 2 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_13brCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_qa.yaml new file mode 100644 index 000000000..5d260920f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/msvd_qa.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 2 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + # ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + # "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + # anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + # "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_13brCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_audio_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_audio_captioning.yaml new file mode 100644 index 000000000..e04439d1c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_audio_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + valor_mm_caption: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_captioning.yaml new file mode 100644 index 000000000..17f0211fb --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_captioning.yaml @@ -0,0 +1,180 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "describe the video" + length_penalty: 0. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning.yaml new file mode 100644 index 000000000..c4c00058c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning_interleave.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning_interleave.yaml new file mode 100644 index 000000000..c273ac9e4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video/vatex_joint_captioning_interleave.yaml @@ -0,0 +1,184 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + joint_video_audio: True + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video/vatex_joint_captioning_interleave/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_captioning.yaml new file mode 100644 index 000000000..5521e6036 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video_image/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_13brCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_qa.yaml new file mode 100644 index 000000000..4cd5b5233 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/msvd_qa.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video_image/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + # ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + # "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + # anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + # "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_13brCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/vatex_captioning.yaml new file mode 100644 index 000000000..5e5b4934b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna13b/video_image/vatex_captioning.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna13b/video_image/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_qa.yaml new file mode 100644 index 000000000..ff7a8230f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_qa.yaml @@ -0,0 +1,155 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: True + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + annotations: + + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + storage: + - audiocaps_qa/annotation/train.csv + + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + storage: + - audiocaps_qa/annotation/val.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/audiocaps_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_test.yaml new file mode 100644 index 000000000..b2d05df3a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/audiocaps_captioning_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_val.yaml new file mode 100644 index 000000000..796b887e9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/audiocaps_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/audiocaps_captioning_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothoQA_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothoQA_captioning.yaml new file mode 100644 index 000000000..85eb36789 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothoQA_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "{}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + kwargs: + non_bin: True + unanimous: True + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 4 + accum_grad_iters: 1 + prompt: "Question: {} Answer:" + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/clothoaqa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov1_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov1_captioning.yaml new file mode 100644 index 000000000..939e03943 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov1_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: evaluation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - /clotho/clotho_captions_evaluation.csv + audio: + storage: /path/to/clotho + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/clothov1_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov2_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov2_captioning.yaml new file mode 100644 index 000000000..27633551b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/clothov2_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: validation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_validation.csv + storage: + - /clotho/clotho_captions_validation.csv + audio: + storage: /path/to/clotho/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/clothov2_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification.yaml new file mode 100644 index 000000000..2dfdb316e --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification_completion.yaml new file mode 100644 index 000000000..92e4f3c6c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio/esc50_classification_completion.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "descibe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + # format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio/esc50_classification_completion/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_qa.yaml new file mode 100644 index 000000000..f061d1340 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_qa.yaml @@ -0,0 +1,159 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: True + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + annotations: + + train: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + storage: + # - audiocaps_qa/annotation/train.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + storage: + # - audiocaps_qa/annotation/val.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/audiocaps_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_test.yaml new file mode 100644 index 000000000..804d302eb --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/audiocaps_captioning_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_val.yaml new file mode 100644 index 000000000..7836f4408 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/audiocaps_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/audiocaps_captioning_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothoQA_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothoQA_captioning.yaml new file mode 100644 index 000000000..522f7df7f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothoQA_captioning.yaml @@ -0,0 +1,155 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 4 + accum_grad_iters: 1 + prompt: "Question: {} Answer:" + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/clothovqa_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov1_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov1_captioning.yaml new file mode 100644 index 000000000..3303b694b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov1_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: evaluation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/clothov1_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov2_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov2_captioning.yaml new file mode 100644 index 000000000..764205c35 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/clothov2_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: validation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_validation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_validation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/clothov2_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification.yaml new file mode 100644 index 000000000..ba956163e --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification_completion.yaml new file mode 100644 index 000000000..855faa868 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_no_init/esc50_classification_completion.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_rand_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + # format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_no_init/esc50_classification_completion/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_qa.yaml new file mode 100644 index 000000000..76cc5d9aa --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_qa.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: null + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + proj_dim: 768 + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + annotations: + + train: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + storage: + # - audiocaps_qa/annotation/train.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + storage: + # - audiocaps_qa/annotation/val.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/audiocaps_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_test.yaml new file mode 100644 index 000000000..dcc8ac196 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/audiocaps_captioning_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_val.yaml new file mode 100644 index 000000000..157120566 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/audiocaps_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/audiocaps_captioning_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothoQA_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothoQA_captioning.yaml new file mode 100644 index 000000000..3ebcf93ab --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothoQA_captioning.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + load_finetuned: False + # finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: null + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + kwargs: + non_bin: True + unanimous: True + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 4 + accum_grad_iters: 1 + prompt: "Question: {} Answer:" + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/clothovqa_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov1_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov1_captioning.yaml new file mode 100644 index 000000000..027a33dd9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov1_captioning.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + load_finetuned: False + # finetuned: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio_no_init_continue/20231115024/checkpoint_60001.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: evaluation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/clothov1_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov2_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov2_captioning.yaml new file mode 100644 index 000000000..9b0f4070a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/clothov2_captioning.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + load_finetuned: False + # finetuned: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio_no_init_continue/20231115024/checkpoint_60001.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + proj_dim: 768 + projection_only: True + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: validation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_validation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_validation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/clothov2_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification.yaml new file mode 100644 index 000000000..0fa387969 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + # https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + # finetuned: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio_no_init_continue/20231115024/checkpoint_60001.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + format_candidates_prompt: "an audio of {}" + proj_dim: 768 + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification_completion.yaml new file mode 100644 index 000000000..11f301ba7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only/esc50_classification_completion.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + # https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + projection_only: True + # format_candidates_prompt: "an audio of {}" + proj_dim: 768 + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_qa.yaml new file mode 100644 index 000000000..57482478f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_qa.yaml @@ -0,0 +1,159 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: True + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + annotations: + + train: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + storage: + # - audiocaps_qa/annotation/train.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + storage: + # - audiocaps_qa/annotation/val.csv + - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/audiocaps_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_test.yaml new file mode 100644 index 000000000..dcc8ac196 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/audiocaps_captioning_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_val.yaml new file mode 100644 index 000000000..157120566 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/audiocaps_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/audiocaps_captioning_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothoQA_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothoQA_captioning.yaml new file mode 100644 index 000000000..0cbbe236a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothoQA_captioning.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_nocue_768.pth + load_finetuned: False + # finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: null + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 4 + accum_grad_iters: 1 + prompt: "Question: {} Answer:" + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/clothovqa_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov1_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov1_captioning.yaml new file mode 100644 index 000000000..027a33dd9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov1_captioning.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + load_finetuned: False + # finetuned: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio_no_init_continue/20231115024/checkpoint_60001.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: evaluation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/clothov1_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov2_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov2_captioning.yaml new file mode 100644 index 000000000..9b0f4070a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/clothov2_captioning.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + load_finetuned: False + # finetuned: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio_no_init_continue/20231115024/checkpoint_60001.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + proj_dim: 768 + projection_only: True + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: validation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_validation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_validation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/clothov2_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification.yaml new file mode 100644 index 000000000..e3089eb78 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_nocue_768.pth + # https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + # finetuned: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/audio_no_init_continue/20231115024/checkpoint_60001.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + format_candidates_prompt: "an audio of {}" + proj_dim: 768 + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification_completion.yaml new file mode 100644 index 000000000..11f301ba7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/audio_projection_only_nocue/esc50_classification_completion.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear_768.pth + # https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + projection_only: True + # format_candidates_prompt: "an audio of {}" + proj_dim: 768 + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/audio_proj/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_audio_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_audio_eval.yaml new file mode 100644 index 000000000..99465c52d --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_audio_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 5 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + ques_files: { + "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_testt_questions.json" + } + anno_files: { + "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/crossmodal/musicavqa/audio/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_joint_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_joint_eval.yaml new file mode 100644 index 000000000..7a3772898 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_joint_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video,audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + # ques_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_questions.json" + # } + # anno_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + # } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/crossmodal/musicavqa/joint/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_video_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_video_eval.yaml new file mode 100644 index 000000000..b698c08ea --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/musicavqa/musicavqa_video_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + # ques_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_questions.json" + # } + # anno_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + # } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/crossmodal/musicavqa/video/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_audio_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_audio_captioning.yaml new file mode 100644 index 000000000..732d330b4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_audio_captioning.yaml @@ -0,0 +1,186 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/crossmodal/vatex/vatex_audio_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_captioning.yaml new file mode 100644 index 000000000..6e45dcaab --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_captioning.yaml @@ -0,0 +1,185 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning.yaml new file mode 100644 index 000000000..41a4d6ddf --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning.yaml @@ -0,0 +1,186 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml new file mode 100644 index 000000000..df1c4323a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning_interleave.yaml @@ -0,0 +1,187 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + joint_video_audio: True + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/crossmodal/vatex/vatex_joint_captioning_interleave/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_test.yaml new file mode 100644 index 000000000..729aa0a2b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_val.yaml new file mode 100644 index 000000000..7f75c9f25 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 1 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/flickr30k_captioning.yaml new file mode 100644 index 000000000..cd2b9c049 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/flickr30k_captioning.yaml @@ -0,0 +1,150 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa.yaml new file mode 100644 index 000000000..dd0b72188 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa_val.yaml new file mode 100644 index 000000000..718ec20c9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/gqa_qa_val.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/val_balanced_questions.json + storage: + - gqa/annotations/val_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_captioning.yaml new file mode 100644 index 000000000..3dcec20a7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_captioning.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..13cace1dc --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/nocaps_out_domain_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/okvqa_qa.yaml new file mode 100644 index 000000000..bed5fb750 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/okvqa_qa.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_test.yaml new file mode 100644 index 000000000..e14e9d1ec --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_test.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_val.yaml new file mode 100644 index 000000000..2a735157c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/snlive_classification_val.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/vizwiz_qa.yaml new file mode 100644 index 000000000..8efd28458 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image/vizwiz_qa.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_test.yaml new file mode 100644 index 000000000..bb2b53a92 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_val.yaml new file mode 100644 index 000000000..7f75c9f25 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 1 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/flickr30k_captioning.yaml new file mode 100644 index 000000000..e58c236bf --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/flickr30k_captioning.yaml @@ -0,0 +1,150 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa.yaml new file mode 100644 index 000000000..d3f91f83f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa_val.yaml new file mode 100644 index 000000000..718ec20c9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/gqa_qa_val.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/val_balanced_questions.json + storage: + - gqa/annotations/val_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_captioning.yaml new file mode 100644 index 000000000..3dcec20a7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_captioning.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..13cace1dc --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/nocaps_out_domain_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/okvqa_qa.yaml new file mode 100644 index 000000000..bed5fb750 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/okvqa_qa.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_test.yaml new file mode 100644 index 000000000..e14e9d1ec --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_test.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_val.yaml new file mode 100644 index 000000000..2a735157c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/snlive_classification_val.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/vizwiz_qa.yaml new file mode 100644 index 000000000..8efd28458 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_full_init/vizwiz_qa.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_test.yaml new file mode 100644 index 000000000..bb2b53a92 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_val.yaml new file mode 100644 index 000000000..7f75c9f25 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 1 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/flickr30k_captioning.yaml new file mode 100644 index 000000000..db94c9639 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/flickr30k_captioning.yaml @@ -0,0 +1,150 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa.yaml new file mode 100644 index 000000000..d2a96f3c9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa_val.yaml new file mode 100644 index 000000000..718ec20c9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/gqa_qa_val.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/val_balanced_questions.json + storage: + - gqa/annotations/val_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_captioning.yaml new file mode 100644 index 000000000..9ee1d486b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_captioning.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..13cace1dc --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/nocaps_out_domain_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/okvqa_qa.yaml new file mode 100644 index 000000000..bed5fb750 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/okvqa_qa.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_test.yaml new file mode 100644 index 000000000..e14e9d1ec --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_test.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_val.yaml new file mode 100644 index 000000000..2a735157c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/snlive_classification_val.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/vizwiz_qa.yaml new file mode 100644 index 000000000..1ecdd443c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_no_init/vizwiz_qa.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_test.yaml new file mode 100644 index 000000000..c97bf8088 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_test.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_val.yaml new file mode 100644 index 000000000..934c65145 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/coco_captioning_val.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/flickr30k_captioning.yaml new file mode 100644 index 000000000..4fae6987a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/flickr30k_captioning.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/gqa_qa.yaml new file mode 100644 index 000000000..87ec77247 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/gqa_qa.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_captioning.yaml new file mode 100644 index 000000000..45bfc8278 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_captioning.yaml @@ -0,0 +1,144 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..7d121f866 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/nocaps_out_domain_captioning.yaml @@ -0,0 +1,146 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/okvqa_qa.yaml new file mode 100644 index 000000000..d14d49d65 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/okvqa_qa.yaml @@ -0,0 +1,156 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_test.yaml new file mode 100644 index 000000000..56108ec89 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_test.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_val.yaml new file mode 100644 index 000000000..e5192467e --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/snlive_classification_val.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/vizwiz_qa.yaml new file mode 100644 index 000000000..60f0b715f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_pre_coco/vizwiz_qa.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image_pre_coco/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_test.yaml new file mode 100644 index 000000000..bb2b53a92 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_full_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_val.yaml new file mode 100644 index 000000000..7f75c9f25 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 1 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/flickr30k_captioning.yaml new file mode 100644 index 000000000..41339d306 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/flickr30k_captioning.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/image_qformer_linear_768.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: False + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: False + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa.yaml new file mode 100644 index 000000000..7da6df3b5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/image_qformer_linear_768.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa_val.yaml new file mode 100644 index 000000000..718ec20c9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/gqa_qa_val.yaml @@ -0,0 +1,149 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/val_balanced_questions.json + storage: + - gqa/annotations/val_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 0 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/gqa_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_captioning.yaml new file mode 100644 index 000000000..05140e244 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/image_qformer_linear_768.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..89933ab1c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/nocaps_out_domain_captioning.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/image_qformer_linear.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/okvqa_qa.yaml new file mode 100644 index 000000000..bed5fb750 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/okvqa_qa.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_test.yaml new file mode 100644 index 000000000..e14e9d1ec --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_test.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_val.yaml new file mode 100644 index 000000000..2a735157c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/snlive_classification_val.yaml @@ -0,0 +1,153 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + # special_qformer_input_prompt: "{}" + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + # prompt: "how would you respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/vizwiz_qa.yaml new file mode 100644 index 000000000..7f33ecd8e --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/image_projection_only/vizwiz_qa.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/image_qformer_linear_768.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/image/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_classification.yaml new file mode 100644 index 000000000..c527d1606 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_completion.yaml new file mode 100644 index 000000000..d8321be1a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/modelnet40_completion.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_captioning.yaml new file mode 100644 index 000000000..7849af093 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_qa.yaml new file mode 100644 index 000000000..9f0268d61 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_classification.yaml new file mode 100644 index 000000000..cb6eb1509 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer_no_init.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_no_init/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_completion.yaml new file mode 100644 index 000000000..1c2a596d9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/modelnet40_completion.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer_no_init.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_captioning.yaml new file mode 100644 index 000000000..7849af093 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_qa.yaml new file mode 100644 index 000000000..9f0268d61 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_no_init/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_classification.yaml new file mode 100644 index 000000000..f21ee0020 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_classification.yaml @@ -0,0 +1,150 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: False + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + projection_only: True + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + projection_only_pc: True + projection_path_pc: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_proj/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_completion.yaml new file mode 100644 index 000000000..7ff5ecd01 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/modelnet40_completion.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/pc/20231115104/checkpoint_65000.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: False + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + projection_only_pc: True + projection_path_pc: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_proj/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_captioning.yaml new file mode 100644 index 000000000..48a710f68 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_captioning.yaml @@ -0,0 +1,169 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: False + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + projection_only: True + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_proj/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_qa.yaml new file mode 100644 index 000000000..f625d3544 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_projection_only/objaverse_qa.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: False + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + projection_only: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_proj/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_classification.yaml new file mode 100644 index 000000000..b1dfa829d --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip1_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_completion.yaml new file mode 100644 index 000000000..0750c0d48 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/modelnet40_completion.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip1_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_captioning.yaml new file mode 100644 index 000000000..73882c045 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip1_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_qa.yaml new file mode 100644 index 000000000..aed2f1f99 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip1/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip1_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_classification.yaml new file mode 100644 index 000000000..159acb996 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_scaledup" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/ulip2_scaledup/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_completion.yaml new file mode 100644 index 000000000..66cc92bb4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/modelnet40_completion.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_scaledup" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/ulip2_scaledup/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_captioning.yaml new file mode 100644 index 000000000..175ced5d9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_captioning.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_scaledup" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/ulip2_scaledup/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_qa.yaml new file mode 100644 index 000000000..f98523ff4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip2_scaled_up/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_scaledup" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_scaledup.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/ulip2_scaledup/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_classification.yaml new file mode 100644 index 000000000..42154ee7f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/pc_ulip_objaverse/20231021125/checkpoint_65000.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_objaverse" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/pc_ulip_objaverse/20231021125/checkpoint_65000.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip_objaverse/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_completion.yaml new file mode 100644 index 000000000..1228cc876 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/modelnet40_completion.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/pc_ulip_objaverse/20231021125/checkpoint_65000.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_objaverse" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/pc_ulip_objaverse/20231021125/checkpoint_65000.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip_objaverse/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_captioning.yaml new file mode 100644 index 000000000..bf3fc4f23 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_objaverse" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/pc_ulip_objaverse/20231021125/checkpoint_65000.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip_objaverse/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_qa.yaml new file mode 100644 index 000000000..7ac01560a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_objaverse" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip_objaverse/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_classification.yaml new file mode 100644 index 000000000..dce2175a9 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_objaverse_shapenet_k_1.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "objaverse_shapenet_k_1" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_objaverse_shapenet_k_1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip2_objaverse_shapenet_k_1/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_completion.yaml new file mode 100644 index 000000000..324deb2bc --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/modelnet40_completion.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_objaverse_shapenet_k_1.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "objaverse_shapenet_k_1" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_objaverse_shapenet_k_1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_shape_names.txt + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - /export/home/ULIP/data/modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip2_objaverse_shapenet_k_1/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_captioning.yaml new file mode 100644 index 000000000..8edbd61c8 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "objaverse_shapenet_k_1" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_objaverse_shapenet_k_1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip2_objaverse_shapenet_k_1/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_qa.yaml new file mode 100644 index 000000000..70bf3157f --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_objaverse_shapenet/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "objaverse_shapenet_k_1" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip2_objaverse_shapenet_k_1.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip2_objaverse_shapenet_k_1/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_classification.yaml new file mode 100644 index 000000000..9e68cc569 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1_objaverse_shapenet.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_shapenet" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1_objaverse_shapenet.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1_objaverse_shapenet/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + prompt: 'describe the 3d model' + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_completion.yaml new file mode 100644 index 000000000..7a9bb91b7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/modelnet40_completion.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1_objaverse_shapenet.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_shapenet" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1_objaverse_shapenet.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: [pc] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1_objaverse_shapenet/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_captioning.yaml new file mode 100644 index 000000000..9a4d0aec1 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_shapenet" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1_objaverse_shapenet.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1_objaverse_shapenet/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_qa.yaml new file mode 100644 index 000000000..5820d3b59 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/pc_ulip_shapenet/objaverse_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip_shapenet" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/ulip_baselines/ulip1_objaverse_shapenet.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/pc_ulip1_objaverse_shapenet/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_test.yaml new file mode 100644 index 000000000..79c35d118 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msrvtt_captioning_test/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_val.yaml new file mode 100644 index 000000000..a3f01d418 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msrvtt_captioning_val/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_test.yaml new file mode 100644 index 000000000..002041544 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_test.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msrvtt_qa_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_val.yaml new file mode 100644 index 000000000..ece07c99a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msrvtt_qa_val.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msrvtt_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_captioning.yaml new file mode 100644 index 000000000..5c05921f0 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_qa.yaml new file mode 100644 index 000000000..31679b92a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/msvd_qa.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "Question: {} Answer:" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/vatex_captioning.yaml new file mode 100644 index 000000000..6e45dcaab --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video/vatex_captioning.yaml @@ -0,0 +1,185 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_captioning.yaml new file mode 100644 index 000000000..830ff1975 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_image/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_qa.yaml new file mode 100644 index 000000000..f18ce7806 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/msvd_qa.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_image/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/vatex_captioning.yaml new file mode 100644 index 000000000..f2fb18d91 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image/vatex_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 5 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_image/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + # load_gt_from_file: vatex/annotations/cap_val.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_captioning.yaml new file mode 100644 index 000000000..f39d9e236 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_captioning.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_image_pre_coco/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_qa.yaml new file mode 100644 index 000000000..a14d4f34d --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/msvd_qa.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_image_pre_coco/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/vatex_captioning.yaml new file mode 100644 index 000000000..dd0bf59d5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_image_pre_coco/vatex_captioning.yaml @@ -0,0 +1,156 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_pre_coco.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 5 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_image_pre_coco/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + # load_gt_from_file: vatex/annotations/cap_val.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_test.yaml new file mode 100644 index 000000000..8d3ee24d2 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_no_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msrvtt_captioning_test/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_val.yaml new file mode 100644 index 000000000..8ad11be27 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_no_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_no_upsample/msrvtt_captioning_val/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_test.yaml new file mode 100644 index 000000000..f824077d5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_test.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_no_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msrvtt_qa_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_val.yaml new file mode 100644 index 000000000..b1fe79c6b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msrvtt_qa_val.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_no_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/msrvtt_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning.yaml new file mode 100644 index 000000000..31cd57e12 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/video/20231111090/checkpoint_10000.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_no_upsample/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning_up.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning_up.yaml new file mode 100644 index 000000000..e8aee1bce --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_captioning_up.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + # video f9_bP219ehQ_63_70.avi is corrupt + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_no_upsample_up/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa.yaml new file mode 100644 index 000000000..3084b46a3 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa.yaml @@ -0,0 +1,169 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/video/20231111090/checkpoint_10000.pth + # https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_no_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_no_upsample/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa_up.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa_up.yaml new file mode 100644 index 000000000..d4c927d97 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/msvd_qa_up.yaml @@ -0,0 +1,169 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b/video/20231111090/checkpoint_1000.pth + # https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video_no_upsample/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + + # img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning.yaml new file mode 100644 index 000000000..80b73cd53 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_no_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning_up.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning_up.yaml new file mode 100644 index 000000000..eec99d846 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b/video_no_upsample/vatex_captioning_up.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_upsample10k.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: vatex/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: vatex/annotations/cap_val.json + test: + # iWNXAYGh9cI_000004_000014.mp4 is corrupt and removed from youtube + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: vatex/annotations/cap_test.json + videos: + storage: /export/video-language-dataset/data/vatex/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_qa.yaml new file mode 100644 index 000000000..015443772 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_qa.yaml @@ -0,0 +1,159 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: True + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "given the input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + annotations: + + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + storage: + - audiocaps_qa/annotation/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_train.csv + + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/audiocaps/audio_qa_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + storage: + - audiocaps_qa/annotation/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/audio_qa_data/audio_qa_final_val.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/audiocaps_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_test.yaml new file mode 100644 index 000000000..48013a071 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_test.yaml @@ -0,0 +1,161 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/audiocaps_captioning_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_val.yaml new file mode 100644 index 000000000..613ca8201 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/audiocaps_captioning_val.yaml @@ -0,0 +1,161 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + audiocaps_mm_caption_instruct: # name of the dataset builder + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + prompt: describe the audio + + data_type: [audio] # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - /audiocaps/dataset/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - /audiocaps/dataset/val.csv + + test: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + storage: + - /audiocaps/dataset/test.csv + + audio: + storage: /audiocaps/AUDIOCAPS_32000Hz/audio + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/audiocaps_captioning_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothoQA_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothoQA_captioning.yaml new file mode 100644 index 000000000..1bd1d2066 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothoQA_captioning.yaml @@ -0,0 +1,155 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clotho_qa: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] + + build_info: + + annotations: + train: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_train.csv + storage: + - clotho_Qa/annotations/clotho_aqa_train.csv + val: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_val.csv + storage: + - clotho_qa/annotations/clotho_aqa_val.csv + + test: + url: + - https://zenodo.org/records/6473207/files/clotho_aqa_test.csv + storage: + - clotho_qa/annotations/clotho_aqa_test.csv + audio: + storage: /export/einstein-vision/audio_datasets/clotho-aqa/audio_files + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 4 + accum_grad_iters: 1 + prompt: "Question: {} Answer:" + + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/clothovqa_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov1_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov1_captioning.yaml new file mode 100644 index 000000000..ce2578035 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov1_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: evaluation + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_evaluation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_evaluation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/clothov1_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov2_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov2_captioning.yaml new file mode 100644 index 000000000..20ec55395 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/clothov2_captioning.yaml @@ -0,0 +1,147 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + clothov2: # name of the dataset builder + audio_processor: + train: + name: beats_audio + eval: + name: beats_audio + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + + data_type: [audio] # [images|videos|features] + + build_info: + kwargs: + clotho_root: /export/einstein-vision/audio_datasets/clothov2/ + split: eval + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://zenodo.org/record/4783391/files/clotho_captions_validation.csv + storage: + - /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_csv_files/clotho_captions_validation.csv + audio: + storage: /export/einstein-vision/audio_datasets/clothov2/CLOTHO_v2.1/clotho_audio_files/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 2 + num_workers: 8 + accum_grad_iters: 1 + prompt: "a short description" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/clothov2_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification.yaml new file mode 100644 index 000000000..bc4bfb3b4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/esc50_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification_completion.yaml new file mode 100644 index 000000000..a96383748 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/audio/esc50_classification_completion.yaml @@ -0,0 +1,151 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + # format_candidates_prompt: "an audio of {}" + +datasets: + esc50_cls: # + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + + val: + url: + - https://raw.githubusercontent.com/karolpiczak/ESC-50/master/meta/esc50.csv + storage: + - /ESC-50/esc50.csv + + audio: + storage: /ESC-50/audio + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the audio" + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/audio/esc50_classification_completion/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + caption_key: captions + sample_id_key: sound_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_audio_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_audio_eval.yaml new file mode 100644 index 000000000..aa8a5558a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_audio_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 2 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + ques_files: { + "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_testt_questions.json" + } + anno_files: { + "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/crossmodal/musicavqa/audio/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_joint_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_joint_eval.yaml new file mode 100644 index 000000000..4ed981644 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_joint_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video,audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + # ques_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_questions.json" + # } + # anno_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + # } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/crossmodal/musicavqa/joint/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_video_eval.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_video_eval.yaml new file mode 100644 index 000000000..cc51eb7da --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/musicavqa/musicavqa_video_eval.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "Question: {} Answer:" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + musicavqa_mm_instruct: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-val.json + storage: + - /musicavqa/val.json + + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/musicavqa/avqa-test.json + storage: + - /musicavqa/test.json + templates: null + + audio: + storage: path/to/videos + + video: + storage: path/to/videos + + + +run: + task: gqa + # optimization-specific + batch_size_train: 8 + batch_size_eval: 1 + num_workers: 8 + max_epoch: 1 + + # inference-specific + max_len: 10 + min_len: 1 + num_beams: 5 + length_penalty: -1. + inference_method: "generate" + prompt: "Question: {} Answer:" + + train_splits: ["train"] + valid_splits: ["test"] + # test_splits: ["test"] + + # distribution + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + use_dist_eval_sampler: False + # ques_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_questions.json" + # } + # anno_files: { + # "val": "/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/musicavqa_mm_instruct_gt/musicavqa_mm_instruct_test_annotations.json" + # } + + # model specific + k_test: 128 + + # misc + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/crossmodal/musicavqa/video/" + + evaluate: True + save_freq: -1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_audio_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_audio_captioning.yaml new file mode 100644 index 000000000..88d7e64c5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_audio_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 4 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_captioning.yaml new file mode 100644 index 000000000..ca408ece1 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_captioning.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_joint_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_joint_captioning.yaml new file mode 100644 index 000000000..5c366c70d --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/crossmodal/vatex/vatex_joint_captioning.yaml @@ -0,0 +1,183 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video, audio] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b/video/vatex_joint_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # load_gt_from_file: vatex/annotations/cap_val.json + + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_test.yaml new file mode 100644 index 000000000..f23b78c64 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_test.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/coco_captioning_test/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_val.yaml new file mode 100644 index 000000000..755d5a1b8 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/coco_captioning_val.yaml @@ -0,0 +1,154 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + coco_caption: # name of the dataset builder + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/coco_captioning_val/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/flickr30k_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/flickr30k_captioning.yaml new file mode 100644 index 000000000..1006e7dcb --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/flickr30k_captioning.yaml @@ -0,0 +1,150 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + flickr30k_caption: + # data_dir: ${env.data_dir}/datasets + data_type: images + + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + + build_info: + annotations: + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_val.json + storage: + - flickr30k/annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/datasets/flickr30k_test.json + storage: + - flickr30k/annotations/test.json + images: + # storage: flickr30k/images + storage: /export/share/datasets/vision/flickr30k + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/flickr_captioning/" + # annotation_file: /export/home/.cache/lavis/flickr30k_caption_gt/flickr30k_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/gqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/gqa_qa.yaml new file mode 100644 index 000000000..d7e2dbb43 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/gqa_qa.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + gqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/train_balanced_questions.json + storage: + - gqa/annotations/train_balanced_questions.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/testdev_balanced_questions.json + storage: + - gqa/annotations/testdev_balanced_questions.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/gqa/test_balanced_questions.json + storage: + - gqa/annotations/test_balanced_questions.json + images: + storage: /export/share/datasets/vision/GQA/images #gqa/images/ + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/gqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_captioning.yaml new file mode 100644 index 000000000..adbb41b38 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_captioning.yaml @@ -0,0 +1,144 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/nocaps_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_out_domain_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_out_domain_captioning.yaml new file mode 100644 index 000000000..ce1b08364 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/nocaps_out_domain_captioning.yaml @@ -0,0 +1,146 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /export/share/datasets/vision/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/nocaps_out_domain_captioning/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + img_ids: [2, 4, 5, 8, 15, 18, 19, 22, 27, 30, 33, 35, 41, 42, 43, 46, 47, 51, 59, 60, 64, 65, 68, 69, 71, 72, 73, 77, 79, 81, 85, 87, 88, 90, 92, 100, 101, 102, 105, 107, 109, 115, 120, 124, 125, 126, 127, 129, 133, 135, 137, 139, 140, 141, 143, 150, 153, 155, 158, 164, 165, 167, 170, 171, 173, 182, 190, 191, 196, 200, 201, 203, 205, 208, 219, 225, 226, 228, 229, 232, 239, 240, 243, 245, 250, 262, 263, 264, 267, 272, 278, 283, 284, 290, 291, 297, 301, 304, 305, 309, 310, 311, 314, 323, 325, 329, 330, 331, 333, 334, 341, 349, 350, 351, 352, 354, 358, 359, 363, 365, 366, 368, 371, 372, 379, 381, 383, 386, 388, 389, 390, 392, 405, 415, 417, 418, 420, 421, 424, 428, 429, 432, 436, 441, 443, 452, 453, 454, 455, 456, 459, 464, 465, 468, 469, 476, 477, 478, 480, 487, 488, 490, 491, 493, 500, 502, 504, 506, 509, 510, 511, 512, 515, 516, 520, 527, 529, 533, 539, 540, 541, 544, 545, 547, 551, 554, 556, 559, 577, 579, 580, 582, 586, 587, 590, 593, 594, 607, 609, 616, 617, 619, 623, 628, 631, 634, 637, 648, 651, 654, 655, 665, 673, 678, 682, 684, 685, 688, 690, 695, 696, 701, 702, 705, 707, 708, 712, 714, 718, 719, 723, 725, 726, 730, 731, 733, 734, 740, 744, 748, 750, 751, 756, 757, 760, 761, 763, 767, 775, 779, 782, 783, 784, 787, 790, 792, 794, 798, 799, 802, 805, 807, 810, 812, 816, 818, 819, 820, 821, 829, 831, 836, 841, 842, 844, 845, 849, 850, 853, 854, 857, 859, 861, 868, 871, 874, 875, 877, 879, 886, 887, 889, 890, 891, 892, 893, 894, 896, 899, 900, 905, 918, 924, 926, 927, 929, 932, 934, 935, 943, 948, 950, 952, 953, 954, 956, 957, 963, 965, 969, 972, 973, 974, 976, 980, 985, 987, 988, 990, 992, 993, 994, 1000, 1001, 1003, 1005, 1009, 1013, 1016, 1018, 1019, 1020, 1021, 1022, 1024, 1028, 1029, 1033, 1036, 1037, 1038, 1042, 1045, 1046, 1050, 1053, 1054, 1056, 1065, 1072, 1076, 1079, 1082, 1083, 1096, 1101, 1103, 1107, 1112, 1117, 1129, 1132, 1133, 1136, 1138, 1141, 1143, 1155, 1157, 1160, 1164, 1165, 1166, 1172, 1175, 1179, 1183, 1194, 1197, 1200, 1202, 1210, 1228, 1234, 1236, 1241, 1246, 1251, 1253, 1255, 1261, 1265, 1268, 1269, 1271, 1272, 1273, 1277, 1286, 1287, 1290, 1296, 1297, 1302, 1303, 1308, 1310, 1312, 1315, 1316, 1317, 1320, 1321, 1324, 1327, 1329, 1330, 1331, 1333, 1334, 1336, 1338, 1339, 1340, 1345, 1347, 1356, 1362, 1366, 1371, 1374, 1376, 1381, 1384, 1385, 1388, 1394, 1396, 1397, 1398, 1403, 1404, 1408, 1410, 1413, 1414, 1417, 1424, 1430, 1433, 1436, 1438, 1440, 1446, 1449, 1453, 1454, 1456, 1460, 1462, 1464, 1465, 1467, 1470, 1473, 1477, 1491, 1494, 1498, 1504, 1506, 1509, 1511, 1515, 1519, 1524, 1530, 1533, 1540, 1541, 1549, 1557, 1558, 1561, 1570, 1572, 1575, 1579, 1591, 1593, 1594, 1595, 1596, 1602, 1605, 1609, 1611, 1615, 1617, 1618, 1624, 1625, 1627, 1636, 1637, 1639, 1640, 1641, 1646, 1647, 1648, 1649, 1655, 1656, 1657, 1658, 1659, 1662, 1671, 1675, 1679, 1681, 1690, 1692, 1701, 1712, 1715, 1716, 1718, 1719, 1721, 1723, 1725, 1728, 1729, 1730, 1732, 1737, 1740, 1746, 1747, 1753, 1754, 1756, 1757, 1758, 1761, 1762, 1767, 1771, 1773, 1775, 1779, 1783, 1784, 1786, 1787, 1789, 1791, 1794, 1802, 1803, 1807, 1813, 1814, 1815, 1817, 1824, 1826, 1827, 1832, 1834, 1835, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1847, 1850, 1860, 1861, 1866, 1870, 1872, 1873, 1876, 1878, 1886, 1889, 1894, 1897, 1899, 1902, 1907, 1911, 1912, 1917, 1920, 1924, 1925, 1928, 1931, 1935, 1936, 1937, 1939, 1941, 1946, 1948, 1949, 1952, 1954, 1955, 1956, 1959, 1967, 1968, 1970, 1975, 1976, 1979, 1980, 1985, 1986, 1994, 1996, 1998, 2001, 2003, 2007, 2009, 2011, 2012, 2014, 2019, 2028, 2029, 2042, 2047, 2049, 2050, 2060, 2068, 2071, 2076, 2078, 2080, 2081, 2086, 2089, 2090, 2093, 2094, 2099, 2102, 2107, 2112, 2115, 2121, 2124, 2125, 2129, 2131, 2133, 2135, 2140, 2141, 2148, 2150, 2151, 2152, 2155, 2163, 2173, 2176, 2178, 2182, 2183, 2187, 2188, 2196, 2197, 2198, 2199, 2200, 2205, 2207, 2209, 2215, 2217, 2220, 2221, 2223, 2230, 2235, 2236, 2237, 2238, 2241, 2242, 2243, 2244, 2246, 2252, 2253, 2261, 2265, 2274, 2277, 2278, 2281, 2286, 2290, 2292, 2293, 2294, 2296, 2299, 2301, 2304, 2305, 2307, 2309, 2312, 2314, 2315, 2319, 2323, 2324, 2337, 2338, 2339, 2340, 2342, 2351, 2356, 2358, 2360, 2367, 2369, 2371, 2374, 2376, 2378, 2382, 2383, 2387, 2388, 2390, 2399, 2400, 2412, 2416, 2422, 2423, 2427, 2428, 2435, 2439, 2440, 2442, 2447, 2450, 2455, 2459, 2461, 2462, 2463, 2466, 2468, 2470, 2479, 2480, 2482, 2483, 2485, 2488, 2491, 2495, 2496, 2502, 2505, 2506, 2507, 2510, 2511, 2515, 2522, 2524, 2532, 2534, 2546, 2547, 2550, 2554, 2558, 2562, 2563, 2574, 2583, 2584, 2590, 2594, 2598, 2602, 2603, 2606, 2611, 2613, 2615, 2617, 2619, 2623, 2625, 2630, 2636, 2642, 2643, 2644, 2646, 2647, 2649, 2650, 2659, 2661, 2664, 2674, 2675, 2677, 2682, 2684, 2685, 2691, 2693, 2695, 2698, 2699, 2703, 2704, 2706, 2707, 2711, 2713, 2719, 2720, 2723, 2726, 2727, 2729, 2730, 2733, 2734, 2738, 2739, 2741, 2744, 2745, 2748, 2749, 2754, 2757, 2761, 2762, 2764, 2765, 2767, 2768, 2772, 2776, 2778, 2779, 2780, 2781, 2783, 2787, 2791, 2795, 2796, 2799, 2800, 2802, 2807, 2808, 2811, 2813, 2817, 2820, 2827, 2829, 2831, 2833, 2834, 2835, 2839, 2840, 2841, 2846, 2847, 2849, 2852, 2855, 2859, 2860, 2864, 2870, 2871, 2876, 2878, 2879, 2882, 2884, 2885, 2886, 2887, 2888, 2895, 2896, 2897, 2898, 2900, 2902, 2905, 2911, 2913, 2915, 2919, 2922, 2924, 2933, 2939, 2945, 2953, 2954, 2958, 2959, 2968, 2973, 2976, 2979, 2982, 2984, 2992, 3002, 3004, 3007, 3008, 3009, 3010, 3013, 3016, 3021, 3022, 3023, 3026, 3028, 3033, 3036, 3037, 3039, 3043, 3044, 3045, 3046, 3053, 3060, 3062, 3063, 3071, 3072, 3085, 3086, 3092, 3095, 3096, 3102, 3103, 3104, 3105, 3111, 3115, 3116, 3122, 3129, 3131, 3132, 3137, 3138, 3140, 3147, 3148, 3157, 3164, 3167, 3168, 3170, 3175, 3179, 3182, 3184, 3190, 3194, 3196, 3198, 3199, 3200, 3215, 3216, 3217, 3219, 3222, 3229, 3230, 3237, 3239, 3242, 3249, 3253, 3255, 3257, 3258, 3267, 3270, 3271, 3274, 3279, 3288, 3290, 3291, 3293, 3299, 3305, 3306, 3312, 3318, 3319, 3320, 3323, 3326, 3328, 3329, 3335, 3343, 3344, 3345, 3347, 3349, 3350, 3353, 3356, 3362, 3364, 3366, 3369, 3374, 3377, 3379, 3381, 3382, 3384, 3385, 3388, 3389, 3395, 3399, 3403, 3409, 3411, 3416, 3419, 3421, 3423, 3424, 3425, 3427, 3428, 3431, 3437, 3438, 3439, 3444, 3450, 3452, 3453, 3456, 3457, 3460, 3461, 3462, 3464, 3466, 3467, 3471, 3472, 3477, 3478, 3482, 3484, 3486, 3492, 3499, 3500, 3501, 3502, 3511, 3525, 3529, 3531, 3533, 3534, 3536, 3552, 3553, 3555, 3557, 3562, 3567, 3568, 3570, 3571, 3573, 3577, 3578, 3584, 3585, 3586, 3587, 3595, 3600, 3601, 3604, 3609, 3610, 3612, 3615, 3616, 3619, 3620, 3624, 3625, 3631, 3632, 3636, 3637, 3638, 3640, 3643, 3651, 3654, 3655, 3656, 3657, 3662, 3667, 3668, 3671, 3677, 3684, 3686, 3689, 3693, 3694, 3696, 3697, 3698, 3699, 3700, 3701, 3703, 3704, 3707, 3708, 3709, 3711, 3712, 3713, 3714, 3719, 3721, 3723, 3726, 3737, 3741, 3742, 3744, 3750, 3752, 3757, 3760, 3761, 3764, 3765, 3767, 3770, 3772, 3774, 3776, 3778, 3780, 3781, 3796, 3797, 3805, 3818, 3819, 3820, 3821, 3824, 3841, 3845, 3848, 3851, 3858, 3866, 3870, 3871, 3876, 3879, 3880, 3883, 3893, 3896, 3900, 3903, 3904, 3908, 3909, 3913, 3914, 3916, 3924, 3927, 3937, 3940, 3942, 3943, 3949, 3950, 3953, 3954, 3959, 3963, 3966, 3969, 3972, 3978, 3981, 3983, 3984, 3986, 3989, 3990, 3991, 3999, 4000, 4004, 4005, 4006, 4012, 4014, 4016, 4017, 4019, 4020, 4030, 4035, 4046, 4049, 4051, 4052, 4053, 4057, 4061, 4065, 4066, 4068, 4073, 4074, 4075, 4079, 4080, 4082, 4084, 4086, 4090, 4091, 4093, 4094, 4095, 4096, 4100, 4102, 4104, 4106, 4113, 4114, 4115, 4116, 4118, 4124, 4126, 4127, 4128, 4131, 4133, 4134, 4142, 4145, 4149, 4156, 4160, 4171, 4174, 4178, 4179, 4180, 4183, 4186, 4190, 4191, 4195, 4197, 4215, 4220, 4229, 4234, 4245, 4249, 4251, 4252, 4254, 4257, 4259, 4264, 4265, 4266, 4267, 4275, 4276, 4277, 4282, 4284, 4285, 4288, 4291, 4294, 4295, 4301, 4302, 4313, 4315, 4320, 4328, 4333, 4336, 4339, 4342, 4345, 4346, 4350, 4354, 4372, 4374, 4375, 4377, 4379, 4380, 4386, 4388, 4389, 4392, 4396, 4402, 4404, 4408, 4410, 4424, 4426, 4428, 4431, 4435, 4436, 4439, 4442, 4446, 4447, 4449, 4452, 4455, 4458, 4460, 4461, 4466, 4469, 4475, 4476, 4478, 4488, 4491, 4494, 4498] + diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/okvqa_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/okvqa_qa.yaml new file mode 100644 index 000000000..a820f947a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/okvqa_qa.yaml @@ -0,0 +1,157 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given the image respond to {}?" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ok_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + test: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + storage: + - okvqa/annotations/vqa_val_eval.json + - okvqa/annotations/answer_list.json + - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given the image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/okvqa_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_test.yaml new file mode 100644 index 000000000..184e83c7d --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_test.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + caption: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/snlive_classification_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_val.yaml new file mode 100644 index 000000000..5b87c7689 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/snlive_classification_val.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + snli_ve_instruct: + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + eval: + name: "blip_caption" + caption: "given the image respond to " + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_train.json + storage: snli/annotations/ve_train.json + val: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_dev.json + storage: snli/annotations/ve_dev.json + test: + url: /export/share/dongxuli/data/lavis/snli/annotation/ve_test.json + storage: snli/annotations/ve_test.json + images: + storage: flickr30k/images/flickr30k-images + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 30 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/snlive_classification_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/vizwiz_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/vizwiz_qa.yaml new file mode 100644 index 000000000..664dc2df7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/image/vizwiz_qa.yaml @@ -0,0 +1,152 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given image respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vizwiz_vqa: + vis_processor: + train: + name: "clip_image_train" + eval: + name: "clip_image_eval" + text_processor: + train: + name: "blip_question" + eval: + name: "blip_question" + + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + storage: + - vizwiz/annotations/val.json + # - /export/share/datasets/vision/vizwiz/Annotations/val.json + test: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/vizwiz/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + storage: + - vizwiz/annotations/test.json + # - /export/share/datasets/vision/vizwiz/Annotations/test.json + images: + storage: /export/share/datasets/vision/vizwiz/images + +run: + task: vqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given image respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/image/vizwiz_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_classification.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_classification.yaml new file mode 100644 index 000000000..58ef694e4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_classification.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + format_candidates_prompt: " a 3d model of a {}" + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + prompt: "describe the 3d model" + + max_len: 3 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/pc/modelnet_classification/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_completion.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_completion.yaml new file mode 100644 index 000000000..bd06884a5 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/modelnet40_completion.yaml @@ -0,0 +1,148 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + special_qformer_input_prompt: False + +datasets: + modelnet40_cls: # name of the dataset builder + data_type: pc + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_train.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_train_8192pts_fps.dat + - /modelnet40_normal_resampled/modelnet40_train.txt + val: + url: + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_shape_names.txt + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - https://storage.googleapis.com/sfr-ulip-code-release-research/modelnet40_normal_resampled/modelnet40_test.txt + storage: + - modelnet40_normal_resampled/modelnet40_shape_names.txt + - modelnet40_normal_resampled/modelnet40_test_8192pts_fps.dat + - modelnet40_normal_resampled/modelnet40_test.txt + + pc: + storage: /export/home/ULIP/data/modelnet40_normal_resampled + + images: + storage: /export/einstein-vision/3d_vision/3d_object_datasets/modelnet40_pc_img + + +run: + task: multimodal_classification + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/pc/modelnet_classification_completion/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_captioning.yaml new file mode 100644 index 000000000..404de426d --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_captioning.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - objaverse/annotations/train.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + val: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + storage: + - objaverse/annotations/val.csv + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + length_penalty: 0. + prompt: "describe the 3d model" + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/pc/objaverse_captioning/" + # annotation_file: /export/home/.cache/lavis/objaverse_mm_caption_instruct_gt/objaverse_mm_caption_instruct_val_annotations.json + + amp: True + resume_ckpt_path: null + caption_key: 'data' + sample_id_key: sample_id + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_qa.yaml new file mode 100644 index 000000000..531b86cc4 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/pc/objaverse_qa.yaml @@ -0,0 +1,163 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given input respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: True + +datasets: + objaverse_mm_qa: # 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: +train: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + storage: + - objaverse_qa/annotations/train.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final.csv + val: + url: + - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/objaverse/CAP3DQA_final_val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + storage: + - objaverse_qa/annotations/val.csv + # - /export/home/LAVIS-xgen_mm/projects/xinstructblip/data_aug/3d_qa_data/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 32 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 1 + num_beams: 5 + length_penalty: 0. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/pc/objaverse_qa/" + # ques_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_questions.json" } + # anno_files: { "val": "/export/home/.cache/lavis/objaverse_mm_qa_gt/objaverse_mm_qa_val_annotations.json" } + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 + \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_test.yaml new file mode 100644 index 000000000..c06dda722 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_test.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msrvtt_captioning_test/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_val.yaml new file mode 100644 index 000000000..7ac3389ba --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_captioning_val.yaml @@ -0,0 +1,160 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + storage: msrvtt/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msrvtt_captioning_val/" + # annotation_file: /export/home/.cache/lavis/msrvtt_caption_gt/msrvtt_caption_val_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_test.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_test.yaml new file mode 100644 index 000000000..c805df9c1 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_test.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msrvtt_qa_test/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_val.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_val.yaml new file mode 100644 index 000000000..c4f940c1a --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msrvtt_qa_val.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + storage: msrvtt/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + storage: msrvtt/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msrvtt_qa_val/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_captioning.yaml new file mode 100644 index 000000000..84314cdc2 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna7b_nocue/video/20231101140/checkpoint_10000.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_qa.yaml new file mode 100644 index 000000000..7b4ba10ad --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/msvd_qa.yaml @@ -0,0 +1,166 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "question {} answer" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 5 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "question {} answer" + length_penalty: -1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/vatex_captioning.yaml new file mode 100644 index 000000000..ca408ece1 --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video/vatex_captioning.yaml @@ -0,0 +1,182 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_captioning.yaml new file mode 100644 index 000000000..7df40266c --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_captioning.yaml @@ -0,0 +1,158 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: a short description + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_caption: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_train.json + storage: msvd/annotations/cap_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_val.json + storage: msvd/annotations/cap_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/cap_test.json + storage: msvd/annotations/cap_test.json + videos: + # storage: msvd/videos + storage: /export/share/datasets/vision_language/msvd/videos + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: a short description + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video_image/msvd_captioning/" + # annotation_file: /export/home/.cache/lavis/msvd_caption_gt/msvd_caption_test_annotations.json + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + + img_ids: ['ghynaoVNwZc_1_20.avi', 'fEsrO_poIUg_161_168.avi', 'jCplbayVbtw_10_20.avi', 'pzq5fPfsPZg_29_33.avi', 'fcvW1vr8hAs_104_108.avi', 'gp8XjWSoP2k_0_10.avi', 'o_mWZWcm2r4_10_15.avi', 'hXn7D6-AAMA_0_9.avi', 'g36ho6UrBz0_5_20.avi', 'n_Z0-giaspE_379_387.avi', 'hSgGBHbJrmE_0_17.avi', 'nMBSDpB3WB8_5_14.avi', 'lrZxpneS6Gk_0_12.avi', 'v4_AzQSnmY4_40_55.avi', 'o4pL7FObqds_72_78.avi', 's0hwEUC5emA_127_132.avi', 'vRC9sBNt9vs_10_16.avi', 'xxHx6s_DbUo_49_56.avi', 'hM3jzlyNIpc_0_10.avi', 'qRoxNXm7INc_58_66.avi', 'm1NR0uNNs5Y_57_64.avi', 'gMqKUPeTAkg_17_30.avi', 'sm0OYD0NSbQ_51_59.avi', 'u9prcUCHlqM_235_241.avi', 'kSzS_lFtJDk_55_70.avi', 'kuNQpRTc-hA_126_135.avi', 'glii-kazad8_21_29.avi', 'kWLNZzuo3do_222_227.avi', 'zTn-nNj5Bng_8_19.avi', 'pmEKZ6yVewc_0_10.avi', 'uVPnDJKt1M0_0_6.avi', 'zv2RIbUsnSw_335_341.avi', 'lAznAeFFldg_6_10.avi', 'lc9bA-hvqHU_1_6.avi', 'q-JHcsqJXWY_0_8.avi', 'fGc6_D0JEIQ_31_46.avi', 'gHyXstpe_N8_140_150.avi', 'xxHx6s_DbUo_240_248.avi', 'lFdg5CWMTt0_24_28.avi', 'xPR0xFgCAZY_17_27.avi', 'zSPBC8EO6dY_132_140.avi', 'vDhEpqfhVI0_0_8.avi', 'n_Z0-giaspE_437_447.avi', 'unhiT2D6WvE_0_20.avi', 'q9ew_nITQWY_54_62.avi', 'm1NR0uNNs5Y_273_280.avi', 'u9E9HpuJQ7U_29_43.avi', 'ht2oIYBSoI0_9_21.avi', 'pRpeEdMmmQ0_65_70.avi', 'mbesJaS6vwg_187_195.avi', 'ulPvRmNfXK4_96_100.avi', 'gCra4qOrjFw_1_17.avi', 'xgIIcPSh4EU_0_6.avi', 'haJn6k5zVnE_1_23.avi', 'qeKX-N1nKiM_52_59.avi', 'v7NpKUVqjpI_23_40.avi', 'q-a6NEotUX8_5_10.avi', 'nYwbAb0QvBE_195_210.avi', 'nb12bAaKzvA_0_10.avi', 'gHyXstpe_N8_95_100.avi', 'nCtZFOYAlvQ_44_49.avi', 'xxHx6s_DbUo_216_222.avi', 'xtbsD3PUua4_174_185.avi', 'nq4hG6qgyPs_184_195.avi', 'r2oI9Y-3wAo_21_28.avi', 'kEGmZDpZ_RE_248_293.avi', 'uZEGu-TA2cU_42_58.avi', 'qew09qQgMAg_22_27.avi', 'zYcY4mjLpxU_104_118.avi', 'xpOYXbMDDBY_1_20.avi', 'y8SDRc4IOjs_94_99.avi', 'xBW_uR3kGr4_42_55.avi', 'f_CvW22Eauc_16_23.avi', 'veE0E79dEEc_18_45.avi', 'labytsb3gfI_146_154.avi', 'z9qbQX4J_2g_0_14.avi', 'kquB3rIgfGk_197_202.avi', 'm1NR0uNNs5Y_104_110.avi', 'p6T3XrnYtFk_4_13.avi', 'gbW9f8xydks_0_10.avi', 'r0rmrbTb7fU_98_109.avi', 'tqxRDVKtkSY_30_45.avi', 'w9mqbwOIkVg_6_12.avi', 'nPj6EcVGoUY_7_15.avi', 'r4qv_BNlQNk_93_98.avi', 'oFUsn1owAbs_158_168.avi', 'x1i0UOssll8_141_151.avi', 'm1NR0uNNs5Y_88_94.avi', 'yyxtyCaEVqk_329_360.avi', 'qIk_Dz5XE5E_104_109.avi', 'z0Si1XxMibg_0_30.avi', 'nBFhvrAOFqY_23_29.avi', 'gWRRHV7DLV0_21_31.avi', 'yg4aNiO1JnI_111_114.avi', 'uAaWVeaYLdQ_1_12.avi', 'otvx5OZHTJc_1_22.avi', 'yPNFVj-pISU_105_115.avi', 'kWLNZzuo3do_228_232.avi', 'i2sRHf9m5KM_28_42.avi', 'kI6MWZrl8v8_149_161.avi', 'kKGehSw5ht8_39_45.avi', 'g8LUhxR-6Wg_0_8.avi', 'xlPyHMkpaQY_1_7.avi', 'nwk4m329bLw_2_10.avi', 'otLEUwHao_E_140_151.avi', 'ficwZQYmRLE_5_20.avi', 'tIMDKdMnNYM_266_273.avi', 'jfrrO5K_vKM_55_65.avi', 'fF89MasBFLw_321_326.avi', 'jPBxl9gFqNY_110_117.avi', 'kZfBt5me3Pg_2_7.avi', 'r4qv_BNlQNk_119_124.avi', 'nLvX-erABqY_67_72.avi', 'iUYWdCxvJCI_2_14.avi', 'qvSxiVV7jhw_0_15.avi', 'yOnRm3TP6hM_0_12.avi', 'kWLNZzuo3do_154_165.avi', 'qvg9eM4Hmzk_1_9.avi', 'ub-aYLzCF_Q_1_10.avi', 'gvVsgOK1iJw_32_38.avi', 'j4dMnAPZu70_12_17.avi', 'nV3Wv8iHp4U_0_38.avi', 'sRKQfxxEP4M_117_125.avi', 'giLxPCgLLqg_9_19.avi', 'hReROJQpSow_24_30.avi', 'jjl2ZMdFCsw_130_142.avi', 'kWLNZzuo3do_76_80.avi', 'vub04F8CWng_32_41.avi', 'po2tcrG6KzM_2_8.avi', 'kWLNZzuo3do_152_164.avi', 'ljGcQocjSs4_38_60.avi', 'kWLNZzuo3do_147_153.avi', 'gbbRwBZuhzI_26_40.avi', 'onW5hJXnI5s_126_133.avi', 'p3J3TAdKAYQ_0_10.avi', 'xb-Nacm-pKc_78_82.avi', 'zxB4dFJhHR8_1_9.avi', 'ok4cM6WTA5E_120_133.avi', 'jdAbpLooDgM_10_15.avi', 'zS50h-a8RTg_3_9.avi', 'fBA_lxUiwSg_2_4.avi', 'omIPdpxg--4_39_46.avi', 'qBFSt85-xqk_15_20.avi', 'pfQPRXcihkI_160_184.avi', 'q6vz80UkVtw_0_7.avi', 'kWLNZzuo3do_262_270.avi', 'tmAX2PnRCY0_284_292.avi', 'fnpp8v9NbmY_181_188.avi', 'xxHx6s_DbUo_41_44.avi', 'hJFBXHtxKIc_286_291.avi', 'sBjr8UJOpsQ_149_169.avi', 'uO7Eysrs8_k_80_90.avi', 'kBjUDCyDCuI_20_26.avi', 'pGCRurvXQGM_45_56.avi', 'pGsU4FekJQM_10_18.avi', 'wsj_dzz33Ko_31_41.avi', 'pqTWUzehCUM_42_47.avi', 'hW8TKz2Aea4_5_12.avi', 'kk3TIio1-Uw_5_14.avi', 'hbE29pZh76I_3_8.avi', 'fIaLVw_Gc_w_99_109.avi', 'nBJV56WUDng_38_47.avi', 'm1NR0uNNs5Y_192_198.avi', 'tZmDWltBziM_70_80.avi', 'zBrC1GmA0Qg_26_33.avi', 'm7x8uIdg2XU_67_73.avi', 'fkONJEgTNJY_25_35.avi', 'zulPFoY64wE_26_33.avi', 'kWLNZzuo3do_17_23.avi', 'tn1d5DmdMqY_15_28.avi', 'w28TljSqtW8_64_75.avi', 'nTasT5h0LEg_40_43.avi', 'q5ZRMvjzhXQ_15_29.avi', 'xTd_IdIcB4s_2_10.avi', 'tcxhOGyrCtI_15_21.avi', 'omGWjiwxcTE_18_23.avi', 'suj4VNfZz5E_33_50.avi', 'puineN1UMto_25_29.avi', 's6QwbmWbSmw_18_24.avi', 'jTaLGh_MKCM_5_20.avi', 'j1Z890_Q3so_131_138.avi', 'nTUONeDqhdk_10_15.avi', 'psXeA8sSYdI_25_30.avi', 'ruNrdmjcNTc_0_5.avi', 'qeKX-N1nKiM_0_5.avi', 'hJFBXHtxKIc_225_230.avi', 'ngHDYzhDBk4_24_29.avi', 'hPyU5KjpWVc_0_35.avi', 'qeKX-N1nKiM_74_77.avi', 'urXDqw3S34I_12_17.avi', 'sJC7E06IBXI_49_59.avi', 'wON-YuA1GjA_3_63.avi', 'fX5G_JwPlLo_640_660.avi', 'qNjeEx92rTA_281_299.avi', 'sZf3VDsdDPM_107_114.avi', 'j7xz1nos-xc_10_20.avi', 'tHLiYTS9Iz8_1_16.avi', 'fMXfphSi6Yw_7_12.avi', 'kWLNZzuo3do_192_196.avi', 'nohvigNMsbo_199_207.avi', 'uJPupV4oLZ0_4_12.avi', 'pW9DFPqoIsI_26_50.avi', 'zSPBC8EO6dY_64_73.avi', 'fr9H1WLcF1A_141_148.avi', 'fw8qvK67jYY_50_97.avi', 'n_Z0-giaspE_62_78.avi', 'n2NLoLNecgI_168_178.avi', 'zSPBC8EO6dY_97_110.avi', 'zhLcONtNkew_16_21.avi', 'gXVaC3gBWbc_22_30.avi', 'jD4o_Lmy6bU_117_137.avi', 'nq4hG6qgyPs_240_251.avi', 'ufFT2BWh3BQ_0_8.avi', 'wgrrQwLdME8_0_10.avi', 'fr9H1WLcF1A_326_336.avi', 'ybVb3t560oY_0_9.avi', 'lo4KcsBN--A_0_10.avi', 'ggic669elLM_200_215.avi', 's9TklvyLFyI_177_191.avi', 'qqYysi3qotc_148_195.avi', 'm4D72WXFd8s_557_564.avi', 'pptYu3YQnxY_160_170.avi', 'onW5hJXnI5s_10_16.avi', 'z2kUc8wp9l8_40_46.avi', 'fY0lZTWlBAg_470_485.avi', 'nc8hwLaOyZU_1_19.avi', 't3VPeyYL-fI_35_39.avi', 'ymC2bNi6-Is_9_19.avi', 'x_8RiVI6rH8_41_54.avi', 'r0E-0ntoNWo_20_30.avi', 'hNECyt6Bo0A_5_10.avi', 'urNX3e1Wbc8_30_38.avi', 'm1c04pCYGxA_57_64.avi', 't4vP-cXXWkY_14_20.avi', 'pfQPRXcihkI_135_144.avi', 'tBj4Ny19vfQ_54_59.avi', 'tZmDWltBziM_42_47.avi', 'hJFBXHtxKIc_118_123.avi', 'fMFvOgb4k6E_35_43.avi', 'rw9h_574HxE_229_236.avi', 'yfMTsYcLt10_0_7.avi', 'zr9OeyfLPPY_4_9.avi', 'toE0QYZzJKE_1_8.avi', 'uiLr9bdOL0M_23_30.avi', 'xxHx6s_DbUo_82_86.avi', 'ywHBKayhyvQ_19_28.avi', 's-XjRDsYuzU_0_12.avi', 'kWLNZzuo3do_206_213.avi', 'oRBgVOiZVsc_16_22.avi', 'lfGlDg47How_93_98.avi', 'gtixLEvO2Us_0_6.avi', 'h0JvF9vpqx8_213_223.avi', 'qeKX-N1nKiM_106_115.avi', 'yYA7YXIKbg4_9_14.avi', 'nd0ToNwccl4_12_17.avi', 'ifS2nXfCyYo_4_34.avi', 'zYcY4mjLpxU_45_55.avi', 'iyAoiWeD53k_120_127.avi', 's1ZABV7AQdA_38_48.avi', 'g1Gldu1KS44_8_14.avi', 'hJFBXHtxKIc_298_303.avi', 'yC4eEuURH8c_19_28.avi', 'muI1BFsdbdo_33_45.avi', 'lmCrIZeob4w_23_26.avi', 'xXlWsBhFvis_6_10.avi', 'xxHx6s_DbUo_182_186.avi', 'nrZyPuRd5pU_85_92.avi', 'xxHx6s_DbUo_162_165.avi', 'wkgGxsuNVSg_34_41.avi', 'oG6LLGi_n48_51_55.avi', 'xtbsD3PUua4_84_94.avi', 'rwHT2SuNOi8_195_201.avi', 'kWLNZzuo3do_145_151.avi', 'mmSQTI6gMNQ_120_128.avi', 'vMoOpQQy6sI_22_55.avi', 'f9Won2JpOEU_60_80.avi', 'yAD_TS5L2d4_4_11.avi', 'fjDvKHkmxs0_72_87.avi', 'zWVQImPY2Cc_27_44.avi', 'gGDtPJzh_0s_30_45.avi', 'klFyrnrUSck_42_46.avi', 'm1NR0uNNs5Y_123_129.avi', 'p69Q8lTkZTc_21_29.avi', 'nhm_APPwhWk_6_12.avi', 'n_Z0-giaspE_270_278.avi', 's80J2dAUUyI_33_43.avi', 'vloe_60s_dk_0_9.avi', 'p9g06ktIkJg_4_11.avi', 'pDvzOLRLjPc_0_8.avi', 'hJFBXHtxKIc_310_315.avi', 'f-24IxG9ijw_25_40.avi', 'x_7BrCQdVUs_172_177.avi', 'iuqVpMdb1NM_35_43.avi', 'oSnYUfCGiCA_7_17.avi', 'wjH72cZ0GLM_1_10.avi', 'h0JvF9vpqx8_36_42.avi', 'rOic25PnIx8_1_3.avi', 'q3I3R_gqy8M_73_79.avi', 'xaPepCVepCg_35_46.avi', 'i3fd4nE8OCI_174_181.avi', 'xxHx6s_DbUo_36_40.avi', 'ogcqFaNbah4_475_487.avi', 'rlQ2kW-FvMk_66_79.avi', 'o2X6UCaNqKA_27_36.avi', 'nULE40HEWpA_5_11.avi', 'l5JJ2n2ggiQ_319_327.avi', 'gyOVZz7kXyM_1_10.avi', 'klFyrnrUSck_87_100.avi', 'ok4cM6WTA5E_178_184.avi', 'ok4cM6WTA5E_142_150.avi', 'xxHx6s_DbUo_121_128.avi', 'jjl2ZMdFCsw_17_35.avi', 'z1PEyzk4ADU_8_18.avi', 'zuYZ5kPatJE_78_116.avi', 'z8dcUzdi2bw_3_16.avi', 'hNOzHvsEmg4_31_36.avi', 'n6U-TGahwvs_100_110.avi', 'pQYEZTwSVbQ_12_18.avi', 'tJHUH9tpqPg_113_118.avi', 'zkTn5Ef1Oig_70_75.avi', 'xdhLQCYQ-nQ_50_63.avi', 'lFyPUgJCmtU_100_110.avi', 'qeKX-N1nKiM_123_130.avi', 'kEGmZDpZ_RE_352_370.avi', 'qPXynwa_2iM_15_25.avi', 'hoinj6vyQ2g_8_16.avi', 'uH8ObB_dyOk_159_166.avi', 'nau1vCzyFQ4_37_54.avi', 'sMscRb9TcQE_146_161.avi', 'zlS1_zBYluY_15_21.avi', 'shPymuahrsc_5_12.avi', 'zFIn8DeV5PM_20_33.avi', 'jMO3jGQeqyk_3_6.avi', 'lsanQj2yacs_102_108.avi', 'm1NR0uNNs5Y_73_78.avi', 'vulNlhUI6m0_7_27.avi', 'inLBPVG8oEU_18_24.avi', 'rVFJzN20jhQ_27_32.avi', 'msCidKHOh74_410_418.avi', 'i2GgBwlwV0c_24_31.avi', 'lm0z7eLsbbw_9_23.avi', 'k-SWy-sU8cE_5_10.avi', 'jmoT2we_rqo_0_5.avi', 'jCplbayVbtw_28_38.avi', 'uxEhH6MPH28_69_85.avi', 'xxHx6s_DbUo_98_101.avi', 'fHfpMUDrQCs_17_31.avi', 'jv-eV6jR3Qw_7_12.avi', 'kRNHJSc4AXE_220_228.avi', 'qzQzooI4BqU_5_15.avi', 'iEW-EkPQywU_61_83.avi', 'yyxtyCaEVqk_250_264.avi', 'yREFkmrrYiw_51_57.avi', 'xOQn1z_oWDY_30_39.avi', 't4aPGtx7e6k_0_10.avi', 'nS6oQxX_Qi8_2_12.avi', 'm1NR0uNNs5Y_224_230.avi', 'kWLNZzuo3do_217_222.avi', 'pRpeEdMmmQ0_1_18.avi', 'v_tGw5gwlEw_136_152.avi', 'sWqi41wyXcQ_68_79.avi', 'kWLNZzuo3do_56_62.avi', 'gtIz1u8g1F0_3_13.avi', 'kWLNZzuo3do_251_260.avi', 'ruoHOXo2PRQ_2_20.avi', 'i3cHNObcEh8_0_10.avi', 'io2dbV-Qbus_215_247.avi', 'xkNDE1JL6Z8_50_59.avi', 'fr9H1WLcF1A_256_261.avi', 'seTkGZlEU64_81_110.avi', 'tYh4iDFgmEE_50_54.avi', 'mOZkcBcWR8o_6_12.avi', 'nBFhvrAOFqY_89_103.avi', 'pUPKsHTDZTo_70_85.avi', 'q7pOFn8s4zc_27_36.avi', 'k5OKBX2e7xA_19_32.avi', 'lB1UPJ4leqs_1_6.avi', 'mCrRHP4LFmo_24_40.avi', 'ggWzbEFC-RE_1_11.avi', 'iwpnUHFhjWc_9_14.avi', 'wgrrQwLdME8_66_74.avi', 'xxHx6s_DbUo_57_61.avi', 'rw9h_574HxE_127_133.avi', 'jcIrD7rNvTM_10_21.avi', 'qeKX-N1nKiM_133_142.avi', 'oeaVXK2GAyc_4_21.avi', 'nZSFn51l3hc_318_326.avi', 'o4OsYxsNGMI_77_82.avi', 'xBePrplM4OA_6_18.avi', 'xEDCfcMZlZY_91_100.avi', 'ptHkvYrH9fY_2_10.avi', 'jDFn-1lXJ98_71_80.avi', 'qDjtN7xxNr4_44_51.avi', 'krAk8WPZRL4_207_212.avi', 'jI58q6rcNLc_8_18.avi', 'zkTn5Ef1Oig_71_75.avi', 'xfRIRSWy0y0_10_20.avi', 'rnawC5C8gSI_82_90.avi', 'iCiGjZEV7VI_65_75.avi', 'yyxtyCaEVqk_321_328.avi', 'pNelR-nHz7g_68_90.avi', 'pdrBPJYfTC8_33_39.avi', 'xxHx6s_DbUo_158_161.avi', 'p69d3UBdpR8_98_109.avi', 'hEOGZoYSvT4_82_86.avi', 'pzq5fPfsPZg_51_57.avi', 'pFSoWsocv0g_8_17.avi', 'g2IYQq7IkXc_23_32.avi', 'u9prcUCHlqM_503_511.avi', 'kWLNZzuo3do_38_42.avi', 'yvfhk1kwKls_103_113.avi', 'kWLNZzuo3do_24_31.avi', 'idRc_KkInds_0_6.avi', 'rw9h_574HxE_161_166.avi', 'izU1dDwnuMY_80_92.avi', 'gHyXstpe_N8_116_125.avi', 'p6cg2jWI34M_34_42.avi', 'mF6ijhSrbBQ_32_40.avi', 'pcjuCotJYj8_50_62.avi', 'zbAk0gX7kas_16_24.avi', 'z_qf7tOnHVg_81_89.avi', 'rV5VmhY3-Sw_65_76.avi', 'j2Dhf-xFUxU_13_20.avi', 'xxHx6s_DbUo_173_177.avi', 'o4pL7FObqds_243_263.avi', 'hWhKdXcqYeU_3_12.avi', 'zfQOH4UGU_I_1_10.avi', 'glrijRGnmc0_211_215.avi', 'kBMsuhDvg88_45_64.avi', 'mZVPkPqwzR4_38_45.avi', 'fjDvKHkmxs0_119_126.avi', 'lcu-DwrnYY8_2_5.avi', 'yU5sxW9bErQ_0_17.avi', 'sv5YlZspb30_10_20.avi', 'sT5Bzt9w354_11_34.avi', 'j4dMnAPZu70_11_18.avi', 'yBK02O1Oewc_20_35.avi', 'ge7OOILJA6U_20_25.avi', 'ysTmUTQ5wZE_17_45.avi', 'k06Ge9ANKM8_5_16.avi', 'wSwwS_0MKEc_68_78.avi', 'wn9rDTZj-m4_8_18.avi', 'jbzaMtPYtl8_48_58.avi', 'kzyFBlNRohs_82_88.avi', 'rXZy-PHtnxg_8_42.avi', 'oDcd2JbOyzg_38_55.avi', 'x68Djm_Q0GA_0_10.avi', 'jvxUeT1Nlb8_100_115.avi', 'qIXs7fUoLIg_1_11.avi', 'qvg9eM4Hmzk_4_10.avi', 'iarsmqA3dck_19_25.avi', 'hJuqBDw_TT4_105_112.avi', 'nZSFn51l3hc_660_666.avi', 'kWLNZzuo3do_86_93.avi', 'kWLNZzuo3do_167_181.avi', 'jlahRlo4jlU_30_36.avi', 'kquB3rIgfGk_640_645.avi', 'mfJjIOfj6D8_3_10.avi', 'o4pL7FObqds_137_147.avi', 'rKF0ZW34FRk_41_54.avi', 'uppFvcVwqqY_5_15.avi', 'vuvpbeQak9Q_23_29.avi', 'jxdubZzQrio_33_46.avi', 'gjVBEJGHrXk_26_38.avi', 'lvFYUmDSOvU_34_38.avi', 'tYh4iDFgmEE_10_14.avi', 'jsEUFYhiqxU_121_128.avi', 'kJY5BRCNAs4_3_6.avi', 'qLwgb3F0aPU_298_305.avi', 'swKrHEeOj9c_4_8.avi', 'jcRCn7MeSbo_71_82.avi', 'itxzpFW1z7E_22_36.avi', 'kWLNZzuo3do_25_32.avi', 'gHzws6FpuNE_10_12.avi', 'hxZ-5wELSJM_0_12.avi', 'zCf8NWJ8kzA_47_52.avi', 'lfGlDg47How_110_115.avi', 'v5CeGLEnVFE_0_8.avi', 'swJ0zhVJ8DU_15_21.avi', 'g9aZcaEg7iY_0_9.avi', 'htWPOGTagec_2_18.avi', 'kquB3rIgfGk_525_532.avi', 'nHZsE7T7hwI_13_23.avi', 'tn-Hoz4KbkE_89_93.avi', 'vfktGc_qx-w_2_18.avi', 'iwpnUHFhjWc_84_94.avi', 'rNSAmHPYHjA_60_73.avi', 'nLz0QuerH1c_8_15.avi', 'tzd3AYTZq0U_0_6.avi', 'lexLAjh8fPA_27_31.avi', 'vpR0L3sIvoo_15_49.avi', 'uB9zRlV47qA_17_23.avi', 'v7iIZXtpIb8_5_15.avi', 'yd8jh9QYfEs_4_10.avi', 'zTn-nNj5Bng_61_77.avi', 'kWLNZzuo3do_31_37.avi', 'uGDuIyfJXXg_23_33.avi', 'k9Brw_0gncU_14_33.avi', 'j2Dhf-xFUxU_20_29.avi', 'gqSOvUH_njE_151_155.avi', 'lKADopH3qFY_0_10.avi', 'oDcd2JbOyzg_85_98.avi', 'o_mWZWcm2r4_47_54.avi', 's_ldnx8_etY_32_54.avi', 'kWLNZzuo3do_48_53.avi', 's-QQWRdF-5Y_19_28.avi', 'vz71JKcpeUU_0_10.avi', 'rw9h_574HxE_70_74.avi', 's20OlIRK340_147_174.avi', 'zzit5b_-ukg_5_20.avi', 'l57mQZvDaL4_10_30.avi', 'qOiN__I1-Zo_2_8.avi', 'v-9Gx0gJmfo_91_99.avi', 'uqVCk2oDpSE_194_200.avi', 'x8Ul09tk6zk_0_8.avi', 'sXyjCgR0rAc_0_11.avi', 'q8t7iSGAKik_11_31.avi', 'n016q1w8Q30_2_11.avi', 'j2sOMdilDWU_87_97.avi', 'tPkZK-PzeQE_10_28.avi', 't8Nf1MK7lts_0_10.avi', 'rw9h_574HxE_13_18.avi', 'idXJu0BQRvo_2_6.avi', 'mYzajpeAWuA_100_112.avi', 'kNHivduxQWg_0_14.avi', 'tYQ7O6V0Fvk_20_55.avi', 'gbUhorqLCzU_10_23.avi', 'lw7pTwpx0K0_38_48.avi', 'hJFBXHtxKIc_317_322.avi', 'qhknaG9ifbs_122_127.avi', 'qypmR4O1Gwk_0_10.avi', 'wpUT0DNB3qs_9_19.avi', 'f_GnkweYzzI_35_41.avi', 'q3I3R_gqy8M_38_42.avi', 'gnEE6oWoz7U_124_132.avi', 'lv8d_qLLqsk_1_20.avi', 'v-9Gx0gJmfo_26_32.avi', 'fgWFxFg7-GU_10_26.avi', 'fqly5kyO2MI_10_20.avi', 'mFCf8lLXrUc_36_57.avi', 'ul9Xvjt83eI_111_120.avi', 'fJr2evLANsE_0_10.avi', 'mJ9eRvxjLc4_0_16.avi', 'wNv74rvkAw8_30_40.avi', 'hkkmKk9LcQk_36_43.avi', 'eyhzdC936uk_15_27.avi', 'hcCLIzzB1jQ_1_7.avi', 'msCidKHOh74_392_399.avi', 'hJuqBDw_TT4_14_25.avi', 'vE1gvaM3iAs_39_46.avi', 'zHy7pM0U49w_110_116.avi', 'qeKX-N1nKiM_37_43.avi', 'zHy7pM0U49w_103_109.avi', 'iTA0rWPE4nY_17_23.avi', 's7znbqra118_91_97.avi', 'iLr7ZHAq1ro_7_11.avi', 'rl1rVk_xIOs_1_16.avi', 'jTnrm338_KY_34_42.avi', 'u9prcUCHlqM_73_80.avi', 'umjc1CkO4JA_290_305.avi', 'q7pOFn8s4zc_263_273.avi', 'kWLNZzuo3do_77_83.avi', 'lb8J2zCQTlo_3_8.avi', 'wzfkC2TjdeQ_0_31.avi', 'yId1rg5-ac0_40_50.avi', 'ibSwITK4jjQ_14_24.avi', 'hNPZmTlY_3Q_0_8.avi', 'hFERWnoc-nU_0_12.avi', 'kWLNZzuo3do_38_47.avi', 'jLgmCY1fEE8_16_26.avi', 'q3I3R_gqy8M_34_37.avi', 's8utHZYTNTs_35_42.avi', 'sTMlQSbAGfE_0_12.avi', 'yFPHhRat6bc_160_210.avi', 'zH4v_DClIoc_3_28.avi', 'sFExO_PW22s_10_18.avi', 'zv2RIbUsnSw_159_162.avi', 'ry7AUQtuwdU_4_39.avi', 'z0zb--BOhDY_16_22.avi', 'ngHDYzhDBk4_5_14.avi', 'qeKX-N1nKiM_68_72.avi', 'sBjr8UJOpsQ_181_195.avi', 'nZSFn51l3hc_480_485.avi', 'yNy9jTeolUk_8_12.avi', 'fKqBnl8D1Qo_5_44.avi', 'klFyrnrUSck_13_19.avi', 's-dSFyz_5Ww_31_41.avi', 'rw9h_574HxE_251_254.avi', 'xGdoi3W3Z4o_2_40.avi', 'lsanQj2yacs_80_85.avi', 's20OlIRK340_125_138.avi', 'lGk1MA6YP-M_36_48.avi', 'xSmfK498DjI_1_20.avi', 'u4kMN1jamdM_10_20.avi', 'gIvetX_oXeI_85_90.avi', 'wFX6bXLbHW4_83_90.avi', 'fd7Ky1lEPT8_40_50.avi', 'nTasT5h0LEg_12_14.avi', 'nq4hG6qgyPs_370_377.avi', 'lSnWhsmlGec_5_10.avi', 'mv89psg6zh4_33_46.avi', 'sb1dX5xAFvk_10_17.avi', 'xEDCfcMZlZY_37_41.avi', 'wLUH7qA_6sA_90_115.avi', 'hJFBXHtxKIc_163_168.avi', 'hJFBXHtxKIc_204_209.avi', 'fcvW1vr8hAs_96_102.avi', 'hksxtbcS780_7_14.avi', 'klteYv1Uv9A_27_33.avi', 'ri5AyXzxb4o_201_215.avi', 'g2IYQq7IkXc_124_132.avi', 'pfQPRXcihkI_127_138.avi', 'xxHx6s_DbUo_202_207.avi', 'zMg9dChF97A_12_38.avi', 'ywMLb2VfHbI_13_20.avi', 'm1NR0uNNs5Y_160_166.avi', 'n_Z0-giaspE_168_193.avi', 's-dSFyz_5Ww_13_23.avi', 'hW8TKz2Aea4_40_50.avi', 'mmSQTI6gMNQ_15_21.avi', 'onxE6PpEXes_8_25.avi', 'uO7Eysrs8_k_106_114.avi', 'za-9mBZyNfQ_330_336.avi', 'p7IAuvd87hQ_12_19.avi', 'lfGlDg47How_361_367.avi', 'zpgW7m7_LZw_2_15.avi', 'xxHx6s_DbUo_32_36.avi', 'u_6tre9_99Q_13_25.avi', 'pzq5fPfsPZg_145_160.avi', 'r2PM0om2El8_18_25.avi', 'mFCf8lLXrUc_25_35.avi', 'oBt257I-pL0_0_10.avi', 'klFyrnrUSck_63_73.avi', 'rw9h_574HxE_59_66.avi', 'u4T76jsPin0_0_11.avi', 'jZ8X8e7eRVk_24_27.avi', 'klFyrnrUSck_25_36.avi', 'wFPmKChNrhU_3_11.avi', 'k4hhWYtaQ14_0_10.avi', 'nc0fVlaTYEs_34_44.avi', 'wX-Bl25Htag_104_115.avi', 'lKpGc3SCSVw_12_20.avi', 'htry5uxX0-Y_45_52.avi', 'fvBs0xpEZhQ_10_30.avi', 'kIZanu909lw_67_80.avi', 'xy9LLUUZ6ic_50_60.avi', 'fVWUaH2mCt4_1_7.avi', 'rq2p5ML8-WI_63_69.avi', 'kEGmZDpZ_RE_295_330.avi', 'lR8RrUBhCQg_5_15.avi', 'xCFCXzDUGjY_5_9.avi', 'k8l4ETsylVY_9_18.avi', 'me1D1WZ0yNM_120_124.avi', 'mtrCf667KDk_134_176.avi', 'rwHT2SuNOi8_240_255.avi', 'uy0HNWto0UY_18_25.avi', 'rQuNYxNmA6M_0_4.avi', 'q8t7iSGAKik_57_74.avi', 'zSPBC8EO6dY_122_126.avi', 'klFyrnrUSck_79_85.avi', 'mHv4iJ9Yr1g_10_16.avi', 'gqxpGOHUH9k_113_119.avi', 'jW77z3-SrO4_56_63.avi', 'sJSmRik2c-c_1_7.avi', 'nlU3crMsbWI_19_23.avi', 'kquB3rIgfGk_537_544.avi', 'inzk2fTUe1w_1_15.avi', 'lB1UPJ4leqs_0_6.avi', 'vZa13vJugGU_0_30.avi'] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_qa.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_qa.yaml new file mode 100644 index 000000000..2fb146cfa --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/msvd_qa.yaml @@ -0,0 +1,165 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "based on the given video respond to {}" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msvd_qa_instruct: + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_question" + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_train.json + storage: msvd/annotations/qa_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_val.json + storage: msvd/annotations/qa_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/qa_test.json + storage: msvd/annotations/qa_test.json + ans2label: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msvd/train_ans2label.json + storage: msvd/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msvd/videos + + instance_id_key: question_id + +run: + task: gqa + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 10 + min_len: 1 + num_beams: 5 + inference_method: "generate" + prompt: "based on the given video respond to {}" + length_penalty: -1. + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video_image/msvd_qa/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["test"] + # ques_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + # "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_questions.json", + # "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_questions.json"} + # anno_files: {"train": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + # "val": "/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_val_annotations.json", + # "test":"/export/home/.cache/lavis/msvd_qa_instruct_gt/msvd_qa_instruct_test_annotations.json"} + + + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/vatex_captioning.yaml b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/vatex_captioning.yaml new file mode 100644 index 000000000..802c8d14b --- /dev/null +++ b/lavis/projects/xinstruct_blip/eval/vicuna7b_nocue/video_image/vatex_captioning.yaml @@ -0,0 +1,181 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "image" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "image" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "image" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "a short description" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + vatex_caption: # name of the dataset builder + data_type: [video] + + video_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_caption + eval: + name: blip_caption + + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_train.json + storage: + - vatex/annotations/cap_train.json + val: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_val.json + storage: + - vatex/annotations/cap_val.json + test: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vatex/cap_private_test.json + storage: + - vatex/annotations/cap_test.json + + video: + storage: /export/video-language-dataset/data/vatex/ + + audio: + storage: /export/video-language-dataset/data/vatex/ + + + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "a short description" + length_penalty: 1. + + + seed: 42 + output_dir: "output/xinstructblip/eval/vicuna7b_nocue/video_image/vatex_captioning/" + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + # annotation_file: /export/home/.cache/lavis/vatex_caption_gt/vatex_caption_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/original.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/original.yaml new file mode 100644 index 000000000..36a76f524 --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/original.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + prompt: A short image description + + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: A short image description + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/instructblip/original/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_1.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_1.yaml new file mode 100644 index 000000000..87f1fe50b --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_1.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + prompt: In a few words describe the basic features of this image. + + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: In a few words describe the basic features of this image. + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/instructblip/template1/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_2.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_2.yaml new file mode 100644 index 000000000..8e1e2075b --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_2.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + prompt: Give me a recap of what is happening in the picture. + + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: Give me a recap of what is happening in the picture. + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/instructblip/template2/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_3.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_3.yaml new file mode 100644 index 000000000..ea9111ae6 --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_3.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + prompt: I'd like to hear your interpretation of this image. What do you see? + + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: I'd like to hear your interpretation of this image. What do you see? + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/instructblip/template3/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_4.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_4.yaml new file mode 100644 index 000000000..81710d20c --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_4.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + prompt: Provide a verbal snapshot of what's happening in this image. + + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: Provide a verbal snapshot of what's happening in this image. + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/instructblip/template4/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_5.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_5.yaml new file mode 100644 index 000000000..372a1b251 --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/instructblip/template_5.yaml @@ -0,0 +1,81 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_instruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + prompt: "Please articulate the elements and context of this image" + + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: "Please articulate the elements and context of this image" + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/instructblip/template5/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_1.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_1.yaml new file mode 100644 index 000000000..122904355 --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_1.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: In a few words describe the basic features of this image. + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: In a few words describe the basic features of this image. + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/xinstructblip/template1/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_2.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_2.yaml new file mode 100644 index 000000000..92550db7d --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_2.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: Give me a recap of what is happening in the picture. + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: Give me a recap of what is happening in the picture. + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/xinstructblip/template2/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_3.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_3.yaml new file mode 100644 index 000000000..892d6b285 --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_3.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: I'd like to hear your interpretation of this image. What do you see? + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: I'd like to hear your interpretation of this image. What do you see? + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/xinstructblip/template3/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_4.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_4.yaml new file mode 100644 index 000000000..0b9d21bdf --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_4.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: Provide a verbal snapshot of what's happening in this image. + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: Provide a verbal snapshot of what's happening in this image. + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/xinstructblip/template4/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_5.yaml b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_5.yaml new file mode 100644 index 000000000..0a8aadf62 --- /dev/null +++ b/lavis/projects/xinstruct_blip/prompt_variation/nocaps/xinstructblip/template_5.yaml @@ -0,0 +1,145 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: Please articulate the elements and context of this image + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + nocaps: # name of the dataset builder + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_val.json + storage: nocaps/annotations/nocaps_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/nocaps_test.json + storage: nocaps/annotations/nocaps_test.json + images: + storage: /path/to/nocaps/ + +run: + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 1 + batch_size_train: 16 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + + max_len: 80 + min_len: 10 + num_beams: 5 + inference_method: "generate" + prompt: Please articulate the elements and context of this image + length_penalty: 1. + + annotation_file: https://nocaps.s3.amazonaws.com/nocaps_val_4500_captions.json + + + seed: 42 + output_dir: "output/xinstructblip/prompt_variation/xinstructblip/template5/" + + + amp: True + resume_ckpt_path: null + + evaluate: True + # train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: -1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna13b/audio_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna13b/audio_training.yaml new file mode 100644 index 000000000..ee2a89cac --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna13b/audio_training.yaml @@ -0,0 +1,218 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 2 + batch_size_eval: 2 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 300000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + caption_key: caption + sample_id_key: youtube_id + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna13b/audio" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna13b/audio_training_continue.yaml b/lavis/projects/xinstruct_blip/train/vicuna13b/audio_training_continue.yaml new file mode 100644 index 000000000..efeb1969e --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna13b/audio_training_continue.yaml @@ -0,0 +1,299 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna13b/audio/20231027135/checkpoint_240007.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna13b/audio/20231027135/checkpoint_240007.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: True + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "audio" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/export/home/LAVIS/_pretrained_models/vicuna-13b" + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - audiocaps/annotations/train.csv + + val: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + storage: + - audiocaps/annotation/val.csv + + # test: + # url: + # - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + # storage: + # - /export/einstein-vision/audio_datasets/audiocaps/dataset/test.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + annotations: + train: + url: + - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_train.csv + storage: + - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_train.csv + + # val: + # url: + # - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_val.csv + # storage: + # - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_val.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + cmu_dict_path: /export/home/LAVIS/cmu_dict.p + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + train: + url: + - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + storage: + - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - audioset/annotations/class_labels_indices.csv + # val: + # url: + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/eval_segments.csv + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + # storage: + # - audioset/annotations/eval_segments.csv + # - audioset/annotations/class_labels_indices.csv + audio: + storage: /export/einstein-vision/audio_datasets/AudioSet/all_audio + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + json_data: /export/share/datasets/audio/WavCaps/json_data.json + + cached: False + cached_dir: /export/share/datasets/audio/WavCaps/beats_features/ + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + - /export/share/datasets/audio/WavCaps/json_data.json + storage: + - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + - /export/share/datasets/audio/WavCaps/json_data.json + + audio: + storage: /export/share/datasets/audio/WavCaps/ + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 2 + batch_size_eval: 2 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 300000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + caption_key: caption + sample_id_key: youtube_id + annotation_file: /export/home/.cache/lavis/audiocaps_mm_caption_instruct_gt/audiocaps_mm_caption_instruct_val_annotations.json + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna13b/audio" + + amp: True + resume_ckpt_path: /export/home/LAVIS-xgen_mm/lavis/output/xinstructblip/train/vicuna13b/audio/20231027135/checkpoint_240007.pth + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna13b/image_train.yaml b/lavis/projects/xinstruct_blip/train/vicuna13b/image_train.yaml new file mode 100644 index 000000000..667202dd0 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna13b/image_train.yaml @@ -0,0 +1,345 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + + ocrvqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + + ##Dialogue + llava150k: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 750000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 0.3, #0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocrvqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k': 0.049705943639721646} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna13b/image" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna13b/image_train_continue.yaml b/lavis/projects/xinstruct_blip/train/vicuna13b/image_train_continue.yaml new file mode 100644 index 000000000..c4fa01bbb --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna13b/image_train_continue.yaml @@ -0,0 +1,542 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: /export/home/LAVIS/lavis/output/new_training/vicuna13b/image/20230915215/checkpoint_880000.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null # https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: null + pretrained_video_qformer: null + pretrained_audio_qformer: null + load_attention_image_qformer: True + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "image" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/export/home/LAVIS/_pretrained_models/vicuna-13b" + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/.cache/lavis/clean_cc12m_org.json + storage: + - /export/home/.cache/lavis/clean_cc12m_org.json + images: + storage: /export/share/datasets/vision_language/cc12m_resize + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + val: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + md5: b273847456ef5580e33713b1f7de52a0 + storage: coco/annotations/coco_karpathy_val.json + test: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + storage: + - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + images: + storage: /export/share/datasets/vision/coco/images + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/visual_genome/vg_caption.json + storage: vg/annotations/vg_caption.json + images: + storage: /export/share/datasets/vision/visual-genome/ #vg/images/ + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/sbu/sbu.json + # - /export/share/dongxuli/data/lavis/sbu/annotation/sbu.json + storage: + - sbu_captions/annotations/sbu.json + images: + # storage: sbu_captions/images + storage: /export/share/datasets/vision_language/sbu_resize + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/visual_genome/vg_qa.json + storage: vg/annotations/vg_qa.json + images: + storage: /export/share/datasets/vision/visual-genome/ #vg/images/ + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_val.json + storage: + - coco/annotations/vqa_train.json + - coco/annotations/vqa_val.json + # val: + # url: + # # TODO make this order insensitive + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_val_eval.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/answer_list.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/v2_OpenEnded_mscoco_val2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/v2_mscoco_val2014_annotations.json + # storage: + # - coco/annotations/vqa_val_eval.json + # - coco/annotations/answer_list.json + # - coco/annotations/v2_OpenEnded_mscoco_val2014_questions.json + # - coco/annotations/v2_mscoco_val2014_annotations.json + # test: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_test.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/answer_list.json + # storage: + # - coco/annotations/vqa_test.json + # - coco/annotations/answer_list.json + images: + storage: /export/share/datasets/vision/coco/images + + ocr_vqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/video-language-dataset/ocrvqa/ocrvqa.json + storage: + - /export/video-language-dataset/ocrvqa/ocrvqa.json + images: + storage: /export/video-language-dataset/ocrvqa/images/ + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + # test: + # url: + # # TODO make this order insensitive + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + # storage: + # - okvqa/annotations/vqa_val_eval.json + # - okvqa/annotations/answer_list.json + # - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + # - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_train.json + storage: + - aokvqa/annotations/aokvqa_v1p0_train.json + # val: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_val.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/specialized_vocab_train.json + # storage: + # - aokvqa/annotations/aokvqa_v1p0_val.json + # - aokvqa/annotations/specialized_vocab_train_lavis.json + # # - aokvqa/annotations/large_vocab_train_lavis.json + # test: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_test.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/specialized_vocab_train.json + # storage: + # - aokvqa/annotations/aokvqa_v1p0_test.json + # - aokvqa/annotations/specialized_vocab_train_lavis.json + images: + storage: /export/share/datasets/vision/coco/images + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + + build_info: + annotations: + train: + url: + - https://huggingface.co/datasets/liuhaotian/LLaVA-Instruct-150K/resolve/main/llava_instruct_150k.json + storage: + - /export/home/LLaVA-Instruct-150K/lava_instruct_150k.json + # Be careful not to append minus sign (-) before split to avoid itemizing + images: + storage: /export/share/datasets/vision/coco/images/train2017 + +# laion400M_instruct: +# data_type: images + +# vis_processor: +# train: +# name: "clip_image_train" +# image_size: 224 +# eval: +# name: "clip_image_eval" +# image_size: 224 + + +# text_processor: +# train: +# name: blip_instruction +# modality: image +# task: caption +# eval: +# name: blip_caption + +# build_info: +# # Be careful not to append minus sign (-) before split to avoid itemizing +# storage: /export/laion400m-data-ssd/laion115m_capfilt_20220817/{part0/part0,part1/part1,part2/part2}_node{00..15}_shard{000000..000118}.tar +# # storage: /export/laion/laion2B-multi/part-00000/{00000..01743}.tar + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 2 + batch_size_eval: 2 + num_workers: 8 + accum_grad_iters: 2 + max_iters: 40000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 3.0, #0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocr_vqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k_dialogue_instruct': 0.049705943639721646,} + # 'laion400M_instruct': 0.1} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna13b/image" + + amp: True + resume_ckpt_path: null #/export/home/LAVIS/lavis/output/new_training/vicuna13b/image/20230915215/checkpoint_880000.pth (Cuda OOM) + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna13b/pc_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna13b/pc_training.yaml new file mode 100644 index 000000000..172ce7d02 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna13b/pc_training.yaml @@ -0,0 +1,170 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 4 + batch_size_eval: 4 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 355000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna13b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna13b/video_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna13b/video_training.yaml new file mode 100644 index 000000000..b932ad0aa --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna13b/video_training.yaml @@ -0,0 +1,202 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "image" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "image" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "image" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "describe the video." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + msrvtt_caption_instruct: #13260 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + prompt: Describe the video. + + + msrvtt_qa_instruct: # 149075 + data_type: videos + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + + webvid2m_caption_instruct: # 2m + data_type: images + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_instruction" + modality: video + task: caption + eval: + name: "blip_caption" + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 1 + batch_size_eval: 1 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 25000 + iters_per_inner_epoch: 1000 + report_metric: False + train_dataset_ratios: {"msrvtt_caption_instruct": 1., "msrvtt_qa_instruct": 0.17864922797406588 , "webvid2m_caption_instruct": 0.6543554630478173} + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna13b/video" + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training.yaml new file mode 100644 index 000000000..1097cd9b7 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training.yaml @@ -0,0 +1,215 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/audio" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_improved.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_improved.yaml new file mode 100644 index 000000000..65e85f85f --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_improved.yaml @@ -0,0 +1,216 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "USER: " + postfix: "\nASSISTANT:" + predict_with_gen: False + clean_tokenization: True + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/audio_improved" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_no_init.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_no_init.yaml new file mode 100644 index 000000000..987f0e6d1 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_no_init.yaml @@ -0,0 +1,282 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: null + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: False + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 0 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/audio" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only.yaml new file mode 100644 index 000000000..7d26dfded --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only.yaml @@ -0,0 +1,218 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: null + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "audio" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["audio"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 4 + batch_size_eval: 8 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/audio" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only_nocue.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only_nocue.yaml new file mode 100644 index 000000000..a6647eb0b --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/audio_training_projection_only_nocue.yaml @@ -0,0 +1,218 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: null + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "audio" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 1 + +datasets: +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 4 + batch_size_eval: 8 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/audio" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + caption_key: caption + sample_id_key: youtube_id + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/image_train.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train.yaml new file mode 100644 index 000000000..37922f44b --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train.yaml @@ -0,0 +1,346 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: True + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "vision" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + + ocrvqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocr_vqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k_dialogue_instruct': 0.049705943639721646} + # 'laion400M_instruct': 0.1} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/image" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_improved.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_improved.yaml new file mode 100644 index 000000000..54ed0e507 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_improved.yaml @@ -0,0 +1,346 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: True + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "vision" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + predict_with_gen: False + prefix: "USER: " + postfix: "\nASSISTANT:" + clean_tokenization: True + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + + ocrvqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocr_vqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k_dialogue_instruct': 0.049705943639721646} + # 'laion400M_instruct': 0.1} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 22 + output_dir: "output/xinstructblip/train/vicuna7b/image" + + amp: True + resume_ckpt_path: null + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_no_init.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_no_init.yaml new file mode 100644 index 000000000..c0a97816a --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_no_init.yaml @@ -0,0 +1,346 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: False + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + + ocrvqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocr_vqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k_dialogue_instruct': 0.049705943639721646} + # 'laion400M_instruct': 0.1} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/image" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_projection_only.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_projection_only.yaml new file mode 100644 index 000000000..91ff716ee --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/image_train_projection_only.yaml @@ -0,0 +1,347 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: True + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "vision" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: False + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + + ocrvqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocr_vqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k_dialogue_instruct': 0.049705943639721646} + # 'laion400M_instruct': 0.1} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/image" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/lora_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/lora_training.yaml new file mode 100644 index 000000000..5ac85e792 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/lora_training.yaml @@ -0,0 +1,926 @@ + # Copyright (c) 2023 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + # pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: "" + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + lora: True + modalities : ["image", "pc", "audio", "video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## IMAGE + ### CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # - https://storage.googleapis.com/sfr-xinstructblip-data-research/data/cc12m/x_instructblip_clean.json + - /export/home/.cache/lavis/clean_cc12m_org.json + storage: + # - cc12m/x-instructblip_cc12m_annotation.json + - /export/home/.cache/lavis/clean_cc12m_org.json + images: + storage: /export/share/datasets/vision_language/cc12m_resize + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_train.json + md5: aa31ac474cf6250ebb81d18348a07ed8 + storage: coco/annotations/coco_karpathy_train.json + # val: + # url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_val.json + # md5: b273847456ef5580e33713b1f7de52a0 + # storage: coco/annotations/coco_karpathy_val.json + # test: + # url: https://storage.googleapis.com/sfr-vision-language-research/datasets/coco_karpathy_test.json + # md5: 3ff34b0ef2db02d01c37399f6a2a6cd1 + # storage: coco/annotations/coco_karpathy_test.json + images: + storage: /export/share/datasets/vision/coco/images + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + storage: + - /export/share/datasets/vision_language/capfilt_14m_new/annotation.json + images: + storage: /export/share/datasets/vision/coco/images + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/visual_genome/vg_caption.json + storage: vg/annotations/vg_caption.json + images: + storage: /export/share/datasets/vision/visual-genome/ #vg/images/ + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/sbu/sbu.json + # - /export/share/dongxuli/data/lavis/sbu/annotation/sbu.json + storage: + - sbu_captions/annotations/sbu.json + images: + # storage: sbu_captions/images + storage: /export/share/datasets/vision_language/sbu_resize + + + ### QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/visual_genome/vg_qa.json + storage: vg/annotations/vg_qa.json + images: + storage: /export/share/datasets/vision/visual-genome/ #vg/images/ + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_train.json + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_val.json + storage: + - coco/annotations/vqa_train.json + - coco/annotations/vqa_val.json + # val: + # url: + # # TODO make this order insensitive + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_val_eval.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/answer_list.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/v2_OpenEnded_mscoco_val2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/v2_mscoco_val2014_annotations.json + # storage: + # - coco/annotations/vqa_val_eval.json + # - coco/annotations/answer_list.json + # - coco/annotations/v2_OpenEnded_mscoco_val2014_questions.json + # - coco/annotations/v2_mscoco_val2014_annotations.json + # test: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/vqa_test.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/vqav2/answer_list.json + # storage: + # - coco/annotations/vqa_test.json + # - coco/annotations/answer_list.json + images: + storage: /export/share/datasets/vision/coco/images + + ocr_vqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/video-language-dataset/ocrvqa/ocrvqa.json + storage: + - /export/video-language-dataset/ocrvqa/ocrvqa.json + images: + storage: /export/video-language-dataset/ocrvqa/images/ + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + # TODO make this order insensitive + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_train2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_train2014_annotations.json + storage: + - okvqa/annotations/okvqa_train.json + # - okvqa/annotations/OpenEnded_mscoco_train2014_questions.json + # - okvqa/annotations/mscoco_train2014_annotations.json + # test: + # url: + # # TODO make this order insensitive + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_val_eval.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/okvqa_answer_list_train.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/OpenEnded_mscoco_val2014_questions.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/okvqa/mscoco_val2014_annotations.json + # storage: + # - okvqa/annotations/vqa_val_eval.json + # - okvqa/annotations/answer_list.json + # - okvqa/annotations/OpenEnded_mscoco_val2014_questions.json + # - okvqa/annotations/mscoco_val2014_annotations.json + images: + storage: /export/share/datasets/vision/coco/images + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_train.json + storage: + - aokvqa/annotations/aokvqa_v1p0_train.json + # val: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_val.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/specialized_vocab_train.json + # storage: + # - aokvqa/annotations/aokvqa_v1p0_val.json + # - aokvqa/annotations/specialized_vocab_train_lavis.json + # # - aokvqa/annotations/large_vocab_train_lavis.json + # test: + # url: + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/aokvqa_v1p0_test.json + # - https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/aokvqa/specialized_vocab_train.json + # storage: + # - aokvqa/annotations/aokvqa_v1p0_test.json + # - aokvqa/annotations/specialized_vocab_train_lavis.json + images: + storage: /export/share/datasets/vision/coco/images + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + + build_info: + annotations: + train: + url: + - https://huggingface.co/datasets/liuhaotian/LLaVA-Instruct-150K/resolve/main/llava_instruct_150k.json + storage: + - /export/home/LLaVA-Instruct-150K/lava_instruct_150k.json + # Be careful not to append minus sign (-) before split to avoid itemizing + images: + storage: /export/share/datasets/vision/coco/images/train2017 + + ## AUDIO + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + annotations: + train: + url: + - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/train.csv + storage: + - audiocaps/annotations/train.csv + + # val: + # url: + # - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/val.csv + # storage: + # - audiocaps/annotation/val.csv + + # test: + # url: + # - https://raw.githubusercontent.com/cdjkim/audiocaps/master/dataset/test.csv + # storage: + # - /export/einstein-vision/audio_datasets/audiocaps/dataset/test.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + annotations: + train: + url: + - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_train.csv + storage: + - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_train.csv + + # val: + # url: + # - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_val.csv + # storage: + # - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/audio_qa/audio_qa_final_val.csv + + audio: + storage: /export/einstein-vision/audio_datasets/audiocaps/AUDIOCAPS_32000Hz/audio + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + cmu_dict_path: /export/home/LAVIS/cmu_dict.p + eval: + name: blip_caption + + data_type: [audio] + + build_info: + annotations: + train: + url: + - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + storage: + - /export/home/LAVIS-xgen_mm/lavis/configs/datasets/audioset/balanced_train_clean.csv + - audioset/annotations/class_labels_indices.csv + # val: + # url: + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/eval_segments.csv + # - http://storage.googleapis.com/us_audioset/youtube_corpus/v1/csv/class_labels_indices.csv + # storage: + # - audioset/annotations/eval_segments.csv + # - audioset/annotations/class_labels_indices.csv + audio: + storage: /export/einstein-vision/audio_datasets/AudioSet/all_audio + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + json_data: /export/share/datasets/audio/WavCaps/json_data.json + + cached: False + cached_dir: /export/share/datasets/audio/WavCaps/beats_features/ + + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + - /export/share/datasets/audio/WavCaps/json_data.json + storage: + - /export/share/datasets/audio/WavCaps/json_files/BBC_Sound_Effects/bbc_final.json + - /export/share/datasets/audio/WavCaps/json_files/FreeSound/fsd_final.json + - /export/share/datasets/audio/WavCaps/json_files/SoundBible/sb_final.json + - /export/share/datasets/audio/WavCaps/json_files/AudioSet_SL/as_final.json + - /export/share/datasets/audio/WavCaps/json_data.json + + audio: + storage: /export/share/datasets/audio/WavCaps/ + + ## PC DATASETS + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + storage: + - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_train.json + + # val: + # url: + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + # storage: + # - /export/einstein-vision/3d_vision/objaverse_captions/objaverse_blip_captions_val.json + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + images: + storage: /export/einstein-vision/3d_vision/objaverse_captions/images/ + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + data_type: pc # [images|pc] + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: + - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/3d_qa/CAP3DQA_final.csv + storage: + - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/3d_qa/CAP3DQA_final.csv + # val: + # url: + # - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/3d_qa/CAP3DQA_final_val.csv + # storage: + # - /export/home/LAVIS/projects/mm_instructblip/instr_data_creation/3d_qa/CAP3DQA_final_val.csv + + templates: null + + pc: + storage: /export/einstein-vision/3d_vision/objaverse/objaverse_pc_parallel + + + msrvtt_caption_instruct: #13260 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + prompt: Describe the video. + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_train.json + storage: msrvtt/annotations/cap_train.json + # val: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_val.json + # storage: msrvtt/annotations/cap_val.json + # test: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/cap_test.json + # storage: msrvtt/annotations/cap_test.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + + msrvtt_qa_instruct: # 149075 + data_type: videos + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_train.json + storage: msrvtt/annotations/qa_train.json + # val: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_val.json + # storage: msrvtt/annotations/qa_val.json + # test: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/qa_test.json + # storage: msrvtt/annotations/qa_test.json + # ans2label: + # url: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/datasets/msrvtt/train_ans2label.json + # storage: msrvtt/annotations/qa_ans2label.json + videos: + storage: /export/share/datasets/vision_language/msrvtt/videos + + webvid2m_caption_instruct: # 2m + data_type: images + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_instruction" + modality: video + task: caption + eval: + name: "blip_caption" + + build_info: + # Be careful not to append minus sign (-) before split to avoid itemizing + annotations: + train: + url: /export/home/LAVIS/webvid_annotation.json + storage: /export/home/LAVIS/webvid_annotation.json + images: + storage: /export/video-language-dataset/data/webvid2m/postprocess/downsampled_videos + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 2 + num_workers: 0 + accum_grad_iters: 1 + max_iters: 100000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {'audiocaps_mm_caption_instruct': 0.04838977224422461, 'audiocaps_mm_qa': 0.03823164395438083, 'wavcaps_mm_caption_instruct': 0.13412813421487357, 'audioset_mm_caption_instruct': 0.029250449586520996, 'objaverse_mm_caption_instruct': 0.15436768776310836, 'objaverse_mm_qa': 0.09563231223689161, 'msrvtt_caption_instruct': 0.075, 'msrvtt_qa_instruct': 0.04466230699351647, 'webvid2m_caption_instruct': 0.16358886576195433, 'conceptual_caption_12m_instruct': 0.04859614813464941, 'coco_caption_instruct': 0.014898507905259383, 'capfilt14m_instruct': 0.07371153965255721, 'vg_caption_instruct': 0.017940079326242975, 'sbu_caption_instruct': 0.01834980589911916, 'vg_vqa_instruct': 0.02374869836697125, 'coco_vqa_instruct': 0.016054449781544723, 'ocr_vqa_instruct': 0.01981133124561304, 'ok_vqa_instruct': 0.001878392970131577, 'aok_vqa_instruct': 0.0025845608079808893, 'llava150k_dialogue_instruct': 0.012426485909930412} + # train_dataset_ratios: { + # "audiocaps_mm_caption_instruct": 0.19355908897689844, + # "audiocaps_mm_qa": 0.1529265758175233, + # "wavcaps_mm_caption_instruct": 0.5365125368594943, + # "audioset_mm_caption_instruct": 0.11700179834608398, + # "objaverse_mm_caption_instruct": 0.6174707510524334, + # "objaverse_mm_qa": 0.38252924894756646, + # "msrvtt_caption_instruct": .3, + # "msrvtt_qa_instruct": 0.17864922797406588 , + # "webvid2m_caption_instruct": 0.6543554630478173, + # "conceptual_caption_12m_instruct": 0.19438459253859763, + # "coco_caption_instruct": 0.05959403162103753, + # "capfilt14m_instruct": 0.29484615861022884, + # "vg_caption_instruct": 0.0717603173049719, + # 'sbu_caption_instruct': 0.07339922359647665, + # 'vg_vqa_instruct': 0.094994793467885, + # 'coco_vqa_instruct': 0.06421779912617889, + # "ocr_vqa_instruct": 0.07924532498245215, + # "ok_vqa_instruct": 0.007513571880526308, + # "aok_vqa_instruct": 0.010338243231923557, + # 'llava150k_dialogue_instruct': 0.049705943639721646 + # } + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/lora" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + # caption_key: caption + # sample_id_key: youtube_id + # annotation_file: /export/home/.cache/lavis/audiocaps_mm_caption_instruct_gt/audiocaps_mm_caption_instruct_val_annotations.json + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training.yaml new file mode 100644 index 000000000..bcab29711 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_improved.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_improved.yaml new file mode 100644 index 000000000..25a354d32 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_improved.yaml @@ -0,0 +1,171 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + clean_tokenization: True + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_no_init.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_no_init.yaml new file mode 100644 index 000000000..c98001610 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_no_init.yaml @@ -0,0 +1,169 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: null + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: False + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only.yaml new file mode 100644 index 000000000..fc5e0d6ae --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only.yaml @@ -0,0 +1,171 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: "" + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: False + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only_nocue.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only_nocue.yaml new file mode 100644 index 000000000..c372c7967 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_projection_only_nocue.yaml @@ -0,0 +1,171 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: "" + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: False + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + projection_only: True + proj_dim: 768 + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_scaled_up.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_scaled_up.yaml new file mode 100644 index 000000000..2531e01a0 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_scaled_up.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_scaledup" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + data_type: pc # [images|pc] + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip1.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip1.yaml new file mode 100644 index 000000000..4397c7a35 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip1.yaml @@ -0,0 +1,169 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip1_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc_ulip1" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip2_objaverse_shapenet_k_1.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip2_objaverse_shapenet_k_1.yaml new file mode 100644 index 000000000..98e77912b --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip2_objaverse_shapenet_k_1.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "objaverse_shapenet_k_1" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc_ulip_objaverse_shapenet_k_1" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_objaverse.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_objaverse.yaml new file mode 100644 index 000000000..7bf860e1c --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_objaverse.yaml @@ -0,0 +1,168 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip_objaverse" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc_ulip_objaverse" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_shapenet.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_shapenet.yaml new file mode 100644 index 000000000..667100450 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/pc_training_ulip_shapenet.yaml @@ -0,0 +1,167 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip_shapenet" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/pc_ulip_shapenet" + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/video_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/video_training.yaml new file mode 100644 index 000000000..66deb1ab2 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/video_training.yaml @@ -0,0 +1,201 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "image" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "image" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "image" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the video." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + msrvtt_caption_instruct: #13260 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + prompt: Describe the video. + + + msrvtt_qa_instruct: # 149075 + data_type: videos + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + + webvid2m_caption_instruct: # 2m + data_type: images + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_instruction" + modality: video + task: caption + eval: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 4 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 15000 + iters_per_inner_epoch: 1000 + report_metric: False + train_dataset_ratios: {"msrvtt_caption_instruct": 1., "msrvtt_qa_instruct": 0.17864922797406588 , "webvid2m_caption_instruct": 0.6543554630478173} + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/video" + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b/video_training_no_msrvtt_upsample.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b/video_training_no_msrvtt_upsample.yaml new file mode 100644 index 000000000..13167dba6 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b/video_training_no_msrvtt_upsample.yaml @@ -0,0 +1,202 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "image" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "image" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "image" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the video." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + msrvtt_caption_instruct: #13260 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + prompt: Describe the video. + + + msrvtt_qa_instruct: # 149075 + data_type: videos + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + + webvid2m_caption_instruct: # 2m + data_type: images + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_instruction" + modality: video + task: caption + eval: + name: "blip_caption" + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 4 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 15000 + iters_per_inner_epoch: 1000 + report_metric: False + train_dataset_ratios: {"msrvtt_caption_instruct": 0.060116940686215065, "msrvtt_qa_instruct": 0.17864922797406588 , "webvid2m_caption_instruct": 0.6543554630478173} + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b/video" + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/audio_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/audio_training.yaml new file mode 100644 index 000000000..f49b2f083 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/audio_training.yaml @@ -0,0 +1,217 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the audio." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + audiocaps_mm_caption_instruct: # 38701 train examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + build_info: + kwargs: + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + audiocaps_mm_qa: # 24158 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: True + + text_processor: + train: + name: "blip_instruction" + modality: audio + task: qa + eval: + name: "blip_question" + + data_type: [audio] + + build_info: + kwargs: + add_binary: True + missing_ids: [2sh7ZkazyO8, 966jA2-z0mQ, 52RlolYyjAE, HVAc9hm4jjk, 8lPjqvYWNyM, eXgPnnE3TuQ] + + + ## Classification like caption + audioset_mm_caption_instruct: # 14141 + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + eval: + name: beats_audio + sampling_rate: 16000 + is_eval: False + + text_processor: + train: + name: blip_instruction + modality: audio + task: classification + eval: + name: blip_caption + + data_type: [audio] + + wavcaps_mm_caption_instruct: # 297341 examples + audio_processor: + train: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + eval: + name: beats_audio + sampling_rate: 16000 + n_frames: 2 + frame_length: 512 + text_processor: + train: + name: "blip_instruction" + modality: audio + task: caption + eval: + name: "blip_caption" + + data_type: [audio] + + + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 0 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"audiocaps_mm_caption_instruct": 0.19355908897689844, "audiocaps_mm_qa": 0.1529265758175233, "wavcaps_mm_caption_instruct": 0.5365125368594943, "audioset_mm_caption_instruct": 0.11700179834608398} + caption_key: caption + sample_id_key: youtube_id + + + max_len: 30 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b_nocue/audio" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/image_train.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/image_train.yaml new file mode 100644 index 000000000..23342272d --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/image_train.yaml @@ -0,0 +1,344 @@ + # Copyright (c) 2022, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the image." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + ## CAPTIONING TASKS + conceptual_caption_12m_instruct: # 6029862 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + coco_caption_instruct: # 566747 train examples + dataset_card: dataset_card/coco_caption.md + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + capfilt14m_instruct: # 13873136 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + + vg_caption_instruct: # 821774 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: caption + modality: image + eval: + name: blip_caption + + + sbu_caption_instruct: # 859739 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: caption + eval: + name: blip_caption + + + + ## QA TASKS + vg_vqa_instruct: # 1440069 train examples + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + task: qa + modality: image + eval: + name: blip_question + + + coco_vqa_instruct: # 658104 training data + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_caption + + + ocrvqa_instruct: # 1002146 train examples + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + ok_vqa_instruct: # 9009 + # data_dir: ${env.data_dir}/datasets + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + + aok_vqa_instruct: # 17056 + data_type: images # [images|videos|features] + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: blip_instruction + modality: image + task: qa + eval: + name: blip_question + + ##Dialogue + llava150k_dialogue_instruct: #394276 train examples + + data_type: images + + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_eval" + image_size: 224 + + text_processor: + train: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 8 + batch_size_eval: 8 + num_workers: 10 + accum_grad_iters: 1 + max_iters: 750000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"conceptual_caption_12m_instruct": 0.19438459253859763, + "coco_caption_instruct": 0.3, #0.05959403162103753, + "capfilt14m_instruct": 0.29484615861022884, + "vg_caption_instruct": 0.0717603173049719, + 'sbu_caption_instruct': 0.07339922359647665, + 'vg_vqa_instruct': 0.094994793467885, + 'coco_vqa_instruct': 0.06421779912617889, + "ocrvqa_instruct": 0.07924532498245215, + "ok_vqa_instruct": 0.007513571880526308, + "aok_vqa_instruct": 0.010338243231923557, + 'llava150k': 0.049705943639721646,} + + max_len: 80 + min_len: 1 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b_nocue/image" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 \ No newline at end of file diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/pc_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/pc_training.yaml new file mode 100644 index 000000000..9d8020e2c --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/pc_training.yaml @@ -0,0 +1,169 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the 3d model." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + +datasets: + objaverse_mm_caption_instruct: # 651576 train examples + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: caption + eval: + name: "blip_caption" + prompt: describe the 3d model. + + data_type: [pc] # [images|pc] + + + objaverse_mm_qa: # name of the dataset builder 250070 + vis_processor: + train: + name: "clip_image_train" + image_size: 224 + eval: + name: "clip_image_train" + image_size: 224 + pc_processor: + train: + name: "ulip_pc" + eval: + name: "ulip_pc" + text_processor: + train: + name: "blip_instruction" + modality: pc + task: qa + eval: + name: "blip_question" + + + data_type: pc # [images|pc] + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 16 + batch_size_eval: 16 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 65000 + iters_per_inner_epoch: 5000 + train_dataset_ratios: {"objaverse_mm_caption_instruct": 0.6174707510524334, "objaverse_mm_qa": 0.38252924894756646 } + caption_key: 'data' + sample_id_key: sample_id + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b_nocue/pc" + + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/video_training.yaml b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/video_training.yaml new file mode 100644 index 000000000..ceeed0495 --- /dev/null +++ b/lavis/projects/xinstruct_blip/train/vicuna7b_nocue/video_training.yaml @@ -0,0 +1,201 @@ + # Copyright (c) 2022 salesforce.com inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "image" + load_ln_type_pc: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "image" + load_qformer_type_audio: "" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "" + load_projection_type_pc: "" + load_projection_type_video: "image" + load_projection_type_audio: "" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: /path/to/vicuna-7b + prompt: "describe the video." + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["video"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + predict_with_gen: False + + +datasets: + msrvtt_caption_instruct: #13260 + # data_dir: ${env.data_dir}/datasets + data_type: videos # [images|videos|features] + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: caption + modality: video + eval: + name: blip_caption + prompt: Describe the video. + + + msrvtt_qa_instruct: # 149075 + data_type: videos + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + full_video: True + + text_processor: + train: + name: blip_instruction + task: qa + modality: video + eval: + name: blip_question + + + webvid2m_caption_instruct: # 2m + data_type: images + + vis_processor: + train: + name: alpro_video_train + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + eval: + name: alpro_video_eval + n_frms: 5 + image_size: 224 + min_scale: 0.9 + max_scale: 1.0 + text_processor: + train: + name: "blip_instruction" + modality: video + task: caption + eval: + name: "blip_caption" + +run: + runner: runner_iter + task: captioning + # optimizer + lr_sched: "linear_warmup_cosine_lr" + init_lr: 1e-5 + min_lr: 0 + warmup_lr: 1e-8 + warmup_steps: 1000 + weight_decay: 0.05 + max_epoch: 40 + batch_size_train: 4 + batch_size_eval: 8 + num_workers: 8 + accum_grad_iters: 1 + max_iters: 15000 + iters_per_inner_epoch: 1000 + report_metric: False + train_dataset_ratios: {"msrvtt_caption_instruct": 1., "msrvtt_qa_instruct": 0.17864922797406588 , "webvid2m_caption_instruct": 0.6543554630478173} + + max_len: 30 + min_len: 8 + num_beams: 5 + + seed: 42 + output_dir: "output/xinstructblip/train/vicuna7b_nocue/video" + amp: True + resume_ckpt_path: null + + evaluate: False + train_splits: ["train"] + # valid_splits: ["val"] + + + device: "cuda" + world_size: 1 + dist_url: "env://" + distributed: True + save_freq: 1 # save epoch every xxx epochs -1 only save last and best. + val_freq: 1 diff --git a/projects/blip2/model_card.pdf b/projects/blip2/model_card.pdf deleted file mode 100644 index 027210e873fe1afbafd9613e3e93bb382f719af9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 125298 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 tYjD)>>9@g8Y8Zo5CyJ|?@acw{#sf~B=DefLr@ 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 diff --git a/projects/xinstructblip/README.md b/projects/xinstructblip/README.md new file mode 100644 index 000000000..fdaf6a90c --- /dev/null +++ b/projects/xinstructblip/README.md @@ -0,0 +1,229 @@ +# X-InstructBLIP: A Framework for aligning X-Modal instruction-aware representations to LLMs and Emergent Cross-modal Reasoning +[![arXiv](https://img.shields.io/badge/arXiv-1234.56789-b31b1b.svg)]() + +## Overview + +X-InstructBLIP a simple yet effective multimodal framework built on top of a frozen LLM, capable of seamlessly integrating and managing an ad-hoc number of modalities. Despite each modality projection being trained individually, X-InstructBLIP demonstrates joint reasoning abilities on par with models specifically trained on combined-modality datasets, such as video-audio. +![Architecture Overview](assets/architecture.png) + +--- +## Installation + +### LAVIS Repository +``` +git clone https://github.com/artemisp/LAVIS-XInstructBLIP.git # TODO: this should be the X-InstructBLIP branch. +cd LAVIS-XInstructBLIP +pip install -e . +``` + +### Evaluation Dependencies +For the evaluation code, make sure that `java` is installed in the system by running +``` +apt-get update +apt-get install default-jre +``` + +### KNN Cuda +Install [`KNN_Cuda`](https://github.com/unlimblue/KNN_CUDA) which is required for the 3D encoder. +``` +pip install --upgrade https://github.com/unlimblue/KNN_CUDA/releases/download/0.2/KNN_CUDA-0.2-py3-none-any.whl +``` +Make sure that `ninja` is installed: +``` +wget -P /usr/bin https://github.com/unlimblue/KNN_CUDA/raw/master/ninja +``` + +## Pretrained Models +### Language Model Weights +First download the Vicuna v1.1 weights following the instructions [here](https://github.com/lm-sys/FastChat). Update the parameter `llm_model` in `configs/models/blip2/blip2_xinstruct_vicuna7b.yaml` and `configs/models/blip2/blip2_xinstruct_vicuna13b.yaml` and in the demo configs under `projects/xinstructblip/demo/configs` to the path of the downloaded model folder. + +### X-InstructBLIP Weights +Weights of the model are released [here](). When loading the model using the LAVIS codebase they should be automatically downloaded. +``` +from lavis.models import load_model +model = load_model("blip2_vicuna_xinstruct", "vicuna7b") +``` + + +### BEATs pretrained model +Download the pretrained weights of the BEATs encoder [here](https://valle.blob.core.windows.net/share/BEATs/BEATs_iter3_plus_AS2M.pt?sv=2020-08-04&st=2023-03-01T07%3A51%3A05Z&se=2033-03-02T07%3A51%3A00Z&sr=c&sp=rl&sig=QJXmSJG9DbMKf48UDIU1MfzIro8HQOf3sqlNXiflY1I%3D) and update the key +``` +audio_encoder_kwargs : {"checkpoint_path": "/path/to/BEATs_iter3_plus_AS2M.pt"} +``` +in the X-InstructBLIP (7b) and (13b) configs found in `configs/models/blip2/blip2_xinstruct_vicuna7b.yaml` and `configs/models/blip2/blip2_xinstruct_vicuna13b.yaml` respectively. + + +## Config + +X-InstructBLIP can be modified in various ways based on the config. Here is a documentation of each input field. + +### General Settings +- **arch**: Architecture of the model, `blip2_vicuna_xinstruct`. +- **model_type**: Specific model variant, `vicuna7b`. +- **load_pretrained**: Boolean to load a pre-trained model (`True`/`False`). + +### Pretrained Model Paths +- **pretrained**: Path to the pretrained model. +- **load_finetuned**: Load a finetuned model version (`True`/`False`). +- **finetuned**: Path to the finetuned model. + +### Model Components +- **image_model**, **pc_model**, **video_model**, **audio_model**: Models for image, point cloud, video, and audio encoders. + +### Pretrained Component Paths +- **pretrained_image_qformer**, **pretrained_pc_qformer**, **pretrained_video_qformer**: Paths to pretrained models for image, point cloud, and video qformers. + +### Load Attention and Projection Settings +- Parameters for loading attention mechanisms and projections in image, PC, video, and audio components. +- **projection_only_{modality}**: use projection instead of q-former for specified modality +- **load_attention_{modality}_qformer**: load pretrained q-former cross-attention to text for particular modality +- **load_ln_type_{modality}**: key specification of encoder layer norm to load from state_dict. Will be of the form `{load_ln_type}_ln`. +- **load_qformer_type_{modality}**: key specification of q-former to load from state_dict. Will be of the form `{load_qformer_type}_qformer`. +- **load_projection_{modality}**: boolean whether to load pretrained LLM projection for modality. + +### Encoder Settings +- **image_encoder_kwargs**, **pc_encoder_kwargs**, **video_encoder_kwargs**, **audio_encoder_kwargs**: Encoder arguments for various modalities. + +### Precision and Freeze Settings +- **image_precision**, **pc_precision**, **video_precision**, **audio_precision**: Precision (e.g., "fp16") for different modalities. +- **freeze_image**, **freeze_pc**, **freeze_video**, **freeze_audio**: Freeze respective model components. + +### Query and Text Settings +- **num_query_token**: Number of query tokens. +- **llm_model**: Path to the language model. +- **prompt**: Query prompt format. +- **max_txt_len**, **max_output_txt_len**: Max lengths for input and output text. +- **apply_lemmatizer**: Use lemmatizer on text. + +### Text Input +- **qformer_text_input**, **llm_text_input**: Whether to use text input for q-former and language model. + +### Modality and Cues +- **modalities**: List of used modalities, e.g., ["audio"]. +- **use_cues**: Use cues in the model. + +### Shared Q-Former Settings +- Shared qformer related parameters, including paths, load settings, and dimensions. + +### Additional Settings +- **prefix**, **postfix**: Texts for model input. +- **predict_with_gen**: Model prediction includes generation. +- **proj_dim**: Projection hidden dimension, defaults to 1. +- **special_qformer_input_prompt**: different q-former input prompt than the llm model. + + + +## Demo +Gradio based demo is available: +``` +cd projects/xinstructblip/demo +python run_demo.py --model_type vicuna7b +``` +The model configs can be adapted, and are found in `projects/xinstructblip/demo/configs` + +## Result Replication +A collection of configs for training and evaluation of all the numbers reported in the paper are available at: +`lavis/projects/xinstructblip/train` and `lavis/projects/xinstructblip/eval`. For internal reproducibility the data paths are absolute paths in the servers. Replace those with the corresponding data links and storage paths for your data as downloaded in section Data. + +Files can be run as follows: +``` +python -m torch.distributed.run --nproc_per_node=8 train.py --cfg-path path/to/train/or/eval/config +``` +It is recommended to use 40GB GPU RAM. If this is not available, results can be partially replicated by loading the Vicuna LLM model in 8bit instead of 16bit. + +## Data +X-InstructBLIP is trained and evaluated in a collection of public and generated datasets as shown in the figure below. +image + + +The data configuration files in `LAVIS-xgen_mm/configs/datasets` will automatically download the data annotation files when loading the datasets. The (image, audio, video, 3D) data can be downloaded from the following links. Once the datasets are downloaded, update the `storage` field in corresponding config file with the path in which the data is located. +### Image +#### Train +* [Conceptual Captions 12m](https://github.com/google-research-datasets/conceptual-12m) +* [SBU Captions](https://huggingface.co/datasets/sbu_captions) +* [Visual Genome](https://homes.cs.washington.edu/~ranjay/visualgenome/index.html) +* [COCO](https://cocodataset.org/) +* CapFilt combination of CC3M, CC12M, and SBU +* [LLaVa150k](https://huggingface.co/datasets/liuhaotian/LLaVA-Instruct-150K) +* VGQA: see Visual Genome +* [VQAv2](https://visualqa.org/) +* [OKVQA](https://okvqa.allenai.org/) +* [AOKVQA](https://allenai.org/project/a-okvqa/home) +* [OCRVQA](https://ocr-vqa.github.io/) + +#### Eval +* [GQA](https://cs.stanford.edu/people/dorarad/gqa/about.html) +* [VizWiz](https://vizwiz.org/tasks-and-datasets/vqa/) +* [Flickr30k](https://github.com/BryanPlummer/flickr30k_entities) +* [NoCaps](https://nocaps.org/) + +### Audio +#### Train +* [AudioSet](http://research.google.com/audioset/) +* [AudioCaps](https://audiocaps.github.io/) +* [WavCaps](https://github.com/XinhaoMei/WavCaps) + +#### Eval +* [Clotho](https://zenodo.org/records/3490684) +* [ClothoAQA](https://zenodo.org/records/6473207) +* [ESC50](https://github.com/karolpiczak/ESC-50) +* AudioCaps for DisCRn + +### Video +#### Train +* [WebVid2m](https://github.com/m-bain/webvid) +* [MSRVTTT](https://cove.thecvf.com/datasets/839) +#### Eval +* [MSVD](http://www.cs.utexas.edu/users/ml/clamp/videoDescription/) +* [MusicAVQA](https://gewu-lab.github.io/MUSIC-AVQA/) +* [VATEX](https://eric-xw.github.io/vatex-website/about.html) + + +### 3D + +* [Cap3D](https://huggingface.co/datasets/tiange/Cap3D) + + +## Data Augmentation + +We release the scripts to generate data both for the training data augmentation and generating the DisCRn dataset. + +### QA Data Augmentation + +The files `projects/xinstructblip/data_aug/3d_qa_data_generation.py` and `projects/xinstructblip/data_aug/audio_qa_data_generation.py` are used to generate the 3D and Audio QA data from Cap3D and Audiocaps respectively. + +#### 3DQA +Download the captions for the objaverse data [here](https://huggingface.co/datasets/tiange/Cap3D/blob/main/Cap3D_automated_Objaverse_no3Dword.csv). Then the script takes 4 arguments: +* `shard`: 1 through 4, for speed the data is processed in 4 batches and can be spread across machines or run consecutively in the same mahine +* `mode`: `color_removal` removes color concepts form captions since the encoder does not encode color, `qa_gen` generates question answer pairs, and `rtc` performs the roundtrip consistency check, `all` runs all of the process in this order. +* `split`: `train` or `val`. Assumes a separation of the data which can be found in these [`train`](https://storage.cloud.google.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_train.csv) and [`dev`](https://storage.cloud.google.com/sfr-xinstructblip-data-research/data/objaverse/cap3d_cap_final_val.csv) files. If the split is not added to the csv then it can be set arbitrarily and all the data in the file will be processed. +* `original_data_file`: the path to the captions for objaverse downloaded above. + +#### AudioQA +Download the Audiocaps captions from [here](https://github.com/cdjkim/audiocaps/tree/master/dataset). The script takes similar arguments as above: +* `shard`: 1 through 4, for speed the data is processed in 4 batches and can be spread across machines or run consecutively in the same mahine +* `mode`: `qa_gen` generates question answer pairs, and `rtc` performs the roundtrip consistency check, `all` runs all of the process in this order. +* `split`: `train`, `val`, `test`. +* `original_data_file`: the path to the captions for Audiocaps downloaded above for the relevant split. + +### DisCRn +The files `projects/xinstructblip/discrn/data_generation/objaverse_img_3d.py` are `projects/xinstructblip/discrn/data_generation/audiocaps_video_audio.py` generate the image-3d and audio-video cross-modal reasoning pairs for the DisCRn task. +#### Image-3D +The arguments are as above, with the same 3D caption data +* `shard` +* `original_data_file` +* `split` +* `mode`: in this case it can take the values `property` to generate properties, `get_pairs` to identify new pairs,`instruction_gen` to generate instruction answer pairs and `rtc` to perform round trip consistency. `all` will run them all in order. +* `rnd`: adds identifier in output files in the case of multiple generations. + + +#### Audio Video +The arguments are as above, with the same audio caption data. Note that you should update `VIDEO_PATH` in the script with the equivalent downloaded videos from Audiocaps. An easy way to do so is using the `youtube-id` associated with each of them and a package such as [`youtube-dl`](`https://github.com/ytdl-org/youtube-dl`) +* `shard` +* `original_data_file` +* `split` +* `mode`: in this case it can take the values `property` to generate properties, `get_pairs` to identify new pairs,`instruction_gen` to generate instruction answer pairs and `rtc` to perform round trip consistency. `all` will run them all in order. +* `rnd`: adds identifier in output files in the case of multiple generations. + + +## Cite \ No newline at end of file diff --git a/projects/xinstructblip/assets/architecture.png b/projects/xinstructblip/assets/architecture.png new file mode 100644 index 0000000000000000000000000000000000000000..9ae4b5b236e1e2ddf95e30969cf1e1530eed01cd GIT binary patch literal 202606 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

        RfNgv%dps8|4r*Mf-EBD**i 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

        9I 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 z zd?4nG2D#S#Ln&q%DM&b-UgQRgrSE70^vR$Wz)?AQ<_Xo;g7cY_rbeEim;lC7V*9;G zWOeOzOmN8AHd}ZTK5cp~D^AFa;6rzSborC~$8W(9h3_-JSrzMGJ%6nf$NIljS5}<# z-AVkcn?hQ5peF^=8&+Z`(u*-bVh?|1zDVk9joPLD*PO6I4s8q}5;xHQbkv35duR~o z4#r;JD(+?6X5H?8OMhAUUf5VZ6mOG|FqCl6by!W1HuDu$u|Y2=zLnDrm#q-~uwmtR z@*akDOM*VKmp?I@+z3u&^u2g>c!eH?rqC)PeFFTfuAmGOO}Cv*AAfhk-+G2`q++T+ z1jXK&W@_{{P`QCV8lLLcAVi4VjGSTdIaXeh)c9FXbTqH%5B>Uq|b_P}pM zvJS7mdMqeqkUDMd^Y_2RHt~#$x@JzN3aa-yY6&5O3H!SK@4fJi-)fYv1Wv?m9(coc z&p1PT7Ao(nHk1ou%_qAy;=PU9rKHO*ek%Sk!AJ%1PLC;bR;cA-beF{asgTRr zn*bP>bvq|~JoHNU?d5QlkI4P3GGu(0BSw~wJr9+a!meLxPL`S$r`}!MF9oEV@a9Yw z7bEWv<&rj^=o)qC32F6e2P=W8344Bi+`vrf={2MmH)v@mVYxht4uQItWJ3)XtYiq| z9l>4x6U^A#hhp-xcf|Yff_2K7RvNga^;;j zJRXGWCJ?bT`lR;r%D(n#@u^tQIt{1Xg2)DCf_Y%Wx3X}PJ3k!Es$(uCf7Esj2Wo;~ z7Y5Ayry&0TYC?lcpAefgPj5iRC#Z2UZyu*Hr8Do~TC!%ZW{aL3L#P_yXqN@fG^7$D zICHFpPLN#dOvO6GLze1J)lX1gpM#OeW z?RFrsBe1__mZOpWJ}B&i+Upy{fEOmB(5x4^2fSEQ&KyD0pS$sIFoGGgEkk~j_n0Sl zyBANZO~lSra5q7J%tG)eP2Fb;%5nj92-c&+OVc8(Kq~h(%6BjuvisGKJ3uH!XFYh3=R)dB5`gwqKlkP`Dx*=ClEOFhb(`dk zV?{v4;dtJ`7l+U`~IdA>=sIGp)!tG_Q4Pjx{gjQ5CZ^8J*4;U|xQVpxp{ zrP9`*=_}0;1yb)=tENP04-=Oe{@OSWeD%=psYUo}`VZ2l=%#kEo;1yxfH$##GOl;0 zygM^olo*&_3+|2nlkcq(I6f%v;K+(w6o!#Yxm@3gS2~wX>ViVC%jNWC@Bfm>U_*Z0Ns^j9a+9sXaVeWtYXye7Qc+P^y~WbG z=8OY~DI?Y~LlW&EZqjiH$(;L>{@sF1TX06xb+SE@DfysjiD>ZaU7F_RH8f0pY~u|2 zKdoUEz2FsV2J709m5PBfX{%5e%)d8}zEW5mzKrkYJ(vIY+xX`Ogsw3Ea#1<})r&*N zE8I}qC(HitXi*)TdfcI-4Lg9QCFif{q{EEr=M>LC&e1@z7o+CR7yt19A@bwaYh8QA zA8f&`T3|wemtc{s1DXd0fUm<2k|LcV{~xFFg$s3o0ep{P#>(3OYNZKKruamECoyV) zDI}v3Z0Z(zt&>ubGs1Bg*1W5KPW4)&%>!Hy40{XbMpb45pOdYI?SBQ|63`*b^KZ+jbW^> zskI0gYPQAv>+I(g`ZJ8{3}ErFKSk_(cZ?#7Jva?1H{!rg1PYewwKb|_ZSrtjW}Hd= zrchdX@K0?s>;+t1*Nz*h$^kkLfz_{5a$x2yA*s{W|J~GI?k|g*?30cT<4`g)H_2#o zfDqd!qz}94NEoosoAC-sFU)SS-Zk6iLt|iSkfc#L%~8y*%ZLH2h)2&YL2H*!|~s zKs(On{czLG@ABVM=AR3yCq0?@tTzDsCm0Z&1t7D`EqGT7WugJ2ifhV1p&;w(naRnx z$Q&KKmDjM_Gr&x*L|^(vxB}QkWLTFVugD{=90;3K@~jMgPxKZBjR9g6E}a_uE+JC= zGKF+rRfIQ$G@rHYgKl+IRcFAhkA_oA$2T&o-uH){#4(bD_JOSjQU7l#xTC=hyO758 z1Ec7LLT^Tms&0lRGb6n%VA+ZQGviG_-pPVr1l&)7vWP*9K!`8r~N z@IP4gL)?qJ2z-QWYZc9Z1=TIV_9R^8KXE0^Lq(L-9g8c}ft(&(ynaO}&RkE!8$$f)*;2SRdG)jIs z7c;%V3$HNjX%LF)AKMZ&=hW9nnZ$lD8v#4R zt_He3w_C~7iz84YZQ<7w3AyPnNd#2p^wRe);L*vSuC4m^$I^;sxY>Z=Q`V8*k;n!x zuFlt3o~jRU20$zc0`OU&b+iD{YC%D$XG#dhiKk&E6dRGetQ}5O zrbu529A^~-AEzHkF%90atCm-ckvIU)Kb4{w@kX!;t`bl_4gCorVWR(B#?j&UKE`^A z72p71XJ2-q3vv{{c?hlStONu)P;@_+d5P}-wp&XL$fOtzvN;o{uUos@P z24SLN6zgVr0p6EM`{PwSU?D#Tt&Vd$T5dGus|T=Vm8%sOJyDu*sUKDah2xJ?6c|E& zUCpi)85*H?odl^+eXd?LSamScma zAw3_hR@TkZr+4UfHIRNbi$Sh2k2E5kOP!EP$l!S0qSC$ZcER-s{H*Pf&ZBw4NJhLJ zQH2%;5!WJK^M*x{92QPw0{QXoj%C;$@d~9a!!DCQ!*Y0bGS}A);}wuC*H@I{yXFBd z6a=4BI-+nli|6x*5&1E&;l0oGQd7BqtL#r8J13tuO4Q5^S2Pn9iO1dx+(0nv%m?uH zlnm*J>%@+otLK5Xz(dzJ&vGA3v@RTEeH1-LeAW>UI3Dr-C zl_6*MdUoE)mPvaj_x<1FT*yw6lt%)Dc`)%l8@6d9iZ8;AWKlX@zRs_6v@-6zUOG=N zR8{z^Jg8coe2Y4~{`I7xo9U}5iJJITj^*mZn%(6}4+>w|R44i_cMNP(oqm?>iH11L z8{o3bIZ~}k5GDi+Ex%=M0CuM6M&B$wLZ2!8H8^Gi)XA=n*VfEg8>47BHLXD|T)pg_ z@3%cyTihh>AAv)00Nwip-e@b7k1)S#Dqk+1x&2`h>Y4^Q%H$Nul8o=?+^Zb=uUO-s z?LL{}S762fr(tvwy8GkIqXAqIHr2o+U=dGcX zRBx|*;UR+C#r#DbK!Q%7PwFM(Qcyr4G>!;nwnp3hS7m4Y6A8mOaDa1yP0xLoN_74g zTqOF$;i&;7(x?Q1jWKxvmbNjl*Ki3$Z@zeM4}%E9nL(wKoO9X~KrzM&D?LuQevb5K zlN*=K9l-EYvVt~xBia2_`$Mk6JT0#*r9hf=50gkSA|)vOlM=dr|0IVnJVolHHC3-O6pR7amRej$y>BC_JvvRlgc8Zj}fSe zyJ34n#5=9s8#399yO%(#JnV$S5E|bJhtSr>g+hP)YGW-b+0N51_h5FIg15o_6pdola|H`WO|dLLA{B`pQo2P(~~z z^fz7%T4t%T&{`V_(1&p7dJ91!ylfI5r;j=>h-H}jjucIZ0x9fkO^o5{I@ zAIuHA4v~zpSdNPS4=1h_1=jP;tt&Dm5k!)-F(iyGm8e^m^mbI@eBiv`YEXn=6N$2) zrxGbkT#{bSShYNOV%4SZC;<4$LxHi*+W%LB|0CJyAphk|==uGt52#9>yz5UWB!yRW zdqj^Rc2-Jyg(P@&LZsc6Zn-=!+WNee(O5|1If9qduEWr6Ct%E^XRs)6!%G5BC&xBe z=wacwX==8r=O%Kh&Sqe8>ul>HMM=4NP?F5X&?R??9OIK<-k&anp(`zgPlC}x^)>}o z(Eod5*e_7;GX3+hA9bEjJJy0jCm0J*gN`&2at)H1bmaUv>vAlQ2{~?(4}OC;Z+m%; z%M`nB+pIUrv*EhnbF2fx+RHN|_q`p@p?c@AYv)Zpr(@qnhC9H2YdWj#_ORErz>~ST3M*U)P8mC(4~qy*qbYPrS^gAr#Bi6bD|k>qo}vf@dle`e->9b62@?N z`AzA=Z3cnyN!A$}O7iOB0#RK$jlxGD)*&Ai-YnC*WQn~#^1SC!ka2Y zz+%fO4*Mib5M%0T~pp-B%7-&l^t@wv(Ti^Qw_Hov0IYXaIdemU9ycT zZ#nz6U^Kq%B>C^g<1ZePairKRH^&}jez(}+9-hweN+|>L{#@Cbma_6E8JW8)TMVx8 z)k|8YguCE;uGaF>;^at)-fJM-ugh!q6zQal4{M>Cm_nP5P%Y^PbtM$*LoUvR1tBbz zmOEaRX&BD^i3WN9#7PBZXOg}d0zyA=;kw~aiO&>Y&ijUc4O3EY>4qDJwMG**Jh$Z(Q4N- z7i=Y5;v%DOU7U)5ra801=iQ1MX z+hrCcRDA!@$Yul!nO09`%+k-TmXKDI7&a1eI%ipHCh>%opw{+VB}N|3wtrnzJ-0It_p2NGfT_sQ9eOz)9 zA%DK;Mm06$x9pCINDGbL{tE%>$Kp5d?P?ZR4U9bl_4i{XSe|d>Oyk5Gk;a4`of4X-lP2>%iXNodS8}* zyCIfP%#%v}4e)yj<~UOz=YNakfU9aasOs=Vgn+!%CYz~sm?++5X2M)WYluxu^*Ejq zM|rPERibvLv|cVHL0G5mW842e$N+!~!oQ=@m{cYTIzxG2vxe-D>oPsoZ6IuKZ%OZt zvl3BX5ZQm_~$IHZ1 zKB4zm2)xOElgpzrIbXEEVbe{hs*rQ1&@xkew&dPm$eFagoM2u~i>$_G5#&u-Q+}1h z$NMj#kx;ZqmR3wZ0A}p2wYM|qwP^>VlVrer0h&QJ$8E?05Zd#in85bOJg8su4!i%Z zqN+LoI0hI!Wf42{lWos~{dQyl@f;8W$IfOw&q8KXH68_|fH9u|^b0*8!imrAZ+3_= zAZJMiKp-%WMe|yLd^(-ucK67Jb=n%xVQVxx{0LrWj)8ykK?umOR9ygCZIi#_)83XZ zqMD2SIR$)teB;gj*u&W!+kag(GaTdq2-%Xo1=4MIS`S8>k>N0^L&=O!xMw~T@z8>X zkE5-SZP+&`vCiI`xnuCeiz4e%ifEqoSP<70AY*G>cz=-|LDUFG93x{kRvcp6>K+o4 ze2=S%HTMC(55i>G)DWyV#0oCmoCz;Iv>EvsqG~dZ9$Hx#;$s1CGgVc{|KxYjJC%L; zUr2`^-R~xD%iZ=GNa^GAV|fBXA!TavDk~L%R*#rx?`Q7o-GGEgAcrj$Xi}PGo`JXm z#TRz!0+5TiNEP#Tm_!R{6`)69U%D#56|wpqFe*FB8XwG8D(Mohy)ii39GIM*-jvI@ z@?37Puln*wWQu7YRZUaV5^1k)sW(%sy+51h(D4Z^=k8{u;xR!I@aeIkyd)8HWKLYdI+MW*ocfRl-`K&_`C zV5Gj6>Z9nkH2oI~0nnpwVEn~Nm69T&ba;BWMTQZ)`%8gr;foz82+5U`atIHGArdqG=fIDN ziHTQO650&CJVv><U z`!^qf)JTgm;nxcMmnv?DwR3@TnYhfl%lU*-hd_f!6AzY)Ll?OD6~lvc0021*=J>!1 z_DQ>VNrM~N9PyOCdx>QopV>0y0T7ohz{pGiLn`gHvi6ldMCf%ffea_zE^xbvT`d%} z(DL|VL|5!|TT(qLvrJ8dY9-%9?Dy?Q_}0FiKs>sDr}8TFg8SBU&}VaM?3qk&g`@vU&_gso>=q`g$(-oKfVmfK=W z;d|E7sBo=g&}9Rt)>>KJTp7BwKP}}>7gXea*vewfplf;QpP?jMTfVl;c(s^3fbY65 z>UQ6nyqP=pOzm{3YC43`#T#FANUL|77G?GA(YSbJSUSV|&Z0WzyEgdz?XuV8z`;WG z7J%MJx$x!gL)(?xYrADer*-e+rpm&P*F4W79{@JjepL}~XUh5_6JS<>5RAue+TTawV?C;fWY3H(%|splai3nU zeq5}IE=--g{}woltia;mwftVc#CHex>j1&yrg2{Zgc3;Ov03DB0}K(jUO-m>qLCkm zc~No)(+D9c0BNF@2DYnVe`G9)Lz%;NtEK#nAaeZ-iHTIBl&PJCL=9;8Zv_> z1Y)ajOWXQb--P+{`7#A=ht5E2?>hL|t1xd};c{{~icV05%m zxhbhf*kx-D1>XP7h+7+6e#LIGd4gHB#3X6{sl=}+bh@DwTD2Ea%Cqgms){o+nzZf* zpK$fAc$N9{8R|Eag_3A099{ANt|htpH~8eYrNZ-yAnz!M94&bu*s6PM_bI&mPY#qUiq^wfSkc z>ZkXMf?5q>fR%#HW(q(j%)CholienP-0+lsltMy)lvy*^CbrH&4fzI~JuF#{u(OkI z&2TO?^7@JlflyUQa>>-3jo!dK@pd{>Lpb}1%LyRhjd?-DyYGLNm2u_8*?%+9{;WUK zqr)bX`2yGg8);-X<>0w%?c`(@1#2JG$hmdtL>KSV*22kp;KL?X%B@*#M$ zM*g?mgJ0v38}&x8QvMNqzK!Og zt^|?|NzNw#s`uo>O)vcW8d|1O={X?eQ2E^G84xZF0rFEzHX=Y<2Zlixc7+a;W8fE` zJ^*-pZ7NRSlYzhK=co7jbzb=}*9yHz+JK`2g57XbtG@>8*dO3by3plHwNTT&jdhv? zTDB>qdWJU@7{9&rpfIP9`0}Y{K$5b|Fz?Fw%wIfrSYMZw^+`Rj(}mFLwf7on1j83M zK|t5EWcjLcULtiA0Yj^l)FoRPi9tuV6vRq%S$nxhvOvyxDQsbhEXDCw%`*Rf9S2{W%umeQcE?;8f;$dc*;=86rd!QznH>4G5~0s;ZTcq|qC?QP@Q6V3Eiw!(D4+ z|EpA<|9Am#N!GLlDJf^WZI4c9%;2639=hT?G)de&6J9}mD*jytv3zv|5au3&bRj%hTTXn>9NWygE#p2Qrm3m5Z3l8f7MQ4JZaHZHz$xLuyP7)g3TJ93NG!{b16&N zpZfD%?`0Yf4KhaDs}*s|v;bSuRN8OzWEe8b)t~CVzEWE-ca$_a;ST#9SD4o&wuJYvrr*Euhe&d^tR^ zEsdscANqA2M>r)C$2PGtrPVej^mDS8O_FsW8s;pY;@KCvKfW6wpQE9;jZS-vl8E8J zP#~{A>x$gneG#M&dIGMh!xK*dT)*z@l$dmI7LO7a zlfC!$d8EF5jm^y~w-j;8Ms!?kc+MMXE+W*@brG!67bg{XYST{)YzF23&h)-33>)~B zlb@`evq13#>lh0RNUDDZ1^)#^|Clwt=G=hz)^*ATqD%%mZ1yFn!{7fbMO_}s(lM;e zvLiZF35-{fP(^3={BMyQi5Mz=(rbL_GVmiV1%uw7odO<;P~V^!Nd`_DY=bwV_}e;p z9Zjgxwj^`vNClDINm(STYnsE>Df=&+Snw+RIn%ac2$3^1rOUv5;A5n|{)_0-1el?4 zJ936Hh8x~E2Z&brwtubw8xi+*^4q+k2U&MOZ%J)L>AO4G7K!h|i{Zz*mp<>E8_E;J zFHNmFA{u%7q>N4ASj}wP*wu|4zOUG-nm2exaINgz1J!3X;)e$Y!TWza^GxxnB7hD5 z7V+u}-}SO%CFf;aH=)0<8`X1xuLzmtUyW?0!rTXPlB-%&s3tF)C zQ;Q&Jt543Ko&lnpg*TsT8BKO5c6D1%dmBManYXTH4H{BFps*bxmtc$UfT;UstRw`# zZe!j&H*y$tNH!b~R}e*;fz7 zah%{uI_4AfRPtT*2Wp+@Uy~-)#vO6Dch{s@-K}D&`$l`kKLx^{2-96Tt^NWKD9vbM zo7bI{Z)&Lgxa!7ExRiQslQ-Xvkw%Sch9$l1j}nDg{KC6D@2z^JM)k+*g1z;fPI+3=r7O$JqCXn zYx3{!JaF+U{WS4UqlV0$#{0Ch4k~W15eTa;~q$$&pM0j-1n7=9G~&QfV=eSYo78rFk87I@lyk4g*a&2+B7Fw~(8HTuPK zOLn?xwmRwv@P;&zzezW{azzldQOllH|7kTE5?C}37+m<+&>*Zt=9tj;Kw$f;6ZBqK zEmq|i;c!#u31~zFrzBnBj#*6n;Ze(4P1bU#RAKj*s)|CLr@mc(hegM$DTa@MAb8OI>6^5=9!BQ?v1z;q)pVi2$MZIYpKM^Lw5JBu zM&fbPmbl@k`XA=cQBJ;%=s$Q>jP$h`?*goqGc#>c*CQioV&ah57NSZ&jyJG5p=hfT zpz~E?b_=TCq)oJJ}Yy_1@G$YMYro%qcyYy71>CgBB$vt$x{ zI#Z@ifMs*-hta5VjTM{8t8EnbqP&b(hEl^LZtX=|1aQm(b`1CtxlD9pZ68IiEK_K^ zdSAzxFW@LW|A7q9>d>Cw_vZaPhABj6O04XX5l2Ck`t*z=HuIe;OS9+alfYhiN}Ob7 z+*pOB3c=Pn^ICklnSAW-nrDfy+x9Mfn}R>Lvd z>CbWVq{WTDPavUF6A;E>!mcQfgR`7s#KLVDn}%+T#n$%`Wb^&A$Dn8Ev3aF>Le+V} z=9RGSMBT&fm=Bi;``VxDvS~NBh>D!(U%mmprbrwU$@VgPkVU5We%XNqC%Vp*=RK|!H z$nbA^4KUX^?ea=>7(b#*v1)2$*i`vaj4h7ZX@G>nqtqgMP;l_Ze{R&hqTLYqkmDxW z2%qthqU7nomHbGO?x7X@J%TDjP(()zD+I=$Aj^|PstiE#zGJhs^Kj6XRs9@M&n?K8{snKiRMMXv3 z{L`12Y#@qIm&SB!YIC?(Ts~m2e4P<3WTc}`ZDzS%h`l9MAr$8(vd zQIhx`_il1(5WVrAmY;8@12>6$^mz2^BaN>a&%|%@Ht#6#=L>Xk7`5rLzoS?bX)vJG zZeeMkq{y=Y#*^MAG8o0ijR?qqP;o}5 zoM#6Qj@#l=s`Cp4!I(yucounc5B`J$^l#`ZA5@Cy_NNJ*QB$rijdLIAnD&@eXZF>U zr`}QY@rC?8b}bTT86JaLZwPdWr6BWRi�QEHe#OZhH>%V+`|6U>OAUcx{uKFSV?X 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%0ABU!aO?>?8qN+sEi59>omNDHcK_q zbuM$nVm!7yhhjy+TFagz0zX`nQ*y0|Nm_tpysJARQ zMX~hZrl_htJC0ez!yepZiMpsIJErwg-Kx$?T+fTerEJ<_S0EzCmSgE>cb_xE;CN@A z$Eb8S7xD5<+pM~7Bt3InooT?dL&$8?+&6^Nlp{2_Fd#Muu6+yP6BodOo288TiZ*9L z$x4(dL)|b%Dwg^rTT3SF;Pw0$H!h$73cz|4wrVD*mdGMTk)hgw^qNf_6-q?&C?&ka zA@B2MTig*?u=Y9Y%5xDzz2uUGiBJ-N;1<<_QGnV{7_)P0ziV{(M!+8Y4r@s!Ps0TTG?(J)1ygr8J*`25vw&B3xE|xjwQb9q z_a3Y3e-K^k&c1H=1c1{mO|$6;fV>c+a+lZ?)|^eb9W$>Rek>Xqb~U)`|7D+pUAt6c z2XRhij!l_^w9Ja!pO75xjxjweI7S&>d(%x>&|oLp(Wwn-D2Z0L~&#q;>C-C)P4F>iB1bkCWme_wz_UtB4(j1-clZD zrs?7|33Wc;4<8mN9$*Y!bm3@KLr|Hx(`;^joG#wCmo9>10=B;vJH6j4k-1Fiuq>^$HqLpl#R`M*h<*Sx>%q}$tkJ6(j zuD1aZiaUlIHM@!rsAYEZwzqQOSJqX$&T#0gL|<-c_N?CGVvGvJpH4Xn7Jyl-yaCep(#44?$26 z$HJ0>==xDv&zF`Gj?R|8wb3eG$IP7^PKj_5C9zquvEF8nB#?GkVdFw37*-IRl0@8? ztddqrk)Eu{Mw{8&0qOGkas9^@1zeFu-5g^4DB9b-?T5Au($F^VX+^oHoi4xjWP%07 z&nOkg63fK$DO<4LdJUmQoG8(i%4Tdt<9kgdzuJgKO4BMT&&_O-At`~9+r30vO4^qq zs>LuJT{dVIPen;`Ccc`aWs0)E{;K%8TJNq{-Ygl>&sY1*CL?%0dOjsXZAE7a7d4FuG515uQDmO$Aj`!txNb?d#v)>$GLCrW_3W80jxx@^5=18@HnW!R^^DXM8V2V zgRhyJ6&9y+tlGKtZ+t}@Rd(Xlgn;==gv@)lS1GQ^SNsGz^>~HM995kp|4l6kzoEX5ZM8a{w>VXxOK~!B6Lc$Gag!!Cl*Nj{#p-<6Z!3FJs~|BJT0!(eQpE6dkNYu z#5wivB}`rg`Mzq*-wR2+x?An0zC*2WN}6;k$l}ZuXHG_N$Jpyw(7b{v*_$)<4R6p zX6e(uz1=^#TgN3?hjNrf;yb`Zz!nG$iqp5zL7##u&NbmT0O%d63Y>-^ zj*>waWijeIf5&iTW;2I5zufzscA8SBCNwJH zO$XLHpTbE&74zHbd6l@ zb8vc-Zn@f#*OpBI;AHZ9pj6T~F)$8(e&7CsxR{s3*+MVTU{3j)a=9!QDZkX~zZ(Lx zlYgW9&wlw28EdNLw=g$|+N7AEK~;=QR>-4oD+iiEH1LnketnuIOo5IVJVUxN*@L=u z`C!S8f=NN8=?pr%qTZ@^k~XcDH}$Nl3u-tPJ&zcQy6RA zw-@MH5=pdjH`n)`K-Sx61+M=Cx*jw%5X!}z1RnArt#uR5t<)MY_I;#-qr5ygk_Em2Q7LV~Fq_H_q@qS)fr~YDsbV9J+2(&}iU>Mfto-0H5n}Sn?3~ z+*E*fLwqk@*&QI_^u3+mfk-UB1}1*of6L^zrMHm#=`>zP@;l($Rp;fASgZE8zY9AL zJ1aR(10CgB+$b-f;hGw#a!emlZ#CX~RV})>Q_C?>uH`v75f87E1l73gt*9w9W=PfV z$(XMbKl{dBELn(@vA&NSj!()_^piYy`Jdmt-B{C$B@9CzG0@vO&0yi6oY%K{-~>F) zV?5t__6gP8<%4jsycy{ExN8F!F;l<9ZN+%$+Z;qmf=&HQ2#LF|bs!@n_aC?N#DC`j zO6I1^s;!vVR52QSUD5pYRg;MMk>Q%el6ZajJnDXjUj4AYX%7XOk0RA;2FA$krmXXO zVlCOVC(lbeXLWj{t^`6XDQ?HT;DwLRuoS^q;P!gn^S(*}~Hed;(B{5S-ONba(f z--WCiM{$KkyP3`(|7^T*8xN*huXo*kbHlI~2}r?F#eE7KQe+;AOPLeBY%Q;UU&UFN zM`kqX%AJM%MD9sE@4KY~%)C4wJ&}ZPn-HpVenTnmf=`38ZP&^O{t3mjUhhMcU6n;n z%7pRsdHbdovlF|!bB}7GItJ`bs;jw#Oh)q8@)+fPUOrafp6$DR!AVY8mB`R3n8K1b z;moR(@gO6!1;^TIMEVgGZRPh&8uy`~on;!)y#ZHPAf z%z`{^aB9OOXQc#e?fT~y@r`7}bL<6PfX;oKVY|uXp0-x(w?5)odl;7<0U}(cB7fv8u7<)PUs#ymTldibzW%1$$GF{I+uEHH97}$ zav%&4uJRW$GT5I5yMs9(fP zP$GE{uLz=cnXFpY%5Dv3W?e*YlBxE|E%jVaU1h%gJL6{#O~cWpC@?Xg>0mk2%bq^x zxzC0jw?R`BrS5%r;tuFFpPutk-+D7`ukpX>drItIAO!cPF{d{5!SiGz~<<==L@@lLaBEU6V{<4NccrLI_81)FXXZ<=B(ZK6`b%~lRz{3& zFbNaqF8KgvbAC1)oXC?=?gKdyUR-pu@U~g(XO1zqShnEsKzqK}z>X5k3KvrGpF(=P zqkx7X6E#T_kIoJx^8vR50`H!ozUv6SFQvDiZYjErPP0lQ$Qy>c^KRqEpF%vy#RjE2 zl}E!njwIKxRxTT3a8&GKP91tFUtn&miG_<~r)!4Hg`K_r#4#c_+KWSKSg8Rbng*z@ z{JqhwDn~RmbHZLm^jvnEkqUEc%btC)8~Y>eKDTb&-9>8COG~;mp`lA!`Cz>f~2C!d+7BND#XKlTX+!|`Z<4ofCf~d=12+m@79ri z!jYcfL!pPS{UBmyW)@)*2|KTRFjE~ulS1_`v4G;IW(A)A`w*D-U5wRsE{QW%Wq!)GZx_%f%)u;-{!=$d#Y4#B}5A#KbM0?t39uRJj;3cch6mYlu# z=!C@j@rK#&1__!{OFH2!bd(mpxY7_77p!Fkr*kDNX4%79}98 zCIr*u3zCra9Vuu-Fa~JHljMkTWSxFQOk|2i~|JFFd?K@fS|Oa`w0naOAk(n3Z1 znt}aWitfFicj*L~AeoWVpf2ckdTG%s*J&ra(#+GBbXB?&b!oco?g^2Z85&!~Ou;D$ zqrWZCN-JK5P0mDyyut)dTZ}VD$(-8)l~nnM-QCij#734P>C{HNnH@zi_{A(_alfQ` zKh3ZkSKWoq(^BQRJWG^MmnZWSGU5_4RBe7bGq~1v>V#QqcJ8NCR0BmWK-9lSZPGk2 zH9)qI#i5g=i_WX$AEQgOql2}nH$CuigKm-iFvW}i?d{?}rOUJAUPWC0%?DiK-oK&v zNDjq9Od|BLhR=-`CmwWF#J|?A7?JAXDRqsNmC551ah!V0oP|;Hu!k~^u$pS;YH4y5HN^$FJy75Y*kzk1;=JGO2em8}EGP%H6B)VQ7^nH2fiCDpsKhojw2!Rm zi=i(FWe0=z>F7aOa~gxTJz@xAtZ-<#grs zNP}#X%Ml&N$w##Z>np1=Y34|8I)vf*?b}|U9E{yr<>3y@YnqE5JyK{a^w0cmoR`1- z@xAkK_9$}$*F*G3V=cVEW3*<1=UR1Y++)Le1ZUP*&!z%AB3g@+GT=Tj=)e88M-r@z z8(cgqolG+X&@+-To5O+?C4dIFQ+UxkBHPJ~J;yg^2GjaLr*@ndAf;PRf z1S=CQDX9XVgEHH$RXG4%7}kL8atlY3X;&(&2y-|eX$wd;1seW!+PY>r{%;u(exoQ5 zu$tUIv_(&@r>4?CoS#f%h&P$cIpTJO{Hx-_I%|MBCE>m*)S2lc=rHO6#7+tnnbyxV zrWr3fr{rwfgUy6R5mWQH)LLdo*ZNYz&U<-C5(D{=u8RC&k$#IlTyp_v z;dWTvv9P2F__L_P8vbG|y;g|J;7tEe;dv&^mKjlj0oTf{1@HQ807H;Agr*ST=#S>n zcdy7pOP+%M3%AZAbupZ|es1cna6A_?^2Un3c`-z^DXHbTse-9e!ngc&Pm~3(Q@FEq zm6HpD(&K=1J5{$3>C{;ytn7k9TLs1R1d<%0J*v7-fz2;QPknaj+e^ty4_;`q-(F2#YBhRs1$chhUbJNtY@v|H=L~)&214=xCcjs$ zt5KDH8FC38w>s>^q$u!NPrIwy^p1>-kiZJWcR(XA6oA$VF-T))piO`ew^)+&y4VTd zePh6j|Ll|}D1@)tG3bN6gOyHrs5ioov-KtTf8% zAwDLRD>;@grM?Q%0<>p)vqIO!HefU98Q0lb9mKejj4aq&mBQ<@==-Ca3_YV#Qdn2+ z3d|Y(0`(${%-`RT10fB3FFC6Q6+Wfd^e4P+-`M8_T%``raSe+}6zGOuE}sd(4+nmj z6q>BnP(KLLT}}ut+5G2wihtLDpyFsv7yP{|%X9R8Kle4Bk8Y_e|Krhuw-W1hh7eqo z;I{_l#L48O{q*7b#P^}}BQ7_#5;8V=!iibozc+ZI=y8a6{pHv?U9qR|o58u_WgD;z zK|Q~~cdo>no!4_vE`-Iw()95{*F|uq6C64Xf1IA*d64D77Y*bgcehj$>v}G;KW$QX zw{{{XR9IawJr-02(TU^sY5nZOsl-^^i%uBU7?tp7Wm}O%=rOIz{2ek!9X*8yaJ6Ic zIh&a!W#tHuGbOE}TmO4y#)sSLd2l4K><&d?dnbOtOOv6ElBKC=1i1~Fq<`^CPa6xP zif@3+bLpq%ZtEkm4P-M=9u`C3QN>8IuGpSYORX_>PJw&i*esPJO{t`u$QfyYhouy6 z1HHr6T%gpR<;ReKUgjm&ozvr@p;kwpt1CmjuO+b$Kd*%QjNJV~P{N>3bE^9N##U_V zI*<4W4Vxv+it$j05sJL2>=F91f~1BE?T>?8$Ra--RpZAN?%$^H(USGtzcAaj?=0a- z8|2kMnmf^#nQwrvP>O=%?0`8*6HsiOz~A7zJ_it%r+q(yVAPBo$|3N1hy;1F_3q9^ z4AOR9lw@i4zoiJOHK=5loL{#oAyCs*X0BEl%79+KBiMTL`GL@i-THPVx2WsyXXT>@ zl8G0rlikk-P%FtP zGXMApTE(tvf`f}>KMt3cvgYtPO`(eplPM>3>haQP{;7mvOq`DVJuiIq`**HaihAEC zhl}05-SNWWZo#t4ji#~nUi&SsDii}72MGfMVt9D?8;~5~psKp=)u`)h<`xLh5!46S z@(Z~t)Fo6al_q^`*XlU$6e{EB+zJdpPQFpEahpTMXy304dys|ychW|N(f+7_ zt?lbqV*JM3fWb(D^cchZEQy~G6^pT)3SmYxiIMP0IC zn2Pw#xqm?N?6@H9B$lQGB$j{XMrKrUojIk>KQs~6LOIZvZpP`QaCN51WQ>V86CUy> zBqoN$({aey!Y%p;PS4>+jXo+s^73W=DUOt>od$8*;w?I79ClS>j`D;{M#72{%~e!H z=QDAmk36{HU1C|C7a5{*$1#a!t=eU{3WFcgyTHR>E{3aSkfZ2lu^(C@%& z*Av%f<5TMtBZem94`g^;C=asxZtLmzcIZR!uFB8NaWw%VsTgC2>1DT8UR<f@Gy%#8NK)8qAN{}goOr*DXL=sXqrw9;viyVXu%I*);7$Cm0HLovUjHJ zQNjthah6}h2}m#}qFW;GGX6osR+J4)>MO#k{xCLEF?2EzYFxmdSO;ha$3KJa+zHT9 z^1`Zr^}xbR#wxd7`(GG#5$yBhYK~_Pr(<(J5>^ywA?vI8ie-|p#Q~!^yF%sM*sL52$%GJ>4F=3!&fe#l^W;@5?m+2U$ymp*i&4WKL}JE7e*5QA=m0?SikvC zs6{c^^{e-lKF{w?`hfeS+VG<)S@$34gV-}wN@aOLw3v8bS^ot;#melz@@2;#O>;uA z|IJ3*kC#cpEuzwTK$e7fA?+=4l+wb@YQ6lkobiabIK*Pbjg1YGj?kb%|j{dVjYlv+su@I21*txIlGV=O&l`tRf82^)4_SKH!j>7liE z!)2K}{-TBqZ>F2x8uV33&ipq-wL_#}jcX=wj|2BU+EMYdQ9grluqEzHvw2Z@Aw5n` zMl7{G&4Ns|zaoxPMB=WpB1@^@Ak{gXmO^CLb4tZgsT5eQ15JH!Q3%*IOF$3xm6^`R z<2B>mPoL%GE+q-L`zm}sMrSHbYat1EQuXU(FqPo{y8KT=XqqOaL?8L8z_1PqrTnAzEvJe$6n0wIOi0RCn>xnv5U|2Kau zB*g-^WvU>lE=oNRaGF}Z-0fRu#du1Q<2gMA-hs5j3TmyMo%=jrNtY0vmAg!z}4|3 zqpeGftO$#0yQV7 zaa-ajk#W$YY$>Dw;hpw8Rr~>s?NplZMDTjOn#%@ zr#7_fL(*T@Tnt9K zPA#Om1{*v`sdv%D_^quS8br)Lr)ah&q zj<2gX-@QLr-5Wpce9+*$gFHMEi3iNkN4#0i?RS*4glueVya5HAe^JcsF9_t|ax($m zEL zw_X1yygm5>#beY8od%O|}9<1tX z0*PkFT_K3^JP_ST;tgsM9s%LD<(L1=Nk)J5rgel~)Qf`+U#5vHukfKVHO8AiD1(k* zcz|`?-{>=q`x(-3i)f{N` z5v!wm^V}xkg8}1i7s#F$H{L}${pg9?t-;$Kjdd(i(XPEFFT~kmjX^okIAon~0)fYD zbsUd>W|&qWBMbz*?g11QcMtOF&otmCceWOLV}`j7VAG2_IHr1bUY`l2dLKx`6YS`5 zS}`vvsogJPs>l->0Ob*tRLxfMz6#j^=Bb}^P*okrE4j9%X{8X{yW9qkw;yrnTrvetzbHWa{?V^Qf7xYSZf+3I29IUk}d zm`BW1JU1}QCnlZ9GZ3=E<)%Q~em{Ym6JM{Z8T9VvJULTk9P%GH>>f`DJcrG$KnFi$ zQCRVX@^&$tZoQj-(2(r*-(dk1rh9Smk}QTPY-0ud*~_SbdnQ7J_9iExYW(EfYawW zklk&xM9-TChK-8*>%ZS5?>y}W_JIzagn`kL&dyD+C>O^xy1(KW_DgkR88~4FRv+kgAAP_PR*RY|`W_qiHrd7&%)i6%is7`#iHfUM(=8g-jLKr6 z@TQiS$(A*${S?*zbCBHaTO|=7x}_x&UhC{P8Z4F=ty0-*O_^!Ae2xWJDagAjVwZEK z-|f}lybIzV&9w*6bEigUE%h+3x?gQ~tT&oZkwqe|80=gF@&GP(MoUkH?U{WaX3FLt z@fi=0Vh`$amAym%al#PmZQ~Z6GdI$J6gL!n(zPyKNX9N*xYj)@Ee~SL zXSFjNx2MsFllmHp_y2i={A)H_S^Zu^^YO?X9Yo>EW#!?7cOleJVl z3W~FSB7gE%kO7D~zfPnq$o?YK2!2|{DJrTXKn7hzmUBhqH4wo>`fi8v61MUf^rxc) zGGLdr*CN|~ow*89+%@?Xj1iFdH`J;77!AkIqgTTV&d zY5tYRE3g6G1wn+Q-hQ8x!KRVI2l-FI#?D4W4)b2??u7&2f(`mrAH#_kgvvuK`vWqq z;DAzXM2C>%F+_qzJ7(#GbTLfj|CJ`$W$QtafC8w+IN7+l*D`rxq0k_TpSiphqOy{# z7wMo!<1X9SSS|d0uo#NJb!5cM%nuvxX&kSFJzq4*&xf1a8wo4G=>7tI=wY-}dWt|LX1}MSiq4rpxT7}VV&Uw5Ut3!S1>Qr< zp-WYF1mUymS^n$ysOqZq0g$S3tG(=X_L(iM(-Bg8lsjpNwUw>7@MvitejdWz8Uuf+S~692)z@ZH7n_uhB^+wm#~ z+f(9yLAdnvt1gYW!pZT;TE6%5r1q2#NNOH>Ha~8M9yYgZq3IW|AKTllN}NKtlV-Ao z-~wOYn#?dHRue16ohszV1}Axq{rBb+6He6lU7im3*9RIjd@XqLcuajMV=c6Bt zW;EeS(#sKxi$2XqoUD1Qs6gXnDFwpF8fUz5i?e8LJ?(^IehVd58hx`H(F@@Cv^14( zGj#X}IFI!Nqu+<@K4N}_XvI+UOB|F7r>5yn0@e*H7kg%n@%K=iLI;?mSz}z7oeoja zp-Nn0ixOhxTr+6{G_IZwl&dOa9^BrA<%OZ{RJEYP?&{1f8=HGn(>CQ>0kq@>WwXl= z6l7Y%L;L%qYTcyF>~LR)H;$_Ft{af*__T8~wx)z_&`DMQuA-YMV0P91f8jLIuvonb*4$O~Hj2ht6{PY|-ZOwd90Klyx}NM5Kq2ZQEU8&) ztcqlq1N}XGM67bak}~D=zX6kNVpoQRY!^fs^R$c&b2zNg^FXl#rf70&T5F0ALZG*= zgkJ5o+X@a-|AZS!%nIfb?EqeN<)uw%rs__$2DR>Cgw3yQFDOFyYq(|WU@{>g;?vX9 z)g{E|fQnxFk#w-C?GTV9N^P7;t84^`sc{@iTln_BUJuOiJkL44%(3uOJ$4=@dnGDS z$AitZ5Hr6G>7CRcvTt<*JlMxrQQd#0YfPQ1MCJ-v-XhO!K5zt|wpG20^ESU`Db{_? z8dD1T8f-EQ-sy51%@(3^a74 zvmzXN*L|HGhGOy7_ygwJe*0Y-6ZzI4zxL(tKxVuZAgnmec~6wjQL3`FPoC?y?a1Ax z6z(MZ&1I!}DRB&Yz6s|;oP3_NEf55QMF^;+V;u;83dv=41ij#5>{AbwS0;x#2UngX zJ5s`*{MK2T=D?n&%jIH*V}5mOb?;D?cEZ9#kABX?q;vtGf7e`&ilSwUn1FP3hD=O$ z<3>6XJT6m0a;1XiNzToa!YPID`uM3QmqRQzQ0$5(Cz4fh135}l#_GSqH9Q(_x;Sjd zbD#BlXeFe#j*SDO;yYA41(X##wc{*l%zUj60+AYN+fq+jc1f-lytuM|+J^}w8J64| zs*IAdbSt|#8{W()mzZ8TMLUSu{zxGda>^$YtE4B(y%uB?=H_9-qCN9^M@?D6yKixp zczfZcT+bGE8tw^a|3VyRH9A9`8D@`H@J)sQ(Rbv8u zr!tk&zw$^-C~LhfYL73jdzK5Rf~YNIh208(Xg5H4xiwI0h-TA`$P zn@1<0#xV=l_g^LN1}lMEoxvc=W$=5xVEvZweU#<(Z$T2tQ`QiiVgyhX&@)L{QhYzI zuW^Y6dw*HnUz};*u)eUc5Ltg)B_^y%dJD1_bDb$oR}cFQOCeaD@^hL`VjjE|-nl$r zAH45{qTmB_js)xceOQ8Q4QN`X+@@AOK~1S}()ijdtmuadp&gc2hn$0AAG6;47W<0c zDi9P<trW@Pk{mNJ4#7vVfBrutK<6ugeQZn|X;2jIr434@;_iXeXyc3hKM7%sqx2(c z%&Uo!?-~Bcw{9d%q)}=(YZ59(2_RY;f!9agonL;!b>P3)XJ2rT$(LZne)3XsC7DrMVMLDv?X*Km+ zy(cA^mNdltbf8__E}`UpUh6BiTWd<%!8;{C1(NcspjE1;I7#k5Np~IqA~Z)^`%h6$ zEUR;~Usxgi-4i>PMC)6)VRReOxcO+oY;2bpE-Fr=P$^D(!c3xgDJKs0;u(=w?dA@n zEQ{tHD)+_->MA6iId$)|Ruy{Yr=jo3kUcX}^FHKR#SG zGZoC)*v87|V+*s+n)NHFcrw-%QF??z;PygspEhJOb}c?N*JPZDI>~T=9+edpxc`2C zM+3KOk_Cu>v1g!~1@agRZFiZ25?pkSo$w&!`KXMFd=*msf;0cyOUJ}#A4ZIc4_e?7 z@@|I`mC?QZd8x|(&EWwoF2z`|xK?s7R137_Wrb z62^41wtn(P%V$?~t=dM?)EVkKu_l|fq=vV}Dj& zHe~%vuYW|8UP!s7+&VNqL)!whOSUt5|4|Jw=^v2RSG3w74v)rYW6o>ra$q<9M|B_d zl=@h}or3ZO4bMisqT@LR%9NjRzwQ^hY*O)^+HaGJ-ClvZGg{HHx$Lg+S6>IFn1r~I z)+u9&8@G4dc4ibeH^pB?UHS++vKT@xdxJ0Rw~6Inp^k=6rHLRXIggN}Fv=Q1Um%V{ z*F(;jCCsQ@bsF6d=OD-4kkLEzR44Q*D{|f%294a`=~3{`#-bW*Cg@910~LStm&Vse z`9{Sy>G(0?Zgai3VK|D@_sWYSUr@bsBf);<07aP8+`hBui-3F`DX6jQsb+Gr20`hM zTpVillCyEAS}${w^`{@?3Ke2X`Wn*IZ17AgFiI+h_HsNv~GYK3835nnxayH8-7@l+n1b7 zVi~so+eW>$H!fMGlu}m9SECP=;NeI}GG%571UuNirVLE0zPUrmdS$ z_v@GJIgy+(_o8FsiU@2_0DrnFq_(6-)N!)pkE;H1vKC$C@UfCrMR(9Z+_d%B-zdp* zGyR_BSrUSTh9pZ3YFMK_QogN)94|>03z0a28Vvnr0s*>l#XgAZGnv;WsMsZdq{dctvudE-VvB z0qj_#|5O)MaJj_t6-+wi%LJ*qDNuQmw6BrUfWd{o5tcK@blTq1mn=7w_OygoInF<< z9hPhZ!PK4#KK*7oXK+XnGGDSCNkApsrWI6Dm1F&FW1b_AKT*ZU5wAN_Ewzz#OYrE3 z&XHC(3MsnKo#9G=j?cmM?$|8E%*Vy8b$YR!E7v71u6|$Z?lZ=}-?H=Tm+rS2 zDkIWz`9ql7>b9Thc&}wuKuxD3y$1heM9up^4)2$Gu^qEK3>$OYj3)B9sE!du#Um?w zD&}WLS=V*z8|N!4fg-YT=4mimhg3a3&>f8xKM)09+DHekO}8V!?`>wHN3QZi1!(&S zC1muK7GC(Z^0Jf>$zGG5yFKuow$B*6%h~i*i6NKLY)&@ z%MTJnq!-Z7ORpw`V4L~>u6Er=$nXc(UbuXQqPcFt+JTLwzKNUaZ_Y}&*(9*tFWYiJ zbXBmh2>a9Al)jH(*aMGcP6Z2+GAJ8ENk$aeT$-CH`6{KiB{sx+EOT=nl&(GP#jqGe zEh+M*$<^d+O=$3BA&1Ldm8CJT3JGEotX-9yJ0i0+P87Ils;X5Wayjx#G9_JAo7rXM zG*#4N=>DEKkP!^0!aY7E<&mKX5)gj;hsBnnZKo@t!aAn%hfe?oZ>1%i_@efn^v9l? z2Ks=x7yMwO#ldNL-i7BN-@4#_*ROA*!m)h4De7?1uzpCxxKVWIzC~KJ4Mt_BJciH` zZ_PWC{m%*o@)~014{~j6_^bXFAbQsglj$l2X>oL$V|UJ@ZX$3@_;}@IW}i?zMRUC=gc`~nIFX`51V+`2X5^>!>!Ow(U2;-Q6h^N^y7h;>F!5 z?rsh4PLU$T-MzTGQ-T$DcegM7-uF3cJ?EU&3=zV7RX?6?)E&7-U} zswKFfb(Yv=Cmsz7DzDcxc%myxlp)S5_Uq2-^!H`KmbbS-mcup5GQ(FER1H*u1+1pR$H2ktnRfQuV9Th(GOY-Q~BB3EO zZW*IxlL+wh23aLmWfTw5dxqplk);Bc3i>poNY31#AvINvSp4+;sC04J_(gWzg673f-L( zg^MqD2K@!pMtT}h*G{dqPq(B8MPmF;OoY=ENau@bdr{Gur#X2ZBFx+DD+gp!U(dva zb{x+l(c=!|STA7XKMUfRQfPLcoScXQc8rF!MdO)4f1JQ}CaUrn`)v+6E?RM#gy}~r zFY_W6f`cT`hTuV%__BOR&l@-AU-;=TF656;`V$A%pu!MB|NS>;*00cZ+{Xv!PZ`fr z*Xkdn{fXBQ($32J=ueqBiKraaM9f%lrwv{PHhQM>XCAg2(OxOya8*eb>1Y`V=qE0l zw+W)V`!i7vrX1cdFXFmIs2r6&$ImE}&7NZ8a||Q~VRB+>10L0+vJ_Lwip`ryU5@Hj^jMK5okS#>(^P}Yih=~Z|ta-VuGO0Ck^{wEB7qZiuDi$O`sxnT{ zRh+&?Cv4^C$Jn>KMz|>t7yXFVWSO(`Y}E@#N6l$L4R9?$b(7~#{4u#GC-H%eA<~O( zz5h?9)4})`vBxp_G3?nOk{-0l%deyVx8aUN zKE_lOA!~9*?+98#AH;9PB6q$ko4=t}Tntq;6oqr?c)! zyTY*jkj|mJn3V$2F%TY}6o|xyWkbVgj=yS&QvU4iP=`@7hWQ4Q9(^b`Sz~&*W%V#r zpP{U$=<${9r#oAs%U;Y-lOL>%T+RxEwhX^M&#A-Q>uxLp!hE;RH=xS=2@rm`w zNN0Sga0}>92iVCp`A0&n2-P^qR5B=%=&*|K5#T(p(G@XMI7fls^b(XnnXrD zeXY=LLwlyzix#CW$&)kJRN_8L|C*n0mc~@)N#=j{@!FEM#@eHq)&6(p2Xb|@y`LjD zx5^@e5k^oWCB2h6_^eT$e(NqL#3{;ku}}d0noX6WxG^i5$;FiKcQ=WMh`vN^ zCinWN`gnhE!w&*#iz;x3<%S+4#~&D{q`o zC%SJQqv#TZ38UCdFeW=$T@dx{OCe5$38ZQ{c2(|F3086klu;C;jiD@D&J0i^+c!2_ z4tE4Zz=4D}i0*(~oRO%7&RN}{-Xcat#JVez@Q!mgAerZfiA`L}kCc?HP-1%?oq2Sf z^C7P@QDUy%EdN%=VCX&Ov;SEKhiLuZSExizEL%LRpTy8L%!OcTQL#o|V&o!BDoogD z2q=Qh3X^An%_Ai zIx+5CKM6&q<#Gthz*jC`_ZZ9+^+2nVHZc#9%sq~V)p{Ny!&tc!vZ$guQY1grX<3U} z;e4EjC3geMkbFjp|Jov7~V zwYs!CjFli=4a`FM8I6F}@7LvndH?o=*V?sQQ=Nn3XBOBN0a~GpThUOpq!opbkiV``wbXvDxYbX37$ASkd zmi$>X;-IoNoqWFpPZ=ObM=6!q_4SmL&V`mG-?ZT6FoXZ{z1f3C#9Q5b?fa~3>)h&L zLH)TbZ2+|hRGpF*l_;Ky#g?)%-+EYSo(PPPC|x5%O*qoWlpvdc{7-p2k@-B)TSI%p zL?ZE&wygY=KHds^hpv2wH~jDGve}N#e(Q=JVquCd*+sT0*7Wo2bGzf9ciPK5$ypKBO-jK97I2h%>HlO&x$Yu z>kXPz5K3gT)uKYxM>D?tR*xYv86xFfR^)k;snvNsNyo=qNrcq*ysBl(!cyZ7>?BFW z+csPJSU;v%VJq7-#bj_TAN`1GnEHF%RAo^*&Sj4DbR~CpRqn88GiGhK6nffpP^n`x z4|nP3;ta}vC13gZwD?mJ6v3GrAj5cNCs)*PG0KvY5WVJi)F1?foTz-OkATJN*xv1%oU5&ttj) zBdf>4bT97d=~XJc9*B}rG7Us_3SZZCcRy9f)7kx2NayHP6!!XwO2i|Q9gw;hiF;dS zlL4+CVU0tPk5Y@3@~X8{*LIgd_j7Bko`qHJlK~?qSFN_sl{KFrZPdxf`hAv0uOcbvkph`HU*GkSeWy8d`yBXs?%A#A7n?RCdYn#@Xl&p02pw{c<^z&m+ZEU4v! zo^Hvm_?)x)GHY>LY(+@pL)0_0KXt6Z(fEh434R@6gSD3Ac~9b1$_xnF35b zU0&y_{TrJ-l>{y&7R5sC#2j^YdW8~CwnrX?Uk{af`c4^}|6+j;wsM~a@C{K!zh7sp zFEaaIBFEuzbyinZamlkez4ZMwSpSZ#)bUSkaFQs;gqU4}SDo&DW-1#3(AVIwFY z!R#3SPLsL{`Gi`rIKJ!k)Zrf|66Tv+@<;mQ7`|@Dx^**+mIV)pcFJJ22Hi#jk3kEg z>ASJq&wnP$JU(fGT z5+V>s$5Ocdc|Hg7vKf1Jed>c0!1j7I6^Sl7{P4~>hwumRQShP2^S&cWkbRIWwoQcl zpFl%Ly}=5%#$+hNZPTPmy(Au}+4Z*ZK@J$nk0q(TjsDnlbn15ZP#?8>BWasgK@C&@ zOm%#q<~2ZBhKIw|{*l>^f@i9gr!-Tg!8>o2kWUI!@)Gp(nc&lHaQ)p;>zi%|2KXL? z=duk|%zI1J-gy%SB-5fXXc-hLM6{#j_6Ty@<6hrl+?k0JQ}07 zo3A6Xv1DvguPkip)U2I9aLyVPD9GzCQX*x};rj~#?ljT9*ZpmhV^+BGUM>+;+yztu ze;gjLuzv4rs3Zm?^4-kTDv+6DhK6%qfpzG^Bu{=XY3@HGGH{3UuGSQ-S=)FlZ*hZ{ z4~s3Mun%`GiwzsUcOKZDUVaJ_%kyr;Qk{%^(pHfT0X1-S;%jL)8Rd4oEi5#m%H{h# zw5QLG@p5_fS{52mD>cz1ZF7~c!myXBX3ESK5`ju#EbllVCZRqk)36k}?Ve6N?#+Bc z5aS&kQ(p~0G^hvSLamA|NZ(7ArK#_x4sZiyXd3#>13b9bJoEnWrCfrxypV#$Tq zIw5Us1;Wv_{x?M_jw{1oM%U0hR0!R&G>o(dK)iqpo%AP&Bd{>~?my5WsQ_8MG_7tp zi)>vNUo0s<7*O^H=ol$P=5tc3Oe4}>9YiB|g9P{v(G8w#hLNKg54((~vAQ2uHi!Di zq{pWk`tv3uEA!j`<)O!6f)SE*Z5{+M5DeL{Q3hGqg1P+Zhp~d*RcN0&c-UG zp188DU+(bXGXJ!!oVgYv0H*WV8j$?V9)d?qxABtFUSeNnheN(JTD16$%@+VtTN76GwS zN=ee^>ho-bLI%<4gyh&j!6>FumBg{MoUL19dn4MJ1AeAYmOSJ9^vW9 zpP`UTanN)K9Q}`V*Rjgm`FM7XFc9i{c>!?HPF$70c%1TjGFdKyFGc^E$+tm_<)Myy z4Z=|(|Fw`6)*%vXxSlkNK`2Y(N@6SD6I1efIpz+IPLjKUpeza!nj(mqZ2CWXa6qAv zhyo$m_ZKJryG7GeIm4&fwGJZL;0|0mc4+-3>6W*rQ}gd0d%a(;7SsuY9YmNL(gL9T zxrZPoS>%I^%Vdy&mfeYzjg5^!87Fe%H6zbyOxt9B-QSQBBB+NeK>;9O2N`)`6=rYr z*!`a%)+ojgn~r(vW8i{r=7=L%($}LHfDq;xDg`!tI!neWqEUn^P$rw1feLT{u?^s(&+X5@mJwp|Co)P{&thmXS(PCDXf6G zzA-CdU;*n@w~ofl*w2PnDZf6h6^giA&I}zpbNwVn|2A+6gH4S>OdHIn#xfyyhNE&U|B&JIn8WkC?J{=TrlHT4;c4<1r|sYcz4Lk=utrcIHML8^?o%Bi|_zJ z07}3JmHa$e{AdoDRAfMB&^Sg-#!FPXfNS@4v)xJ)V9(cK62fKR1F+s8^F)Pw!?@_h z)NcVe%h1yUrXXB;`hx>;@+W1$4NEela*tB!ZZBAYfALhuNC_CwPFqu4yOHpJ8S80k zB@hm^u43;{t0=y|zqfn7?~LZ2h+>G;Ds*A!Jw=1udM+ zZooglGbUH>GJLUMi*U{}U8BTbM^1W<#6jBMYNPw-EiJ zGFNOPQcy_)v%@m+x31$)8Gcorq3~N7W9b@M_X3!-qp}+OcVt8T0y8?#4fOPtW)H=o zKNRNFVQ5@#3(bi(NEJTeMLtgK-jbCvRR;DQQnw<~CmXlT1^kHL$t@9*X-E!sY8Uyd@=FkjUz{Y>gX)VkkK$goez2r%LNN(MKHyB;+t z;rYekh9eZy$IWdTiY=}cZ7NqxfdvZT4pestmU#yBUp7bGC~mn|DJ)Zzf|Nl?nAZ z9;1@lXcAYo*fop*Zuv!m9iU7s{~3>Ny@f)XHpboEiUT_I2xMHdZ4&n0qU5<4<;#F& z)g}P3Pz+dwLAeYlG~I~&CO139MoJb(g);J%Mhk$LFF%eLts#gX(0Dvh#O;FH8n<%^vp@N>S+n{G2lQ>~{`#n$V)$WWJ`^?&yym9Nc;}A$jlaMW~Z$dO*Y# zARY;E!Lt~k9Flnuf2Nn7+sg!XV*sAm8vYr)(Pn*fp1RcG}cNm)+w;5ZGB*_w=sc7&KF%h4y zzGaE*v{lX|8~pD>arb5=aFYzqY6RR2Ir!4dO9D^GR;(h zu|tF)CtMMLKy$3fC4Nw6rD1n~>lM#_HWAX-(exP|{uD7v?75O@)h3ho!B4fGo*BZc z)*`*KQP1X=N*<9=t5{F@daOTd7KPVda>^8{y;L@TH~n3>5@=tGiW$|6%w0!Rvjc;% zV#bw0#cWiyI9{nseCj}tZ>jX9w!kk6x?-iOwPs<933cn~jsW3bv-{2>U~LrZP}4{4PW=np8LqAhlS7joR2u=pef|5-_n#AdXP@{t7fbKD`;-k95Xt9p{zX9!#lD zHiZSO<*fTz+EtUGpHkwoK#iMTPO55J6v3h%lz3sstk^vwWJV-%;~$*J@aVXDwn-|& zt82Ho0kOUbJbvH!dP4-?jWVm^`>@7eGBG2nud{AeUy@nKs;Hbyn}X}Q%UB*_3Oih{ ze*EI-5GV**s}EeFvi%gR3!$K+XEp#r0YD~J{t*9ZVhVy9C>xld5pMzfvl*-6h}9G? zOAqWbn`(mLI4t9Pc)Vwz#i~Z_<3mx>L5aJy7vYs z5hwiSnVvd@AoBCclm=CGf<0`l$ObZfZr@GsmBh3+UYkU|J!PqpN#aIkbCuG&zwr@4GIXvek?)Qm2XQ>a0Oj~;NNt^~Ltz^?L^tC|o zug_8M^;`m<$$r4xd*tCXL0HRw5Np)dD}4S4R2t)@*81{ zM2(|Ldd{S8hJP&jk*=^sX`_@DLV-4G;5oH$4O7Uh*TVAm;%?UAoQR#hR`U}P`O#iI z$b49ds z#m|RpUHslBbfq^~JXTmy&5koBD{FPDTpZox)??vC);@lRI+fxKb)7y>Fpu*yY#pmX zHj9!^Y#?g-qQE5O+d7efzu7{0T0Ri4G=L4zKyVesfHH3WJFTI~zyv00zIb@zF!YJ$ zSYLx_gQn@Kk`t^}zXXRDS36@unOa%iG_?OdubAdvKyn-(F*{8phevTnR&bD6pzsQA zDzY<1m%D(aNNNnJTby5ubrw-wUeRc8>|OJAt0Z+f;owC&`qrqx$VSeH7xi0Qj#0PL z;`X!8Nk}2h76*X!sKKsHU}|)rJk$;>RtQzMG7+9w{eobHF7FjE4qRf_&$YsHPu2YL}1-05f&M7w4is{e`4zP|~pWd_F`=hOzTs{`{T0VDwBKQWnp1QW4wL5H8jsnaDZ>V-Z$?~Ek%5vg<==QmAx zZHC}il$Cu(!|G&T3=1(wU4^i>pa_gurdp?75kXMQo%y#4o2_ARmas=KIXZGr zBRei7x8z*2pQRM)Ft=%zRfgn|u~Wx2$Sb)_!Cv@_15oGy1dF?G<2)KhCp;NN$Er84 zH|Ud1$gVL{CrkThG5q2S#nu+@2dWm!R{Q?_MZb8)XcT{0y}~Kg`c4M4vv| z+MU|GN=G--4P{$PlX)b@WOAt6AcSfCy2>@V==U$HVo8&{3iR%8!0yM0#V;vWUVUDX zs;sV9o29;X z4b2MKdgc?16L;%Vowj2db`9z}$U0r-VM2_+=sGUfrO#g0`nq-sP>u8&3)Tvy^5H(W z&8KBU7G4>Zs~RR9{TgHy{U^nJZZ+=!|VZl=)HA{aRF7x z(DH-)JORe?y9`n6Xec#Vk|r^@A_bS@|TAbhsl}LEg2XW z{>-TzY%L4|oY`+RXThSmEj$QN%GhMsqTkd@kQuDOX3ffcOIJ@0H$Y-I$Kopar@`AB zzUd-ph7#g!l|h&2YZ}E&fVEtnqC;PVF~Im8skOM z`@XQUccZ}7(>0d?r8loRR-kfV58R}*7+xWDvy276`jM?uNGI-`GWRgq(^`oM?DAsL|ZgTq|f@2ck#t}Cmg{amPgsH`D{J! zL-Q+=Wekh0DIuQ}{rmSSWQ!!bBc}6*1&2^kH$xy6gQ^it=VgpTZ~(z7-E-yURcAp9 zbxok;vaU(?ctNJQ$yF3rsJ1^Gs;5`Gp3UUm@b9otn4ijawHZ4B4g*)aL=w1Rj-Yu+ zr7m4?abKsj-?_L+#~03xp6EtBku#0TLn6kDP=WUscw^0v+WPRXU3Tv1RR8;x1^C$yf+Wn}i_T_yk9{Fh!g zudnLFUb{auLweqs(mR?EhS%L!78-W3rH~1q8EJCN_<>{> zZhE%!lxl<;)UTbAcUy)ASX$5a;pGEa#(BS|0o*us(C;nZS@}hA&faOjmDVD}$ousS zXr?I3;>#bl`h(O4aW6rb$b?ss+66p*o$QYj6g;uggnl`r?4YWxfX|o1^cL9y0t-zO z+#j;Vp_nzawWo;s!VB+$C}Y-?c-?QR;sBl`(e*m1*R0Ybw9o^3J3-6l`$BkHq4>n? zXngE=(tT=QX^7N_n26Y}Hi%H+hbpE^S^HpI*ff*bZvo-nv?O8od`_|Fe^NzZP$}8% zYLY<479%pLgJ>I3uRQe$uA?WYE<>aq!B5v2S2H5UVgZO!dg$$j9fq&~QTWk{eC|7x zRF@KAXRu9HZUV|;`2kHBh_Xtqap8MVG2rWG^+!iAC?pe%aq>R`k zC{Tx%+Ggw8UR^+$o9*)`^2>@L2>|;YPsqlrSt$PMb*CwW?LIE&NxSUk#mhDB;prnPV=dtQWNm8W!SBU{V4KeQAFSn_z!`b5wFh(m10N^soN{FiQ z%51hZ!-1;}@t@F^$@Vb9q{cYi&ukmjb>d`*yStO_Xz!e5x`H^-f;8buZ?pxr(HLZs z-XaSL+p$p`M|YKn;Qv}$WMnJQd`ZVGHcaDlGsO14GAKN5r)^M|&p}fm%a$_V6=_s0 zzrQmK-qgQ17T88by$zVZx=-{iUAaiew>^3I?7vKLtIv6xVY~W-dS$!J-7xS2N=CI< z0d?U~vw{u$XFjYh2c702R_LjuW5ay7CKpT*zw@-gBY9fSOf1rs!Od+wB})i*3@_cJ zLa52fyAy!cY->}y{1gfhX&$wjBn*t(zDrIJ0W6x+ucds`s4Xt*YjKj~Ivl10nz?j1 zUm)p1RzPNo^W%bW&jOC;=04bUP5H-C?fU`b+O?*?b7gsEifd)F3Y|t2lZQoIU%jz+ zPI_EjwKzTSknG+^T=U51w(Q_8L_7%OhZHFDITidhfY+jqJWH*@eqRMgR5(N> zZ&nCmTPM^qJI36<^?yd23pYB$M&3Z*T&q)IY=u^79A~{4d~S0&5Zc_z&my*d$FH5Wv>h*zF555j+`As_ z$`7680-q?F3}q8J;yI=};m{%@ZVHU4w4;$TK!=+hCh*4FCdTo@w)i&r1UyiGAoG$Z zxEpZdLlju?5rCsb7+ers5~!w%g1(lqdF2TD4N%}~1gDJ=jZb3{rd^LK|j<|5u9I9fT}B@J*~iy90Tbbu5$kdyXCGIGZaV~K;BHgwCEyaZu_gTV_!&R zlA1uSGx*!#S}oG*KM6iCnTvck@aVlf!wRDUaCaIy@r7OS-*aX22q$|Lw=XY%>N8Kn zzGx;vR;t&m4$;N%J9`*?$^j``X#Gk0jn?W1W)G(^{PhvqO2v@g?d@L`R?rBq%U#Eh?{YE$eg7gcfHG=%vOwMZlJPPJ-kR2{V(2uaMt4AyJM) zUKh~QF_=!=a_;v%2yYq7{~0Fu-UlRJ#b08gKn)n7EqOr0pdzyZrUAZH3>C!y)3ETn zB|CR|c&n)TjoDx^WOzp5J@dw2q>T1V>c7lF`FaT+1U)GDlNe*C|NSWBBuHXj=vx4L z;1oJjoy2_$*N>HYOcEizY(Rbk^eiALfF?c^NvOLZEeCG#E4%uscswa~e|AEQLL=aJ zl$gd`7|CGE)g1*HV7m5sbn_j4jivs#{*yHa*k)Q&X%dl5G=y&8r#IIQm)yz4c_K{# z)ZH8_kBSD!5ZMqp@Tmgu_X5uJqiqltFx&Nd0JEO?W<-p!Du~ z`n`xwjoG;ms7mYn(EiWz45SP}QY6(iTnXBWB9z%P7y{AeuzQGbm&k?>Vu0#2rQXCX z1LAIssMH`A-{QHbu}$-9s?7tA%Q7h*5dBvDlq*vtXQuF9r3`Anjc_xuAl1>;U4A_y7YPPvZ7;e zZB`?m`#w3~)B5Yb40JpRHX9>VEc!0^1zNyCAgY0}A{CYz7!FXn`3PXn#?OY$CQs1; z?C=cD!UgYVx&NyC#Ijn2r7A_#pql1_mD1u{lhWf$Tmw^*_nwF1Yk8gaCy$g$;YoK5 zb9RgS5CC=gMX~FPx98uTB^suU2&$yw8+N_@aC7wa2qiBqbXmWp?7#^A*&>qUsPmmL z#Wau`#gN0YX_bn`jkvcb1MD<#Pm4)Js30JR{Ym}X<^et_g^zZ6i77>B4*Dp_lXsdG z54r)mAnX={55Vx$kzaZ59&n%CQXok(nnVp*1IckA+UPK|Rs6m@-^)Ms5ZP2tA1wQ6 zdDbJt4Q_aI0mf#`LzSY(9wOA)SfMg(jrO~I6nT!`B~3DqR&CQkBamRr=}m{t!h;Px zghnuV8_D@4Dio+qPg7_=7;#9isI1I}4qpLH^9|*K#V40NPrQ2*wm#K$vBhPuKU5Lg zB62cBkz^w*2`AX5AOMkMl8@k^9xe$j=r*Dv%akHs$uTXUSxAIFi-Htoj~4{PrC{#3 zVf!fyBj_tW*tM=GG8PMn@w~=W(dA-Xj&TIvw#7_Q)#da-EX#K=nJ1Y_7hP%p)x94j z0f;w+KKawpc#;}maO!#HXT(EDM^92;wl>Ll^Vb;Of>jJeAm=2u`$OHH{Jc4M0--7((n-Goqf?*fZaYPqQ z8P1{*l)|R2Wm@|otFn)X6nW?Q4DHM}N(~-2_%)Y+Pxwl|Zb%q-Tk@kpoI-lvdQ;dE zg_0UxikPdb)(DmrNZuVG1t^3H->^#A@dy#zq@-DzfbtVV}WOK16=IokZUWW|++p zmS_7gN|ZIL1UZX4izCZGqn&K&`g~!X$JE$4pa;+$tZk3~y@?>lJVX@MyQt?N+HAWg zhdsBO{UloJ+pL`N$^zgCuAd#l94aE9T26W`-CfzC zK2>M|Xws#vzJ=LYjX89$_5S)17xDLA_Fi_m@4EncFw#aSSKl*pY-T=6zuRUeG|TL6 zTM)_YK4D?p4$&*27bXpydN!W)?6x0J`O#zRK}Tw`hbNKCEuR#&CFREtdPUU|bT6kY z|D|K8bOFQJVI(UR!(N}|M^|yZHJ6)V51|6N?96@A!p5 zy9M0c1E7ic;iU(bM z%4-dM7zKcPj;M=adgdL(Kw#2KW+UmYyJ$$VwO>wahvn16HX_vqaFSf2tg}>Q z*&a$Kd+3E_3l{?2;cY=7%We7Ix2>aY)*gX;b29&od02L1K~0YZ8>K`9zjPBN3Zyg8 z>QTPttByvyQSX%=q>R|pEcReNjt&Kr?;x3)hGU)4B^_&Ndh-u=4AII633{#a`>AaS zYTV@Q+;s2lB(N5voe7riL+qNgrI2}Rb?y6^DK-UOLLw7*P9F z5Ks`nGz)^m|;Pb-2uX_E@d%tYOT@pi789*M|84#D3{+@`V#$V|c9MEFC&gUv#I6b&aX(lnmpZL+M6-Rf!{j+G$J{fgHD7$t*oe*tTI5D$q4e8* zv)AM#T=4^8Gs^TN;n>V>ooVD&aV4m6Ua$BmEBtW3#6M0Wrr$3a8g!Jy83nE&T;m_I_1fA=A86E^qR5uh~Jj1Y#IbKfQ zFw;H)-0B5oI@9N>s(?k(26GCOT)w zDZgXq(dAl?Bll$_f~2kMTAFLmAKdHv zy8b)r41^n#NF9kN`q#c$x!QVfr`!uv+Xc zsuEueEekEOlQ{f_coqfLcomEgjaAIycOx6&N}X1b#vVYiFec3aE&#UL#`-h> z*KDv@B26p_@*#Pc^&isW41`!R?d`MK^eZ5bv6QyzAwMF{EVkFiOT61*Rsz|Cgu4_b zo$Y^w;ZtDHROtPQPSNs5NE2-*=L7_W(3RJ#r$s`68x)y+0f8*~olw=m#-P zj$RmDaBkt`+oki9gDX(kVu`4mh$7pZiZ#sKhPMLSSlyT!=<;}jPBDtz9Px zc_b6y|0={xjP`w+|32~=24wDKC?u#drECBD<6q=)JO0mMfB0>rk$?35yVn1AoESo% z@!|ru$RfA3SQG#Co+Yg7uC$J+l6G%D1M4OsW_ zp4lFpEWaN>I#x@*_#2}(Ef++BUU_!esW}m-1i|y{BBKAlKZ6?8H61R|1I(mq_l4(w zMN0ppiT%%K&b}2z0K{%nNj2ubzxY3Ut@6-_67K2Ns=fbF{QdVlmf0FILw^MW7 a?@$BC8|z$Gi*o?TOIA`*qDsst@c#gq7@!6K literal 0 HcmV?d00001 diff --git a/projects/xinstructblip/assets/data.png b/projects/xinstructblip/assets/data.png new file mode 100644 index 0000000000000000000000000000000000000000..faca7a1db46433ef0d4626694e2673d6bd009d2c GIT binary patch literal 340719 zcmeGEgC`dO*ch>+GA>AEH$1q5Z z^mmW<6ZiY`d!E1G_wahn%yG`_bN1PL?X|A!T5J2}v8EF7HJWP}7#PGV$_h^~FmThr ztC;`~eB;Ah5Qc$qt<*tY{;`U@Jkw(j$TJ6LTMP{4Hy;x5AM0#VcD4JD(y|g}D-*(1 zAeebChOh{f@oDc6lBvE9&9YMZN@1$4pzv7RQ%~Vj9Y!^!!mZhy!du(VxtPB<8&+oT z^YFcx4?I{%g*_Wcv(OwsT@Aq2g9O*HWVL^)+;ynDiLv>U%ONR~N{~$?`VB44U0GcF zrvy8`=jw!#LP7*gBJ@|TjLjHAH;_i^_7`VYSL5-xpVg%?9^d;+_*^|m;&Z``;GRU~ z8Vp&4{Qjw0&0X@j2tKn2q1SGMIP4m~_HfwM1!&YK6kfQKqXf&tarC92|w>{Zc<~t&|-3aKE@=z|3aGc2d{)m@ThvM)4q?2M}|ai-VgYr zTVi8`$Agi;7>5duiGf zr0Jn>C}bCz^SnS@Q22pc{wtP2HCxO5%a>L%70H2tt9Dw0=e@pSQm@_wkt28o8W)GNoPb@hG}?Up%r$(KRWyhvIcwr*XC6&ROgHkkF)^8`J-E~uZhqJpU)Kf2mx(a$6=J!S#q!2I(^_Ri-ozsd zWzNF($|61tC9K4#@3_&3rL}~OB}?!cqw496r7)Y=XwSA=r8wKN()VyoK9M{o;rN8< zhC_$XE{83K&l6g*#MX!{@rh-K2(N>a4@)|PpWwM08E%f;RxF7PL9%>38IebLKo--z z>k%)1X5Ur5-jnrV$ghx$c|6+dA$gT_3gNo+7A! zZp24R@`7dQrQ6L`oPp4TC2lurQ(VTd?H_7;8ja+;FD*Xh-V0&QzJ1Ru9v56a>)~Vf zLWTHSbu@Y*9FO#}9kn$IMaHCbc^z*bQAa%*9a68wouNR)L@OK&s|}S5rw*@fux$8w za-K3YlS)0mjLv>4#J_f%>N*v9n966aZ!6ZS{Na3dd$-#y+(wd4aw`~Zg+XB5Y1yi2@%{OAW!PDZ`9^7H2rxis2=g;pGeshdp@u|oW-Vr;E zJ+WYvFO8b;v7_nm?Tkm6s}hkiB~K@Mj7WtoH3a+l`YBTIg&+>mjt)*I4l1?Y4rUWH z6VL4Z9SiIe?Jb5FMzS{>w_kgzdh%?w+7$Cm_X$0tuK6IIQ&O~D!8tl#Fsm6c33eNFPEy* zvD0*!ZkcAei|rOUX&ft?9ve!dDxYgqcT_4L*7sBpzs9EKTFvZQWm9fbcR-A9mvf)< z`t;9fy_y#8Zc67!=SZ4JX|-3jv9{&5VXID@*d<~mF8VI|i)Hksqot(AGS%5LI8!S# zLes5v!ZoY2`cn%Hxl<=IWmQhK{?-sz-r7Z{#bsG&(st!=_O~CYxpBE;RTJ*rJstNK z92#^)BL}Y8x;!(3c8d9nSGY^BpHF`qX6;?g>&+~uEH5foGPCI8&tOS|x@oqjX3!40 zw3}2&j!G>AX8Kozm*WrSeqT;5Xe;PAh+SuzjZgn9-5G?iMX(-8EFZmF{%rKk;aJi4 z%$Lfi;p}lBbKv*DjMJ?Xwv&n9(Z9uim+d(ncm2jcg&ZK)9Nkam9CwvNbUKPdCS*OH z`aJbrs$r^Oa(Fyy>f_omhk!ET)8a*j(LR(V5Vi5|j(fa3#G2jS_ho=6-GCqIo1`)I zy|UiT`1jAf+#ih0t;`Y343AP2zB8NT+{&d?&{GP0dmPOZy&F{(VMGBH)MwGZHG4Ze zGBQH)mZ-#{-DUI%HW3}=3h#!oeXHB_=j})#%8%RH(hT!@nz9$;>Gr zLZPXZl9n$9e;`-dZ~9zQ#gTs~YFXvRH_Tln_UqAmlab@RY@3*skrm4uO1eCLaX&Mk zB=7SJ-#v2M@-g-_Hj|K+lD;TS;?SgMcxG?M)w>a!q_)orS2Io6F%)1Xj%WD(LV)U- z$g|;hpEeTu6zb(B5)m0@?=Bo1#zu5{;}hQ`&KtYd2aN82qFYSM)Xy^5GpH>cGi!3S zUF0|}z9`8aCoD0U*r@0+5v-hmAl`X>^(xv9>aQE%9tdog_6yX>&|jEoy(A8zb=;@e z|9CP_YbL6H8FDFiD1XM*qR}D}$V+x>?p`eq7x#H{a{EbVjEGFag;*P_yPE$y>*0m6 zsj{DCX0s3K>F?|F4BX#cl!o~S64vBptz1NZlPpi1Nz~uHyBm+#;U?m6nzOBR+AgnH z?O9EyFsJZp5r#o#F5F|D4$i|f{GB-KIEXmgcgPXj)5wPQw(o_-hZx7Q$D!-^xg_-$ zUr&opV>`1y%P*2dlA;(0B}a@Ax@Lj82lm>;rYt4Y67@?{>B|dUv`*ZPs7d~w1;koNX?aPV$E4%D6^stbt{X0IU3SE1-ReK~)NS_hCbZK@ z7x<~{xy-JN1-G+$INgR}Xsj!=&pWTK?&bziQ2NV=pYj(YCVSw?@AGE=a zq*0gs14{$Z<=y2OySVdksplC~q$3QizDXBuJHsb;{nD;shbclcr<+d zto6)QiYWNFFmv&03)Q#SPO>6Z@PL2=F#rohr#N(Fi9TIjnti5ACjCex~dsys=<>lA|DTkpk(T=;J zS6_7mQF-E6k0W2asd_zny@T*;)CBWP28Q}ug&P?d^)+#4hdYwu1zNW$PpqcbrQ}HK zc}wTG>(E7Tt1X~jzY6?{SHrfdYoz@TJBzc5vv+}#7$pK{PO z^fc5^m#~Jo@L1YFtZaFFT-?yt!Fb>!0S;YkJuR7hT%28@5zOJ5@KHRQQmcK6Y&+91ILajX<+&mp1u1x6bT3SK8 zJf)bK(Kq_n-(UT-^>O(3om`>+cr5UMyy!E${5*WT|GGA4`T+f{#A62^TW2E$2Ny7A z;2zTaLLwp${xtaiIrZ;b{;jFu-`JD5m12L&x%@CnQe{f9LV-tPVN368O% zAIdb_KE%L~#ZXa@)AhmJna58W8=L9)1*3(lP<&t}c>YvQyNdZ9Gv&_Y{xlKg4jfj+ zvQT2x#iRfAxuLA?V{L7&!q-e#&pqP@5(3tx7W(@8Y@XS93$*B5`ev{S_JBX$FY%)6 z$op=6chw1)LNKuY<6GXn$Fd#bkK{y@Ffeh*WdFlkB^FMa@16g80UTz~o=lNL?msmB zb2+A^KBxb7PL_!b6Kf!p?+M|5?j5)*rky$Vf9yHBN1+5{ZX_?>ss6`~qwh{2c0lu= z9_r6`1PUP`P^P!K&;QHVFv)f#PyV-aA+k(hV6ZLoZvN+C19!k0XvO=lJ;S=ev_wb1 z^5MS@EScMy@PC^%CbHKUnCr5)i*WwSq{)Va2v+>Ja~PqrU|{e+E3^LBfdx}e{9k+a zzbXIUl>fhW{l8WIA8q1)tNeeC{r`2c|8wmB(I);E%l})v{{Qb--mM%uGV&x@6q3=G zEU1*gYr(^5P#&*WqCedveS9{0)J#wQH+zyJ7%S3Iq7iYveLR^Z7go8xdrHY|tUO!q z@)0z7VrY2#>uwSDKS#P-6@WA&-x-hGVG0Tg0obnT$!elS&SlWm1?)aA?_d=6>b-wQ zx_!kg*ZJn^ZjUYzmnoo6q9kNaaVl|aJzw9D+wQOQ z>>o{9%w~N5Ae@(#C0h$qf%_fpSX`VQ$;WslqkP@n-EGIK82;HOS&YyZI1?2XyiOCP zgcoJzaEU|1#Fjx(=c(Aofn_EQ2^muU-+5YgnEiLE!UIbep~?U3VW{a%rlmABJHao} zk8~^p4u_QlEI;F%?0q3!4QC7@LyYf;ju-2x&D1%ur$XAAJU52!2u*gGHG5WJK5Iu9 zzWO)RmDM2PGH*4^*UIE+zc^0qOA+P-za*mMdVNA~7}gK^|6V%qwAM zx;m|!xHf$plAJE-vHn*K4K*bjG9OwDzJjZ#OX#&-9Gjf1r9yTxEh_Bc{#w|BXS*#G zhsec6@78Wy>}bq?jNQH(0Q5oW$c`9&d?c-;cWLXdPTKwBS;#ErB{M9iY3nfIlN4%B z#}Bp3J?mT(b&G=H5#_S@-^|DNPS&QF^wl}kUv#O9G1ytsrPQoNWNS*&d*>cDK1qBS zskEW@tc$3Gy#is?KUs}{Hn=TY#)s>WxFETp?Xm`&mF{=@1Cq$@X0Pqf#--RF?L&Ms z1CQSYU7Svv_oaj<6aIU$F>!Km56^0&z4kB9kiGbf0Z;v9mGX0(hI3xhxqrRk0cNpx zw*|@b^5x56iYgq;7+D90A}+J$u}f~FYK23sOeJaW#0y|xKgFU8@EDjwWTgr1=km34 z6?4+@QiYwKtuJ)F>pg7BSF(NBp%oHRlXS9~qqp*ShLmOjTJ8~XH+Vmyy*T;q9WwW&VH$WE6HKmSp#ZOk^Y)3Uj zHG=S+-^F32{Ctf6>}n-W%Q-@xUP&pD{|>NDk5g_V(J26>577N};A^FI&$hc$;T>e|EFP#M8s(v^T!(jQ`;O+f)@1 zm0Gl$FZd&+e8Hl1p^-$q+|rc5iwI(D-^hvFLAk@k56*A=K3UIn8T5hkWrx){eg9$@ z*JkedAe~Jk<@cqq{ZPoFXVsozv@8R`20e+yZbt+KXTa6rff6$9weWa_#bUnpxa9m1 zq@=9=rxYutJ_8r~QW`#c6GwQX<2VO3ztxL5eU`O@A^UYp0a*XK>PLt8PT-wH5z&R-33NcC94bUZvxTKu_UXJlD5BnK} znuoQ8+6NAb9}dZ{R(>I=Sti??jxY3djb~X(qh05(%pE#6yE+*R-dU`+?R|LU+IF($ zvD>shV}cSYApN@oB^XQVC^f3tfgQ7F_%L&=Do&Q0t?u{oCR)cxC77f-?H=N^t)CpM z&k_;G$XxmuhBM8-!*j2n_cqxaEr`*86fSS>rE>4-$i5_CB9oVuhvruetc_(Oi3T_Q5KfeUEb&ufPkG95pkK>0* zo}^@k|DWX|pd<@%58A2fT3NihY(V&~)vNm_n7MzWI3D;4Tw6qkXg~*U8@SXFT77kSrUqPd%}%#H4;H~nafr9gm^;Bjz=1}p)`BESXy=E^ql)03 z4+iEA$j{w+*wJb)LZBJ#*F0bR1a3};!Dk86sODMJ_>d6w>BmR@iW}qZZ2xjuU`cm7 zV-hPy(}|A+HC+7&XM7kno?$a-3XLLuAef}{nsu4cKIJvVwmud3sYY4+#l z`Yx2W>`I&*49d8a`Pr&q_xsrv`J;9*5pNv-8MV-^Fe@KNXzzT&1Tu~MouW0G?svT7 zAep|w6sDfclC`|P@#r~ljE_N3gwWvOda6`XEQq2zD zfsZa|Y!<_ouG0v0cNQz(h{tlpb5ZRO57Sg^PTlWe&+PVHPiNOD&?H6_2VY$Z*mRRk z2c040dwu>Hy#Cjvh&-}1+Q14!@?|D(7NvU!`w0U!x`YSLm0SqSf>yJxLI zjikMQnQ`69;iy&vETbL(gj3pY3^%|+btD_=s97tVM9FHvvvrm`qgH2}Dn395r3?G>O=^v+rWCj@@5*27lMEshEEpngj)M$M^dQA5BNKvgLi=9d; zb6yE|F$!kf&}|P2oW(wUPQ*jDFKKY)n=a(=J}vNgdLOi(PTx*1@N+sTYgka-db=e< zzjFf<$5B~U$HhL@NQY2QS9eO^b93ZdwD1J*<1~&GEgE_tiWNVnZo2?oWIx4yf{#B| z)bAgNb*QDj?EuA6T6Ke(} z)M^vUG-tk?q&StoD=BYQjfjjKZAJ!^pM&5X3;fQbwSjae>J(uoHrSkdcv`@IkM~|_ zK>d#?Flm@@f&zMW-lmnCMvZRSxWi))(NPi|7cp$#0eHtHVf04i2+^=u|H&35QxJW4 zGG!e@h#hv9Ls|T9p1=c`hgr}@cKAvJXL;-gPJio$#xkxE{H$fO6zz<=&u1E081UK}>$$}4 z3u6HwPoCWuF;gdEP!sK3YVh*#I1D-<-gWFaaU=R)Xz-8Wger%km$eFe`d!Ar!*^!m zS#sE^3v&KH1wQg*!INVi>?jgD^Y{}!W18RU7g3jkbCqU4rwpC|&-@MmPu(_tR!4PUu2IAI4c7EM2YrHr@xZudRY}EH z$WkB5AB6rv9sf3uH`f9V`b9lJ)c8IqbLA{LJVwI{KYUMb$Tuu;4;2$~{8@6haoGlh zTM?N9v=cP22o!Eg@eM^An98*cvvWV~!|$9G@zvD=lDi$`S`RE2t>a1~evaRj?PyBL z8m*#5__}?uQicDKogCD1t2TEk&y6WoR+jhOat&g`yJS%Q=y1`ET)jKfYZ$a#8SxW>T1q? zRZp_gP;7j>$AWt3r#j)>1K?@8<;Kf-(0 zGlN}wVLMa9#}B4}pCq5jcnF47R)lavRuYX^;2mpgiEk%^0=32%y=LUq!b-#Nh;PDa zZ3fcBNAfjNeNxxHO284$0M1Yncecdg5w)FeaZWpyl+8Ud5*(~s?xFFai2#qmn^nZ< z8JjQcG+`JCR&g(hhe3&cS!=@^d_IpAlns=FBc`^=Zr+@KM9abUeVJ}2=IovG0}2-ytgNhgumU>fG!nE4WeMikw` zp>N39XF94#8p*|709B|4lh#XV;%qs34LBi&w9Tjm zf0vkDpcgx8(reO;{j|WqD+$C-K=y_nm^Ca0wa~XJLzIp*Y3$q9Qk+%*vx);S z$lsu+Sg%9@yIMY+gqYZGg|ho)NX=T2QS zi()ew6#+xqp(V?^;uvFwC@L8RtcwQ%KcWmBBjBQEdW`Qf$?#)_S{eC$=2@x>v+A!~ zf98N76o9{82LGKqkyO0(?Sx=DT&4lI2`fyIz#;>Q4h$Pd6|9>(DF8^z4C*aLock(X}cx5!hz zEbA!WcK>`!Vg{Q&a81!M;})C`8p)BC+kP>J~(OYF+iq zei@pqNnRUnlX_1o+x`cW(djf3(}5YnwZh!!{rkx>k)C}o z%;A31NNQGARsp|5`{9-dv~ghKjPPd3JqsK(Yj91kb)7esKHCu-UW`%~<^=BQ*#+mk zKVXq`!RNnniiA8zGF<#pJHUMEZ`R*JH?G!R0^a0ZTi}_hk&%(^fpGd)%W!(ix(5r- zfjd}Oz$>+_7GDYgoUaE2aYl(TA51&$Jh_?m41dj_(@plXmufOJ`r zQe_a2z;#=(01B${O}{$b=1pBg0>Vp0|Co=FT_bb21qSigHW;Oo24vFXGa>s53vSn2 z5QfH*Iyfs@t$2eR!~1vVTYB?U;_?8u6`o-5<^n4u%mUZXYYlM3+LPhht3ctp9l~^HN$iyGmGpN~Z75R8{@U)67Ro^Q8cM zzN$}phHh9y^p-}L;~D8%%WiY8Xul$}|M(|82q0&w*aI`z#!x=ZRFVFHy7h#7{;jF1 zT)M!+Vg6BVE~DzNB>Fc>xc!_G*P6#g#G7pKMsVQMxrOWi4%n9JSWyI6 z+eDC21XmWkfT#U@f5@tzs>t9M6_4p{W6F~(5cNlD9Y(vqSq^&n1C|Pq?ssJSm8(+V z?of7Ee>i-*yyex0BWZ0(QLi_!Cg}zH+$aTnzcH1-qk2(<*JD#tXXM=QC&mk&d>)f} zt{=-PU6(FlESK7hh?f;oT}KZbAtL?clQni)k`)&1L0>5!pv}O;;OSalvUhANa1;Fu zc_cF>z8MF$BTOx4Mx~jPfPQd=HLdsdtc%@{Wn#g_Bc`$Gsu}Jy^GDR>z}^Uq$A&a< z^u}9at<_t0;V{u1ysr#aqH}*??U83|$mu`=mJ3;H2({0>!-e%W{AMWmQprAvM%JYG zudn3vf>Rj~dbYttYY&F5xrX{|5H6!nMt&wSbZL7fJ@uY*Vf5eOUk6~-J0c_l}zG@qyr>-zqob#hPWs;x%ky3s(m>@)ZpUF@sB{OCt~7Z_@vP-aKd5< z#-QKXu$rOedY9SGxryrw8%dvN(*sfSlMU)1g3*ze5{$1(E3f&CR0TKCOH2+v6ZEOD z#zP!Q;Yl&(PJMh5AisP|Ilg0WS(RP}%1V*&Z6m**$ZO)VpBN}`a3xnZJQ z^>JR{8&CU}cZbicFS5c&a_pd{-1~gMWS?Z3@o~tsG1&b6kx_L zCt64kd(&DLAg)ierj|+@*wY%)sBevwaX4pe{K|8>0ury!nEU3-Yp^Hs?IEXtYB=~u zExLUncGX@(&-TEzq%p;4YQax!7LJ39iROOy*<X$P{nJj@)#q!KkLE)CM=nh++Apu$~%;K(NJJAM{M*4%@IOE@;UeL7~wH2*q`L+ z%ke_tXT#lp#j#S z1OT<4D?Jw2S(Ks==Q}IrXHsWp@d5!WWA`tC3cV&XQuI$xrJJ-|6}r%|5l5YXsKI!e zgBn(1JV^km%)#d^Xy#qN2b)vv3jzp+FxVv!UK{&spn|e0y5bt2KEFVBG%jSJERTx& z=%U&iF*DHUzU;BP2hTkEB^?Rf?GR@|8&5AzdDB|T5DMD9C}-p?W;AJvH9+n0z170B z7T<6s=J$06w*EhnmF+2>4?*CaJ-p*XcN+|$*NPiu`tQz$*PrcWK0ca(PF3{TCYn)l zEC=oZP2em+W-~9Y_1n&}8c);LhSL1XJxx7Au^0xanTFkNUSpapVQehL4{!i0;Tn}O z{UI;3S6`7bGUyHT+iiL|jpl1itWz$ET{vX#eD+A@+t<2vQ)&-l!gMj@Ma`l#J`dch(8aypu>Q1qar zh2$5^yLZte{OhB;$WJb$)=9*^kh~6o;-!%xj`HDKhmnzMzHfKt6EHRM2+=k)gG(ZH z`1nkEgIKpY1~B7|4parU>IM}ljB(d=)V@)tv~>g^gf^4A&J3JOfC(sSrWk*jFMvru z?FgyN*}N{+bqyfPpWQvY#IF{j$i+`^1B4lCVNd*#{4FtcRJDt@O48q9dd`b%Tqv#8 zd(Rf%*J>Rl;%!~>SD%qg`-9p=G2tJK{KdBY^A~Q!ah?dy>(ZRga_jq*1xQZP@dEE3 z+k*v$jVO>|6GGLFxg^+hF+C@OH6R>tT#Fwf`4he{(@&8|BYkHF2xN}xPXSA7!<4+J zD#rf#(c15L+Adu~WcqIHVp;tRM?8@cQmARGxCA&r+1!CaiEXaMwY%hQ$7(v+UZO5D zLZ!Q&cxjLpgvjDD$Tv6}(jNAJwMwt2AJ*~?dzS6y-Z-zHxfaSD2b+yfRYiI>#ure& z$oa?A^Y%31;5ST5bAZlfBR2;h99(Dq2L-+G&TW8hyL6timTIO;3;>{X9#M52&2xw_ z+c8h)Ff0Z$q(+}*VJq8bm^T!RjC@q1r$4U%X{u~qHdo0xUouQPV#DSm-}TdFQysHL z9SQ6KAOYtIO@>Jn5td;#tAAeD4BH^a1Rzi@(hqYU8(fS|st`vs%| z6gTQmK4BSM(iN+PwLp|A!PFdW85!P>m7;KRLO{`D5^*A=3%h-d0J)Dc+7ycR>+v ztK5{Q*e2CGfS)+yVNXycMNF-7iYRyRFjB9K>l{xe+Mj-UK6EEvaH+MIr{(vq1-{zb zG%MURpt#fN3r%7TWCrZNsTc-U%iui+bWCeq@gq=~2bPlAQoN2PAzY@D2K&xv6x#I< z@o%6g{wThoJ2!_U#pV}1Ce2`G-onyqCTbl`uQbz0m{!}S>e&CJBx8|SAlgSzhm50o zE80#uToeHMC8B*$k(c+?oZ#(;FXDwEHIjR=XTD1ViCjiEB_>h`#I~hb*y)ERTryz{ z$pXxvds}Wm8&;riAz|A{XV!_{aI*jWf^dQPfg-w#Ph@#FfQp}yjT#2no2P`%Gs{E+ z_AxUM(V>X+5^G4R)@xi0tc6)26i1kAUhUJPBwTWm5+fxxvkP0_`&cs7}a}O zVc33Q$qQY;6G4oXYwa8@EiLWaPk(=-vZy^%wd*j_@ojA4hIbWVnjoK2qL;F2(GRM* z$@7T?@8%d59mN%^4kM(h#P6lBFVXElz8Fa2x27|LA?hYym5q8DfdrV5v3Z3q;Q9nM zxgnR8le)J~r?mkEW8b&3Wn+v(kx;hB>m<*4&-}?m?#WBhMFc`2elYcxl=T#@*)E^L zaB_T>(MfwV`Ov=~r~&MLB!`2CTMb@lJ=JP=|0eXE@{=N&cOo{%$pMlJ>IYhO{?TGT z3HXcNeVudQXurB_aRysqHs{QOCesu6L_VBeOA_55VhW9-74@!Nr~8YvH_BdJUK~9v zL@t66rZ*Q0wVN@S!ttkv=YEyswrHCxGHdZ33(5dlmdE^ona56QWcP*D`DPn-bE73V zYJ&s!fLeZ%(6aQL=<|2q%)1iZ8HA;06Bj^|_bsW3=})XGtY(v?)8nB6F-OiZ<`AF3 zr(^B+gtbtp?OC(LT9P##`BxZP&-BsBR`^s2mL*V7e1YyJpULXC{u&jXp}qnb<|Vmf zMbo{EHyV9gA`Zy69NHM9N6f?X0x0~qex zDwFdb!htsr&y=<&%DzOKb;vpXQ@W2+}6 z_&e4*bK*n%y%Cy{NjdzAR4}P4w63fNZGK8_RD6Z2x<h(&n(lq>mS!K*6I#7pC~( zWa*scji1HA-P3`ZA(1Z{u;H~F#Lxm2T`I-YC00z$7;3Xcf-!$Fo2Y>+Y`ZyeISW*DD}wV z%i1pCng2aW*~QPEs)D!ejoL8pi{)?ZVzLz%|GtL#1Y=Jb9FDPy;$?^ z8)AAy!!>TsyWr3rdnX%Zi@Gpc2RgrdG)S#><#oE9`)xZWgH+qdFcZY4eAy7w4k}rA zuwBva2V-m|*qn!f2$R;G*4@kqp+;3*Di1k;3Xf*H5o3eH@iK&E;5y^-_~ ztI(uCQs#KddVbtn+IN4YP(b4K)0MnXhXxX4z^qFHF=w&MaXE|;Jsg&+bL?*zw3?4A zGG|?By~<%+e+lZk8nVzu)W-0awu*^jz24!4XUSq{qLqybx(KklrYMVja!TKaluW=& z@oLTW+MalXQ0Ki&5qjDND`>*BgXIQaoh@cV*DuZo#zSfr99E??QB@?dlur9=Y_Q(c zvAY9k#ZNDB@ms(=oB2i6vB_xf(d|0KFDn7PU!|MNR#!cQKEYQT^qK0Lpny7!VY1R# zaXbh8;dO_bF@gOppX}S$~wHVRI^EZzMxg0mFXHBE95xV?OG!9 zO!z6a_$GJSF4c}9lo;czjPw3|cl8Bcf4w;qNNGsT#BjZf$vViNRmkE*HIZFd!ZElzecT@O$;BGJ4vj+pY^20)L1+vT!^@N$~eaWmQZ=2(p zy0odJtg{zV#sEd-6k?CiV4xN|795JV@w>Bl)B-DSh0vt1!<$}N~lLxXo~2(&tb+Ra|* zjtaUm>&*X&MK7q0QTK3)VCMjv0kn%a5=J?Hvl+DqhE0fi5x@8Y+X(KmWl33TNg{+6 zd7Dmg<)D1qqfVBLjevV~1wz`+rN7!;<%UgqL>YA7=t`#3g{`-zcY_ZS5-F zRPE~+Xsh55jD;E+!6XIm<#R*up45Cg`4omPY26iF2ODM8X-8^0`DA-9ZGi0BM&mMW zTHI0T4|!{p-mS*dtrEnxT(I>fgd~3nAUk{rjs7xPfA-TE<+S~)ey4}1FHL-O*yPIU z=+LYE-nJ>^Y#TsogaZv{$acM~4$K~+2lGcXl@xKbhOId`k_ZX}ZfH^66jx#E)-Ofuc+>2zwM(SeNrWS3uQs7<>{ z@au2i-xU@qj&;7BK{PmwJrxK#YXd?&J-z)9BpsGavR|kp&_ynu6xAS&a<4v{6tO3@ zYsVy?m*7l=)Q#&~p48Q8{HXwW>v8S4 zUKX9#KzVnPthw-U8j&zLE`!Z9T94W6`(RD~+?*W1GP7T>Ng82#ibai13Plq7yzVKx zzefCk*gsnpEf%!ns8?9=!!^InQQBRp^V;!Cd44<8rzH2hMSeX206Dg|R#h#D^& zt9}&YE&!w4%Uv-InJ1^ygYhXLmkc6QzY(a0?iBB7TdEU)`Bo^15zOuRf%Ic&# z5ckC{Jt_8?;V*gJHAwz<6i)azpj{UBRZYFa<~ypLg0)rap{@`-ibOQgQFpxQG@UJv zzwL-8jf#I8RM=HSZ+gxab>D%VEd9{Sq4P;q1%F_mLjhSF7T*sNuArm!Z2`f{2sl%A zg*?=t1pfL%1*LGKAKPZg-TNpo63;*{t&{PsgxNnRTmBYs5f`9YCs#nojbA_$4oeo!JsQ%_5; zJX>M9A^KLhF3k>w>^=C{a!t|C!{!#Sb=1-3bg{b!sCP^yEI|zI3LGqvC zcK@I&Ehy7~erl9a??)K&%fyaUIu)arAX%XtC^;5>otbYY15#a<7CRO`KVGV$Y+O}{ zd(WKxYIU25anZp&fO2RlcJqzHBE*a7De=PCn2n#wtT!mx`Iw&)t8+HK*tyV=jH=oc zPfM`YU|TA+7T%b;;o1T!pEm$_5RYyu>A_39=v;KecZzmC2W1uv#Y)?f%WnngMq6h2 zi<&-TRj@^=ujFg$)sI)H=4+60XLu$@~`=lleq4Z3~1vc9-Qq{0^8eQ1-B#}yr zfiYBl+Zxt1pkdrpNF*tjMm~Bb_=z-zwIQ3&c;h$Np8 zccf;l@aRpMF5({vFPC)%mQrE<#LcTq^A32bYA(x*Q@99-W!!nE^9=(~&taNTTsC&K zar#`?_fa}XDI1jCtVhRNvTg~?3uZ(R|KR|&kjS>CZQ-YPQYw9j!~Fcb#PM zt^Y)3ve&#z^o6_vk12zDmnOE%xM|$RP!L3VPkeI+$gR_zKJb*Gnm+*=aoQ&GLQ zV?MdauUxUj@pLBhTfeg2Hw>TIOc-y%d+7zIW@jx8d^3S`^#t`luf~Icklj*3hfvv> zFOX*7dn#)Wmwr8Gp*QdbFH~cTuq*H2^-SjOXx>=mcHP^{WFhu!5ry4F7f4=#>(h~P zaZoBNKP9csL9P_GySqZA5G^d5d)(-SS{D^{Frg>TKbzMsSS=C2D3~1xNC!n%M-!&Y zFp#hMZt$v>P84%J#AwlHIckXZMNjW7H-zpV^$-Z8fb83C2zH#Y{sPs}gDcNQ>&39x z*v+TJ#}BE0Js2p}0o7 zCEh2`lBxqx_%e|&9Ozd7M%53LPEyw+4P87@=$iGjgh|QT^L(4FE0F8Y*_s%;y(?tX z9b0(xjL%gGR6OcDURT&Y186SyxImi9+$X!GrO;QPt3>LD83eXVTaU)44I7pZGJ|7CPlYHL`yYvz3Iy;L;NqH70D`(3~!l4a zQoNbstVb z-^(i%NyQ&^eF57RtVV4gWtbojp7p0pW8zpJ-TZ!sk^~owuX1DvNoO&#gvJw8HX9os z-za$^D$Lx3vLga5LN>kUZ=NI z%yu^m^`q1ETlQ{G*y)AJ(N$H;4?b3xO(ffg==N^Kmxt6?xJ}ZB>}5(xid51iKmR;C zD+Y$7^!`<|%p`+zm>@>X$F^?}hka+YYg+kA z+tFN>K2IrlXiN5;1XJw7tFmR04elR*VRb#KB(SGM2WX;aEn7=rq~(5(R9uVN7w6>0 zd74(<-)+eE;R*%Z;0&+x5LQDnmJod(Sj(=-sHt;x4_mg#mYIXAw8cdbY+TRa<%BPG zfL*$mzTqh6c0g7W%sL7g|Gj?ZwPEPs*6xo|>ja;uLwB^Qly>;$_}PSr)6iu)Y=Q8| z)td;6>A^{>!}P2AEkAlNMNi-c;$Jk$-3gH0 z7;^gTQX?62U5wYTlF8Gg&4kUv92CT^1F#k&u?GCfcLCNVIw!t|?WW(f32qQQ7h^ZJ z{YOp%xh+4s^GNg5I3_@914@6F&qI}UsTC9)J<{(wz`2n|pds z6c=TMW#ZZ_54R^P-j9@`)%U+W&}-I8=jrOlm5`1Q%&G|7=5qi_h;UyBMPcdiVFB&m zv0GSRDIa^gsfg|Q^sG#sPngm|-~xa~?yy{kYrCOuZ^!)e{{jFt#!C2Qo(-eAc)Qlf z2Lel_6lj^D%@#iEpt)R-;m1)-U*w#6AJeX%aYsrYRRtUBD8#O?kt<%mn~rIxQMbkb z63*Bfikeke13^?{1Y$~CAFoc(vWi5aABq`t2y9z-JB;Qy1E2u!G0UG~K#<%6sO+z@ zz@>$srJ;26>U{H~{i2J`*d#PKtWr;Yp?lksUbu4U*Z{TL2o9}ETtO&Y3%unO3N?Kg8@i>Md^v=V4#K;E|+iBC*O4QK3Gy@Kmv5n;8psD zi{NM4m_mmUidx)3^@B21VEO$SW_GNBcg*7lrd^i9(9a#ApM1&PG>4zy-}HcrB5MYv z?@x51^V$FC?w_L+r3O$FB!b}vl&Avw6|gCy;cNzM(;0262$&5eA=#jE9<`OY2N}|- z#$2a`vhEJWUXlwvcG!_K$Q>!L_K3gOir4Tx=WaFB(ST`Tf>g;2Lkyhl3QZ z-!jM`kUlAm>PHtA|IJ)b=9%XM04){NyCsJlOS*eEJkes3Jc#`o|n}kT`$j zb{!}q>bxv(0b6gZ;-9*6U|pP{Vy-nd$*B;Nu}f}3+!3s$zF{l{3ZSkjvJE8RwGn^T_W214Kpz8y>J)o4l=5#aq*gsQ(MrZwJq}JB@Q^UUl&#nLdKIVFrb(f-1bJrOt z^?DI4x)8=R_-1z<$YKXBqqtP2WHr=p`~Yi9ZS!hB98uHuYOxM#VvvXt?qI}Rzt`qy zI}4Hm^I51QJDG&JPV3m2ugDGX%X9DE>;I3fw+yQ?Y`Q=N>68!@ zM3nCCM(Gae?hfg0R2u09rMp2|O1itdyBp5EdC$4dSAU+1KWv_T$IO~FYYpb#54&tm z8wAQB;;z>dPcIie>mz_EgFrc)JP6t4Nyl_oGiMyqC)C{zZ!4(%w4F@--=zOQ2w)4H z#MFwKBLrvXHyZ-?dBKwh_!R_|BzZBQ-RKtH@0HYYPx;L5P81T?{P4O3jTug$9?Ip_ z!Rv58ZiUZ8>O@ip=D}(`BOt8BlecINBsr<<#`D!CyE{RGh4-zN^<_erxatRE6tmhcuVFfG>AwA)DJJes7r z{sUrYSpbFK9pu&8ZAh3bHoAuAkWXl@nCI~RbVNE$G4*r{Z|vIUn|y!81uPuBGj4mu zsV~tu{_;(EM{zDfB;W;)KtRX#C7v&V$JOpjqN;PZh3%|WCTPxX3eFv99q~bec>Co* zbO$Vef3KNRdEK2>@fDbIKom$|IZ@d@(Bi5udhD8<*Z*&BIuO2Ek{KR`av93!CZIP zW;Cs7(QTm%PvBAp$Y}g*IBOdR4NxC*%U>K+&jDe%MmE~zmi1JT8go~2S8Y|*`1|Ar zZTB(RR4&%>7?2_*tU>2*xOu^I`ySHkK4`yN2EFx5T7HLZIh*p~HN)MhwA#Zb6&sCJ z-pShqN`R9b&39u}OW6s|OTm$uTm=!(IXSW_*Bz>ZSH#oGw6Qz&667le8`KK-GtY(% z2R>k9Evv9jP4W}AS}>cfGHc#YueCnF(M!wn(WbC#Y5}(v;F>?_VA2bJEKJ;jT_5db zXI?EgU@e(_X(|54aF)m-pG!-pmr!_RC~ip*8`C4uaKmZwUI-(Y9`%pOaMKzdrfE2r zxW=*$_+9c$U_RZKH|)I&Yoi?MugB0d`e4$6I3`@JysmdD$@ zg@JvZZu?c`BF?6T7)~#%uV?Kl7cSK%kMg1fuZ;_MXR8fiY(IEqwn zc4JAeK0`E^N_oE0{{^`~G7~1o@caNC&zPCVsNKv|Wnc!M_%w->lXMaJ# zRl^s;wKX+;xF|m~09u1G@5P6@i0ZA%O^fi9g8E`K>+MMbo5RJQ#di@ZgIZJN2BLEv zhI?1<<1cq71+0s(sUXZL!TxYV*d0fn{pw_{J;AUXz5buBJo|&D!vXu$-jiKEVB0{; z1tJ!`JKL*VGxc*vR_{j-+Ffq5Bg0ycq8qSfX7Ko-)r(psFU^@q$un@(HTgZ87_#Z) zGL+tY$svK^yFdQCGgn)>(1t?v;puj&C2Bh9_kT+XFQ9u660~#l{lfI&(6O2S#wYyM zWlHX%wXn8{2h`s*6U3*SFt@)JXJT{=os(OZ(3r2UfHBQK)~6;lB+tkj*$K1S0prqn zu8HQ=l_L`EBq$Xjr&g{Xm>`gs@FD-mtBRLwsw^RGN}tXrAXcr$GBIIsOy93a-|bb% zjxg!C+`9BP*UKHcx@jjao!&JT=o6` z(B=a#G+;%eKtFv!`4QlPAaUnc)8UN-!7O6qz_|W*H-`vfbfaf0D8(KsKN|(3<`LEGMzN`OhH%yO&qH!lKg$NjQeG*z9 zqGouk)u0Ezx~e{_5*xvZUzTNr+9Hu=4g3d$f>yPoh5JAuWD&(G_wK(UF;LX2K`{#? zC8V@mvbi*kjj!uU*B~vO!lZbrK~yma>tWBI#R~bX0kKLZz!}d?XxpD%Z|F)?NCf{E zn=b^Aej(C@bBvoY+C7yNSkp9>;v*ce+#4*SO17D=c z5-nsU-_+7Aru43CQC=qDuLYm ztS{hT#9U9m0cWb)4FJp5^iR-(h)I|GGl~$0Jw$8K_;5LgXf4e6U+_OzlG;`wd>oSu|JZ0?a4&$}B4lY+&d1tLO~>BuK4Dyscr4ZwBjL2JnW zkI`Qr2%ulWp}dlI`~#9;&w5X^;wPW}c&xo>V!woQWm2i;tQ$a;`+t0t^MYf% zCTRUAeEC8$D+s)oB1(&>Adifde}udn*7LiCLEdfR{Q#hPqk+?_ceOJlyR3}Cx0oVI z30kI3tP}1lmBazhetD%}e{d1kJG_t=(6I>E*df@HQP5}Pfuxrw{6kN7sz_A%J`>`I z97d}#CD@c2q%w(#d+v0KPKekOKmAs}5p9-c`~hO-w0pvlp{HQSP0|LwhC$ro;`dNz zH}Y~{rtY073eq0R;~9Jb=pMbao(u$K6~@7d=0uQ>z0$@s#3$B``n)}&V0#jFt<-M= zje#K?IA*qCYBIz`kP=>euk;GK(KsJ!bO_|Y@7LMUA=2Dg6SC*BO>?^E7v*zW^s^78NJ*@%bG@9|7qxb0;KtI?oS_k(j35a#r_M! zmjuS1d0^DD149v1Dqstlh5ydzdQt46i=L^JJNe$M{E1BKO|-K!g@>M@(sgsinKZM4 zMogY=`NSMgba2qKj$|5H;<00*aB{`6Xs;FXE)6$^C8{llTT&h?+FI%er@N*{)0U3C zbRzgQ|Bp&*!J6u{OOSp9#SJJe=NIm+tmrhYV_Ink4s#BGs+q~_-UTukAXVkU6oErU zDf|F(`sX2@uzOdalL^`ZRE{ASUr?J(CYA63$o5JMk(H+s1a7$URUeXfq}dfyCMx@_ z<_ax}DEGldI~C2yaFQIGtIT|$&TB9mJinB>MM;Vg+6du~JKfM3C1x>e++PxSIV6mK zWb#C4*gnFM?JXHt$Dq)>%6;ZW+xLxZ>>mvdh2^w(aMF?WVayCiNCXjcatUuTs6~iS z@!4WtQ!4`z=tronex8;pu>Y^}=pctj63e!v;~cbbqmk+U{6!P_rK69>Vk*~zQ&gf1 zbw*sSzfqb)zJSg)ELE~$K4D@4d?+8~bltdd*%l>`@EwN==kilg`?4(;3pZt=Ix&cN z2H1Un8#iU;ZD?8}IR%To=It zC88r_#=}7?Wc0&mwZ#+_!5eTd%gZq!_mcVfUdFFv*Ku7yr5=GG%NK0|V zJ9U;MZge)|tWN1o{)zv34PKEfqmBnzI?0#Fp1XQGLxGcv(_%|}W?rQ~!+gDMXhbpP zT+hsAa8(*@@DDbAQf8gyV=~)>@+f>K90CkU#!Xs?Iw3{i#T@(>11}Y3U{e7G`C?%g zP>XInJsv$3zVq&HM32LZXtZ7}|Ka zCAh_#t=2-8kss$tY_B8_lC2S>GBUc)T@I;)@vUs!c#~uBIa$n*GAsDCvGPBV3ZkV> z3ZMz=?2%eM#xnA9Quo8|R`7QvP3?XY2#=6>B_^HmH*0#j^Zwvxi&=ugOO&~K(3z-k z*ionhOu+_d1fgieZ({+LPeT4VP)I)q3Kak+q#V}`q<@urJ-8*~?*sF1sA7_m8P+hA zXPh_j>%JBudi&YPd~hTSJ`2F((=fd(dd)UFx=;665sd^vzTEtqcqU_S7Ab|SEpqTi zvd?BAt(m*j09-1-B)`8ZH18LBtZlhe3JAD!;@Y^0$t=Mt66F4}S!(_bwFbtdbOZHl zL6s!*ppw1;F-RUCOdvBGy{Qm6x)@XWJnJFm{kS*0ZdEA2h9YC83`-~1{BKMozMc%~tx#iphOj?7H(Gi=;z&pxR<|tiz>E<65hD$ZMm2j!Zk_9cD zIqdc`gqi(s&?^hPm-aDyVPMbCGX5OME69zKw9-=GP}&0aqZhz7dSFG32A*=!5}9pI zsI7nmis!v8dfr=Fs4b2ho5quG?>x$S1Wj{vyl#ZK9CxvESqh=C82DdVWw_4Z!X&-? zoDGm*w-6M*3matB#@`RkFmmF@N$l+BNNE#LnF7GD^p28(A`)bJ$b_Y+8lVqjd5aIB z3OPw3xNA)OFK74;WX3?erd<#iK+_F|0A&67!vR^ok8&qh5em(=DdMT+R6lm}ATy%6 zk$l_Stg=nl9?7PMc`D~LZc#EomCCyi1B>fEYk zBn6<^w&xEyDD$f21z0y_S%IOhc^^CCAs0+-P*dT?foy2pxi}ta9r`SZW2gEOtpde8KzTNBUp1uKuPI4DXB7AOVU9K|HQzb5Xce_zs8Y5AI>$mlUWg$kBby5a(%plP9D zzaqrr@n*|zTwb)N`zLYqB0r=PHw}UL-IULfO9pz7QEIAK!^CD_bRwzi2FQ#;<)b=# zkbpnDqK-bK(ps+~SphN}rkmUMcMflM-UQ#~pOzn~|<=3~<1?_0uQY_x~M~h8HKq>rIZEWZYs>_LxO!6B!WynubQv$cX$^Yw3VV*1^s_KQd&? zq=6i~Dd<2{?qqCy_~ZopuhrZf7Mo%_M?*??UNd@!NZ8}ndTuspIMYyEd$`Gq1F{L{ zt68H6D6zpzpE6vcUuKt`Ouik7ld|bhGf5>y=RJ>fIG9!PxSz!Be{4-%0V-t~yUT?M`U_sZBW!&6La;51lURi9-{(|-50iC7dc|dH9{uV}7 zt1^`zy#SR+QYb0}3#B|Cq#baO+Q;v**C0bofYG^&qGweIw7$-=9m0EZmCN~luEso% zSU$#}$ZJT9sp2h|^&1@gmaV{bhLIjuhTuC6gS1!6z5^XDUW{4k*x9R-1&{{i)Mr=( z!vX>MN^OPl3fUYsdV^V3Kh&!6Kl23K-~16MU&>RF@MO+81pY9OSDi~J#=*Hl9$XW}Wa83TL?WC9*lYtXspA)w0-5k?4ScujEth4^f2mBmuqhoehs1*FKvB z3sIcy6Q0NGHM?1}r>tGICbw!(kJ0DfB65&-3hO~K;MQ{nlmHo!!4qVob%<2n0^-NO zx2lo{=P8_gIi@7CVn#MZv4%^V@!6S;K=M&;x-1&o#_7)tQP@jF<(S@YZ=Y5MV@L*( zg`=^qO$7SAdaTwdwN9p3D3hPQnINKLbW8jG4s(k99dXU~UV;Et@3rZQ`(hGhpGrKOI(h8JNP6h_cU6Hb`6?;&-;*cTz{%sGhio(u zN3^5>p5DnySU3E_^lRsOiyr&oi_1coB z3TR{SH~53nKoS^sqi5g#XF;X@a>~h2^)W*tS*k5~sMWJ#*gBCCZ9}Puo6!0?WJB>ytI3qo%7GR#`9tq-NH< zFzXV`8K5i?K*q8~i;3<%l>#})mOKSK;;f}%QnZ48xE2r-h<=Gzk!1}O*|CvL;1G7z zCSZpL)h@z#fPmn_q{8T7fPnw2jlO0kT-2q~pmx3V8!}x5*zsM5W--0ufC$a5K#GS8 zuQT3Eq7^HO9|Cj;*tMJrAT|C({*HOg2pL2Hx_btD4}dz!2E4oYfxnNvf~GGH+44II z^4N_;$ZeJ301ui4U?OY4#5eq>AXqe2MW9s4!#gjrTO8`{5BOFn}%ip%w-S--@&|`7t_|qc)u8 zB2%1IH)Z!SpHT2|5}+#YAzslm2**5*x_}4y)2##Gf|h|p^)e@_GxUuP;;TYPzH~sq zo{Ur1NTF1~{_CS){C5hq1ts&!lxq;n@fPgMqDU}1=U?a4rMA(f^w%Z>nk`B+pFh;X z_NTt6=F-tUG^Ol4SSxB9$;M-lalE5qNtAvBg3-iyXlNzC z3{s%(DlHo&i-ZXujm(bDiA4E-hQ**l3ro98$QOE1PHC2(;!-AGnfG4EK|u#0P0v@Q zKEBPX8@1}40wLlGMDumr((zzuPD;7?O^Rsc%+E6KHK^cY&Hr*t94MN(H`{=WvZMp` z&YKEgCB+fsr8pn^KccUOfEq*&^7Y9ES5G$-vp_IhjnRD#E)MX|!bnBbMunS52#ROM zIQ=?WyY(6j5O73_ad<-lTTM-PU$J^bn7tn{GBLw)87Lrv2;=ybF%yl-=U>+I_kMx) z(WVf<+S=T-m*`-|yZwtFPsM)!O?5W%y0fBhwi~(74eVUT%J$MjCjYF$xo+T1_ zIKFL|(S5FEJsX;}<_(3@x~J^uq*{U#=hIZMzHMY=5%zn%XB_d5T=Saq+CSUUrm=nZ zaVd5j(y+0oh8|xc9wR8AzR9ik^!Xm;tb}1Z*q}HF1y2Fa9f#C^jSes=!~#^V>Rfkb zfP;}2r&NAsX0tT@zw=FXAOf#H1~rrLD$m;2ZEfdK+Ku@RA9iK&7g+P=i%0NR35eiWkm`9KWz`JYKS z;ErMj-NsE&LqJ9c1)&DuDD1KRa5qUbkm7pBPES)H`1*ayuihXfBExkp3WB0F=qck_ zf(cH#i25Dpd3sQ`_THudYVAvH#2kn6zt;d-#($4R=y?8tJRcPF(W?@93?N8L!K4`c zy{4hlxi62QPh77gbH^P>tJS1>N51mXbT%uE#Y~mFpwVFWdSLvu4HYF_3|nz>x1X?g zUuuLGi8sx?MiN^I^;YViWXo#dLNJ?YyuL-HIG(gmrHdzLk`_;5fs2%JDz{$$wy5*8 zHJ90Na^9$hASAvx?$k~+Dbc=R=U-UX0vUc!8n+eQoaGFcrOF!LgVHx%PWeTT^{lcD z9>EMUSP8Bab2wd#LD*W#ASHxvNKwq{jSF5YPh0z@%txOUUZ~>15cX*gGao{LQ;^L(yB+$ zRZ15=AjcO4Ys>dUZQ@VFi=di+ml$AAf4#>R6PR|#JA7KNRUb# z?zKAQcBwQP<^LKeHrL3)c4v>|7?C?vPrBM#3?IIozOiV>-E)`tO8PX^UW@RkruT5E zFn^h_Og*@Yr}%u>amFTG#(@3#nlb}QjRqX{KhdJ##7owaK@XM)b$}2DBbJgo+o0yo zxiwnVQ&QVK3gbP${q<_zjXCjrbw(b>VluW@WKM^$dcHxx+cw@@A>Z9&m6Vc!)$v-o@W9m&Lo59KKt zsk7|y259p#;hd)2W`m;m3PxdS1V7M13)5ak{@!dL*K(do!OhaY z*w3mh+(DJ->)kl);)|Pme>)5lcJE(?_W^I%UGmObWl80V?-8T!c%65>LeM=hNoVFx zE>AZUp0rb#?QhdX9DX0hofWMp+B8|gI()QoH&kxK4|VMszZG@@s@!+w26+iJ-m5V) zzqY*42OnFs))z@$`gvV^nW_NynB5GTt7~3srcotJeYJ&1^x zZk5lUG`ngB*1O7aRc2*qGjJzL-`|$-@-@A}=455SwfLsREEmpic-O6DmtL3WK9g$j zJMNBl+VRfmbfwbdx;VJbaz@7@`*Zr7QSr@ST=)4|Lwxt<=KREZ)=e^N1oPMv%yX=J zcv5f6Gz8&=oLa;c=8;_B?~ON3J|8GO3v|yff!auV9}^O7iEy|9v$<1>E<`i%m^?%3GQ&QwmfVrEXj3JRaK3g_0f z)<*FOe^0h^BSDQ!ddg#I>iQ!-T9A5L2=aN?o-_XwWv=E)g(-b$w^?`RT~BB3;oG`D zy+eeaJIHk_%~zRjN*1LRPx#ZH>mAKW57_6#s&da{nQ?nMO1+|cmIf~t(l1R(miHyw z+wd?!*%A~}#m~6Y6hG)8mV$b6)GJm$%3@RIGDEfFeY#eoQh6xx#Ghuo$bB`JS!w!e z&wVV@?%srXqZr*g*u1CO|0>R+Kb>3Y3rB_Bg_}FZ&g$GEOH=mNpTf3H+GMuKxB>j> zEA*qlwz5x~J&50}>92IWe~gzXy{nO+cQT6@A1n0|ZccwRndUl*K9il*8f15FFs0v6 zClywZ%Xr9tN_=E$;=7n8OUyV!ee%+&I^Z&^Yv_lq_iAv&L^XA*y)o(Qf2ggvU(04D zWGfvqdh7Zkx;c%OT=Vp|Dg9lyxclT$&1Y`>3@xj{rpxB^+cm=9yv`3fLePT~buAHO zLs9N&*Q$#T>+xlq5YZF&cc;6lm%n`%T%wzm3F~hdICshj+Jen|)Sret9@+`*`ux|Z zP&Z}0F5bY z!+tG@k%e&iDV|I$mJ9(2Ni3R5_!Ugn6(-j&(z?@uIga?Ix`nZ=_g~7GM7j`1ZftCp zYZe@|5XatkE{wrjy&hJKmHwZvN`yF&eey^SoYDO+PR(N#)=a#)JefnUjZ;^Jj>R^D zP>-nM@{RZ=)+IR{A9KF&=m|->JZuz<@?jwWD`73Mf9DaMnX<K z+EOYEZce)R;B6^vDquSs0|Y-{T7Dc!0h^CvGyLu0m=CmSI(s+DgjGI+tA8*}GKE~GW+;`bs$Z=E{LysUy z)(Gti{*}}wP^;3*opd7d?AQrY@4qaBuV2q66_K5NVUTMX6Fkx>NN7A`Db%VPFUCb3 z@)9#$_Gtb+#ojPKZhGrbB6rbGEOrKVDW`a}NK>yCXWs3}oT$~DmtI{06^d28S3(@{ z1^g+<){Wj53xs7)>5_D3tB5uTCi8#uFHXPI4oR1MZY0{_dB~g`-6~i8W=4``uR?&T z3}xZEKvzuFc3xh*p;mD9!(=8$M?6`|JQi<)=5>s9Wm|{?tfHZIwcdBlX5}_ji@V5| znq7!kD@DW!Sybz{3=@;Wemd03eeD9Ap2-d2VB=oi*Q;T{o=cvnRe8uVK#e;}BU zV>@68Aq3!h!AiYFa^)wQGx)*(SbcTjpRrjR;?(NHSeQaA*tgm9UM6r}mmH^{DiJ3B zvGSAjA#aUsYJ`?1!Abaf0Q1nD-K27l(F;t~-{U0;D3e1wAB`o+O_}(a+h_@y)frTf z`^cIKRLP9rbGW@Ns7WI+TADulRY0#{^g3r0p*jItv`a~{|N7Zi&mF4gEiszE!OXC?RwE&7?K&TYTI`Hg^nMwW2BA24 zx0z|6GZ?`;>rj0X*RCRS?iYz^{&dCFm9^rezpaQf0kZPLMot41w_Ee>99<9G-74x& zheHNajQgq;Ldp;XlW-I*e?%zB!*9Ah$~}7@IWZ3zaK#myN(fP2?>Q%-ZL9nAtVL(J=wLCWC9bujStbrcp4xBaIGExbo| zDbR^>+!yglZ zY@+x^rw3fI^o?x^$(=hWWfA@(gD*0l{!k#>wna5Sxkr?~Th{ik<^Ipcg-9Jogd%J$ z>k#AV9TN!zRC-x_1`ky`X(0}Kk^pLqLFf-uJpou)(>r_cRM}?4__V9R{8#zE=}pf2 zT$9vR*1K_H_YLousTQH1KFqJFSG1MvGUc}V9(Nw3L{k!b(?tRZK?PKJP&6DA5j^V@ln!NjY zHBB(yO3~(f#5wN^FMENOhu=c6cLF24FW|^i&(yff>-F*Yb5Ezr`T}MXk#{^|5|C6D1xF-0I%xp?-cC=E}S6 z$94au+buKG?oBEQyMVJSSMKG52yZwKtw*NH%^q#J3E1NuMs2e96~cq&YsScjmDs$#hSRLgjnO6McL)uWh;Zq(Q1QN`_-?44bTK zcaKiP8BIRnZ#Dmj7XgWp?%o5`*yrFCkP4;j&vBo#AI<;FeiWnxY@4zt%-K;a@l)>C z5e)7(+MTYh2J+uqQyHMSZr@9pG2nN~jM?V!Bbam$(!RD?blv`@Ie`SLxA&XR`exDa zIP;I;%08<47xH0*giOg#s=jR6&U-EnL28kM7xiA|D(kr-9bX+Rv=DQ`tv7x;h*%7q z4zzq*_h_=ym)!pxW}DXT*WUctYFAz#^M1S-$AjtGwU&t}CHezn_7Lida09tf_u;-X zdU*l{f1jPg5sqvfPmexR#*?*t0k0N94b48SF?q6x&I;+9o1jB&p*GIphai96cE3m7 zR=&@Wi&8RWhBt5Q3(ZdJLQqk$-1~dk#O}servdh;(=Dx8<78^%;2|^PqrGTFywyFG zxLpT-ns&RQr70z^o{JuQ`rKMtd`Do;4CRu8|qH0euzml=6Alpeq zF$Jus=ZIDTQqq5qXrGu=A1J9%l3{2fkp4oRWd)l*yq>X-m-ww zV!vl1?r~-ov5csDTR4egXB6?xGI7B>OYbF*NVEMD=k-FYz~sv?=`5 z8Lag0jXWb@sXqy(|9(pQ%8y3c4`;95o8IoCQc89QUOI5CrZ?8Sxr7vs$wPP|C zgP-@NyrmRI=JhaUoK}3;CC$(a!?YfPj{E3ZW;R7B&{E}+a%X1jxfrB&FIsSY_GOnR zTa|i;!7Yv4LO#3hmph3=v>~=&p8-i)3{1po1mR-a!A;bZ=VsuE+)7a6`{Ey*<)k*> zugn9^B8R5_vRBpyO=O>6qig#t5){_OVyvXV1W{_qAka?|Q+{?bX=x%XQt^)7$XcYW zSNx=cBH@<|>;cOmq58h?UD6BNATZbSf894lEE4)hCd#o!#vQeh#uswELtj4Rs?$j0 zsq^ZLaX=?tjH6WZ3Ecs|LMR_E??$Gp_gYPHwQguxqMuilyRcz>Q_3t{m0cCl#D25l zRa_}7+RuQG8LGbHlYpm!ikr|W;_L?q8mOFQ&As*?*Db@V~q zYs^F#BH`C1R$fZAfy_bcOxUF+NXzhgS70e{$#XOgV}PyubpQJ(x)AAtmQDe}nCiI; zt00jh1+k_RgMz$tBufY38u2Y}uBq=fdRrZKyG{=#Y8ORG(CnXyQ+7*!D1*0xWoD0i z=1L@OPZlDdP@ituJJ+VRkIuf^X!`~moi%L#C2R*!6Y()JtuK7;>P^i%Ta@4HhSu6O zl^Jn=pjO0>Z#syF{)qn~<0z3`bk)8+p_|N~@d{p77V7VEU=&e3(tadEF)Wda@i6$! zZ|~8}?_Qff{w_lK>cN(@gF#;#n}lunA_$X_zBDA6x>=WY>ZkId^o||l=^<-rt^rHi z4Td{?zxvm#-%kc9EK!;^j-{{<+QqGG{6zD%0?20E?%KVTsCcX^9dW89A{kB6<=f)@9_9_hFfOO} z4O(bg6%?OA`ornKroa_>IDz;KQ9o`aMGwZHzGwD%N8Q{C!DXrlwrp>-^J3Sbuf^apc==Ed(whmHlGfH7uliBaP?a^%b>UJcb) z+m7vvH%jllkC)L2>y|NQ+sRAX3T^1W8RQzQ3y(H|Ulj2;nkhkIDNsUUs|5eFh8Pb~ zD29pDzWp&BPVDL$JxKCg@4hd`V35bF9dRpWe9h`47)Q!ew8WvFAShe{K2_TTr=T*k zvuk?fV#vhuC$vM)TpsM+XtJ#c^0A3Vc)at0o%eaIGl~8;-B_%CbjP zY>qiL^Ik6q;OGL1-3K|&j@1q)>zU>op56=-((+|eTxUKO>d`J=#20eytqu@umcSss z5!N|Gizw}s#=N(cv15c13&Xg{XZzpg-`1wn_|EsavkNrdC-)D2I> zKHnG1{jvH;cWp5G{niiV)1&h|T37_3mODxe8OtE67z7iK)JwvL=rdMgo3W54YqD@t z$|1W&td;!$XsMkuhIl;jT%Rb3>8<_&E!~hAk|BxMyXY{ zvu5LTi)&Azfna=m7}}M0T1j=%Zatj2axEhgZ!D|`cdsoH`7s97hcjz_g+HGbsQ>G< zFd}b_{W4hD@A*#DmWksMuF*K~ZVFD@h@>b=>e{P8=rG8LXeIRLeqn9ue%1Epc=)b2 zdc8*Q_W8#=cNl><1Ew=>9uK=Of_QB9zHY2uCr`O!#>slc;&I6_~Uqk>8p;&lez3GJO|$wFcH^BZ@dxDn>?;c<$XxXTC&zMgv;)0Kg(P! z%zcTw@6-SGgSoz&<92RNVVQn$d9=Er|LH21XUC~i_q+5SA5@4pCxV#NkKdc^n6$o6 zQ`SiPCWiul)_c=19*u@j9(_c2y4Wy;D%>~5>5e^8M;n72g!``dV?`uzPU&EuNNp># zMdx~L{laWc?+GN7vUo@q=GY5gyzXNN+1*KA*>!YwW}Zu!aN4kg#db99RF}{9Wd;F; zp{*`=irJQ@zT1Oi=&at0;fqj3o!Zb$Fi9x~pGS+3q~}dexT>g>y}o3BJl5d$rSX1D z*zrbDu|6xMuG-TetFGbGx5zZBSCohtgW`D!qs)c(zk8K$T0e0-{W&bFl8LwP5_Kj$!2ar&?K;*EIIf6#BwK?zoM7b{>qgKb8vBTt@mu|%^v1C ze6ik$-5V|8j0~M+ywG`U;S|ESJ!y`Jl(P4HkIFMtGC?u8U3sKobgILzLo^=^yLLxx zXmC+9zd`l?L2=LIvu7XmAt&uS4&C_9J$9N*RxQ~cOqtqh$yWDss!@AM=E=Ww(Pl7u zkQ#G56`tNH=R^c0<6DW^abAVyu;0=0uAp@ZEz%@ju1nTi+8htVQ9M?Qc{KqaxtprQke7AUi?+x@7p$$o%}6f&zvNQ%J)6LpLIk4y(Gwm z*Q;2oj>4n;p0aO=-8Io=qa!XMo!o@wi+2vghmk-!7NOtB?B%;E^l0rf7HU@h0ed8E ziNvjJM7-CwXgKkBI{ov|?ad08q_oyGWCQ(I4Uov7;Egf(=R|Guru2p9y?txgP`kzA z>GoA(3mxZ5s1>BfIKGRB^5~ssL)}*&QwyNuIW`QxU-$ipxFsda6pwc}IX4*eZ943k zUU}uOF|~uaQbe7SMbq(2ufYB~HcZAaIdxr;4n(O-@_&V8SLMhg4A3i?#1d(3hE@nQZ+f}_&H zIRObiLQ8M5Av4w0#owBBn7)jHXl37ucidk&FL2L;rod2idhhRaEuQ4fHeJ@IGn@I{ z#s_t)H&;$r@g7ZxCL^#xjg|FEA?-GmvBf*<7anz@A=gyJckuzU}o~-c-T&KY6G&&xpQm>eJL%FW9YL%)=_?9O+e~LsZ6}bGgPF zEPL_OPQHSwPt6G1z7&JJ6b_5u60vEvp?*^CG&-zADg6GH4cRMkWaj-sJ;hB3PLN?$ zqlkrm3DB2~7V(eCl78E=MU6kMpc$6PVymIZ2=(*m$G z(sn6gdF5$v9XwXdOz%8y47Dy_t)v8GkRxyDBI5lx%pBLJ_>t@+&V2R&x$I%%IsuiV zA}ejB+%MoB&PnbaDaliw?(d*=U+IuiDtw@R_i#aAW{>09f@`$228u?VLb$(*q?qjc zsNx(ZbX|UM^)?jLdasaNpP|ENChrti}_CYBf0v?(0Y%%knmm~hLiGJE?FT}So3y1HkxVxqngjGq90HT8k;gY- z6#~Zs9Dm13_wGVp%#~0m8rjFk63M2kmV2d<3ovBdO>iJsIK^>f7r(egcxRy;FVti* z-);oUqE0(=DOpiWgyX%I9v$oE8@t(Ui+8j*Cqn+C-!ewCj!EEd(N*jn1FSg8Nozz4 zH&ir~0vbZA+6H*f{Y$W`Q0}&8>oGn4%FwM3#EO3*&JMDb@$1A+#05;JbZ_Ls%+Y(e zJ)?^c4HX4mO;%IhP`Xm^q-Il9jq4#g`TbLk|G@$ngIbGPDE#*+RY8m8ons7lV@?vE zZF|;ACBdD49ce4FswO@>fUBM{bn}(45!Bd}2#2?v;^_t=Bq_9N)PAJ0#MwLF4AcHY zslsUGii7$UD>93W1Oq~;8vU<3A8XjQleqjt(hfdDfmYgxkoWZtk;wG_Hw)mUY^`nW zWT*J1iE{2X*Gq9Yp4BkXrU}2b9zl8H7sALURm-0x`B(+Lo8P#U82)@0tkg&v)l}TY z-D*&Df??m%VRusTHFpPYu%!k1KZl<{;uCmQGeG`-0M|29k;aj!O2 z%(`BI^H%BK+T9<{-y|v1n0@PfDdi{+n``#Po6YdW_s+C?$T#*TI7(0;xkn~2V}C1a zBZy`)biTYJZ*|klry+N=o{%wHHa&j8S`xj8f$X@G_p3os8Eto>ioYhtZXMeW6U z{YaZFKC;A{RK_N3gyYEtQ3anr;{ChFX!chbB)%U~Ms_hCSg8;(&)@8iM33*WpgQgI zZ{-I|zO7dlWO6#sLRI*{82^bLYgNP_r>)K@R{uloYTL(i7w@_NH(^VnfBI8aGuWAt-uSoqDYgTuI5(_Ke`q^+SG1jPDh(RRB9NeZuTKGl@nDQlB8F^Yyb!89ND_o#N*Y>Slk0d)0D`q=SGYPRgyp+J`9FAd)!+XL zQHE@0EZ7MBm2LW!#&yTg~U z{+GRvuDn~7PIC38GCg5Eg-7=E*4HZLTiTN?Qdf{n3@o`xCmMTwcrOs z7TPXJZ3MC_U^P!C5VovnRI_>BsGDOBy6GP>db zsVTmUu66GNnE74(n-^ruRiQ;*+sEa8q&YeZZby$p{TaLWlNiTuYMr&8-nna2HDxRN~2Rrm!J!58qGpuN2g)#+8cB zb&NBunf3Y($AXm@IJ8eb&7>O9x_hH($;-+yT@%;UIf!N4?l6ks37;c}<50Yunqs3%w)X>GUYwV^tI)>Ub&H2p0WUty-ts8mM-W8%3mR`GJ{Rn8PIAzw$1Nz%$Fmrd)Umoy%65>B+jZU= zZ5}mAQ%IzD^*xj|3w6UBbkT=n=N-Z0B$_9xi~KYtONsGV|Ai=JB;M`hHoc$({W7T3 z*_A2UT={WC5aWBKEi_6}pv3ocAqL>7t$#|Xh+}FQ8_ER$v zI;=bY{FLZQXK zaqqvIrWdlgKiYz58JDnD?q|*i819oD^|2_6u{$co7GzT%k2b>6N)_>xWe$jj6q>ej zt!?emb-F}i%RC1Drqng=9%IQ2>3$`)&WnRD5IFb(d->EkYGU`R+M2_`~8k!8u>lgnf80^nz zN(QnnEjV2NJ@vYXsnb7n+;b3~$PruNEEw!VeNSY`SWCY03G zh$iQ2!8l41I4h;q#VCp*)lukL7tK>;8^;g9p4J<0gpO8zMSwUgmRqY+NL%;9Ha|t` zlTDi%t?6>*F9&FRZ#9_0TVuz2ye92m;Wq)y}Y4#6h6 zSy%Ql945xC;`H|?&B-=~**%%miS?llI7`UGRH~HI1@r;-PmG1Sv%j?@!2dqFlb)E2 z&bo3ehiV=weQM54C{7UZ!`Fd7NLKQxOK*ra3l8&RU~aS}XE2iEe{I-wO$_FP%Z9_a zQF)iSz;64iilr;=eGcNVLW4;In@i*34X^h;D*^CT&)wx;*uXTNA zuZU^zZ{2v`ux5N*gbTZN3nn!sTmJ6*oQJR4V?K#w|3utcXzBMwJ>#43EHKtk-o~JK_j=CST9#&Y~L-P0n?8^gIK_7(yFMlzcJxrH3@Tl zHFQyC(~fTY*qvrLXE>nsNeZ`SRkfM!DfQFll{TShzd|XOym3jMe5yz2w=3yd8YXd8&=Y{8=j%BtR zJGSM$TS_PV5Dx@gR4DpliP_7<6HSN;lab4M(Y|cgc~;NW0M+`w+Sl7#5~Ua&&+Gk+ z9V>rAztIA|X!*Iw+IT_G!-eXfKQI;e6_{V;^17}4h&Wu;%@Vwb2 zw`<$M@k1z!{N2Yi`2fBrT#LF)GQr8sv2b}+L?ua?IYJOArq%5xtA;Sg|AH&Xk=jtP zxY*W)-D=2>CVaWwUC<7+`Orp5G?pDCQ_qs5`Mckni`$9%5Pz?8t8H9T!Z6WS3ONt< z<}&V1wNs2VOPGTi}{e>S1HL|z;X7yEKT&hHzAQ?iJ~Si;mRUT@vNTDR4fp;o3SF;M{}EKVi{n zqRTAV+IMk>Sv?s#C52zIa}jl1xq5ZgOBI{_{wGiuM_MEMmQ~9hF!L7~#~ROd?ioD+ zRUBEj&YA~d*}ci#HC%hW;eIHYw;pvahb!Z|wwgh8ewUavZW`|90vA}HoXKm&NT>Ph*F4g*kv|5bv%pLh1i)0kat>D92 z%qCDNJ!R+0^>Mx)gRu$jc>nz5iB2X%gI9EIXVBp;;ZLinGxsKZCJtT(E77Y+a;FokO5WFH8jbp=7&rTzaIXfo6ZdJ|QoN=c73YJ_0(g$3HUW z?CK_|7{!r7`;5)eT|X`Q7Ed3wm7C<%&2{~pO`grP_?!!o@^shxX7Y}PpgnP}>3_#0 z|ISE}hX@mhYuikUwWyjXL*rNLM9H;AYR&S)uy)aH`%B=-d#l-PyndV3e13-u2=f|) z{#mMtm;Z%Zhhf9zPNPO|i`#i}M|^V_vpzbwhBmC05h@C2Hn>;G@U%(hLee%{c^78S z8E}0+>AvOcgclL{ZTRse)n)3@Tj}SqWr3S%C0*UZPp8j1i=lJ&gWB*&et7T7)^fP> zm>Z#TId$KxHtO>9WfCrWeEmk-LY#JCEI0Uzz@K|e z>!J8vqsoY?Dmt~G5|wWOJ@U59HV*Wa@v0yb8cCm6!zW4r^;W*Cg0L}s2xT9!*Qk1i zpGVW`O8BLIVcQ(0EkFGsIl;+utJJ5)I<57iR(JY3+19kLr+S1<^Vi?52l!2gL)yCf zd&a;;162Xe+fF+x<;tZ%=edi)X_|A;Gbk9|--64Y*CLLchHb|1AT@rEs{88~gx zv=_rqMc7e%;BvfOTTB9Y7qRu&_rHDUM9OS+Au{l`C&*nu#=7tNK9)aY=thI;@GI~r z20EGs>f}QJ?aiHt|5G-MkUcoBelsr@Aub^)-O?AW{UHBcxXYtO7I~U}CPoASup^7N zUf+++is#(f`ArL{njj-HBxHXbPd#_19CK*Ck^RrHv?$HQu6+7(*K4%Ps#raO7c|Fu+a|K~rR_L+ zZc{8ty8;!4Jb!GcU_`+FF$`(x{@*Nq;;NF90gKp1? zf8EBYh6wCKSpMllWM0$7VHbCp4yZ56^nFMt?7)wi{G+1D)NylnAJqIE|7yx!@8kI= zsp`1G)u2Eq-HUWe>N@j52!L0yTEA1rCfW!?$v8ekfp{mq*j&L(#!83x%?KEFzcq{t zOVp5)`1$M4g_HY#rFmN3Xk#?LGeVdw$6iDah9hUqN_s@+uO&Yn8oS|HSX~-h?A-An z!k0hLm0yopMjNOOwoi*upMV|Y6WHq_Gds)-j@Fc!3_7H{b?CqHKyKE_7*uqUlcBlG z+0+=nS$`FCpD%~Yv?D}N$si%(PPfyT{ER<9dWpZPgiTd8YU`;qoczn;G@1$?PcH_G z2oAahUsy!Wxt@DFD1%mrH9qsW2g0@yb?`JaM1xZ>VnOQ2OqWJ$_rP@Ic-#EqthW;>Yhb622o?1IGK$2s&1#ufHN zH*gu09{Jdw)UG=E`aA*Dwh(if47_|I0)ueedyD33sv8~cdwqAhaWXi{hxfT$4M;lSCs-3Nd4zB2Mo7+|_( zS>B?+?Nm(IeZ{6y&ORP#_xKdnxJJ{?lC}66Df>&e8V7A~%arN`JR`ura%$&~F=QP- zzB~55*+|LQAHTK=62E4b$*H{CNfmWtPjzxm%oNpz zMV96kvpl|-Y7Q_}J z;c|R_*(@dsd5VL!Q~0O^N&41Zp@ZZfO4Op9??XX1LE2Mq&60C0K1Kz)?762O1>uo& zN~jVg|3*}>ydpJ9u~3srz@`r%aXmzQMSdW%J16cG|oVsvz74#W*-=6C~7+WA|&s^2q4 zDh}XuGtH4MdN6ogUf3~pNBPaUL^bEkf-Ed6sCEz`^vg5bU6A0Sv{9se=n&%7o4(|4 z(qQ&ke2bR4YtAjAc?$3BeF)FD#$obsxs%#*gY`A~35&4rsK(XZpCvN@vAKDeo*d@x zJ)M-j^0E9Wi2Q&@`K#N2LIk9~m28#87Aq!P1XPhZVvem#^%>jw{$PaTat>}qGirfh zFJirMHUO}$R;&Th;*`Qi znzJ5e_SV|y_9&|n zNJ1;$6A)+SN;Cdk3MFug#nhCy zDks0|EaowBR66B5epL=;)CpPyvUYX-!d&Bj%)(`=Vɰ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 a|Fi4$b@u 10)] + print(f"Total number of data: {len(df)}") + captions = df['caption_no_color'].tolist() + num_examples = len(captions) + bs = 32 + questions = [] + answers = [] + extractive = [] + for i in tqdm(range(0,num_examples, bs)): + try: + input_text = [f"Generate a potential answer word from the following text: {c} " for c in captions[i:i+bs]] + answers.extend(get_output(input_text, input_len=180, output_len=128)) + input_text = [f"Generate a question for the answer using the context. Context: {c} Answer: {q} Question:" for c,q in zip(captions[i:i+bs], answers[i:i+bs])] + questions.extend(get_output(input_text, input_len=180, output_len=30)) + extractive.extend([fuzz.partial_ratio(a,c)>90 for c,a in zip(captions[i:i+bs], answers[i:i+bs])]) + except: + from pdb import set_trace; set_trace() + + df['question'] = questions + df['answer'] = answers + df['extractive'] = extractive + print(f'Number extractive: {len([e for e in extractive if e])}') + df.to_csv(os.path.join(output_dir,f'/Cap3D_automated_Objaverse_no_color_qa_shard_{shard}_{split}.csv')) + +if mode == 'rtc' or mode == 'all': + df = pd.read_csv(os.path.join(output_dir, f'Cap3D_automated_Objaverse_no_color_qa_shard_{shard}_{split}.csv')).dropna() + print(f"Total number of data: {len(df)}") + captions = df['caption_no_color'].tolist() + num_examples = len(captions) + bs = 32 + questions = df['question'].tolist() + answers =df['answer'].tolist() + correct = [] + for i in tqdm(range(0,num_examples, bs)): + try: + input_text = [f"Answer the question given the context. Context: {c} Question: {q} Answer:" for c,q in zip(captions[i:i+bs], questions[i:i+bs])] + outputs = get_output(input_text, input_len=256, output_len=20) + correct.extend([fuzz.partial_ratio(a,c)>90 for c,a in zip(outputs, answers[i:i+bs])]) + except: + from pdb import set_trace; set_trace() + + df['correct'] = correct + print(f'Number correct: {len([e for e in correct if e])}') + df.to_csv(os.path.join(output_dir, f'/Cap3D_automated_Objaverse_no_color_qa_correct_shard_{shard}_{split}.csv')) + + df[df['extractive'] == True][df['correct'] == True].to_csv(os.path.join(output_dir, f'/CAP3DQA_final_shard_{shard}_{split}.csv')) \ No newline at end of file diff --git a/projects/xinstructblip/data_aug/audio_qa_data_generation.py b/projects/xinstructblip/data_aug/audio_qa_data_generation.py new file mode 100644 index 000000000..1783105ec --- /dev/null +++ b/projects/xinstructblip/data_aug/audio_qa_data_generation.py @@ -0,0 +1,86 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +from fuzzywuzzy import fuzz +import torch +from transformers import T5Tokenizer, T5ForConditionalGeneration +from tqdm import tqdm +import argparse +import pandas as pd +import torch +import os +from transformers import T5Tokenizer, T5ForConditionalGeneration + +parser = argparse.ArgumentParser(description="") +parser.add_argument("--mode", type=str, help=['qa_gen', 'rtc']) +parser.add_argument("--split", type=str, help=['val', 'train']) +parser.add_argument("--original_data_file", type=str) + +args = parser.parse_args() +split = args.split +mode = args.mode + +original_data_file = #f'/export/home/audio_datasets/audiocaps/video/AUDIOCAPS_32000Hz/{split}.csv' +output_dir = "./audio_qa_data" +os.makedirs(output_dir, exist_ok=True) + +## Load Model +tokenizer = T5Tokenizer.from_pretrained("google/flan-t5-xxl") +model = T5ForConditionalGeneration.from_pretrained("google/flan-t5-xxl", device_map="auto", torch_dtype=torch.float16) + +def get_output(input_text, input_len=128, output_len=128): + input_ids = torch.cat([tokenizer(inp, padding='max_length', max_length=input_len, return_tensors="pt").input_ids.to("cuda") for inp in input_text]) + outputs = model.generate(input_ids, max_length=output_len) + outputs = tokenizer.batch_decode(outputs, skip_special_tokens=True) + return outputs + +if mode == 'qa_gen': + df = pd.read_csv(original_data_file) + print(f"Total number of data: {len(df)}") + captions = df['caption'].tolist() + num_examples = len(captions) + bs = 32 + questions = [] + answers = [] + extractive = [] + for i in tqdm(range(0,num_examples, bs)): + try: + input_text = [f"Generate a potential answer word from the following text: {c} " for c in captions[i:i+bs]] + answers.extend(get_output(input_text, input_len=128, output_len=128)) + input_text = [f"Generate a question for the answer using the context. Context: {c} Answer: {q} Question:" for c,q in zip(captions[i:i+bs], answers[i:i+bs])] + questions.extend(get_output(input_text, input_len=128, output_len=128)) + extractive.extend([fuzz.partial_ratio(a,c)>90 for c,a in zip(captions[i:i+bs], answers[i:i+bs])]) + except: + from pdb import set_trace; set_trace() + + df['question'] = questions + df['answer'] = answers + df['extractive'] = extractive + print(f'Number extractive: {len([e for e in extractive if e])}') + df.to_csv(os.path.join(output_dir, f'/audio_qa_{split}.csv')) + +if mode == 'rtc': + df = pd.read_csv(os.path.join(output_dir, f'/audio_qa_{split}.csv')) + print(f"Total number of data: {len(df)}") + captions = df['caption'].tolist() + questions = df['question'].tolist() + answers = df['answer'].tolist() + num_examples = len(captions) + bs = 16 + correct = [] + for i in tqdm(range(0,num_examples, bs)): + try: + input_text = [f"Answer the question given the context. Context: {c} Question: {q} Answer:" for c,q in zip(captions[i:i+bs], questions[i:i+bs])] + outputs = get_output(input_text, input_len=256, output_len=20) + correct.extend([fuzz.partial_ratio(a,c)>90 for c,a in zip(outputs, answers[i:i+bs])]) + except: + from pdb import set_trace; set_trace() + + df['correct'] = correct + print(f'Number extractive: {len([e for e in correct if e])}') + df.to_csv(os.path.join(output_dir, f'/audio_qa_correct_{split}.csv')) + + df[df['correct'] == True][df['extractive'] == True].to_csv(os.path.join(output_dir,f'audio_qa_final_{split}.csv')) \ No newline at end of file diff --git a/projects/xinstructblip/demo/configs/vicuna13b.yaml b/projects/xinstructblip/demo/configs/vicuna13b.yaml new file mode 100644 index 000000000..3fe9004f4 --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna13b.yaml @@ -0,0 +1,77 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna13b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + add_space: False + remove_start: False \ No newline at end of file diff --git a/projects/xinstructblip/demo/configs/vicuna7b.yaml b/projects/xinstructblip/demo/configs/vicuna7b.yaml new file mode 100644 index 000000000..a5275f849 --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b.yaml @@ -0,0 +1,78 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image"Ã¥ + load_ln_type_video: "video" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna7b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + special_qformer_input_prompt: "a short description" + prefix: "" + postfix: "" + add_space: False + remove_start: True diff --git a/projects/xinstructblip/demo/configs/vicuna7b_blip_init.yaml b/projects/xinstructblip/demo/configs/vicuna7b_blip_init.yaml new file mode 100644 index 000000000..618baedbd --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b_blip_init.yaml @@ -0,0 +1,74 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_attention_image_qformer: False + load_attention_pc_qformer: False + load_attention_video_qformer: False + load_attention_audio_qformer: False + load_ln_type_image: "" + load_ln_type_video: "" + load_ln_type_audio: "" + load_qformer_type_image: "" + load_qformer_type_pc: "" + load_qformer_type_video: "" + load_qformer_type_audio: "" + load_projection_image: False + load_projection_pc: False + load_projection_video: False + load_projection_audio: False + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna13b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" diff --git a/projects/xinstructblip/demo/configs/vicuna7b_no_init.yaml b/projects/xinstructblip/demo/configs/vicuna7b_no_init.yaml new file mode 100644 index 000000000..cb0dc4d78 --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b_no_init.yaml @@ -0,0 +1,74 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + load_finetuned: False + finetuned: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_no_init.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer_no_init.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_no_init.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna7b" + prompt: "" + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" diff --git a/projects/xinstructblip/demo/configs/vicuna7b_nocue.yaml b/projects/xinstructblip/demo/configs/vicuna7b_nocue.yaml new file mode 100644 index 000000000..19daf722c --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b_nocue.yaml @@ -0,0 +1,75 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/image_qformer.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/pc_qformer_last.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/video_qformer.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b_nocue/audio_qformer.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna7b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: False + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" diff --git a/projects/xinstructblip/demo/configs/vicuna7b_projection.yaml b/projects/xinstructblip/demo/configs/vicuna7b_projection.yaml new file mode 100644 index 000000000..aacb9b87a --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b_projection.yaml @@ -0,0 +1,83 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: False + pretrained_pc_qformer: False + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer.pth + pretrained_audio_qformer: False + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: False + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: False + load_projection_video: True + load_projection_audio: False + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna7b" + prompt: "describe the 3d model" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: False + llm_text_input: True + modalities : ["audio","pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" + projection_path_audio: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/audio_qformer_linear.pth + projection_path_pc: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/pc_qformer_linear.pth + projection_path_image: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/linear_projection_7b/image_qformer_linear.pth + projection_only_audio: True + projection_only_pc: True + projection_only_image: True + diff --git a/projects/xinstructblip/demo/configs/vicuna7b_rand.yaml b/projects/xinstructblip/demo/configs/vicuna7b_rand.yaml new file mode 100644 index 000000000..6b4a29ee0 --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b_rand.yaml @@ -0,0 +1,75 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna13b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: null + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: null + pretrained_pc_qformer: null + pretrained_video_qformer: null + pretrained_audio_qformer: null + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-7b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["image", "video", "audio", "pc"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "" + postfix: "" diff --git a/projects/xinstructblip/demo/configs/vicuna7b_v2.yaml b/projects/xinstructblip/demo/configs/vicuna7b_v2.yaml new file mode 100644 index 000000000..5da7aea30 --- /dev/null +++ b/projects/xinstructblip/demo/configs/vicuna7b_v2.yaml @@ -0,0 +1,78 @@ + # Copyright (c) 2023, salesforce.com, inc. + # All rights reserved. + # SPDX-License-Identifier: BSD-3-Clause + # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause + + +model: + arch: blip2_vicuna_xinstruct + model_type: vicuna7b + load_pretrained: True + pretrained: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + load_finetuned: False + finetuned: "" + stage1_url_or_filename: https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/blip2_pretrained.pth + image_model: "eva_clip_g" + pc_model: "ulip2_pointbert" + video_model: "eva_clip_g" + audio_model: "beats" + pretrained_image_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/image_qformer_improved.pth + pretrained_pc_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/pc_qformer_improved.pth + pretrained_video_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/video_qformer_improved.pth + pretrained_audio_qformer: https://storage.googleapis.com/sfr-xinstructblip-data-research/model/xinstructblip_checkpoints/vicuna7b/audio_qformer_improved.pth + load_attention_image_qformer: True + load_attention_pc_qformer: True + load_attention_video_qformer: True + load_attention_audio_qformer: True + load_ln_type_image: "image" + load_ln_type_video: "video" + load_ln_type_pc: "pc" + load_ln_type_audio: "audio" + load_qformer_type_image: "image" + load_qformer_type_pc: "pc" + load_qformer_type_video: "video" + load_qformer_type_audio: "audio" + load_projection_image: True + load_projection_pc: True + load_projection_video: True + load_projection_audio: True + load_projection_type_image: "image" + load_projection_type_pc: "pc" + load_projection_type_video: "video" + load_projection_type_audio: "audio" + image_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + pc_encoder_kwargs : {} + video_encoder_kwargs : {"image_size": 224, "drop_path_rate": 0, "use_grad_checkpoint": False} + audio_encoder_kwargs : {} + image_precision: "fp16" + pc_precision: "fp16" + video_precision: "fp16" + audio_precision: "fp16" + freeze_image: True + freeze_pc: True + freeze_video: True + freeze_audio: True + num_query_token: 32 + llm_model: "/path/to/vicuna-7b" + prompt: "" + max_txt_len: 128 + max_output_txt_len: 256 + apply_lemmatizer: False + num_few_shot_examples: 0 + few_shot_prob: 0 + qformer_text_input: True + llm_text_input: True + modalities : ["audio", "video", "pc", "image"] + use_cues: True + shared_qformer: False + pretrained_shared_qformer: Null + load_attention_shared_qformer: False + load_qformer_type_shared: "" + load_projection_shared: False + load_projection_type_shaped: "" + load_ln_type_shared: "" + shared_qformer_num_features: 512 + prefix: "USER: " + postfix: "\nASSISTANT:" + predict_with_gen: False + clean_tokenization: True \ No newline at end of file diff --git a/projects/xinstructblip/demo/demo.ipynb b/projects/xinstructblip/demo/demo.ipynb new file mode 100644 index 000000000..bbd55848a --- /dev/null +++ b/projects/xinstructblip/demo/demo.ipynb @@ -0,0 +1,393 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Copyright statement" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + " # Copyright (c) 2023, salesforce.com, inc.\n", + " # All rights reserved.\n", + " # SPDX-License-Identifier: BSD-3-Clause\n", + " # For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# X-InstructBLIP Demo\n", + "\n", + "Before proceeding **download the Vicuna v1.1 model weights** following the instructions [here](https://github.com/lm-sys/FastChat). " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "LLM_MODEL_PATH = \"\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## SETUP THE ENVIRONMENT\n", + "!git clone https://github.com/artemisp/LAVIS-XInstructBLIP.git\n", + "!cd LAVIS-XInstructBLIP && python -m pip install -e .\n", + "!python -m pip install --upgrade https://github.com/unlimblue/KNN_CUDA/releases/download/0.2/KNN_CUDA-0.2-py3-none-any.whl\n", + "!wget -P /usr/bin https://github.com/unlimblue/KNN_CUDA/raw/master/ninja" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Imports" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import gradio as gr\n", + "import torch\n", + "import argparse\n", + "import numpy as np\n", + "from omegaconf import OmegaConf\n", + "from lavis.common.registry import registry\n", + "import random\n", + "\n", + "import trimesh\n", + "import pyvista as pv" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Prelim\n", + "Set up seeds for reproducibility and identify device type. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def setup_seeds(seed=42):\n", + " seed = seed\n", + "\n", + " random.seed(seed)\n", + " np.random.seed(seed)\n", + " torch.manual_seed(seed)\n", + "\n", + "device = torch.device(\"cuda\") if torch.cuda.is_available() else \"cpu\"\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 3D file to point cloud" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Load Raw Files\n", + "\n", + "#https://github.com/mikedh/trimesh/issues/507\n", + "def as_mesh(scene_or_mesh):\n", + " \"\"\"\n", + " Convert a possible scene to a mesh.\n", + "\n", + " If conversion occurs, the returned mesh has only vertex and face data.\n", + " \"\"\"\n", + " if isinstance(scene_or_mesh, trimesh.Scene):\n", + " if len(scene_or_mesh.geometry) == 0:\n", + " mesh = None # empty scene\n", + " else:\n", + " # we lose texture information here\n", + " mesh = trimesh.util.concatenate(\n", + " tuple(trimesh.Trimesh(vertices=g.vertices, faces=g.faces)\n", + " for g in scene_or_mesh.geometry.values()))\n", + " else:\n", + " assert(isinstance(scene_or_mesh, trimesh.Trimesh))\n", + " mesh = scene_or_mesh\n", + " return mesh\n", + "\n", + "def convert_mesh_to_numpy(mesh_file, npoints=8192):\n", + " print(\"Loading point cloud.\")\n", + " # Load the mesh using trimesh\n", + " mesh = trimesh.load_mesh(mesh_file, force='mesh')\n", + " mesh = as_mesh(mesh)\n", + "\n", + " # Subsample or upsample the mesh to have exactly npoints points\n", + " vertices = mesh.vertices\n", + " num_points = len(vertices)\n", + " if num_points < npoints:\n", + " # Upsample the mesh by repeating vertices\n", + " repetitions = int(np.ceil(npoints / num_points))\n", + " vertices = np.repeat(vertices, repetitions, axis=0)[:npoints]\n", + " elif num_points > npoints:\n", + " # Subsample the mesh to the desired number of points\n", + " # indices = trimesh.sample.sample_surface(mesh, npoints)[0]\n", + " vertices = mesh.vertices#[indices]\n", + " print(\"Point cloud loaded..\")\n", + " \n", + " return vertices\n", + "\n", + "\n", + "\n", + "def load_mesh(mesh_file_name):\n", + " return mesh_file_name" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Load Preprocessors" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## Load Preprocessors\n", + "from lavis.processors.ulip_processors import ULIPPCProcessor\n", + "from lavis.processors.clip_processors import ClipImageEvalProcessor\n", + "from lavis.processors.audio_processors import BeatsAudioProcessor\n", + "from lavis.processors.alpro_processors import AlproVideoEvalProcessor\n", + "\n", + "pc_pocessor = ULIPPCProcessor()\n", + "image_pocessor = ClipImageEvalProcessor()\n", + "audio_processor = BeatsAudioProcessor(model_name='iter3', sampling_rate=16000, n_frames=2, is_eval=False, frame_length=512)\n", + "video_processor = AlproVideoEvalProcessor(n_frms=4, image_size=224)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Load Model from LAVIS" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from lavis.models.blip2_models.blip2_vicuna_xinstruct import Blip2VicunaXInstruct\n", + "model = \"vicuna7b_v2\"\n", + "cfg_path = {\n", + " \"vicuna13b\": './configs/vicuna13b.yaml',\n", + " \"vicuna7b\": './configs/vicuna7b.yaml',\n", + " \"no_init\": './configs/vicuna7b_no_init.yaml',\n", + " \"projection\": './configs/vicuna7b_projection.yaml'\n", + " \"vicuna7b_v2\": './configs/vicuna7b_v2.yaml'\n", + " }\n", + " \n", + "config = OmegaConf.load(cfg_path[args.model])\n", + "config.get(\"model\", None).llm_model = LLM_MODEL_PATH\n", + "print(cfg_path[args.model])\n", + "print('Loading model...')\n", + "model_cls = registry.get_model_class(config.get(\"model\", None).arch)\n", + "model = model_cls.from_config(config.get(\"model\", None))\n", + "model.to(device)\n", + "print('Loading model done!')\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Inference Function" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def inference(image, point_cloud, audio, video, prompt, qformer_prompt, min_len, max_len, beam_size, len_penalty, repetition_penalty, top_p, decoding_method):\n", + " if qformer_prompt == \"\" or qformer_prompt == None:\n", + " qformer_prompt = prompt\n", + " use_nucleus_sampling = decoding_method == \"Nucleus sampling\"\n", + " print(image, point_cloud, audio, video, prompt, min_len, max_len, beam_size, len_penalty, repetition_penalty, top_p, use_nucleus_sampling)\n", + " if image is not None:\n", + " image = image_pocessor(image).unsqueeze(0).to(device)\n", + " if point_cloud is not None:\n", + " point_cloud = convert_mesh_to_numpy(point_cloud)\n", + " point_cloud = pc_pocessor(point_cloud).unsqueeze(0).to(device)\n", + " if audio is not None:\n", + " audio = audio_processor(audio).unsqueeze(0).to(device)\n", + " if video is not None:\n", + " video = video_processor(video).unsqueeze(0).to(device)\n", + " \n", + " samples = {\"prompt\": prompt}\n", + " if image is not None:\n", + " samples[\"image\"] = image\n", + " if point_cloud is not None:\n", + " samples[\"pc\"] = point_cloud\n", + " if audio is not None:\n", + " samples[\"audio\"] = audio\n", + " if video is not None:\n", + " samples[\"video\"] = video\n", + "\n", + " output = model.generate(\n", + " samples,\n", + " length_penalty=float(len_penalty),\n", + " repetition_penalty=float(repetition_penalty),\n", + " num_beams=beam_size,\n", + " max_length=max_len,\n", + " min_length=min_len,\n", + " top_p=top_p,\n", + " use_nucleus_sampling=use_nucleus_sampling,\n", + " special_qformer_input_prompt=qformer_prompt\n", + " )\n", + "\n", + " return output[0]\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Demo" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "\n", + "\n", + "setup_seeds()\n", + "\n", + "image_input = gr.Image(type=\"pil\")\n", + "\n", + "pc_input = gr.Model3D()\n", + "\n", + "audio_input = gr.Audio(sources=[\"upload\"], type=\"filepath\")\n", + "\n", + "video_input = gr.Video()\n", + "\n", + "min_len = gr.Slider(\n", + " minimum=1,\n", + " maximum=50,\n", + " value=1,\n", + " step=1,\n", + " interactive=True,\n", + " label=\"Min Length\",\n", + ")\n", + "\n", + "max_len = gr.Slider(\n", + " minimum=10,\n", + " maximum=500,\n", + " value=250,\n", + " step=5,\n", + " interactive=True,\n", + " label=\"Max Length\",\n", + ")\n", + "\n", + "sampling = gr.Radio(\n", + " choices=[\"Beam search\", \"Nucleus sampling\"],\n", + " value=\"Beam search\",\n", + " label=\"Text Decoding Method\",\n", + " interactive=True,\n", + ")\n", + "\n", + "top_p = gr.Slider(\n", + " minimum=0.5,\n", + " maximum=1.0,\n", + " value=0.9,\n", + " step=0.1,\n", + " interactive=True,\n", + " label=\"Top p\",\n", + ")\n", + "\n", + "beam_size = gr.Slider(\n", + " minimum=1,\n", + " maximum=10,\n", + " value=5,\n", + " step=1,\n", + " interactive=True,\n", + " label=\"Beam Size\",\n", + ")\n", + "\n", + "len_penalty = gr.Slider(\n", + " minimum=-1,\n", + " maximum=2,\n", + " value=1,\n", + " step=0.2,\n", + " interactive=True,\n", + " label=\"Length Penalty\",\n", + ")\n", + "\n", + "repetition_penalty = gr.Slider(\n", + " minimum=0.,\n", + " maximum=3,\n", + " value=1.5,\n", + " step=0.2,\n", + " interactive=True,\n", + " label=\"Repetition Penalty\",\n", + ")\n", + "\n", + "\n", + "prompt_textbox = gr.Textbox(label=\"Prompt:\", placeholder=\"prompt\", lines=2)\n", + "qformer_prompt_textbox = gr.Textbox(label=\"Qformer Prompt:\", placeholder=\"prompt\", lines=2)\n", + "\n", + "iface = gr.Interface(\n", + " fn=inference,\n", + " inputs=[image_input, pc_input, audio_input, video_input, prompt_textbox, qformer_prompt_textbox, min_len, max_len, beam_size, len_penalty, repetition_penalty, top_p, sampling],\n", + " outputs=\"text\",\n", + " allow_flagging=\"never\",\n", + " examples=examples\n", + ")\n", + "\n", + "iface.launch(share=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/projects/xinstructblip/demo/examples/audio/110714_wren.wav b/projects/xinstructblip/demo/examples/audio/110714_wren.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd5dbe39b03247449f301220127fa755df2f8fb1 GIT binary patch literal 1731222 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%0DO4d`G1zpMqu*_zW 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 _nlt zdry)0sp=!#&A$=4q@U+QY07WhzF@Lw;cxe8JT!lUmHZh@)&bFM@UtyZtDu5dBMK8x zEz(c24(H4f_dbo^;)K!AK!nv-9mTeg{eBpVn(7@7v4`j3*L%FA?Xun9d=mz(5tlJ{HZi1Jw_I^v`h zue&g#nKH;za;vkt^!1Ej&z;4?cZiYengiC0dz)ixdy0i_u+7zC^Pgx&b~)!p*rC&}B)ufdo%2(H5Tox z9HSV9b+xN`()?Bjf7(u^uVrxXgPa}Xq2W0+Byq0SXI{O{?Jv>r^@Q73mRUA(Hj8=j zLIuP+=FW|BvU&FXrtQ^tbOlwZ`^udS`}n&+stjh0+3u9j!QENVev4rf`idVrifdmt z*YDROa0^yALsa=8#^OP7YnoX-QRMfId9(=Lz&Zyp80TxK9=07%S=_pHhfHgpmGM_u zPCv0|rka%t9bM4Rgx-B&JzY&d*3HN`fsqb9F3vFR!6NJCG#z^mYwF3Ep@FP79#i`^Po`=K^-1}hBOr01q9_;znO0J zpG99AC4v|RQyN6u@T4eWCHDO@RpdSsd5ofAOr$}Gw$5f^H1nI%n zCq8owG5kSob&shm9(mYyVnkj$pvUz^iXlR*FXnnQQfD|+e*Rh9R@#0>@@uaX1=X~z zg`%#0_WpnURdz?*lVQ96v)$byi{N!^$iI03zSEkH@eI6XiB4-3vF@R6XTU$|inG>; z;8v&}yjrZ;9v^W{{N2S>3=wu0@j_*;<50n_v8VPKRr%)ls7yami;AfX^rkaZY9l{$ zONdlu*xqu;-VNg3<*w6NXZ4Y@I3rfx2~nR((OjDDwJl`(fF3SaD1?LBJ4CZTMk;TQ zgR-5X(kVr8{jj6C%RRhDwEAwuNA;|)@A6&TE;}gUc+a`dkJwKI5#}`a;8PXJ=lG9v zkf(Dnw8IfELT$0%I+)x!(P7v^15Vh+P`e%e>rs*TY>3>A*qCh0NB-Q!9OY9W=}qMd z6=e~}@IRkMILx@KB!E`S0miJeHhMa8pe5bS^=hbm@W zG74st&G?Tup>q0o$n~EpWj(IH{70!Dsj4-Y-v38kP@*qx_K|$C*u^fo)+b+lRGqEW zn3&&nr0)z9ugysir_R_BO8q^msXfMJu*F9!KhII;sxA$G6m|4MxcU>0ph4Q{)N5WF z(!NUjMBTGe>Rhdca(B>WeoE>%$8fv*~vTMhSbda>h$`sYvlSM>b3b9>Ldey;tw_y4PK{-6JDJfGrK{=x`XYr=&N7iQ}r z^N6}=b@Z2C#yv48b@s&~uICPpi`>+8YMpg-25<9)1fN4Id#;KJIp8QB$OvAMajLal zpiS$*^AVr%f#XU`E1>$_@bnmNsC1owHeLEwkGH=re@EHg7XR_Sstt$zycc(sNtwSI zBd~{4r4gsf9~m_+?Z|jRO|`f2E+?@qEh*M}t86wVV-T;(Wc#k_j^(B0OP`-MJpBX5 z^gp%Jwo%39VPpay^Q=k+TU1_Hzzeo0f-(=n_e{JrOzpH0wpQKOzF41@7?nMj_FgVY z>pqM^??U$CoE_N9(Ggs^srlepbI{M8vjXOz1G2pWvdQ3+s%^yY<+BL=w4V07ZS=fn zd!7;^otwf_)LOOthMu(Y{8JyB)dqPAhnO8In0J!!#}}Z&0oCqr7AdW|a6I>7sD~c| zF>(XEtNKVS2V93hT{I=r>%YpT}P)t{Xdg!jo^x} zNGX>hr#vdhtPBe|3i;b9(>MsF9YtX?gCeu5tSM9_m}n&p-A`xAbLz=9R#;bi$x%AP zbMCk5%%lmO6ob@oUiq$zB@SpL^<&Gc0<`DG*MPLiL7o1s%&-Ojkx+P0U81r3~QaB(J^ zmFsZ!6~3|ngEARMv-!$8k-<5LCCN{N=I=dPwrAX<-Vo_6Mr3*4&7|#J zOR4cUUByh%Zc`&W^z@4|QfJ~+LamRW&~6LyjfSAjP+fJL`@c(^H_teGT=lcjqOm{e z0OLgMp>N3D@`?lM1FRB(?o`1(UEh*Whjxj$cobiLOVyjV@)#6@@>hWRm*6!&rQ319 z*H4R|i-?||rfNFsYdzTiDEi{NLV7@)Q4i)Z9{Zk`;hWBRCOT9u9 zRh7bLnyrqIpB3TjZ!H5ZkqM{yA+?dlm5$3thN68dWdoy}HI| zTJcaA1N1FRRgnFYwmUe*dSiy0Q4dt+Tq>?F=}K;`vzb+BB`Q+* zoZ;2`MclaAOmm;^7omzsvbpek4!Z@prK}U5n45}(mYeQZ5o2)lo^cfU zbwa$$Jh+wj@J2_p2p+wdYwkXA=q>KSbLs@Qp>i2dx!=?*{E%6{q`74?p94lH_qM~Qv}>cVKRWv?Nb_nmQeBFpRC~+lFYSZUB^r@ zdGPRG#~Io(a<9+8u*+J%3qz=HH|xJ|y?NR7>1dvQFt@3gJ5-oy3lZMqu6N^%uk7_O zbibK3YGh;%-eCpl=3NWS_|x69zBwDM2FMtA6J`HL9OBD(bw5%$ zwVSbcf@Wct5qa)%U3H-zSIhV-zfW)%{>KA2i<)ODjn)z>n&1%)6^xruHZ0|9d^2kU zJ;gD4hi_CJsNt%F*BMtjRgBVwLg+jX-T~2h-lZ4{i>4x{$?j6JXl#d=st?!XtGukU z^!;0K`E#0#L+lQ*Z^3#Jha_U(vjDqIF8rEAR}jd#_8Msa9K$rsPKonwmTd zZ;R(X5cg-PQvAR4>X9n7=_34k9K=27o1!j{=Sc3v@AwbZOMi~o9$cEw^BZn)?)BaO z^8B6O)9jR0!}u!i@l)wrsY~kdA?K){d#Ct#nCPy?rLDH|It5Gl%=<6@N;g*M@?sjS zRC<|K>5IhwmDAUy56LJM>0UW0i6Uk$Ash>icO=h*O{8``x2XZwvpQaw&96JSn#Q-Eln5 zhw-s187fjgO7*ggo@O||NHc!!y8PVl`Tyaf*N?e5fJ%K1 zOEu+@Y-a3+yIz6PX}PC*Be(nuYWf~FccoAqH5SEAr9!NNFRAVs&!UA&F_$z`?e`zr zi=~br)g2lxGH&EZ%ewQWR3KPGeYY+9gc$Y=B}eH0dZ#hGTh#l!QT(_#_GP(pHM41B z9LXEvy_Z#WxZe|#;vGTH7j%G|be`HP!s>nHm%KP@e?!W}xlsFZ)F%biCNC(a2ysDO z9n1g41cWTS3SK1rY9n*v7_;P35#76Jwf2`*-DYE67qN}gW?8|)( zAA3BHx8#izw*>~NrkUX}&*Clkn8!t7#m)Dj579$2-| z$kBazH+;ee5UX0&X;@NzEI=9PPIoI^&~kiCnGxKdO?aoaThn4hyFmdGhl@$1o5+U5 zj1aANwHof^BiN1`ngnBNK%KgT3U#{(YiFdlSg&i%MVf25O+Ii1LzkoSvWD@F{Y=D> z+SvOhVK_r|$57v8mPN9U}-W`>orojdo8 z2zfsaCDfnas%KKNxUB+K;W(TtbReuklk%#XfKSpFRDgE1x2A^*_$gS`Il=KE;;$qg zT!ND*U>zUrJPu-k4qFG?Ird7{z=<-06>y_a!#VT~Y^XEX5AdGmG*Pda)7KdzQLgyE z*2oiT2mVKYHIS!oKPIqJ=T z7SVcbHH*(SD)Wq}zShoIt4u(8j(Prm^a`5Bps=iAHQpya?`0c{%)4)KQ00jV0`nU> z(!Cb($EW)F7tW-HsuE5VyR4LhH1@n@T3xE?bhgh^7!T!YQg#W}*? zco4ERU3OJh4l>KOUbE(uwud`8o0`G}Kaul%r+@KeuaR)C(1$ChR z2kdTqyh6(zlq}anmd`?uYjG2XUJxDmY5ov}uYwAH1r?5l5ig)nSWs|?ddqV}(I>>9 z-Q(V-$)BiR)Hq(9ME#5Ut2NzFT$_lGXe}nM0YwjWKReJ|)GPRy_&H5gso(@yO4Z+l zf1(B+Dzo7G921Wf%AhqLtKQR1Q2uBraxpmaOgTXeZB9?ebFb}%I-=9mzdNdjOh=Wc zGC4o)!b_x5*R)WZYoz_g!l6S2;}(wKHY$p;V$~1*JX{U0zW%CEv1l@EhWn^V{9|VHvHfB z`Td>O8E4L%^Znl6`+G0fb$ve9=i*bW6Wb1zO*%SCM=X;4*dzauRWi_3&EgY0j<0{8 zI!q05;1{bW(?`ql}gC(&7x5R7W`s2aJi;FrSuiqwO$_aBpWoe?n!Ve#Swr&rCF?Ci8fD zyWiv8k9XoHmUt3I*CJB&@^?R9g~o+SK;QD|9`=`|l+H%FqqF#PqukpB*E`Frvg&>g zpsMyMPwa6ccodK52JI_ul)a%(+vvp)`F6XCUGIKvEq)HJc5Sh4t|{o^4)>W$Mn!Wu zY-OndSJ$^y^wxCuvL_|r_3~Th@gJwk>#1I1u+ezEzAal~85OqMcz}ug&xcA>g9%2L zNaSzc>5)h`{uOiT{s{9Z&zSw%{2XU)ZsqyDubS9XG}9k)%!bt88oU3sc#}c9t)l#? z5|oRt${BhM{#%=WoLPLTz8>h+Kw~x2O!$HS*~e7`#rgYX@ujph+PHYdxtICWJ@I|47WbJy$Bzn*C}F-GE5)Q+mf>2AtP#|)?9=oR`$J(s?@fXPq;`y z^1JYlJ44CJx{6MIZx>;4b;QEEU4G(Ia%cj=7PLoOI$D-2n<-{Xy3gm~>)mK&o`Nq~ zKK33ubOYg>A^+}Lx{R&WC<+yga%Atn02K?h47!+E&#+5Ew#>B=&S+kQDS8;Y<2@{g zit^&-;8KjXhlXtLEK#|@a19ktdy7+E@|-UA78ES|MXI1ZsZLoF{`%FTm1WTlhSF}5 zp?MvYG>*PsGsxi=+8&Qr*^l*+i?eV>e(8aT*5l3a(&_Ti^Wl15v4F;~eBKrN>m*+J z8_S?KUdBRPkHAuH!GdTbM!H00rFnMw1Qy387R@sd*6FwqS@6eZ6hP;WKyen})~sS-91`6Mbs!&bO$98t&)GiR*mghJMK{93iqcW8D0-ED zwG*T0YT{it3mPCNn>Xg1+Y_Ej8??>B6KSlHhHo@f)g zpy3z?We_)G>5XL5KkKi*vjx6jft+W3v=vKv1d{cL_s@xD3}FYJ!KMC#Z(Fx;u4g-O zmB6a*%pa)D%Dyk+1CJG1E#tiqYxxUawMO(~FdzIik@1pZ2e)2&l8?RM;wZ6%3V!Rw zR(e%NPSCe|n9fniwK>iv4|dcv@728cC>yIH4}3bkur_?<(fDdNvvf!CumhLwZrAn= z&-#8pm+}O@ zh!^vg-W63ChxI>B?B_u~^8hi8#=citTaH}Jz^V%QR@d@B_J}WZc1=6HipJXeo42#r z>t{rr#*0P-mE>yr=~;dH4gaPB+wu#2--PuVaM9Tiyc?iBTefAWu=`_2zzcC%h zvi+79^Qbfb>275j4<~t6Rd^ZQaiNMD@x7p$+oPgbd`;NQoB1yvS}ESJcHC_=HZuO3 zV0Se#qe4WkE-QMRPsLbS;_(F*QT^^z9+}$@ap}p_&34X?^OtT(+V1D;8Kg(!oJrTy1*1?t#i%op69iC6aFOKlj z@^Q9C;S~q{$53s0wb}igxi|yzox_s;2NqrrXL^}yFNH~6kxvsUzJ18MTa0Oyhh4GD zaic}4Ct`t>6w};a^amV*6*B2}M^O6jG1_b5qvrD8E<|dBZQ>QZ=acVQp%?mIc%*1S zhJM@3@_vr4=OTH|bFB^A{a+0;W0`e$n%@1lSbIn9=%uy&#XzU)GpRtB- z1`o6^_C(O`5B^vidOUG#sKFRz6{CNaRsDt>`?@@#%~r%xG~mBdg{+$+)^&fox{r6z z^v|@Mtf{-7LE-IZrJ#c$`bA9o4?P@ksftC4Mb(7vuQ9$q#N_+L-5X;CJ!9?N zY#ol1$?+(!DR{}3#WJ3--gUk53%_%{8S|9t)UA!iW>hSy@tI1A-qkl#dl_>RthTp9 z(*i!!!cO?48C78KNU+Mj?EUr7xgRdKuxeJf8vkfLUK#OV`(lR%o?)DEd4=!1n@+_A z-+akgqRq}}*q^!DxzwK5P)iru_ZAt2S734ZM$CG5y|1zMhKNEZh}_RI-m{8MqX3>O zJE5QZI)*k*-=h8SEc=)-$^6+?{P;T1n(fpEs_}r!_*N{UTG-|Ww9%m;7_TN5sQ*Y?XS{7&5ez zNB`H(J;6R(#thl+3IfyRTS(zdV`o1Pa+EfA!MM)FjVeVeAyk@v-o2c_MhNNxp|-&? zssw#lN?BOeadHWY@dMi7O}(#WHPkg;VblbT^sZKy{f;-AU$7kd5HuWidUU|-wKXkOts*2p;=_W}IZCA^7j%&g%m9OO7gJ!r!`BR7ECLiNQqG9Q8ku{!FY739Cxpi9<=x6QFrMGv@=H?fW$kIb(XML)3nPj<)38q+=4 zU?EzPZ4`$nP9e5VLo4ec4A~9zv&XvE*Cj4K!2MMILP(VWyRHtiJ_pHO=mk!A3c2B?|c7LspBi zJ`s@Wplh;*^|arPQjr>eP~^?k%JH(5Zim`VqiNC7Cl=egh8gn>WJi_3ybU>Ae_5+n zu_rr=N$eBd7;b0FHiI_Ut=HMvzP5vJ7p2&0kK2I9y-3bo6A_G~qUi(7+PUI1E$wbi zS)rkN{4Bdc50g`7$k_7Ze|kvP_N?R$(plyhl2doWp_1cq2V zEbOAYIMBU(1kzTCRagmXvfLfM>v9L0OHQr z?)(fbJA(%?(3SiFdEa^YA3y&`zjcBU5~7u53WvhW!D_7L5 zzPN8i7U-=QO6A3ePx;v$3jQ{%?W_#qv2q;e!Gz91N#@f*>LhaB8=CU^h3CYyvqYbl zh~br%fzV%6y_hKbQ}hg*T}TjLzbrrZmGc{EJ5BT1*X5obl<)hjzhC2X)FfdU`(PvM zU?zXaW^YQ(@oRWVHSzuR=RcHX8I)c_{{30jW*WZ1Y4~4anDE~y( zYDdV}zp?u=;D4d+{iaJhWt}{0H0@z64RCLxVeOm6R5LL{s+oIb?1918+0Hi!yWQ*f z^h;$D9LJ(;Yu5I{9qAXz4tzoS`iP~DKHTw}B-JcX3CW@t0 z5R>~Y!aseVDohDGOl48RequMFlFd$fc$+Y8qwFlveAOCkk)S!0RdlRf;W0ZweUBz~ zfk*A_p%U^3{Pt;Btr=GEpek73Oq|BT_}l6qc4C^RSs_TqBA!{anLp zDiXEqhT~WwZ^e8UQL;FoB_aBmY8RXCs+PmAZ?yM@TEEv=fxC-AcM-4O>u7^{+rwCP z$?U+Fsg3_z-R{X)G*|RuO&0aLR_zPc%QIKMic|;gZBH7*hi&Ej&9!coRutM%_C*ws zvSmYEZ@2u@?p)Qr)>53Io`}ILN*6(^DAjWtZ@L}U@&9QV_2b#Mb#Jo733|&}3USd8 zt*96`R;*!yyBCd--H3usZ_J2kqF{~U_W4{h{Mf2^+YeHA+U2@i`s@Mw_I;`dt1A#Y%gY+@1iHXhc>hnT_++6(`95x?i8+>9KnSy}c~@PB^h8?0q{T{33R7cS+! z%)iphDmT~I&aekH6DxlT(le4ZH-MM1(mV)RHyxqDO;~rctiZQJ6~6O&BKFBZBR%*+ zf7uJ#hziseFE7n=UTFqB!hh`oKi*-+y~^`kENA~1Kd`#_+4aJAaJ1_1>UBKIoftc< zv4Xl+HViB5N5i614V8!jFa)Km*04R3m{bw*{iy-sY6ZWz%mg`VGLpZvW)!fGCbF@DMVF0l^b-{82EI>q`dO>QX>O-kHkXH*rJa>n{=@jOzf&6Q z$-iuA9#>+|%@q?$pi2`hs72zu4Fk4GNOyhzuC){dH}btru^UyFKZQx!^8$t=p&EVyM6e)|?WUr(7qKU!D6 zPzz|CY@7LFitEhWrRIFJEa*g*@44ttV-|^x&QVi-o&VF#=EL;Mj`>c**dj6Qt%TR| z$|gJ43v8Tuki3w~Il!xW+7tZeQ9QyPywYrTEOIzZevGXFFa`zSaIK<^AO(mA~pNv&Clj zWd3`o4KWsb=p{OH&8)ZY;+o|fU%zR29iG=-_oRw7U<>4|4CHksM7pgzRt8Eq%?|UV zb?qO=NuW=+O6EbK{Umr~&)5O)^e81a^(J=Xf2`bh@jY&`q74*P?ZK0ZmI)nl3VPT> zs>+L6C`w&PB($+R@tb&XBPdf%G3<77OJ0&uG2dz(CEGnz-W+MIe~*upD%0d#^r)B= zQR5Nr?4j5Nlyp}?*g`$Qp<>tXt1R;o1Yx|W{HNGn_3+dlg%*`d=pU(k*$hThp+u-8 z_@KHsrA65@p$M~892_ndzP0!OG49*dc4<|j85ON#@TTWQ={GeGHwVSIe_^xi#g|(E4SNIHw8MS5P1T^6N)$lkzQVqHmk!uVC4!RIJb2!-t{@tV zaB7K%^v^OF+*Y+3he3FHKop|rzP<`2sOV=C_{Vmm>wYB`8%_gjCah#5%=NTm zZ-czmFt%pLey+bSc>cs1cmRUh0$RFMw$nCf+iZJwJu60knf@*Oev5HCUN(3yKWjPS zlhCw1=E93s*fVUFZ}{`GtTe^gC?ByS9udR2ht-rzBVrtT>LJL?jqX*Z%9fR3!(T(U zMnMtZc2zGFD}W{Lhksp?eSgX8fZ)wD_R7h?9&J3#^Z!=&a$oEWh-RL#(6e|G{dgl( zY=v>24cmHqemQ@Gg9 zkSw+rVtD&mCfy?0KB4070Bzr+BG6%Vsp_#|y6cfT?5pjL)xbS!1h=bbR_`{0V`ZEb zh;xl%`weE{TrK({`>eY&_S3_ipxAS$DLkwV>x`up`e!v;xf{KNHmu45`kCcL4NtKh zdt37dh|IQQ9hEE6IO?Q5wju;%h}CN;CdGO&$vaq^ReYmobi9bj0qg#@=shgB8(}dA zwR#!uW^d=&sKr&~?vIOTDBQ{B4!Rrv5o5WY9%60YZbPeBP*fYvf`3p{^k{u_$zkKlcFV`TfrCES<=O|+VbWX<9R>N z+b_kZoyW#&f#q46rFK=-kNbIxb6HbYSzLh`d7V6#&)HJH;Xzhm(F6>lE5xC~rBGG; z0*>_xQTvxg-($q`4^Y3Y#I6cF!hd8)cT_7!}NH1~)-}9@_$shy!sUoIR+Yv(S zJ?x=D#r7dTlkC$=Wbs|YS_|>&*X_a^M2Twf6r#l(Mv5q`78%&bmMz7%50R6<*};q9 zB5$ZP5wa~-^Zzqh$N9YZpKxYE=21;J(5LG8y}=gFX7?6e{tUkIl$LH6KT3rAv=FBl zu71Q|Uh~R}!}M+(rdr;m?(TSo9E`hJ?Zutt3D#{-(UDeq?9!zd-GSR2r@u3=78?jX z_@4O28feuGl%Kcp$8)uzvmSkdXMO-HbuzYniZL`5e)GK%cE7%^NpEU5M*c=jyxy3d z^Ukk=Fm;4nb(a?xEn;;-#le?&9uwWiz8(qe@s+IhTiHwVB52l&dL-zq?Z32I+n=E3 zP#iz`q};3JJc4rK13AXeRJ_y*)TyII8=}M+nu#BrH1a+d8~EJgIT{bg#3O{4#zx=Zo^l>9ceG)S+@PuFHZ=^+-aZidkyelfPn;*1{ zAJmpc-(Og!Epdt)Q?ic5KztC#H`L1r{L|W)vm?YYMi~9$)SSvV_oNJ)Z!rvesl756 zH?upQWwrcr7?P7!i8+)v7F+YHyoH#cBh-)?kiP+YvI3>O7ioc&#u1LibZn>f(UiVE z;(gUI-27I(a z)lrJ_)3!L;NZi#vqA*noN}ijnML*{?l6jP!mrFx1MkdlMT+PoNYd_VooAG7`;RA>I zKzq&UPtCGx`D{s)=e~7Ua`ac6e2k9xya#c`-=_gL7Eg5(Ewkx(vIQzzoWo!Jf?`=V zrtNgkr)j<=p4(2Bd!%pl5PSL)`!betcPqI|p-R=qvZL<9){NG|#pkMF!UoN<=jq|C zhg`lCx$Bdi^CkCw27cLIb=4-Fzh7T1aK}SssCV4|Hz}$8;C{!RAFtxZU|04Y4rvRK zu2TNG?0lx2l$jW$GmMZZYH1tcu0c<2pjr1xB%`FfSvAW#bC0z#wy?G+;Nw=4Onmnq zX4@1ox&N3&x#q}z9O!j?#G{v&8OuA(?)OFN!m9R9MEfG3$IIlO?xw4~*1D0v`rixP zZ_nEPiOv3(cvC0V`a9wa7p_hgL%$%Fey3c4_F@p@?G-&mV20YU@?cRn^5cHux#Wm> z-(knS6?zr4{nztsV)%43#d;2~+h3!@9Pp=IcKDzg8e&4-;8W$JJMg8J66|A{D&w-MPdsio`vbqMdTBcEoiE4`KW>1N8# zhaKZR@#iPu55MvTM|&jkO)K$5R`M#tBNH0&WRaPCs+M{%=qfd|%9hjGaaz5}HCK%6 zt)J?dkX^h0t}!uE0pTy}{7hM`A!4(d=MJ=RqVNEuGrd76g-^g+);O{hoZ@dq8 zs)`qvu5Yqg0-GWk-%Vxbr1B@5v8nsfKSi;|GnvfGHL`AZ8fP^iH>)sLR4t_d8D^E$^e+d}Ac@yCvHvQ#^4!cFm&{#Ghr!U3C5& z>eEF;qk4FZj2Xyo+R73uFTdsga>z3x_DXHX+UNZh6uerg`27|Ct$J*t`yS1zs)wUf zK#gh@HqHuOTQPl6HTEq>-RXFVF;}5H`C5KJ3x5)sh=t~MGZt1G-vQe#zzjK}7R4?j zYLq)()7UP7(~^im^NKncgY{nVq9FtCNu&4LqCo+>o9q6~y&mD-1!QxeITZ5!s#9!h z28CM!f$PeO9IuDlxC1+(V4>>x85l4VZ-aDl2l|&v|i%bo{I;f0mQ9~^6 z7*ygP7GirA!%q8sCVOiNgsGPO{&h1UaA=M|YEIz3^upZPE|OJ=!$07SV?z7qISr0$zcKgsPbb^Yx;fK{JwR5D7*L=d$JGf>v~bhN37`a ztnuxR7HSSJf~th$2j0&PjF@&JfxX?wo5dm@Qmf++R~4Au*Haew0lL$oFjFm$=PtgX zH#+0he9yY8Z?`A|6Ku++e@~3{ko{-`>n7Mcw~NDmW!De&0{^nBw`P;vdLig}zHdL< z;O9B{5$k0B{!N3mpRAYJaF$TDaRy!4B5a98EQ=j>!EX6~u{eg=qd%0>GL%N{6ZYqj zJvBU1QE&;}=KHnkCMZ{5`~4a=-oqC^WbxFw@p)!W$8e;TXrUt~;HS4i-mRen(`5f-{J!?2Hv)0Nf3)LPABb6S**vx<{wT@W9 zqgcu>^0x9W1>9^0obHmS@ST@Nv!?pGXaA_`@jo6@jxkXqqA>6ctZlMvjj^({ZgKuL zETd_31-iOZpRrF$>5+{vwonIlH~Z;Y*LKkr-EUR}Y_ksw;#0L*IACjO-xXM&gXGxW;yZI3{}6lc5Df34|8I6b ze{@x|cmQ45^`k_(-{ghN=4E{8nm=@9|Iw%Suu*!Lk)a|@6Dvs*d3kNkfL6xi)5ha? zccq0m{a>_?cVCz+x*ycbLN(1qzUX&_b*&54FjB6FewM?*+X4d*)$2=Nt-#7JZPjig zPPqZ5Jeg1Qob}=s?>#Iwxz*!IY{5lla!_sTC=wZ>$rr>Zm%!LJT7g4NohBGrM|j?6 zsqHNht-S+2_O=*pP~ytK`6y7W;Z3XlGU}6W(Zvigvj`K7RPUk%-O~{O3gc{Zh-Zl5+!_DA7}q(!4Jwf-l6XIs^)8J1>Z%Bgr0PG7D$)YF_;nM~5=My8O%((C zOiZmwe0%Z07}xYMoy4x;SxLGcNBceC)NNHeE#yTj94X_W4k| zdz5y*CK`CJzaRJaMm~LOBubYSSBGlQaonStnCDZ(boa)EDiaGut)^1Lsu1Bw2gdiQ zV*iM4)yIWCCw@BE@lvQz-cjrwJoQYm#dMF1Vk5<+4zVa!u_z9TAuZMS%_tXTiqEao z;#VUK=%2M{mEOBMa-K=@n_qCYHN~FO=g*17w!@mK88?*PQHa=lN_(dntK?S^pi)rG z+4v|8S)re>R{z6ZEybpo$d10my1D~$TAQ^q&AUZn7W-|3*iJ0FV*^%O9;@w3{MyHT zGgRk#+) zu*LD?jK@UQ-t$J&|L}1hf;E1PnG`Kc>N(cYfQStoYU`E5POImr3t6#qMBXb>GDa!!PnwK#7Hp-WgLU4%s{= z@PAr~v)zP&cf`@^;d5Lxn+BOjl|-4Ai?D1k6Kg{Q19n)%UOW>*5N{T5hc#Ry@{tcc z9E~lQi4}7w>Q^zie>>a1@r8l~J%q2YkQH-__*@FB`a;CcJBgL`I(xmAPmhFJrNKbj zuvr_(Ncu*biC{&i3#>ILB`tFJB< z?IQ;FwusycHg>qP$1$Y((j$5dDz?7J4rg5@E*Ubpzh?Odrd}UfnIHPj2EQ$XI!B59 z4uWx%F@g(4wSN_f&w^S10?!x^$KMxyFeX${U&U(P7}0(jDXMXR{?uCZPRxAXL0}NvZ0z+A*=%TxpMaRW#3ShfnGVc?CDzIosyt;Gd(&K3 zT^`#4p2E|{!*IUdINxX~OQ4KcZ7uWWU|dGAiX!``#Ngi%|9(3%*E*T4m1V=fDhmG_ zTYrjqxhN7nJ!#JWCJtUVu7s?MQt>Z}vCmU=WL1eF2^|s_Czhr^H${Dq@kzVXZCM2I zSO)FLgaOnmkr!V_MVEz%*Cmd&X1$S^r22_=$VrY75(!t55AIu{b^$>J}m7RgOXvy+xksGE|MOI>a{-MjxJO`?(a zMe@RwmMMFZS5T?Docwx91)6lXq&}cn&-B#esh_6Zkyg^<`?R0aHl@u<>)_pPsk>A9 zq_jx=DRoIqQzJ)#+P3QcKP#*`ee; zC8wmfNgtTrExlp-f%L-kgC(n$iZ1m^$tOwI-~dg z)N9R?6aD2IpMEU)=H$c4*(o2SK9=@aT2$JdX~$EuQhKL!N_kiBluap;T+31aNLrEj zn#wVMCysFkHYEn7g@x+GjJHS4kt@_FVGv}lF}y3fM15H$7a>cBAxjfsV;5y${gm)4 z6~6`v6H81sTK3r$2l;GuxkW*#c(Ba3esX`d*`uz)4t}T3ur_Xmo$LnrK{FwAK`Y`k zt&7j$ax0D4EwM}NyesTGr{f-j{!}U6Rn}Vr7)m#L*I2VGiK^sFd}G zU#Iac%djXyjk1xVx6Q4+4e(@U6bbcE$I3Ek$lqNEjT|8c(BJ<5JfxrtWTr)2Lot9p z*7FBt2=;+8e-Y8j-YQe@1SGQ%%1{E1Jx46z`-p||H%7^NXK2J1&9eG5va4*uahZSx zlnqz865ATOQ(pGZ8+7gp<95l8D=*jRp7>{E1KuHmf#1r4u88Mxp7(cxI{#Gh>_g(&8PJ3>Fp7nECRKT`LAR(K9${JD^KyRXo=dm$ zVEW4!`Iu7Jx6~98@%AR+-~~;d5dCkD-?oicF_l-6c&RQQrM34r%eVbVMDrqTi7k+m zI-=0M#h*utVfVav=~90-`!nqCJ+dE~^1p8p8JNrKtWF_P zaG~Nd#wWl8p7hz#e5@9c`pc#H1)FgXd&|1-%-_83{4)hN$=~lSj{G5Cui)GUao}v8 zUuQ}HJqwEP4eL7B4UQG+HkT81y@AIyOpgqU)DoD*!y4sIb{1XD1{qH;?fJ%^hD5tdz5a*Mt)Ue%*U!csXKX=QGBVk5R}_# zB)=fa(nVY&_@dtkDinhtJu7mtSgf&`aWNKBRQl=+ag!OM$Yrpzri;wn>#B#jqWUzB zy5dCbr+oC9mUYE^yf=c+tP@ulCt46#`;Uu79ESC0;A~#%%+PM7Qjz>`fE3JE4M%@F7SD8;2#G)fKS}Vlg8L2cjHgb zA0ZAY5RdRqXEi^IsM)!nKF8DU<6zneLCqmlE4f6QBi*B+=s{ z7)K(C6-^6*2E?`JrqNqyl;4t?-8FEJ)+%s+cD4dlv#7jzXBXx@L?!L3yrncDKBv5q zsnX0fw9d-q$3Z4Oq;S!LHeGaHRW)0>)4fi#dvuo5I+D=Pvu_G1a4TrNloS#jFZ$3?qJoQE2Iy)$@u@)^m`^(wx zdH0;{L*JqVRlZC*cdONu*+dua=aXemK6oxe`+V-6+?Bb@a(~JF?d1HE zy-yB0`SZz&r#?7!QZ1zGa_647E%%cX-A?Q~ao>sWa}H*=%N}vO?D0v*1|PfrSaR0f ztQWJsJo?(vl1E=X^4`(AvW8|g&AKn^hphXLWoJEd?AWnp#|Irhn4OoCmGiF?aVM6Z zICo-3?!4RzC##&Ab87Oba;LsJS?<&oEqOM#NpALufhWeFXnLY=&cAd1o3kmWlF#3k zo0@yk*+0$cm;KlArrFc73y!~gJV6U8`MKa&l;^L3~wWFB69_~hXkM{YQparBO( zpB(w=NaE3YN8dX-FspV}6^~0tKR)`#(P2k(kE}h?_vomjgO3&*9h=oEt4mh-tcFJU;*U%42Ph zZ#wquv8RreIW{G$$g#@D&L7Lr{(Fu!KXxwbKUwc*r5?LI>*~>-Sv9i$mo+}?>#WDK z+WUQI)^un3_~<8D9gZD5mU+DY@n)VcJJ;!Bon7;<$0{7(b*#s+)5ku@?w4IOdqDPP zXPuM%d3GbOp382N-5`5y_L1zu?A+`Rb9Us!ohZ<+jZbvQ{U*0vZes4?oX2t|XIII- zGbcZLLUv5f+xmR?iP#QvP*6PI#!=ge}X8{M^|zI*Y+1jnD3JOAW!r#?AV=2TTx`ky=p3hA`dH2cgG#|5!ye%iMoZNTvn9oO@{5AKOkvS>%iQLn< zy-&uUT6=2vsfSOc&}ht1sp!4aM@~I=YQm`@-fwfN=&7Gi&ZK@g)U)i#_fLFsV$6wu zPOQ&uee%!TFLK{;yz6u8=026%{p2mDqE2=(?)#r?K=I{{(<_a{-qaZjPaUNDIO+7? z5xvRpPj~fLa;op?!ZSg(C46m1;*<0 zUPoQ|%g($=q&`-}yq$0Kz*PwR-S1@orO5a^gY|!jdhG|W!{IXHGWe=9B3|-1NZ%-I z$sC^WWAKtFF@$Y!vvs0n@vNl*@P*dA-r|@i|6$h^iFuJ1EUJxd4XjZYHAM< zx%gXbG7{Ox)E&wyYJ!f?AE^Zq`q?xs~oqvweq*5jk+ zLAkEyIqVb%9O>0tYUTb9`>~$0{U(ZWJ1cS~i}4ny<-KA)$@0z`vcW@MR>EEp4z!$25?SBvsThZNI zCHtur)FT%AGgKJ=FH1Po0qBm?n;;q!RIQ`5tCUzvKnkzHCYmmWx>mOL66i@6Htp;B zrVsRVxp%+yelmV&;C&_=F_pzk1~^ZOXwEyV^EM(Sr}1N}!%^x4e@R_}zA^{jfqlHm z3fh1h9n^W-Lz=c5!RcNdW6FLYc;1QZo5T16IjqSAm>t3P=!G>IY`|hu$eK-=;tG<}p_6?<~x4))!cR$1p!8vx^chHDa+g!(R%v&pB4< zN9V_~v5#OIw3FNN9n>Nfe$v_FG8RS#p2=qXqEA^~Ps6o#u)$u&x9LbxuFUy7w(ifO z@;6ameMA+z@&&sfB+>F-zErRL0?g$={*nB)w986is05X=Cf1;5*ioOUSH6Q{)(SYv zzt!a{$x2SNX1+!xb`(CwehO*p#QAIaPA~2Hh_2Nh?2aCeQ(Z1j1ueb}>tT@kCI|hk zlV0kN+wikhFy!;(!3^eOg>_^tx5p+L%^r-`+qJP})?MhR#~#-I4`Wm`VmA&~9do1z ze;F3#Pwy4D#9+7wkdY{kvJu!{Cq;<(r+Q zo_ZE5x|3%Md1!4tn)&3P5Xnqzu9oo8n%=K!J?%o>`4gDS5msqmXi^=%QxZ;Gma7R$ zdxy2NJdfxZNZ@sH9r7>k;L~*FYaQ3RC>Hn~JdQ~$>U_VgHPV)2I|WVZ7@VrQg>S+$ z(`BD;fM5cBm@zq)|{186{nL zH>Yv=Qe|b;@|a$5J4~;T9$nA;srKgvwBq*XRmmShlkX?GZ58qsP$u3(hxl1`{CagG zGgUwwPaAGImFoMcS;wC3d1m^VG3@BZ-t9vzy3(1ZKCx6K#se($_bJSkr)1sb%oJ*J z`y$_(Ko5HyEB;UF&Ot@_`m>2=OQ}S8I}hM9=W3ldT^+>c=l)}_e#dNV0f`)iXIAV& zsq+mB^0BRcj?}2^tTmsWK7Hy23ezP|ucZln8k3Kc+R6M(AS>rYRAe|kEf;TyFrOS3+5>GAE%zk%oSG#=7F1y}Kr{x%oyhgE(Jt9+9+@!9#_ zaLUDe!>(puV7!f@TUY9Qdl=^dJ$0+QT7~A^7b*$8YRzb2291RSR&pOsVxSdV=;t1^ z;puT1p})aXdtN`(!fI;; z?`?6udqK*%kvM1DSX&t^qC2RMx233fr*&l@E2%vN&lf2t-o-u&Duz3)OJ#7%<{KBQ z;DzP*-_6a`Tm1H}GmORKY;SzmH2agZ<7d}ffr8{*nvF3=?F{EyOLO{A#J8%3+18kb z;BPdnm*!>i(6;c`TI0Oc%+JXC{cP{NczS;|S$Ch|ekH2eI*ZTV-gv!LY$21a)C2A~ zj~|`Sd+v_|Iu05hD)=liU+Z6LqaVUrlw%c}9^s(oV73+I@0;t^^tj8nTK$u(TBWTu zU%|>V&A{Jzv!NzxeW+>M$m$h1bRUUBEZ2sQs9^@hi{DkeJbZ3#{$MRzM~|{@{%B+1 z$^2K<|EysyY|nc*|FHVH??=|)M7+Ycs1!bdVR%{wJw<0Bd#{Mn@; zeD6UGR?{CE;PcH?c%5~&^4T$GqR-sQy1&<)i8_7wbmo~t zUT^^&_~4+ocV|z<~0;7JMqTrP|VC!Cpg=2fAbtl?fhk< z=coL$JcQj;GUKc~cRSNWjLH34F+Z;^58`DU%H4Tcc?;aJuI&HUTCGpPJi0*POdubYh;o)7R~dciZ(BSUoO6%tuqSdk@PX#NztmVobSwP`vORF}mx- zNiyg@USh*U*;mRKS#>ZWqAomQRsM%Y?kO>m6`~wX3$m$)Hl~?-+xgnmK;K{ojG<{- z%2>G_Q*)iZzdmA9JVBMT3{K*ig14;jp~CO2j=9)uzs0^8SOND&IK1DAS7mDHVjPeR z&x_WL23pWYTt%4pmirPaEqG5qj4cp*d_&{d|%488;hyX z1GnUHyu{TaqaPcm{j5EmMWNni&s1S04R-ZmrwjY~9MApc&Uto5S!=|0JK6}`%V0MR zF=r2(vvDGuAB(JIh%*g~u+T@bh4$m8tik(OV_n(Inj7MpZgsXfqGv1EOF@10F|o`2 zqFL$o;ggqVh@8!oO}C1_^YWG9qO&crsn1~Xgnhq`eDR&4ZI>J)=!FOCVmrIB{l#Vx z_HUk4!kyY% z(Py@>oaW-#Ru;MZ%>G)%&c7K){u|?>HXHI7JEgRhs50(PV4W1ZGFc{7C;r_6XlY>0 z|Dk_>#B#3A1H2iN;&-oW6~5sJ!J2JSIMy-lcJ^b=y$Dlu1HRB*Jiho*O!oIm-rq#;oy0-gh;6i1^oG#?w?>+MdM>7Xi2$9UfT?8zeYG4NxYXHayQ=LN!Eit zOmLPP_=a}NX&oWG101qO@kemEAkSbraYcqGUmqx-bwIE zmPT#kogRmPr}0dx^GgDM?*o;{3i-6(!f|_Rb#a-D-}=imIek%nOL5*tMK(jNCyIza zB;&2;)s1|#P>D5H`+C4ko6vtb4UcHaJKpB?Ot|u^u=b!P6FlM$FyT%7vNe8BqdoEh z^kXVMz!+*I6MZ6792$ii(3BVZ5p*f!ERTWp+^w~TU1>6gYz2P$Vu*M?KWa9e&~*`} zOF8-&o3Ycrg2D&=n+voX4)D!7LdWlbH+OT6K0M$=9L+`i+d5F5wz0k7M5XW^(j%nf! z%K^g~A|lYvUAYUVqEJ3|JPnd-aZ-Eo_m{wjZWBQW{`C{^=z0*f)oM_!#5VaB7T!n> z)>h1#O+5K~c-PHi*216Oj4)fDh73)1_hWd0gdk@-p~-L{yVPCHL>UATAeWu{{<)ew^32;Bz%x?BaFOCQfAV7u=O6Q z%zX}1FYQqgZ|Hc!ti;+$Hzl1)j858}xF+$ET5yxpjGGEsKko1S5;m4tEqie+mHt`@ zb7}JLk+Iht=KpE@%Q7rm&{sUG=GrXZeH%7kJ@H-&n){)^S5>OJnA9Wrm*iiQe^e#z zPj%(eQb(swPW?9ZA|(EFau2BUNOk7UC(lT(s@7a(=yR#$YRQ$7zQh{nnpl{yUk%ys zRh9iZ=@CfvXUPMSpHFV9vn;oawwswLO=IxqPx?@iEx zZb@B|%6MHN<)F4NfR=v)5zk9bPf18Ql+rErUH{M2j_vpXjZ@P7brfE}FUhM?&Zaa< zU8OGH(3BIdX=+NF)K4%DK1gkpS}nDO_C`7T&1u8Z2B-ZyZAR)5ZGR!{)3pDlWu(Pm zAmpS?N?YOzu4wULxO@e@QYWPqr2Q}i{jIZJRV=chcH(jawNYRk0NX+u(L;$w76EsdWMpPHRA+z48SThTb>8vXoO z^1!5$&hWQU+de5(wZXC}9k4XI;3K?^C$bmwAhSe8H6Hr8juzUNm>6RgR4~TB)rad7 z64e{L6`SOU`SE$eb%~9VdK!t(>dAMKD`Pf1n0!FZ!#+t(aU-fFUuU%Zn4F3EunwQ3 zW@?_XbHF%Sq(b7kq+gBb=#*Fdd|uVVKe0g$C$CR#mwZohZ1O&{@Mj!}QCc-EVIMZ% zK|H-1Wo!sXHS> z_Y95Td*Ztke*s%>H{Ri0)T*wRU0c?i9V*v&5xzxrI-}dH3J=mbJ?tERnz?;StoK_F zd7>|>OBt$tycJ)e#3*W~V`V-san>3XNb?-?locgt{QgmVlyg5XdpGcXV&ii#2=~g? zjghsyKpy98?1y3US#K;B7#0QAvJO}Rf&DO1j(6Z>+)019lN{=3>b`BL#fh^63B752+;==uLsvfepd}J3MEX!mZ`{e^_Cll$qjJ7ufr-_E5r=QJC=G6z;~LJtP)ZAPbBLkxHV?4l7p&6lXMUGe-4U!kt^ zZn<(=rokvtx4Kx!8=SSR^M-0^|D)&lJLI~me25pRIRsVGX|8xL+pHN2eJA_0zl_L* z5jBBZWCFaZ=3IMMassLmG&dXKvyY1Ck=(|wk75}Ioswqs5n6kMsyIQRr0SJa(c~Z4 z!tu@@st}*LbQ>J~K{=b*+S63LE*WnAC1hp?&!a!fdAK<9DLzMt>OM)y=!&RtacKT{ z@wnRT`6Mx}>sZz8F_izuQ|ZIcnC={z_~QdGMQZSxN??*V6bHQByP@Jo0lkk6Ec00W zjz1|d-cDO9UAF05Opl;HHdNGnI;*s{`@Yg0n8UK}&Vt+Mz6NE745Mr>3+MwD@Ct}y)Qs+g-#Ec{8$m3(dA9*; z^mlqbZCJ@Iu^k)vKOW2GS6VoS{mhVyogG^e(|5OOq=CO1=F7uo%cWxd%%*c@_6ufh zbB_URlzx-~-ccQB7^c(<#TL=${?YnV)w#2W?9pRB@RxEOInk-JF!pFAJ}%olS(J$ zS=mpk7<9Kaym;aPZS0qDrNk{%!0UMor5FBHiAD(zu~zcp+fsk{%6oIEgm+Bnr4=O; zx2Y>T3iq&~z2MT+jahxv|P2`%%tbpH*1r!lls|dLQ6K-%SzexQZ4B~LxIud~|gy{Y+k4EsVAe zZ0QLw#8HsDVi3ir=l~4B#Qu|>#j=>05V=NhY_*O@u-XN zlh#I;x6|D3cxQME2kaa-@)?%%Zvqo;jCcEa+ywW_!?LRa)jTD~Z8$Gxms$NSANaW< zb@;Z2WUFm9ryKIk%G+HUd5q_eO>=}?`0Nw(MDOII#q&@a;vvWIW^cet-(`0SoXTV9!j)AMTH{ z{49U*A>Lz@9Eg{ABzyQ8MdMOpKZ{h91)3VbS{nYFd|F#q^Xeek_((M`PLuF%chUeDnRK1-i+6SQ@YX9r$h2iS7Em{75| z3m#!lUSg4$DX#G<{`G&{wIzCI1BPO*pFe2B&Gz*ve9LKm3pIjY=0iohpWj#u-=W!% z&C~r}Yp&H_)5HQUiX{xs-j)o zp`dqJ8I~JzSSQLExRFP;8k+l$c9d}6n>tRY(6*NEc+t4nDz7#>`hHolON@gT{iU+j zT}yv0WFah}O7x@lHJ2Y5_}cA?yo(o~P37r15u_};>SehCo13xS_v&=I=D<6<=J3^GFu55w=tozk=q$p_d zOc92n_L^xvy^0mG)caq-e?OOrvy(0HK}6+XAa%(l-s>r5l7F?op12^(u@e=8CM=jX zc$PEe3T&sxFoeYsG|@w4_n=922qSWY_s2t!x67FvX{3KHIuK=iuFnsV z3sw@NGahH~C6BHml7qziAD{;?7y4RG1osfcZ5xHN9juzG6t902N!}^$dI4K6RR4;H zX|#m9?$wUbP{*60kK05gd&vX)-6zV?DwqeuSSo^_gWobq#Q#f`s3yP}$I>L2NEP8{ z&s*^vTi}d*!CL%7X5;&^vie_6)VjS;+5_5fFUNgJV-%-~Y^{z>vLery2XQ{ar+7##rLvW+T--uDi_2IRd#v=G zsnRYo&re}ggv!+wMBmC9f4g`9!Tx_P;u(be>{eEsR9urkM1@|C{Wh+woTHgkjT-Tb z;_bH^_*nf^*Qkea{X0dX?e>a`a-ZXA0L7~c($5-PQA92p`}?3=>tfSOkr5X<`8*{6!TUX_`%#0v7FReY1Ipc>ZQ(_%kAh(j&6KF#*mg*eUMieZ*Cqd#Z= zl{06fMMS$5d4TWGNZVV8h1HF)){}9PDT}C!be2la9C5khR|jD;ujcWDI;9n_J_<7* z=1zXa+7J3F53%;=LDsU3k9`=zlQ4@ul5M;0$^;f|KFzSD*d=4ck3Vqd##0JmZ|gg*+?;_rw8>N?hRYGF@E_-Ui8H74_2tmtDHtsP(j4PeoW&9^}wznm{> zjznVzkECo-Sq5oCT+$!pj4t!&2uq3gUR*(Mm1^5SuBNFZc2)(o#t@&T5TqITubs;> z?l-BR7qGYq*sAC0&+L@<`Y%}6UAU*~;G18=T;G=`xf-4pQ0xrc<0${X0SB!Bm8y+5 zHks1KV7N{Bg8N}@|2@}~{>2r1v@5u3H=bJ#ZQGmQ+4ru6okh{YxCIvYJ52brzrO6f z6z>JJZ5vFyY5sxyH9onV*2fX=^;LoQD*S0GM%r-*>1lr-KxLy!q(X2vub1Y{&ASLs z-w#XsEiWm*b>2D%SPHbXKSpZ`%rpuoDICGa+5A;o+SiV1r<9 z-SkT}7}!F1*;zGxi)+~hExSOyBhlIOwP+<|d~|+MpKOyqM_YzN)B-YGpF+vQUX?tz zStYh_y+0m;cHE~oI#vUp|DBS^<8(ykQRi5Hej@I9z?DW|75oODew1QHRVYa&71&#G zhd=Xp0*mgY2>ZCbRcx=^*A|!u_d;kef`OeD*&l)jy}(MAPbK-dwJ(mxI@i3pWdHgT26gGm0XthSS*nM4 z*=MO_PWSDHMD1tTQCHh(g68zYe6s<5pUbwWV@C{Lc(<$luk@m5+!hCFHa1LSO#2r2 z-lJeZ^{kR#LA7=|_d2>0ztRiHU^^XwmDDUU#oX>@$1O|ovAx!$$S3HJMOcUS;x9Nc zKSG)Y$${?)9SFMVHO1K-`}yQTwn@zGwFqdPg@BY{40ib@wx$mhMR z6`>N{*@%Ydc%OO+qV$#PD$363B?B>`=vphzN_OdA;ui~f_2ad+ncBCz?asaJw?UIX zSPnrIH>i8u05kbjY-Nu9JD2@2hrRWxeZQ#o-HA(h+TT8OommkNxClLjL~C}QRq_f1FkRANJ`cn8l5DnHBb# zWSqe{thcSK?r~!9H>+S*Xl=fYS5RF}a4W|spbnozLvD&JxZl)uNo2)-O5yD-yU~c) z$#mUvc_Jfa)_sNDI5LvIcbZ+BCu2ArbFdEF<_pKZk?nezJ>A>6E3##G!glU=v`KQ4 z-@>ze1X|I`IRh_oBIUzFu`Ol4HllO5OOEXt8M~c4YtkQVA~N>_kEsN2>TjOd99~K% z`_F2=&-*Ot7ae&K8@vtwqQF(ogouP%5P58{zItn+*H^V+ht}*c4s(j$W|u0AXk;`J z6T1&y^Ef+gENksWHh+7&Q%^q4RJhjD#zA%8+F`%GL5*&41a-!VejeZ)!sy zR(jxQ?&N(v!oqLIdkQ+bL-`aneCDcgk>`$|WR-?WH4{`pSjm!GWK36O7tdy$cJqD$ ztZ%!S+z}2n4z5?0)fewuL5r)NS(7B{^(yOR3oE6zS2OH){rvo0Tq;!fo=uN!Hq7dl zs}Iq&xL@wYKlmiwv2c^+Y?NUo-b2lzx(L);{%>u6EJ{^moq4~KW&5suG|Ac4YRBI& zrK{MpJt0y#;xr4{tI0gPyWvsE{_-|d}@%@p{RNEIvtGL>6Dxivm3#SsB4|8$-~@tQ*ar=}3<9dh6W*UP(6J=^!nde)MUoS@(XGRkqsd zK2$rm8hxv+bVH26-?V)_q<4qd?;_rJJ6_-qJoQoLe=B)~z1f|)#{1*O_eGDw=)*KJ z%d-M2S$9UnUMo9rxtY|S=F&XvY$QW@UsMBY<>$spP=1-fw|baG7wqA{oc`G??I3bk zQy$)Ub842AGN{OGl4aZy=9_07?F`d=#~M^#3x4$bWzW-AlQ)gRIAb(q;RXBoV^QqY zJnt3O+%|E=MQY|*EpD-*m5+VGYI!~Hy8;ilDS!L0IoXEKbw5jXyX$%#5?YSFV=3C4 z-PpS+k-CB3iyZzg8?%R1Z>V*AALa5HR=>4k`43?>kF$#Q5efJoy`#IVw^OY>Qyn+x zkC$NMzk!>a;yR<9=^390_3ncGpT#q{i^|br-eIjswU?F=3wDUP*ewz%pUaEbYrLGX zC-1b^J?Y&#viPF0MOyiPC1g4Q6FVsTzNq_y)__;+{<QL6PXvt|h2Uhx!yVS?C*$(F#0@pcOX6m}+FD zyJ*FF*!V8cBV)~vj*x}V*#+Avi!U(`3wdaBWGdEV`y`3~2k&gEwk%{{ET`Sk$frk} zSub84#$G6PWs+9EVyziytz4%jRxh#pS!x<3K^;OSKbS1fnTk*MMU%4>Fq*XnVUs4+RTdUeyV^XL=b`~cY<&KPlI^3`SgEC2duhv`H zUw3cHh*K=L?gZt=;N`S3j)qb-c!2G+)H)xH&2ofA_>#MHE8n&voAIPttGRllb_7$o z)&1>d4bEYU1}1cAEUX+h@kI=3@VA)2{tKJc-JXC=Jsq>EssCT&aSy|Se~dr$F?;q} zUeUd{#%IMK=86-X_5Fuf&+p^h)+qRxPtp(@yi37Qx^+Fy*ToKdNS5TcSnW4D>w-v* zUpeP$DjHGkV&FYxInFvNd>@JfRKM^JM%gTkt)QrP4OZ`FY|S|SQB&OGJLKVwl{qs5 zn|3F5--GH<{~z0SS%lv=7mKb9FW>@SsWTpXBJO!6)^cMyKjnE-pJJ6};MXYtG`9jHU;0Fd-wc6Qzayu$pxEdonzx4Yo=F zPQfhimrja?XuOelZDKbJgm}2f1mDY7p>!l}#PI*Gkh3kJcw!DDBtALYq})fHqBh(o z5o%uxl9Qb@3ZDNC6zFntGn|bS+>{x~K}(`Nw#8I@mNkj*Ltj3D@Q3GaOoOb%*)$Hm z_AG@%asYqf&IpsGZAx~^k<=T~`lek<>zTekEhQ}%@8db#g_rReM&VY(I^#f!7jM9C z;u1PVuD1Y-;$8X}w?N7MD$x%kAun+gU5ob}w+PnB0;p4|!kun!!Vpno2ubODlZz(nLWE!OY zm6DlKCG|`NJk`>=^_#3nuV z3GC}ClIV>u%j>`E6S|527xH~`sC&X8BUuV+>*`~&BCkW!d_23Q& z-c?EwU*k-SaZUeCe8KyPi610P@|nXvQQ(euO01BW4|BQ`vuK`sI|nvcCgBinQ%vHG z(7QgEFE_isG8h(7)GY?2=B8ekRxfQc_RpWm)l<&n!^G;DcKYvA$C{V03Wq7wj@=4L zT3fsnBx;n3u)8S0cY=Nu(catQ=Ri*L@Vov{(e-9X)pGT}UR3)yx_DpAufX+Mi?xuW z9&&Q=$9QDd7HfjvHJSFrmk`zxke4pS|3%Hat4g=SSyc1U#!e4&bXW%_jg!q)xL z`d5>F*G7BK8qW;O-Z(Mr*H|`3)l#hFTOUU3|1x&HTOvNmF-Lmj3ayeARXk}yeXJ?J|7ASgd{OpW<%PY?!(&bSH2+m)-xshhfZMFoTE^5h)^-3XvjP zvSp2IDJ7&tP03b5$`U0WqC7;hMubE}L_Cy;h!Td`$1n{4_jUjN-LKIs_wrq?<(%_b z&RCp?#@rzGt7WY9n1^?;!u_aWH!6l1oW&!ef5dfgyqat|E)ti#e-Dx6F8woR$dr@e zQu(1C2Ow`9?F1d+ShHYVp|e{Op35?>KY@wbP6iNsR8PyQ2g^=Z$h0e}>nxCeB^oou z#D=T=^oJd;yOA^64pv0A`-!MBbOo8B<~&8U{xpv49(AGv{5l4}=zbI1g-&@wT2!=92Kr}6*~{tj@-Hn8I|{D+Ej z= <>^&8Z>Rih<;e(cf=l0dF;A1?7iYoi{c_zJqJsB^@I76dZkot3#bKfCH8ZUP$ zrGMm9HG*NzaK9X&i%Q?kV!2OnQTNHgXTSjO#e}|zn^q6m_Q$H{m0iVx`I^~}=a^3= zUCm-DC3E0Z-`N4Hs7Y0X?0qkz>S2eQs3sH8&o5ttM|y|$P8aF2cUf8KQ<9>@=}$FVADx2m&c$}oeMXov#-Hk&`;Q*}%YY_Dp6 z=$Ui?PEuW5|EptNBSU--M)JJ(e^Q)K7whPtnDsnYuCWle?&8^acW;LKbWNW7jx6?R zpEF0UHAX~m(LUct_3ky5iS4@lJ}2g=Y$WAEXugw+)`RK=FVpGbl0%WNd-WlXhYGzW zYkE$e6|UMG)s|xTN_l4eK{-?dkl%pQ_VSvHg@BcTbRCSWKgFz0jp#{#GUtoZ3hbqFnopV5jCS#P zSlwzr_ZAo4BX%A}>yV%8NKp2iQ0>106Kh2sbH~MfR7mOBi`3yybJXsu@*U#SgV}4T zL1yMm)}8DswBZ(Bj9<}9HoY`hY+P8xJ@;a^xc4$_pq`5Uh=>oxy;*ZJU(ft9qaz(m zOvb*nne<~ZX+0^&rcl-&poQN@QC{%unZaC2y!a_Yilzgd%VG9~50@(YbF zOuf+V!i)>`{XgTv>l`O`r_@ZH%K>07J^rMWJ}HAzs{8IY?{S1qzZvEJ$&?#X)A+IF8q=F^!fScFDEA?KbQQ?xhlymk`E<6$r)mL^5x{Q=Qp0;b$%T$f?^kP zFMNBUGM|Z7sgI`qn%XpN5T)Ga)CW?pru>;QBQ-g7Y3j7p>YM`pz0mQ(UOor^oS(%X z;ji=E`BNNm{GZa*ZQv5{oO561I(?G*N$M|NJ0hk3h3yv_r%dww4XNY&wg=aO29A13 zN;B_!E^Sj<3)gT`%Bv}#@i1tgS}m<>>OWiz=J33z=885=JDNHpHI)O$oYYA^WoUYv z^ttINu5eU(lk|S+$J5TGl}W!l{o(Xu=?gN7Wqh3;o4zS+E#HH$)8F!QT6#gM!a`ZK zVJlxz7e2*HBr1ZntjKyfyKeRzxyg&vM1L41ZS+XqD8m`*|CMA+NmN#)E>)w*97S!{ z^HNLhH9t^N<#0Ful9ND^(R2Ocm5U$BJ>nwz&n}d+pHLH@p_6G2yV%Q>^f{RBaX4>r z`P(-#z5(*WhgGs)l;!4A-=63H!EyiDE4^eq(|xt@Xq~&+jZW(9E`_~sjw)|7&R7}UjGj~z%&&gG%&NW`TYg!- z71o6JR9eQmGlO4687$eVGnPa8OQLA~=uKE+K za-6I`OYOZPW=5P{w7(kIeFeU?QdX5cWaXcr${m~(|4}pjpM7I?WW7$erlrX|b~%C} z*2b_-JtfBoy+Q_wq1NN5)v^9Z6>6dLOpk)YWg9O-e22(Bj^MrBW=*bczi49rNU~GZ z_l(dTemYLk!{W4Wb)@+i&$bhe(-R(Zu-X%_&^pK6p>n=hEcQ!WeX;l@9b>NQ!l@K#m*$yh93(edACFS_n} zuF~K4jA*02>o`tr>t;FG3-lX%VH0QUEi0_?L+lw-F?^~+t)uX#y5UkKVRG$=8!9I_ zDykk8w;bl2BJO-#ub9~|=;4s)w;fr?m)gdqKm_tIVmrAezo-BXfug)%ogV>N8A?Af zvfw+eUmM4p5c3`1@}Bn7h8#10#k9>2qqtesGTEM5$CdsVmnuul`Id;GnA+TF`_0$( zv+6LC`|PhjaC1K@Ug9*!1$2Z?E~oX+tIAoet=>78W5&8pOH~C!Kb-iOezLz=?$2?% z=VBH9UTUFnDw3fqOO$waSj-C7Z>g?9yIjdNxJWIX!Q=MUJ}~moDL0==>NC;vjh4N# z=er}Sk8^OPK_cHIyH>RQ{Zmotb~$o6yJv3^%SfnEQ@i`;_Tb=l*2E6{wPO$1#$S9d zZl!g44QuIh@k&XvA#^_tanbzvBMp?u7>(>p-pO{Lup9nI`-G)+Ed;0`Rcdnj`W)P^J=rF7q0CGYJ+oVk9zz6 zW_9?{Dh4y{x99Au@$&aX(MctI;kwurP3^a>^`~taIk$c0Tn&EP#JbVleR;jxXTu89Gifx5N>76rz`B zOl0Bt4szv(!Z^-}+Ukm|!Xr+s^@;m7QNGdJ{a&V))L+CJ`srda9%Q{nCxp|_qS|63@Y>m6}1`w5!87vf&w%5+W+p_9;h z>gIiImheyqJL2ajqh=OBp%i_4^2Q#<#uh7C$G` zUl+YJfR|Yf71EB>!4G0_e2rbw=3-Lzz>5c|CEx8hmcVv%JvNm$wdDO?j7rrG8^m)D$jns1UQL6X2yb6!w6n5Ess^`$v zr#L^jTOoLNM_6K^OUzh3Rx0?al{+-T`nU&6?Gl~sW)<&xuI~EWxw82~;`+fDbTy%V zwPA!CuiOX=JZp5_3OBioan>|sSNC(GqiLvHX(zSsH?ZV} z``uupaJ2j&OYL`#`?d2@dpSoT&pCN1$7|Q?RGJ9A3<`kX9C7G_G}SC=M*&df>U{P3 zBJRD-r)ZXABi@1gxMmc0jsDRM^h-Syo-nI!fxfO(UpZ*T9pgaIUkxQx1M+yL zcZF8mCQqt_i?NqdV~)L`wRO7!uF3miy3mhdl4`;{P63BReFyOqCt=OJ=F|Eb%XwyL z&Xs8IlO$3+=BkDs;q|#j-r=a;HOp$@4R%xi{)~5jaJvtlIzQ8GFK~4#IpZU$|DEMW zckqe$59NDT46B0X!bv0KQGcIkTz_F?|E;FJ+58)BbYF<{8Mw`FrkJ5s%&VPdQ$3FM z$J~*_#>0y~aflhTo9E(e|Bf;y*IddqOKTXhX&6Y;VFC5BCmG{O*)=Kk+sVl`i?8p- znu>Mz7jr@RNME05G`h!mVI%MY~79d3v-!(@3sWHEF4)&4jl{R9icl?E*xlP&I_*cDDT*l^F&|wv@TTV zqS-t(;^$GrYO~M`YQ~k|Z8NB{73dCg=neUEF5c_2YD?=dtO|20ilL%8Wp?z+9d2H% z=h|4wde+YoUxFG{;Fl5JeK#kQHP(+)IfEcFaUO$UGP}&IPjd(A>Q1%-02ykefNj8zl@sR(^uB=EBI9 zcEjGVz=d|PR^pdvdt)_t;px2jp1%OLv%)iegal4dBN~luRozY-YAWA|*XqDe55YfA z;f&R`W3N*0JP!qZQdH9$4{48C7&<@=G|Mhywf*57A69|fZNDvSXT9BS`L7-KE-aJx z?X2ZxYAa=B)n#eT9mROHk=t}s`2{;SFtduNS$;#A{;S9^bSl5%-wZCZN!SS`DTDf| zYz1ZeKQuo@MKK>@9rdPwxKpQr;M@Ihp}u1JWK5@V1%pTTShhRQsXZ@~SHyBbZYEQy zTIhMM!IOCj52XiqPwYKaL|aAGx}y4aX-d1+YSg9Z{5r@pN~uMU(F3$?TrZLD|8(eF zD!zF+<}l4bDc!Q;lz4l4TpJEH%6F^AVO3G~OpwcrG8 zi%cmJRKgGQ@g5%k8HeeGG@DJhXOAy7l#=F0U(VsYoX(rzq;8o2g)Lq$CZRpe^v2sdPwly}By( z(dUqe1#qiO*hYM$_iGz!){ne%H=mj2yJJObK`6F(bu!3 z&L`dkLAjeEHU}bd-D_WihMd&f;W*XKP^d*7EUSItyJQ+qK~qY>4ql);Ptn7+7q#c- zv_FTbw_-V8_l)^bRNEU?P!FS{F(%p|x${E0_0h(`CMZR+zm|(Q0`xXYf>!cTdE>ou zv8_f-Ij@e^8|rOQ_!`=ng1npC;9<@7xK&O0KKWlob>`!kb!DhKm&+eNSD$U`-*;r_ zt#yPLt)5#S3oWR3UgKCDRj8HRXo*^FZSQ;>2fK81nfy0-#|EmKhvfeUMDb4>-*fys zUd?iqk-i?^c`V+*332l92wSMWXtd|B)eHo`m}_7;^e3K3C8s+@>yBT{Zhx zdDRW-A`hyU-z(F~(Vh7m^+J6!_?rCXNqJNktHY}*EstX}1mCXTsr>TcG6a6ZH)87~ zpV8mU`xzgz6wm1{SZ90GM=Rk7q*!4p>SfYYto$+l!7tQ{6Y-(9seb+?`t543FD7o- zY;A3254e@5$VVza>me3pL>3>3h8AP~hdw&rS|Lt|9;#te&%Ao8NcA8t^>bX=Hrek_ z(*sQL{o07OV2jmmGS2KCamg!JUv}gr@;;N1wS_#4be>OKD~g$M-o7(}rr{g)(O<-V z!|nW?a1-WpYncuq3Epa@ctO{JJUrr@L+83`*3WTP${Tcl8jmq?3Wl;?By$mC;wSOO zS*vUxnZh6XPtJ-s(JY~=jK%P-%Q38*bv?lf*g@=+$X9Q-^?$Q2HlYjlhpy50x*hF` zu+jF*L38A$m$`IwQ2h!0F8a$(-;m{8gVtOV3w`MGA5=eHJHSSYj+VH-AIhW}as7P2{u3g=vKT3^!-DRxi>-FIt6}m4 zwtXRa^)w8Y39|1vBfdSHznC#ymTERs34-$C6U?NS>|c9eM2kg*O}THq=u>BS1m5)n z)GOcPK2*1J*Ayci6Z-~ly{aPR;2&PbBlr@|@)i6RXYj`9$^GhS$|6O~upjPn1GD|Hq-{6}7L2QR^0Mpb_LlT7^mPsA4|`BzOA`z@Cn?Ux%h7FieM zY_vcv^nG4PmE~SvdrecqW;}n)OLveHd3&J@4m*8e-o>} zG)Dh3GM#tjP|wR_0^8)gzy0rG57|MS3T%=b?J+KT-{rh2`*~gUzP&MjO*QqJBkUrM z7$NF!Bk$z<*shxoi^LJT_6?;JdjT#T~&LzzXR;zFJsbFl;eahpMT=6 ze+0}qWfG(7Pf}VSP@r$w%9$_yEc|1P4LOjioc6o-YDKH$R+F!zuV4xyF5%IMP!)a z?^&+WeEIRqyuW8U_UYdLrresB?-JW>7OTID#S?q+bN6YWH#6{(R*MG@%6ccupu<_^`IOqC(Eq8G*Os3Ty!f-2wlwS{il$;Wo>23PqiG9r z@PS4{VX9?6!P9GjT6>HubpB#j*KRCk(fjUg=tOq6C_F{p@B~k?nm9vSF^3Yf)@Od4 zxf>4iXXXc4wPY4|@|#CK^@VbZ{X{Z=)VU} z(pLUtbL0)%GOJTiwCD2|I<(G~QEZSIY@o&1%%6Ns=J!5rP3B7eP=CWjb-gJfPi`AxlTz69s<{;qqtG7p&%wZ-sXi{@{3J%ci(ks0!e?^bY` zTMB(Bm(^5Oawsz@>wBNon9t#4*-Y8Yq72WzX~43s0x#2sjhkyjiK@*U`Ye$~CO3csczv@L>q?-aj&YgO%PX9}Hz zpR#i-w8s5=HP4zn&i)pBVH-gKf4H)iv)5--8C$Jpzv9v*Mh%8h^nfNdQX!mT?~WFe zH^j7yi7>a91+RS1=!&~t5Ffmd%2*G4@HbRR7e!+I)*^tG-eIIYq#hRH47v3JDET2f z+f!EC9-{kt5d}mPygjI$cB!k@fOdYNf8+_T{X^7$v-rNZ=wh6oo2kQn5s5o`i!C~N zEK^@iQqdfYYrM+Q+=LDJ8XP40+8`Cr&UWIxy0|V=ovV#uSsF*8m6g8{&gf3Nz--&C+eh% z^{48eb)nT8u<`d$h_#~+%cqmnJoU|9(ficv2SMF8K#^aJ+JMKIj+;;pFQBcqPvi*M-V!FICDd-t#SJ@%=D>E70qo;5g+e2*!!sj{3Kv zPfdno94RnE%`@s^qq!(V{Yrdt%?Er)~h{XoUmz zG$iE_-CVv_SC5u~%)&(O?wN-pomF?pZl=Ra3ge_D!QW>(o*LNCE&Xl)9N`X3m=8s& zX9}jrJnbDj#@-GG*%R9VUh=HRTD~S1^@~{qJ6VqHGXz@GO-y<*c0}9}egpr+_2vq& zweU3zoZf}&6nO_*EQM=L8tzqy+>H+#3pTRk*w867D$faOSAjoWuZYvPJ{--a9-syK>)yn%8HcgLza zK$~Atm$!cS8&zHDrG>i79y`Ol2O-_rlnMyTEeSJ{^*^#(R(B z8_*2>80s;KH_a5C>z0<~@>M}g{a@ZlQVMhV62)*jw zhguBa0`QB@yNjuYR+*ub$lN|#Ng;pmj7v>9ZU zd?sJJO7pbQtohda&WCvIf`^rXjs1WbbT@phIu8Cvlu!-){tT@{xJ)G6;kRHkDkC79pk@k$rUDvx5y6ox+r7y8YP;AzLYf>wWCgrilT!r(I) z;Z!SBYwJ{Qba0XnivQK}-r*iije~*uLhXp~ik7*DEj*U{%QsNr{aC3ztud**^Uldm zR~cRVJm&xxqq1_;@9234`1w=6FXcC@J#&He?Tr67^qi&;>1xo;Z{VaCRAG)=FURR~ z)RhCp%N{$8n!K1F_+VVO-nCOvnI#JzZ5+iLT|Yvq_ZuO5H@Lq$W4 zCn|sN=bueI*UD)4m?~u;j&JBDwVx8~(a5>Cg_7;2O%7bBc~;pqR?6KFt##fd*~lpt zJrEmsim|j*=G-j8)hVQ&6*|Jzqb#|}Us|}A`zVs~=erFfZKpkS+4V8F`zL4!0&D3# ze4%&YTz?r817&L2?t7lsY{Cx+wSXl2vE>-c%kZAh&<2f_IhM1>Y}0dTwR+qVNYqt3 z-f0=mm*Rl^GVFOGfhXjgHE`Vu8Vlty`HvbA+f~h9gi3vAmwegiC?vys(f%q3wRdHU zBr@op?iY`ICAYkS12JFzd{(S7S1dCP;&fWfUJmzXga|Z`_ijEBX_Tt;_<+TT%Zk7N zR>+H%ilk4F+ec)) zL?pkO)^@c>@FYL#5qR_4a7cdQ6#akkXr>r#s7S4qNV5|M+q3GsiC!^ZFPmYiyMNR7 z))S5XEHhZnxdNjDGhV!?22OR9P#wAtkELVo$A*~&aCRihS_CtX_|@M!{4il%CmR@ zZ*`?#;AuS@Qa4$&{DN!zuSocJ8Rl^DaADY2@FqSFL#s)XeJf0Big-JP%kk4Ph)Eo# zH>r$2r$Qd9UVjIaE~p4*$|@d^Ni5B(mSOa5)(oQgQZ7x@&|QrSxYb}+}0`=>noX37wDN3TyNi-`Dh^oh{v&2AhL#3mrdePCVUs3FY{$?*x z@vT-(I{g22hF7?R28Kf4h$6W*pCk}X{*K(I0$hn^QYBLy5bDKtXBUd ze0`#-RymK8v{w~m055Uw%CFL24U?%APVH0T_gC#r|9Z#&(}3K9w;P376*$DDu^Xf5 zI8xLMw_r;yml-@M#(tNAZKyrz{pj6R{;pgbHmIT=q2C=NHcp7nvtu^4UY6l^a$L{Q z^Ar}xqram4t!~YqXBQYLj_7LNT8XVQ(@wU-Ivaf9CSqePj4)H?h`b-cVYpd5-V1x^ zF}?7v*s0stb06j?7TivUsz<))nud<5OI)|mQT1=EiYH_)m*Exr{55b(QpE))9QiQS z%obGUw|bW}>W(-u$vlz&*Vg%=cJN2U{A;5d+fVw~O$s@u>Z-P{`#E$)`Ir;S3wSxn zjwWb(+uDbl+qKhij82HtKKCeBXmO#LvB%VWZ^eo^;5Q>+6HPrn=0X-K(PQmc`|xV- z$A`_qg1X1~9d&kvBfI$?k^LH<(HsvXi&DEK6yrDb=(bo%w>W~g?6x&{g*1SK6ft7n z@mP)Dl1rIBm45vutdQfz(Q%xzS$HF7@IY?Hw0+(yJ`k@Y_`JaOZYi!x(aUfl@7d?X zmt{qP6;;q%#7yAhaTpsaRc6yN5>X7o5$WmkJBzu3L(osoy{f3Lwr4Dm{ro6qm}rNd zC$>0Dk$DyyB+K=?qrm5`Q^5jPM11dwliK;j$3!>FqoZ8aA^O!kx)qcH5N1cf?@L%{myS*5%|&xvZ^W=G7aqWfhF961959{L-3$0sDtrs z(66;(g9Lcm02TKrnR4jNdl}>EMVW3fUp4-}*0R35cYry5Mr8NRwbSz3;ncL7)b@+x zxE;oKYblc~hJDxsV`q!^kC)B&mw^w%hM9<&)Yg4lh-=e=?)6P~>Q?JPw$~@QzZ!8tmu@}Gh2HNzuGoYYs$G!z3U^!S}BYi}=y&-DMGN*E{lxoi$p_fr%`bEp&? z_v)D#H%nDq1JYJgq|pL1X_dN0Q*5Rm@u)&IcBvKPrE7OkPlR>wW?mR^oqY!gL_#$XTS<;(3#%?Er?Thj#h`* ztQK%5W_q3#=3Ym8o1+a*+QDZbIEg>uIX7Vj1*T8nxAk!B*;to#t#YAj`YK0Vk0Zhp z5XDjI?3buWuc)aES2rl-F3vLEF479up-&FJ%cbPYh47F%$OumHt_mIpU5%!7xK6L- z@9u7GqaWR5RlY`bA6yLUxTedv7S0!k*O2?qv1077`phx28W_{jMst57?U=i|(Au)V zJe()a{0_HksWWP1#8fm|k{~rhRc5;Juqcb6w(Ht#HIIGHWw<&_TYR*@NIS$?D=58p zSXXO!&vklMeJ)CUN31!+y`K}oe)d_1k6}(E(6G+GHq-kIkJ_2WFLL8*Bi-z zZZHmVb;@pGjcg((*<_q_;riJ=qL7(yKlnhMDOx?IAsnflYx)lU+B6#A23-DMx5qtC z_r8j9VV6&?CH`$9Te`>Dhi=~sBU#H7D8@N4_I^y-PR8;X%JJvaXXd+JrR6h=R4ca2 z4ifM`U&Bu8W({g)y{jVwo9D`fJgk>{aF^;$@Hz_K-h<53&&=^fet*&3`AHV|FZS$Y zcPj%E@&}Q9Yn7mR*7$gOg=jPIQKNkfT;-_j@36n*_~{E{;AL_Cq=;I6sruSZbGDLa z7mJ!AGn--#)bP4%X5MoDmh#+c*oXVwk9p=}=(hc{YZjQ4@y_v#u{p_@EJ6hn^t1Ou z)xTHk3q4k!v@56Emp6+3_qroz%>0G2gj827^zaeYK>xsRdR`dpJxr zmHa%&OG(;+?Rwu-qm|T4~m0^ znAzq1Z6@rkI7QNSESKOHxv?lABRS)T^sZw2S?P=Q z&x=hTk=8eDLRu%?X}V|pB(8tg@2aJhOU=^9??TE`lmPdpZr1OwEB<>$-S*zp!|x+J z_crP0aNeWRA51^sw^8Yns1goi$S=T<@18bV55d{Gc$`n)O5=M`-<`yaV|sdgo>miY zeuoTWetJutch<=&V$&=uvT}%5-Ia8tkAD8Q`g0XIyUw=x8Pjz zxe2-|wn(m}v*OD-F5a13EqVXBY3GKY+jh3-*)3;s&on%<<7}aGL(lC$w?!YwNy%r< zwbqfbn&)mk*H;I{(|%j>eC-Q^FTAhYW!m{Z=gXW=PcG}78tSt6>$&1OTlP42Q*y=R zO#fEV#c_7>+T=~i{iqX?=qCm^zPc$}FYLL{*)ey#uvyo}n&;E>c8vC(Kly#$g$3UE z3N=KN^Tp3k&@uC#Yk0$x3c=VU(WVF_szMcbQJHMzxl#5UfYKT zqjE~#g%@<<{E)ukH&@`6l(#PIIzRJ54M!UKaz5;ncIXn>&T;I!kaFRnl)3Kg$0@g^ zj!i9|S|N3HYFWLATBj9tXLqDW>xVQWV`F;9jK?zmN`Fiz()V>U-HOqaC)>--Xqx%9 ztT7rYve(Fq!K#YNIv~$$AV>RCZ#y>De?l{gCl<+}K=C&(gqi*JgaFAL>WxyN$i| zX{C*^ytEGK|4kp0v0Q(r)fojdAH^|4#@6sXH2PFcxv`zr94(Hyky*4^dVOSh>gypx+F3#uU(s*mj$ zI6vpHDBD<#9;R7Zj|+Jj+BQuFcFCt6lO;CLsVPy`SX-|50R2)>vj@i8a}dT%KgU~r z?z1|rP~mtBc2ZPLWDRb?ewfUgkj$pJH(1|B$(}FC1HYFUu8eel%ds|B>B;|S1YUBOn|Z16~%lg;`m#xw}DpkGLhkl8-7vM#UxRxRG-@+=i$4Dn6a8VS{mKKqKF1^ ze*S0dsG;*iXPWr)kdIK)gH(Y=h_--53^|>NVif-eAUzx}64TVc# zbj{+tUNLqpRYQ3=$-gS}P2%Fz;5(_xFW~w-0e%pr1H@wdqhgScxe$SXecVVn{}^ZD zKDb(au&{z2egQ4|Gcb|O{DtR2B{~%S+$Ys5vYg-Y99ThMRQ0FrAF0;A09Wb@zS7e? zf)Z!HpNki+t(U+jP=wDR718QIzy!jjJERf*+8e?hwtiQlsYk^Wul=!jj_w0Hb#Hhep?l)K#N&y{Iwjnm*gCOa zLW6`|2^$jrt6xJ-!Wr()%P9PlN)*tiV3qzBgS^wY;zPZ@ONsr(PteTwEe2L}yRNPj)5AFU*I{oo{r=O*?KMN^( zs#u1zETtF4C_nvDtP;QJ1;xu1@97$>E?&CCD%~E^^-AdGxZX_|lXxW|H?dF24@;IW z*}UY@#Nmkz6JJT}@6j=Fh2!1kcpLk?wk6(i72K^f(zpqPpIH5^GY(leyyb`bJYw=`>2_>fM?~zhs zvi=qY^s_jYkm8ezmTXe8PRYkhW+cw!D9|f$m(L1*18=zY2b|@J;@e!4*{)$-S1-o* z1rk;yEKe+3a&pNII#%RxBDgtmT;fHKQ;Ay=A1Ya?)bLUZN-Zt*M5&3TI+ePiRELs_ z+@&*)p`YVCRHCl#AUBohs{h9)dT2~CGO~=<$GJRIC|;WbLemm=Bvei4lTbUci6i}= zBb}8{DRCgT?loRHpv2#ftgQR@N%0N(JQPSc>@{PHFLlK~UH~_(R{1X?znV7JpF}k0V%&m2~!qDqh_&CAdxlU7sI} zp??y-b|pva`!TNg++s7}iN~ReRdoA^F|%sG4tHS_mNbq(if{{4^i>HXe?t6xoitVz zsp+?Ki&pZAZ{uGmHd*J2OS+z%#f{7=Hr&ySbRIt%kHhp9X<0nK^P63wXNf(<59^5X zd5MWSRAgaOb}*;EDSoZ^r#gWgFVQLCT#1sdO>9D6W2AV(sDwun2OAAT6ZUzRzQ#;U ziB82Q<6^es$8m;>c~?khFTUw{=5OmF(_n{_pnmJDmXF7ckNco-PaMY~MY}u3XYo9T z77w2554mOwAgulMpt&)=9|mMc&g26*K%6tn4-|PCPqejpKNELzAB3{BYf%cOniQW8 z@3V+^Y43_o(*@*hXHbF1`r+d5m*k!IEkx8CYOtr##%=FtHq|eqIKM@ zwwR({#t(tSe#jl-eJjM%{3qI4g%Yfl!6$xOk)4>C)485+iJ+t5c*aIN+Z(tOXNo3S zb!zb-`Hz)l9Cwm;d8(J?Qn3u0+5*>fOOgNKb6zn*GOUsx!hYX!_HBLMTzBcIVvS+J zdCufpcl(w2zudv!VaJJ%uVMVtI+_%4_CG{$+GdWebo_sfy7EQe;lth*BlJ6t`}3@? zMGB9Pt3%z`L{E+%3Jrr*CfKv8t3|e@OAmFRrRqS@+|NIvf_p^0=P6a7XI1U)()nlz z7nkZB#J=ayGK(^Q9hCB-oHIk-dNZ8Azn$}Am8P%YP0?IrDn;=A)e(={yVRcYb#1VW}^fg}uv?$V-cdI^nwVX}pd%4fK9rV*u9Rp8elKq0Q)hK5%Cf!Er zqo3d^YyJC!s5T}0O?b&cI-~l|DHk_svPd~F7$-TF)9{HyV%4woz=*-ri4ki~@cYp3 zcChQX-Y1oZ7Hpzo-VQHV7IDFz;_vmTT8bJYU!HpaQk#9Vvz(hOY1 zr|5Scg{gca4^NbZS8~pQ3D+Lxv6b`nkC$hwx&@6<=xe;z{XZiHKJ0H*#Km_SKdF9- zbM$>ZBS~%G9xAqMcO_LM9~^6sc(>}t(Hv29Ktfu0mjcfEw3s<`?W=>m8JtINRL{Fn z%zs1$a3CCKu1GrS%1yb=XjAq>vu@8BC5z}qi&YPsY%2t+x?CtfB&(O~VX=`_n$D>d z?Z!)Tg3@XjFR3t`#vofw{gp%gwL;di5AKz2Onr?{*gWF${Vw<6R`9McN<)|EVn$^T z@6=H?wA`J3!5s}slc)5t+z9_^eCbO#=RzE`{jTaFS26`JuM5uH2`JfQE?-%=Wq;~& zTMkyaAgh8-oy)yrSsBWmGKe0ShXd3=qFw2)yx&|IN8L+Peezx->@`fm{SdW=GP`o{ zv;NS-_9`7Ia?OG;#_wf;wP9>cVVw=-f1m1s8@$2pgx&qDX0n?G?P)B*D->-zF0MB= z7x7z&#rq3AuHVG~tt`)Z7OOJXEW6#PKBn{aT<5>t^A4J$pL$Jtb_4m{036ZMG%&@n zA_q9v&{4K2CgjDO&#)~!!|_Vfnze)V=F?*}9~7+>Hf!z6AIb>pz}LQaFWyqk`TF9a z>>2RGX0p`K(hvv^KjR3JiNFE^-~KKr3Uh*bGfCB^7HCe=Vem; zV*jJJnGsSwX~kl?z(&i2YauA zbR)}UJ8!Etm&aKCQZ7_NMiks{Q~fj;D*lnt9{Q6$!YgAwu6cRd%-QDZC|O)a1amK{ zGS?fUeU(R^nqP1vdrL+3I9I=$u0N|1_jbggrY}bL2{`>$JiWiJOo03?atwLq@ogA& zXRzpRR)L*Dty>+YwLafcHO^x8mpWW8pS2TwYsbjSe-snqal66<-UPr9)-y({nURS%RQq)kL-0pgHvqJB%e&6o9e{}Tx-Fx(xzmB=OG2$lq6kbF& zuj0gOojIfzb+7Nr`^v}($n1VfySI$uHMCY?1v#SfaOC3qxTW)q{r#ApyUo5Vb8!CU z4m5$s;0oX8?NU{bgSuRUb)Mh=vjX$69fdy>Sx2n!(+qiNPxxZ>}qxzFaZF+r^LKM3s7{AKXOdWy^1 z!e4h|25p28wpB^Ug%He#`JQ&ae&!ccjuXdQj&`RyNI*jlLyFqLv|i>3eo7^#8O*vV zCTd?y)!BJLhuc8c-Qid;q3>;u9jArLT7q4-ulW%hsk?_xw9lyR)S!VFXEZ-@b!Toj z41;*g~=3{g*=hlv`-t*EN9Qjmr_cz31bB)TDG~xrTg5#`UPg$$V z^FPhuezh5DP{ADtUajYh%K@rGVJx**=^1AZpM=Cu)-~h}2*Ycbv$M_M9`@M9Dpj5B zv(qBgwS!QDg4V2GIGFFYX3ezD78GlIbtOhb^r^XYPCfq}c);qbp?CP{ynZm9icpBY zkfU?F+cS;OPH>$OYD4e22hH5Ak0Cc-s7_5X0{hZkY_+01iXYJ3*#6uo-=t^ku?V~2 z3WRf*_sPchJ!BNUMW?q~XSEo7gPL9w)V?FEAb(ov%Q?3v%+Ip^7P_j9q+c2AzC7aG z+gbbiLic_&U!$$b`@Gkoh;P#>SXe>hC$Nue!vo{p;d)-zg%8%m_Oewu z31cAmz7K-|H8ze5!vD7MJP0l>|AXvRuoA?2pJtG`j^@-X=xpeDQ#j(Tg63o+r@{y`|2)TBX zS2@5>hntP@?(3j!3tflV*O$6$V_c8+P_6;+>0B7!VfgP7c=av_>O_cTZ+EZS_2==c zM?#*$DpJikp2tocYZexO5|7G1!Yn-DeHxiRsqo)j=FS)H^DjnRd+d<5cI5`{<2C5) z9G(_GTPH)uJ^14GTxruUrhM2{oxL}qy={0p!u#( zANn;t=v*44@*Y)<=D8xt;a3lt6%DxY&!biT^U-p>FCzE{-n`%ZI1kHOqW=7}$n;q`!}{Fw zSaa<}3-{5|HsUE<-@IxVTsg0iUG_R9z^&GZ7+K0N@o1~dlU2$e$B=tJ=N?h` zlXT;O3-tn3$|cd$Ln5;Zs@QK|>d$Q}jZ4BJvFH(z*)S1q>Fh>XsIZRK>Vj~AhK5uew*_>Xw>zas8#UeS^&{5Sd1d5V_)BFMtL z9oFNYjn3|Y-M50j?I(_XqG<60=lO+bv0sGiw?rOzIs2cBHRz&_xMo8{86#yD+eGAB zDdQLAoR-UMg&v#|H{L9=ixd6T^|eM-ee2aHt%bS9LVv69QBm1fc%rrYDS<7l(D{IWQGRi;n z8E3^tWkpx*#59FPl*1iO2lfBGdURyV`}WE77J1C%__0>Llx{RV4K;X9*15?irieLD zi#PwF{VOac4QqZ|Osi_5kQ?md)o}r~aRN-SUN-eRUB@G?%%iN4|N6X2M&nN+yhG0W zZQfOz&5A>CYgf((=bUAKVzhX!QpYZlN zXuXKD@H75Oz|?=WE>4Mf{a@5OdL7TgHMrCdQN@PN1y5rHgw?PKubH>7rpAkW59puP zTbGB&J#P}m%|e`|eAqc9IK(W}k6}0;r0vlU7TACR))J$5G(LMe9&%;u;L%v@gLtTy z)g8JiG~$a0TlsiQVf`8>Ko*wrO}yZJUd33Nia)jucc?L!tnvj~;{}|Axvz;J_N~Ql zWAU-y0AxeZD{=boT>n(a+Ox8E|Ro^|!u{Dl<;ctD2m-5S+rsrdv zKDxoZb#QD$`tz>~-5i@2dql@viDm3qIK-=Z56*|Lbihtab{FzPd(QD`y{}LrrAW|O zKS*C)q44w~{d7BwFLIbd`%c)z>cU-B+!nwq{^SeQ(EFEmln?VHd)b|<7}EoG^Z>`J z_Ovfo-R()LW+&bIrS`qecF;dWiOC|!vKTG%>{VN=T6SVgas7`}tic+Rf=t7!E({+#<@ zV?noF$By?hHqdpsS%%79S0nWz_Rr&ZLECjLyaU&+jybR`DAIF{LQ%)JT zD?M|IXkxosV4jgX*sdPj+%C%W#!)6DQzrB%_@Mp!tm6&60z2ccjKJI*S+J+EpNroT z`nL`Db0t@29E@!j4}p_>0@5hOcj)!lk~(7u^z3rXyRfeg(65|AgK2qc#l}F$Uf?VI zy%BIW?m3G7VMX%PSX)FeqFkQ6wRImYr^oRi+W6*FB;|FLe8t`Q2x51$aeZ2k;9a_; z^w+g`IhW!K`XAS#h}lDVQUNkGr|>Ej>-7+)Cpi<$sOiUldc@Sx4>^X< z&FG$un<*_^!p0Em<@B_tA zCoapA`DIu2sII#Fk2>~ZHR>vGy}gjTxQG)$og!PE`N#U(ch)2NFKFSo*g7;*A4X2PvQVCs+>!A~D1vuXsUVEAJM@Jpk2i&1A z=ux`CT>74>=nmST@V=qP^-PWir_A=JcpS8MCBE?5SN-&vd;ERGFL`|2JgTD4tOCt= zB|l}INOJAIjO`P*Fz&lZkL!OSvkiTI+qj}}+aag_#!k}n`Uo9TA7d0;JWsugv+)zER5-9G#=1TbX1|AdE1_G%?|tbJqoxS z8ltCZL^fFIzT)Z-y2~|*YZ&`L#9uItKgX9=vm`pUEwL-OcP!!R@HLH6aLQe1_b6+X z9*G-T8IIk-Ouo;24L#;MIoAK{=($o(nPJu^o0Tb8x98R9LkGE#uTG?-jEbtI`tpnY z_b##TqiO`7iDH+iIi=!Ut)#)IEx!!TV>4vBW#z0T<=H*q2ceJ2;{_gocprfxe1pB3 zL@#qe#yZH1f1qGWWW7m}jTciJx*>d^Nk(>c|#zLbt0Do426F1Eto zgP-IE`SCfKPy!BL8GHPjqW73sAP4zjcjmiCXf&aL=;ha{w8{avzz{d^F zcKfgn0%JE0lRB`en_F8aVP3byMSfSja@uFbiD{msshUI&m5UWS1!pm6tCq^8g6GEP znBdptUAMb(Z@cy{a0TzLgUc88@lrU}DR%5lzCxGUrS|gsjIqha_}5%3>+pRnr8D7h z%F2;e`P+>7{&>p4t?)&^OQa&2;WvTJJb;tO5@UBj%s69xsTgHLWLLY2H8H{nyUX2O zY(?*hzkCaXsVz?FEWfGhtR`CFI~VBgD*UB)=Z6LMh&^sII#SJt6O?@MIL-Cw`dWDJ z<@oQ{L?1oPjy901p@mA(Xnky@e9vC+fbQ_`8R7d}-LhUW$w;qm4qYkK62;BoAY;;#4^Gd$0{|IV{R#Mi`iDPf-cW_4-i`G4CnK5z&6y2f|Le8M5HM+B=| zhxNG_Kewkk>Z{hG#;RBaDd8@<^EdJf{m2O1U?jYPD?i?q4(#$C1shv|ck@jjM~<_LYfw3+KMmRukKgr% zI4VADsF&?UYK7ooc^6N{-B7>Gg4Nuo`{+Ac+1FxXo6u37riN_cEUvkxo%oE77wa4} z>VFcA2Jh_mBJBK%`KrsF<7on$s(Rh1j`fzARM55Atsh!h*Y*I_@I;ey&~tt>Q{p1mWnUUN#|S2^zTS#@<4ITj@IXu@avWrTi{F zNwccVw%$$Q>GY^d!oB#hwM1a2^L>PuK3xpeRfP7Mn#MrKTL%xlwF=#SjO>0`u_N`o zoPNDNZgwTirb*O{)6_jz%bl95IW?92zi7pbSIs$%i5&WF&Qq00QcntA^Yv8fTJY8^ zYkv2$VvU!j43UYH%pdO=Q&eAytH;z=B`<7+yl5_s(DQAE`}!$uYa5YJX>6hA3w<29 zzh!9w`q`@%i`j}<2ZClK#frDp(aluN%)o4~q`ID>PVok{d_A9B(Hhx-(`kYH#Z_SL z#*)8NOn6zQkS-=Hp#Cz>=N8nT=`OL_DR+I3KG>HqqE?&zGa`MpD;lditq1Wjm(2V7 zQK8G^GjoQs?w4w-|JXTxQ<3^jh3aATs!)kK7~RKul}uN0 zM4bL1FQXXiPbX)6LIO&Nl?M;vSz+$y`63z>=Prz+KC5PCx5nzl(E(< zu@5)a8>?BtheYPv)yb~VFjRHT&%5WLTXE>*8alc*Hm>KIEjxJ4Cc4H!4K&00{3P8; zf4j;ovGPKD;yOq5Ds<%=e~YunY&2tz*i}Psm8-64K5CE=R^R#sJ9x*9{!*3;@!ti@ ziFYR#sv;8FEE;{>D$qerb4o1K)=E&=x;8lWex268_3!*Q_Vr`I;*N0{53zl|I$7r?SVC= z#cCg0e;$;j{X<9oPuv%Ur{H+~fIsnO(RD?e$O$hO*(@r(Rb0EF=wU3a;d-OYqD9XZ zi5|x!Ip_I@MXB@Y@(+txXBB-PhrwObJ{8qFjHZ*~ z+GzWJd%JND`_?u!gU^hdmEwq_R-TsDk}c8UzX@jWB>P$+dD;cFfup#Pcs0=!)~KJfT<=HwAooGUn?fe~6nUb|XGnk#yo!7aRi z=<~AKU%`4?9V%E7su5Jq&sz;bRC-EX_Jo;T3gUAC1N9CS*->-`NAm79^HZ;V5LHG@ zv?G6#+4Qga&N_3cxvSLKj`|Mw{w!4`;!;u$g7*(iN?|qbVwKRhITy@zy)% z9KU_pDpx(SMl5ny|09NcCK4+zRmbUO-?#}LP)+q<4n5N;-KC=JMK@h<=93P6Cpg9;>Hb1Y4{tx(>XaR#a1SoO_PfzU8hj zxxPo8qiw!%_R#j2J^k%a<)Y$XCL?{HU-jcAyH*aZ$ zL+Eoc90r)@*-iD-UV80QYOJymH0O$|)zsJ@=Xw33hF$N$6>^4a*-HgJ$G8b@Tl<_z zT|P^jjIkxqskOXj_o=2n=WIS#Q=P27|1FGck{zr#9sO2E*u|B;0zLW@l9a2O`VTL z_g<>s1XX{1HRCJh$sg`fj(YL`e4jk;M7OxHSadCuZ~jKb&H$)Bt&7l0=)WrkyVoys{vH~l>h%l#_*8Bp~`*fy1N z9>m^imQ|2i;+M>wnIC2bMSe|s@*j1;`vMPS00l!W-cUiyvkE$qsW14?*`qE#M$i5r zen}mA?^mG@A6^=Y#}x0r{*n8&tGN@h-^wbp1=nb^3Vm>;ZsFhVcxopwbZSFlpEM#q z!f^izHZ;p)^OdG%@;yBMsu)RQa6X>2{+)$~=0a&6v?eu&*ak&YCIv$;J^y~;#affg zUqbF}-m@+>#Bh9?s?_p%l7%W%s%+cGnmzh^@E`?;DA$uZAA9cR8Y(#$h}0R^XFV66ZFwrj3%X zHdHI@VBZ>{{#TG@cb=&4>j+A?$6j-z+IdyGSYJ7BKe$~bHTNsH3yswNOQ||M%U5x= zRW|G*CujpwbUO->^LhB=c8{?86!xe{!P=cq$Ol%*oidDyV(Jzm;)2%KOj_1KqRRDl zoXghQ`@H_TBU>v&`OdEU3Keaf9q>N;>_X9LAu-+>5myuWMlQAFx88e&V_YixA1qd^ zD);Ryrrjl=bZqWI*aLgDCfDUHugIEE7KzquV*RR<-Dw(S-y!?B0y}f%Qj>jQd!GMF$unXr{*=pMfa&#H0CeuoQQ*>}_ zSvqcamNO)ZF{29(kvq(b)R<#b5dvD>*qzO9q%45x4p--C=KoXqluV}@y-8kh#&w&h zZnNBeQpiZ^ht07-9I;3QaL@H|Vu_;8DhKY_E3(#|HQU-ix2D@o>cTp&VP^)%_$pk^ zgZII^RTY3Ms8i(#&b?jd4@POLk zPS!AUzcYVd$MrdXZ2*pIerSJt`$%nB%sg2C4RHN-c8-a-2g$f6{rxVmc0!eH4u(k? z+0hnp(wz{kX7bXC`EGV@H;bgIsleqozH_`+bys6G{po(u#CNjn^~O^SrDa3+r;9T` zY&Yp`ZlAH+RX4XbG$X2;jYctt4u5B~qIJoqEC>>e3wpr5J@h400+6c2)>D^{XSm1$s+39$X^C<*u7u1d5_+R|Iw>4DgI%s z=ucI!C#tt+=~_}EQjeGsn;1J*Ep(OIPHp3Otb4!M2>w$f8+x6m7Ca{#S*Thx0vgsA z!V>>>6eM**D7}TxR%YVl7-loQ0-SOSZ$7&14d5$iC^$U-{SN}?Nd3RiO(S2^=dJ%81 z33%Wq@w?m0A1*;d-q1KMybci@Avfjas z=@!xWv+%=z)dVYxSr5npN73T&u}c@VJAJHr{JM%rbE`w(RK)nCMYvqueQJh?@U-=PzZq21Tq$LyWZ21Enc|PW5hmDa8Gjwz;s^6W z-@M6o&&Nap|Fu7M5nnYlqZjaK*^2YDms5QX=5LtetGJ(E5vyD=OM8fU-lN`|AVz+H zXW?sNyGnMB&^N7|_4an??mD%CVyXxaLAS1YY;=vQ%fFjhd(%~`I;zV}vx@a}j}E!( z<$BYzFJ^ye?A}IM=?bW8pW}sft3D&o zVYM8!o=p^mF6Th_H~)?q*1R?1({x@;54h`F%;0X0Z?joDUnMK#els2Ex5ir?qbmH{ z+ct{v1g|FZv8bar`|T-}YJxA+v$|5+)2#7;Ud6X?frp_+*KN2|{Q zt7RqY=WEvzy<)W;;8yjpyB+y4qqm4iAk@42$m;%MhhAwWPt^(Nl5DdRSG7OYHV#-D z!rnH>?pD>Mn_odpKY2iM-lOe~St^6JwVvtz8^pXHs9Ee_T-eyVu7t-150)pvouLhaO^t~rwz zy=t>PubUdwF6;ks@yP=Gqfl+D0JjM1XjfVNc6GgPWz~nNE=I`0yQ;2-u7}qgS1HGt zTClE)(`sv0ZPnAI{@T(y*iyB9qS{Ncu1yN+f@k}Q0U zK10i`8cSg((W0uL@R%dN9_@I?U@Gktl?9Y}o-FK~{bssdKFaP`%UN|&OAD^cui4A$ z;WE{Wa702E&kvvvo7CKnTg5tvTZ)UXzV-<_@_%c!tpedFZ&ZC~CA(;)sv%B#H-AI> zPvG-DAf~Aw@!u&Vs_P}|nrQD2`h{`w!z;3_9Nf!Y#zOGysUX8?WRL15t7@j6w^ELC z1Y_?Ot4UCq_K5Ib9>GzWB_5e2UR}m@`8Kg`1-$+>nC@>-&u+n$YC*4mrwp;RENg(7 zANWuCtpTBz%xT>Ts>q=hU{T$`f1s>m7{J{-7n5v|J@A0B_W(D|&;|6ADojfwu&0&! zKiC>+IBFZzkL#*T1n2Q7M)XT!f)}wWCu2?>#WP+f8V`=EYh|p9e0Du+Og&vmdQkUP zz?&b1vs+#4A4TiX#B-a7tV&b0+^AE)SW$oAg|))l{@NOtO%?Hu95-Z!+pSr3>0PSH z9%qVB8dxFA$Zscm{e1D*TX@<>#4$_oasJ^8zCadyKbFuH4&)DEQGXBZioP~U9p$WO ztdUW>-gk$r&|gJ-8$Pstp0WtfO6s!S!lDjow2Z)h#Pp zKaLBTUtmY&@<7|*|I_%Q9nM;d-_^@w3YB#iu3R};Px>w{yFyl7YWBML{oQyezb2P? z(AOwT|1^BB#k!Ht#pbF?WzhuZtS*)LB7CuTID56j8M`yP6Gg*tYWPaD@k@A^)zt0p zh0Nm_3o`0w^h@8KR+YYee)=em3CGh`QMU&Nh4pFM)2632OslH{;RLP;@AzpZZF_oJ z4f^?Xo@vqC8}{oUQa7`H#_)`XGXKpe#i^}sW>5ZYLo!e4=9rQ36{m+rIBmUoJ;XS( z?atxM#rt!PIg76`%g+1$yPPPaICR_{OTF?cwfa+(3Zp2>D;PCrWvy>hsZXMYxt&(0 z4=!2gb2QME_%yrK#f0qJc$sa?9E*FlnfhWA*4#RMgj%^0?_kaiaxHS*n>Ql;*Nfn~ zU69qbqG5Q{9a)q4qH8~n7ur`krVQevywE)wDa%dBevvy|5&XR1f_%=A2M4yoIrm*0 zw_(7kgc-p|fEKc92u_A>>B5e7= zY78B*9B0|*_sS`rGi!I5AHi$8_T{ov8OeC=t0`GRKgIX(@7nNn+v|!24gP65m?d=i zPdlD5v>oMT@f$G|r(NEen{}m*9Caf`*|WH3$uj0|)r5{k+<9U|t7tQ=6 zgH2TL7;g5RS0k$-E4YjQ;8`7ilDV9bK=Sg>z`(n~`n395v^q*7t7mXP+HQT@B&&EN z!m5vvEANIXH}$?R(&l&cnW6r1yFBR?^Qtb7phr~Q-oyG_ccrD-n&!;YDULdba=wnl zI)C}gjUucnDt5oAM-IfiJ7#XzP-%&Sy+0u*-=eabA%eP11dyqMng>Oy01pqlemAkl zUOxrq+i0uU7U)%5*=4Bmd?T|Cu}6Q^(DjbISkygghPCkOH>e#wE>C;XI(v&=MGLI7 zXB~Ioh>o-FX1HEeJgRa`nQi51YISQUGYaeJlazMD@jiFv{$TZKhbR8s)mN?AJ?yEe zGM<|9_ce^pxAqc17Q?k2V!~z9T>CXGeV?va@y( zr!Ep1&7c#B#>$)Em>XKNgE}D8QHS~J5^;wvs}{*`MosKByUYf8&mr;bJ>GArNHZG0 zv9FQvihJ{aozNzTR{PjPsyK&FcqE*N=y%qug8ol5SlZc_QgJIKnmuB_3ia9#aYJuGC#V8_(tKQT5g8BBV#`h7X8F+N*xlv8SYRUzm+^Ss`+D$C){yZ`-5z{ZaPF zP+`Aj2U}_<%~T!P;tDmwe&__N+=)B(TmIuB)yEuV*w2c>^_~&Krs;ooQASr)o#O_P z#T2>KDA?i_DEeKHkx{a;pWs1vVAp*Wmw;c@t!Oky|_36nZp5R{y;kOR^Z{4zb)3NW^d*_cFvr zM`=$NiXryMcs7cpFJK}h$n(0u(AwhV{p~m}K)kwouYc5CiiiWFMcyyT6dUQ4IXz|z zwq#NLX39WY^0+!TfpxzK;h94ddr}np3heYee$8tz>oahx{LryF5SZ^FAfNf{8ysOj z9(e>X2(q9 zoID#dsk%IL4W35G07}4ZZdPwAr&3i-6*wqJLM?cMO3Zc$$;613r|k7k;`A9&DXI-k zB21eG@{x2Enh*hsW@_xI!-k?$`+YUIT&pdqx*hY#TAJ987RgTQR6v? zcP*pud0d^-^hF(T6a(7P)f$i|@(ifJ9*UU8ezV&qN7}Ji+x7U`2SeC6F8r%?+xI?FlNjkvPDEhw#XI|Q9>e0w#b&O*_y~$ zBU_0Q*+tnCqC{ki>_tRm%a$Ut4#V(&-|z4L`o3n2neTEx_jB((=RD^*&q-!Q>NzdX z@>;Iyy)n(H8cy|3`A0c)$oLeO{YBnV3+M3%zTQxcG9+~`^dp}WynQ5Q`3DLU>Xm+S zQihC79v<^#ePPw2t0w4V)@l zRlYR0cL%DMU9ZPNi(3s;sy^bJ300;&MWNrph3~4TETJa(xctTA@*L@);Ri&nRgL=_ zUfdx0nitrVN%Y4;Cc7h>(;V)zgy-4Jc^T00L!#@tV)b|tM>Th7p2#zv1qg9xet1Du zC(Ubo)}nN~+Pb<0Vu6+-fyK_>p%D}*UX4<~|FXH_BifY>*oIzeafBG!LF{L z6RDKEQVR&)IR0dJwso_7dsekD+u(prR6ktz%!!d`KU7GJfpmo$jrzv4O749+F2@EK zQY+c>z?k_MSEEuyH@TI66U8~_L~p}!9j4jM??z&x#v;+u^p(qq-2TFPnlG*inB{RN zXGiL8&5d)8uOH<2_eM_6>SD`yBh2p%ok0h*o>{uCIw*_ZcMx+%<7)hl$@V#meilMe zi1!=%B!}Jr)gw_!MV*XmK_t(cixjIe^t>M<%8s>XNhS@rwqj|U;W(T#zr*3c!=avWJ}JrX0{^3^ zJlFy!_#<}14ySlvtnCsxuMqK{Fpg>v?27hYYp>|TvS)?-ggym3{QaD)YTJlS-N-w* za&Lj(hG=yRp3QA>V6=Sb2K<05<}yw^+=N0+J4!L@@ii+ry(`2eIbTv@Uyse>3@ReV z&xZ?86|=B}Q+yI!;B%I21gv~CCQSvAcF-#=4l&Q={0pdE0eS86k!*3`FVv!jGtRrO ziP)A4_(q*|W4`M&eFQ7GxHEhp)GHNE^#zP;vdHn8)8c1n`ERUju#AQH1-aejU1|PH zdp>%hj;c#3We3*5Dkoy2*r(#6GnUjxY>xbWHk{v6*uyc#JVfv30V3r2vD-1Xj^i|3 zfLZ+LOwENmGr{9D4#Oo~v1(yVopmaIM!UTpJ@`^s$0cyfHsa5f!{(k!`&}<-bGAm5 z9(rS)WO)JusitgmyL9{A`M zm9?2|j*>}eVij#+iQAdMf7!#Nn7|(k47EJQnuBHd(D)1CZf(S({S!lLNlYbYeIi?t zh4xP)Y}b1k8nGi?V2{&rIhwemL)^XIaMH5S(o8Ue4lLX;cIpZYqJWwHhVPO@Z}2%I z58CrZ(l&-o1r$CjCBbaG!vzqj_pP~~_*}C*##&=j{B{f$&U1Kt{aNH88LF{JU*f0! z6`O{i@HH0wnhZ0Hyohdc&l>+i>iQ?yyFIve6ReD&)ZPo0Kf?YUkNK4m6K6NOKZqw1 zScIQPtms#Krq5a6(3PwmhC%uWO4Y{Nc#hXFl;w)T5I8Oe&|BU(4kK%#F>i!lmS>CN z`H>TNLf@(Ss>M&dsxGcQ93q=tyv|xG0g>B>>l6>I3RZ zk1!XOImepuAM<%-cbU=&c3oSRYQA%~7=)rAs}N3%Vz7f-_m+wZCOd@_oj}hxRler8 zeIt5*QKn>}{ART1qp8?uE)RMt%T=96zcrF2o$aq5!8e22!F%eI%7~OE%G~`S6Ff}) z*F!2AQ#^Z|_#pIE%yqjo8y6}yOUPE7r3_Y2KC~}O_@1*ki&~n{$?9!&mLG~_euU88 zyB#VdĽ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 z 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�M6=6Fr`VVt>kK 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 Yr11n6L&x!Wg0WGRvmDyxu^ut@$gS|F&CgY8? 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

        fl7N>|GGwd1BM=Belm-a_U-`F@5Fm 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

        75q56X( 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

        7uJh7T7))W_8b5j3oPW&|af##W z7Ei;Ut{_>*w@y&t*$|ssWOzw5x%Fj;moNAAl#i8FEtOsEwnwyur{rCk#?555HDa{Y zWs?lNsuj0_ipvHo;ydbnuiCdaaR4uar+f!&dwfBdyl|Q|V5~fIO6Y1^UirsPG}5l| zy0fV6`fFH~FL=e${QN7+^Pl9b5_GgJP!-D#b?-Rqe>3Qhx;c-15bpJMwR@~aXRW@O zylSe4e0l#=_o>W5{U@v7OLn5%t1Ai*@JbKdg^$VV%Jcry+t2=+#~0&uS=Xod+W&(j zJ!74H89uaA_2^}hz?b5fHmWf7RqOJuea|(A0tONIK%^yN?(;6SxGGHn$(?t(-WHKtv7w4ZkUtL%h}uZ@$AB&w?I@RAXY65;|lJFrxd!Eu$e>MOC!&MLLg$x}CI^LnrE4a~>nPAYwG{sbq*y zKWvq~SeMOodu%TD4KMPy-ar3AX_9rznW9^7Z>+JvPjL_b@&}66E0!WUZ>1{#yNLT$ z+^1SNkCQlpT!{Ws-Wm9B-y_Rh#mQ_W?pinb?nK^PvDi?Pb+0W0N6Eu0JfpAaeqW2^ z2XA3s{U!?>C#To}PnZu!884gMQR0-`VU*t=+-j=P@ivPUypHiTgYv# zE5_g!*AO_bJyddGYzIzpE$}#x@Zb0>w!5=<3u+WC%f4M!Hx<`%Y00(p9*6M|8zz)V z2%PZ_QmPzFtd-cDbKM^auO?PZoRL@|F~e^!_^L%Ma(Ch%2_RA4Az01#+weXs zQUzV~&iM(Q{BCu^LF%iz30d)<$A1)`!hvvT!qJ313HN$^Dc*#26MFH+TNpn#VJoM; zDGBqvzGC9Egi1UKOC{bPQmZtJZx&A@{)u!}`(*Klx zvviNr8%m8RU8cbE%j5Wgi=FGRVLaJvf6qWNhMQclLhw@3X|WUH26CsFVBFB_WI|DLUaWZ^P~GQ8M=H zK^c1Exa0g3XU4}QOpd>7&W)lPs*jsmIesq1(GxQ5mht!Tb$L0iDCTP$9M+=omE-T? z0JGTVy&0cJm6w<>*5^0zuBma0OTNa{C7*v{2V*}nVP4`!>aq<9V-o+DxGZr}(mo?q zgjVVMgd%iF`&BmTa=$zhx5klMC-g}uPhXf7f2+IIHF3Cie&v;2jZrC1ml=M4FyTx> zD|h#w_?P3#air`M_qSTcB#w!NC6d%DX2m_k>t=#FNx!(S<5u#kIl<%cTKw?D=Z!}z zBRD!~bkgRenmjQ3CjDZrj8A;TnUpe8OO4N<_{jKo;?BhViKqJn*T~G0y?oW+8~J~Z zj%7-&j}4x*dL<9>_4!wgWSD<5RZL#vI1_0_`Hg~WJr?jtHHq%r4vUvu%{TOL@$>3J zll-iUm115@GH24Y5X(;bEN@jwNLFF$ta5idrt@o%$pys^aC+&l@(`nJhJJGw@7Qa5a% zf9?;wo0{{v9px33qmDtq2Soj%C)h3emj#`GmqmE>2Gi6g<0c!Ry&%4R?sQ&8B@p^}a+qK_^0alPdC10&+?=2(0DUc<#ma`P$ zqMa{d=_<}^B+|P8+9w`_Wigt#G$$F_$_x7p@YW-vM zmf0XP*{mnked^#7xj1)M+wMR!a{2PRd@9c5+$-xy!tHqvPi`w`@aVh)*m==Vh?BXG zi_&`Vb33BTR2Vmi3~^~+dCAn=oSav2d9H}D*ZckzS;rsTJNik~3N4T!yp6AvsG}ZU>I!|754=6WT~7vQtdooSVtBdRaBa z?R!=xGAnCp)^qwJRnVE}VeS!!IFpnR>1XOgnyE|EFj>iv%*f3D$rO6Z75(_GG)5E$p-Q~=mG7{A}G7imZEerYqL$HD?{MT15me+&)ORl6pfRFe~#^O+arRhGu ziySQ3(SqZ=tVe1MIolJu%T|_Q6wfTeOC?{Hbza`}J^t8_dII05n^kV+%Q{0%@Cki% zY z);s!6HPq*-r|wl#GaBeJH6x?F5$?rj;8@0VV>f_|urC6W~7|=@yW$n?%@^E)b{T@{plC zf*R`yFp1y!!(0K+>Y#Q}7pSTJUSN*T%ld`OO3&QgvXs)7XXHMZ*GYea_f-Wx;<=yU z2&cKBRJr_oZk7yk3U`;O>I3h?(+2QLY2x!6awy-)-TaQcYL}bJZW>?yEw@@uA3fdz zub`tjO?8`^kvl5XgW#zCRu%NFovEHMKPTCo9xwCDlOxw~cXRo6j`Z|I8;z~<{6(Bo z&O6_7oY|9kv?m&sC~Vj0%sP5257r@Uj9JTd6Gv~PPGToy!@IL8QF!IZVOyJf2hH); zS!FT@XO!{#Dp^a+%&hEHX2U$6H%PAkd*(!AT;9yBjZb$dr#&RHh8(j$W?t#bqx1}^ zqB1hrda^e!$5VVfYiUkyUVSx_^Lko0a{edXpVYjcRn5-GTf19w?QH&IiLC%8r5NT%hdK)JBM3U^c&y~OysJV9#NBnZ)crN@8i$- z4BlIKkydu_Y@LEuqAY} z46E)3NW;rAs&4SYva}XS`24}{{}ImF(df7NF>VmESmZ(8&uB=G@EsPg`;2um9Rsd<*)b6ei@;~+Ot)FOGb z7jxim(KICIxw&_S(8SQN&4F6Zz;^nQpYs3Ube$-NtLv)!t5Hh91q`|hZxZ=biEc!Z z6iGSO84~mbPyKR`pu3@%l^{2FK%w5iteVCzzLmwk3H2AOcpNyTdWjET-JmcMW?;b7z0Fv8*$3kgx<|< z#k@Ffj+DneD=q4K76a`m?$Voz+{M51OEKXruAW0ET|UQ&4C9;_Z-k4|Yrli3cBIJH z-jN%5qi8ZSax*{9t?)Z4eHidrcl#HevCh+!++j>k(e~7(O?(aZo6PTJU(qSiui(nv zgacPe?}8!bU{}Zf)9fxP4sEWV>dMIP@Mz|lhaFV{M#7XI!+QG=4m-w7S_PXOQ#4+O zts8l^^r1?tjc?c0wOot3*AXkh6Vq_^GR*4xeM%MMQPMs8h)Sw7Wy?{@wGXlC%ILJv z1f~~s0Qi~HMy`4HHyn30ZPODR#LLUlSIXL7F}pK#I9skS*~ZZSvt;|9b1aDVyZP!0 zr{K9G^+4!Uq5{Xw0b>8ZXeWP)tIx%9Z^`hu9wj?KThn6`;!emDa%K1Hc+_`|J>@;c zrXRz0Cx#H!R&nL|&L5CnRZ18ogWZz2OYYKBc78?9TZaE;vV8ob_~?Yzz7EK4 z%Eo=ig}r9UjkIjlN>o;L_=uWl4L#-J;=5%SnXaiy%sR+wa~?MDdpdu`i`*>7SmwSo z#u44?xq2V|o@*rTqi}l~0(ygva8qHR!@1pTg@_;ZoYan9LbWvtZ}m^Tt8WNgBcq=r9mp$>U{_2a$~E36ju@+Vw|-&CIhwDS!(W-Hp8a(aAc z<3r5GQfy^5_J|DJV`FsB_zu?BgqrCHUPgPX_U*dy9dw+EIvOLc1i z-gO}aw25{6PAmF*_*(6(&u-8IYOwu#^gFt)*0eFXWHGTo3xCTvwxPrki3ln9>3D!HM#cZ@e-c(lQJt z_a#5LwYr3z;s4g@@;I^GUtHs&xytR(eNbDkX?+$%FpA_Zo)hYC5C``~TbaP&U_Y6^;KI`{0 zM62J>Jv<~HEy(Q=>gseKG^U~4=`{8EeD0A!x28khRTi^o1KoTje(AlPS&RHf)w5r7 zE;GHmvdjE1j-2tvpjGbMu*PCK-n>P(Fp>LRQ&>(N2*g6Fq^#_GUh2>5 zYWloaUH9)0N2$YOua2{625D+RyI+X?nE}nICzjqTie0I%&Pegq0V5DNV+7IZOL@<_ z8yR|Xjd8A3U1t?88PmOLNM38W*Dj+uN}l)zmBVbf*=Fcp&}A-CJ$9ox7fJ8+ga3Ea zDfu(r=VkNXlxaTWSj~;+cVg>zbwv(Fx%!p=MA;MEh1Qh%2UPW2=l`RoAM~T{tdHAx zclo3YIOtN{U8kyZUb_SyR*f(F7+Bi>M8dy2_jldBFGTD~a@u280v^>z=G1AJSvB~@ zX+Iq=za0hXou~&}Ey(LrcvhE0@YCJfWbuAYGwc=^-RnO6TTx`%m7wF)Uj=KfzR0io zHBRe6@4Pc+Z*k6H&D8e`p(6XdvK9m&o5#Urb9d_HN$y|0yyGI(dyINb$X*$ra5KNo zF5=Tz=idk~E%=P>czjvDu8Brh!xpRIoUIip?|{c#HBLiCw2wOWTIgR(^Zhta(-)lc zEtf~b`^t)?t6`>{7FE9n_ZTm)Z;3ybVcs6}zY(r}ykl=S_d9rAKazVSiMkWKHqtR0 z8uxiR`Bj9ZFXWf)FKvny8hNHEXNZz4=Q}O zK2llE=~vvipL8f&>wH?kY^LVkDo4u@xu23dG|hwVEvQWvE$4J%fA5)PI(@cM9e6 zQTjCZkcIvttGoy!Tq%Q3kS#x)6%YUFDeoHv3HwLJwT9&bqbsk6Llq#u(#pUElb*@(6}#mSeNnU`U{Cc28Ej(j;Q%N1?s$$u}TFd5?5Qy=d~ zX&jHqG{LO7D?L>KO8v4Y<)9~jhjr^;Jsn#^wR5@iWa^SU&fOfwne&MI9?Y8$)piE^ z>S>L+obGDw z_EhxHc`_MVf7-m=>E9~WtOVYJf9f$2VGk;F9`o%jpQx>6bM}w+l<1V83U~VIIh}^v zV7QmDFYm)~Nwrf~!-zQw13OpvrJCSw#E!Tg_dvjQ z!qkFJY`q=fP6$FdVg?g4%hD{EHy!8|96rrn{0$tk^o<<8c5U(hU`$;u1$_=>LOP%Qy zJo(c4nQaqwbkc8ZC=Ti@466mu$w%?_JBm$ei&wT|hQ`C~=Ez->>7^IZa#h70s|Q#6 zKxOt1aZuof^_9%DGUoddLozu&lF`PZ=S5T`fYYsQ>hO`hdZh>9=E~ zxA*r^8Sx0O8BS@k50iFIM7;Nm$M?G6bG90lWqv<{yHRfBL_F4wyoj=C3g*kHlV$$5 z={37eOxD5wd#Elyg|*f~#rUE=uCJ;FRHbtZ`d_qxjm{O#EvNA-0ki$et5%8A2E!#2 zsZWwH(yLR9w6P0^U7L%Iepz{MRs0Ld2$FT-$r~>SiDV;R-tK5kl=F9i)`XJ}|RM-%s&_TDJfYUb-%Ki8C z?Ye)jQQ>HA4wlqaqMaii78#E=c2(6ha;~TF{wyWJek3Aa$DyK-f%(*Zr=z0f?Wbjq z6LA|i$_8t~X9IOn5UHOK-{0kGrkY8cF&$%Qm`1B+q+%?7&qeA(cm5H_tgW_DQ+MMg zuCo%Y$nx;P=EzrGHHB*AMKzOS@P{9>p(;r=Bz}cGwBl^zoPW$e0BV6dU-(lL_LPgZqJ7Zuz--*G?`pnbNp`*?r zhXdaPXY#PP^>tOpj?R6%v;Wcxe%M}-gvSu-FHIX%J;eK~?zaK!A;zIAbNnf1RjKSx3%g5!zN0m{ zYz2K(@6V4{J8kFRYZNHmT-zW=7|EsgHRl&gX>{cW zIp}b{gD1rE&3!*Xy#BR}WRs4f-NXx1Wt-Pz4uM)H3)iS3UEOjq^WTmfocSA=Q8(&V zJVfSt&Dr%bgM;qC0ShZY;wJcetaIt*Y*tVQeIS$FijNp5z}Cw+8W&viymWRh!#oY= z9Dkh*Jm`0PoPIpgx_<@|Sm)YGx%PC=Y>;~|z%r^OBY#GYuA`LEYwxV4dh-9WI?VLC zYWDhvsqH5EUjd!j{WOL}WvWwkB5Ecd+<}c4@EMQEQXg;)n+gud`LeAAx8inX;IE!@ zM#-X}^L*ou$_-{X_s_&vTdX_HtR8Ee#Y67Q7EkaoRrN;ljz8fe>jE`CHR3YSV|&rv zZ}O%pM)-F;y2pJzC?gmk|J|B16c*S&rvv0~Bp%&Kc|l{5cMbT{bGmiKJH~o3?zedh8_BCA!ffr{3LXJk%myr#X}Bp&9N3Ii%9rVY@RU)_N= zR}Ra`M)>|GU4D;>@m_c3sp7KdA)~up-G9b1=mQ>K@FLDyjJX!$es;k?&d@>ql)mGI zxO26wZ&lsl#jd!mh%%@fRK^g#k~0SWG(%0{v)tlvtF!W>uP_Q1i@8auAsS5jA=iaY`<@}aA686iqv zrtmE`{ly5MgO{!LeLPh7qtF;#(zl|g zN=bSA)wz1-mG!=kn5zLUd?u@r+-rs0YPM{$ir)tPA9nG2S(-CM=6DiA_EgRr#_ACn z?f`X|0B3y6-RldD+hC67xjz9idpv7b_E!+?02Lf2TR(nz3zTUvx6`2ia35$`pzW&V z8JLSPeA@o?BA$Apr|1<=|51C}mMbqp>t|ZKx~oG3z2=Xbb>nfB2YZr7c)mtr*&T&A z4Zs!pT`Jrnst7y=6Jb~7@$(Od z^%R@_EH*3Te)O2=W*OXMI9%ar)yOw!wa$nH)5NHi#qUSu7wdfOr#l-b1}QDNuYy7G zrU-T;PT>vQieB;cGh{1Kj2|1K+XM1RSmV!Dl3ch@)|{@{O0-~;7Fc}4x?D;lrg zU@d>~4!Dsc@OEmm?JD!zcq|Ozezi+%H0Vzt<_ z9@Sn-WOL)TNYt9CN_~5g)W~~yV-4}!(tIBijMKAz{~Zs>a*>1Gi&nC!_pn|D%H9g) zS53`~MUao-=0saj@2Bv%3GlX`oXb6t|D(r!OjgtsE;q;de4zTB%SrV_iCck+1P0nC6(JVI(Jv<8~d4Qlh4b>1RShszZea z`S)A%X@st&|G=fnyDOtyNurVeN@wX&@RQ~+ul<}ZYEb|tLv$`uN43&n^#n}r4tlA% z(6LTXva$M3cYv`}j#_Wd1oJ2!YV;0v=T;;Bg<1EbJMx#@Vzaq7%5T;}nhr`5x!)5b3i5wDMC|(~3&+ zW1OsIIyiTwIb6eyF9Un)e)!D^SW7$D%Un#f>yViJcx{1yRX2dt8D|)($v3jdlNe75*?!tKralw z2#n3;2~YaeQ%O7VA{+7*Kbv?vPUtU*uO=?S7!BBeE%D=O#O>@c75Y1{xjz|EM6(FrjLsjhEu;u!49nf%LV=p8o=8}SVEYF)`r zaX0YUJg5iUy?BAQ8sQBXq+NNe->YZAn8fvo)4gj_Qstyupf-i=2j)9`EtoagjCjXp=$wYo45qw8Vz`@>! zQSQXVTdKS7F}-(FbsR4A=K)SJr=lOThSh`(E;Tp*<2%wACRVg~CT?<^E`~Z(aEM%1 zbhO`3f?a<{yV@D2?`A!K+d!Mk`!kj9Fi^za;pjVYna4rLyXlOczz?NRU$=Lm(WT(v z4~8(wNjQN2VKV>9rKK6>aSE00W++{*nH*QFhxf0P?!#R&^g>?mYK14>%iOquXr#O>W6x8 zAE7H9;T>P#Gp@!*uC42Iw!Y47^{vjO_gofI)b265LyYAK8s2|6+;sAp=Y3xt3!o@> z*+7+BRL_bbMr0!7_pGlctzrefns@?xxYj^*IW*=zEXYbQ#$cC8=W(*jle(Q=B=xc&ya$&1#u)=>P1q8`IMKY=q)+FHJ%2>)(J>SfiNZw;*OEP7&H2CHd1 z9D(?v|2XE=BEML91FxeM5YANZ9d4Ix$u047Yw7FspJyHIX55lx5ub5qSY%JU-A`)R zF{aunj=;5BLZXLbK2)`e{%+O{vi1ZsW)=3qDm;YcaMob2FKy*~P<3vU%Gf|Wld@ul z_v}ZXsi;gBoeXm1yR6u~?U?!gMA&5`?8m30>O#7Meg8&oNI^%G@@h-@YJr>KqW7x( z^w%N!81Ldp5yWt3dY0P!LF|(ScFLV&WxUC2>ULi{BRkM36wrshL?hos4egLU_+7Qb zckSILDH>|pYg^$j+)^Z2JaEcyMn*<^ZQsbpR9~ym_}AhN8G)@@B|NAV1(l-r=swy& zc0X4QoF_UQDIc7tp7Vg3LvOiafbn*gvj>ij*HwpZlo3ziUa&_@x*C>yMGn*rvKwUd zuTbh|puRfat;($mN6Qv>U%(Bml=C{gGbMYE z{AITIezx9qH&M2g746rO)2)I)q(eT(`-}>?i*m|{-VZkfR*IoEl(#^dtVSQ)`$ zUKCr^4i3RPV?&D28u|}bS2y~c8^wLF#p#foH)Kce%9nnG@oaLPRb`M{jtTI?N*O?n`6-h-Kqzx_ymg36po`q zVGt`I63aslEOj|*bTnuGD+qW5Q&b?wKrJFDar$$93-nDFLV3wLmGe40SuRj=r|Rpw zU1qY9qs5J~jbr#Q@-?&lCbBs<&CTgA_B(*sqF ztl(36STi5N@4ClIUn8bQ%*Ud&nRe9}8k_%g&3V{*-wpd@q}?*$e+4dSRYM$=(qgvZ zd?O|nf4z8>km5hW&i+=3>O2kFQQEx8H{b)&V|RYhdwre2c3D(nM~U><0_>b#Gy~yr zl|?UG_(J61*?(yVtzP^IF3ca-X<-?Bb44Q3Uk8j>YHbnF={*k1n~{*(dQ)m@OX4z*}lX z8FU9lLsx#JY!68IYP)c-?9bp_k8AIIq+zbcFII6@BHMut_>Zhc5D7+WOH zE*oH6t^ECf%zGC;(L46szaWQ_!7YZ|*^XcmVR& zkvHV%>+h*y1WL%su&nVR56GL;7;dxMo)1goUXTb?ti)m9JV%9Hly~`1s`JpZ=inw? zaG_p==;hG#4dm|_Z8z*85-1d}6k^wvF0#P6&KC#Fg}U4XW$NH~cSqE6rN3DTE{Q5$ z7e(EK0r-Sxf44Z}XMGX!TwO1_aRXWY1V6jqaW}&D_JkkwIjyY(om4miU+8Xt zZNSm`9>SMr?=I#Jy`kE%0~+=~$Q9#8;mf%?Tbt47Ya0LONx zs9}m#X|1ezg>z33k;PiYj>A9`Bip;~lh&uRa@21kVpS)0>05pi&+$I8=vi{xAj|zq z|KZajy{_VtwrUTv<+a`X{V%WY3F-#DB3I$5J*M*TqZRLF_gH7TP+ce8JX+_~eMM~l zi6HCC`R_G5GaUI`^dF+jEm)`Xu@jHV#W#!PcFCoe8R0}s-*uwMAfjAn2DRcec~va= ztct_ea_viI+1I$E4;QH^u6z?`GK&v+-RR|xG)-2X<@@(kV?MIh9*(+GY}MZrk>V^yV>WS5d;ky1?tgOsr zrJQGy_4{JcnV#V?i6Kvi5>l`)A!M@6q&1y8Pi zZ3@g`BEI@ID%l+zCf4zjIBwrQ#}VR1+`(rt3I^kby#Sf`v+&Vt-R$T86;|}>svJ`~ z@~sU#5@-6H7d-nt{rm;0+rj?+1h4)lX!R^e_8FDSj?nBW>W`nkq^p7N*jLb=AZ9*Eg>?Y_ zaFeQVOD<&r>#G?w^ES9iCAd!{?B(r(iv<&*aSvf-z6+(=z?Wb6xa9l&OBVQc>QxutI6LS z!cu}x)(fd_PE+7tzC4*OB2rxXsINe|67MTgq(4}^_#U(^8(V0W%JwWgo!eBsE8zZ( zgeSb@t9OX|HCkQ&o7^NA%|j~x!+iaYi%Gj9}3p|10q zpzi)0?%`c>k<-qs57y}z_+ZrKFlXOhW>X0QSjPAVJ;4DI)73qWTV4nVUkc7?0y@Eu|%k<&g2Wj;WKWwzg#V()ar&=R6V$(-x+4 zmSaRc?4|?G;pV)a@|GK^U~1=7lNseh9yU_eWa!9UE$bB5h-5mQEi_`ByrC6e>#IGU zi^oQP)=jX zM|jhx>q>rro~{``kej(&Jd@RpT5N+)_}zOxZ57Z(^^u!RZ8#gRh81eO#56X-ITO7`Z;e;tE02?%c;+#4)v!~>KN}Yo!T%pl7oEp zkbB7Xw13jNxQkb(-ftPvnMd@m-f5gCy2A5#fk){0=BLk1Kjs{dr@o*Qa7x;R^k2Aq zgya70#bT_R^*0XVwva=}0(a^eEWm?CZl?b1_hnr-LXTw>rq?jqtMw9CnDHcTOiq0Z(!Y{nnJM1Gtb)GNYVn4Wm8As0Nw%C_2ASjsF<$s^~d8=+68J zfqRFNvVnfeYJ9yqA@HhfqZc}Ss;LSJ;jz0t%wkZEYE=)CeDXzi_>;<8J%d;7*R=2{p zZsyd}$u9G$mG?IL(hPgn0qlm893}Qy?E}8q4tvE7syR8hWhKJ$>~Ov9I6b{)15Qnq z@YiLDhwXv8?1aN;pblV3B;m|m;w{k?|KAHx@>l(752J%N&;@f1nv}n;`im*K~Fh@L9|}Md8`XLc>D^nPr@jvZkhi@7Td7+Q)O`)(;!GYR>gfK24P%dMm{NEied2 zT)V~oy#ptvIvzswpF|w;1S%nY?1e0)L}6yg|Qe@ zl|RjuyO@gzH92^_GC>RKMAUGV3ac)1-l*V^zovW)<*s;4^lJoa3nNH%bL+rtkw zOf313bgYMX@;lYV{VI3k+A17mEjd?nzHosf0ZkdZVN zi@l?Ad4`T7KBN)4OHQy&{4d=z*FQ8?7$L6u(TNb zD2Cn=Jh#clDZo5uhU$cUxYJjRD6Q(2$F07R_s&!?JcOP1r8^(Q^MTLWK=DaXrKl_l zJH(swSlC?g{g1pt9v0nhj*RkWL1Yy*iC?hYCWuj&sPBF3%!0l!gHRCT>n`Ld|;PIGZ91&zC1L|z2j>|W#7oXbfkjI-sC(!+R#yJ$r|Frnti@!sHk zzY|v1P2ZUEQM*-mE5pbZh?u+36P=FQB*tD1x0~&br1R=L4_ka&zOYYrbGI>H;uB6m z{_d3j%)~)^&J)y7KGX}(?I*}#bJfww7#*1o?Sz*PnCFh41mo>!Euv~Yh=bYDK zIo!}t4mH%>zTG|hS^OGkVJ1R76O6zKRhfB3-lJ;j6@9x3>vfs#GS%>VU|K(l*U!m= z=TcdnhL)az=+)5eCYP@8_9FFUI#tcZl~h%ORpZlT9Si;Y8MW5SIx98d03Y;#?nH$* z58C!D$N15D2G=gOK;`ym&gfYj97xNVQ@{|x+9i~$@j|-JE<1+ z5U)Q;Czq!Rd_|T%3o1Dt7CA`M)ht`n{;P0zcaPCQth zycKoc9$7&uRoXE%__JzJo8(_RDd;{`ZF=ATK9wu=qZ%sb8A~yDCh_i{CF2|AcQ^Z- zU-dBR%5`QCeOn)6^ND=pA$dd(|5l6sK*it<*SRIs)w{gP!2s@_cNEK}Hfu`tSPafE z->U+L$64~m*JNO4sWZdW{OdbHz>W;^!=tdGZ@5jacURJ(ja`ct(fw?RIh3da(pw=H z)+=(pV-WJ2Rnq2p3Y)9aSCM_);JTZbc^UHUa6g^noNE-RY5h26cIKJuRpm89T-zX{ z9y|#XJ51ZAknM5Qj^41DJ^j#+bVmtFUx+iHMUFhynHWJFMVFXI)#%9JO^D&whJXoVT? z_#IT$N7ym;b9UGxiyDpbupDc!Hg#`b?9G5T7~y}lJ^kh7CJkwAt62f=l0Vppo+d#dw#;)-Rf1`Qa!lQKJTxE~>uOLe9bVzkI*4`4Z zZ?mk-Bk;)U%f>#k12nQv{i-tBSao#)PUr3R%@L}!ef@8*y6ra1uw;D0rLu<8Dy(Jk zzItHk{fqnc1&-D*Im*8{;?MfrKWUD4%ipT0;uc>m8Cz#lu<13TI!JJV7hmoe=Nop<04HB6?l6mvLPUi9zPigL?f&+3I~nWGv~ z5+CI)*ImaBH`X3jiLyChF2>s(ui63sz50&7Ph8!A17FRqb)0^>lhLRpL#*Kcb&b;HaA@e?2pFjmV(2thKJ(FmUNg z;T;+HGN$d$8L;{~n>zt_a4)U;0dprt-h9X?J!qa)Q1378P7M`h zB$%_exz+*B@Bf?`f8sE<#JI%DkOSxJ`!JTiFn9jPo%~yf86+1mJP>YoNmM9{oCyO*x$iZau@H)AKjsW6e7JSOh!*T-zPFG!?J`r z6MZl4*#qWu(A8~(YrdO4=52b<2VCdKe=FTl>JwCey#I= z=J>u;N6jnv*e3*jsY`urz8bjaJm(23Bk~K--Zdh#$gt(qF8!@0 zVV;Tmaq$B#^ryJVzhbxdSKsNVdQ;b|el5hae%(6tYvD;6pNpzuiP!H9c?}0Xw^y#G zskq&#a=lz_xDk!ONip&`)!8UJT3`E1z8dK;d)HrL=!f*_>nXZwO&9Wy$mpml@lw0X zMgHnX?GT4_sYnrx29czW+>TsSjP;c7+NdihVQn`Nna+iuFQO^9RgFH|PWX(7a+5A8 z3&b8J^#8r9$TzgfS=PLN9IZB#IEckNgnS_?Q{ar?X;0guuUk`pSL^>>tk%}?Uv_nc9G{1)t@ji;KH#dq)5WnE^lc9} ziPNs_b7Q<*K9gt489%47lK2T2v^3=6zzALnwPSI(*h4rnrpLb9jkF!Hg z5lN4>h7I8l*U2qwO*VS16SBs8~+4()6;UzG;je5{JGAYxsymbQjU-n`(!Z zWkxM|IL)^+k9Fj+oR#B@$zj;UX4>lcKCh#k@-Ay(6ou9uW>aQp)p^=n>IM_tkiSai z7tGgKyK!~7;+tm44y$IxYfs4Bekkl?EqnPxxveiv1Lt6vT5+n@?NuP9GKxPgl9`qGI12 z8!0Vntz4~{?pP^Mhcn{&d>yhXJC_Xa|CM*wNV|Gp@!)FnuBr_4M`-JK`m>?98MWmf zkDAAGJ=HnapY#1Oil*B=T>~H<_lOtE>8kY&MNZ)L)fDR^&6Cs2ochPSyPx)9n>{l^ zL{^U{W*a$nHSygrU#ZtC$*Fof+E)w@#VVm5a0>~;2ROp_&U_O8R`Kouy{BQmfN z5Sw!1mv2O?7ip}PLA8VN>mknRYeeo6qqmHTGS2fL(s$v9oPx$Z={om#!jAdef2 zZt#4*r@zE0}DOFm7sPd`Mds_f)xb zR@hIj?X)wB;J-6OF8`e46^hydABS_sd~?`X%DEw4`;?qabr0F&8f(U*R*h6g zIa6ef*Hz&%a$43_RHps8b!2^!^YE>bvdLo5yti=!EAgx83lZzf3nez@LCEzM8SRyepql-vmIhIQ!QS&h|%1l{a^=lI-oemamwA;LDhkG>? z)gR^8TV7`Qk1FD?GKQ|9=WnLG;!}A?Cpl9Xr0y2^OM*`c_NN)1&*QSDZ6c&_c|^Fq zYA%HApr1WqFWcfsL6@U_dPq+3{H_i~LrugUGwpJLF8Bx7S&$DEm+b|A3aJZE+S39b zkYeJsUwl`jU^{1ks}P}sct(H1a}H8FwZUl$^jV9q4B_E%NRP{SEVMZVfopRG3YukV zs{2IQfvPNE1U+x>EG}~lm)SOyFVusY6+plS*?9v7QSqzoMd{B&>EgY*6`glIG3@n% z8pg1b8s-p{%74PHxC3`vKX=)m3iO_PRX!hw#lA;f??PzDSnhc%D;^4Jn;)qDeQSK* zq?g<74vjEk-}-*AyRZsU`Kr}ziHv5G%IvdprRnm9WPAM}8BAaK_096XYVP1XcV>Wl zG{9)?5>346PDaSpR?ERgU;k4~xx=5Jds{QPdVQCTgC2^WK2ud>tiX% zg4%bwb9q31G{e36OfKBh5exH+%jlBT7&4t@&@VbcZd~4s+F}GR`IIm&{hd@4{vS_w z0;hA?zK?%0wlNz@$re!}vPFuBNZBG19wkZ?5l!h)N_i3z5fKsDMP!$be>KV6< zjNBYp`9$O%wsJ-lWeFJ9zre(yZ^K6JFH2?UKpI(CEY8W%6jn*d4eu#Y@;4u;uXbaSqHj7lGURDYAnrgc#@JFcR8p)+@ zIGlEjmr5ZDyjr>M;5mL(&DC6u51RwkW_#6)jlwbhpvr6n#MNB=Trci?L+K5>QwQFF z#dcs)e}c@eP#6YoB$*a)8YN${4z^XWq=>(>Y=Mg+EE8T3kZ`**E7PKZtT%_`0fr zYJ>UN$(7%u4JQd*NaN#btGU!=F>n zR>hURiJQzId~-inWoPajy2p!FsVGQ3VDJTU2G6KbTjv;#(P>ua5z!P6HNm!5VdXn> zSosjwULQYIUyR?`nA>g4O!B&nN&dsv03&Ds{bZclg4Mos;7@d zgyThf{qwGqpREH0j26M)5A(ewQyM42?k{rwA@8HQX7-TnU*u^u0tb-pS-Bs}Qkqg~ zpFX$E)g#?PS3Qd=W{{^`UlldSJ$r8x`~NLt-JgfsEY(@dBHEi)^1Y!G)-?+9abE4H z$aDPexR{^>9r|wH8_=KMD-V1&@6JdC&}(!tWo5Tl$*WJN3|dOHzEIUbQCa=JHDkrGv=TpV!(#?M?cRgM1`gb)44fv)X#&e(K*eb+}@o3M_Kv>eoAviSHmWs`TS$h@T;ExO}Iad zmxs*4PJM{Sx()W?e?iu6TzKiU17uNv-JbXQk4I2k^V)e8El*F|r2^Q2RJWr-U$ z>r$ME?HM3~_*TU7mS@)>jKeK((OQhkHZ^$fiB!At0++)WYX$_T4-$OI?hK+no= zboOkh?pgMbeKdemy2w2QpZx*!e9Mf&(c(fjH}y|NxquP{f=R3}wfZ}X_$qu%2+K69ryAFlS><~;I3pWyPo zHpG0#1u|8HTM2VhiQYfdV!aVFOrNen6sUPAZ|_u}Qk*OH9^2?{Y`$A?sPR+KDD1Bi zVyZFOOYO*ic-H+Lv%wx7w8biV(ycYG7VvkhZ-!LU(QXEoX=A|^G0h##LA7Ar)Nn1- z8}2vVi5ICSJE_yym*&s|ky@}!%Cem*#pcH(bK!2S2U}F3Au)6LZ`V|dQkhrYw3wi4 zYp!nW8rT0Od?|m^32a=UMULQ=m@<^GzqtxOW6So&bSv~I#cEyGBR}8$Ni?@3cm|fG zybWEA`?yloeQvn9H{7S@s~oDXdTmdko@!?vqDk&fH#>;)|9&-E(Gtx4_9||)V;WczB=8NY2eQOZsn-qK3%eMbyuTQ+1Z^hbiU9e zz3L9fCg`VECBA#yX8Ty|e4{uE_SHY_l%sji|N8j)!Ij>im-AKEq#T`Y8~W|}G1)QE z6vU0}|1hQSr!>IdQdf_s9IoTOze(jg!M*RQJKS1#Z8e2&6}sPxs+!W>t$L1fpX)!E zbK%3bx_4iN7J8M_A0acYsOr0*?_Lu3NL*QcAC5Wp1FqdyjycCZ z59@T7qzhnzci$YBm-0JVPr-va-aSY0TuJpe%*DdY4SNgNnOJLQKL^dhpd8^nXjJM1{RLF`Hxj!o=;~_pL4m;|qVPUM?$P6cu=X zpL)Y~_WF5DLPcuvjkZ5fJ=J{r@)1<)O)1uk=_2u7p>--7-*a_0722zQu(l3>AICjJ zi9T6(icr5do%4JpKj+m)a5umEk8EQ^#7nZP5wTVWiVf~cOiWo!@LyK=ywuO3)A?KG zN49%?YS27>iR{Av_vClL1bC|p9Pk7}PGH0a=mhcq(QB_vD8lM+& z$enzB0t^4bjdcvQeYCmonOXOV5m>vxVA}1js!osP8*CLC=6QQaKi&QjhIf|dVprQ9 zgxS6%8y4l669-90>-HV3(yq2_-3wk*VBr>?vrRDL2jtBj!n`i_^e+dcXTav4(zJ## z{%QU}GHb!zHRJ`4V_RQ>R+r0%C1Xnu%Cuz3LZr(^w2=YogxUNw!Vg{3Ij+3lj+09c z8N4(VQgb}bLIx~kroWPxT?j8Mpgq|JgRI3lb&)qah{Zb~pEK6#KhV>stk@+Z>O)Vn zj{3~)lo1~$8+%=CMrr-(`pL6JM-}G{^#ot3q4G$B;GR9$#>&9!w;9gS^?>QUd`3q9{ z2fz8FcyATQnF+X%p}xA4e?x2m@$Kt0X)LIel$(dw}ZWZ$RD zSUHN&k+xncf_zHZLeQn%b|GD**g(Arrf}Mu$Yp;Mwcva9mgpRR;2+V;{`OE_j#t&S zEBji`M;98=nqJEd9T|>e^2!+lv0OyXaU-p+qtzQmN=@h>uxr=cl})_xno_84p>geM z)MV4`zJ|FRgc)mhW%|`QR9nT2-nT^h$F7esmd}ZgV)gJXMKRDC7xApTXGeLd+OmPW zDX88M+q^A`Unj>DEBn4vp7%}>&}dA`BYDn650?i|(xYLTv;~1yI6IR*Je4dyD&slAI)n4G7XX!=z- z>U;3_)vyU;9p_xCj)&<+!jVR+{-3DQr8wr|Et$w7Vx@MfORLF7)=)9?2L*mpwXVnW zZxaC)k+mPBCM@x3gkLNHoAie}i$zy; zPS9rZjrzV+VoqWX1|7R~V;6Ci>-uGpQC_01Wy5`n>jTcIL^DYB5M4#P&j(BO;l7)X!wcUgG zuyC&RT(wrP)=-+aW-{}6VX?!ueArX&7CFCFaLN1dOARwFbXz^@I&U%NyTXGLAkz%F z^CT#`o*C6m6-ytl^M1ch?Q;+K_*a}+T`H>W>Oq#O+Y242_lgp$slsm`J5qF$t*U*k zh_Ium^jopVQL$eUkzw)JS>nj|#DiHX$`VC!`}H&qov+^It?)`hni{nP9tH{V?{GCZ zrlW949hF~J<+jweuf=Xx*;g#SoO-iNJ&-$ybtl=whhmmS;=qo213#(Oy=vSGVx{`F zew*lOzgQ|uoO83durVKkrxNS(I5;Sx>z265zgH9PN{m&_*C^pyd|$Qiug5>HAFVMe{VMCFb(>y8L;deek#~wb zqRUnOqVtP%RR_3&`@;Feu7&R`vPQq75ru~)9`m^v9tYRC9Hi^qw4D3*Uqx0HP1gf! zchNtK_9_~x1`ifl?=_U`!wGeP?{OP1$DN^DVx`0qiT_EM8~<;7@q~1K4AtUeR2_zn zPhTf=0hZUB>`@-&_v)aQ#yen!$o+x%B+=+{Um+f^AL%xIH`Gu(GHT9pW3L$7 zO>eawG4DY)mm$x1y|gbwQk#sKhhjSw%7VwD3*8|rF`T2og@RwhAVuMc;rc4Arf=N9 zabXCLkT^A^--|*+E&8vrIj8d%gAQNu-eLN6?}Q+`!85Hz#Pzr;tmLt959fyZ-rY*I z;?IXZwpT_?-1T zxJe}Go3O&_{-k`(H8Jg5BK`?t>uGS?gYfQ6F~9%+UIJTjOI7rG=q-ztL4DasomDIA zepiusd2#UM0!!hnq6LS@2fZVkGvE28%JY*4wbwE3K~4R@d5A@8jyoN;|iy)`tz&-&g1*cVlRCtl-PBkq6WV_Lct$%8tXF zkd|2szn}u&CuWY08YG*&8%I4#6#T1r;0yVasaVM#5huP?ct&RFVHxtd=w z2lrx+mWsWbUGGadu#Ym~iY)egoJhHdBX>WVs9_XUi>}R}2sdn#z=doVxlh1S zUBrGoNH;cCZ^&mU`42gg=~QG@uHLNLYLJSX!77^u%cd^is#Zq#-gr)rt*MIgi`jen zZK%x3d*w|v0{>8K^;aLYlPW5(3B6TmJ%O*dn_mAxS^kg3>~nppsn@tmQ+RAw7B^QG zvAv?cXp?BYE*;ZCPJAUqdTV5i*YWz>qE>0JXzmBu?UycwKD-0Hy2%aq;cHNmsw|s+ zYk}PIJlWuG;{OxAN?iKR78X*OB{{BQG;NRDdr#cLOQOa!EWm29eW=yX$_f35#_+%k z&g+F~tJ1`hjl`AT$*$ME^d5KQA4K=l@d?XluewrjW%=7swGwaBan+}gE6zP^0-kL! zrmc+p_iys?@9|-a(XsUj%B#FrwnSW#i(xn7sjn(r4(GAm8E+Dy2A<;&)n7%_fZfZl zbAju=$KMV{D$z=C=pGg6v-7Mz#lh{lqNBW)Tfq5`;7&LMy2_91YK#H=HK2IyRi88Jf@4@w#HsfFZ%fJ4lJpE!_$9B2G zlhug@pZLn0uLtDR_C1FSLt|aTigLg%pi*d^8lk_ks-K(8k-L@}q-gawAFIXrN4?By ze%o%&HPvWQyZS(CH;Hk zT$=ivG<}p_QU{iHZX3qtKK|of)CDE$e^pD3)EJdMv-ys%Rs+=dTn8@UGcy}x7Rwxz z*(x(eZBUoYhkS3VwkRVbQP;5=oWNhrO3yr;*@QcJR945#j+u>hChMh2s7yxj^rq>< z(~qaGNq;zfLHf4zJvu0t%3SZW9n~AP&D@^xT1H~VC@8hOHV&L z@NC<&`_3*qJLAmt(@CdePwzN&F11tYJ13t`{UEhV>e1B4PqjI<=+wZ|Lr=eUdgtkm zX`@efI=$)i_S1KHH9y_U|DsR-aBBFeXHNZas>kVNr@!!3Ev-vht+erJ>1iLI`RUAG zXZoFe;Os%)_n)b8=F_w(Y1`8Jrp-;ulUD9@)afRt9zS){sp+ZvQXf3kJauDgol}KU zm!F(}a>&V)ls}SBo#>JLh1ZhgW62MtY)+Y(k|$+n^5B$rPBuAt<>ZW$pPw9avi8ZB zPgY5NAa%&elKwaOWKPO}loQGAQ#PjbOgWg`Be_#@(d4(2>m_eZo|5v<$(^Z{Pwh+H zb+UA7_Q_7EwNhU`nUzxJf0IU#v;a;=o3DJdy+QidfjwBMgktUmGZiLNI; zJ8}8n;V1rg;{N1YllPv8O-@W6nS4F@wd767`BSn|9!lwxoR*xG(*I=U$>`Jxsb^09 zb+W4CNlAI@A6M z?&#>#Po#BBdp~V(TG_O&X}#0#K2zmvm9xob)}Q(4OtG`sXA+Ez+ugf^XBMBmBYn%+ zZ_b`HTK+uSE`5UUV~wQ$rjJn-w<_c9j7gb8IOosE`an%!@a1o*UM&B)$JN8t&gz*t zI-^_0+4LS6YctkobT!7yWTj;0<+k5WO<&cl#zy|CjGjh!Vpc&N$r^L}PdnFL&R~X_ z)`3UNcU&63j^rWs!tf9K`a#a2JwN{HD(D_m@0Mid?l4of>HmEsV?xHQ>gJB9%lpv0 z`c*|;h0KhM_{^=2wL<2bnRV>x&CE5KKj^OA-FAn`g*=h-o;<-g^`vX^R zvLols_69k1lAQ}=l_Q13Q^2g|GcUTWb|@71m2w3^EbILU(gv;`ObZ{;|Wt?+MI zk6Pe;o9CAFJUJp4G!z${>T9|FAvbWJfjbTPgEneZ=g2~}w$epY*EYjFhb|Xwtosu^ z9|~JXL+&SVp35S=E9%MiJnuJst+B6JPj~U34fU$k)YV<)b9<+Cx{Rk|0#C@Fu;0b7 z^Hr!ema9gtp?-J@9mWA!ika5`S7|SX;4_nO%{E%fD$w45n|9N^tk4UrgN#E>YNwu}p`eHjeaQwy z^mmi_sH8_nar#T+Susk!a-k@5kc{edvF5utksI=>39_!A#f-wk73Pmof`iFIJ&$+8 zGYuf36u76LXgfaQ(sj8|agqB&GR>*jfn|k`6`Cqz|AQRtR1Rn>WMd!4-$Z%M6H(9d zo*(4zgDXoK4EKiKK*M=)tPtJaC(nOYF8(`i9jk0-70-@U7@wW?K1>e#pq|Ma`GK_X z`jyW}tJr68BQcOePyLT;>sUNS&b?$@@N0?Z8WuADfw6hd=j*_71!d=dl(&Ch=6-x^ zGg8-1al4IWcHIS^@BhPC-mZDk_1J}_WroIy%0t*S7DyxSz9O# zGgAr|vleDN;n>`D@`rTIKvMuh6 zpt@zY+KqGIYmizS{xI!yu8p&mdy2lwK_-9EqPzfya+3L#i%bI?#2Ouf^XizqTi4~K zg?B@l3-nyBTx73~%J&q_@7)LOYd&;2SeNDEg;ykOb~eAnpNzjnFY362pLMt$q_5QK zxL193#~^Kouy4@~_cvXtE+!O#9oISMReApOgrkItiseQ_pj z;MaI=hhto?2a5KCg1;#`x9HKL6>rYg(YMXbFWvkLL|oaGXv{hBks_^hf4)DlNkWzQ z{(NXA!}d?g7!-5{$1xfGVa)k)uSXc16OQyX$J>m%PIK758SFebp}ajVf_@*1e@QRl z*ZJMODxsaF2#P<9bmlhsZWSX&Xy6}^*e6u103fC$8RAM7+QSb|D zVFXuCz+WBhu4;fwUW?~7sjzPPW}u773M zppB7niqBCecjad+SbyWBBCP+suH_Zt7n;+bn{^wlIXSTvW4A-}eXTl`FpnSm+ih_v zuG9kD-(YJ{8@ZiN9YGt%P~QGen`wQql<)h*2>jAlc)FoxaLKr(?$%dUiLe#~zOEx~ zvrM5h4pE)xC=bvYyo@PME|8!DeCYq)1*X3&=QIg#xDe+42Ws9Ach}=1*v}^_K;Jh* z%yS^vF0gh@2s;PEUEf-IyT4w+P~U;idJ*S49sB!1gfDy0iWk!pXPG8wAJ4 zq4KH!=stgsK7Y^21eDR2zA1d&oJRDbOlh<_(yKD3k4KaVl_B7VRSbr1iZS_5s3*;m zOI<5xHqdLe_s@|nzF^fqDtFgNEp7u@x?Fk9w(_8%O0P*I6Z?(o*CKS@!MAp7Br{rH z9`7TWz($m@&2&9WrJgxJsTQb@I-naZXQbm-biiVX-}+M z{3VIPV5+}v#X@aWgF2Wpc(`2UL!N0j%NBlbk6+4z{zIpcM9o6ADnGeTq z?#{vY<69_koO*zQSK?`l-sHfs@KOU9Y#Rg^yxCS@Am%~5P4$>r1HaXwNZSJmb zFZ4N74bEMhI0nLMS1&HZLRG^+z2K=|6}qo!zn{U`K`q*u2Coc#_ALG?ht$g?sadH{ zbu1?YBpEB+85r;X@RK;-gU1*Tq|%dk=XQQsH;X+mRRv-jux}CD%j^;da(7RaI4FyqZjXm zzR=yf=ibTs%IA(kiyvmr(lh!GvF5>yrkP0@cV%=Ci>^tpD*io@kw^FEjEp64*%tm0 zPiEDJ?Sfmwyo~+ntuv}-jLbL=0ba|joplt#i_Lftt}Bqy2D0npGp#cFif>0})X%tI z)ZJSgTSITC;^+V39Pxv#Jg1xQKUvdxkOa?-U0&lepAc{F&CJq$Iu+jh=G+L~e|w*s zq)XMiqTl;;p6Y{7JH=gov#32Vf8E5vy|8JCejglG-ge!R#Nm~A2+nifYqNV$CicuZ zD@MO?Zs)mA+>57ea}i8CEvpJQi{|HAxOR_mFxki5q9o4n@kr;YOkN^Obi?|c14x!D zJ=j&)%RQr)EA(q-2M!-8nRmkl2e@V23592J9odz&6Y?&B@q5N7NI!SS`9m;3Mfb63 zPF}HfXL0xfKdlsj57Il}8QFtBg# zm;JOySL9N>JHyZ0tSUofR2IrwZIE60Q@@43@W;nF#Wazd z37#FjR4i_gaf+5{8YjOAhb?@@L7JhksA3d-Pkf5)|Ax?^P0MMu+BF1FhB;UBfx>NV6W=n;-l zZ;zxE7^$u*LGJY-&w$VIM=xTJhEnDA!a;TMZ28kya8&3W@p9`(YgZd$sf}&=p6>Cu zS3_Q0)8v4^<7k$qj=l}o*)f>V{*;j`)f_zTr6H@Y z)9cGwPo(-d6LCSPRWOm7t!(~8$95I-J1XyZEMJT#aqzE9Qc*RSdZY(L)!nNV$H`V+ zRm2D3nO~2(EL8h}CSV>Zc))Vj))7WyK2Vf`s*nw%AoHY#1s0Y z2xd4Iqg3or*rtKbu#MxV#pT9L7m+RHr`U+^I*35)qu z-WIoss;+LK{nTEk;M><|mL~9&Zb&8dAq-buoOv%?w<5MKtx`_xtMK7QNbsq|uf@C* zZGRT0%*`U~VMXilRPTg0TMRkeck?Iy->>MhqEEwD-HR-84ZkXUK)gH`CswoY3z)D; zg=-f%0FCwb|MC1cmnCK-cJ!XZ{K+@ND|Z)JD#G5GI09-aUidQh?J3uAv2%~bo&6v- z{w2Ph$az#kGw9;p!j+4B1mSdtP*Q#G!oj?2;T|wbf7r2b!Z-0dacLuXm>(4b&!HY1 z0H?kN6Blva#^JZt;ZKi1@NN8MMeL2Zm7??e;G@A*X+OBL6MY{A6I_PZ>Txw)jThbP z-66(5Y7A6~e~Z@ZPS?K{U0b$T|9O1gU|VYy+Z^j!4g#-kj}58!isIO!eXW4}XPOW6y|U8f7ERt((`I?;2Tw_;ot0q@5ljiOrUp=ZDt@9%=Y{w{BR`mEA)TgRyp+KGt2 z#PH|G)mODb<>!C%xyr@R>*BB&wi~U;ztm8FiF{+NZzFYG{Z3pKy1PwOt6Ilu`I$(p zDTkk{BDni$$qVo^`c51dBa$mmC3OSavxGCmI&}~;R7LF5w0BU1Xb~%Y7>CRlJD%eI1xOizC;`E!B~6+G?#Iti$IWa#JVe zy53bMP}S-_!_%mnzl~OnpF}@DNqqVsmgkVn)N|^*b1wg&v(8-A+P8?9FYFU5U)qX4q1w;|=>jZ35aaS!=rvx4TDtns1mEkE*jAc5j+^WteP8G@+ z*Ym7vJce)6G}mwwc5A0?-s3s-?$vf;`Acfs_tAz0pX5-lR1_<6O$XVV+>t$gZtJU` zWB*V+K?V}Bi0^6QcxVQ{6eVoZ|Y9I#L;_!SUt`=C#iG!pYBjyBk{)+ zJX63UPer^8M(JSO1|r#@BX0099LY)V3Fmso^FJCtQJ#1T5Z_2REr zFSMs)dr36?JrweYICyr})A*v&=hk76F8ci|5YFFv6D`cX&Uf%OS>;6RR)2orKjF86 zGvZJP>V=#clzH3EXNitu-POTrZ94l~UmCjW`~v5yD;fn2)fL~*pnBV+PNy+lU0YG? z|9J;4Q>jx--25g_!lr&Zi1x0r9Cs_fYs>e%hkYifi}})>yobhd^@V?R?*87q--)gK zkE>ExE_+L)Ix1V`Q(*gU&#ii)i~WYqu+!ws$Ek_>-YRi{zHyN_v!QX6O?UZN?*0o; z8!HdHT9dd&zNl(viGEq#oxz>XW3~u2^j3P;vruhSTko+%*J`#ce$L5p3gSb4@`=I}A-~+hHUtfTNI=TM8xQ>@~sEfOp3j<#< z#+KXvV2aBxAm6Dl-&ziS1E?x2SO4?2$&<1xw|?ny(L*Z)7q;?9kzFRL5zX}Oin_uvS+EOMS7 z@#n9W^MAPgPkxzq!0*#s;YYK#VPe|aa*E^m*f^_wp&IARN%j<6EboNu78sGC8`@9^ zb*k&#RApEl*XM7zewwPauQ9Jj&K-59PWpErSIj>#vFFbHVjle>bMWW6{`9JA=v6mx zL@WuF7KQe{KX=)C*Kxl5h8t!0{P*6s=={O#nef?dj-(tH!88#=?ovv!wEg5ALR(^^V`s5OMMOhHIrX= zkKR>>H`b^Po!QGE_bDm{^N?AiYjM<-QJ&&c z)b*aR`t{Ha@sMZIDC^%6Rdd7aw}r31&~Rn*aR;qJC5(R=)s>}G>%~}Od#K!76+xDj ztfHOy#f;H6un>QtxmVxdzOsQE(`TZCZEBo1`#uLM{94W21l77BZQcdM(N1Rm;)pQ|8SAsLdSL&Bq(b24=!`VrR9;#TtCwx zj*<(!#7m_b#rs6HQ+26&hUV!lN4OoD3*C!n;;}}lPYUY7)e-Oixm1Vss1RG`{eXry zj%(a>D#V%mPHL3fHtI2=4 zz*7IViqzg$i@3WNlli>?CytZ#O;S75LZ0_!?%MBjWb3aMU{Jw-Z_x?d)2s07>G-v_pf}|kUJ8kWMG3~_Rfx)Ut-PjH@l_eAYE6nw(E(ezjO~Iy3k!K&^ z`;YM0CW^RmSi7zia);D`bocp})HB`Zbv$O7b30`(x6-tgQ;$^C*B|gxFV#X@;i_JR zipMM$yH|3yck(A#Ko{2)x_+6y>^daA4({E``|l4Gie2>1IpTlsxijS`y(ZIvea$hk z2u)k7{L^`qELLmrDD~S|s_W4zId0`^H`X1TLrblnUGyWATk$tlQklJ5cKQsLjJERD zZN<(NhYBK2kZjMh}>;xOzNB$s4>B(`d3A5Vu6=GUR)5~Y0_2eehV zg3urO2oKHPuG?)KJ!ZSkceSu`5wI2fg*nR)pew9g?^Q%~fSNR~9@K6R=E; z;w7&R&{|cFBTt*}q4&TT2yit-SDlt{am1CUtO~?W)#0?kip=7})5KM-qW-q7yP9Oh zdCQsBa(wk1`QV5{{Zmx-mE>YVo#|QNb3J_C)eg=~zdQCejy;3p%#T*SsWM}q@^pC5`3Jv|jg;1f!4= z-HaT{6{$Dn>1eZexDi|~-!;_+VFVR+tv+$LzSa+`tX$bfeE>#rMCz=IRzYmqLUm;a zBEBhMooHgc7+|bssQ~`fUOMo*?C4W_tQDWCEa++VNV5vmH3naT;d>i<2VI@xo)S}V zOszaaa@11XtSNbD5o|fl7db#{IkgU%~Zkv6_cbYL5*?r#-^MOkd;9`AUHD*iJX<*%*W zKT~An@zltU>Erp)$~r$vCUB76Ex+KCQ{~U#B_DlA7x|jX^vV1EK6E|&&R&}9iqpokC`nc40r|5JDKyH)J{qa) zjEU)`-_Fc}B|S%`(RmD&rM#=qUgzE29(Kz6l$8VeMW4mH<%7=3&K;+?UP%SrmHN1_ zdd)U5agk@)WaH&0U$u>$s-B&pa<4Caa|c&@G={XPCw`V1!Q!4N4P43hJZXmFPj_%_ z%{IGFso+`bT~$4m>Z|b!^~y=~&po|!t9FV{Xb?Ilh=*QGebob1-*VAZ|%7=0)#(R1S6<2{YKnIq;A`VXP zdPbE}hu53;+IXtuC)ARc;>b2g+%!to>6n;m0OyyM*N$<~`#=WiBn(|ku4OL$XEAkk zHDr)dsB?F7b4j_J?W?`muCXX~ybS-pbiC{NpjDtX4nCyo=#Zw#=j7%0w}oo=SD5>Z ztj-dgXy`Z}2k#%Fh5Akmx`&hhe`FCV&`aIG@gzW%*)ZCCsO{IB{tre8I@u@J{IY&)g805 zTRtRUui|FLD=JMRdSWEh$XU<)vfJ-(MM;W;6~qr6TKJFoXbG_CXf z`y!wITIcRLHv=D+pNIbvEMpQK>-?-i=f=P`kE`d4JO4D^^PjBd7`!jf-F|K_rQENM zEgV7cv@e!9BV&6;gUn0Ref4pRAK8AkGf1M{%cj$71aloa|F&GhL8$ZxTuX)a8bk%DcbA`DMP01xtk^_Q3fmk&faq z@@4tppsp}c9G{R;&_{nbW(R()vv)3$UmGK5kS)^{G%fIc#(K2->NRTZn=WD*aS;%uHU)e(8{Q*7T3%IwC zG5woA&o{gDC~ljVW*!a^F`_7lizTk+N>fWMU2~wr%w@U z%eR~)E;@$+n7mKyb(2-(0qVp}SiZ5cdN0wDFQ@Fk^Gd30TwZ8U(zQbzA>)K zjVpgT>fp|}Pv-c7jBhWW-KqLvC11v4^0Qmy5Qp&AdfFEIT&?fkmASHAo$mOE<7ow1 z+5@uWGa|lDA?v%HK4OiCe6xCoco?xPSGyT%k?T`VjFAQYA9Pt>pY4+r5&IlzOaIp4 zbvxkNP!2~sWUd!LrWLP^bq$U=pXRQ?!|>>>&N!Vm+;oubMgD*^(o3WfdBs(s>Ntvz}{TS)TcO#;dT;mw%_5<;1N9f=YuLk1ExhfbF@D69hjUTH-T<&`vF6~e8kbB-rAEUnH z3hwmG^&f8xqmGFYw_Jlh*5`>9W7ZQ*|0zBx#6hcF1Sx+hwhoSt(ISFlBFA`qNNY%G zg4irP&!)mkTm5FT3etLFqMv=Lwz#pgs5DwXC*vVigF(ajp3e=9#7cu>{#57G97f--PU#(2 zWt{4#yD751DY!qPO??z*o-XQoB67U#Fpxc={S~p3>Co=f-?n?)QOdG4c(xuG*0nn2 z9fhRtwVyvA@mdzmD%4=Mym94XU!uuyGAKvRBnfHCJi&3onhz z-0}yBndXWYU&NW+#7Cr`?7+uj=4#m8pZM!E!HtF9tR-X>;?!}?7RjvUukx0dsG8X3 zw8;4YJi6UIen^a6qd+TrTF1?$wUP4&jQ5(a>Z)7Yh|>S$vN)D1D_UfnPwjANkxn#B z_a_gdIbz;U`03ViCwK8iovfPoekgF7-&cWI`@@5^{co^HD|qM6@tc~^L}^HL7*twX z>~sbKs{w(9P7nfB z6lM(~m9wGG-La@pZ<|jXH^ry&@W<3sf=l^m9k;&2U2V65EU|9I$SbV0wtUJ(b0=Jy zs>Zbu%=d?C+--Wwyxy|(|k>`EcuWb-c4fVM*tt<0k#7jIapYyk> zu0vaMzKholNa$6+9m+*GVq`v6V+ud zHd_ank?;FkB^j(nX81<03E1V?=Jr8a%Q75z>*+_>n<`@h1!YAUgP!nZCH3k*KyWQ# zy}?{DpO)MC%#}Now@;+k!zx+CdU7iN^ZyG*W`7!#Gh+YMMr5WHccO7LSg*(46!`-n zgF3X3rHs!<n%4#h1uq$RwczUKhNMk{I>;mvrfQ zN`>WXl%1XYZIBuFq-)oiZl}KL{i7oYy*6zChGr_hTyz_l16Wl{irk5fStg z4UNF|=c?=cT|8HaA9{XK+Nns5WL|7^PdWR;sznZ8&Qb;P2)_Sy@zf!4#}zp4Wi0td zJi(jt{HHH>mSdldmtCNSaFzW08#unEV(#NGR0>2j16$EbRp3WB=8xs#!@d@akkZ70 zFG6~YM83gE|7SIW<#a;W@29-BR!T&Aj0S8fU(k8#CqtEA4^jD6Ov0O(^_#Cu!7DV? zA8(g{n>SJTDPgQS%Pz{ zrGoKxwKw&s-PYq6_rVaY{W}r5d`;vYD@vZ`te%B1AK+wIA2+xJd->0WSsVbbtl6A)DuPrapk@x*0dw`9epvibZlBrOK?2p$%%wVX)^U{9V+A zNm$&17YVyx3S%EL*Hf3EL0Fs?5<*P}Vl;HKJQBA3!f=Hx7bz|PiU;|${tMkWxUr8qiL$j)LO>glaUIgS4I7ujoKOb{JSY5zKx8^w$RIS(7>;kD~Rn2 zK_g>T8*kDtq$uTb&b2)%l}lUMrgEKo&B}1l3NXw{k>nZr6=%hARLon%K|q^n!oHb(-;S&DaxSu|ABp1b7GqbH5#1(Q%Uj?Co+^!=sfb+ZQT`V-`>hiZhwe(R%6=`tRxQR6 zT=vctIN(MRjziitocaKvf(n8 zr9J(#eeVsqw3Gc_A@i9}JU9^#Q4jmF2j=)nc3dJUHc9amN>&#rDUHEL2QPKTmbqI$7ACWhF1lN$wY?%=4ZHMd`CeG(o``GWsn= z!R5rvHRWnjrpJTyP@RZV0UKAk-7Q10Rnm z4!^|V-8wj{M8_~#zW94MD9(G*;G?qqzt5;QIfFUeZ*(3MT^(?@gCoRrqhOUif1#Ju zr#j(A$#+gxld{iMX<)w-bllw_I(oyF!oC{0;?eT5%T(;up&ML-1-vHDoJdz%MjZ8w zJ2O@kxLnOk3$7Knt5i8{(U@BAOV_e!!ClbFTq?fqw!NRrVGnhLL&bt?V7#uF z(H>NTMO8P=<~I1dj_9er->ibC54X8NTt-vjuh5_CFn`c6Zh|5(-0|RgG20azVT^n) z8ZF8}GH7?Z>ju`2Yw0A{@kQPmZSa(L#JukRTfC=G!5Mr@L+{@Pu;fMO_chFTl^@_6 zW@AZt=?`G6L1tEdbL%;Cal1Vw+2$77#Gs%3FJ$={tXVSVKkm#T_;QNhv~yqDsp2{4 zGskgo!QrwekEA!PF2()tI>s`FBgb0TKRBv?2#*EkGGmNp?agAcj$xK9JuK!l6`n3!}4=UK;mN>4^MgRZIoZIQDv@#phjf)4J z`JV+JHx~!TOvSu^LDxFVo;nno1EEy6-h4q(JjE(?lkI)xzJw0e)#zK}3cRV$bTjJI zaEDjnx3|O1n`COXLfj?b=;qdj&5%Vpht)T5idQ2Jxs$CK4dLli9KUYSn=g%`;V7K3 zlsDB;-MWLD)(3FjC-~+B>iW9e)nj%33l9AE@)qnO9=?ugO^VtGISdrJ7L6L9OWLOx z!Czt57kHUB6g~ISjcb;7J#o`6m|>``EEMg2p}#>>vF~ut(F2~rcSY6F*Q&Z4+K*WB znQE}Q*ygtpRNW~m#?}^i#y{b=$0$@^makmIslB?KYg>Nj`DjH?>T7m~Zc*RJAHK|a zzCI1hzbdCTsicY)iKfckJ}b`cLrIuRU30=$`^zt5IO=0HQm9`}T>4Z55;DWVbNm|_ z$HgL$GxUa!;4c>8FWT~czNAykE^I~}Dwwh|$rDs;eSI-FTTB#vRg82gzMb~x7ZGiK z@nyC+^?}@RqOPyRg7azJ>gC2=I8Q@VLbm)M#nxs@uT$!9wo*V%$gYZq$nZTTXPW%^ z4;=A|Qb6T9AL@U8J6~LcSb-B@y11%??09{OpP)(%U07Gp=TyO}91)j(tvaO>MrD%s z&7xooF4$kIFS{zgK2&}?WY-^*M=$PO6>{rSjBccS8-XFIC6auR!t1fzJH>vFi7{JK zIZp7dWn#KCXZ0JNWit=GUHr0}UfyNvTP}}+J$j1!mpP&@=z_=<86MS zL2Bwgye2!}M&^DomEbwlh2X(bi3V!l<*G))0_fzb>s0gNofpQ_H|C|8tAH>18-uYvdkuwP zDY0+IoJ7jPUtH-$I#B;eeH){mr|jj|jIj0GRE8KKFB>z-S9Z$chn^0nWT4-Mh|B3G z)b!em^1%aTnkUjfh0cM)WU8<0@b(o1K9qxa=xvb%d4AzFI;snly$P4z8baKI?b`%T zuJYSg#hzv5(B|uyGaF<0m-%(4ipsy}9#+c6JR*~IFwaW7a+T;rxv(5AfuYaMDqRsC zk}djH$M|yQ?Q8b*q^!b6(D4!(o!+v*{}Ycc!b~Rfq?;*EdtEN?{m9ehq5NN9#P81g zfSSrB@&N(&_Rq6|2S5wor|P%(i+%TZOv7Y`w)onq611xrZyj~S1Gvl3t+8Ho6S}KG zX81-Z_?TEbo;zuxYMZLGS5czm+z1c4%e(T!*$pu3Z&4{s_Sf|y=%4k73H=@SisJL= z_gcvcG|ZJrjT&V;!IfYy{YP*t*l4SV?I(B~q>JSbdo7UXY9{0LsT^KS?>&bbXiURX zI^xN+Ue;n9wOMd=Ea94O*YRZ#{a9Z5kv7mlCwrRCS+$6J6*_B-)C*!3E_DSyAw#zR z8@$Ko(9IEO`4e?a*I<|j)m}a*)4xIv?roa%&oC~tXrVhn)g!3hZjqn+OqYg56#dPu zI-x7!GgQzU^=PO?Q#a1K^$>I&IMplIrF(Qp*lAy#^mABm4Lfbd%%p368!wc{XlzUM zoCsfUvIBOiU>K1i{-nZKA0I_6?O_;{k< zccLcjmHVW*aEV6tq`vV@{q+a0Br8d9EouhaH?`-^Jbmg@6_%pq-$h@2uh|@!;v^nS zqbPw-VP=1aGn1guy!4LKAj*<{UI|^!HZv!fzyDER@G@TQx}MSfE>DwH_*W+5N9Q)% z_52Bc^qf4$y>b>ooqgA(l8$ehbL%c2&|e+jSSsvmu=@Wlp2hpM;Ggsc_oh);!0O&x z+=^7$@i)cp)#b%h|58os-~~$j;Kus6vu#WP{k&_`^x~{Ywc$~!)nZhcx4VkHU5PCe zy$|qiYA?I+sMYQbpN>)a+6nqC?lbwUc>lBQ*HqVSquUJcYeDh33^UnB7UVDIR?)iF z&si1JWuU4o%mFLMXdV2j$=du*+x`zN{4eS>Mmfvzo<&<^YzDic^IXS?uKRt~(;JZb zJ(R#hoZA5$<=gTsbupJyt!5!}Q__l=7sh@EgO`Pqn|}2LELMuj;Z(WiwR&!J@jPuS z%N44gLw}e=8RC3uD?TtLPhEK(5A}%5&#M%h^w?=xiJ*B5yPdU3jX2ouL zuFxs$Ie7Ff^XWq~Yn?Uf11LOnhH5T@)<@>6o_W>WZ^xQX&EWT05cWX1@}u&GUzwwG zMI3jDM}EkAFyFTP3&px2J`Y~%)x^_}h&Q|DF9+{D1X&e~psZij&F%90c&IKQ&GQlW z_hm5Tv-pNi-Z_yAU6lHtS|Zq`V#7XkE4kRB&Fahg(xlNnqZ+;khwP;|m#qA?_@5Vr$(H-Kpt!qK{+)dC7DCx==!dq* z5d4DESZHO=%(G6$VK_g{7%^X{4y;F&mz6gl^n)VBg|6G%d|fxlO3bG=nuJg3tFJ^W zTGveLZYsv`cM;rF_q&ALZ;rcGlM8fJPncd5SgTbU*2D6IZWH%Aw}!m?68Y~{5`#YF z_sO!{=`>N>Z6S09J}fJ}R@O6Qnq#9z>GU_rGjFTWvXQ2@Lu71Cm&bX}v#GBYyS=sh zA(`&$o>9f34dEF5tCgskc~{H|*xQWFy;ML;}jEHN9{A2W`j%Irnf4dqY$A0?g%%Ko1 zZdN`j-<@jj(bt=bUH@x_euHD4uX5#(`l)(46Bfe$XJh`K6b=0$*87?cCf#auk2vN7 zdC6z#ykmF`)$;$BtqBdSU+Frh{6LGnRmQEiI5^b3eCxQ*Td9Xz=XzV=8tT$=_l3iv z$q^J3+iW+Ai(KgD6k^5xdZ)ame&apyRaI;HENl9QDw$HOM4|iPF3O1(*5Z1eTS1|{ zPhHOz=T+JBYo#YrdwT8yRNcQ}*cZwBKci}D66X5>5qs#@8T#IbZnv{MIbU;a$6*4t zUOy1g)V`_5^0ph(W#_hAAExM?@eyu%H2hJ69(J4OcvsKsMo>hW4E+{){>xUHJ=T~! z@W~J^y21T+GG1^sMATI_qKB+fSux9SxuyqH1}9TEeoXmzGc{^eQOXk0Ms0gpFXG4+ zJN<+qs4cDvnymd;mrRPx2SgtYsIgN0y`P?g<0)8c!%|B{R`<|EUc)EUw+bd%3!lW9 z1^3#qI<`eq4-Uh1HKZtR0)4$}o3GQpmWIoEQ5w&|lvkFyOQ+Th9XMCo@;-C+2G@!& z@oa6e^h@pQ0}NU*CnU z<45jdXUCL;MVhT|=@5Fz8@zfu$!IS3^JB898{xq_-S24r!Qm|0Mo$(G=D4<_#a>yS zH$mN7#41o6*L4d9tPZYa6YcLhec+lHCF8NY*F*k3_=9_Km?5{(Xu zc;7F*X|33@1pkpVOjt8tt;ECwpx5GftP@6OaePgzS2dkzw^L9o#)VbXV=PMC`kr+t z9^+Py2Be-CI`lj3L67^a*u0I%yp!vByNLXt)$aM|8hERM*1XUk^;HaX8KWdqlzt88 zHwrTvI+xd`+z4*V?QbmM&pDJwR}QwUk-5@?24tZM#^0z$D)HPbs(!MeK4zLNqrk?qQ`sW>*ycw{`G2KcR>8du` zxmKcwnJ7zsm(R`NzMmup-m4#ZsHN;-@1bW*U0b{hf*EJc8i&>EaQznQ!F{&5j5=l? z93FG66Q1gO(djb(UupHa$JZh&-%{Mvw#yy4?k}*0yon{cBucrH3g}n;yv8`5<(RFX zt&h)&L2j|8JWZ4H?$uBqS_bkCaZ_1Zuw~Yy9#mn=tX9F>e_F&V^H!@@9{95xb=Db? z)-oEwi=w{2#ee-F#MYRS1?Ct+PCshK;dR%^YwttioIDlVv|C_38;|F!5c#?kebZCEI;Fkby&ExCn4 zG*`Pgwf#;H7Ny>?C;S@g=z3flg(XUh)L%}7G{@je?ica46)*p)XWq*clP|--gCqTx z7x?Uc5R4<8&yk&<8d5X(uIO5;+kOBcDtra zZ6WW4vbNSYrz~7u2R^Tk0~_u5+N(-j$(18iF*eOvNIQ6pPe(0E&12bLP-XU@y&Ot` zc^(5ejW#j#LAx7ociV-7Si)_xDxW*s8~#nt*?-{^PsPAp74U9r<pCLdsy8z+a4ER53c0i3iD%rSMf^F2yK9AY zlDLlsv5}GWjOaf^|H;PN7zZck7DUm=m_#UK^M0loQ_EP^}AnSTc`pMRTa zqs@RA20yB+_xYOCw0Tx)hI zRJz4oTmtdllRE}q`n~(V1tR z<~Ytq#&I0XJ60B}9G>>)2>UzC7~V-g8}361pPm*uzdK;vibn4L&@RE>@@-=x2F5SooQKO!M)}=T?|Z^JU)jh^bmrI0gktg?cjzVjlxNN# z*MF7kEh~P%_eLTQ>DcS-MZzPj`stVZn=i%9q=N2m4ZR*~!?XM4KJJk@i&I@ym@0IT zvHZ%l&ezM!v3%xf*;HiR(9^S#OiX#*MF+~mWP5^i_vz0)Uw)F4%k=8x4lJi$IOBN} zN2A$NX67ck&o|`h66NEX!N@%vU+5Oy)Kj&+e{&t}JRS`(H~yf^DB_7*-0we>@lMg* zd!A^ZHIL@H-;M29zSVQULu(vve4@`5d%1uE0?YX%`B)oig^<^L>ax zJtn`_4iA-DU?2ADXYZMT)eH>PHSBB>Mr1M;D%AEpk5M@%{~wf0|KP_y!X+*7xieU~ zGq!MAcZ`qV(i9jtp86W}jVx9bt!kNvr+8X#HKW{SEoX3eZC**tfiDqVjn+s`{D(FW)T! zK8t7lPISFdgqvUd*g+f{lvgJp(Y0z&Q^iHMijlTnFHNB^k`8H}d`IX}-$vZJ!pN9N z88k=^a*b%VvuO6XzuXV`o`-?%y55MN`#YWhU94qOtYjZrLkC!k8b|WsFH_mHrserQ z5?j3+QC9!LU*mgU&l=-5n;VTIei-ZMbLv^`Pjl~>itz|;QXwZDY9;!Zx1+4$4_Wb^ z5d|iD8hlTw{fw+-d0OQi{6-#?&+H=x%%C{_kWS(t&BJM<{9eq?vB zXyTc(+7o6c4EVLVSMpl4Sno@5-(cH$TkN=2>>TD!9@l5IS@nWhSsm)TDC@oc`mMU7 zw}tjf-KZ+se3=VL(0HWiWqwJY-|eF9RM;-c^*rjgD|zepw6zJacpDn<1ekK5=(Z&6 z87ISj$UNR6SM>q~{nPp$wsbaq;n1zun^JtN5vA9X^=d#B(nsWa{ra0X#>u;{cZ?mW zCu8lSocvTeUE~w=S$D}zoaTHR`aTcTUA&5)HhJxYG;-x6^5L(x$^=)}(ep#u%33a`OiHLVpHkZS`ukR-~l%kunvWIx); zpmjDPOM7pJJOd+@%TtV;uk?6)*51-}fqWavI6=u0D(zzYl*eB8IPw#YY^Up0hmIxX zrr%+m&^i4{%GD$CDVw6E`0bDIV9?PmRcl&JZRA4OHmE#5r)q0qzmxO_KQ3>x*_eMF z9{mR@-c3I{-sk2=@-{y^ug(-GGi+x&q&C~X2VuLsGV$q-bG#W*!Wy_x7x0tj(K)&Q zXQ;*RFyEKr690u-KY??neb>Nj#+3dRC_Z3#9(mEg|%8+%lI=-*6b&d7! zRjT9Av*I3kv@0|fw_(FK%9_1T$1*@x@R&T)UU)T@+UAg4(@Cq`Nl1Az1!b>%f7|v` zR)hDgrO#Pahse@J7woQ^+HpMkQ=GectBx*fJ^soXcElPtTDEbS6)t4NLVuk*@?L{( zD@4D8!TeR__$64hKg@OyT>gsJOECNjdm3V$2&&Gdu=ILZwmtn&Q+1}faBD1rXx3=7j%`HDZi0G$+^$ZCFq$NLWDyiIof~C z!TqAb<#I)}xTzczubttQa!mxYU4*gHbIMX;JD^8T+Oe(1)+sF<*-<;z32FIqL_b0E%#s^&WS3Y z!$jck6qs`Fk3)dDyFN^32U&P)1BNF-< z<|{wR$8T(SHPb#Kwm{*dc>#>yKd!f7lzyvVJm z1r!jXpGU<%b;WFb{JWkTLW~GHRR0Y1*^*Y@{Q7X$7p3p=|1r?vC2RjMJ_||qJqqbC_y1VB6F8sC^?l&OFbuPAwumSx4n@*NDiIM95s{^Gh>}uDSxQJmCgjjU zWJ_^~Y$+llQlyB8qiFWA48#BZe1HGf_cdnBe7~Rld7k^euIs*Te~mUbZsHQY!JM^$ z)-|wbYki^4l>SPk9krjmvdI*gK(h|5xw+jGg3gLZ-ZiWHVgd$A&i2v zjDZyeeB~K?*j{p{s3*8M+zX4z@#?Dn_)0k0dlV5JsU(7P*NW18%pXsf37WD=Up@%%k0{1ACrC(=fcm0i!zK`tY-JpNA{E{Bc4*XPQO6D9hI+PqXUU4zfk$DQLA_nm_1f*~bhD40R)oXWz=5u8^%7as z6|3N(e~KvD>+$=kwRk!1ro8`$8iv7EmcEh7g&!mRA3Hux# z)yE8=!rP?Qr=;#lp>xtbu^*S&gj*>|3H1-Oa zcBSHcPdDzNbeQi`Iu*uL)l+mbePig^w2=<m1tDgB z0-ien(*0@7WKnZ{T-FctQMb_*HskBjpxlcpmeyMHc9j`TgLS5C24DF_bWv+{sj9=D z`ZGOR$MXHo(XI6ATq{@vpe9#6>QRz6y1v#Y4@YT4$$BK>BQ^$YurZ+uMB z&xuD9N^=l=L)F%1HRa1V?sqNstIF-Mv|Wkr?M$ADQ}sK$%!P5a3a)yb8;5ZmY^f94 zVV#ICIm=r)mBe#Z%vCRPG`5F2sC%fmmeFk;R0*<)3U(hA)d-bNH>n)^Mn)BS2@Vho z1Rw7AX!>4}sq`q9tt-Gp4u&(-bX=i+Yd5BFyq}L!e-5G4JgWor6MVv>cz!q40eE1! ziL`yo_0}q&wQC}#c#m$dlI#B*9p6gF(q4z=)oMt#Q*!-9x%GqkvH3>DN)K3d z7l&ia!uq`xVHPW66qk5ax6QK@z}3sH)(d@@9?z#d|HWlz`P2urXg`;Gn8w@*K?oe>0L*-+c^)4ndJH3qZi^3E(kwjTEkOX zNj~`;=ChdEa4QYqDVoMmpY~Llu5^*Fl%32Ibe^rZRw;7_PV@|3cB{Oz9wzc(io>}P z50&*XQ|TyA%Kzp%+9vMa=dn{M*CzQ2J*SsaGj=fAL!D1mRWc_jc~8lJf5sagl&@`| zU|eq$rTa@i$8_8^sH~Q32p!|SyTr39ff;pMbSt7)?chI%m8(jwuA0@h7NzoDb=y-8+nmM+)d~Lrh zZH->Jz3`u}7^l;`zrMV1nR%p_b*rIy@(~$gUH&T5ONDs$q8pD2ToP8PM zwTX@^w(z8?^iy20g9qOzjOYc&(t~pEL$wfHajf^k*`DH^wgKvP3;Z`Yu)PRdYYa!6 z4=Kwyf4|Par^JoTpqGOnV0Sq7L3rOx+4fJI;TPy>cHu%_5o%_{V8K@kdjLXM?LvQ;=}cGlHCSim^Y7SOd06kau5v$L!$p4!)RW($256c1c)V@? z#5pl+;WR|6tQv~-IF|3ljuk0O#)u#{Qq>#~fz}qg4izo_7XmgyMBcdgUP#!xV$VN3 z4FlCC=N5nFi49rh9=uY#&dr@^mA({JHxO6Xh$te5;=KcV^T&l(MBWJy=BXIwQX=yz zV$Z)s<>~5|TZ!|>_<9B|9XzzVLyosNvPGVrN5$|>;Sj5A<#jRYB^t_g&UP=><~6#R zzs?1x>soNw8F0flsXV91^GC`pCPdh%{g+e3T`!5Yt`MVjjEsYca{TeeMie&dEJk?} z9Pbb<-F6ICClT!H^7_GgTz_E<^%7IPWaPZ6W~{v#V7HOe*66>UuC=zGie%dxDD0k) zxrI8psHl>n;@2+^zud_GLPl38YMUs^O2AZx8tfd|{&+lI0?xRWsP6_0=OR&EOA%jz zzr8FHds#dj<$v$_X_AOA*BlTy>#Amxe~C!<$u)Dm%HV~gp>}=6t^2Um2TCpwkG+TW zeNYzqfjz#fmhELZ=t|6Ou3oOaMb9te7kA4{w~DxLGOu+vL;hAG)Xl9exe4o8o<{sE z1aG_*U?`OA6NqCIu0S8j&zGC$7T9uM8E!XhY_87+jo~C`|Fmdyl&ZBEaGX#zS_V2Z zOGog5=9I5>H*75y{{Hd=(f<*Q{dV(ESu@+q&MM1m3J;tL_K@V*dpo0mvQ@>7uNAv5 zFY!7gq(~h7i3+?+m#SZGq)O*6Jqa>Bfrs#~1I>7!$Rr=uRk^Nv($0LBC-ca1FFzFn z&v0bxBga)=C1J=*-lo~BZtfoHT9<>OY<1mlfYkLi7ycR5vqb1|P#xkl(F_{8jZgJF z{6Li#b*Y3gxfF7gB14Um_rAfSVY2*gDSSE9)ONfS{Jb8I%+Cur2K-{|h5S7|Qj-@g z_Zlrr-Rfx_z#%vIw-yL73O+E zg z*?&5puV53M{4M2TDc5(8mFFM2l@na+AN&8_Ap6agS7U{%nImHy!OJq@gBJ%IhOntw^ zXS7u3joX8sO@|QA=!bkAGiqRT9MkZQ(O(%u@>@2;d?o#3ZAM2I;3}1-NV)wP;*Qjy}RoC1@&3D}1vgH=_bVN$=nVLEc zcha@EhAvI7=*H9_z0s z>rT~Sf0y4U9uGaeKKGv02}AWXT4I}-iTRx9TXUz+u#GR(q1?<5EA({!uO46v;(v<2 zk(+!2{fm=zlG>Kkn>+sClvOD^Q-bsR!IZmF-txa!Ql3qzloFltfo@qTDJ}Kc%HhfW zWy+T+cchL?ZIzmrQYCdKZ}^}5^-%JA{Zg@g)IGq$CFlJ=2~R2x#(a(Yirn#~u!K)k1bB zzgfqx7W!d*sw>yK`aXT5lh<6Gz;-9i(EqBW&(z~2|5DFccJ${OV#!r zWgYWl-;!~3SJ7WecBRBnorxc9b$X6uTx$v8h^!AL*wyGw8N><>~AQ^e1$p*$jiH_E3aJ~XaQSgku7 zx!bL;Z$-v=d$@1VQ&y0f>^8Fg7kwM_;T_{6*I(L-3kE=+78n)(@wdgWg$o#f?eL(W z0-J$Hs;r)7Q3;hU*0QzMx!P3dyCSpADr%#At8b`pzmKEKCHkgLqMcCV|0j;&MjEK# zKa;@)aFIDE@Q~?{*5u2b>CnH%1zo^=E{EFQe&I>8|4$;QBHVwpSnW|fXcs+wnu_Yz zo2`Gs^1mQbdlGka9qhM+$TS;TJROr#g-iRBdcroO<{mASTR!D}O_xJGAxbHNY7WJnTq~O#j>9-0^Sp<`uCkfFlz3~R$T40#lkBUe zsItD_{3g@uP9^)Yy(L2Jg4^RHhFF@ z@mNE#<#O3)L$OqmOf=L(JnwjtX~hoW8B=(HB#4YUijSiGZxwWMw!f_Rd`#qQQf$qs z=yfXUPVwOgM_AoCwimsQqG79F;z`&0RqNe4j9fFivRrj4^)8KYe}b#&-|kCm*k+li z{g;>csk845;JsJCczaS$4vEB`G1i#}ReQ{Ej;h+2^u}ZRf_)$HaQVw_d0#%c+Mg37kU> z&v5j`k$kyE(Y<`{^MAtZFWJIB@c-M?OWeeRZWJX_e!*{%%BY}a`jOgVFs08yzRoww z^1|0iH4KG?$&^w3xOwka$F-Rcbv0di{Mh`7D!e|Vb!trERF4nA$urAn zQg-Ssbd-i>uZ*V|&+~tY^xDfVyPh3mZ<`9grhS^JZ)p>iVJm32`srg-pwsa%+Ng>2 zR;4%rY^0F+kp^UoT=$)G6R-ox5!Am8MMj!DcLPuQ6|&u4>b5fFv`e`L^tI<>*p573 zGpK5o%D}hM*ra&J1>36P7=m-aV#=oDej80OH%#uGXCDj1s=L(sXQ`eF`lmEmesCUW zcXla=gAwhUhJ5klR@7i)6c+OxBLID)*r~~qq)wOc#uXdpbW!B)(b@00VlXaPM+c^xkQJQOrx_&EzMO_A!Fp+!OLQwTy?6vwQZ!E z+g%v7{ZwC_9L3Y3`7dxXYi0C(#LstOU%uy?v4jiuBpt~2*nYaJT-BWzu2QZsjZ;nM zA6&naWxi4Hl51>xBo$T;pSU;8!SCX0R;wy(BU7(!p8lDFagR)Wg8ZNz9d>owzn)LW zP|s=y@BBmD-IeFr3`h69TzbEmJIISYN_A$Um&+@_zeTu0lEHmn9DDbzLoPH{Jpzuys0UJunZ(bS2X=mBf#vlYDa zr&0taa+mMPp)gv%5|Rp7aMhYIU77mje9F1rTDjFKZp%SdR^ zHo4#+h*5z&Z?h58ACFjI4y)ry7%4|QqrYA|YO{uXTPkp7|IF_j+x85{(A9i3)d&cl zD5E3l*4J>H)zlx&;_|-NRzC914YJHf%@$+SNzE~CHn^e-T+_Oq*w2i|v3}ZMREHTT z^uhS@?7OtEyYw>niND7ly3sKlS?1{@agYKo{-#Fy5iH_Jxl%{EEqQ0S^`FXXoZsAE@6S*3>3^FqKksqj1w}7GESI)dS zHd2RirEU>@X%FwGzx%*X&l)SE&48g2x1&3K4qEz-xvsq@YqFK+J2P+xccK;z-Ynyx z^7+TrsJ&*KehCS<&U_yHOj~nRdG6d2y2Vm-ZEw;850|kISEJRF-} z;>=O|F-?tfc&>I)UN4{-z5?oYyS1+xv@RfdZ%~OYH46qFU!barzr=DcsyMh7qVyD$=No+IF38)LqNK@q%|A;oqGW5&&-@TZVgW5#G`G9y zn3>|TEAcSnFeGpB0WQLL+`(7)LG}1QapNzbFqz7y@B&3$4xZv94km2j4-DmGEaw0m z;Loy&F|=t}See&UjQvvfD?O;YVmYRkdp^?XY9iyz><9$>6bh{>5_L`ow!b( zI8=YLl1cStRIkgY-j`opjC9jln(&H_zfJLN%lHudq`PjK40Vp~y`LnWO&p$dXYviQ z!Uiex^bo6^nw0uW%9W|FrEZlQ)=bSzIh&j*$Gk_cul~vVEQ}rQkBF`J{m`f$sOTIn%PCb%u*PX0f$_u_P@cSw{ zH80YmY=|R%A^E({W^W|_H@T}^wnIvB%DB`)j;3Pjtkj9Af2AHzEuS_oEkCU&?QGhC zv?XbOriHAuO6uU0dsEsZ57L#oo&Ei;mv3p^+RnshIn#Omoh*mm>?=tZwtIAC`!F#o z`KjcabSYk~_wx9ZL8GOy6 zo%^2-$RD{gce~z0ID z96^$^sI1r8yu?f$=ju4RVXpT%J*CGc?$<+msjl3Eb%yH;A^1iY>E`n9qws~gkdQyP zUA~JI?1h^>=!qC>4{yb9;(YOzpI7P3oQB6;j*q=k7rVb)x2NU$%@bP3zYLX_9M?p* z@?y+qPpHO;^2s>SWw_CK*uR$L{`6DmC;o|_n{eLS3&BamI?nUEpYgF1{N+`nVFeeP zncO$)mmg*fq+oWN!eO50_A&xrdp#cYAZ~hxv6ssc<0IP6Rh)-1sREAi`wKpOTey6# zjy=WEC!*&gW+E=Gn^)WHuL$R%$*sP%!kx zk)~r)tD8yg_5HM(&s@rsKKeCIgpCDf!%tvl(_&V0CR}QqKLfWK$A|nE^``~AUYb%w zykaJ5UG_aaAcOn*T)bvyTx?6qwg1t@EvL?%O#e2JMz)|-l<&i6Sx>2D{h4z1VKt!r zX?pj@yug(yi@xBny|3{#f^MJ%{(lHA^;_PoH&Q^1^KWzBnj!D33va&%-*6NLdBVIr z!JIn*dVe?FPMZAms66#58kG*vimiGuG%s~Z-G4NX@~-qDCvmc$n)OnkfSnw5O{mKI zR0^|b55A`x4$N;R)!mme)(Vt8pUCDm$d_Ft zQLX-Uq4mW_=)1N+r_-suK3DDZ4rc6e$U|wUd~?Xb9#u*osg5tLR$-V|0*~>>t$JOo zelJ8Y<{pshjpFM9&c`9Q`wSbkMaJ$6Sdzys@`A=V6rlkGp11smAJqlbc6XJm$hr zIEES!pL;KU3d!H$??1Xv`{6_tu!M(1mfci?-ipoW=xEMUwDqTb`%Rt842r>#lx#cT zNITuj7PMt0#3K{2c6D%YFY!jM0f%o#Dg7<%racA!8Fl3?il36xB+F+e+fz)@%5x{r z_m_>`gN3;h<2aZ?atf4bu;^nj-QzH^%_+#zPkzq4*q*24QeT5GF-PzeeN+Yf$VvJ( z-iPHbJ|m*pNTayLQ_+F4v5+cw1eM~8;+UV|PcNz$m|xrjC*DQebj)_!i=FzyvKFfq zj;2QL?#Ug6Ell@4Q*=|6D(-s!>&2(0PsDdJHlpCV1hEPzTvaH=1Ux}B6z(fp=f^Mz z^VQ##E^dVr86cV(PS?Fi9QNylK6sCvs@ytW8lwBiL@MdK)U&R_Z0)8~ZUcpBQM|+T zTt?sgmaE$f`jrL+dzSJrXe8I*aeme(cksRZ0dhbtEpX6K!TF8xhJih7vHG{*& z6`z9sHCE012n=oU#R^oN?_F5n8qUW7kK~&Z9I>O^p`(zXdOC{7!2uUg3)Xcn$K#R4 zVqP}VY93NGco2#g#@;vfbDeFDR&DfQM1#0Z-Ap<>@$7{wjoA^dZZ&s$gfrYv-+2mN zctTC^8kNrDDb9~#-8#bccJPGEpn7}>t5cumy}Bp|p`c1C$%W%k|i<=|iy@*hZ$@@v#13A**~^53xx)l0TP!s9=$d_u;~7P@AWrH;r_vuA(>DaJkU^ z9DwHd`FL)+?&o`CL$Ueob@>~iE8tX_Y*fLEIuLZ`U9&{rzqI^cbTeC=S6a{QF}Y9a zWPYveXNSJp@8?X+c|PY+-M7o-4b$iBTAj~_=Pk>-PN#x(Uh{Q(`(3xeo8?ZE^LG_g zgpu4Q&-qjq6i}onE|t&gaIlBxP*J2;b_!3Tb@HY|9Evh!VV^jQzg5}YBR{HQ-uvuK z$UIL{MEoO<=}hr)qdfKz)o}mUq3)Pj=!|?abm$ANm|@;+z~N$meq!6W^oO3(r(tbz z{x(vj`Z*qvkDH%+cz*j+aTIv1bLFGqA2XpE(Pq>+D!@vs)Ep0ocvHsukPLi_u5rnQ zlhrScb~N?mx8Yt^fqi@}Pfy}u(t?s8IDPDdV13OQ^f72op5r;^C?2D+*l(}Xqf@=0^d8wz75o#Vz@%4GlsGdT1(bK9mMqSVf z_lrurq`v*j@e`|1MKj13Zvg{~_J za-kxA%HP?~6z+eM#b|%UzC_Q}kDqxTo`nNNgeNg|J4Jn6#YsK*-IWnv<%-yj`{{0e zXB+hFnosf7nrIU&+{l5Vs*FV=jubhN)Q$$}HjK5&S0G#)O!0D?ibLIM~H<=QF-<#eyvK`_^K~wfNkl zF$pr>gL-wp=6dxMqjoLVJhm3+%b;!zyjWN7ZQ|OLz=Fkb6BrMPuMXk=8~=2GQf?rJ z>Cq9zTnZ@~;aMqqwJ@2KxE0Uvnk4`9Bg*;ZdZA`Shn zs_%P!b|?kRY}`cfMBmRvYKZvsuzH8mFoQ2ds*U}=Io^DF1VeaJuD_BC#0Z^mKE|u( zmiUH(c7`}Nc$4>}+TE*`VhhlyBtAN5pGXfl<%-{)9B0Z!C5~` zz4vddP?p~f)}!nV$1p@u?tz?CD>(pP(}X7QZ%j!qN|oL8HP2Hh3^fyFM|iVzQAlQ_E`J7&Y!Ai2JZo&| z9Gy??v>PM%q4oS}dV(4{U`!U}jHNz2jL*qbBh*&4((|-Dv9>)!yb*i(3$f7GqJ}P* z!4I)~U98EsT9tQLA+I)9?>|>0-kd;7mMPZV1r5(NhxWH#kARTgCpvstbdV#8+#t?6 zN+~m0BtOf%*olk6XVi~VeFdNU;h39e^~byIVmGnl1#w+taY71}*|TDt+hhXA@rmDw zGBy{tk^}UywQPE{ruu6XI*(t?#Pe;tC&!j3^YQ2QvKJ>vGDd6atZW7@aYYU-wlQDQFc(v`a_CU&6T zG=$*yz4)RvBUH0oSG>YCxXZhG;7OZ#PcuKI$#)Jq%J8=yUIp}ZZ&`-|cN^HNQjYT~ z5p9Y{b?3#&?sdCM7mJrrtz@{`pVP*@z_VeUtGNzGHd0I+6n@Y7_jVPAQDX29saHDr z`z_Y66nmd6@@|M9+oamCh{C8?RJcpM?e0iFoH-Zba1*IwzL<-FIeXHbTR{hy6N&NP z@;&|H7N3t%pHe|YS`42aMG^Fu$_9`gk zU)YWRQWk|CHC6E(&BXU-MXgow#VPJ*k4Rn5Mmggf@;#=Z@|7*FdhMcW?$bFa{Z!mv z1NUgN7$eypk3^oyPTuo)grknNiofO=%HUox21YpvepwlVepYTek)rL-OTQVpEqUTC zleY%W{U@rM+Nyp#sD`=Pb25nnsf;T-!S~RE<(Rt2Z8++9v(Q9y(XIMEeBg5}F!kTd zu>V#WcuHoSZ4CFL1is!3ww!zXZPxvJDFH^}r!P{{{J zm9hLQt$4xf>>=!SDz}+X>2%bqzSXG{{`!4veiOWYDQI*zICp(ldmH7*%kEZZitJGP zGlh5gpSbXhs849UN}CU!Gp98#u4KljYpkbVyvH2&fJ(aujJ$j0eJ{&%UQj*%F!X+) z{5{Hi^nZ0`Bk_H?X6MIY5AVPpig6EPWiWwHUMeQ9sk8hMyzW9QM-c_{Jlt<5pRa}o zor8ZKDyvEK^Q*F&e|U#f!C0-p4PA$=I*IW(%!Q*_K}-3|?|7Ul`5p4k>KL|B$FO&E zuadd^M<=pla*kTElMnJv>RXnWJ3@!B+jRF#Ihp-*_L%H`*$uL{XLnb$bwYO20M~SF-W(jy zV%?nQ$dj%vSd+g%#3I(d&_C6lJwfl$fKKBGMNJQ*`xp#E`Sld6m^qkr63o*hplu`g8N#5p`oF`3tP)S$Dg*_IfqFSutxx*1gqt zbcLv{mfIBQgOmqr9jsbxnfSR9EO@k^yQtn7CwmFny*aU0!<;{-2h5YLJQKT24lq>R zZhqcfIB*J?QGz(|eVJ|20`P+M=IlkFL&Th z_8EovDsgIHwzg9^MA6xb!`MS+ ztcBE|FMCgY3a6vkwR$CkntQ!__zFdTFZX<`S#mlBQgGWkAm?1=D87uYLnBv2EjPyM zvm>JOTnO2o>9-$nft@Q4X{-|GeeU{AbUA1X_YHoF>tNPLDd~DSqJPoUy(ka3jxMf- zPj;6XHBrykUG>@;2=;HDfl?~4?o>JSCWh^#>wLR)ff7I$Q3>% z*Gnn;D38T{^2MVuIh@L0fPD9lsQ+$vCs+F^&1F7?vtypDF*rb` zmwk$3{(jCB-Q4L=Ww_R!$H+UkmRaVBJ6!e}Jl?+jyEcdQPsjwJsdsPw@z!Uw)^~TxIYj2W8_^ zF@(|dt%EQsF?{Gl4n4J8GFD{1y0T=<;oEw97xDe?j5i$0Z#)~DQsAlI;pxAc4sw|7 z{KM;hp1l4+S>;DExcUD7IOp)@u`^t;mY&I)x+)c^(#*mPJd6_vE+cJauJgUd@Q@tI zoidHPf1K;H%60B7cWzcLUN`P)x~jfR58FNdUaHi%giN~3xAbtW8~;Ik)A-(T8*o*< z;v2@NW2x$@>w8vxUu$)PSH(?@i;G(u7j&G%;!nq&ww=9Ll()-&PP4l;_G#z(GpwMa z-moRh_bJ~N-%`>Q=*@ZaOQU`>MmAc#-+^+QRNNJouMr;|Usk`fL-?J`xSZ}dtFBbN z)%dh0#+8j5fw8GweggbqrW(3&>eVK@;$LuPztt5C9m`AMhEn23#&uIQcrd;vrD^N< zdlCjE9E>k^)K#5dMH=06Dixo^upLSK-2Z0z`~3;)d>@A&%k$2x_@xOw5@#fxPQD96 zdXNscX-aHry|nDK#_0pnAIxZ5VR40&3cE61sqn1t^)l|vSdd;jy-)hgv{%#mr8P)v zpISS$T*_+fT)*UZldnzLO53{>D;br1Bi?o=MR57VQ#jWA#9OgqB|VUQD0yM>o7m85$vttI)2Mjs zCv8Yvk+>b7d@!+k(zK+BNfmIMg-M+-zD+58$0w~%n&o@5#K#kUO_+`!+=LhX-IWU0 zskv)3Abti`GhJuk&T&;#AkK&Rget!-p2sBhmX+~mRUk?kp8Q+YOt!3p=e%x6d&-dDLwe<#w)&K4io-kT<=d;#>@5*M^P9QiL5`>o8tJEDTb0f9QD*6>#^;%`7pcF)GdV(k zgIpDrKXBb&0e@=T;KE)9bypc{Rgws(Qf z@h4^W+b|AM^5mx6AKn+!juKN36D#h9l3Zi^=d)dwL`h=O$F zt7jMhJs7C6CtnWp1r+9`NF`&?;Et2cpO8H-keRiU2eyWN1~1Sp6mHK`q^*LX4p5;o zRjj&CjoCt9w}^G##&+BwXY7D^s3;$;LGgRF_&%08d6 zBCwHK?JA_%xq@*fx@Z*HQ_0i7Ki(cZB6K)>|o>TSQ{y=V`X)(Lj}l zPVbP_m!RQm3AN}%&lM`*2HHn$5!D4%6<0gwFJv(jB7QXU9bF@sNuInsbhHZluBb{T zIJ>ul7$4!uaG$fy63I=pzqdJVv~|{BpWniRd@Z({Bxmd(3LEV8 zge+xtfq}OJ&okh~x9u?$&VVL+gugMASl$Lmn34ujbHwALUchL{9t< zWa%&aoTWQcKl`d(tg9?WW+6S%HvHkC^TAuL5VyD7_vLg)doVT2UAb@N?YVIFM`@1& zo^hi1kYgLeN2JI;(`7utFR^}6l$z2l`amanozWq<4!-kl>cA^`ob`7%TEH0&L8Yd8 zN``nEPP<3daY3^%%riJnj__LJsDBfM*OEO2Z}Iq|bGCL&Rb5R)Y~OQXEQ`sG*JG_VE#)98$cJe=iwoy)YRuvcIh4cV*EDwra6a+g zy{WLmnNiOEd!H*MM|vFt-V{qT!0$q@i3T#C8NRMG#=@xFVb4d@{QlSVeBn$MZ_Uu3 z`9}Q9TeO~`qw`7`=1wZvJ&_(|6@6+b{pUdFO?hMdYx>$X+z*3O$+Z!Na2vd@izmMd z+-#7UCp`bZ%8jqV@&Be{!+A*G_eOm@4)7(J@vk(upUY#DFYk1qt&2}z8xc;!f~$?)$1LUb(87E=Qx8IdfvSYe@uXMHS`n)2b@vVxuaC_1*g7_ zKG{+3y#iXc*1JD-UnfI8Ye2A~&4-~|@d$2I8&#mD8^3o$MY4?LS79j)U@a5WY`ss@ z{vPL#-=HkBRA+}e(UtInMHF#$)TCCY&o5Ms9(n_YYLEN$M>uaAb!;OG?i4h4#g`94 zn_EESt8-kLRiY}7-Q6&u?L0oJ^0Nqt{fDxEL;9=C73pt?9K{+sy@6JV;L8&Qn_3RH z$+8;!hIgJ~&l93<#c96|#i*=;K011{qk19Y@${xzhZ{<+m;GH~f3>}%p)95Zo}nSs zd^C(|xs_;`J@5ASr{QVAS134Yy+mp9D$IF`tn@y<&5c#5J`augUKPZ8N8TRV6gt~C zQ4hMl#6FHD4P`!`sk0~rx4)l;cMcd}mFhBi0_8mfK)$jo@ylRK&(`eVHyJU8|qf z)c?=l+|LufrpR@%sK2+I0A-Qi@)ngy!eHbe)<`{+piwm|N64W;6jIEYv5 zd$%K*=J@W#^BqvlkP8nAom7i?My++{Teym^s;sRDfeTJ_t9T{{U*c%nyh&bNnqqPU z)T&Wb)60*++VafF#b)INR263~=5g4rX5C1Htu3|I^iY`^eQARg`D?RxEO(zOB7k2m zPK3~nQ_Zu-oYUn(Iz9O$Ty1#z_nWg;a%-GIdtY#7C&m4I?wAEs#s|z-`#Dpd9f7wx`_H;;iPa~{6X0;t%^qBJjKTf12eO;aF&-OCVSZQ#+q8W0e zaaAu;y&nA0V~d7G+y`5p^aW-n69PL!BQxQtVbNd{W&+ z9ctqx1rM5Wk|6W%m}3Sx`sZ}4IEZB)VM`O${a2;(uS&D?t5>3}J;=+qq|f&&xZ76` z*v?%%XMf25iu!nSegXVws9rlCLbjp{2IY_O*YP}RYkSYR{JXusB<;?5EP2qp*QMH> zY_1ruYGHZdSUR2&`S0W(w~c`XMR{9r?f2$o<~^G?m>#)e{+_%i^Je4?$h(o!c@6%( zXa2w8Rx9({Ig-i+6AQ0{Aid?9ze-OKW~pY8`TT1RecjCNove+`T)}Mmn(erSj(-1$ z`_mC-*U@^hmLB4mik5dT?7@&+jQHtYfUSPzNw^=g@ft-&9PP<||6ij!`v|c}%SaE= z8@c8+=kphZH@E-~+Kx9^3RPNX8~x1*q5taKh*w^9_|s;5)I7}1)t<5%qSHG5H`H%` z=L+3T#noY`?=+}z@b2v8>!jb##4vP+$S$Ie*(QpuANl%JON>evGqyY2cZPQe*o8{I~w`=fZmmBxJ?^G^kAdFaxZ39Fw8 z5gvXyTQs>#g?LGb*8KGHXP`UxIhYU7V@L<4;%ejXMs-DS)yhmc9d4+!IRktkK#9pS+Sz?p_u8 z*OZ(KeOtoYZGx!lcgXmBqi!*GhAUOS{pvc#s&{U|x9L8ZdT>7f!|Q^o{E=#MpTo}H z1}W)U`Z_31o|&X4^yG2)(U;NpIKq>vyN;ME%3vs-Hq!skKe4ksVY}^yu9nGa|Dve* zb~=V(=E@cD`n77i)?gC5smof7e~rb=R^l6QRCQYgza7CfVS;sJlq%!p>fmp6{gyx= zC+a^FBIA0IH6jK2UR$4=pYfFQcsa&IYNK0u%8og=F%h4!Hgq^0sO?hCF{ed+W$Cu+ zi5TO=fxRP9T%j8AIsW>LSTE;7;Gdd{6uWZG^^%;PrC=xd(Y=6ITm*3T8@x%>4K zc+sl=@8W@2v`i|b@#4{8IKnR2x)b_!1-(-(arpOQyZsbU>&|70soF&5pK2<)?lY3c zirTL>PxUafT`yKxil+?f!IX=qxwkFAX#I-@>jrVeVXRjl*~4J5V<%Nq-RVFUh*cZX zrp5YcH`Ug8b>$O{zHhLML(Pey?wZFgHZp>0t8r{0 zw+b9Zji}HcxjV15>JjF3IFEy`#P_d>!LOrlTSjH|u47E#wh`Q$PhDJuzuS!O+#%+E z$>

        OKNWn?|=k<6%0I%ygbMPZ>LO2LshU_FzBa}#h|0sKhGJ}*UFt$X8Am5q z147;F;yPFQs8=I*`U&IsgbppYVcw_7KJw)oHH@mtTm;rxTjDRbbRM7TQW@8On6?N-l=%3B2;~2p{x>k@t!%FSoTYbHsR#UXX##H8Shs&W=E>*I-Aw ztMOZjH5p;`4?d}(Ytw)dDR}RA`wLmoSb0IUNKO6_>ajYPj>$>JVnyc3adRN)UBz9m zSrNM7##-@b26%B0B-WFK<2z-lOTT*h*re zba6=4=-yn3f>S{I5;M&V`$c_?<$zy!&G9VtA)?A6K}ZnLOUrzs)={D#BLP z7O&JbqjykU+#U<@KRH^+|NC<3zfG>*+BHkEr7)78LcF$Wiz;1p5C zlU-Mh@kDdt#!KT}-7AcU3FfPp%tf7}k|VQp;1)}Z_?L-t=6kaHsfW&&r^kwaJMy`B z+ShrXn~495v9gr0c9r)8KIh2CddgQA39-&_xO;a>#9W9?OcqBctKrRuImBB@{&uC> za0E%kcHHiI6?^_B!q{(BX?nL_gj40vOQeF z*kY#=10(b3cO4w|X&ja&3#D9*c3=ed%G>m|N!=mv1}1^*GX*Dqw@R zY-cN3e=F_pc>IC*zkG9BBR-UOW43#$B>b0py&{~|PE}erikv!{=`M<_UXsn^QutoP zKJ8Sw+Fuk^NUxl#7Vm9YY`T6`FZ$bObfMeKnc1@A;FaFT9M_9RavQdOOr%cedvo}w za_P{)=DBk_^nG3>(>o+es**n_|E|10a))E{io`Z6s0#=C_unF*@>GMhbWC_zb>18J zwl}B*_hHZKQ3>|<{TW=_5!$X3+_Us?Bre`H( z)%fSm)6-6EJ2l|c*}wDuo^~qn^nz1^PW^E@=k%0+4*xSQYgSf`?8Z4Wa*pP7&Rv~5 zT1ZUBUq95lgO~1^W5fM zRZc1JW*Y*Eu z)IOx+?4~YmkkH(KRJ+?X8?uFaM!5O0D9`iV0_%Ss(J-E4dbZRqD7%?;~F2`*^;+1NW_lLbCK6SKd94sG%l%Is(AH(Qg ziN8zYQ#l;Ue-maP^rF5JFBdv@w=H`QrQ$SfZ?--EB~ETGvc1bXSKhtY%FW?Hu7JU- zy1VE_YT8EZf0-IL@YPv#dh2-H{0o~I z?Hwa+?*#PyH#tX1?*0#2D=N!JD$?*p;m41`%bUVbqWD)#G^2kY0$;?fYNGl5Lp1=w ztKh6B{tXf1LJ@E(G`vv6Izq<$7%b^`x$LP({=J5NX{P*cs{C$?)v_Ta$SKOP(W09p z;@&rHqcvRYKSoDmYh9U3!EyZ|5#s{U@h^0DS5hPQf}5p_VM0teU6gqHrRgG^|Ema{ z!B;SJIrxR%CV&nZ{?rL(3 z8=%KWWGolOv4?mVx5a|w%PP9j8hz+%CDd>cYV7?x4W<-fVNi*Y#MEjW~&Ua@8MP?dJA6#If&%*B|kz_xUf?p>i5Zmo!$?e8Bf_ zJr4)48dsa4qWv2p=?2cCUBpE#Uo^VJ?3L;NLH`p^`P5ECHA+m?SR6EpZfTNOVuVPm zJv8h-xm#x=a62cbY0#$0W{cJ4iXKK?>(V_VEPHd9(LE{5 z0`|07XcGk7nszdEjYLjcstT*A+N}G4*yHXw1<*jp8 zJNP@-q{?W%^? z6xVm6`Tmlw>+>B=nt!i%?Sc#SDAza9EPa?7|IIRk_}|Vew^H}XWBAUSDH!geM0t}Y zWvlI%HM38plQ`k?2lX^E3i~`a6F-6=POTt8LMqmxoqGF z-!{fCS)EV7f$GXBf(zM57-zJ7Po>L#&(m8OE^@tmCS*eOPp!@^tr+_~_x+(g=Y0i*(CMfD%bLqo@eCD4-VZSQYu+ewud zlb}97!k#-=1?$NS0s_Crm3hxfc!MnA8NYi%hR{a_)lbyk4~~7-OjYP?UZv$bMXPwy z_kqUvpK^$naQ?H9{_-WipwhZKY5=A!idw4}*8YT9?KiIzBAK5su#M$0@iNN2W}tzN z@LM|Y1{m0Ra)Sf5xxt;fqC^wN+|GU54ON?^x+LWJdoYHfZmhAZI^G_d%4*lhey92Q zN!jD8)~pc}s?{SA&u?jojx zlwsdG+a8Z2ZHzo@j<}tg z@=gB35Bi>?!XnxlzS8(OLZ@|wk+{P8+`xDnB$}vf4*A*mt3y>ZN5r&@13;*2sB8u( zq9gmlNE#{%OGS!dG$7GDHO3%w1mjC`gh z{QgvQ6IBx(ZRa`4{1|nsZOpYX@UbQ(uYkR`#W{q#GthOP?dorc8sc|{p_4I?{o9PE z-g-UUN&&UT98ggO>>hJdG*7XEBAt`2OmGUD>iTS@xh>_{S`61K9qER#TqLww%=Lpg zut(`|GzF!a!2bS4>su>&sAsLL`>|6ryVEl^8lD+k6_Smzlb)vmp2Ky)V zmg6sjQ~n#*5uC@)iB((i`FqwV+~=$c&HhE6#cW7IAw;8(r!ROJehAkM*i=Vr=3u`M zTva-k!N4S}v)+AVy!=3C7}oU1{F_hZ`?XcI5$yOm*xW5pgO;`uPpJ?Th0nt`3w^$g z8RBiL@G4JtTPy1)mpVXr*H|gHd3Kr_^9PKODMmy})E*TJo%Llc=3TK9uh&nIqH2Y`uHdga;dFx} zOod>@Liol(SU!^D{~nojDW8X83`H4pL z1=l;)-fOsWf!Y5R^Io1OX;0|WWaoIyH3}V;mv{|}XgZ&_wPogwCgPFv=A2iYL48Q? zY%y6MuM@UeSp+u5y-at<1?Jr%LAyx~W zdm8fZ90~XNKj*MdE}g%ej6s|yD#~;m<3+~jJr^^4Zle3~iFoQSXxR#0a^J`X9}+uW zz_I4gH-8U5Erb!JQqG3n*fq@SJ3R~6VZ6Q;x&FZOG~ND|Tbt%$LtpX4{ViT>>$z-q z={r&Bm)P}ml?u1m#x4kPaHQ@?KQfzoV+7sD_cGB?WxfYm6}kis5rMwrXjVq*lk3AJ z-?y5DUO*XU+0NFqZ#@gMp-mHU2!}wW0@`kmGPNjPG2vp_5QpuuvV zt)juZ&8#!=pY_e0w~BzWViwY{K1-wYW!Y0|(f(UzZdpVi4ODcwM<@-0j;=hVZ6be! zeRPMnP;%W*W4M)@`%blX-}yugmF|D!X5G1WKI0SX)cozBsOn5XbvH+d;B?X`qVGyB zpGj9(S9M^O*lWxFW_4&v3pHDmcZ44H1F_90h-U2r^;&Czqr*e{j}JKe5j{jZ;x>3vbldex_&+R7*9ghA%u zLS1O5MzZtZnsXPx+jp$lc9fZKHl}bROmyI-8piekd%I-z zEv;Ygo1(pBPhs^4cNQuhp0;KM&TpG+vz-d^7tK=9R*}F>j4}u18AFG#Asyw+>y6~O z)}$I#0*%ZVx7qq(x%2Zr|ApCN4F2*boOVsRpwF!e=jgMV;f!WlrJhqwUV~z81qP#! znd@ya&ouKwXHJNV%oE9%7h#XCq*zPBY6Ta}u5$5__?fc&jNX-%w=whl59&XV$3RfC zJ%oL^O5PhfsmR=o&TQs56taeF8B?&uKjrCS$+@$ zpmM<#dJfO|b}BJeKz+B+7S*O@iRBYj=X`LX|F_!dOp2s5-cYAF&pjLIXVgg@dgu*4 zjFPC5-}mvUVs24`@bwd6bXVh&_rsF^Lz%PKR$J4>9Hf9cO!IU*uZu4Vs&n@mL=&{! zZ}!m=1s%;A6@b60FsTWFK1lWRoukTBa~=9~zCu+q;OrbMe{CrBU*}%3hsNIfQ=|)P zS&kZUJj5zcQ9X;RAFT)FaXnWLQag3=nO1aMW1Ve+qwRNQke;t^(--aHu<->}etW?P znxqtU^G)ahE<%PshdBQb@%p-7y+^0~E?D(t@X|au>tX!+lX(r*rwmZ(esf+o80xio z@8r+I_P534SD@%x3gg_#->rnJmZuJ;hze;O1yFG9FX37SMMPKEGF-!tsR&~A&+W&_ z>~<*VQh0M0dugCrf0e42SD?EsIGbhVJ>vIO@?YZwHiH-3WLm9{;ohJ5=>fWiJE7j+ zP-h)?l~3^>>s7dxYTzX`HH-4^fS=#(`)0NOqw~Jb>kGfmgtGrYIWU6PW4(eh1?#u~ z+zsEY2Q5!_JvLHBoGiHBwz73DXzF_$WPK`K!X;O%Hca_ke#QLfT%9Sd$dJ)cebsQLJMyDA>;0)O?+K1(Z&03% zR!uY1nT+5I7#!XTY(JNK+l%?PIP=Mz2LA2de4gLRQBU@_b@2Po^H;#YYdXgc)DW4D z<3_*h=lDl)6FlWf3q62;<&pU>iixG})(g4sP(TRzgfXY`KR(;bj5ml?svE^m8tG#;aXy-RC=jP3M|h}XO7b74ZtWIq1UTi za12AyEAP{sTV0{}oDZ`PsH4iyzLZ@XaQIB)==6!$5m&7 z+OnpFpLn_^a_8y7#c#CPFoCWNVH^-g7DR{eCYhLD2e@xAD@Y-MJf8RtZ!xlhdgA2`r zd`vosT>I;BmY<3+DLQ$?PkQqX5+^xtNyQJ%3Ic_J7Cf~^;<5@*>o1w zW+t5aZmuV_iZ)vLTH$Vjla0z?fBC|1hUqNYkBX@V1?RW8pW>n)IYN)6h`d%E^j(g4 zu$A{R=aqcdsieB{j@F{3xTA_(ii)T~H&d0Ja1W~CJfrBJCfH&{+)yui&{cHSNBm|k zh3_X++%su_gAVGD`s-@0N-8hItfEk*T**qFRNU7(-$6a`amtiC-J{TtWZA`K!~}JDQTO%N9`NgmB8|Q?A~9RQN(!lKgyKj@!QU_v_m=vggmYf&ioRrI`kBnOgqwF&T>h9nJ3Sf2MdT&)7MEhHBXc^)F&Hx z=XQ8`JK5mSONFre9HWSBqu@w z-j|ytfiwqTL7VryL&Vq@D#2 z&`6%Z;0@Oi?@=sU&}OxU-~<=%8=<=&K|5Ar&$jATx*PVi8@jRzt}-0klM#^JQllX* zKS4o41>8Oif1-1EMV#G3m*N}YH4`DXhjnH9Rt|7hl)eTNH9~f@T8+pHWj^Kd@dm~$ z4g$UsT096gT$2;W7f`4M)LQ$ncX?2y1o+ZiDAQf4ANQ3Eim{2Mz9{{v>b7^wEQn-B zi@B%lf`D&@3x8&tAH%|DmuaYCED5@MM%~#*vZwaG2FbbF$-%~!ZLV|IZY~{9>u_+S zTnjFIJ^9kz!}%^XZh!f+adYCXiQ8SiU)+N#q^^ovq$27De|d`u`CAlF3OaiTyYd{;3jbQsMwrKmB<( zj!k(c`2pWYv+jE%Inn!Ll7?~ipQjVT7m3d&?N53mxo^te)O}vRr+%3-nfGI&J)P(G z_^_&>o031&p`b=e&(v|Lb5eV!-k7>OBG|gO1&dBE%lf_4gXHPKlNW~wDzS&r|nE@o_^jQdZtfJTjM%z zN*R_Cqw~WnDgWU#**c|x8m{Y-2dLI+&O!4T*Z8XB-_&#Uah0d?mzQR?J}*39oy*lJcTrW=)&5-=+mT!12lDXycsE{A{&l_jrmEk1T2l361$SEsThbj{GL|dRAAE7@sgqqU%g%?o-lq<@9#-iaRi6cAmKy=f zU=hWUzHkdw*N!m)zvKK^gJ;nk-9BQCh&SZgEsdQ}HJXb5u2-fxJY%SwzKpI9C3Sg- zR*^dJ|99=(>8DqX(q^S!jOaD*#gY}nMm~rRs+~gf_jDdJ&2SK>U^7uL`2L{yM4@wEX)>|IWs6uXveu z;N6}v-%Qm%AR5a&4HEMovr$#r^o8cox6O9ztsSXmwse{IzhKb6;`bIhm*CR#v>E9i zI6^=XX83eqreDTE_k_nyaFh+8j#bU0-@>TYLquPdhnK_});5!VNyGF$F$ zpQH6(e$QO>p!sqfbh^DO61c>}>a=%4#RtKQ?r;Rtv2Ww>^K(i)h9RG0??Js#m72ai zB;Yq&u4(_-_LYhKmsyhvfVrt!Tl((Ya3MDrg%k{ZG%&5Y-SGK*7J0qegQ{Oi9=RhM|%r4 z>#tI+-Qx+Kp|-gEu~4MY>0w#v_Ih(Jf+Oux=~s#SQbYB*C*fQp?fGvkS@6B<6p+@;*$GMFs#CiK1WiNX% zci-Y7qdi@B;A9`iJQnbi`r4;Q*;hU6UpG(pQ)&SV%=O){r`>S`oBg%5y^V9HE5nNx zI>$6h-{3y<2qZ6Xor{c(Y4$bJD$%xV=n9!r<|mlbb`{6HxQ9N&!7I*KtIS#J2cvS1 zD&WUs+p0#duXg$mS9&UrWeGO(N0shRVF_Df55FnXK{a#usjE?Ttn3`s^erQuLC?jG z(P{G~nA%FcGp~#t$s=rl`_NS7;z%Pc(YZHK6EVf8{KK}EaNi29$Zz0sM!KSxUGW%K ze4o46&>h}Two$ojBA&{jFXlqH;bhgH4?+mDIBMO-JGOcGSt@s{b4ISLsxt*#?E$r-oy$$92zgDF>2A-{XlM48 z+RvxV4S#rgVy)6UOHX$lpQn)d7^1h)>iY*YuuYksF^_Rn`JXY-8a`TAtP!mz$9ZEu zQFQYF)#P{)#CBSc(4(xa_~CxoTzRZcJ6oI>^8uc@mH8m4)RV?_dUQ+7&U~2MY?07l z%E(wzSyvJNYI#Bh=uxWZe80Fq8HQBN@2Ys+L&GtJ4)6rbxudx2PdvsV@mf61VLlc1 z7&zNe+NVNF$~oAA(xTSNVz=2)_Z8x)+r@b8U}Ckg8K+cuRu$1^atI2_)nC+k#PR#S zLRC`eeSPVCZF=R<-6gmZjivqn0bceG&gCvMNPGm{4!m!`^NJwUd7`ql5sbbib#XmC-l|9TXY=!C#b+e-|T^+`$g*O8b>sX zHNCqLrOUUJh4DIEuTY~mMwQ9a-Zw}UN2ha@p496#^%Q#Q5fD||rzBf`(r zNqikPCK`q~MC^Y=UNTBdZs+x62aJBokx?w@2Mg(^9Ra~qmSlh$7^=iuy+z&$P01^g1} zoV{4h)fPTyLBAII2ruR>G#3Bm(sXn71CZY~=GHgV zBK?S%1=z`AcSi+`?=tVKji-!tBrWYf=pES7HvYgMhs$Hv4mwgXP>qfqVNjtIJV)9c%6Rg138fE5jkQ}LG&iMWoJ>=1*(@bbawa3pO>PuyVj~2^!S@5(|uIE+HU&2c0N@NqtwfO zhI%|`KN(QPucd#26vi2$m#l|F$^>KeoLS&IHDvp&hb_Fe1=qV1xRkh%GU0C+r3_8n zE2Vc^N!vK8G{;mQkFnQdrPU(Ss2!n3DZ#FUacKNU{C>&|`>mO5jZVwQInK8#5wsnii=b>n!^#4P@YPTYC6w#gc}++z|BV-u~)!w^#Ch>gzRn^wN> zcaF$Kf^k^8agu&zO5}HpA`` zA=RcNXh%2lk!$KlQBG%n4|Q#&hGM8Bu~g8nJn+ohOF7?_<5D_xNZ`bGlbB=)ReyP? zw6htz0xT9>dCBJJSDo*D;XyCE$2qQSw4Ud4fq5NwvrHrq^ej(+>eljzDJWOWXXf?t zA2=I{Buu{*U03fp z?qXh>Ev(wl=-Hf#16zaz`x8=4wl1&a?r@9#(Ce^uC77~0#%LVZhOan|eqQ0RsHJ?< zkLjV^KWY)rhZ#|yM751-!Bc&B)Wqm+TV&F=u#L zxVPgT)=}<-_-o=Hj;{~5R*fGWS0(OK|2Yu5HMVx#x4iVv@E^ITgI)=r_O5#TUC_t; z+31$~_}$CXV`|(Ez4~^E90#^#HQ+CcRNrykq1Z)d~^r@k56?IXzMt_VBeVdMLOagiEE)JUTv>y9NWiH zcZ_)l(rOgFgy;N`3Oz#J@i+6iXd+t4z=RHos?5vfWn(dg%gS!PC_xO=hu3~V^qt&D zDn$>8s?Y19N7M>jX&Bek`^90W-0g9q$G{17jO*fp*f2QbVR8}?=ES9Do|$FGinwP% z5Y5flXK|{XDC%A^vjz3KKf6~-%=(jLQ~q;*ZZiM(fD>-jbM8Hr6c1qB=5dQ#Loe`& z+OE?c9YQ*!fK#g_o70gl>D7|iJR0kBX%GDWlEob>tfqV9+Rj~?Cbv|MN^CTZMv>f8 z7wV&*@%_svFS^rQ+(MIjk2P_hii6&wh&^idpWyhrQs(bQZdzCKAMU89Pta*70xK}S zaC+h5b2qAwtfngTbcjd!7+W^hL^E%YW)j6I@P9T-59{Z*p@!F3&$$U!>FW`sqBEf9Aa0kPGu`1w-*aGjK{x^Eco% zKFQlG7hfj7dw$LQ)p<$zGi~zJ!zv_smsi`q<~S zY6h;)FZBA`@*C!L!e=zjsgV6#_VnyGeBYS;diDd^Sy>ITGqT^!elRC2cTa9wZjHR% zc_|#!GGx@#b!=)V-~P{;Wpef-)gFALhTteSwn2HV^QJheXly{`ybgGhYTmmgw>38A z>ipe#Jv>JF{0l<){kr&#u9$iC53ajxcz}wU5d}Ua_(DfUZE`q^}NCNd;C@6x0;^+uduP+ zL;ZXuh4%l4@qMzOHD>Vvj7O~Mk-%%a8&+u*f9)A(2XjdXn1@HObq&ruoBtc` z;}zzrXzchNIP(zpV^8ipV^ur%8vpN$T}jW2R4+0pFDEY|FCi~Ff4KAg8*V5!_wC&C zImdI3X0OYxg`wJ!b9?R@V>~l=dftq@Fx4D!`AK+_&3WxyCoQow`qeeUN|i25$I}flHr+9R*W#-i;6#ItTKRf2W$X6z6XtWMYU&^G zlfUWsRODPvFHFTnevMzbR)4I1=RR?E=WrF@i_zS7rVG}#gV)t^2Uc-5(=ffGF`zO0 z$cqc6I3EkKqjR`V47SCE9>3!bpL0JoIWyj?JGhFT#IZ%Wd%rqc_G|-uSBn2n#yxE| zRzJH7i!fco^D5`9z-@KNt%BkEC%aEh>zsu-<8x-^OyDUPnYS^ws_QisBUhl0)KoP! z@%W}LSf!Ob*jI2fyjG1*P1o6Jbw4S_Hqw9VoE>-OM}L3e`NQtdq4~4iokjWG&V)P4 zK3KBf&s=wQ*qPh%$2iZ+aBRoa1)a=Yja|DQ4;GFETbAG3J$ALT_8_LTxmu>;g0+Po z;MyycN&* zEklp3m9EP_osksvMonGgndY2RW}rm{^UoIH#s=|EAFfkXJM7o@=b~vE(rF3mm@EIr z@&`yK@U++h@66{R^16Oyk7CU$ovU0p&v^>xNx%1O8?(=&j=li%)<^}`3hZYsx`9FF zwsd#xS~Kc_b9*@Tw1OCy@Zk+QFhoK${nWa)Q_mMT0>2H<-mXq{ASK#e6d`>v2sc=Z zZlH5KNIeyJM`VgEBUSFTkkk5=*0X|~P*rGSCw+4z(c)fOs|P4GSJM>_Q~C3o{^wWG zP%gK^{R|0I_s+m$`Z2vo3Tf*`QSlXCSwjOe79RSRpWYZ+yP@#VyHqdt(z4zO#{^k{ zU08?fL$PU~nD1)O?bMLI0X=LLJv||E>Y_@gs|Y@DTq}by7^6C8l-O~QXnroV5_r^o zEs`#T5=K$JH{|R(NDMwgzH)|q)qJ_4Ir39YMfLA+BYa1W=V`f;&LXUAilax$N6=@@ zw1t^gd@hD6W;RiD&4+)^;W^%ydwK?+Q3Q?55GQ^jLwY@Rc#yMNBtP?`?LH!&n=Lxa z5aHe;pYkV_*4q`f>z#a)TuO$xE{*HjV$Y|FRqDwJC03{&dAE#Gkhcw-^CH#Z3@g8e zyI%FkJ1C-}yl%F9%)?P5Lh7hNeB4qvt|dj^p?B{G(UqbH$q=8^2dGxm0KQ(WM2?Y> z3*eKda2or#v#%5>j;OFHs*zmtWG-=)bnRKq2P``JXF2Pd(JOW0X~Ti*Zc*lZ+OG4F z#~pcXo?%NX4B-BFDDr)NUj?>2M1=Z)J@txO5_K>-L*}~&m%3ft;;wLg`%%`rA78St z=qXX{#Aapw?`s1`vHo24`bSk4m7S(@t7fb9=+>%4jt<*a{L47e%kYCWavN3}M}Rdr8#QWk7x z$Zh{aU5pNL5S(h;4?=7mMeMt%`JRL0IvbbUdHXNmL%B_D#4!B>3iM5@Ei)b|S{wz( z9d?ZbZkG4R+x_9{cn|v9CwBkBXn*SbJ`?$u{9(Q;wVU_;AR`?Ii<)T5Hp7_>SN-t< z1R1RlS^?Bi3iIX{=mPtKyw`_?s_&(E*2jN)`k!5ZaXDc4ZGz9P?+6;M+> z=p)h3K%lJ3;I_R&`yp`{G}9BH57O$24tQDZ+(Z8S89ukIx@46^)EW zD}2Q_9y2}HhWmaUx%!0gdt`0`{oY3NVJo`OS~!N;{E&0ZZO6@OUFZYTW&SHe-)E_i zE1U1Sc|~=;&fTa`15V>0ca3TC^ue4~U=}?s>vNC1WrECQL-XJi@4pE`=puU(xNy{< z4z9`q~mTbU9Z}hOOjI z`jHyKcS63hVb0!29BYBI^rQ2a;H(C^!+y@CGDk>obUS}Ba(|1`pq%zavqn{77mxQ z8|*VqrQ;5=u|ZvU;I?1X_$yvVn6bLLQ?U*$wejrfU8}HT*9! zx368EL1FzQU3W{zlyIe;y0#9NX3;5hrwmD>7+gY8vP%YZgzk^qI6Hq&clQi^#v2^8 zHqx#=8d9n~DA$^*Qu|Fhzzq7o1{{r-(sy*Rk}u@0Q>437AsxnYxy?o6h(8z7Er2JuWOyn}`<75=$HJ#b~!%M(N& zUx~HT#9_ZsiM69Odz`{+fylT9ZO$f2oRu_s6KQuI*Yh)|fS$t-x(0-ho;O)!_Muq! zE_$PJ(8FVS_d*Is^LFL`1uHZcfi9*G+RN{GJEc;!+(S8wbE@Y&Otp0;yJ1deG2GCc zuX3j5wxJxF3BB}HZ`~}fDtyu-?=pqglXO}$a?*1e=S1feXGiC($bQQA$8+lDexI`~ z=TJ_qoORi|l{3}Jc`Ca`c6jzwSZF}@BiVUb|I1pRmExHXvT`!}WHrv(n$ zCU|v!&%|Wb@^wvS`^<5fJ+o?Nm1GuXF3C*I`op7p)|IRi*&k;Qg3Z3jO3a>3iMBB3 zR8F6q13CZZG!?T>$Q_Zp0}{v=v0i77zh;%m3d`D-8J4v;E7hJq%6iLh583~1SqHMN za@=wDQ6{TPW@Y;y<#@_xeUWuAt0?PK){5-A#lD}~c79H7?j+cuM&38M<7n&lKp9PQ zWAch=#7;vgx8}X(3@wL4Uxqqffa#uqLR#kShhr|~3=qw>b582zPNpL3$d~)FvpJ83 z>l?2*nwOt9P)+==x)5d1d%Yx*4sbzN%C?lk=k-f1Cvsm+(^lck#rzJw|0u4m0YPPm zy+2i@zJuOz8$5hFq<0L)-9?FbD5Uv(RpdQZKcdy*>)8-WLyE!o>A$MDRu@s-Z5Kt~ z4$Wt)iSMo>YoG#q!gV-;!(C-paXkvBiTH^?wYrmls8JOq?#}FX-c~p1{)W+W-tI%JUw??#~HK3VMkka*fVE5D! zt~+P&dQfK_iqe(b<^JVOGnzUq=w-B#7vE;ez0KnDF&?SZer?p&x1!A)MVZ-Aw4Y=f zuTZWvalgOBZLl>p?RDpWr69eNQ(-sT-l%tXPSFs~S3!r0W1{w|Sc^+8d^TAuhNh1 z{hl80IG&$j_VmL48L>%5v@#XqB6CIH(KVVvx2~je}SIwQJUr2^kZi+Hl-=n(s=)TV-8F= z8!w>N`)cR1^Q>f}*owFNRm2|O$&Qp{QXPsm5hsen5$G z;*0par*KTk{Cx7fFQ@nbU(Tyl;#8J#i^oK6R?~gv(hJzbZCJngo=Fc?Pv4I@Ty?3Z zEseuit-@Q4=K=DUoZ1}h)jRZb*JH50aCF0QiUEICaPd7g=0|AcTBx2%=Khj-X)Im+ zShYt@`L8Tge^g&quyV;Tl{&vz_tUM5seFopimO@P^8z+A%yIO9@P?^NXsvo+9%Oe? z1x(O~BSuwKUA){v6-|fmlU>z9eJEOZ#p)YuCraJ+gZ3ME+eNG4s-vp@U&q-tlvNz$ z6SVhPn&R=k#>~ay&w6oDsdi}~esCn+;T!6Qu9n4oK+bX)Ec&8M=7Xxh8*w=ruZ|$- zrt-9^w)biN(p3e$X%zcR11nuzs3%tzu`yu?;4O1qHC;5*F0Qy~m6fQlpN#C3-Xp0}aD_EE2K zST5&r6oTwVe{d%xkcbN#082)xZw`lKo`fd@@8w=m+oB4fp#Y_|gWA5}+&wfpf&=%+ z*gCPd#I}U&5-FQ5L=ELM-i*`q3sKKQtL5mA21BJm_0P9(;k{5yWaK!X?b`C4aW)&E z@BbnS%KcNmAaW;uVtr?IJjOknXlqVBeJ#QLSb6`|J9AudTlmT^RL>KDzzr z^?HUr%Vb+T&5^u7#=j@LyQV@W_wx6tF7AjtWjt%rF5G6UH^4okX@It1t(rhe_3$(+ zF*bu$#4e_QsVMhw9#=aWKUfRyDUT1xDmOL612%&K=Q`J&We-k8c7XAZREVVGdPWu3 zEjnKZBl5Dm!v)t_CFl16xq+h?s)M+raF3^)qpj-UUy(nErX?BbsK&@GwBUTX6o+U=9$q|Hf1>v zf=%xF{ZPqFy3r04q?;*24^xqDQ{fa;W8bJ&y((SOVm17i=scg)TlNGlcPTFM0YCfL za?ri2D$cpR=dSho9Q_koK~njlivKnE-3Po^)J4%P1X%02V?Am9GTefkA%i#Ffu6C70!;`g5e1 zLos`kyZ;F&t2*S63VV!_ZQ2c$%?tI{z4gj!Gf4~ej+y3>=_(X^nJ0rebcm{?`hI@p zt2)*{-5k9gf*M2-&`K?N5q-vZ^T;Iio000arqE^t)w?DB-_0y@Ijkqfbh}ZFgNy#+ z@^^+yL}ztpPrcO)c@|!6e zmPP}UReH9{!e_V!JQ!lg$2$-CbYWY|>{P2=g^INgjD7(3n1{nYZLSz2UgoJ+@vv>6-2ss9Git8O!sd5lPy6`&2)tQ}A}#1aabx%d znYUEUH$fF!?b3r_ z`h&1?z!c|WzOF#N9dZ0W;reIF09+gXEw#Ws*ylcK*ZUcf(LQ}X$C`KX{tpA*MgRCteitncSu{SL}|~gg;?)#e7i$h>(ZsF zSs$y={Pl-Gw?nSmVc5V^Y=t#B-r8E(on6yLP*9ewaqDw5enS z9RD_6ubL|4n;_y7s`M^;?|Qg6s15wXYCWqYH{>Cn%f0Q1OMh5-kEr4eI-b4cTAyLv zp62j`ee3K#X(W-){i*uIh!577wv{;nzPe{FgmFk5={eBB^^~(+!u;WUZgB4 z>zR?_m!My1Dt%YBE1`?4;0Icx8FXelL~1R(Z>B8Fc6zfIbJuzA2>NTU65B*v+F@*m z^8IcU0WGywhQV$#;8e&yPQXdP7#t7S1(i?_FlxC8an4z(Ta)s zXGUVu9`%~sf{tpAuE%CqbIf0;LfULgUDV*saa<|TQox&RE1VNTK^>{!YMt*5p9D2Z zZ=G9$c{%GHa4XU{C?t&;L*nVq5M zS{98f>cCSz@Ep$6`8LuBk5{F-{$e+GL9V)(ZK_KCR4F^abuig|R>;Hk6=K_nyl-H(XWf=#Zb_AepW>cjsaqug<|Fx$0QLU9+uRdqJGM z2o4yIT{O(%6 zk^9smqW9-`#En#UwS?DLLI<6u{q?S;XI`l?bGw9;zRT)&|oFRk79`qD0ED4)?UGeQj^| za3^bLefYp}TqVQ$lU!?KJ)t&;VQx{!|2~hj4isgT>2=o1i2oc?%^#vW{aW4kO0mVg zwsVy=thd-dP;u9{LZ^ubr^(MJh595-u^L}PZ9J^(z1F3V?d5msz;he{M##W75}gfk z#GP?Si^{GPA@Aq06ls6mRpAe!BT5%b*Abh}6}k7|yH=z8JtD{95pUD)_p{a7(8^Tn z`4757T`T7v_$~!&`ahzx`c!%2X$5yuw(p}bpYAC8h(3l{Pft+P4i$r)rv=v*2W@+r zPjiGCErmkzAotiD>iU!7%M7dL^K#XJ8*1gg%au!e zH7UNA`lX2Y=i{D_dq4Jf2<-v=r@oANTvwvIWACLY8y=G$`*7?+DzVD(X>oCJ8F6Q+ zzsl)v)H;4teEEb=;@j$Q6qe9b1#R$>GWSlYdTm zIps+5=g9|?Q&OHxUX%QM@}Z>W$$OJpCAUicDk)lJ&xyqMld_Y3N%|qFo~oZ2DJ3Z* zRW9wScxRJkX+mGbW1*=W~)i!vV>>VS@lbJOV_85y?bm@ zl%vj1`Jm$Dim7UF@cTDyx1}qctie$6kw)vyDkwa^2*uNiQXpO`7e zKH3cNfoH>MYXi+~AAHylI=>G5d(y=0Rd8{y$aq!ctaO7__bcn~E|tNJCGx)s*jc>a@%RU$VKi|^p!Q$eiW z+xs5&|M|R)>dVx1@v7Eh-wYA)O{!9-VEy`03Nz<#ku~>SX zBe{5Sw*2MqA>{D1E!OAQ)Z3%prDrMi%d4+=+2bZT*Wo(sOj4h{PhNBwHGfOd@mqW$ zf4?+DF0Z@e9tib3Cqp+zEWO7lbP!D^mjpeBZ-x)vk@cLVbMk<< zs*h+OV_aUe@{Sy8CXBHYvbau#atBdN(D%6-EVPkBO0pa;fB`j!SU z^B*$XU*bPbog0Qdh~>jECzR!{d+s;!a6L+&SACYgdIjZq<+6~Ib35vz1|bDeSN&5L z;sw9qTs)^>x!iu3%=r@h#|Av%?!tFOqrZtnD;GY=sbU9}*9 z*PXqY-s>tZ%m;BzAD?-Yzi~aPu!C5bOBkWvRC?8@DJ#)VrsK5^;t3~ncqquJotvtk zY#avbZ7g9n7VAiEv%H)5B=pTo!FzS$-(1T(BJg6Lu!u;dxtf2j{-#@gWz35xFTC&NXA2|3!hn-{#FQh(4|}zls8k-a*>6qWlKVRi5*d zrK|79KE)u;4~b_|sZHl_(CA8Q_h!!K?EA8>%I=o^N>+3J8jW$6LvzaU+Wt2uCwoZF z(-e+nb5_x$*2&qF(+eki9UqS9oRv9~os$Gi?sSUMXYFMbFYwL0OU_`Blkv^(pY008 z-38h8rZW4x@V~8{E)V_6S z3^&=*chq`8zv1a2CUCQ(8Ux{tDm)p|Lzbqptb$v6(4F$4D=C_%%5-dcn(OF)w8wKP zhVP{}ZSGjUb8qZ`Km#X{?zp~rTx%+NMA^a)dc8DUU4VkSxSLn-3xA(#^Nee7wQcU9 z9K8B$hW^S=QPUox<6L2s&f_|NqwjkSv)9qPG7B0((0hHdBCaQsX?Uk&Fw>0saCk8A zFM9ZVhKjBZzE*I7*a$UFpkXMWV3?&AY$N1*8o%}#HQ^z;##D@A2{isUCUPJ&xfKuj zdQnCBfLz*#(--=i*R!~9JSJPP+`M~&qr?}`=@prXGgh8MP;0U*Rf9`ud^5UZex8!a zn8*Vn*8Ca9Q6b=g-mqGvSPiCoG{O2jVRg7@rMhx4$Wld^e;>MdlPa!jRJUcxL!?ue zPcqL>H~UYP+jvVSlV5c;sU{aT+f3bB-nKDjXb2YQHT8SpR>DR+6F=7P-~`rbJjB|L zf9E$Gf@{&hPtXNo8RR&a^HtE1Z9!8iUzIESCWO_CE^HQ@8B~EBDZ5r(>`+xgt0}E&%KWb>*E>`dR9&s< zIbAkOutX2227aVgSh}-YAjE3?3UbB!tws1t=m6)7-RnnPuSe^Av4093;9Xdn z`J(*p(WCJ?pW#J@V?KhIClyBM3KL9<+Alt8=5_5U;yzQOzKD`=qSt;F;!O(u|9i@| zM^&-xEdLdS+E{$gF^>qfCClK1K6sqJqK~Vn$mC)719jmOIIg!bAM+{f#;85Xq*ojs zwa{M^@i_;h2Z`3Ic|0OsyIHr|t9-wLu~`j${OveysBlURYCbmUJ?gcu%Zt<0i-s|T}^oP&e`cxxS-FWV&R9qePmvQNg6YCm1 zPG8+hh)d`mBY839J=R1J!igXT&DvZFe?eTRfvY##1j-Dhk z?PWaPb{0D5lKik^2(R!d{I&?Al}^LB$*bx?wFym_2S0I&WgQ3HO*JCZN%(d)c_3>u|FPre{AR2QtEv&?YTo-Cv`e^ z@jmF7I1!pz2JV;1S~Qw>8HdO6Ms$kHDR*jsu3T@3FD5~7h^KS z>c8?q_$zvtC_Na<)lqjuUyRjh@e>o4@vvAMf1HCwEyr0Y;c6J_3tkqp z{O2$nnVL{Jeoox+*s!=$y5OeA_VO6QK_LhJd?Kz}T>JPURYn`)7bomX{0{DVF>$@F zzQ6HqIBNTQ)DC?TzdU|7H-{~8VXBT+#)f-Waonx(0s1`Z@sK_JmGD`@w>tI)Q0&q8rk;HZKKhz7$N#+My~K0eBDzB-UwG_HT$k7}abDu@TqC}9#9_Mp{uh6* z{XdlOv+-`h{o}`k)7(E=CT@0Qn>kE8l6YU@>4c($g9#tOi_d!P2Rao0FX55IhDk${ zK24erxi(4s(dSN&uVX8B#V>_`>Oob5VWE?8qoAd|K38tsQfFtXYhr2K%(w_6^;tss zgd|QMBYlo{c!j)?_-^8ziSH#|<=9Royz59`iFxS$*c8We#d9&nUEi!&P}6QVjrLQlrdQz|8x8hU%ga^-L8J@ znbP*+oCv1QEZ=Bar zKFADljeGqXGfkrk-%|MAjBVef_OQ780e5?&3cI7;;vG|(rnsSbvV}RkFzPosnPX=4 zE#{I4d7HszqNV1K0g&u|Kiit&`q6C{o8hOMNA3yD4~?Qv>DE125Ad3fCd)k4!)(;1 z!gch>XRIHA7eY$;|5;lOs>hF254l~g=`G5Fhsvd^^R0|yZb6~kIwFJScm?*mDvkU~ zwW|H7AcD%)Td53k@Y}cQ%2Nxyuk_>;W#QsbfSOGr?tOS=3)7?o*2*T zF`LPBy8~q(+sTrCsRr{WN7O{!=vKXx)AX(4l@0X9RZ0hb>ACW-XH^-ddDk&p*{-@{0x$8kvZ{$# zu4=TmwZm%I${aeP$1zovDT^XGU%e@Z5a?`zE|-7GC5)A^s4NRGRgU62(OB7%EDYfr zR5@4sPbzg$EBs_{+1Xg#V3v!b7RuijV$5^6q^wnAvQfoJCwY)tSn{M^@q<9u0rd z50BKzZiD{>TwS1udI&31L$)F1(np-flK9D`UVK4xdz4;qqe#1%$ag!IFA>M{i#nj; z^m<2Vi4&oz)2evt$tg6EU)U5<9mk(vr>F1_=O=J+dkz!Wz&=Xwe0@aCEp;ta7AV%a1W)D`3XI?E63UP(}JEjkCuFRDhM#il)Pk4d@LU z(uFQ6m;r4b$G#neds-Jp77m7w0=;P?JX^76hIn;SQw`W~HGo}YOwP-sBpR2w_S_N! z`JXZTM9yZn<2_ao9P=cfc%i*cD%|J$Ho2U&GCIrsHc$=jDr(v4n7?Qm)@b#xK|l2; z<+*~hSxWtGq`cHDh`FIFyt-Q3dPRNUx*Xi*^^STu?(tV+d?R;{K(AWr{BzEKSyxz= z<3Ek-%u%!3jwi?j*|YvQ$t-Hk$l|6KT2o7wwfz$q*<}5s-=pq)jyAO>tUn9u+4S6o z!qMKpOr_xyd|WrXCKsN68{!Q5Fa|z*!(EqsW%ruGk`47h zdmFRd$u%0TPyBd~hFl=0$$>rL+D_-V_!dp%1Ll`Vv(h&6LBo;=__7l3##K1SIB4`L z+J$jckJp(6GHD#{mrw15@Bh>caW|a!ap=DL(cPWrQNwHF@sl^;-nU`n122;C-Wj-( z1Z;g(b<<X^GUOpM0;Sqb#yG(=#FRHT$ z_{l+-%K2vdm{PT^3ztLn4tuN{f6zDvot!&iMoVZvw&7KeQZ7_e1rp`CmmT>!-tqaR zN?{gD@O`gSBBiJxc`wxcDd4ik!LP$`UP1T5(R@kfgj`5c!W&Ut)epJO|BYGgLQC}- zwret-%$>5^kK+@=X}8u<<+R~V{kM9WC^_&dya@~GxaP=qH^U+Z9w;Bv*!)fr7BHKA zRo%tWDaKiw?DD)%%0h{qIprR-czr zI(1)E1(bXFmm~&M2Oj)qi(E`J*dz;)F1XCUOfr{+h32 z@aO|x)63^L9+l-Y<;3)f9S{>Mip_w@zZKDbOZ}MxgFYcg5Dr)WqH6AT{t2a{n#dbG zU*RAZg(JqVlib06v1k(Kgl+I@P0G<|$e@qdGcl&OvAYfy{VMi{*yFJUoF(@1gLpVr zoA{W!MeUFKJvnwmOtLut7RcjaQT*(f?U0lOE>DxHaju z<(uTp&H8$NZ)V3qNaFt+mr#g(+87s@ULg= z=Vp63kWh~|VuA0w;N5%t9qT{0B%M#{l$?lheJ%MHpYGG7>ylnfJOJwzL3`8Vi{a}v zP~l04dvENc&e=Zsh!3Khx$544m?}8q|8oy@jG676FO?Z88#@Sxmj#VoiGE5x<3>oU zNz7GhOJ8?wq#XQ9uCItgO8Mf#LkNk%D8)D9>$${;^hz79I0nA`Giiu>Z zjmJ3|_0X?+f;zr;V1m!6IzLj$SOx#r#yYWDJ!2s)!%+(J>qA|@Ci8+CMj3GP1ff1=J%sRJ323qq}kLKcF)33-xntv2nSaLDo@Cv=W&YivKH$*MrU?lW1YzhBIbc zm)@qt+|L2C;drM^MSa731KyPk}#?K{(|)Q`%cnKhs-kH#mUn3lQ*r&+re(;&X;y{}XCM{;P6 zpi?_*#Xrq&_yjG`a*^oI*8eZmM$8V?Pkb%YJ6KlsIho(9t>QCijH2lqgPtF$stfw* z9k9u|UaT4*mfLbA+1|C>yb|~*@5lH(s+w=8DudP7yFXNBEE8ovE7x2|^H-ie>JKaX zaI0&{r9_#4>yMpiL2Tv{ARWMa2FjUa%GA+zL$K?M9&!*X06= zxD%rGi*oCW)$Q!!yzmz8?>CIe=NvcKa6<_^Prl~%zL?ntj zE|{REx#79Vc%UQMn^f$L%;}Wdi{E!+olGlXlKSP>Q@>UD>^e-zY;o$x`nqQD?f59a zEuZ#6-WG%MuED+y$8PlClF=sj*1Q3^KjeJKwc#%RU9FCA8?TLns?1LDJo$+?d1am~ znP=v6U+99Pd_3eqe?Om)T6B1Ie3jy@e-7`~fKN)z{5o9a*X!51J~uHpV7yN0@H(1D z!wSq`R}9+|stX6>q9$>ZSe>`b-$8X;C;Lz5=Mk>H@VL+Q5-*8=vfsV zVm)Jv)bb@}ugd-s^OcVGdfsPmuSW4UwRA^)rd2q#hxn>IgbQ3?RMz79reh25Qtvnw zKiLRBnZd37ti25}5)JT?mvd*}C7*C?U)k$RIhomiWksl1%*y&z&Ek#O*JdwM2e>P% zWA;DX?3?2>KQT_5^Sic>XhJi~=XKoq0jAXyud?Wshn#R%mW2QRVx<>wB?n2vIo!6b8MMp>b z2zK;{M+xtoPhE9gd4WW5-{}au41oko(?2#Wd;*IVUhoW$mK?lQN1W;^J}|4WWG`Wn zyEy+R)D?aO9X>$^+Muu+U;e$JD!%(YH(I6I3-C`}*z8A`ssXe+5Z)S&U91gV-tVef z&&%gWeRsoL-P5^s^g5f2(~IM#@tSRg;q&4!&(#Xvbk)s=MbG2jnnH%-VAcD%t<)5u?`oOQ{Oi5xD~c(4Rtr72j~R9e@X#8>_TfOD&xXYdfK{F4QccZ z5xA*Sezv1R2vpWB%~QkhVaYH`JO=H4S)WZMbIj8Zg!Si}5opj)^7jtZ-HWKor+L-C zX1hQex}MTw1^vP?sAvIf@e_qbE*0r;GhL>=R8TJ#ZM$Pton?3|fEYgHv0K9JaD;lV z%hdaQDf#C@HT@~r*7~chxW71TT4>I%r|x2k{w<~TJ*%iTqc=CHeX>wNFQqQlv~Nq7 zShZSGy(EW}azXF2f7Ca;C;l(8f@M*3MsUkrq)vQ}8jqi8{{G_|ciKuB;T4NKJJ2dQ z5PsO?2r5%?CVNGgj%$zkYmv&1(~dOo!n|P3>*BF5gr@@K_z4W)E*X}viwlaMhUh*s zi+?72GZCV^&Fb)xIek6F`#-8Y8q)$Er@fwu3(Sze`rf*533Is5IAvIq?k{Oceg2D+dWxF8Z6IfMT6M!vvfj96btZ8#r+4p#je z!p>T!6VxaKU01{PKEDKY2I}7il#^>Y%0C9J-X_Kf;+EUgT~u<0rf?T-=1gp(&Fm+F zsln%WsLX4kinebkX>X_TT+A^rnZ~vww3ghIn;Y^#=^eFgRMQy z6)TAHeLo;>jc zzAjZ|oLle{9?EMYoEyw@a^Jsl`}iR;BB}$-HCq+hCA?!-4s)0Nb%VGPN>Zn{Nd#Fv zBAYh$S{mfXX-ZGYWe57?rBH1Z{bSqc!CcEx&6b4@Tn5v)y{s!gLzl0B%{@zxxx!Tdirf=o+}%*8xe=@$O?k^DykbIUqe_XBix@6giiawWA0V)VotE-v#!u0m1V^ohh~(j zOPhRH*5x86@m*?-E{fjQn};fMvmBsr;9>dtiUNu6({A`x?7!|kga}2N09f;Fd5YJL0|VJ z)|*Cj)PGY~Pvrr1+FViPa$|J}3qv(?dA;Tfm53M8Ou+ky*X_QHO6W=tN*CFxAQ>mtMgb2 z$C4S8fk7{fj=lmPl15gn&*ixW(}oYSS}k)0d>dLf=32ArLn&zx(G=UbL7r`*dgVEo zhoFPwVD(Ysc`J{hWvnK9HU|F^bdOx^{N3zWp2v`!=3IK&Oq$H8rIXpUL_NWi*1B!9 zleGxvBk&%26xJTMl9%P8|3`TsT<67MX&a_-j)0!{r*nu)FW!&3iOYi9sa6$uq>b6 zL+0^EImM3P`Fbyf{sS_Bd)>+H-3@Q+_12B&agKX)t=^zPuiQycU1{zS9F1Rw#ojXt6RiqlI49d{a`hzZV{hU?HU6BqasNULEa+CY;u&d)DmCpp% z%?j7%lb8S2MdfxZ)$PvpLD$ap)Rd(isWx+y_@;{$ zZX+yPMMXlUu?yUG4u-AdwiD%iRgrC7X&tS~t!$|^?HjM@;;*1b>S|Zb6vxpQKQ`Er zK50(ajuQ&1>K}xLzgHy_IO_Cs?9Ih$U%|FPubtuUjbZ9#x`*)VTpH9$R{ZD0l>2c# zpTm)*;pVQ;V@z=>mFb6ktzR=Qv=ei@FQ@CjPC5{VK}~;}UP%jN9ZTU4{q{y)_fZY*c;`F_^dr*1aA>O`u(G#toX91UAxUfR%y zZiH<6(SE*7V;8V1t0061RH?(UG(}uNUchy{Oiy%-!_hF2qs1^T6AKET>3o-1%o znLvNIh4OKPcfF(nZY(@Do-@!TKBxzAW-n7XzUEaK>hp5_jC4-!Fv0~~ND@`O4KhYe zuyv`j5dqWogSQ$; zoyP#j^})GBS(B+4sfS(VZ-;uzc6AlEl)ZTx68H>f6suP4I`!PWbm;ABg~;YQ^@IAl zPig<&q(@K3JFmh7b%2=yw~S!E31*%~*8HF!aJXDontWLiz2H>wbXD`(b}{tJu+Usz zht0)RV3Z)&HU%#o=Dz>aD!2moz1hmPLA)Mje%%gvrKxxM&>?d-cst#^~czBi$BqROj2UXDfRH;{2zrRX6 zJ{Ln2^bNhyqrJGRruwhWytLLHuP)U~G@Qdge^KC3<1$Qqu*9dn4OSckIqnb@ue67y zdXER*+sW$YhKtt|bbDwWaTkVYkUFyjQGObnkd7@HN-Gl7yN?o?Kfp~poGaYh{NVai zjT{MKi7n#y^AJqX*Y!~za^I?Se_wr8SM^!rutrDi;jqVONTLlNhNl0gRH;jQSrTyv zoyj=<3{&j;2=}?W97ir!xGi*=qjhFkSGE$p%p}<2R*#eRcuY5x`Hrk=L>vWZB9F)c z>hi`@fF4(E_LJ3lHz)MD&QgYK?=6&{RjkOjtIqF6b<@L^b~;m$oWPf;v#Tk#4?2Ln z1M8gTPTv%JHcga}<~6s&4m*wgCe?RU9aWr&{|?nigt3Zp#U#28^Ys?^36^+6 zl+r>q;sDoJF%Qv3r6a`zrA0UWLNu|jv(VSWxh!~!jR z<;r)|4&}{%Ej?EjzBg{PgiAwbJZz>be;+)#z;%2rXTf$Nvbvo1FN%cvh%d_9?=oLC zD1plwy#r-pu#@-F9(~D^<5L>aj#N+w;K?|esPfz#o4R6e;sAM)UwF_PX$>{-aac4B zmb^pXv8&;*`{;b9L6Q$(^a7WYEs*3h_{-|Fq0w;aSWH|LN5}7U2bkyY!CK7J z1?EQ%F^w=4M_sr5bX^X!zxtuOXq%2|NA=8!qnIjXJ6pMF&aRL^ksBHHjXfQ)pEVf4 zJs8tw^k==I2CIqMfK4r?@T%#E?x5!_=f9IxP<7%>`YF`7PG_0-J(~)jmgAvvx7SsV zd>w-lR5$*m>(q0!Sv6I#zDdWsks|gBy4}t+#AWGghj{&bTYZy)`2ds};M9?NPS2us zo(lv2!8^5zYk3ZKw-0o?-fw}A>qwufmbt#u5QA1%5t-#4sN&9D;yxYjQ|G!r zn&}`^RCX@DImdn3&|UR+#CDyo-sH;Pkz%cx>d726nGdS_N`|YGL)`%O;dy#ex|PTl ztmBpWs5_#8D#P-Z~kEF@;bb@4R%lBl8<0ts4%R4}HR~D}shJpey+}4nbp4A}GU$G@5chwkb^@dp<>@{G6_Gt^X`c62DKmMK5Fhl9p-P;9aM+NEC>p}ix9E9uCrn?5_9XT43vz`k?DdFf zZv2z1$NfvKa1Dja1vi43igYILtGnYvP~$F~WR~n- znbKWEBlVrN9#G;ES2JT1+dOHuyiFdardNDm?!6#37jJ z1KPIOqIY1zdoi!k@X0F3t$zrS-3B`kpkDk*U#z{bW{dNw*x{2G#_-#igPFdc+w2s$ zejDGxpn7Q%-P%4(_$q(RGb-yL`YMj2iX+||@_8?&eyj&&t>VtU($?xZpKC4zTDb^L zhTSRNZj?KC&nz+DJW<)ac%51JRUFXc9D6SE*NeS$$lMjoVb5YhPGBK6)0ED@V)S=Z zH({^-R)-rNV%_iLcy%4-p;}xh-?7;FO*Kx-jMxJEYH2K{ySg5_ znC`DZT!wDKwrw^G|Li}#`RHEb*+O-~HR%aU_$Q9E8bn`gP(0X(r=Nd{f8}lZ-bcEQ z|C4ukhm!VA-4jmBglu+&yh;=Mr_Lpn-2($0%`L9Gb48C+A>JZua0|8VG`WxOIft(H zHH^>i`SbPMUmeu^-tOAoj8m+qU)nHg*4eJ)&EA{oz6;d4?@|GT%hSZVYO3?C>`T2l zLv3Dr`P$$}Ct9mAXpE~nE2}Pzv=&sf25yo$Y7DXVvfiGt@=T>=7$TQ6z^eG8UdDG? z$-Xan1x~F+Gd@qhxW~-T6U3nnV8ngm>*;ckk5H0K79kgzf4gv)4hzeYwR$?V&HH6a zTd5r%L3@6Uwfna#A7TURTbqxIj(@hbAm8_e_vV$}C!&9i-+eRO#5j@F1&X~$h^r#k z?MuAG)`?r%hx+=ClAjHno*UZIN$4)09l-Kj1iW6IYc~ik!bWU$oahX`LM8 zhrSMpo{qv3Uy8_T&>jwgTe?Di-Eco^^#bT&Z{@|ppFv3Z5kbeVW+Loo)OLMSp*5_Q53cXQK3AauZT{>#3n07*iSM`JpJQv&Z@9(X5)kSp(eIbCCq02Ot4-xivm7ZT^ zRkYRg>Ay1y#kidVeEsg$x2mN4$jDy$xjwEB@dlNCN5#cQIrmrRtC)XH`d*Gk6aJk?uA5$sJn=SIzNOQXRDUD%lW?xY95D~`@|@v@is}}C0PJ*jMO7( z8x}9e-w2$@cMUQ zzdo?x1LF28uE8c;eIl`!nWFGad6aAAz~?}2bz#`8Sn1AQ^FP0(;WX!nZ~FKdR=Tq2 z=O%I0mJow+<;wP>CXKH+u9wE@|b(8w_JCY zcwnJ;x8s!v8S&<7P5X%|Vmxz$E#Cw+d_r?|R$RUaC-%3zt_mee;z`| z3-IxS#OT}H_s!k0?cvzNvj1(3#2|U2IdV$#-M=3|;#0(A%b?_=#_2MoP)?5O^(!kv z^(2pB$ogW-f~@-@Ye6jx$`a3XRF`q9N|G4a_Ku>ju5$2uFkp4fOaF399LbS(GM1{h z8Mm?waTbraC*-B8stPVITA$4Q_JCQfxs_`bwN=1-m!h)@Vy)LjVmqxtT}ti~;}+3i zUu8bK)2r^pzTe2ZVum&32J`-C>-1__*VVGvD==0A#lC?;{MdzCtvoZ$_s>~riv1O1 zC3smzy|p#Ba`9yPjoW!H*S5aSqJwW@b;&GxpO$>AJocOB@YD;B`TGX)efu@j|3~kOj-HhQ??ZUm$tu`RcZ_rJ@mU!(Z2Sn zpXkDktD9J6vo)ZssAxT>v}$TDntN5?M=`?D2YLBfjvc6rs zl=Hf-xVpDPDv~HG%ndlgA~8lsWAMh);@be9{7=LY zXYE^s?VG{N`CA#~pvP5XdFJb7TpRE?yIO8H$ekW5%9b0SWfZE3$C6YvtoFK3F zv{kx-+Lu+_s^hK4Io8uABD5lBXrR@6t)nWUIci1wGlLT7340t$S63{TJ&0;da@34=3WwQlsM1Li|+8Lru#JgbUnL^bH-qwVi!)} zLkgrS_=^?vdUK86)vk~4Tq`N!ws2g*8AtdMhq!%Id?!TJt6VR`TnRz$|CMw1iDrj+ zO$X;Vhqu8-vF=l@wM32|%S4kqoQFiu9OB{w?CM zclnI;_IT0fjSp4(jFa1c#AjGl^p7K-@4lFz0wYD-UIRCkB^J%Pa1S@Z;l?g96bXJV z3fvM>MJ<7&4i~SNV;={(9uiG-=d=|edvFuxbgFE5U9-q~KRe<0V$6D%Io1pobEIOH z|DbS6&}DZG)YbCJ4VNG1P4foj%Ndndi`9J1f~}@O#n;Ky2VR%;R(%`FYRB<; zn`e(fV2_JfTZ@IN(6@BD+(nKg5l&2mfX~=t7X8dw`;QVSb<#<%n)gn%g$x`(z}W?^ z1NVt`J7di&)BUW+mZz&%X>H7-=}WiD2n1dNjpYEQiJOjzpQrPdtOKnlax&N@JJHcQ zV#LZ%)AHQ!@t;w-)z}1zu!bJZ=*Na$d`|z{h)Ydj&=hy+{m@$u#1seHAC@`zAFs_4 zue+M!b&EUtkQuBgM3V{+{NS&kPNzcA23KcktlDkv#5vCYA2gvAuvGuxz*@MD2kBIG z(c_eRd5{XD{$5>-ms^iBdLBDHIsnu4LuUv#+1d^tQj>Ib8J8L+@b@GS$wM*urDJYEWm^%k7ps%rIN``+ON#HRZzyH z!e#E+8XOsq6>Knn)japI(M!R-MROBLI+tP|Y)Ho#uwDm^&ocM=9IVQTwuRKc9^90c9K?C=2W`CU<UtF5G?oJ@`HYz6g4b+;3eQY8HvQP#>!O6{7yp-iJBH zBW9kD;gJX3<$=4#-w@QJuFT%l*n{19!S_gxupKXrwt{z*AE|KZ>We)>J*(4Q%K_F4 z`Wl>s$!54(18g`+H?eC~L)KHb`JDUY1)0G{d~Pd?h(3fZQ}E<7Wk^oC566iu+KXwn zQJR#)1O>fiHek=L)vbH&mB8iiBplOF)+kw?>X-`E0kS}6WKhDyTIE9C&{ZgVe!h|* z3pI)EZL4_gR&3Q8=;BUj=f&{uVz+~GSBJ$vBdLb|;wm|`^kX8$zH(6uWk9c&r>!ab zRo`P6o^oDT=Mlk8upNP*iTG9Q%9auan&lygB~;e=OY#e9z_kKkzYTV{=ZD zM2V0nArTP?5s@h6ln@E6lu`~M5)nCz2#Fku$SJ;ba4HcIDV^BS7_-gzKkv`)|M)yM zvwc4Aw3Lj*XxSp2W50iPgU#vt(u(cR3Chhb_A zE^inHk3Ug(ohqa}UKpX$CV`7bTNMoLc~+!zPY)GK6$&qqe-tWQ4PP(=3crz?+1a?R zYJXnm>%LxBu3d50WE1;k8h7B5=JS)Uqhfjj50UyZjho~qU&}L=(TR11&{r#bK}EzE zKb0u5oTo^6)kQxQ>8*w$Sq*thf9qWMkSF>c7^p1G1@8GoYX#6Xd?kv{-(>_M#x_JMBLdQcZ?;e@7BndT44dZ;0xk(<|-XC8zXtb*q9)H zUduIZdUVGEyb*hH2d&{TqvL{+b(~Ymf4u)^%13{t<-6wEJu3J6HTHQq zW}b@pez=*U?))s*H~f^SgVzi4##~%u2YKN(-G<+B7jBhxc8?2+!TtP5qTTt)YU&0T z{?YghOjXCYZnhq)UqR?~Ti*A6Ix=_1Gp^D>p$T5*EZxx)SihFM$3u6mh4ey$oMou` z-)ygq3Z=^Lq8P2XSrl*1T1pmL8 z7`0^VPiudF$X~}9SHJ3-7Pze?ks7)%Ui0DHe&BBq9A}1mVjlO-Xk+(&zX^TXKJ)1~ zjMh7@&}ppPYWJbHz6cZeW$sdgR=4On&V*m8UV4LH#$EAq)a=Fbgy`m}=%tqM_JouA z9pn{BR5SNcks4~~rs$Pdn0rJ&ZY%@2BpxsN1xL*J#rkpbIKe-$gsQhMxW4T7wYTVF z#U^ng=~JSinzTA47ply9iBD!u$x%mwAmlHK`2PT?LI zRk~d1^|sZHBj>78Gt`~^Q>wIzxyrWni7L5xzADd@sOc3vL$Zs=QvxOA-K zEpl45;G0|?m#GUprDn0Y|93C?TG5+T6gF4Q_e9a-MSm%lS3I~@URUxO7nLd{RurG% z`sJwmTk7xa`NZTT#HktVRrJ4vEk!F9PcF8F$4Le5DSJ4VuH;#IMa|+|m5W=74&xRx zpZ7?5vFlv_wwz#EaSXYaH_jE_lP@KF65m!2jMeHc6X}3I)vJ4fIlp${Av}b(U|Pq( zh9;e{xdHGPJoNHv~7hg7+(H2)qmYgh9$oVBlk>fO#*H}=NN7>)wd(5&y(-5aidkeaaQ!y{-aPgUS<_Fy` zV=&_T%yTPrt9ai&#!!)b%VlJ6!DI9jKk*g*ly3P`o*_G6cYA0Z-f}!A%pk`LEOA`F zc;9`F^ez7%q#wluN`ht9{}XV(!|=c0_`iZWW*F{q51ghDCbB3MY98fDk82GhYT&zd zEvV-2wcwqLFs0-90>1$--9ZsKoAY~7tm_6!#{Y8;3;M+J(3r8<*w8DZl5HG@#T?|o zkzZ~29$L}_is0pRiE$Xl7HZp`mLq%#uidEH?4^jSb|EOrJy7@MaN7xV(bZI^<>U1k z{LhBr3F}|EC8DX_fZNH2Z@(|z8%a4Fy!Pj)aQ|85N5_cs+9#C8d;PW!m+&auLmIdC zWiWzSaPV$2l69iBO@3-1E2-jBx!A}zU^n})htueU|M9zLXn3!?vfY+Lzo8fPQp$@k z7tO?$+vRu_q5Wkk6A#KlD!>~`*k%{l$3^^EbsFP;#eqE_5|^PV??6>b%W&snTROvU z(lItOU_*N#7-z-C8Ps!Yy{lM+#regyj$$YRZvT@bO7gv?tSDARM2ssnPaZf@AErv8 z%63@NvU%UpRws!#8;d#bv)A&X3s0mzZ947HUjAH0$v=!43kfu`jgxK61 zXH!H@JsaYcgQdBSuff%bU&l&k9OHhS&E0)vJw@s?XkTzXiNdtsL`z;9suw!FcZXlz zMI(F*ME))+mf`d#p{q#1?rzOjhSoNT3O6{Vyh$_L1Zx;7IRb9i4#z%2Cz4GR>yu%Y zh1Jh&gin46Xg*CP)6E#1sFTxuwir5yBtaCr{I~;#Ao;C{xdYBI3IcnWv z;@7>N?L*WENBGapEN}y5LkdRsrsz4M=B-ftiZo{5(+*Umb~w-HZiFc4SFzA*bY;<= z%7c_;gEpP%ClK3~)E}db%ho0g`+x&-G)F;R|}mOc2}E!$8#XuFmG6>qN2t z#kLn!7b!d!4n8h6mty1vvEDTQ&Y_FR7DLsAbGH?vwH9N{^NAkfgN7o4TCr8kSfk+E zqeO=B;;Ss^c5r+D!yMR3OxeY(Sk;mI=9n5$Rh{Ayw9or5n6tJ~ZZD_W?&cg~#Vj=o zou)czMGF`7(DxU3iJI;u3b@aB!jIEe>Uqxcf9VwU53b^IdcFbh*^2&l%6!!Zck?J8 zp^xw{Z@6EZ;o0M<$M@5W1h0ln-uC~?KS>U=35Q=Ao0AL|KB1;z80|$KC3rPV`d9e$ zW9GE!?tYYU(Gj0NUcOU|3T2Erab%><_-mu*nf$}(l{TtK8A&Txy+CpE=YR0=|H-5p z+hb{(zn}>$Sl|+F=TCJWJ0Q*Lbmh4yH+#^Y=F=IBGv>OOK_}wyZ&m61fTOI;@3^Zo zYR1j~fcZ42vPOB&beY`_8iP-a*t@9^e#>_Qr-}JSTXsa{)r+2>GaXq)N`RHltD*V2 zsB@bPvpHk#4b>y<>}`|oMT^bR@0;IGcqW2I{SHsg4jk5EyueXM`GP#|lyMr|?+2+> z`awm?|Lm)lT9#)icBauUeD7LzqdV9J!w)^Kr@E4(y_!JuYtdv*r@ri{KI$2I{$=vP z`{^b#WD1v5iqw=Dyx|VT=C9~#1f5Gu=zIx0!6>h)6c0h~P}lo9T3Jqc>g)PMYb?YO z8R;C@e5j!+?K#?_g8UNZsubKl&Am@@{`KUf-|Kr�nI&9DV5`%G+u!#~bt;Npu)B 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�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

        pI=Cq41ye1|j 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�oyhj2N>#rdfth8vxAb8C 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

        Jr9br>qoQKx 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 U4h~>1!)mzW@7Pq3rgqZ*tJwu~xtIC} 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 SqEY%qN=B9-bKow!So%LnR!j2$ literal 0 HcmV?d00001 diff --git a/projects/xinstructblip/demo/examples/audio/Group_of_Dogs_Barking.wav b/projects/xinstructblip/demo/examples/audio/Group_of_Dogs_Barking.wav new file mode 100644 index 0000000000000000000000000000000000000000..79dd17656c69c7adb8d7e80e895043292d1a26d6 GIT binary patch literal 1908780 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

        qv{VI45z18Cy6@1 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 z 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

        )GT(!1ir=$TkmEEiPscROl?)Qjdx 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

        eK%U_alN`~6q0>B?jV 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 z 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

        ORj`vB$O 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

        (TNz3p&!zK7x4|*?^|enec6rAd z8S5vl3$veHq(rmdRxLZh^~{tS!c>Tm!*Ql`6LwyU(etpDRr|jMcMBGaRTx$@dOs1y z(-Mvkwx4oJO4!K6}?%Ue36BHPB|%{KsdY3?s{i5h`k~< zfQWLgS0AU#e|F6i)SVfLH3mC1jl90VZ-yg_9)TvM$6I-~IJcq-h_ojfj{dn=`{I_1 z6Ro{&3|@VxCEzUNLsJ>VFIC3`L`AC+^e9A%ak`naG;U$Mt+wVhyN{N^L}-+rV5)~i4643isJksY0#kUjzN z@M$RFC4ABa*eGj>c)mqudleSTTzu83*!xzUKa7;>00miFQ-de8);2^KjCzF#gVtBT zxv(ooe4a2XQ~xBOP}{+4Q*F{UYTbpZbxM#=6P`VIZ&pWRGH~?gV2Ly z<*L|p0TJPBUUN2F5RkjXlCX-@US4M)n4c4sVFiAI`NDv8@eqF9AS_w&kVU-;NblMU z;*9O&xwT2eNVURR9DX}jlqeHYjui>m?6;_jb_>|8XH9TGSN)!o)z{GSkQX*`2j>QA znLE$X>Q`|n^+iIjmne;4BKq6u->izZuRUPJDg}%mhUt`2tCc2pXFA1Q^kd^)=4`d1 zMQO8#Y9lnYl20?vs7K)GhWUSDUmMM|Pfp8NEN49laaNV}PF#@Q#On?n3t>XMYj&2N zlSrKL>g*lkeIcslv=H&a#q1Gr*ZCM?v+1`48_)iofRhq_|1I}-0+09z-dSYMPkFWd z`x#`J(V8%AOcX-TQwmUfiW#VdZ%={f8DF#G(yS4Zuej@{TuwL$^VB|N4cfd#p$p?u z*COl1zf^CxLTl=~iZp7L)G1uXB|Xo*e5b5(7P2#(M2xbg!^sk1#)cC@ofG0^-CWQC zq6Let8xXF<1F?7GW#}hNy9yTFI3%OFV!P1-F8Cv<9dE^t8N!9=11tBPjZ>DL)?Ra> zjaaE^GbY)Hl^kWcsl`wTI)ufm0<7s8Hc=} zb6HbBauTIfoG|}YN?D<(Z4~62^QVoHSm9=5rv=*XD(+{kytx^BhD8w)fhpjPggJoD zGm|v{%jgMo%t$oRGyFS}pB_Og>RGl%s$R$bI4NB(%|0-( zob=MPA*5^TCqs9%(%9^g5o_0KwL_?{*Qc?@z_|&=q?++}E0sge$=+yj^8zAY=-mk3 zV3;5-YC>tKGa#?(RRt6$Z5Fx7xjRn!&^IuqB9e?1r+P|SA>uKJgK7_*m;(WUxi@aWjD6tN!$;Yr7=MIkN>t!M~hirYbS=Rn+HSxu?)q3SKq#l zq!C}_ZGNv$X+Nsi0LQ1at`8w%zWTzLpK<$c8EBzTHs;In^QvM4rl&}C1=*> z+SC&j*HkSgGM#-8a%$)^xSm%Si3syMo$_KuTbP5&V{vEotN+)M2s3X#Wwmy}i&AL3 zNp$Nlxkvq5ZpH4a zT+UN>&V(9OsU5HZjMwhs=l6Ke>*zw) zewrOu`tu!;MLm)2Ly`7&FpnZ$YduP+EpLU@>cbQI(GXg@VSWWot8Z>g~ z%M&-q9wIaUW!VcWLQi6M^n%S^eV58A<3m2LzL%(@VKTGQU%XMhcjs%!J>s}28N&=s z&m(Y4=xQ`KX3j>GSTA!0B0|U&_L$_rOgV`?Gi|(t+@9aOeHcqY(jn|15 z0ky{yG|Hr26(=}!j+$du28gmAFd℞y=nsVs{7BD!b}~pQfj!yi)Sm1L?%{2C3C- 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

        69H1VaxMwXbii*YF%7-}e}u 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�F`-iSCHaQj()vf8p#t6f> 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Ξ;(0pfvT9wEbz2*tJ2F1JQId(IuOx%T;#U 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%0D!J{2BvzKWTi50Hu7xt9RP3~$Y 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

        &$Aiw^@~XhYMKUlh_aTE)ZWkfnB37Xg^u|OxdSF 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 P9&ngPbOjwld(-~|uUHPs literal 0 HcmV?d00001 diff --git a/projects/xinstructblip/demo/examples/point_cloud/banana.glb b/projects/xinstructblip/demo/examples/point_cloud/banana.glb new file mode 100644 index 0000000000000000000000000000000000000000..f6088a9f39c87527383b641280247a2dce39985b GIT binary patch literal 9041624 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

        +q+NKONTL&m`l| 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 z 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

        ?|G3%Su@3*F*}Y;Nexlj4!8-h8 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≫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 z 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�##(d?{ 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

        3jJZ50%nvIao{SwMTZ`}! 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


        GjNV30w2#)E3$c#T)-q_!dB=g70@#7_| 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∈9>Zx=Te;vAx7hhD+@|%su73q~6j6 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

        ZeRL$-Q)B;!KV>~nWj*)NZd*?+ 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⪚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�!d|I*Qb^mcuu!gxLI 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 z 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�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≶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

          #a=0$e%s{Xi(!A!lY8~ybF;DFV1IFA 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 z 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

          T zs-cKRmqj1JINN?2nw)W6oM9~b5q@8DZr>5s`&h@G*Y`$gk3_W+KE0Zt45G>H+;!32*%d#!YRGBXWuX}7jI~@7o|t$}+xXZD=S5}cNW-dRW$AH!=5P<%(4G~X!_$iSCp}iXiXyD=dS7E!cq3ja^iQ| zp0&15?Ne5(soHd|sQ+h*>dR_!(k>R8Shr;UZ#8XAULo%EuweX>nr<#w zFE-r#U(FUZtxj7kTvE z(W8asTSFAFYRU-dC))2eKqY%OUy3VYelRcngR>p~B zy9U_YLPfRxb42kx=9h6F#Pw=hF{Vxrj~S@wORwIdm)Za?DOBWlXrwr`l(A&&2c2wD zE=(AcX)%TW*No|+Wuggw->;&3Un_+PD4~sAx*aR*~k%o;7}Ini;rNylrWXp1glAnYK$zuVn3=Ts0ZV4hR+N&Pm>= zshitD;r755uUu47WF`NGajp1JMZ+VvitQg6>$OKkxsugFHpl|+@Hh;JTr2_}vli}Z z70o@@F=RC)>WL;=%Y9gMc3vJ5`8-u zp!2UNnj-oO4Ugg24oa%KJ5I#SHpJ&Dt`Fpo5r6v_;@JO`Bq}G1o7G0RZi14QJ)SN) zzvlevq>?I6Rf5Ri-@sKgJiQ)WQHEV_b5es|*O4|Eqy_lY1iJ`74ijCMR zT2))&p?DSDShP#Tu{Y59-YQyEbyPfUXNRBlRkWugbM(Gj;g?%V+M?PhvQjK@dYO`9 zwk;FSnCE+Ep_2D6bA@rBDNdZCq!)!V#k0T0s7qH;jbtk0@i-1!DJd>{g2>)th!$6( z==-c8LT`crHd`1)v!RD5>Zy|q;fVSdgKRsMCRZfvb-NX~Q zKCZbdqZP|bg`tZcu4*o)bMj&07~>f0ZRFIdc9aV5-Y`Y|i#w}hZRJCUK`9c&OV{K}iVpDu+$>V9ZMC=}9hUzr-NpJa|h}K!+ z@I_H1d%Q<{WF1Q=Qqt0eyTyV})_9Niq4lGWiS{|HO))}AUB8|X@;i;ujlbI($w{H| zvd7W=Rb)1d^VJjwJj-+Z^UU+YYmo!iE>w{t`)S^L;fN25_rGm)3~>(av~bQZy|;e@?92=7{gO zrsuo#gpjo78rRlnT0iudsD02Fua`%YdBagLr@S$C^@yhD%Xf);9~qmij;40%t-^hR zHO{l)YwkKOzV~g6XJl$hc0Vbu^{~e~k5#mN-bqn>m9>;xt7&Zg3Gvj|0hNkqdTDW9 zxb$&EJ&q@K2Wv!Hy%P#sz6Ueb#%EuuhZ4>!{LYIF!K{ZcjGtw|eeuE56^l5wTW+~8 z=AUuF4e|@Dd|+v6_MWC5g*;>_x|^s(EYZ@L0n6GlXq5xme}K@CsDMZ!xa%0;fSs_ zN@|pQPaIn3j43<^bCU0iTn87d-Kiw~fvnlJ(iJ~kR?_Mq?$^Y)^7^Z!vMY~8?R^)t zs*j@HQy+_z;e5~2qUfK^EfLt#32z;bB7gJC!nvOVX3meInB`~0R0DhV>5HPOdK3vi z?XVI1-RJon6+`dZVzq&i4zeb8zri-R{XrC^U)U$Sy=*YMXB0i{3!P?iR7-iY1!LqbPIr8u9OqIT~3+ku+(&@aA>lW|)H7 zeO@e7-&vpBRzc?Sxnl236YTg>PD__h7n{S4G4+U?92ZX#Ht!6v^=vt9+&NM7yTE$s zJog`&PZTq^8=|CIM*1TMi@9xBOJSjmw*KuTv<-Tw8X}{RfPvyA`*P+;W%T#>c+s3S zC64FGXrXb1kX>R=&jB*(Q&AySzca#5?5i#|IRp`Ewb~o3K!n7MkLa1UYpztQ7rXP4Ms-ImuTo5@XhJ+}N3yRC^;oE zKk@ZL6|}1GxQLlyi<2xBR5#{;7#w7Sg|Fl^f8j1M=8_d&J1M7iMLWf=K~~t8J?O`? zwm|nQ>}fJWPA8m?iI51cH!|L1w%$o`a1qxeg`7GPi4%PPqjKe>dw4{AylI28Lge(- za=&Oc*cwYs7WR$*WiCDlj;eE?w)FES$ zxSwx|N26s#UuKK0FO6|$fQ$xZP8DY>j4;|tM&FXhi8T^KeED8Vb6fToD;}~I!DT5O zjp-=1-O|IV#xjaF?1otKDO zohi0AmD2j#b3{OuF)p`~(&VHHalbojRq^@UCX>XP3`4BC7fGkpBgD^C1MJJS<@#aW z#f5)*I89$l$A=6Pm(2`t;J!$j?mLM+wGFY1YeZKAW{C02SR?DdNHSbLPn8Rrp@z&ZDJ!kOo>{Vh%ks1EpA4#fStHk4AGlcj^ieI%@w0~%Vkz98=mp)e%?J>rN z){)dZe!A$#nlqmwBWc)|aboN)1B_i8L8q1t6+^hrc3mAwzK;e7^Qro{axmA@hg67< zTtl04G=jBsDn-dS_SF8t9`vz`h4mg2R3C_-LETr1M+Z!CT+ayld3%{?=WU9uOe1I@ zE)=mjCKy!|LB%I3#n2JPIAB!-9r$mSc*J@2qk;%>dd|I!#fI1~CxS%vXi=YIfZb%= zBPg9H#~~;A8rjYc8P{YkG;(yzj{1+TBa107xAl zhV$50^!lv;2q~0c_Ub_TXwXOO;Jy6aPhnKJZ@wsqHpX@z+0)!{xmYoeH5esfT) zF(H^E^Z89UZT2`PVsmZr)vRz@z3QxxXWQZ-1Ag9iHR8!6J4E)8|9N7U$X{uJf6s?e zqg@Y$e}n^;D#NLI^FuK&l|8{XbDi`2Gx2<#BOa>>r+{$}MSdFx3~VAH->PR~`dQXy zOqNh_&_gk4fCKKIE+K0DOsH!eam7Ii>lnWk*+-pGIa@*}+rJi{a-4BtorF}0A4QUI z!Lf}asPy#*5yN%7dlMpPWcLq3|Emj1zDCgOG4I7SOINJ#97+1~--&7LhjsRLB)MOG zD=x`h@kxf1t~RO@4QrgyF+@sJj2?*&*36sW-b(a`TVl|72b}gflCH0~E#|ayz)Af5 z>z+Ll#(GZJk1==)Z`O&XmCmTDj-(E?FU0xr&iErPlD>?7A{H7s;UoUe|GRTfOx@{# zSKmg^zsMV+guRMdc|?-iiyOkSr9G6D8zQQS*NqiMt{sbo0h7G5cp@?DCGkEA}4p zpXz`E|4Hb>lc&OldzYRe5oG!5mGEZ0R#iy^C5OKfeFi(D_oWCj^?xez*=s3leFTj+ zejps!^S5>Y&zH9I#nNuZxZgFL&Ky!e_9&sHO#*%#8$gzkD(Fy|h|OCC&@jg2Z}v;T1#kVywM5N&bP4D_)1T(QS3!hT zGS>X^r_-a#^u&(V46`p`mp~+4r(BCNCHYO`qABiF|cTM0uF5JM?ag# zzz7S*#w_(Cul^bUc@l2;=f`-G7}&Be885J3#)DHaure?S-v;_oY<&zg-;#jCKl)Oi zDKX&LG#*!bvmeBt7&sppkFWN!pThtDW*Gmb;6N<=uuR6iLwqTxE*4_mB;ZVMUs^mU z7W(GIqe&v`c-w1X$EbMZ{u2#}&_Uw+c-;A(y{^vb;BagLMvnBR5liA=!IcDj%sA>{ zW8)w>Hy%H<^`c8|aS*$ialb9R=<6&UjIq;V>N`(r|3C}#C&r-t9#6V+Ob2~120QCK zN#m`9?-3e2Vd6=nzv^JyFb#HG(436s#=$+)SZrXu`b#14%tP0rgSjWQ?Gy(?^0cTo ziuLw)#)DO89EK-((wx_E5dB_g#wobtN8iCwS6VX*~Q`9FKQCdeT2-JTxv& z#H;`>8sX2^lqTbQ#*_PPh=Z-ilJF_x$xr>@dp?nfev7>+I#vg-5A*k<_MycKwXk=8 z5{|p>LvK z*e(T24cYghC=OB@Qn5bPn^G%v@KG-nJGiqSTr(Zi%u2%;_PMyZSPKolX?WuXd$|0K zh5hGKu~{;|mo~AmU{oruIl$g44zcj&QZlw-U&WsXVxV{XRGb#%N4?Es;CXf`RAI|c38 zKgHWX3H6;)@E3cgRFtqLMrjI$jAC!oRSMXUoPs@H1ybivJjea`{}u<)m3TRPwn@Pl z_7gwmCkL~xNtpR2i2AOQL8sDW92*x*maMsvpPY!A$Y6T@P6~gj6R~DdFjZ}qLd9y1 zIqU_Tc`_1a@Vx8)E|_+iM#5-K9NJ}t(2~4J(EW(V$;lyf^H(I)-$}$q)*b)Yn1+Ltn;X9DC`eo(qTUfjZ1v6H06Tgn>`@SX_K1lqUZd z2HpN>ahy#U9hwsgtLkHLuP%(4=;_3b}GFspX1&&($ z)F36n#}|+4&^3(naMrXRQlrC~V^W%Zzzf#+Yw_PK&Pxw_!GQ@etW_(eB{#jHR-wgS z?u;`(>J3r%bhs&7N)M0tz+FCG^f;1c-}Zsvcr6au7D>L#~)56GuNPb1lg@+KH%UuJh?+c-_HfW zw>MgJVH}9;SpYmJibZ>!gruJW;r{$sOy~S$_1_?vdovbKwGF58XTflAn+^{Kh10V8 zLGX024p%GE1?b5K`_og9y?tNrM${97fhH!r*6l9QI_d=a^&(Tx*hudvikRcR@G|dzXOC zj)l^}8KLmUI03gZe&*X~VezQ`Af?U&J)ujNcpTP-_i;U&Lnj{3Eth5VX@Cc;j9`4GPENb0 zyTkR7I_?GcAn`^9~yG0y! zaET`ST1%L$uf-lSxPLUp62{!tq4ZTW{oG^$A+KVwZLx-Gk6XaG13G*(N<*_gn#1ff zv1of$!&*ZYuyFy$pYPnej9_m5mRMZLeb27U(;w4Cha(sRxsiRSJ%+}j+ePkWe>8&% z2OWx^F_aT+2F)*NvH$Q`da~6F%nrrjjCrw?e%TZ7{TSmap?7vu_$)N zP~SZPui3^C1{*_5brL=dU~H<4`4ss{*kg4ZJ@Ge$)}t9q?8sPs=12T?;dPVoGwwPg z(5*^Ef;dWQ&A8A<>3D5I9Iewb&T~#Gn)t<$jgv8qGflxkiE%XdmN8iK@%T$R+FoxA zVs-ELmom!;I4jtX&pMhTYA&nNn`W?nbrP1e zjAf3V8N3~rgxfF0(w~Q>Fs)+}mM3dz6>Bxrrg07?w6t%X37k?UVK1eQ3c^^wdQB=G z9;Tz%MaHlsHyxd;bu_ow7)<(R;-cv~8dzckA=X)#)gq2+l!mZtY8GyK5Jy%j15ny$ z;hF{URFY!=bJDZXAU~d_AJzv;y=)xH915pJ`j9;*2lGb6)5(W=aQ;R%E;de}7wh!k zfnOf}+7eF|7aGB%Q@PkQFoE*dG=i){+1Q);6up1{6R)P_;%nwjY-;^SSALAuLtDfpt(AFvc(Yk4a~=1i8`9d<2fWYANwBG(e(2MaML6o*GI(B!>_DA zV^oM^pXtc8s{w1a7h?bZI@iGC!I!;q0kHFFz8$g4rP4EuAUZPfGOBRrJ?8m zOW0JMf-f#alj#XdsI*T;SP@N|!mVIozeE&$qG`(vE2!f*JSZ-jT57G~$k})dxuT{& zW;QV7T|CC5a$IH2hfb12oOVz}JA&Cmf%ynGvs4tixG_B8b-(>HCB00shuTT;_Mc-Sb48ozM@!!;Z$R&t$xkRw>{Nx&i8 z+iEayfX){a(1rPTjy>(cIxh)FZC297cXlwUUlLAo1 zH0F22edNSKJNW%R8EuleXL{Bae0iUeK2$|1;kMBHXBz7ts;K)G8`w4~1H(u~Z@ODU z)cg!wkictPwl!EO(sA@eHBB2}1zYxHV96deH7d3OxpNlg58$3um?eA;&BBx?j8T7Q z0Y_J5+GTGJAtSS}@zH2% z_+tucvmA6|e2d*cGkA7C6D@chl&mm?xE48hu!J!xb*9krK^C@Ns3CJ}QDlm_OE|g zT8QgL#gb>aAq*VS63foU((L^P(CJtac03YGnz4ppbD<@s7sb-~M}{zHSWBG$EQXwJ z8NsiH0#qK4q5r~+!RKf`?$T!*+FN7Li_XJUS7T^Vi3#{y=3$%8G1P=PlKxZjare9! z`dV%b-;NicEGvdmgG`_zGavtYGe?8hVrz?he7jXcUb&_)v~MnYGnVO5tqI)tkjK0O z4fWwXq($EX)bwRs5PL4{o?E~^TpAjhVGL~zTjGAx81k881mFBxVh!g!f8H8FtKuSj z#$1oi4~^mO+d>?+Ttk~0nZV?Gg*ZBl@nh|bVOg&tOzgPCP>l8^(e%O02v&9}#R+rx_^bi+yI+RgPIHet-4Glem!VJVXp(o}H8H;w8wEtu ze?i8Oak?1GKJxu+F@{OGMYzS2^CFoE)SfQH3$Hn6KFpk*Q-yeHteXB^GKRJBMeMiB zSgEeY(6G4}gUi*VIc)@~9;H~vSoBG+4dLj2Ww`IFnuZGIaz?hs_uOZ%xTz1^NrwNVi`WDP}31d&Kqk> zP~MSq{u{<{|5Py^=eT+{$pnVR6yfJIK7ZI0Is>oK&T3kfX$E(F3-BYy;fi!q7!X*5 zr)xQus`=aQQ;e$_w_|Q&0x$QJ;BZvY#OX#*lF^Fyr)ui6$PgrVTH~I9jHjwFfJ_qE7nExn9v4f9z0Fx7)_> zE4MBB9#YcpZblIIy)C9RR}nH-_xh%Gc(`0eUW<)j$@_L#!dRe{{H_bSx5IqK>U54b zg=wvwk?*36kvww<%R6^A!nIGZcjKWAlTK0hZH(7?GS>Iq(P!QbhD#P)O zLrA}0Ah<|n*mZIUWt|Ix+zWENe2|ZAgTQf{9OFVlsoRtQIFc#HkjJ5P<#P*2{K$GN z6=7t1-w#3#$wi0^Vi*<}gM&bhQHOvRDHLZxm zMCPy@9qh@PPEyn>kKjI(2hfm6^!vlSm^ybzV4ug5UcBF5?+)Xd$Z(Ral&&3cgX{nq zo){;k`KRJ4ndDGz4VK zoBR5PYjizBVG!$?%-j+}eHMg3&nZzjWoQUvZ-PPnTaJnZe)g~spl}85yB186T_Mol zPk}| zh>X8RXqPFc!y5{P1R7zgT0u9L6^h0C8)3|D#+=K?3y(pD?75?$U6Uq=f@ID`v}R&G-kxewGs^^RpPjLs4kyjJ}uT)Z+Ft z5zn4z1K!BVx%F+af<5naJLNo9w;035I>0e<>J)rS{4#OGm)z^Wzrq>JTeilNjO$1; zae~)}+MpxX9p#mr*+9|mV!X(hobK$6D}7yv zE{qxLn&tqbl3F5sU|!)ndzj^3h%fk^s%JTZrn&%|@HIDOIf8UfK7Qc5-DMm9=3_pd z?-xZ|92-MYNItIo6Gge3`2Q*j@w~5+jJnyti$O(rAVf(cSYPga@0RGqc*X4rR?sT1 z7|%>qQtbpw2p?R88*ej?ahVl7IZ=pxo+xSB4GY+ErX@b|VZ5l1CG?wBh#%8bRAOii z6kC9wELBuL&=NX^7ogiH6$SS&hk;dvIBBYqZ+~lUFm?ajl+cy_)l`&q|&kFRHWaH;h&dFIj z`o4JxvM^#E??HOofwxr_E`F{gw_A2#HZ+61w3KAk znKk5JrJ+7!Vr$$RLu#v3d}hjc%TtX(do3CN-ceF;t^>4$WR&z$QuJbb$jnVe=cP)T zb*M2UKTBgR9p;po*u#l28CX}YBoAMEIP8~&Lz0v<^exxiPGn>FP$do6$J*naa`Eg2 zCC%=~_x2(WGjAyALaq&TUs{0cRw$|IYFk(tkdK3VDrwVuI|vz=i|JY=&5yN*SEsYl z!o`uGDqsTMQ0SYTJaG#TsrrJ5ch!<&$17r-Uu_Jioq+-WF#-?6(g#Cw- z(U^5qTD^AwH?Bd&M=Qy%s}o!aO~PdtqiFGD7r0WFj4LCesLyaG=v~6kcqodRjdz5^ zx->NB+T#o}7r5Fpl{GD+D0G7>k&@R?Ur@bBK)Z*Lw1{;?g*FLCZ;T}8 zIA0h(BnkW4aR0r?2XZzi;r)?Pid1{UChq?_K4(tiA5ZAdbtH!z8AYCAZPJ}dc=afA zh_-pamjy{^8!D%38{NTqcoI%tC8yh3)=ibA;HoxqI`h*FN}KV%lH*uqUw8Pyy|%T? zC+bn(3|<~eMbid3Rd;U&RgF@xM#FP6#tqbMk}!p_aECIR!f>uTIrLIc=**@tDL);n z7%z9i)(!f%Nym977zb7E4z)$;c&}Ja^n)i?vkB+BT$w>M0D zl8PQRjO__#jrZxPSjxQ4Yurz1Wt+l%2Px@q^94MdjNTU`X=7(UXf-$)J=-!qVWS`D z8z*5{N+i8XY5^a)2l|uOFaIAcVEe^nocUh_?Rnx4LzT&RFD-)Z?g;?*CrOz5SweT` z1j51v$@pWjgjT77;q>_wl-v!c|E>l@!^~tH!Q5NBvJfcacNY;EP8sH*Frh^<{yY&z zt%ikwLu?9anun9gt6;dXh3|hrI9=Qt1Pkj^v8%g;Dpv)<>$$9LQYoSG-2rfIP6{6W zC}B+x_DLL`hVkzu>>c9|eOsjBnd}Iv+1mn=x2Iyiy%EeG_k+7uX&B+mSc}dr;Ly-? zT!OrgtNlRoCmmmgMA8)=lVY9=D<&|$$eVR6r)6N-iby)J-3LB)OveS^Bk6&^52V*; zuwRmtM(*$izj^8Su8))!xA2CxZ8GsR_amBr@q~w8GjNZojFuF8f_+sMj%Dnb{$>x@ z;ggLn^JVnT!~=GkW?=~9)^;y+2gT_O{LSCMdRI4C@+Jc#rpxKi)}}D$TLy06e#C(% zO~JoM7T!M~r~GzJVAGf^{M>@qBY6{O^*#glw^Pt@qb4vRIvvL@Q_#qxF0kun29}>! z(8uR4oF8W4P{u2s9_|eFZL;tm;|4Fxb%tw!te3)Sb4nj4(BoQPWKL$Od36&=gMc-t&P>PI*;sVA(nkpP!Y{t-b6SaWn_-@08KZ5zQeokLx5+GMYZm z6S59wV@;iurcd;Oo=vjRYk`#Rr+UE*vn*_TSxUhA`RA6i_DgdqnauKmr`{af_j3Ph zmoGHinTaPD|MU5gAM{dY;*M((RO#;zGtcr`!@b=ebNyjTLmDn<89@d^0-#^Z3_SHs zLVs8XOxGd{UztSk-k}Agv0jbU&y9#>}w7s?Q*f|AAj2;JfOw*TpX4wqpJz5{dFuK zE4s?acew``ndhU6ql{kcZw?a&=HWIWrIsH(q4sw!UQc8kRJ|A2Ovpte#!bCoPxEW} zyrxG)l7VXr*85_Oow5kpTH((+U|dh$C83|Y0$}aoOdQ6%RKw+g@c3{#z8Ei|ejS40 z0BhYmogYpkWg(Cin~v21;neF*2%MOkhANI5@0*9h(swDWsm>Y#7eZmyyJVbH7Dg2Z zLt(+6M3nalqxiL9a7!ei$)8XfAdF^gnamvLTc-RiW(tk%}Ru zVN_Eb3Qw!kdF>0Mo!qOfbxy~AjkpiXIDwmAQqg!rD1{hFpsp|#2S)e+#}N8ECIVJgq~WM>A&e82z>g(qxaoBWRc#E1;C*ShFC&zaS+_r` zDjhe@4yC~KFtGcO!9EwEgiAtU%gYQL8x}@zI0VdkW#We=%u}8e0@piaVBd#fl**oo zp+;GF(~x!Q<^@CB=NWh=J)ATvgP`kJj&*&*Y45@y2u;Yu=7(A1t}+mY-^)Vxd*QTh zeITqDl8M7Zc<;760Imn~++j>w=1hOEevyOOZ6stly#?3#^Y91b*6z>rgWY=hIQfZ$ zT2J%^W1jEZc-`p{S?Vw`-fj&h`1&s6xhGTJq=8E6_6 z;H_se*6?(J<86xYXHU)t4mrcJ`j)uiw45ffPf+}-VqCI8#$Fiikk_Xrmd}>bC*JdZ z%P7Q|-KBI<;R!=O7htOgk<`<$Iox>0zxfhLE1$Z-fE6WZ5h^7)YnZ?0+FH&o#`<#n zIs2m+RlM%^E^Pu!E|;K37a28v&;-^lEX9$0zT#OEcyXuT^=+`??7zK5?C4xs?48n!)0tGF;tPN>7X3V5eCbTbfAe z;G!mw(6kNC>L8`2M_J!*OKaA}ilnqoZt&uB8BRJANfGTlAXHh3ySp)Vu~Bmv&i8q7 zSR{E3;~0`%jM_$#oF{w3aFb%xXB^g zl<|k-*-Nw_I1im17@x@)gS`{Dj?G#etri8sL)RSinG;U6+k-&5CL8zi+)uh33{M+p zV?UnzJFbL4w~1M}s7)C4S`i9P9kX!6Pu4#P4uibaS!l}h)Y~!~RB4$gT8C2HnQ-W3 zl!2o>Lg_F2M<^UKaNF(>x;KygPrX>jEG2}Vw~d6LRT(&>CYWk`*+(^x*Wbax)Z1DH z&S%qbqb8X8zmme$ZW*}9BABX+3Hx*AYJPuhh)ce9Mn08 zer}V&f^ix6bxjbZ-jqVKPnoFqFo*{Hi-aR}nb;pnX6+Sr~pj>iZIZXv;fJH;V51Z(jkh3c)l zyWG0F+`799^>$~bRBruNsXKKl)Tr>z@BJ^I{X{mqd(N3N^UU*Y&vW%{Kk$y{wc~6s z)yV^xEs~FK4g^!m5kHukR)|m7vn7Dptb=2@w#f6zB4&2vUgu|{X9#H)`-18a?-_T6 zP}`k8U};^9!Sv!bm&c6P|5sjaRR;H^L52FuYfW%cg}=<{}RemzAS} z<4hU9-ngs+9ae@?6z^X;npff-qcBP+afci%M^Dy=FRpck1(SHZj0~e2pIo6Pqyn$j zhLQh4_A|F@gT>l#TJTB*k-=5i<$ro$8yC3hU5yETtXDtJOmO=u^lBGI|GBz@XOA}c zV?ED-6&}#*RwZWfJo$ysO(U*A)3{JlBzuAKPwW5pt|{N*4du#GRIqm1`Iry%8d8F$ znH+B)^M$Qqy{z#xR;E_=f@ht_zpeF!c8)CGl`9a9>QfyxyOk=}+VOWncW@HD`hUeZq z|Cgh|;b5K*z2Fq*avykvP}zAe=zFRRTMY>z`!!my8B>9WCxlSyAuUvOFUK3VL+A>} z39i1Cxcq4duScv6JJJRhykSl9VNZDRl=HwtSxbDz3nC0E@eEh+V4*jx%BjQx)Zj$ZaTjM-w zFl{RGhoe7Ba0|y39g3OL(XJTX?g!C`Rso=&UV`fv2hqD@e&Cu_hPo|5bnTWud|%$0 z^~^zZ$tno^t4pxzVjyKl2g9T@Tr*l0NO#7Ez^6m`sF@r{LE+4Ft0=^n4uSNq2m8?8 z%*Q&vK&mwk1CuBDI9~`Lky$8MbuYwCU)kr@CIn*s6k&;HAaykfhHcYI*mE_I`)31T zAm7vaC4nS;8vxf{l;S7$hAMgC2fdz`W3?!VYM4XR*}f8|hX+w7=8yb**#_rX22u4m zU$|*gg##A`lFdtRh*?mLO_u{H@U|A_Om2(jU4y9VmJf_PTaCj@*pn*48y=Lj!?Amr1!}`fvsXicH%(-#aSS~x`3klM;*#2$+vyIs2R>nDY&R2_){o#G*N^H*J z_wQ$2oLL3-p2~62!XS9<+Zxqofz;uCFbrD9HKV!!%KaJwBN~e^U}=WF!JX-1FsRRuLzmzM=o0;p~E=N^PKmiLG7a8 zjj|>7;5EX{B^qW1w8R1Ke&kgX4L*l+@y07(3M!3(Z*{r2W~eWHeiH+yC3)D#j5X?a zV&GL;ODw+aL%yuV{e7JGr)_*FVRan%#AM?yPaj$p9S=_ZvQe|&o0fi#2gg0x_%qd; z{8lG``SWa?c-@QMcGp2ta1Oecc+qXcL`b@xjo;sBspXVJ=$@N{gC=OHn^O|Z*qMW_ z)>=y6m;@soa^!%(X4C%)pbRtCC;~=l!ns@}$&hiM+pNAI@Se8C=jo z0R@3oY3H37zL&&8%SUi8#20rHpT;tJM3FYOZ#i+O$TG|Zd&9b_(mQ7$ff?M*+V zanQUl509|s`F>U`oCs`%n_BzO*SRq;?caPHGTVo0FGjrTPr5|gez+rX~CiU~BOOK-#U&WE)0bK)BEe~W zF;=OD`*1K>vs`%)j7EJ&jwy zp#NGU#Q4$gLE$i{M{7K})sMdK4}*N`);Lz}Pit<3!pPlaIN%5OT-b!dnBp?@;jtE; z9s(gB%JHn;pI%K0hN9`^xDfp*tV0k?d02@lWBqB*zk%?|xe~3F0i@!6pL9YS+{j>_vBY^G(`$LC0RXAux0JR$L2Z3d6@kj^Od)xTJ{O9ekl6ByNDtsX(vOVr_ z51=`jfeZ-8AZ$H}8Ef^FFE3t#SKXrN+0uNg9f4SjDrbEKmvyp2JWBlmn zpio$QtO8GV^rOSg!7#MG5?>$iqYmGB{v2P0CzklpzkNf%x3CQk&gJ9BLSakSO8oZP zmvRn-!J^7p`x#l0{kPb1)LpVn9>^`$O0k?^XZ42$RZP|SoVFk^j% zWm_M*dpsIkYl>0q<3mHQ!~j|rVHJ;~Mz>f<@F>8YY9Bgn7zbHXTj9v(-gNkM9Q zW6r5Jby*P)XIV3II^LW5w@-kHd)Rlkmit`ZCxEueni z6X)ad8(KOrCIRNRD!_eiUSxVK9v<@$K>PGGFR8AQ*PsYm2%HUmEx#2>wfNkM%NN_R|i5qx0HgD)%cLx)B04 z(bcRy>mkz zww7c2v)& zz_&uAUs_sZuLEb+D^B0ZeJIbk7pYG^j_$0bX6`u}u#oTdJT2{?lL+fgTH)W^XCzf6 z!J-MRaQJ>t@@}69?yNx?-sDM3`MxjBDMU$%mI||Y%^F^WpQiH~WFHSB78K*f2U^<6 zEQ70?OR!6f7uE1OxP3}7E?e%!Jq0naXE9)Ntppdn^P=SwqoG%BYYfl! zrly^d&~gcn7h`YoJ`(|vj%~2>BQILS^K)X)3j8$Qiw>kjL&)7Sv^d~JR}V+Q*Ux1* z$jO_YzlnxEV_Dbn+>1us*@AHSlqV&9p-qFt}}BkEb?(!h9^DSmIMX6 z^6_Gw2U!{>!<4E5OzY=C;=9S<_nMz`Zx3>*PJt%YqYggqPBTMN;XLOdCkVrqajId8ob__h{N7! z=-i=nFd3c9UJV+uw@ruU#zg!$QbPf4(!ivR4tpnQ$S*h@c5K$+fs1My@GKp+1}33_ zxrR#CWq{ZCBs{f5&GpuFm@Q>~M}?a5Rq5a}H38?isOiu23^19Lh_Ur9^vE(3<}!!k zp|_eu!!qG(Lkf19p{8cTOc>snj2~{R=~{FqEKTFyLt72iKh6Mi)@rsMrlC#B4DgLk z#a;~>vivUtTw~I)>Wqf|am#?EtJ2Un%$3Rt(xF>;8je}(N~zz{;oYZnOdsY-^#?QH z_<;;uB66kAgEL{y?{ti4r=g_PnNY@B=#4TB4VUX7V{bZ&R;%fKJ3TbW_4uqtO@k)t zLBx5>=^<(YBRyDjNy9a{e9pC*kZqjGagmxxsZt!vt5j0a6va0GCz?D_D^FmD$<39 z9Zi8lDKR*^PDLxHrGSez8Vw&gQ$$WOT-p|iw+&RZp8NQo--*OnW=~J%p16&95m>t4 znbru2U~e6P`R*#pUZI14o#A-=mNVH`CqP|h7=EAQOoq8S*uE(Y8(f@uy-46*tx)X# z(1||(NPrQ`LNT@<^Sd(=!O1xsdu(%}%RxzSZEg!RcXpf51s)6j`_bc_ep ztYGdzX6ATJBD9VO?EcuEa-SqY^^H*6^UR*2c#KC~55ptOK7RE&5$+!fLG?7| z9na^UzF|T5%fp_=uZ)BKbpiNZ!kpO~G4Qs+pZ!(r$iXQFhE@3C_Mvt(V`m)nGz!20 zadx!ubv*R;3_#6TTe4?vPWEAce0tJ`);*5{@MIoqKN|`u(?R)LfBe9l$NSO*C?4a7 z9ZYQK7XQ|0TVM1AYqH-G4+ekv;*TP0I%}na%Bz03WQjFhbxDHIkU$(OvZ1)8NuX8- z;nI=JD*eRwt2hW}>ud?lQ((R_1kZZe(tEFD2wD@2*0XGBP@WDh>99LS{)6@ZHn`*LAd~0Uy&~=f4qnXsxaPP4WBfB|KrClbNn&|L&95dyYXTa8)cr^a#L@x3SxI6KG+!<%G7?}?H zr91fc1Ojg^|VSRNx`rdG+m&?*X$Ly!>-<)YeLOKjq#^b&$71@7J z1vh5XtjSf;k*YKpkQj%{PpGJ*J{{V%NWjX4D$;eyfHMmc@G_76ba5t}P0?YS<<3;$ zq=(?;iMU$rOq+)2!JK<`e*f)EUwURjU*|;p_p39tEYm|BA2$tA(Kg>q`20qP*E*`` z{*_Gdic7+0|EQ?rsSNnGUx!Zrsc6EQol7cSKGi5`Y6<$m*VE_8dR9-Ky`VzdR%job9##eKwa zvsASDZ5HHe(@-?gnOr+&f$7>5oYm8rB(f~;*qC5vklI)uHBlyzSZdH3Vdvx6g@%GN{cgK^kP%FoHgOb9y= zizPc9$ghgmreiT!S->3j;7nK|iovFr%=I3whrc?+p*GclI$YC3*Q|I^PsVoN94Ry_8%{c=V)7U#Ia6BTdD@rq1LuA{%xeOvAe$oLHNb4O!pPu~jc;YEzX3r=F+c>me%2 zoRS5vIA&Nm?6r@5}(7OR9yPPkw)yyhVI>&Z?)Kw=8evV_^4zwEpnu*G1*|o zjIAa1j@05!7TDM7aMdjbdNDf-{I(|GS>^`zT#yBp%q{8=?m#QLXMuG{JjP$Lrw^ou z9n5U%q-EZ{Iuo2%Fbl7V=dNUq8JHcgcL=lT2c|<{*9Z)2up?t>I+XNnfiEZ6k=wHr zm^?fT+c9^(*(nXYT7+YBsvT=c(%~j+BM)A%C5Kn(@VsL<=Ipm2zs;#I{8k7)Y{z`b z3(3&VIv5olY-rob6u3V*7+=3*=CVE=Bp*VtZ>=?zPELhkXM!nMI7vt`CyKPHAR=lKr8UVrqfn*Wd!rTytR1jwH1wc+yZ8N^g#EOR#aLX4u{Ac z#}rtRRdO)=>+OnBPF8exV<1=`(4c(272S6UfTh#a*fHITl7oEU?JyNmnH9C@!n&Z5 zPH4a0l46H>LZ^9-*o_&l`W0Sq?}Zb7Z*NI;n|vTBP=&=in72E^5Axf&Abz)`4_yM` z^CLA5xob({Rw3|epeuTuvZUylE#RTr10CO4GK)D9mKJ&9%up-3&U=B3iCR3vj8xgc zSlI0DjXTS&$gDXIR`&2g$JJJpQK^HOj(%7=*oq3R62R?&585!Fw3u0wYsYxw^S73y zZHR{YdM%>Tiae^K;Gcb-_~MKutM4P=(MS(ejk6?2W^}gy=!yf|TGHgDLGZDK2D=Qk zq@HX1p>l@{zL;l8M_I?aE?tFBb(SPOu7yQR(A>O9NoOkDL6XisC%2XK@st{*N9~xw zt)%l3XE+kfnoK)OdLCd8FLyDcJjjxU6k5Z;SSx&yVo8|=c2IxW3f&JX$=uf#R-Cs) zw+JP<+A2UiL4nh?N_wl8Lg{Nco{Lk`ysxIPd#*W-E>M!mBV(waE5q_;1=*{b1bgTf#r@jM4Fzg63?wBph36gqJLpbmin3 z!9Bqc&E_g7@Sq^f?_hx4|5MPwz6XWLE&hP#I|UtBzgPIv`4_yKr=VfqjtY{dKQLjK zg0{Uzp`W(_=6$oE&r#6E3PX5PC&5dG3fk2Ek5KwWjEyHO z$a{IS5O-IM|8=sUhRr{OH?<=446~p;!#@gr)|;WE!h%LCUJ2cMnPO&l3o`xrOemUe zf*w{D^uqg=(7DvOYcC0Y*9`F8SUDM8z9(G1&VH(cof}UID zGfFa{4p$y`ai6 z#Zk#}8Zq*@aMjcVyH?5xnT4GqHpT#joNC&$zw~)S%=45}??smdafJbT3g*rZq3in40C!l z=Y=T2O+x>9rZ|6zj2^H2Bixz8{$1Z?batC5ObQX>(@8QK<7f;&9+}~)*HY?J+$g;4 zZh{}PWc0fJqcHC;6TDm_qd_a)2wxM8F=3F5qU)XrrTkmdSIEe@`#s_C7Xyr}meHM{ zx5775V8t++d2uTck8{iV29mm|=&(QW|nr1mi=+xbA?I zmS&m3QcE!=X=QZnrwn{2OVD$ll#b_0m~Y5lubEP6?O+DO*t>6>sg#=a%mF`aiY=q1 zROt3YIN8SpoqOpNLiW=pxFSesQ=ikq$}Zob!$JvF z{e4;ZJ-Z1u6iLW7^sKPmpO1%2$a2Y5;YwZ;cs~=9!RX6^>hO0c?kcAC27-{$=?iOp z#MC_w1#tTUyJw22YHF=8(Bum&SBfdk{HPFh^b?%kW>m}n(aiEQoa$vpaVt&>(~>{Jp?PNX zWceu}=GjNE`DI4=dyfi6HydC@u!zo%IxGws`2o7D6Hzzk6T*hP23T~;j7FuQP&DE_ zR4L79a`3-Gf#pXyqA?@GfNR3zub*MCuNhr`en;58>npPx&FJm+dxEI<4~SEW=ymN= zLHG726!?h9ti^L-d-iV_H%UaYtcSwS;9oH9hKO41d>|aU_KWdKV$wf*BFsMh2W%IL zY4e~uA=d3TGLaNe3XQS#J&(Z^Rv`_y@X10-UtWY8RC`C68b6mDl9KC#`Z@gH1y0T zp)%eW|MHho&!As|@V5z$`XQn7uZ$q)t|^9{me9;gB3Pmq;mrjSihLx6os+~EaZ5r6 z>g4e4s024_q;xOa5S*r>%bYDycS%m2PTD~Gk?adyFQ?P5?YRb|L<+K?|9;uPj@Jr&($<0s$2&l2 zH|E;Rx1ce;Hqi7{fxhP~DC&S6>Tw#K-JvPo(((Q2`@VUDK7WU@P9(IRr%!Y_oDQVT;tO2`bi;I$!w4e1+ zHdb~x@~VPP2YEozSbO$XQqY;Q|7kWH@Y!+&d-!-mIP-2Eep1kzM?SEj$q5(cDoK0C z7yLdsW9o4w?K>L)GrziET7)HSUKb3FV>CF!(UKCvxE^Qejsu=3sdgLtq#gG_g|j8O zEQ*H3axD%><`}YX6!<^)z@mLhGTIOU-t*j<*{!5*R^f2V-3?bQQc|N`D3l%5pl7v` zTCv`;V;u8w)+uRVU;r4LP~prpCH23WKPy z1xbHPXNHYojDL0*rXKsU-7_pVk@_B{tEE@ltp zLIvd=a{~PuD@=W6LHhYBNIYYW8##uFw&ZJAV2i746m)ew>u^5VVZ~Pq>QvwjP2hkh zuJiNY=?Ax4IpMz77F6r*5BKeyF(gVs%W?zYl|+SiXDP^KA8XG2TsUv3p!a3L@Upua z8yu8mHam#5J!(8KOi3eb!$A8|gOU#lay%9e!G3O76`-WKqa)$j7I!QZDd`;7SZ6hR zU~ZO@7B|Jfhhi;`o35m7Veyc4*b6)G_srWD3#CK6a8Riwgac7kUiSo1%)!!ZuO}C(G zOAlyi%pS9a7SwXE8Xo%EVCoqQI?J>=GSe;AKVg)@A&vBF?43#uBaf_Ve2FzB$H zLI$c~=@@HVrm&!Sk*<)n!iH;w7WDI^8|3}8!N_lN8gN+yS+}e)f4!W{KDa;%?=>=W z`OvC&#PPH?XhQ4;Oq=Ws|~7n^7*z{8iA68KH3JtQvbKE9e5Vp?}^~qvomweft;zx@1=zueG4RLfJoX zuN$5{BB$cPvG7vmfz^2ybmwOr?CIl)o0nKn>%dr88Q_T{+9=4EbEoCIwWv@i=nH$b zjS2V0uC@xQElz^(V|_5Wn&bam&S~%W#e|MZdekxn-X{9v?GzVxsbIZN`X&wy!@L$SZeis~BE;Tz{sR}8nJezQ1FSQ>^V zH?63sIRiY(I7h9sCRI%a9O)g7hfY}2WX`9pu#Lc*gRJTJ-Aov77=aT%SW{fDEYLzE znryPBte<*#^G_r$)7VhiB+f~GZh-|oZK!p;9^MUz#M+-W^vg68X1{BJ#>Td^f^(rR zy}3tqfh}3x$bi6m5xCpfj{K7JVAnH>ePC?K>3tS>kB-4><7}zHPY;29%&cr@M{6Cj zU<&ge7i_g7FRyIqX%LT6TYH-RG#kdOPr$rfdy3a{9*OHgE+_0s%Q>QsMu|9ihCNMQ zmJKUz>F~l&d+Ju51Mk};Vf8tCYOc!$i-aW1jB=oLvvQ!t>15ns=0IM~Igrfk;QYZ3 zGZ~fMD2P*rM4a$=#c+kg@Civulg=reD?d?cy`TGY|uxH&) zM=D#A12vrQ8t&&rMoBp!EYHB*RZgtG%7FnZvhZ_%CpzCQ2NErF&|ov_P+z-_GI z@pPt|m)YR&l8YPLJ5#qo*9NoW; zxj1bW*LUV+fs*w(FIKp)A5IpGzs@~4Ctc{Tt9m&3R~DvrQB(h+e19iob03+SO5SIJ z+x09Q9;=~&lnFz>Wuje&)JRY|4M^@S>OJUy&2oyOM}q^vv5|D8-1UZ4(_$gnPtDn ztJ(~(nxBR4-CXJ3#B|unTKD6ZU1_vwIxJ@$`x9R`I=Cbaiht%})=)QUqfUcP?OWpW zlWrv8I^)EvtRFUWr@0qWU_)d9YI593c{&wtEN0EXKW@}zKpLzM;ogKoH>#4PL)!~^ zn9JUh_s6A!-H2S=f6SGx+hxG$yd1Ra;7UQ10cnZZSo23i3ph8so4LAi^EK4&PzKCs z$iej=G}K_80c4biJzKhxM~`&KpWhN^EOMoRC(_{F$5t5j%9W=5N`(<^3otLxjV9-& z@;EKRP5fW#BhuiLRUvymyHXhc$Kk9!6aVeX+O2fBa;+8G=v-+PU*~?ZeC&TyL-(CB zU@YJ3O-`<~XK4ncx6MQUXBukXGLw1nd`(7ZDB?>dxG&)z3Lg!#WAsoYXD%?QX{3Q3 zwz5{=y;)7~I%h)6Htzk2(9r2i8PK$}C04A{(95_C_`QI&Nh>v!pUL;dst7$^XqfGi z1`gW`@pg$T4O-20UPUn$@_)QGI0clfrSW^>N?X|fb8B1?s#)tbVn2Ie&MHKQweFNt znGEZj3-FHAgRHogx3+%~I+lBo_GcnYI$4NUk9p9(S30QvP>i#-dr9ejRVguxb` zWKx$1y$lPnrKcw?xS@ko_8RIm(3A8V65z4t4AynRxJ-h;IyY7@hKk!9%nN=rIzG_0?x zz*0vq8hbAqF636=)XiElnG*#U&R1eyot7S8B%FQ4eZ<*bblIA91tnFuTkJ)zvLaw^ zzbfoD(u=PA6Al}uR^vPeZz?nnhlc6ZxN4F&)%+a|7KPKNebXPxJ@Y$cef3XFIJN8$&%waVHM$Tb1EN_9;Ep6c0wM@hF?< zN%36Y{CTmMebGJXYfU_G^Da7uc+!En@i0fnI@sMF++&phueO%rij5vr*e?-ExZfe& z-GgezCV}w12o;~)X=GqB>>gE&-xA&Ft#L9uoLGv>C%KV(Z4w+D+8Xbty3y=U32-i_ z0tfzfqomR#5YH;brHyXPD$>ESyRFfDkvlUfbg+CuYdrATo$7MfJ9ldthLw2Gh;eby zdOi1O_wu0nU$HQ^RV5y6@SuK6VqnJUHaIEJlSW#{!X#0F5Imuzr&}S+VxdbYd08opC2)gLt?>ZBXXvPHE?KFmzWre%|3m z3X?=Ie8ZaXEH`?~zPP`g*t4SEmHMqof_S@f6#cKh{~!fY-f=H>7gtJmON0N06rP~fIaxDnI}T^^{(X}=yGN9AEi zD>b>jC@HJ_$~uHzZ9UsIW^U$X2847MHnO1(2JJoP{5k-fq5D__$3t{v?@iLe;489rD|&Dl?iuU3h_<3n#T6ag#7YCeDTJG9`ZR% zeVLD&cDT^HMm_ipY=v$6xzOQZSFu6=DF_;52(OV7mkBe87cVc}{E3J!qr-)%1(&9lhB@Y*sHdJ$aA@fpMkS;eeX_ z=BL4fo29tDKutY)o@^Rhf^GOZJX(_p~wb6`nh7G7X|!kTwns~V@r z6v2`3ehwI0WMa25j&y8C4%f}oabBV$wfmdnirh4O_0xfha&zG47xpzh=s{F4oNyJGP0I~$r) zlLb-DQP_^_{*QWP!`W`pc)IU(gK&mkNlRO&f&6g*-sAngiAO3N?BkDkML~BSC&LL7KdhLqpcj6rke=>` zM{Zisw$8~gZ=VmQUa_DF&56*eqc=X-XhBJ{bwCDQ7}VKrSP@ z(ssTWv{z1nQRyJO@WbxBPjTLy23xNC<2bHgIC--s$|VqI@gDF%6vy6kg7CpDu7jj; zty~;}H*J*^s?CI9vS3W@ry%6_To@OKJ**T|Z>{IrP!I-YT96s*npW2aVE1M@U3!=S ze}V$=+;TaUvo7f5bw6CyOHS_+(?FEvi>G4bWYReWysvpR=D^o&PD8(>A{Z_C4VGosFFK+D1c{O|Gb{meUuH2uO9*V7DQ1O8F}s+-IrrF6Vj5 zTk&3diVGg+>+@(^FdQ~fVe39}%FYUa3Cz^%%KOKsAALa8*#YY&@qW<23%rjo1BJiG zyOKR%SJ|S!ubkStc!2#?8$5l*oNCXyao@TPP99-Szvs9@*L-W-?_o}bH5%x)zzPG8 z%gD>Y1)i5%qI8FhOn<9k_#sQYpC=>t^D0=^p1FH685u8e;=O?|=LdqK|T&Wr&z+qdp3!iVU%=6X%d?UJ4&yHv{B~xd*LY zShMjDym=*}#<%Z;wQ>XOu~0-;rZouu2MloaFA*)u{2@#UFv8EDMARwAfcMeH7^e}_ zpn5}C_JC_!Z$%^>A%U-}m}{mM)9WD;SSbGK#qA4uM8CD7hq~eeRy1zh{Gs z_}LKm)WVgWw)l3CIn8V91ySwnu6~Ov%O)| za65EXo70sOesD(S!0aS*GU*fmLqi?Wq|%($l(Bx;z!@JInUfLgc=tST#$IdqJqJU< zT~OhAiJX+2^Xa2i<55dFb)!gFu~>uc%;ofhW1b6QH=Os>oKh~t!0S=27#VC%nXh;Z zo>F6IjX71^4TszPT`+O3Io-?*15v69D_ih;_JqTw`6^t^HK1o03JGb>c#ms9hib#% z7&B)ti)8E_8Uo3dPB_*_MvEMTs2=tnhSxTTI`5_H_51PLI9i??11xle7()# z-myP+xDaHtKhO(qjIqT&=Vheb?Fo_HnZ-GTYfSatFqGN5W&>nIFa5x=$R4|M?z-io zKpvY8*e63q-HCHq%;}hVPfFd=0^rRAd({1s(v8u+aM|CE^LR4K$?yWt{WiGRgU?N^ z1&8CDKfEBNRZ8wPYh{hvK2loN=m`T2tg(w!N-k=5`0pP}Tvsn4v#Az5Kw4=+hZlv@-^qupP1u6U&R#XZwJ>`%b3X}rgICdU{_};?!F_Y z81{a7)lPzAxTZ5yVgnzSNSXa4rm)v`aAu+mFXV`+^D;;HYdo|60>!kNRB+S60vA_` z$?LW=Trji16Q{+rWUm@p^iW`Ny_i15YM|`k$Q*~iNz^!1Q8IGEVr)6NolW3Poi^R4i2u6^wJ&l7C@t+0b2rY+C)2V0^w5r&@|B^05+lKEshOdCm!vL)knL zo+J^;$4KB;2(yhgiRg(V*ZW>DmvFp@z6~^jms5?=zpaR-8~+yczD77IM?@RlzY24@ z7~-LgBC7n^DD=N}B zr0+7v3u8po`j{HJq8uM^o$J9?o}<#uF_G(E({daj{<#!8d@`e8uD{F}AwkCrX4HOw zC4BA7tT8@^e}2h9^VJOLr5W8DE(OPlrg)UN{#DD~(Q*?ET4zRW<g+#YQNZVn*kk ze+v)ghM358H?N#;!hucAFfh@KDnech;Re4UjlaLe^tVFhwLdU0L`194Jr>N0f56`U zW^}jgvGD!jH<;FBN`sPL35%CBft2fR*GGL6{%-dhR;kQLTmD0cd-Ml(oirt^YY+@? z{)9to&AXvH;9!yr>~zw<&^ zwc#84WSP>|Q=8)S zax=Qt!vbQNYaBM(j24`;gc;^y+_m0}G-4a}Sm1TA#Eg!Pbb#BVrQ9!IMlO$>VeA+g zmPGJ(s(JnTYL1NsW@P(B4bR)iaUYn`XJdEXFIeE4duFsn$@-ik1zRDB=qUKW#t&9_ zn8!utFkdKdu*QoSVjkmO@Di+WeNQpRSH5tyBj?iph-v9F<_L_kMXQz)Y83f_E|FQo z+a;7e!v``B+TeT#DYbMB0HeNkxaF;cGTZyZ+c-OX+Db}`9D-o{VSDu8dS$QdK-jg! z9*yQp$>w@6=zcn2Lq93aOb>;1(N6g7sFZeWZUG;6IO7UWDV3fHgQ68qsMkyBrVs)Z zL5|qS^?K>&P#7@95tl5MkgrcLgc>+t$SDau@e70jwalrUDj^qp)-RdZV-3d%+x(bW zP~d<=swH&)ei)c-V1Bx*gf>VbKoaSU2RcYdGK~8oU#akqg@l%y#XxWiHGbrn;r4`h zIPy`0xA#i8-;K4(lhjyfC!wg$EYWF=8J)Z52h()SyFbXa^)rF+^|1|xUN)mKYlEPCvn_Uw7BT-l1hz7}sw>Z{ zp;yBp$j}jso{1)=BYAR){ZJ48xo)JPo&K5nR+A)&&5bReDNhI>D8ESjDKSBJY}mrW8HGcpMxez@Z* zTaK@6Q($hR2QEVibt_7NjLDu@7AB>Pqsh?R(-Y4xmC`HcG}sX6h1SKaofww_pGRu3 z!CXe3`;%bOFAwfxlCnN02_Coi#10iQT3DO{^WJN*>Wz%j8j_%FjVI>U$|#OsPdCtF zS5I@==gS)YWH0W8H>b#iB*-69QE?Davr$L16#O@knqwIcfB?zUAPX`%=W;h6&!%!~z^;ffafWt7zr1&h5jxcQlkx;=~p zc%{brR^}9A6#*5yUGN0QbqyBWM|R5vm#&r3@6af)4O8QPthagmgnI-!x#Ed*8P(Ut zgYRiKd^S`@7x;H~zjDWlNEyk##lz}hZkR5Wk=QH_LTy}e%q=NRHI0GM78)#(%jic= z6d2rb!H#^~KQsb%?N;Humr@EJ6$$<1E_iB~l%L6H@Yt{~i zjEB7oT(Nfu>suP)VS&;OaRuMI13K7cPEGxTF_PRH;l zDvEM~*dK|gU(J3{HjdDFj1Id#h@$sf>|x1z9X?EFKf^FPkRI0I%01Ea`m7Daoz>xc zml(Ry#~MCd(P97TF|^&s3i7Y&a6uFERevhM^PCRn_h8@e*-9`Pm4xxk%zb!Q0e24R zu-AiFidiCqe0v>6G0#0A+7>)nmp=4eG|k#z2kL+XG#ndE*;XFH_N(7PKRS`VTs$Du z4YJ0a8iw*+*}S=Io6>I9w36t+T^JzmsVetGe`iY|+Ofl`2dH zp_ivUo_Lr-X3tLwX`Sq`yfT&UMb`>B`yEiSH-+vUs1?B40q@LDCRy1z!D*lqrunfa z|MZJOL;%-nlT%4L_NwskjSJpo-~Is=H-v6A8k}C8N(=j47pDK#;E7wQv{-XjxYgi+ zSN=*P`xRFNIX`257g8zd>ILCMUlpD?mP+0)&kE)>PMEqem2!$s37cCw;>SO!baUw` zK_PX-_kZ(u9y%f{l-l8s-Kq3p?g3$Te;bUSn@Xu=dxU!rt#Ir+_U#WpE!frBV}FNa ziZ~?*)BD)ryq?Ka@b^)n|1}%zt52rM-0uH0(hjeGNFu|nr-hfR?a^-qd+aX);Xt!3 zMh;3M-P;=B$Z9L>wLg*SUepLJ2U%fJbRx|#*(M}#+-vhzM+@2KIcQ=4zGL3;Q#TR& z^#!0mdl7%hHG^XZ18^1lA!qMpKj(HKIJR3ny{R*UU5i8T-aY2po0!3y=OOIDp1?gX zrcfUjjGdwqsHTT89R3!Fzvd)R&x=NIuxAjiHPCTx$`~xYL$KaKM+=r1LcgM5?#0tl zudzm;R)ylPPdfVRgCUd;4n?o_iFB)rArzkr#p_r2obMaJCUqG5rY5mgvsoy;8HNVT z-I#X%x6mgh9CtBeBH^JaI6e=;{-@$8z_LUbeasNoY)hkVojM3TLXEM@*)&=^pqJp& z*90FJr<331EMYJiV90+NR228OP@@vz_C=Yr$9$5YauMUy`b_#BIZsYl#IA#5S*ixRWwSevoJ&@N`o#n#gXex1V_MM0@&jfVsRL$mQ*BzwFs z5JS3{eFoV3-AXBeTcTW?Rj;FUSrRyHmWyA9=t%g7kN?g=&SQ~5t`wp>WuvMtfs`kt zFu5Wdi+eEFV}J}^W@ckTb3E_+%%PBZ3Iz+|sb8ub`bgMMfIYE=APZQKbv%z;$zo%dN*#VpfIq&>P~v9>bFt|cU0ik z|KsSa!=h}y1`I49Aktle-J&Q+FSRTizzQO**a7BicXxMp7q(c;Ima#}Rgjbp1qo?> z^L_u#wbyJs&(6#FwKdY;TAjzG)DX%f!p<#bX}h^ioU~ z?=P_ULHg(y7eL96t}|yI!_ZtRrqJKFSf8Cnc-}OC97``Tt9E_dbu@s=`d?=|m?4g8 z3?M)0U1rv4j4U>Q3d-)V=X^f!E6AzeZ3wM9-4xpUs$84axIYvAUAYF~eZ2nMl++!`F+XtUB z?+i<{P?k`%7GoG|jV)gTxKkBb!3!I_-9tj>zQ1B3Pg@-1AtA@}ui3%gwrKu2fE*NW z*m6xj$Ly@bSW-Qe@F{Q-1B@{%1IX@$d=29S^PGj?==1-^+6pwEL}va|0j@qkeP z{o4%et%Ef>WQpm{A7bZD+29fWx_CRX?nA6`!8kGb6uo52&RJqJZ?|{GJ!6|4Eik1< zOdJ1u#?F7^{>{~5da@^p>8~=wNMkWg@Ar^ZZZyG@_5O7A@-4RP1CJZ2@u#Ua*V%wO z23XTeOf4%evsXLyF;pR@ZS&8w|3>Mdo0gbNW}jxuTe!P9%b&i5o@14uiAVeZiE4{B!4cgY{?uUhgnfKyiW7hP(;J%?Y>o?`zm4;!i4}~^dSZ#k-}}?tMZnbhTH+%I zf0CbPtkT&6&t!{8yZ>{xdWspU{uNQfrN_*f$L%M!is+m2eU@QmjPv;G1I!cIuplG! z^YQ1;!5i#(wE?ai=udZ!TxC;A^|4OwPlfj`u>c)??k(~sKkl<`P0-`4QGYtR@GATD zOdoX$MC7Y^o6X^|I@uOm^jSP1L@V07G z%kYL21xNVUUQx#uH3#63RbpCG^_NLJxEqC!OLIl_%yP8|3uIz?DX(XHpZH>fqnPB1 zMm9Fa7gxUX=jS_(?7XH3f9LpUkH^({n_Sn<$~n(=<2(^*TxezcID1x=_q#<0T3A_i09G}KsBzmrHe-SW@5K63 z8UL>9s{>GNyNKEjbg+FUoH1)7qMXfLOz*ZBcRlc;6a2mqNc|g!v%`~HK)fW7UU&~+KWhF#X1<&@4W7t6Zm3|txpJ~|naw)2 zRk7floO)gD&&sYffyUloatUx^eG^+@jj4jR( zbV_7jnK`Omkkii957~_hYn(nKkUj=JX3NAqQFJSi9#lMH1J3jOBefvf&YrUe1A5^s z45ahdU$Xxe_r{}2L9}AoV|HS_Erw1GBL62zYP%v-A;Mja2L;3tfYDCV!rg2<=lK6~3`gROgm$Rz1Lt9oUPbAJYs(e4kd zZ$p24t`$gEGoP{V%WP2Rh>Xfb&)Fth8`K&sqn}5fvI%8Y=#VF+VSkd?Gh-{%T`MJx zFQu%+%?ZEXl+f%krEE%~6Dq8vw0>$i%WofpS6)hpZ7*ZP<~rm2p;B6VsD!2W8-tRa zQu5tV%6yBRaneaCExcFE4xbr=h3!%b4=-V}qg?QDcNxvu{ENkzIivR+8A-dBuycQS zj;)W3UJNW^g5A!TP#~l5ZH3G%*9m{6$jD$`0dp6P!FfKs4g4-(N*&G^9U`X<^NLtq zfGd_&$!JF3LUsUL@llkV`aa8N!{S}=8OrJUm3)>bcEhH(a{4kRkFC;j#XSQ8$u~8Z zJt%O){i6fv^6wvPNvm{O9{Sx12@hK>&=i`q0c`kD)l zx)DsWr(fBWr*4?nUqJ_hQrOKy?$|9}LAsYev)?ry`0Ap9-Zgw-rG4G-`(*`f81a?0 zU3I~f1O?qlNo96xT~My7pvRRNY+9%bF76*pCU3LY@bNB~{V0fj-~7%d@$##HAgZp< zW`~NL@$=U}dZ_V@74m%Ny8nXcc=~sC^R*`)vIwGnIyr1fPftw08%WkZxh&(P2by~a zl3PeVlNfs-rOL@vvydt6a>t*O*1mM%b36%c+*!$d#V%MgQ9`M96|8;N7O)g?69w~F1K`cE`Mt&*Nb*0R{Oo%;;r8Kavgx$O7jpv%B)O@IjWv=qUfgfaaWpM$s?9O8woaD4PE0=k0 z_C@I#ImNuHVQ+i586(H*cdE{qDdx-zQ~osgy)MrJ94*|+c(`0{BS z_3rnQMeOQ}MHdt_e7`k2ZrcbZP2(wXOMfOD&@lox zc_(O8M3Ar7NOo>zJ6!7-Ny93gnQGrInCuiu4Mh%2Kdb{@E{&vRTL-aa16twZv`Bil zdkD+w-3B_JB5C8*QEbJ>4!#zOq&}hU>{y%<%C<&Q&B{?M(y|kd{*5Gq^X}~LCndb2 z6-9e|-I>H(83!$mqKgf_YQo!A8z6+B%SLl4yK+1M5(EbAXj-Np@J{$G^v{lQqu96X$9 ze^=)2fLNOC-j{V+DB%v}3AD$!7aL~X2{DPW-1XzYR`n6!R=o+7lI_7}ELKJ5IkBX2 zcO=_WCBTO56G&~%NM?(wIJ$NMHEncb(^b2nQPu>yI^UVCi|B?!y(W^WgBQy-*2Jj6 z6DiZejBV$+TI0^gQpFx4cDwu^EUb*7vF9w9_2p*h?-)ae?)PD8M_M6$YBc?s+=t<_ z7MRu?MO56Ib*pOzt({TS7Hq-FzBEG1+$g$PX2z6zG{Q9HD4q|c!%nx=fkjy)^~$tk z)A#*@xVw>*(ziF$7dL}i&nT+X8^RK2wZS^KC^~v&2;1b=4$>=86rVPP4f)d!{S2b1 zlQ}XyVwn;;`5 zoTiT$#Ez@AfX}LM@;Nbt#h15$N?ACqz3IRLRoY?diEujc`UwkN-W#9&8%xI&PuYIx zgD1rybYsUpwq08vgN?_L=vxEMm>Ngv9Y@&8RztiZ9!KUMmow1N#!*obG%e>T z`&c^^TMfdfT;~~6JR6P|dWDhEg{N%$g%M~vnvV(2kJ$Xr_BhsXJbhgEkdDOu{D?P4$EJvJAdPz9^5TJZ;r%)Sbm(M{7IOecp6_cOPH?n2@HoNkn5er!m-QW!;_E% zQkk<*h>A}Tvmt@T%$+V=r7IF-Di}I4fh2g}Q)|Bpj(ZhPvQy-_ z|B?WA_Ddjlr%RqS15{D}Sv(E9T<)33#}nO-cnV$C>^bmYGu-QuKzGNscskoQfhE8H zIr~~X!xi-~^iDj@6Ke`-UOn_ROQ5DeBVqR$wczWNzk)@(6@Uk z*rvtPQ%Qu-``Tw7HylqMpQOUSF<;^Q(s)`o-cxw_c^Z&cJSD|92;ceM1&^5v$WXRk zm>);5(jTvdFngI%FBHfmbW6ci?@R3;@{ihwt zmTWe{`Mi8%kn`Zok=SGFFYT;{0YC$%_RFw6|YOXUc)Zs#UxDZ5>|D-;cT@~d7)7lKj}N@ z7B8ZYr+*6z(|*9Xor`GF`D)?I*9izrpQT$pkq2kwtvL~9px z2?MsLL!j$onmxIPF|a*96_XKA3-nr0T)%$#=YfYV{?gH{H;yz~DJZBbQKxo2i%U+Na=nV+m;oUtls*z827r zpk6=QJU&^~LRjMrGQQm6u?7A@`M{a@Ng}0L0;ncCY^m>Y|aDu)vo_{=tj1HLzrI{+YEpZNg z9cL#L*9dT=)?6y8*B7dsQpJ#4b13_!To`NkkF!VT(v4YKthl<8-Ru4p-yJeyg#q;} z?eJHA&T7mqOs!*~lTy&?jDQu4DCgXVuekHQ7TeS75Bs$>6(2ZSvf_z+?`BadcPi+y zh%1dO%0CT1OYGRweM*o!G7W9BOxP8lcIMqJ9S@%E$I5;RAfi4ELnEwM&VFV1`Z^u0 zFAQe$-MYc9`{}ssksUkctOl+dGSGCpJ=6WJ1&0=7@SKzWY^Sm&DEnpN^q-@d`yCzl zGAt8|B7NCsOB3jpn~C4AjAV@^dNAZ}7QXWB&EBulg50fH*#F`Hc5#F*-1zSsu97%0 z#cLx7pZyKr4f0~Y_L{)V(^)v-R}d>4Zw2!mS54LXKC`!zdxB>)mQA* zvmyD@-Cvw9kczlViFqk1*~OSNOuVDc)K%+PgGD;_OwwkG)_+X%TRPrfV8G-NUCeJ^ z1}>ao%F=cT;N5~u6eb%n>uYKd_Bab)W|}kKBbuDc`3=)YShL2+9?(4eJN~&jm_5xm zfPbUDW6D!&7EgNM*YX{Yejm#6x0`@U&3BxRJ(*jc5fr@nf$xWDvnBg`fJ)L29G#=f zE??A#$cfo_#mRylN;iQ^PqJ~*t-&mJh9!5zX5*)!ec0!DR?ux&4yM@}u*w&v@b_E} zCM9UF`%(kAJR}EC-R??0uEl+UIzRE8xF*?QUk^~*lY;{mWhd7z)PV&Hf8vkc)yb2y z4Pjd2Puz6qb#nP!UAP^Yi%He5lS8%`afVtR>a6HU&X{BlR!ehn$*C{N`SUE{Wn@0) zw>2cMdD0UcYx8iZYff@t-Fq?! z7HSl5|5i)#6z3sO)1weu9gJDq+JO+Jmya(Mw#?PwthX&nqE->wjwh74wNd-MF6D+TEI*oK`u;|gzY6=Fl!NOqF*9Pf-M#CMxN^P>Pt9A$)S@;)$g*;*oUxtRkKF>fZDn|C_-6J& zvK5rm%Tcs&51YDnJJd&&qsEaPtT1#3cv@EA^PB^0Ui2PN8ef6vxrG@2h{>eZF#H1`l|PCpFUGpevLWFs4KeIJZW zslx4ftJ#B`{owMr8dt$~=3IXSE-BUE`9a56iurLK<6ez}ejZ?-y-q@iyaorIIL&|a zX_$4V8r@DEXTmvWz;;~?2KT$f{MMg?Q@^VDnbtX`diFf@yI+G^8*eb1+ZSP@MGYQP zzsf>VF2U%E8hp3%6vO8iz;M%V9J}lq8^81#jH~{Qxv|GsbnZpajrfDMqYg1y=OwVV zuSM^`lkA7pHSn2Mi#-SKW15y%;E7fp4jFibJsxud(%=5UI`<1~wCE2NFQ5FyAzx0goPxVxcA*{vT`scTy&uA< zSM`_}l*n8+KZaWGk<~>e9rhF!-)}_4#v^Rk zkH=uSya}gUpJg50pF#hVO;~mA0Bd>q1eQdV%|yEu4&=^>Fey<5rm(s zn(@`;%k0)S0_V#uIP(2-Hd^l;v=iifZbi6$gZ0XO z3;Q3m;`V)y**NPDFtVWq75yGCy~YnP?q@63S|YnT>Jw}TXu+OGpR@P+Um!%S4I7^E zdy@4L(y0w~Mkle~)n9;Bx8dTlSFC(QDr60BLz7*=5;W3ahe4PtY@WPy!t zC#DR1!roTH&#o;V?aibO0 zqrS4r73t7>St~vq_m17>^Z$&1R($o~Bl~Yp3hbQHg8sMCnfkRfus+g)w`DoZ{&gnA zeB$>xwTLOce~0est+?`AKHGZz2Q(D5qWH^CR<|k};-L)P(lnGeNH$`qXbntcx`f{Gu?WZ&-<+Z*=_1_r3mVa>xwckIHF3!+JTMR zR{=0tl{D?&u`!z};jDow9eVqY-K(jB70Xm*4+@RqFq|l-aImg6Vmx z+)e+R?e5nCO0B9CeWHb2aKQp@WV7)B%RMsq@gVa&OSe^USj9`dJ z1E*A}(TY+tP#vU&Df;R(WkOF_zn{CO3)Sf0zFzR&SO*WZtIbF5$c#J9TotGl28x^l&z+@%@~>;3Lw-3?5Ux_e(E0ozw%(ckti5 zzbEKBYGdGBHQFe$g56KFa7Tz51#U5eWt%kd%qd=Hx&iD=RmaIZ4!qS<7cNdx!vvuk z{ZZ2f)n)-Mwo;?s+%<2`W8lX(s*=H0HAr?+#>kJV6cDEZ4-o^Z31LnAfR7n@;{<6Momg#90C|+Ed6{ztqCyjRI=moVvrwb+GG? zfM-ioFrUlyka<8rS+9%Ojp9ELVJ4t~uElI>({EUFLxq-CRIzSFb+G)c3aQPkXNNyF zz^D=xdTjBRRorR>7%Sk{*vk4p`Uhjwcz;>Z!X|EO2GK$Rx&N(Yb2c@>^<)7JS8ZiY z?yXSOCLr}!f0#V#A0!V_r3?ptzCWlH{zz3R#Z3*2)Rb_)iYmqaQG=Opl<-BgDqrtw zf;rFE(Aus_-QBgJ{~iHn(Wuh>rMj@>pDJFMyt`w zgI3(PsD+IMs-*OzCoIYDj?>yzX+TFWkWTA?Kh1bM(dh@b{_0>oukY6|0IqG+!wlZW z23rh+HRgsG@6O}@KMe!*Tm!Uws!Ao+1EFYy9%`4W(%ezpKXs9N*m>WSOL{||MGp+W zq)I*fZQ&Wuw^Zqd#Os#Dh!~ySq&HRI-}m`Lf}?a z>@|arEr+#XlND#siBw6Fpb3-iE91?csz6pel~z^ zp=wy)OO*uIP2f|vZfNSHN>hKEL+d6DbQr5j1B^jGCI# z8xH4d<5YW95+3RYU#95b69w-hK?6ZpsEaL2_?Tlg1lCN^N6`sYT4OXEa@TX7l310} z^@czXC4KDSqDl_U1ECgmF}0g28He|WFn=BN%oEV&<9(p$u{K_NCZO6>JD6b89pm}9 z`Zdi4Uai-}Tk8abNfuB&lK;+p0jb8BLdgYn-11I9E2<6Qnz0%t^FA_oiymj!2~f6I zK+&1naI#$)-FO>o9x|1h9EvCkUPh=*@N|sO9G`wGIM$`bh)Ued+?! ze=4;0v^LD*`97iiSuk>&9vtaX!65?#)Z)%P=|_1kq>q56{xF48Bh>MJjDWVTvV^$> z-Eiq#0c}_61ItyrH#2f3W>? zOZmN1rhfda{K%YNFiu~YZfa(*uzf{v<*X7V6y~tHQzdZz34eCK{>9!MD~CyGN~H0m zkXcTvfEhl@RP`mFt#+-1-S?HL^;QKF23A9MtTGuqFJlM#)IiD?WxBMsjvXHI2M(-M zrp5FBur!TYsHjpVC~RVRb$_842{1%2X1m z4pPlFa8Oer<-P*g-|-I;3zg~kw=U+;(Ev+dD$|@l&1`}0Uzl=InO?qcWd?zD+~L9B zTciYk2QURE3#S`8n4-em{3=!56J|5Gs^uTt^RBJgpPrhAC5VFKrmOyA9Sb zCAyx|4f+UM;BS9rN^DYvr<0pty^=Crd7}*eo9dx|wi5L^-Ok2btp%OON~AWqo*B&f z4YgXzq&Qy1j_#;}>orOweO|--QY+!=3MI;lE@3YF%b;zd5{y^NUJ6+tTQp0jAOW_f8;=;r~OyznBjPKcr6TZ~4Q9Fv^RAdLL4z6dL5B>t}gm!#r zR?T{zE`TKacHDZrm`yvF3#XgfaQe{Mz5lu`nNchqd97rbhO)stDW; zw&9@t&8(NO2o5E;;*_yJ*=9hL@SilA^C43T-e3ihLR>M%4&wPM@qClNDEdUZ-!DoCED-a4JMpz zguzxyRCrqhf_)p|Yh)Mp_|hHpCN+cYtuFlbQ3no9ZiAu9N}L(453A2~LiR`{QvRR| zo&lZEc1?+78U|24mB#=SE75>JJ-EAB30KZgrY$9g;Kb~H9S{p6J0;-PUd2KE_xIaNabLt0y-Fsa$JT9Q|*N4KB$vj3hi`Ti%^QPMk z@OZU=PEH;P3P&S6HiXX`xu;J_ZiFjd3rOepDCl@>j3PBvdh*8sG!Gc#jg_jjYqujT zvNgpEZmLu#a)c=-OmXdJRXXoG2BOZJA@Mn9!WU=gt7UU}HVcqwM7Y#oKJKh|kr>&U1yRMk_p# zu1@9!?$GU)4IV2~=kax}U@+7gHDujr<$ia#murLVJePK}rYnq@!*h}NZ1U7bcZf9V ziCe#QBb6FYP`tFo>Z)$!$M^G&3G6Upq6W?G?G5i2^ul^24N|Z2f{X{fuwx<5SyuLi zSHt??aZ?SleeVN*6Z&B6HVvA{-GAn~z0voV1|7TX38yD;cH&nJT9@kyttEDx6{bmX z`CjmLb#I(KR+HMV`@pQ{eXyD5*4??X5 zVn?htE&L{elDt8+p4x1gyDp=VIE5`(VFwRe~V$^y%AXXOP8K{ zNJ0AA0oP5{rLLnA2;1a<9X2Dcl#h;Nbp7^m(BSj@@v@NiIg@uf%`< z93IDb!-!u0mcb7m^LDPth}O)N!OpjC_=z)T7GLDowbKJ;#x%_+ z5KMGA(rJe>~2ZYE9X4AK1gaX#a47<1VMD*)jO@vJJg=;y$=LvAF7&HQ^l(c$ONAKf-P3 zkG==QHO1o0FE;e-sRx8EiNWK2d(v0#MVhcb7WdAvrZJqcIoW?Aip;I4&DIN=K1TC< zVogRQV$8S8!0(C#ciVC2)IAv}_X)s+LNjtml)>2>{up=GjI#I2 zV7#*kGh)mrZlD~_wfm#%2<|7+mV?)l0Q6d5My;P@kl!ppzk6o%XoUyaKTy$&CISk-^eeGR#(% z_(^i8p#aPkm{HX=Is6p!xO(FJ%tvxiWQZ_l4QFpU2EwupVtnP!c~c&Nd_T+|Ul^Fu zwtIo_YQ8@Y0UrZFYmX2o?Kh$Zoj|}W4-CC+MDjQ}jP-TLGYgDpRIVIsue#%{ z5<{APJP;IpJn(0KL%LiX1f{+BSn!?`UJypi7!_7HKP3of?)j~Z`?c9h)zQg#F+Tvm3>CE z$Ae$jR3CiZWJI(21%vGyKWzEWh*I_jgP_O{b?OYM+vi}InD2**^@ilAssJeQ!xMUj z^wdQGrdfWNvDtw12P)u(i!TPuH{iL+3h?Ay(;^iEs!k3DbIvg-eLHNTFx2@s4?!kd@Q_mR}-q9ti0Dgb& zyW#4dx@2e*48av{n3Aqb*LMcN-_365|DPTWT^bB^(LDB>GrF$|f+6CgJ9cot$vnFt z$Qt2>9i@6?b|wgBuX9J?Abo0x4~D%XJu$OWkILGDVWhPXMUHwD`zaW%^z*{I%k}B{ z_F$N&CB*&{Igi&)0cE!QfBCCNdq*k2?Sl^<6YEo?rvf5&_+hGp0j17SfHaBci5%6Z zBcTeIpy!8LoYy^*mvx+cPuFb zRL9(=!%Gv8=9 zZnEO+WlipEY8Zx%IocFgB!(fYhw?F>yD+K)AlY#kew@U4@^Rb?wsi<5&ekTMr~o*i zF%%=}x^q?oXU!=M!!exW)c2GWDi+$K{X*``Xq3Y9rz6lwi!-IC%iu)gNUYn!d1BvX z5biz_DcrHzjGe`j;jjjDfYvpOWZYcQ~~$$eL25Kmj>)rKud%Ozb(-tk97(#zAeI^ zoFmN+DPZO}G0uCWN27V29Wi25=RTl+dlc~Duo%mg4ajkt0!mJZaojEgx~s2%pY{?o z?PEyyl=$cD5o6alLmKfV82T@gU@;$~4BqiJ7Uz!z_YKK?Z7`%R^2gkvMkLx61l{=f zGso1JY)gY+bwU8zlpE2CvqA9Ulo&<6#v~dX1W6AtudkHCjwz+s05cW6Vm4619Oz%=)tB`sTl}B zoQ>RRLj5~r@K;BU<1d@iXq1DVx&#Xjo6=qUa^7iAj zEf9Z6%_#J-6eLc;_;#Zijdqkm+yDhuRGHC}n-cEZRiIj^Ic*4(z&B|K4r?)^y>0=Z zc_D!ic57 z1$n`a2hmuXYejSJ3L#*5EZ%6bqKE-rkT5Y8tv6bcMu0aMpN_`U)2%3Zjt_h(iNxOA z>o<#^ohkN9V;U45wmlS#g2=XWW(K#Vzr6bXRsC75A}i3anU$; zg(Y2>?F(85BGEqDl3srDgQ|Vpr##w{ZdZsP&wV^@&$gh5_x|7%5{ApT)APO(=Q_rO zvS z;bXDzfEiu!m-2mk?t`{BqxJ$R_znz42OTrgnIVHER|2uh*RQC>7xc; zgRnqc-^Y|5ZViOjZ=`r_zX>J&fz7W> zX&FjjLu?4n&F5EQ-cG-7IOF*c-ZBW3k@KlJ;Np1grgV zSQKnY()(WU^w9*&-^YDK4tNeHQfA!4FPd zip1&MwHmb97m7zj;|L22>hY1!x07RVIhd1%wjW4MqVdi-b6UhX+eS4}7&e%f-T6A= zQVeDWaM#`*Us$v=2A$K)D6_;5Y`<_{`9m{$#`*KE_L2Bn&z!cmionT~f7dZH{=NP% zQ7sY^xv%q;jtCw-kHWj|X56_cf^PSs@Fc(glm7FE2`!vs%=>=&S}{!a49AsQOeuhK zU(bCHLv=6i=9?jbTO;|Lf3*o^6?5ME=n!1Xd8c;GoSV8*f#annbc2uo^*@5Jy55*3 zjShtW)&}BBYu+~A^ZBj19B0)S)3eDz;BiQb<0l$Z_@W?i8zn)uny*QJ1i^gHa`(Ava{Gt7A+%s!zDvv-|8E;JPCuI@aL-H>MM70^rDyaJ+A6Lf(o1_|40f zhfV0)5HT3mMqtE!6KYHHhpm4&YkDYedn-k-;7$~x#FW+-i{SBtD17pjbM@Ewfy3Gu z+*4yhOMdu)>z){tFEpXGQh$hGQ8+uygwnX1Sg$Dp`#YOZ$0aem?TWxrFO4bd7WX`k z2*}?gql! zb3u5A&t1QF@_D{PAij1sCVTr}IQv|NbHa_N@jx(0&PuS_+K7Vqy!w%W3`@|Ee)G95 zA@8T;i9r~9#E>$0-?y_<;KRp;^l*?2R$UCm1nxUnH9`(4rDJhXFn1j2 z%b~q$EXv*+an_9tVlRjCTw^0rv`FFBg-|?IX++X|35;DChF5nRk@mF!m?sS9&O2lJ z#Cgai-6PS;hu;&++}%ULl|x}FrpcpCw%2_7&ad^ zBsIQ9`}#5zrOOTJRRrI!s2hs|qYcS=T_B9=t-z7o-C(#O2yRZ|*Ir{lBb|dG>y{i( zEi@z{pToazmGXQ*Ly|NGLt2FtH)R`8mRtdA+$0#tdAzl26mVdW1iyJ2P~rgv?6#4h zHupyec%AfIDbBCp-kIsapx|7NTJDTcE((H8EWN^ zTB%2$H5E`=D#Zo=^l0+@U`T!{=gcd8D&X_~CA)+0zJosXx)=x>XDiSvn3u2db>$!h z7BuM7s?C8gXovzI5MS%@`yAFa7JnBQ(8*ykxStk^>pKmohq4rw-U>rcOG7&JFaSL6 zgyXgs2DDdQ3di4u;q)^GWbZGB-hm-#Fxh~XESJNXAtC6>@8O;R8Eo%14#U+Acpjw` zMihtPj@|~OnH>OolEd*ZcYG{*BnHO)^(Q9s`*}eOc`G9^B!~MbA95%7=jPmJywCgnx~|vrg}!UI)A>w!ZXe@a-;UT$^J?Wd zZ3(9TlrawcA2}}e_d3)WXF~>$<+!jb8?bl{(>IRGacS}!SSHA3dNCx+EihS!9U8V| zGneIKj$ezXhPKkP7j$&Dyqw1Ea5NONIq{iSe~F%XVRb8-b%Xc4@I z{Mh_FMA{lNqgPSnLTPSR9lIyb7^`Tg0u;JzL`VEKRsvn}x}^RUOAWcw#r;^`WFIvdE= z9Y!1R@m&L2%t><6@*DAflmWFaWK8J~8&Nl9Ii;PD;#O_9!Y8kc>D)^xuD#w0Uz)F= zMcPuF!;lpo&@iK_i&C72sx_T!daNMLHEUYq{QOlU^FxaBW#7$> zSwkM#Qk*(_HY4NLl5j8kn`xG~@1zC&H%ppJTwsCc^{i<(%aL^0W{G|?Eoqsu3}bRy z;=yW5@`;t<7P0lFd%Pu`GGNd6GB)o@u%c^4EC=VX1^#=(#$j7oE?<8G{(ZBFO#9gy zcFG3alDLTsFUxR#<1Nsrfz7FQv3w|z4JbWfGu;f5=DHcfeA}Nb6wY*jvi5Zt8nT51 zf@HXtxE5mrZOPw+Wr;pydfmotq{lL$whOMqjk|4WM34QiM{7|r%9h%Hv-_lG9X8c( zp)(=U+{)~ActP5RWZ3UIp|b&R@83+f?@4h#+52MfrZqVqW9MqJC8jdoe(zr?u9$uP z7P^r>Zjj>Q_HM+PH#RVCfD~7I#tLm2GsOFp6t|<@3O7}(AypeG?#Uc$e9^y(YL-fI zwo9#Xijq0=Tu5eKDnlAK$r1wP-U zN3(M!xTbTKxKT=v3>ZtfIKcv=H!q~cEVpsHfd!@q>XH%5VVv>V0#)DZQYGWfZe_ZP z${bdkxGT;D`CDQ|_X0X9F3#z(_qDO5E@l5?S$nTH;JOhV5Iu&K+Vo)aTph5Q9K+(Wllh&14p>W86YdR`*dBn@O6w z;+&PyYJ9`Zpw0`7f%(WBxkN46I*W04byngZme1AwN|ZBLYl_EAHR!Vs`z&mNdwkSs z|5;J)-eMD+YOhXvMnt%e+fCU$uR-q=7~j=oB^s4$QUuFG+%#a0OP^?wFsq}TW4SXi zH?(MXz6ck(ZY6rBX_EI(5w5__6bEHAs4$q-=~!;Xto7>T>LJ2KUNXT$M(X4x!Pub> zP4S(G21#g%aLavG;-x>DwAfUHyK`a{9>1zZ3-^g|AuQXd(M^jgT73qEVdpsH4735y;(MC~IIjY$$$o2HkVLH4FdCw8#+RW!+aE%NNa{?TMvCJ|Z zX*zUEfa{gj#?haQ)6RNG;!@{e;R4pnq$0q**)= z%S9QFn+uV#1wU8*S`jM;1;|f^pR0(QfRCd2>G5wq?(HK*JdFIrK(kztqcXOL3sSNl zA9r%K3I=W!qP`M7&dFE}jolfG_%ZwYnUirFW4>jvy8q+xD%htfNIO|gzi5XtHs|nD z&C4;C6Re0;SNMouVT^dw<#Dz4C=Og5qaz1o(O!25<)@8N-E1jT8SBIExudjMdK{i9 z=thkzqa?_9wx5o4GYx%&R{oI29OphZQ&$eoBE8i(-J*bupdDBw7!0lfQdh%6ixF?ie%PAVUy?R^T^YSxc$;s@Dzki&U% zdvS*y>(h>v#pADf@!_&zI+QGlq4M2$Gj5nR_=(}bnGTdPAEEZSB4`!D`fc)tX_~kY z&TVhP--m}O?7lEwb!cMQT0>;2DT?B^8d2)$Ahj5Y;A_=-yiz_ujx<2 z8y_YXR-*l`0UB>U2-y?LQG4A0J*pdqi+9SDmX26l+E-txHv zbZ>qcY;4cL%(i|~f13v#WtnX3?x(GlX<(d~hBa6E*%8H2(FjTl;wcH!c<%m+e_|8@tXfOP&ld|hsxMXVaLM3 z^+pUjc6O8DsTlC8jKfDuy6OJMpRgZ!Sf<>=^1$MOwS1z;fo_UU0(e_XczJaX8NN#d zHK{*%{%j8=oBW0!m47f~TQ3bS&VXYx|DsoD4|&Wjf@^z{@y19u-LcPxOB)g~iMlBq zN+JDn622YlBE3&}V1GUVeT%wCV0;S9*ZYm!gKpZpIvs3n;?eF~7deMyg5(^+caEL( z?;Y!VpNk0By66t`BP@)I#t+(Ebh-4;*`&i<>jMS&u>w1dcC25y@UE+B*W; zCrVLyQ6DM)7C@cT<*feE$NG!-QP8IhW3Tkm55~H@DpP{D5BAc5m7}2btq4^g_K?{J zA(jZ$GY!oL?vn9q8V zU2`8;E`%H70jIBTCo$&H=vR!x zz=3w+Klv9NdZRHashz|R5PVGff%~4c(@d7dyzAX}JeAl+YyZVT^388J^r(%T*8GG| zN5gT>{x;Hi{{{B1{DjZvwUM667dUS79`CGar5EA9V4O)9-o4jKm!%23cYMVo@vT&L zFcB_YjKrMoR^~rS1967ShRhzX6wt0t{< zc2y>n?fHS%*R~SnrNXPu2z=kzLa*}TVZn?qc&4+3yd&elTk11<@>*!U?^l?zI25Pt zX`z7`kudZ18(e*@ne}o0g3EF5@NaZ8J^Bx!H18uWYip*2X$i3K?q{t3&`b_I4tC%B zfHhN_>3wl5thx}2KUSDK-DenaeTCaCo9V#l2iU3q42!olk%z)t zIGGxZq}xQrX76BYpxPf8)_;#?woUZBKACZ)KH)XC|9@kdu;fZO%7izO z-MkFQJ@^$>Up3Q0w^Hc6{uB4SZl=Aq1@PqEHx$TfqL!^i@M_mrED~>`jVcvT5E+Sv zN=@`;dL1aV{=~QQnyA6L8r-^~@Q7?PP0wfs7ljx!*xE!(OdG+&G8RqNG*e1;E364c z{4uYEs~ALZOYLyh zjxjFS=NZ#G!C#MuA-9^yfv*S7KaazzkBzh{rw#r){0k*dHGd(k{Lj}L6`VbE!H&EuXH*ojOBWyElpyyd(@ZKi?r+C#rQIvhxGc^~|K7B$>jYdj5R0@G>!*I{p25R1%59?=q zM75m_Wa*g={1I<))S;fv9Z7?w-$Kw{y`K1k5%`xq$B#GaX@>JJcroz_Hg2nD47=}e zMddM$n^sRT4|wp!;W186sU@XC-C;fT@;tBr`7x+;8S)B#~am>y2wMA((a8nZ`Khn`Zj!I9@0NI zYw6+*Z`f#e4Lg!*DWSmwt{%RMcTd!kfz5gNB=*t7(d@8PpVP#ini5w7S<4@&;|N*{q5NYPW!V z+)j+lucE=nC&BGM2Mo`uB5fTH5V?IGL8pe4XI+JrnHTZ5bS?AW-2g7g6-OV|(6aTu z(7e+fU#Znl@ajO2SMb8v)EW|B`vm-5Zeo>PE$!%k4Sl&jn8o&Y^7{@CG9KW>;2IJh z{R(&Vd{M`umOeH90*e|ytjnvRGL2|Z-QS! zJS!6>2ff1OtLmuhT^?L}^9HNV*D=n13H1JbhdS@;$Wyrx;v(MTf?M^p|6nx?>9 zOY7+>^V%fL|BClkHqe$oP0$VzD9WoRjfgflB=-|^b1?O8>oGKKLo6c z!3n9Rna-U0ASLsp+|q!SPLP$4EBLz#!yl{W&r*yno(nn>)R02X{r zz{Ivj+7QBr-`Jc)C#Q)b<3?cd@dUIDZ>GU5{P@)~32lU1X!!LQxJD%5n!hb%T;2~G z#r~qQT`Lv3_d%{s68dYi_tBRT@YGGkg}d5l^TQ#qo0f(p2JN&iix00GWTM2WcKX8l zt34)VpvucOis2K)p2&1Olh#U~cJSfGfE0Y{)Jik|6U2I}RMfxPLRW=_F}XAyaj=CP z_j)PoGow2Y@1Ys zSN3(%Hdj8pbSn!tE$N^nYjNBmQ;L6Ml@(5)xFQgLty*kOdR1S~U)ZlIQdE+G+ z{Ku=tH}kqE+J8K5n_G`*nq8!9FOBcF)ZpaCE@~8&!;W|LxNdScwewFvuP04tezc1c zuE?WUV-v<~?k2KP#PF(CZ2izhKFSlZbaorAVe`xb+s5PbEzQUovN^591myhM(CJ(c z9rKY!N4rL}_U|RmT7mgo+fid*FI7#H!x^kE{g^}_U6)kA^l2T~y|$0u{7}XQ=I4sf z?j_$U6+C)-06UiV(dmGR$g)yU$gH2bnCIwqZa-!k^wX8O6LHh>UVJisfQ(tr(Mrbw zJUwH8hObV*@Y#Jht7?GyMU_x%#vp164N}s@NhmHgf;~Ee|NnPBe;h%r+Ce(^dNQ7E z9Ycp}gQR?04F^~A)AYeXl0C1EkuL<;_&P+HY^|-?E<_5uhsk5|G(3AugnGV@(3wS3 zQE*s@M5RYrkGK{N@^a`ZKWk4t;F z2ou7`)1?o5+`0LB__kG^u7~n-c5U;~&X8r9jThj?-($J+r{&4qOMvrRJRdce$tRyl1k#ux$kiRuN9RmM zy2kua1uW~9H)j$Z%NFGJ{aB9HuT)4~f%UPoyotnFs#M6fzrSmOd%vsE8v*9Ivo*yM zD|ITECB*GxT9Bp5RGPs2wjTsm;Ip5Mv+5(r#qKvoBW+cxVj52N21CqxuR?c%1UdI$ z)&s9IiE8%L%i>tofm z2~--$$IZU3kFkRj$iJJ9li?ZQ_*zA>)aU1PMwg?S{3Oy66X3jjSuee#3fW9&K22{U zEN)PtpcLl$sxZdI(^ctgtpKNbdIf5QsnO#Jf}HcHDLOLU?3*$3ARJ$bO9ZA;-T|gT z^{l`%57a1SzW}#*l?i_6V_aDa0Zt`n1)7ekQidx(r>$s?x6GJ^_LHA0ooJ3DLR0DB z7$5igvl+SuOd)TkJ3Z4d#W~_?)KJF98M&I^*Q=B1&lf(fn`Iey%~c_{PImu<8==!o z6`H?`pWD2|5Szo5DTUbfA|rGgokRz&@o~$pnBWAf$>hnrBo`-{Vl2n5%QQajJlnop zb23?f93zz`BaBO%MAZs>93w`d@HJ&}+r)eyzRR$FnG$KRdzEi+DOx8?B#+&E+#+Xv zJh^@X+0WzSmc}hcHI}D#fq6;RYU&|N3ZNgR%(tSl5RW*?(MdZ#?#E|coVrYw2Bz?F zBW*f3w@{ikrHzrCj5dC>lOn@CV^pm-7k76`kYn>GjXY+aV!3g&efb#0e3*rfzs2b< z)21|)X5ft;Q5tuc`RgBO;kCCSBvm&|ZChsI#ff69uV9!~4$a1l^URaDWSG)k&BdV9 zakT6EFkN}VviX?rcESs1cSiX5Br@G0F`#L8opNa?Kf~ z`x2(8by1bnb;sy&xEY2mn?fP%JT!)wVZhcYG`gIR%Nk}nc9uFl+r`IK=B>nI!Rqvw z`G#_qGM|Ep2Kly*k!++nT6;}p^MX+-315ld7_0xm{83uuZHo54ROz)m+y2!ApR?!v z3F9YZus-Sx#^l$%I7+3r4RNQcGL>|W(v+-axG-IjtdERQ+Y_gj`ZZel)>W|d*e_-Tr_SO!7gry(*p zXoBV6Cs9-O5REJ|#y|I!Y1hnQnxJZgC*CSi?mOn&da@k*Z4@b|mHqv5%kaneiFC$! zn2p5-7#^iSyXA)IhzuJa)a6O#(lEVd_izInC;#w|(h+q%#&&b?X{Nz?h6PEyb%-KPXyO!k zA^I*eM9m8{(9&CgLW>5-<@ywSZ@^Cv)d%UsJyk4vG=@H(+56X01&`bu#`K*7WU+;1 zWiA-TT(^E|xT1!fCF61B_0#=p>bPHvpLk{iw8TLZg?t3as;Zy#RJE|SRgi=o21qt> zI+j}s)7IJnQqR}IDO-do9|!4$(@Zq@B0{t52gzy5Y<$Sxvp!5aJ@jxcPIqD+F1JD2 ztj2P?vc^&5&>$WEtb+@*CF#rgA*!9T0GleMNNC0oX{^`9a+dq4V>d`&3bpZi@i;P? zHb`b^I+z+Yj%rdFhh+aeoWL^jHoP04^Xyr!lM|z#!h?)uITPoE2-6>l0s7K86Azyd zrbgp_+VpT5e!VY1nL_;}|8^=)QQ;>Ahkn}lVG8ms8^e18ePk7?idR<-qb1Wh9aI=6 z$&L9>!+R-Tcq%5@kKx9NedJ!KfqSR(lbL59i6m*E&Km);*X*N0`x&SvDn!no`slp! zEEJCrA}hB4mlJbvL6!)uF6^T@jTVh|S3|Vz$MWahl^p; z5_%-JVn$g98M{tq9;i-K((RZF5w8u;T3W9rIx(z4xJIO!*wXMSg& zK?}7X@R8@$Zko4G3!kmxr>jqUC}-zPbn6zNg=>4LO?Wo8Fm}Xz*DgvOo`FW<{A6z1 zMU*fTiy5O}rX@R0n1dtAf~5bplPv4!pskV+{bsuEh5p&-e@BR%_BJ^`)FvUE)I6GtWU=35tmztdvzr# zeOn*>uwQ^FYa}U%v3CT1=;8yG9sFgapROq`#8qFUNXmtAcpUUFMpTyM9S3Qn#X_tZ zmZmGuhUoLV1&l=@O}|bKQ}04OJmDwHdbWpXiT@H-S7P~qBaAH*vlvaY<;bIDh!o28 zF!;V4bvF!?d*%YfRjgiSFhVnb=_75Hr_mQfq#9{}9nA`4XEH^Q^as6lCvW^G!`GPq@F8{-j$uza*AQ5jm! z))&j)EyV93Qgq^TKWQ#rgmP@WU0c#eKGJ%4mA#igHujRa&qCZPEJ@h`y_D0y=F-9v zWZBq5AD_<0PeI}&zoVC|_v)aSoftK=vU}i|4(imgyd<3->ffr1ee1-?Due0vcG~E# zEJCggUG(&}4mJvkP-|Q#Etb^5yUM~O)7?QbZgVhez5rdn+d;eZXW>cajji0+LG4A; zaktATUKwS2z68tla~{H70UdPLToYfo^yB>b9ppS$4JR=UjQEBQnvkM`(9(+U``T$5 zTZ`F5HsPBG?R0paA`We5v+9`Ns5TA9>85TZIQ?+NtYEjubpd4de z+Q@K70S(_&q4xAPDn88WX!Yf&8`Mg3Z_DDVo>KhY(n=o|$e^5AG5)u+l}@jd#A!PU zkPB%gnLaUGd?^<S++ zoba_6J)btSd4dc+_*1}gSer>lTM}P1=HifU3-xA*p+H9#M)|hTr+yJES(<_NlUt}> zOc-m=rQ-7E&E&y+-?A53%}ckL{%sS&JI|6(c}EisrwC(KWD+WQG?HbtAR01V#b2(G zCaMVFyeIMK{IY?%v{*gD9TV3>!}CTwlGX`ucPQcRp31HBT7!LBSD>iaBloN zgq&IuX)6S+`q!8jSWD}dvHV%Uv`(4|^>&Q`@4{g=raJNJ~sW-Chv$co@Oe1an zCWs|hna-S8Pxf0_hT81}w$^Q+J|R&oxyR~d;SChP^1`&fr=kYaT{mQo!$}4iIOf?% zLLMS0_c#@A{cfTJXEE%t&%pTQ&7`({9L}GejpC8bq!h&Xh%LFSmfuV&;_UvJUx1;FU-I<6w8s*r*_HjC)j7o7;`2I7i9VD>)K81hS zF_mfWQzzh5lM)n+Ya|uMV(eX6gvCtrmmHMEkidM@A8e#y8yOV(nupJr=6^R@3Mc92 zVE?!#T4yhTyx}Y?t!yGI{&AQRnSl*^nrM%sH16M=jWpUov)Mh#zas-PzcmoALmc1! z$A0@3rd_{~L_LpmbT6+bnb2|A9GikSgX(Fmju>NoCEmks-bY%CU{@@0Tp-EP*7zJ-1iQ}-ibBT`lcMr^j@PR z(~x~ul)z<;ml$=SnvOZ;!neoI@IX~Hc}+`)Z;PMeyIVE%Iw&1RY=dzZubM7Q=U`We zKjX#K&?B!{mId|@(-mvz@AV(>LF7IrWL49E>?c?+?1T4>s;Ra6HCR9QMp3rir~Mhs zD7t|ujy3e``ct^%aUFw7n2zoG78<{LVRUB|wYG#oMv6DSva6yX??^CMa2r#9RMF+S zIOr4dMLDK*^SdTMvv>ereP7M;mQo<2FaX1Zs>!@8AA|~?Vvu+>Ek9lcGhaN%HLI$K zWU`_5Z6HRZRgxVgL$>=Pbe&#B;q%kL)a((e9IqtN-xt?PRM9He-vGRan2=IM z24VndAMc}8P!&xziUupOJGgsc70pQg1}<~F(c7hx9G8B8c8lwHuBnoac?LnMx*O(u zRngh!x8Q)|WxVmNnr!Y~hc6nZ@swaS{Smki>+W5|c}Z0y@!JnXV$WkqLM2_9@BmD= zpT;c*Dyj0O4~%ffvF=zUX(_wGmf#~eZ(9|;5xWGT3HCTxR7oX!uES%6!g*oNnGDo7&e0vvYV zhV>ogbT{Gvc!h03v5gg!e0ePl7_3D-*9uZ}GlvGDl~@~HPCnC&z?|jU_AM-@-+_xk zVMHJIfBr}JrFB5(@; zsw!OrrS68c5pIT9W6QR3y8r$#)GKVj z{=$DW?ZA0By3`W)$o->p2lm0ahpX``Q`e!(_%d3M>Isg_qh%OYN=#>A6Mbp0b2}g z{zsM89uQc)6Ge}gQ&qzaP+zwbP2B%cS-3wa?>Kk874zlAwDE`0_tQo%9N}Hq3(Mv5&CUrGgZO zbK%L|KolRYphE_QV7@yTZ(ge;PoEN~PG&Xb)Czi-PyiRt2I3B_3R2yg3;X>aVbaHP zI<=0i63Tq>he!o&>q>-E8u!t0Zv_o6V5fB79kh(7ptDY~uzb%=oF!2~Pa1xJq{wxA zzNehNPY#0ycKlKf<-}hX3d{P=3Aiw}xlEGKXO-*9=;9X!IGsh*Qb z@aFzqG_@|L2Ych;`I(z+%=||eYh$4nJyDun$5mqAKyoXS1F~G z7jHpH%Ml-cDW$6!!Jwyj5c}FoNpSQLRF>|=#Z*dhp7-Hd=nkA0TS}Ww+=k;RThL;4 zDGeU=hMQ&^u`IuYCWN^`67#=#E-j@Yr_=Co{VMDUC?%(^Bd{sn1oyN5m5{j)OjayI z55E#RzWNkMXqw=HWhKP(xd_+pnIm6J2^|seg!>=X;w$?S8hw2Wpv)4V373%BB3~#d z--3ha=2rG7AT*?yam--A%icaV{u7pA?zCp*_^LWF%gc|lm z0pEXac=SUlHH-kv?eavk+)`4nWL8J#8z^zGjP3*{fbLQsw5cv5Fir+e;tn3${Er^^ zr@`9NduYd=U)8EiDEaP-oAk>`WHb+27y02Vi+|*~uo!;o2jV-!a(XII0qgpoptDj1 z&6lWzZLUGsJ@X$O@c0KCE(D+i8)rfvF}A19BV4z*jBbXN!1pvi^f|_k=Ug6C3_U;_ zw$FyCc~Iu!i+labXhlRC1kAjP)@*E%5BUoZOnmUglrn0G`~%x_ZlL(XQX2Ov9_%Bo z^)NTt1^5(N1p<+__ zYzIr3#=7cd5yg*efH;ZS7~@++OWXC}r1(^%o1c2KrNcZSWD)r+34+8e+i|5>G0Vsdfv@)V=r*mG`mTL| zLZ>5`jzzRe?hDw*pTz&{i%9xrBrN`O7L$Gz(GvA&F#mN4R|yo8(Lx^hk6cB|8SEV1 zAy{W{4PDr|(qp#VOYc1Jn?VUJ-*2}p#mNV^vwN@oYzch&#qPHW zC8V^n8g2vyVDpR;y4zF@(X3CyWmPfRPiOab!$VwESVW42#lSOtfEQO6Q@n2;486XK zBGJXPCOr%CB5&b^wZ-J#kOo%hjeknn{yYByzpfWPI9W`x?~@?w*>%iyDk9-$@!&H3 z8oqKaqBDCE!F|66($_-99^yba#0{g_wFsEWgBIQuT(Y%@-aLzjMNJp5Otpw!Okue^ z24_&DlI<`16^?YDz>3g9N_O}JdzFr$e0?G57QY40NP8U7E27TLPeJVUHpYu7qCKJk zpr2%oSDFe*eDoe{VqTqru|f)Ac{)#w*I??wLJC##f~Cr)Sm0MkZIvEiJ8X!1dKp{( z&qY|-yaX-g6w-^9a}e}>A$oWgkcHA=a4esP(;^CJz<&qK(wT`T;tS~LgRO8@Wg0q< z$UPJFlaM8n68duM)`Cue>o&BRK{AB0(#bG4&kRJ z;W?XpYS_3NChBY8n0+4ER33$!zh>Z5{XA-TvKKtZsiR*-4$VBb70&CcpzX#SlCWP7 zk=he+w@nUhwXgw?L?xW~Fq>LlSi_v;37ArxMShRhKzp4m{p5)9{tV@;w6y# zl1|1`HiGajR!1M7PJK0o(7Hebw;82T{zGlxo#w-Z8`9`W_zcKAGz9ZJQ|W%=MDVa^ zhx&k2df+Mo*R^V(?_(-W*wf5YEGdLnluEyN#XOzL9QYHIM!$+0dFLk;!=4@KbYH80 zcgTTd9L~$2I}?8M9HKKpaU_GLPsrvqEh>PXs7#Vt+R8gqUjv_~X4Ae813a75W(aD` zrU4QFOWkfb`yz+F`G|p6?GQZMoJ-U8jqo0*^+U3B9?AF%K`4&F-k*77(I*bEe+6;D z-h7f|Szv!q6#ZliD9~C4eAFaRzo>v>&W`YcSBT9R!L^>N~8-Ok3+*xS7A9m4p1c_}S9{DNosMhM-lODN!7 zBu_0;5HB4qrXP>)@ZMY+g{A4m6gJ}}Z{X!HRM!p^s9`r!v zq7vHh{4`Hy9lLhlOQ`+DG+t0bAKaN-%KH1)^6XFW|F{-! z-kC<&`mLC>Z*1V@*wusC?;_e1(Hmzw>mNifC}z6ex8G3s$zSAT=^y+T^)Tx1k=;0vhd6|%nkK%>+p zVc^tNK(YZLhHuY*g&X<>1hbdNE#HeUzO;ZuHdn=EiX_8&D4?5zOL@j#Iq?2+0m+zI z@e;L5VUKPh&F^yO&15XjFIok(O4f;&UziJr4(HR?NG)D*NHS==%%`NbfVdZL;sBEK z8Sj0MQPYaIkZhYzcONtw#SMhOpB)7>=aZaqk!Ub@zsaWqyI&ffIQa$~ZSv@RpSH37 zRbLSA$|EbK0VA#Ghp?kAm#*cnGoGR510s5P^x&PcvDok}m_H+zo>m<)Hkp47zMae^ zp|^{T6TuUH+U3yTGB4wyd1qN~ZVsszS{vUkcY$*DEEj#fYuq<{7;bRclq2nEZ1~9$ zD&w>0j=HAtvP4%gySE_}qPOSL=8h9_m7-rDpFfXYZS{_o@Ct*irFkUH9}&0zLlj(m zmq%*Ls^iwXB1mn_r{6hKc!`Gb@ZZZkT6MsV7d$Bq(jVv1ltc^Ol4XD3>EB$cjS}IB z=Kq3|#kpiBmlHQB<{Nxwzg^jH5%1jAIF?bAOSkSR@n-%04$W3MG~eM#%%`3g5dSHM z^2<%*^czFqTx>S2;>O24U-A@`4YHVK{>iAh>=ryfnneRC^+uZ#gLC6&78EEmbV{q;RjXY06Ph5Xq!W-a=!!-Dlu~S_ad- zy^a1>+yt-43<`KZ#pv7EJ@CAiN#9pKk9oVv4^F(vAmx}0!&CF_fX$an?delJ#hoaLSTASI?c#X z;@u2;59`lo&_wq=yh8s-@VS{m_U)#;eapk3`gJNbXg&3~!HyzRWEmQSE0lSbhO zZt-|(zo0oOjSil_!Bf8W6TS+j(Q(~7Jmah=I3kluC3lYUo*n!O9|Mxf%}tXxV+!lv z{g_Pr>q6r)jf3Fm&ty`T_l>>Bvii16OQCMtV51ZH*Wl316mmU%FXkujE;ye_CdHAx zaa{raus1V_D&6^cr|n-tb4e0ywp+vdap@EMNlhY0T_4_W$7smsCDD*w0PlEpEI3|G zrW(h0Jhw$0%gs$8agS(TPmR0n;fOfVO@U(Ucu=P$MefgZoyEG<%y`DuRe&-vn zPh$ua_=||jZ}VhgI>2^s5z8Jv!;_s|2d`5L$u0FRFIj)1TXi^M@W&#qL9C{d7Li~ zl9xBnVShYi9M2|mYk%Hd$7C3uol55aU-lozD z=rYfv@AruJJ-Pv6JM!r8t5n|Q-yN_&FrSRHGISr&_LzsnP>LujhVB<{Nn@5Q_yu$hfN z-T$ue?!Ep6ZJL>s*5}LP-ve;WI)lu~kGJh64;*i$(}=KC9N)7bIOC8>4SJs7eR3wA zQ%|MA)we(|Tn7t8Qb}>SCj@5C#J+tg^Jojqjnv7JESbQI@$1Gwj@>D9fzYoi{ z>EWgKX=JX4E#_@cUMb$1(z$NoPp1v0owC@*r;Bl1E-?AK_@^etZ#5DN(RF@C@c2C}3GI(Qx0zne|&1 z(l2)&ghsibxkDjo?)(iV^=>$-Tu93gCcvp#?ijkQfDXMQm~`d}Zhun1a!ljEdizEE z;>t3u{Nmtck28AT&nLU>92l6nqFix4y?&SozA} z;Tbj$p_4yBcZL&w{FzT9Y~Hla@Catd9+T zpU3b|WG+Rl{0er@?Q!=!mUou(4OXfiK;2_GWK$ajuX~T-!O|Rh))oWwW^R3ZZ8GU5p(l zq~j9{KxyY)+|Jgj!DD4$EcO81UlvkuNinEhyo(N6g(PBL0u*@%rIr=Y+rBJt$n!?8 zafP&HVJ6{3o6ItKBP!35g;lM8I9R5(uA@{I& zuuyTvD`MFczLxn5);rNAd1JHmwzmfUbsp%+r)jzs`RGFZG=m5S7g` z=3YbU6D#De%c3m)x3F5y8Yie`(Sc=QAnv~t?|;gox%a+-kER{Y9+yR*0)9f6)j_;B zEsNZoqu~l2!FZO1SDVL!<28<0m7GO}mK@AKbcWTEvdCmY9PmnyW8kDLvSx8UzKKpa zwu#M=bOF8up2VM5GU(L!KX9k*9M1A#bD>p9(E0Q-9^H~j6{@-5cG445f-=cqWe$j? zdf@b|3`z*kf*pUZVbr(`>e*iiG>vJSY&LK9x)g^R0)rBM)#&QYIN~Y6J;aUo42pARnP7IHdd#->|uvMQI(lDLg zvz{`AJBtI|kKiTMax-0{STG~(U<3sy%iVaU&P zk`sxCAmuZ-Ehe4hW8$Fx!f_n@m`=j&(IBLD7`HoRknev#;E&t^TxF6;L-A~`m%a~Y z?8+c<_IwqL>_&;HndBA_4u5@j;>Q&kbi?u!VAWREmzF`*EgwLEv&Bi2NeMQga4^~$ z<&*u^vdsqF)iX%9`7_9kZo|kU=_EZl0<=!F$emnx06ul@us z$82$_e;P%kzJu-eHldbfI+ebE1Ck3jBEJxuqXvaQwD<8U=4AmbK@EJsoM3xIY1G-OuCL5WDXGN!L%#gksNkJhJkIbRcCq7EDTEoA8ZN^_q)Q3sN{mOC~M5 zx)`IDr|{C_9cLV1A75RbL zpCmi0?bz>=LRDByQa57I}+KxQw=)=93BhI(#hYFWs>}^!!RBH zjsaaur2eso5Gp73-{xFNIN?PqEI@f}ECl+5-!KT5O4Y(?;{WOh<~Cylh& z1ekNE zm;8H8x;HWsLtm!wg5^cYWOK0S|4-rJ@8_k0Yk@GYOy)bStI`cC!7r;z=D_~fq^$jd zowp>3l_r;^BL-n`6le96F6Sh>7JsyACv$hrDJebL8`qI6^gYLNFFB&#&UsyE5}JZz(6cAyu0@1#)c&`xQyk}byUdq+hPPe*w;V9@|E z&s`2m?RL7M-uFGn_ueNBSm2D&P9M19{bA{#lRH+)iRb0aA?aqMJ7g-U9MQ5@dU4kk zN%5)tX@6MKTi}8I`Kb&G6*2lzH+0oY8$Qu^+#%_?IIAcKug|HXPWpcTK-hQ5;H!C;q(qD1NSgYY`@dh1e*2Atj@Vxw zs-KlcP8^O7CRx1D;i{B(Y$C>;%;Fr|W756Pk%H-;#qo0wNGq2HVW_^yU7X(~otx`} z>VcWeIJa4P^U)nMM`p4#aHG^i{N8)dGWdGQ5~+Nb1IDC_^UQ+(b*CJXP>OFd6X1{H&#wjq-P zukMiKo!v2L&S(Bi-XW#EwS&Q{541NFHKrUBcy9Z^_Ie8>v#tiH(flCdrfJfAxgLnP zAlBF?6QxVSzxB-T_Y6oJE3G@$8Lj=^^Qy@xDLGslAIH3-!hvw<-h<>5PV$E@#Bz+bvgMZGX&}i~BsZVh?>=%1S^!&L}CvRN@sJ`Rp zq06Q6=AIZgQN-*oXG(5D%W`PKdxqO=lzh9GBB@?ne|@8LYmpgtX1o{r)os#51uLxR z^PVU37fW~54X|lm3gxONOSx0KLj7nm4{HyS)ciYQv54h+-SU-OIw)h^g=B`O^pP?a z%VXTq6mCd!65645h!pDy&KXJl!C@2LMa=Szi!$=q@x zC+b<3bZO!*@&5h9s8yHVNmWkC%xbQP(lirsu3j>~S1U>VpM00Ls3kM~f{t`Ms7^BY zlSCCuYstTRn{>50iDRetlRlhNfOl>Zmjr}Lzut8aJqAe}sWei0m8XTf50cpSV49TG zzdH^dOyY*23njh5`anw(+gHwzl+$`(=JG_^{xd?lyhR%W;}e;j?IRskSHat#iDZtG zRHNA*;RZ>Z<|KT3m0P4seUgN?gr;O;Rwh|N&NF7J8H1?Cuzr^ zBpSYb5mmP-K{`GoiG$83M15QNL0Y;kk^4={qkhWeN|lQfxoDuGS`XQ<8>dqmR#>4}>g>U5IHgrm|4yME|4Kbhn6PDqcKf(iSGxWmV93M zVv=tXhab2g8GQ^!^~5ATSawz#suzg2=Mxzcds!-87lD~a6UCl*T`CkzsGn~Vsp5Z2 zvYj&wbHw_bnR7?FVmng!9wu|9I8SDDo`5ZZ$uul{F8%y94Gk*Ely1F|)*YRLwe6Dm zsVAksKNewZTasYe$4c{ttwd-;61yQz`lz-BeQlFi=$b73dbtq+I!XNdE>(J5zZDTJ ziA?O4B0Y26j6=bR+^P{HU3<0?*Ti@}nkbVt-&l$Ok0ctmzLg$$&d1*1Bqq;&DNTGd z171UtI9TM&qI4(Y@vI~!9=b1Wj2nXt@%{Htxg%}fJyPhA61j2WL&^O4c>H{p$P2p9 zq<=b0!-;E&9C+)MRI+(C#*1-qQI(`yZ40qj%z>%(lC&g!3FM;0y%SuE6(5#kb!|L- zy1kGtwVRDty#(Ia_gdOMY91baNMP3G$5MpD6zr8Hu!lH<`S_2)Z8?#%%DW*AG#`dy z=4Qv_*H=hK~@O&ig(w~Z1tKzw(y~u5x zT!adrc;;`QRF%C7<~`$?E%K?Zo7bV^r+DVwNsye@Z$!I&34AyAgCuL+h5_R9^HwBE z!|gWX#N&8AiH?;tCvJpk`*?AVrG$*N$R8BPLJ?Pn_FfK+$#D$m_EK8&XaSC_isRvk zCsMWUEOcKJ$K1XTq)D%*;Mbivsz16dW%V0}4RLX->2h0|=RF!R$Ku&t|B}?L(*VrA zEXJqgg7o@E7$S!z@YCe;QrAu)!b>iJTYjCCbhZ63r8I&6B^{F-$9f{;RU)5<9hTmB z_k~R441)s>NRFNQV3m0yr;Irw-TUi-n+XZbbv-7feD=b_z6m^Y_q0^|C;+p<5?J@; zjMUUK7z4%sUAW=6wA8~FnrFqh$sLjw%=18peewLT@qqNy7a6Ogybu&y=)3_r&a&IL7UqDz%={ z73b%8HclTQotrN7wb}8!yU|;EFj#0G#pl~Bu#rAKmV?&G1gaj>lk^|`kn~~_gqMT5 zlr*bKdQu?9;qT9=_@+W>+Rg+n%gcxgyqh6yxRk&Q{p(TBonocJ^aM7m&x&$$d@S9r zNZ`?8)2QtRH>8Da3G9DDdfO^$nKc~}8Tj(g+hgfhq*}WKzCSuR%Hr-rX`Gm!_SyHN zqU2H}f75u;FZVv`*_lkKS7jVcpBF~`HqMhYpT*Phl$r;w=3qxHhV0@jOuOEgkrwh8yB_+lT?uqcUw! zIi8Dlj**h}b+D}@j*c-Cq@%5R=&TgSuK!#2Mw;MNdoka3t&|4pTjGma9Hn&|#olC% z7j<#W8?!~S&9}!8%Q%Kk*(vQm>jL-Dah%>~pR|2yAIz$b<58b~rA}|$v0`8xt$rSo zWZOJZS06`@lEYGVwl~&?$MNRQ6H@R7e>675G2-J{$#ZQe<~PPMU*)oN?v!Bomc?4q4p9C<3;b6bcj$uXRM@uf7UaWQgF#Bx)~OX{KT5Z;|2XlNdw8PX{IIje>(#6T_F*yCrSazDQMxTVnXy7&@QaAcZyCBVk4i2kzY_<%k|C*^n6a@3BW} z8tQ>CzZlNhc2pWWR4`->#cxzSEjfipqDVD{opa7hiFw12Rv*p70av8%hsHuZBbqz2 zu1jb9rXcH9H2)R(-N=ZU2-^|O)oIrxEth{pAES(~MqZZQrcS`$j?rARTJMdlk*W^|K_WXfv23M$=GlrqD~6VBYo^=3E^i zS*huwNiUYq)()1g-|dRgI&r+XFhII|TvK>{#qo@DA1U~(DsKA5F}&PT3g04+nGtcc zK5QcOAKnhlhVi`Fpe@y^G)Zm#@f@75Bv~J?kv{AZYwV+{sM!WZ(!#fKT(d4S>O)1I zWZW3b9+NIa1*IlP6+UsiXTBopg4`R)e};IzjLf6V>h4I_6yiB_+O8zR~zIhN@uh+5wtp){!34 zE^+4UGAfqSXNO3Z6Fb8+AeQeYM@Yk+yJOH4F*mfvNISFiad~kJi}NQ)??)KnT5dEI zO2$bhjwU!_6;0j5nUcy5OFYwv=9%;*(xo@{$oM6r%jxyfFyYa~G8vDo-70Oj^FXf* z8MUtLlCin8S|!`mBx%6 zi|_?9+FrRJq5oub8X=?Vok3FZVLja49L*V~zS0_xu2^+4ni~&!Npsz_v3gkyXWw*` zRFu_Fu{Va&Y7;3WK>;O~V|YZ?Nt!dPO`7>ShBnwKtK~C!Vh7+oT@z?&5}3JZCGmN^1GH@o_;MckTEiZNG9G4r1LlENq84^7pZ_ zMC|W7&_EYT0kLQ4C3b>vA82cV1Fs4OO^cO!z%83M#%Tj{U z*r%{wD)y9NDv%F)0SCt<-e07I@o|rFcT5tM-Br*cdx~cr#hEit_}uMzgx+2vk8wl= zM;|@Git=PmkUHSz&liXhd4^l@9kBQLb8LB>!j8K%VAK$W(_d1UC;T6Kl)r|@rgw~U z(gaUSm@)Pp$JS}!g-sNecX>}2p)2X~4-j?ZJwNW#fK~Y$1U(h8Shgmzdq@Z#BQz)a z8d!S$HJWFB5P2j`Y!n99FR9bsSg3a2lA=^Q$;i^yrk!R%zZ;QDn&%a>T(-u8)`sf{%^WKb2g zZ)Lg8aPAz7tQDWBlhFk`{Sy%5C}Qmh!E@Li4|}5wPR!|s2PMh)9xrkQ7rP-pE*XwS zqSh9ngUR>aBfLQ9g?i{hQz;E&Z)NhrRUIV9eLyd*Y_84J!=%xlVYN7mYTNbD^79iO zZOG>EZawjCe>NW6%;wk$`iQj7K-j$;zP)6ChYPb{VwX#IPec57CKp;l%W>PaCpsR? z!f5L+RPAes;32u_{`LzmA27mzgKw-DZwSYtJdA0~XIQc! z_EmhvWnZB`U(-{>srmT(xPYFnCMZ~3jLU9?j5}s5JR^h;_&K4yKWm8YYK7=;T0~9x zo@m#akN5WrnRdtk{(ZmV-%~?5iZ%#%PbV@ zo-VrPWaEpt{$h|G3|+p!+vYpk^p`|*Ui$1QU zl=*eTpe0#&+P#!P{ktLiaW<;ImvZY&9b}6Btd4D^ylm7B@04?4&N4oJt%KBq`A`)+ zB~y#;2pXJ+rg7!$tk?rR`;#Mp#7q!#?%Nmc2?o)^h&Bl^u(5$3dnS-DA=Fa7gLRY zgR5B9SB&j|N{k#^&6@>==(MN?o(|Pa(lEqft6G?jtKruZ!f!XI5{>`X@M@}HKmMq} z0Q*{w^)$x%$R-4RtYx61DSGy9LD%qFMx8Skn&RKsB8h7PtPo}K7fzjOS=VF@EpIu& zy{~1>HCr?-ZqFyXYB@W^9*T+b?Eku!hk7_7eU75gM+o*yxf8BlRpzr%_3Uy*5YH0 z)!4nNUi3S=;!Sl2>iyHmqU*g;rQeaVC5=q@`ZZ=z;uAB;Sx!5PL)v`p=b zKixI?aYZ9{_=((JohH}0Hi@;}10UaNGvq(f!+WzIf<(XPxpvKbCwefijqS`2N1Hf3 zqaVKC=|pWE(aW6Vj-PY2x%6Q(FR$qf>uXw^5cz{MMIY!m;g7jVyM+s`c|b+#%!dbm z@Kvn`k~enYw4p8Zvhc*PFGCckaep%0C#G*&jEKccFDK*21%W{b7I7fS3CJWXAUZocv?RE~4)>X=^Zc zr}X0QA-}jhG6)N_OxRhlCKjdz;Y7X(ADFZ;^GFERUp1rIs^1(g;sd3lX3X(v<4wa5 zbW}Iv*dBjqypuV53$~0`Rw(LMS;U!YMn4VNwMIz;Px_=ZlSRBHRpu` z?PZQf!Z0J!k|Dw){^YPwl& zj1G_FW&e4H;-0wXpkV)YO%KLfS2G?oSCFk2z7ns8n9<^tf-F`p2(6cUF=L7FPZ#xv zd5g`sNKH}J(LWTLf6e)e3bJK3;yXKt-{_<$GwK_Rcbm-kVU40}MokEg_OoEX1x4A~ ze?#!p&Vsp}lw_BrU^H1;uyc!&Og=pX50flee@j^wQ6GZ&-d6PMqVoTqQ#;*kXx^+M zn<>0A&S~27;C2<6!{-6;I_$v5ek!s?;o0%b%ZZ)?RAg3ZkqA8C$PX^cvf9iDTy3yp zZdVoAzHQ;yyTF#0MybfA3V)E7_pRBdL|K;dLd1)EtmzY}Ec-3Is8Zc*S-eVFmh~na z$wO>8tW;UHto;BKW!SOen&3<8M8LO;Eys6MmPOTvVZj{h|HTBdc8>?(-coy-TvC#y z2tT7aD;>G!fs!oo=0Nn*ai*VOP;0Ckh@m%}=rdAD_Wflfh8Q{WnU5F;;d%5Y)q%1i zMcMv$5%`;L%WIPagW61R%frQYTcjl0aV8YS36`AmP)U|u6^cocB}aIPYsQHAlVi!} zv5K;SSO4?pvgD}{MOmO=q2Ckpb5fv!%=CB|%!XQW`XPClz3bM&f5%9CJ<$`@;Zu}HJ zoD14L#;LLnGjxSM^1*r~1)>%hpFHw{Y z&lFs7HG7tddD1U45?8bwx#+usOf@(XW6SL6_e@^4K=}Qg)v@E`ZSt}dao^qF+HhBI zdD;1!;aJ_pnv+Y~%MJ_;N4F#^YLv^#9&QRpFF$K~2`}&4{t=jT*oGfY%gG#j36Bq7 z8^&~NFUuF6iTXaaJo%)(>`&AH9P=04a^WejnjMLCzZ}{5hVVKU-1|#$4xHVky{t%m z0A~HR`*k#WjujFLvB6d;gj`vr~$vOu|;PW>d z>R8IjqW6X4l9-bg1?^;?vcfQZr4=VHZzoII7lzJmR+N4G%dHQ?@bqdwYj01VbAP#byYOb+WXGq1cRfMW zir;*-r_M^TE(yQ0yBqCTD>zqj!q;zDl_NU{wsx>#Bqk1b6FjSSvMU|~5Z%$4y}GrN zX%$Ccbh!gF^8YeFHyodz*wJzFAI44-Ubpk?_;P<6T@u4F(ZhjbUbIowNIbtaj@

          QpI%TYrjA)C~PO4|e`{v8T3K$g4)E~KI+VWmbCHU9^ogo+L29yGjn!OI0|$f zcrj7%qMwE#C*P5ShyG&lTj8@a!=4L1{$hS}7-o01<7VkM>nDn_b+=}jRvT@_y4qXY znwn*8G_4K=4_VS_X&Xm|gkpk$g~;*z=3t*t*ce)HvtZqnF%$`FEg84uH&<>JKEEq$ zxvST2PIe1J;u>2jIsW4Q5uw;@Z^@q7KlxTA6a(}vcuVjZuHOqmYqlBNz5T_^p<+E8 zW5&-_Ke=Z@2zE4^F)^o=%iD#bF2;f{3R_tt{I=e;nz1URh0pf}LtWLBSK9yN_qRc~ zEPS7{-n3FctKq6`#P`=*sWCMG$Bhg*!Cf$6TK$o_yeDNot=uQPoBhiTm|OdUcdPv2 zTyMbZsm=UaCAj*x4f)9P2Ok~^z@C1B1!UjC)UAPNjyGbANelmx1!19HFIp`6!JDrG z@yOJeJ&K!Ie=`sxYm9hBoO#wS4uan?6P^1#`Cc>q>Vskb(Tv4PKiD9= z)wsffJI4Ot`8OfxFZRCSf_HaO>x}yVS6(#w%@eU<@EGLEXMw+{ zX%U8bl`dRp`;)Cg9~V^M!qdxJS=%!dN821ZqeF}6i3>%^Z3jLPJn)FvPz>yB&jS|( z3+O;7CN327!MBy&g-@blf;Ep7x6r-4_#9d@MEq?xv7ersZOexd=j;5J0#ju%9twGSWHsyG61`Zq$g!h|FxJoc;`s@ir-={__vT9;#LI65j8#3)< z6Sv&($0>gUPR?$k)ar|F2X(2uvWYf>eGu1KhcSnn_^Puv8YgvQ`j#dRf947Ir(Jk@ zaTAa15WK1OT{!YmBR3U#!C5fn)E_i5V66{i+B)o1+$i{>zKHzMgV*LYaHzPZIkYSD zsv8(E#1o??bY{T&22PCiz?~b~BpdityB`i#X>$9k23Cjn#nQeSydq+OTN!;|9^8>l zDfKK->5av9YV6XZo-60Niu0r@D?RF1a=H)F-PJiFtd8qPyCdRvN4^_Y$HsjE`u$o% z@LlRT@<%_smTB_U)H==;43=D5O}ZVah8HYM(40_@#S5!>zsM90yPHuGUd=)Onc}xa6B?FOv2vaX z)_kkOl7&^YTVMj8C?1Ulwrq(Tb1m)ihmh zh2sm`@SklpXNz2HrSLl#=~~V8zXZ4KL3?q=tKnKrM`(>v;5h9X<|;d5a@Ow8~plUv5^}61ruBKXE>5BbA1xP5UA zee;Hw%#%BuMMV{e4mbf9%= z6|2U(;cA@<*PpMZNuDb+)a zR5A3R1HygV^KotkCmpkc#}>itnkJar(`_*5&|jg!sA7nN(8YB7{r|6n+gag!@lVWK zS;-OOE#Xx51KJiot$m8H=9b_jk2XZJaVZA$EMwddQxpW&z^u8HJ$hTfWUcrzHB(+ZpY+;YJ1TL^vSY zO^&;~%jq%H3C9)Wg^yb~hwX8~(pq_1WmoX(5EqzSQ=}}pg7TAGaIBvao#QJx_<$RR zc2{BB#R|bzb3?YK3Lma67d(W%P~6&qN^a#$GwBPvv<}R$7oT&=U3hS)bIO`>9=7a@ z!TM@+)U9OZ>E5_MR``-A2&Ve|-njcpm1im{IoH20oR+C^hkO-{Pq<@jo;uI<5nPn# z?nrkK+$6&)CMtU%p;Uv%e5&}uUGVYFYte946;l_A_`Obx<$=|__g{ZJo2bpdM&g+= z^2GQqop`abhBNK^V^fos(3aM6)J{(vV<%o0xtG*iUU($fo2?}^?4sd?;>(@6dv_fV ztn81GhqXC=Q5|2u5WTZ~JJES*J=;C^!ky?Yv{h^nbHE4d7IdfSjXEBl>VueuZoIOs zmO9tGG4oPaZr82htvy~iU(uQN7S*hjd7@)MCvNbn;gvIM#>24x%_W(VO^jeezNe6imiSpFAPmZcm#$_A&_wBnFzDPPRA#tfYw z$Y?9(g-e!jJJNuwvjx98#T+@aYSGlcnEUcg;i_MSab1Pej;J*axLt-`mET!HUIuXX!{Zd#o1%U%)glDTf)B4j_7z)jzhFcc;~Gn7JZT9)j6e9_i={V zNO_L&DCP4e7c}%%&mt%M*Ai-;4cK&~ zNc3i!xHRbO5rV6#E8yjxW1+WVTvMeJjVhxDj~koOF2kiDuI?y-ezJ1Q8bS6Z=lXc2#pvd6QpzY$(s$fiFIn6KZC zn^zW6!_x^4=j8YzN4&4>g0au#IlZKaT_Oa-ZMqU44*JfabNb+ci7JomE26@B!Ek%l zfm+o?oIk!Fb_mvD<=^jgz2Sj$D=j*y7jxp{{+PU8FpWExa^TzkP_XGF*2Q98pWum8 zv7Ko6t%T2uJ&~&0MQHO&XgI(N!PC3Y&Zd-S?|LCYoTCo?Tfz?(-e~^QmE9JX@{6c@ zkH6i8pOngYROHsS5A4Q!gUh&DQLul@yKv0cGVbZ%gDc0o(aNrz8m?aGzp^v4XO#1b zs52YYbYt-13a-EFje$G5GC9AJgC6@}fqZvzx}&% z;rs6l-tGmzvTmHx_MI=)yy3WChhKb(>7V9>SI2aCe%yCn4)H=nVmIzl{LVEAo|u~7 zm9rNX^370B^z`n+lMe-h=x%@X`__qm)`gsC?tw`^HJRQ}K%)ij$bGFY`h5%dds<&? z?ykm}{R=qkb06IOqsroz0$P0Pjq3|lcx+A~N6&SGLP!4Sbv^0Gx}`VVZmTfqI(tkJl)5nToEsOX?2 z-Y=*_zDgm-3C3oIay>rz7qDrW1wP5wpfU9uvt!LLqq+jFOTW=n+Z6XN3XZzQHy(vC z6zq!-ctJ2^1RpXtun3zz=JU6QDXs^V;?wAS#=R8GaPJDtc$m){4(7NxtP=eNkEm0T z1wL%6LHEY5e80sCMF$0Qa?Ur}ceTOY`AveM{EeSK+v0Id3tAt3CAo@Nie)wx|LQUg8FYlSk1QH%E7zH;6?3wRE!#t-q^U(PazQg#LQ zb<5+{zP)f=cuv^~-pj~n6I>ep9XeHcyffJtw+9s9_m(^wyfMbY69p(c^MxLBOffsD z1S7(~@PLa24BA&=x!^+lU1Wv+pX=~FBu{981RK_?4u2i;xzg8K_{cY4z|(x{U$?>a zN6m2Q_m$0Nc9^dG6P@$&=|4y8iC%3mT$9gU|2ZJmtsP%=%4dA4Bh0SKaovG@Ru6H; zvOV%Vo1ahFHdh=`RN}t@-?%A9aKaT-dE?_Z?i6RIvke`1VE8vqvvh~m8Fk8C_(s{f zen{2Ozl@A;~1AC%7vzg=;lK$)FO z@_4wrD;fiom_I0=K}~`S`c8qFiFq9K%>~;h3%=-zJYKo!iuMi4%9_yxyc(a=t&mIw6sh)kYGfAEGzw&ri#E*}5s&l<*9`_FJjWJ(4 z2xQ$CMhJGO6t2n%r@jzsuGpNeEd1zmslLz!A)}NyV9FP2b#unjb_%qaAUHp{POuy& z&*soPzJ2D1+j(;IN&7kiweP;9v%(2bT^xOH(R3A zz7|2|Ib0E7iDrdbbRUq-!#ypaW?KcHr`fzP+YD19%3$x1O{FEKc-y@M%a3RCTv#uB z+**XqURf*~YYd}*zhbcHanq0M38PCn`1>@IRrz|j>F^o51ZUvLE?v}JNP__~SnSaQ zeLYe!PA`Kh@_INpCLISqedc_BefaY;Ua!jFs>=pgF+K~^MDOr+dqWHh$i++1Be4CE zJ|=9)K=?1^2A+g~1BTD|MAz%x5I!XtJ8piW z`qHkL(<2do!#~k~R5vV`pM(!f(pllAgHIXn@L9b6KBT+wZcY*2Lurhi)fMy4Cg2Lw zIB;VZ>`ID*zg8NPu64rh>Cx!qlqPb-+BkiTqG#tLR}ATd{@tSS>{cq53BQalO)>Z~ z?jvu9bj7Qw2~hO?$Z6w+PTwa9rHvn1^Sc|men`eni;v9I>LHlJACQ^;kv5(^;CbT% z5@XY7`CJzp&!^#CZ_)d?P#+5vGZ3jF`jH14;LY1i$cg^M{-WL;dMO)UCw->T8AGfY z^aYoEKl8sDBTRXnk21l0h#YNDlAVuD_Te^e6iHwn$&nhR;VcdHSF|yiMeov?Po7!W`g!QjV%a1^Z~5BkJ$UvtoWW z=g)A!l=}9xo1Vo3JMEDr-=3>qXELRi9bSt#<-SfP)pf-4c=k7jZWnBv4z|#*_=z4X zM2~Hg6^_+5q2hQ3fBmsQBx^;kNA$yHn`6tmDr67Jpu;|M)Q_n~&5uuv-eU@HsT9uz zb7R)qUg%*_jIyVnsU1Q-2xOC`G4WwOo61S=H_g$Kze_IhfBi_!TQ z^x+e4Gz!+bK`ss+_{0s}d!o}a;X(5)oeSIz;E<3hbe`#SI<1EV6Fy<#z;xOr>Eik8 zG|2Bud5&t|3Z!e;~A-h7y|2_7$W4y7X-ggXM(RW2G970ws+~&e`10gpNe28OQ+X4Q#5}p$Gy|(JSsF5 zqvUF#*ZvcCS6D!|unsfDbM2C7iRcbZSS$2MM#>i0eWD&J3({#(Z-xwm8f=-9&Mz6J z__U!4P5%jINNO+as42sSXK7p%Yl4&o#YjjM?2!}37^G2%%N1!H+}j9G-+o22W*U8O z7^CP*5pF67CdmsEluao``}&W3aJv^))>Yt2!ADkHHAUE_8nk47WZ*Y5Tve+>%EdIk zfI05&X~geyX*^YDfqw0q#oC)L;t&h05c$c_lWF`e;^le^pCzH%GhdVJ>EyVfG-(2g$x zKQZl{EoND@<4(~}l=r|6yDa5+TPc$UgY1#_UNHFut0!lP19tl>@XwP>h6g$#=%NCr zZpz~F6HZ9Jszm)J!J!Iu!jTn<^!CnX!W?IKUR0v3;Ceac3ijk375@Ax_+Ww;_2hyo zZF=O;cd`o%cXr_A5!sBK;tG9{+v%h#m}%!-VY|NrSIcrZxTkt_RV(Jz6W*9%rzah>0mIIGXU=agEN(R5=!Zr0 z6>(GQXnjTwEaH>*Ug&*Dm&4l%*>$!T-2C);baNrIW(Z%EZMytmDZJ0Ria1NDhv3;4 zh&s9_x(D^3Zu~bMe&UIOle(NLVgc=Uo*4N`pRIxot07`%RhOQk23W{4;VJX%ks&8W z6!GdnZ_Ju$NG*@=JeVcCbvheUx2TA>_j;pxs4?G&e2$6u+w8X{{P$oHD|dLIm!m0% z_WI5s(L?Eb)|8n;irHV=8<&OZtF(v6fpqji-gR>ZD3&nbi4Xo9G-n4fK9ifhVbj}^ zF{?{>|y2u)f+bS2rA?32p{Z`vtwIv8L#;ILhhw4HEx!(wapi*v#h!DQaKB6`{Lnh zdk#HT!R1H%uv+KDQW_4FJTgtxcs`Oo@#p-BtEvgOVkKC^+-Ux`{|v?HH>Y!Le1 zV8kwPp_@q)#~cYlhq11FaiNiw+QB&a+KnqNH*s2AFxnDb7^&OLmv@38+u_Eg)0(+w zR0!5}bY*^ZGj&CcH8{zQ7yA5Q@B9$#cW~v8=pW2Z3W1-fH7^ogy&M#Zn0wAN4{V|4 zlu*2Kccsad7QQ|Zg6L{T{u25wopm8lZn0yF@EyqQC+fU|ZE1e9nLkQ`;b&^aO^r?b zb|V-Qw^;Cs(1xk`2E#YkjGq0Pm@I0nSH*m@&uwI4mmo|TYQomBjXb3sDB@N_-XAVF z`PTxV{jn!sw{K$ilm4jsq|Z^&jXY56hvt=fJQvj|zIfcN2NTZL zvi_7G9)8v3Ceu3V-t))KKl)S~P|su0{?OAD&t_r+#|v%#uA@D9#-x#dN&~Ph$B>=H z=M0)12-Qi(9FkneH>U$(wZWL$zv}6)AB4n46Yg6r^n3e*@Mn}MS2s1Vv@QsFm1eXV z)yTbm!8pI$f=iz@a_IJ8>=WbgQuqb0O$^3JCtJE@310xE5R`tiV_ifueclI)J~Icp zX9^z;wGiA$b!21TX6AZ_VCqa~DjaX--zVZeS~-h4d=n?`2^M{Fj;x!~#HAC0;jHbz z|JpT)+D$MjqU_jyMH6F#f-yJ5nq7`Ga%xNv&bnF9W_|-b2M6K$4pWX$Yv9__K-8-D z;=IH4)YT0_fUOxle%0}o6o`!-dhzGWI&M55=4y=zHP6)w9%&%V`Wo|)NiEN02B0X; zkV%GOo)?N|WTgQ^*VdA^{Y1Q=ORKdtY)mp{zT>+^2E8t!rrK=;U={Cm8HX?FvVs%S(VQ8%oN4}goY zF@GPf=28Cu{Bbm5bA|9B-QkZ5AqG_NuI9N)KPcSL1md--C9g%*aKfNK?9(@6vhY6WEj+neYI-pzvWnMl3l8)YbG{d~xvnmO zcz@5Fn-ie9l z2Vve=YsPf17dna{c)qjYffeLCHR=w;4ZA}`u;jz1Q5H|O8+6)bw=k2(IP+|gRW zU1Dv#H^i8K>?+yS&L0<_8nXIVg*Z?9;nrURMt`c{&O3gXK2_{Z`V}0i>5r~EjA86uxgtrW!=k}lI4e94(8mqxSUrD{ZO7@!M>l%nLphhkA&v1>(dGjpX86}W30H{ zpps^#{&2ft#c$%fCHE2c_p}Wi&Q@}M-vDGTuwhV#Y95>u01mg}3vpi}WdYFDa$s3v z4L3dULwJ@I?L#ZLska{nHCymmLm7WL`ypqXIS-3kOb-=5ba-OQgRW)d7(Z++FyYRZ zWn3@jbLS=_-VQ70D{nviQ_z!>hluYi_NgvQ4Y___8DFXSp<$*mPx+MbgYad`H|)iT zq*Cq|J%aEu6+Tg=loLADwFku5J}YHNhS&#HO}NlU?3??2vGJ1dyc10RV-I|>BE^se z;+nk8V%^IyVE)Tep7-~~n*Vz8MZL(S_whwlh!M{{DPg(rTzm1{hN-A|Ci0Y(99*++A@+VEGyhe9)4}^lS(Eht@9z)3iEpCsHSe)J=2YInP|<&_-l0AA zZn%kEuE{j{t^oHvcTr%N!qLLV;ivt5tX`kYLV0B@-TM%CwNki@Nh~;M z-2tzJ4|1QZR4!@XLCArh;I&Q~wJ)h*jPG+iEER0Dkt&!n>mk(or*S}@3i{YQ#(t4c znDSc*|CQax9EDG`$ydTj^#{l*`ozTND(K?)7^Ce!bKX}a3>y6af8zvSs7e*P20n${ z!Oz@hsSHc`hd3=5j3=)spyQuA$Q_-*${7ln<8v1kIhlO5TNOQvo`{${lMGPC>W2>n zgC&c1Y&syz;~6gO$l{Hqs%Sd*6gB;`nJD~Lj4!^#OJ;H60Cl9Ve1-hI*>o{d$Ee<~ zMIAJUtKTWX?9n5kImlt{LS?kE7qSAE@guaWxr48Sxtfql1 z(RD&B7wi75$)7cP1b?sF?Y0HDKP9f>}?B+0D&Uo;TCnQ*e;i$PSXRx`rVZ@w?rz0`QLtN4Ut6&i#lR=9 zX=&+h2^B>YK~c}_f^?^JNeM`+fbz}n`|n)mI?s7_&(6+H-gi6}{4ZATISAK<#G=%27+xPve7l>=+38s$ao2+k46-a^?-E8(?j{3!bjz9jl@Zual!@J^ zDwurvD4f4P2Q?xopAs+%@BGWbO!CEUe;$KBUB97AcR7o88--tF^6&}eG`IJR!n=Xr zaFW`0cH!n|Tz#MbyE?wJZ{Z_R^!OWQ`cZDWX*kwoiYNokm7!LQ#!I-vcrmZjx z$3DtMt#IPL!J))Wore<)YuNpK?*rBM`k%5CK zFD%g>j$LzdaDa6cd$@HZj%drpYqj6mq|RZ8SF-TgoA1=XJ_KtorsIl$@62x8V6-() zL75fb*}fk`Q9d&rjYw9vSPjQX>*;?fSMEA!B*s6r(b56k3ns1txeaTM=5*eP_~^`~*1X%{fVzOtzEGZ>xI2{+qD7L9veVA+O3;!sn-#D8`KEUO@l$AdChaQG!oQ7>jWALMc2moU_;C}CTQyM@3RFVOxv<#djA3w_F8;LT;F zEOeeM=3NQJ+aiB=-MM&VI-ALbs1m7{0xneSAaD7)9X<%2#@iP{d;~ zA5s2y1#7v}8^xYqaG7-lTYTuRaB2Qqj8d*-KmT$XHnoE79#bKl{^gBJyvvzF(RblysW&bS zFJsEFwL(LlANr0dXExz2!j{d?sZX$+jc(}_jv9nwHRVGWDam37e~VSbQDUCoEm)0s zjlJZ{Sxs`AaBjtO?CDd^u85lj))|0H_7ktffd)a{*bj}~m$JW;TZNkZXITEXge}Z% z5{7yE5&uXDQ(p94aNp&L^RAV$$q}`J*u)dlONyDetk`?(0R=TUGnp(U${>A_r@7-{QgGzs!G`Q*b(i|<+J0FmBR1g_UJeL z8;d(sMmRrDiPIsEJ8N=92WmQUx@E* zhHug+p7~!k^*S44aby-7I5tgKwS@RV2#eT!Lb5P4k2p16WiiJUNy7U#4{<%uWX9(S zcW(N9JV?0!%YBK$_9yr8{i+OR7m*pq_6ZNBm2;rpm;@#4DUoU|Fo8rA~0&?1+m9GrX6mN$6PYiYgxnuW3oE zFnfmwRuInofEn$=EGrLOnn>7*CEY?=j~}jIp2y^uH3?Ni-SMR1H#R@2Rw%A<#0<(G z+11wyhZi_vP7q-{E~*edEq#iw$K^7Q>T+T46&ut#Limt+a+o>!Ii9Ed#dLXDJYpDt z2EB6FyZ!%!xJEzJyPm_8OMeMUqr7nC>>R?SZxiBly!q2`hauEIWfGO!_5ko8peWeh?nu=2l@7 zxDc*FI@@}>QMhj7fIaQ$OlQ~+q4tR#`n}3vK@LsAi=j@~u!JxJr#1?Q*E(R#ZNlGs z{!@5m;E0g{smxQqUhq6)Px+)&cF40yI7sWbYjO%ZuiGTpeRW2i@FaF6xmECc?uxD# zli5y%4&h|F8>Z-`umK-h1#ovkKhIQVGNnZryUrO0o=#&^y4r=4TisBLuGda%6RyX& z5cV(OE}HxmrmXY9g)h?B{+9~a9{rs9Nzzzhp%QAize3-O8SJ)xZ@jYe4I0tBu6Zlr zp-Hc>`)e92*+%?#3NLYf|1=hSNghMK2BF+c!eC65!4U@jxOZL}`?S1U7_!G3OZ-!r z-L^kM$pTN*Zcky8t-FMxquv<0HHCFgk--I_emMDdD!VX54ljQXK*#f`Os7g78;3r} zjsvOe8rg@bN2$+!Ln^zxSqTp(y~16D890^f@Vq-O@P=s$i<~8kYM-9r^4BTsQ{X@0 z(p=J$HH1gkr&IXn=#9rtB(coeU&K4$fxY)7v)HIMA$_nrzVt|9pa1(Qtexb7kCRV*arT45I9FIf~83a0lhFqSZ*e8%JnwsNMJ z@0ZAimt+bLnITU8n8+HmzX=^(W++SeD&>80guV}-pxvT)w!kAp7`o6DmCh5!&eIe@ zDZmg_t>f77$tl9YSR)LNj%BrbzY33kJVph=1L^aD2}TMJ35$$yLh3&Y1t#~f`E3kS zPyQfix$B`|-1$#4xQn@xp#}Bed)Nm6cVd2qzUy(Y)a+8+R&4 zSair7E4IWjQC7Y%`;a9r8bx!NpCPn6n&ax5Us=J(WTCL0ctfNytmb06Fk&z9ls%4N z*VpCmJiCgxh`X$ne6_HH78$q)8~8?v5K4 zC9sCWbwaOJCj=x6goWRQnJ*oP*F27G@U0X==QyLhW-QB)uNQplU2%R+9MiO^7cSR( zpjlun>%FvDaQx$FboutwLs@KTfz8%Z_{e z6sGC=;I><_%xTpRVR?UVbb9lZt$o!foZa&CdW_%)YW=+dG7@SA($Z zZY+B+r%j0e?>P?o{FN=f-XRRd5PU|@Uv{q*4o>vNVp{j{TdN4G#1j|)iD4D8)xy~$ z?)bo&*6TyLP<6otXPo%TR%ew615+Gv4&im&krWG8?%U&#jIS&o3WVT+_Nc8y7&X&# z1$kXNOxPU5qHlc@CR93L+Qt|rKc!f>Dd&un3FE>jyIfdq;D$FE2;+tJg>n5;yvm}P zbQ)pdzPHAwLt==ZJ6X^?U`;+oG@E@PNm%;N9IcX~*`6(Ng3Yogc*ZZ92~UaDAj+6> zIWg>EDHj%78ern+7J*DyGd9#7lVax-(*a&`O6;n3KxQ7 zQ}JU~H`{;zrH~kzggc*ivk5X`!l!^VoFDaym*?9%Y6Q^IWr0S%P<4`8uzfj zmx6_)2brk8T!wf4eJA)3=jrZEviwd$7-0?HQhaI+`n=*1+1VRZPEeG(SkW zm@3s(?3UUXF7~2aiQ;Oudfym+ELR=p{Z(N<)5q{{loMHfeGSv_8^hxxcdN<&4#!@G z7kJl;fdrWH0;?|E=F{gZ!yKIubX<6wgS!%3)O?LYe&6CZcbrutbO@ZIaE))8HdzM$;Fr_G!bdDCT2d`#^1Q2L^_VdGC|{;3`XXKAXgRohT42SO39_ zy~KR`lmNK9uNw_&Mf}tvKPVgf7n`Pw`MX3va53q@=mHVn8xRPyy#Jy46ME*b57@ov zM8QzZ$ISEs|MkCccb%BO)$#=Id0qG*j(!W?Feis{&@`T}dLB^k@efTL#k_2SJD96< zqgS(-?~HMUx#xQDU!s`bv2X!jk8ZS_FX7^9Hy9-U3yoGv`0-oL@UQj{3Rfk3_yR|0 zIMt1HQVF;5c7*BKRF}R%!t289VdLdL`01U5N569hMarkQKa%j>gB{^_ejDBimvEVR zPhp1bFRW~o@VDn}U{OXVI_FFHrQfztewHv9o=dnxKN~35_=o!fC4Br@3urskjTNQz zPPBllQ+n`ikc3;Gdjg`RJ(x)UrQl@_n~P-Fy}J_r;+H9Wohr+?nC{;+hSV1_Y?-Zu z|7UIlTRZ>a#vBQ6yk!8+k7ZciGYMZ%^%&w8{lmxt2{(K72>RWYVf)@nc-zJY@U!I~ zY8FelZRR}~K0}uE@|W;=f5gyJ)q{U&%=6_%&~sXrHTp{UwiQyimq>NjeWcv&;zMYN z@4~merTkL7KBSKALbqO0t~<&YG<75}-}V=$oy1f7B9s7%Yq#+CIlv5_3;sJKQ+bhv|$J^CHttaQIIjR#zqBu4da|Nv!w=}Mfr+CBvdb^-@Y2LJFz4nV zcHrtAUM{x*rcE2n$}ZgD|Mgl2R`G+G?~*%wg`7H=P)+#j$#=NU%JrbqHH67_>+-2V zt6;MI5H_wum+$?t8ixHE%KCoMg_4O+?rj)#LCQz3F@dXbt*Crb%AMTIz`CRb z3pYvmnH)uwUk#LJbcc>OBaq<)iuTJ-d-p8wvm5KR%{z&&U27G`x~#siFnVLV3=y&g;QRL_+9%KkTkX(_t05p z?f4Q5Gn%PaMZ{(GLtvCkBNo&3=QFS2bA1ywyNmdvlP{obdp%B^MB^Xx3Vv)RjG!zL z4^aw*Nb?39;2`2#cZNd7iaI=RDB=rFzJfo$tI^~W-G3JfyOXQ%ijr5+MZ{X_4Qhci~;s;dd6wNQj zFFaW5pUIa2{C@(F{xg}hjzYzJ-uu3xxARK-w_OP zKWcH&W-FMSR1b z*ASOignc7Kyu~#P#wQfwGAj|6F$o0?{d^q9M7(0(TPTry!$mG+4_tl&J@a#MXgui_ z(JMGKJrB*li+IAm*Wj6+g`G6E>#M_HL_sD_Nf+^|8}H!u%p6p)r@egf9i--D;EZ6> zT`^%WV^|t~$rSNxTSLJuE*+IxMZDT61XhmAK&zo*F52}He4l0G0%b9;6~BOj$rSTf z5c3V8A+Xt~03{_Nel`0!oVO{&|K!Bn@#=GEXezdcSHT5u(J$J^vFi4@`v+T#kh&&Q0GS=90)8z%SB>dWfBA#>uBzC#Qd*jFnoQR zgMa6VdH3DtAU7-%->ney)mvUdn`SDGqU%l1Uqfkj3Lfu6GVdG))^n0@1Ib>`?sqVF zc?zC+CF1hpaF{SV89Q$N&%SyE$F&l1$wZoC@*6N3Lb;)G5%=vA4vVKI;AB(!4$Hz} z-R@ZIFA;Gam$z{ILJaPEE#gs*;joBtOx6`~Gxt#VrHfczDdOG*?}48d@Xu8d*ZvR= zWdWaY7|CtR&PZr@ABFmwBHkn)4mT1$qLj{#!ix9MM>P`H9T#y+w|7wgH3H|*IdW>m zYfv~7fgfpI0weuF55M3;DSg9)KzOq;27BmS%Q^EB)C*&9`D)sa5zpbPO%j@Eig|!% z5LmrS!-m)(cejLuiOGm{#{a^rG_?e3j>6!S+{$L)Gjf(mtlQPdBd1D6Z(SAR$ zJ^+&2QgD!&nAa-@f#SMET>VJQ7p)9};>v&WM6La~)e$Zi*j25I% zCJ*t2h>SG+7AfZK$v)8bHWNpOh=n9_oX_(j}<`zGlVdA_b^qNREUalJqRZ75r{Uv;ht~&%ed_@ac32%*bhYl-- zP8Ias{5`=|B4BB(n4he0fl*blxKmle6T2MY!KOI8GgiW#n;byNI{};4l8t)P0c13i zapyh>UpmbR0@c#cbD4yPPPKftnX3Tz}P5C>fKEBC;p*Th^*n< zo(jBEA>mIv&EZ@y>9KA)Q@X7{=~fjg{gd$673OgNZ#B-RvsG=T6_in5!_je4{;9(Z zd@QMVd$p8jZnlB}3mWl0om0|eGtge~6Mt$*`9M7rn6k79qt8pZ?NCF|n$wIUA4&Ns zr$?}IdJDccm-2)A@503Ct+?7)%6)=$p<{I$T8gE7(5mb3pST@8=&W4%^CHZx=s?v2 zQr} zMVJEgov%;?w&*WblkK`fRvp^1J8?YO@V_Km;EV2W+(~wO`qv$BY(NKE&Y}5Q?t_MV z9jHe3c7g99n9$yaVY{WgX#R0HPkvw4WhsC3=L{$(G-K0!dVa|zSm4l#a=K&>T)7T< zV_GoAkmeYz3j@-cu-snC{h!>0vJXFTxrdY=jei7xf*bKN-CqWV5E;;bmUpFmhmQ&D z^Q*^{V^Z!KZ35y2wYVRoyz!hNsHoPVJI(#+pGVNK=LZg_|DDiv7rvjV$3kl>F`Az5ns-OOUpv2^%b>{F(L{NTvIN1NjvH9fSHoO*qt4%6nxU zgn7};XmM4_|BCj4^@~>yN#Sv0&Gj;=;@PUd;;n0#sTtIft&DK?5?DG@X z7n2|QZ9V8THBtYVl)IO!gSu=B&YVQHU-(uqfBh3n$&Tv1Y7dNeZo(~OgKgH4xX2}GIU|@aQ;A#1woH8a7@m&)j&-zm_R2kg>=9LXf_%E0DPp)VxEgo-C*@`u zx1eHF4W7`J^5LRe@Gqkh=abBb#9o7y{j2|94j*5<3Nd#pQA~TJV$CHu57nr4jbwHD zd59KjF^lFKXL|y!UaZAVS6X+&L-1=zEiMd^@{?=#g9+{BssMVY;V!6lX~55VQof>d zGxYMRN4-;0KI862NQ-F1D`W$w>8}H?Ck>cL{^_RhmGEpqJ?GfD@M*4R4EYOc@#G*YCz9w`A^tt#0e`u1Q*k>-piEA;yUc!$lEdm=Ive~|p zZ0uVBdS7ZNS0ds4=d6X0xpi1FOv<4cpxodG?olQAuhf7s_O+OEPs&fP+5vI)b@+kS zZsYbnps7}aW>MtxPCfwbx!>`^D=BxLa}=)Mt-?s!3m4VTfLR&oH`;3x;?BW>^Od-f zWMk&rOAuU9hT7`n^X}DweG26`hJ5Pjv+lsoe&r}7ov?776oShtuw$W=PoD4)5;M!u zd$^P@*rE@?9c8FM-^7>V3=LmP@%kSLSM@f9j!h*PQ7_>WZA~FJy#TlLNcbZ!BRF!a z2qomF6e;5j9@Pm%ohNsplIY6(_Q++eYd9z@SBr9KxaUlVg1ih@gst6j>E4ZQ{p zmL<4^)?(bL3vlst396AE-qLdh)&`W}2u&%^>p1~VeJXL<4bsCC4#QkY1-4kwcUZI+ z2D_Kz$=9TRWOhPTP9?60lk#nwwu0BTYUFR}JvJNRAgjWuwoE6teI zkP%mf6Q_|Z?K7l6{pO7u&U@cnMH!G1y&4)K(5&5&6zF{m8PXpfiM z%m)wOQrwy$;YaQ*g?@v|F@^T*gHtMS>23x7CEZe;xgP%X|BkgJw_Q={@GY$Z$48Q0 zUA_%2T`R-e(WL)-cERYIC8$gKGulHF2HYvdeFpRm_aB1=3(JUyManA^PQj$kV(M{{ za>b|T;7oNPb}W_hwezn6UtWZ-rb;<$yb0R#i*Pl`RoYiE{JUL*bNi7Fd2t{1?JmS& zv^QT*(}yb#g;+jB%02rT!IrW4#C0X*t6fcDmQEf{qJ6EFXbNW4S=c?FbniQJ(3+cx zsmf9wAhLq>8R@u^&X>wkD^NL*f+G?n{5hT1u|ra+?pDg{Q%s?JOFE7u8Iub)g5Z&v zm`(cXe1s9Co97Vj39VOzKFG2xWExVwzD6I`hvy=r`zL-r0{^maxSiJG?AUuSgXdx2 zu_W_aB3NXQkLomrcU%Xq&MLqkG?!7;mq9BhA3xHVV>g|J9PNC(NMkOWbP}%YEJVIp z%IB>+0x}1R@h_b(=RWVJ?_7lYZqXQS?1Whx3en=Rl+WF^1%&CvxGtFHUbX?`N0nk* zsFbIst%HYoW%!n!ng3%Y^eibwWg7DhjkVA!D#nxtBufqeTCRmyLHl(0#LXa^l#hi* zbdEgO0iZ;6L|PR4vf2m3PS7~%?DL5|3`1@e;B=Bb_pv8H+x#0oSu5qklC;1zGZ*t| zEi8{*0t3SP{Y2|nzDoy6_46>A&hcR}cOYU!E`Fl9pKZ{C&*!o+cb1gb{CWtMUviKw zmvR-4hp_p4CT>xa@&*HaD1DrcC$~#^vw;yreM!ZZZBi~dXbQ?K8J)-m$Wt|g-)j=F zp1v(~T7dLsBA%f2RVufJn!bs+fowU~KDJP8n~VlF52D&^vA{FU9!^-Eii$@QxdR|=6I~X5!|?u zg!5_c`$^AOY)V134Wz><#;7zp4fn61^q18gCvjei=|v!aUV=u zmW!3@|2yk=r@$E#u0 z`CQaFNwEucHTWK!jq^{D%{FoqWXfmZO?raAQSJBY>P6r;3mznLxJqx-k0H$T_$?V(Yj<_hpPS=7}<-?_bs}R zcOnh%kD~YINuj_t1t-m<@oanuyRwpq>p{vbx^Kgk+9W(nd$8!}b?9(T!4R^gzlV_i z-;#z&T@rrugBHxwPr+6!-O(@=-@)aZik zaJ4=KZ;@SOoS*>(&S|JUTgr=bRUu_n2DZ?875-3xK4qCWi{wg1ZyDs#_k2z3b=hY* zY}xP)vzF0)(NgGIltFxgQm&`20y{6H;V-(s_P8prm=rujbGd&;1Ds|h3Ag-r1`f$Y;DYJ2_YKa1V%bNWbW*}UwH$}tt3KfH-SkZ7NjL$YaUki9_O<_k zS8){Oqsf+5JqopH0uH1c$MpLLp!x9^T;xRSHRT{UT;h0$?4=dgc0)#QhM&pC4*IwU zg!CA^Oy{iM&#hoXKC(t4 zFm+oZwo(pakNzq+_9F@1NDk*%EP=kE6ek%i<;ot5;nmVaeA}P)*ZY;AbvqtMke-QZ zTLZOpQD(7Zbu*VBG^GQ^sLYUjbX3w^mQ@6`A-)juZQ9W9mHVE%h zytLP_OK|#O5YE0T=FO((pu^$?VeyFh8;6tNd-*lilKhzDo`fu_z4vLL|8oBi(igwP z+aycEo}*B_I+$z~3EyCN0#>aF#4w77$dw+3dDjCl>Nkylz(HuK2*STA5*~19A9THY zfmcsR_}v+raQO6V9HmY^l>dKl$oLJ`OeMQ?gC;0>yv3x|bOu%J0_9m@n0Z#h-)ruH z!aMKr1nu9U*S0~<+;H4M_WW6&?NGGo1GYROJD+QSb7BMrf2P<4RX9x)qVO)s;gRiX zU^$RD4q9km+W}lp{ERccOL&fSHT0kU33re@jPF?nof=>8%oNh?k&EEoY{XL1+nUmO zpfdyU7yb4j`GBX@KBEH3)nv`3P>LV%**LPnidVtvwg~J+wp{HG5L@vE_x$f% zu3HP=_P@b{uhETiou_4&Lkhme7@CXuSrwQ*Jp_l4k36t@9TOCeg5ZtP?A4D@dn;P@kA9=q2MuFm|1=O2rC$2o5>+>wur zVt47$9^h9-+yS{_?x5=lXPk0zM7)@*{&s@{d-71I74r~37f79zj~OHAJpJtg+1A+@ zC@0}9T23&pJrmDUe)-5%C+HKDhyEn1Tjx2zst}6nUZdy7+k(dJ0-WI|;fJ#*U#wq@ z{^a{_{b~nU>&mf^&LF?X_VDS~cic%j@cMB(xR+gn2de1(#WtW@_ycRnZ+d)}-gEgU zP9mK%GS3FgZ#3f{`sRmsJHU#g_2`&Mx~0<|iU|Yoa1LF&IlwRN5_B>l`Omowjh3Hq z5$WnJdgtMjl7RAdl<)p?8a9w#(h(@0Hcbm6o)hmzzJwb`9fL!)(dbUsYfX;B%ceN& zL+5Pj>O=5ve=KgOq&*mY2>wh-#E%^myLhk{LJZ^a51qLt*O!2jZ!!KLJ0w5A4to9m zhx>1lyt&*2`D-$40O@lhZ;IKD3d5ta6w_Ys3pUT*qryfpHyh;(B~%-{rH5kmN&ay5 zd<6DeCgxKs-C+2i2%NE(;@F2nAfTCKuTaG2{(S{E%R@0UO2m(czJc9NZ*Vc?J}&6K zgIEa19*R+q-~9?AUcACHJ|h17%nQn0hG6e^A}*&J3~GHtFcU?5-mU=nyZjM@3ahVCE;G)-XpoBg4$NdRmpBW{`mKNzz!0K!5N*o8}e@N|P8$lpz1*_!?k zbjAhC4s8y?Rr54*yP*$=>x{_EsNibv2PK zqPmwoo{mtUMLlRGUXVA;6`l}(5O?;5d5#{ibZ;U9Dc#%n7&5IAS&_91EPQwmTrH?3 zP|pSCjTA%U3*x4HqN@Qv=j$r9@76wvHpk2EIgf<-vjIQ%rBESFVn?UgK#lr*I5IGa zCA3+C_R$64L;ZSbrq=Msejf7La{v z2z1X(WOKJ$!tskkp&xO)-W_fM7pL_DGpgZ?46p!&`Tb$ND2ch-n1ex=BG~m!Vv#-O zFt2Yf(5g*hB_qut>U)pcFoPtv>5@4N=q(F?l+^FsdZ5e_KnS^V5k(KX4;xe z{R^hBtNDXkLt+ZMl5YYy=cO9nPhq<~OjQ4=xzPN^>_g z@sVU!>1+(O<80L4l~cduFcZ*RV5hb$Dupe-Wdi2weAL?drm{2FP2lqW*J{hDE_x0< zZ~M$&ZBTwH>%ZC76}MFOiN^N+K%81P)yOSZF@@P~*=kLv zQrXRcreNN?LM@nT&etw~0#i#H)N1CZvihZFFjV1>+K#s=?DY(D7`Z|YZmmmU7dp-1 z)VSWTH;%rcU;&$#4}iIcli9j^mT>dtFi`!O#ERN2VNl>$0G(u(`@<6Ux=(?5^i3Qe zTSCM9*^qxVg|!M+;5cU?_$s6@+g5AXetbE+wn=9D)t|y!V-?s%e8Eem+d|)n^vTeAlSHzcz7i4NfCe-P?D6In!?1H{ff4#$rZZ|odLcvN);CMqVenHCPv zHtP~tM|W-^Abb7-P!?2QyQ&fNfH zBkffkjZzrP)dybwN_B#e%%bn>!@-v~RQ0Qq*`cEbP}{mkHI3%7VvQk0_-m;qZ%<|J zg@!O{>n+tO185BSh6JWLQT0#+acxTt0WPYl-hPtKqCXgdoKwhp-!tjV?3V#t(fGN3 z>EaBga>5XVYa7?;_03>~OAJ6&WA1vNqzsmvVE`+-4L+ZHmccw|{I_o9eb$RjXU&?1 z;GaG1OQ$jMxE(hDvjLO7)Tm`L`vZoM8m<3jANACzD;oglntw_EoXNH%8A6rLr7xfU zrnBxwL-@&Gez`^%VjC$p)P3pmmsJxoS@=>Tkc_YWa$hHdX*L_e%RaeZq8-!Os)Ez$zXfjjX){lKVf54I`bN746U_|=oa_8J?*3D5IF zno}mboJ)0*d-a8p0`;(v-VpD)B@~^=V!8i};pb>mLBlwUSsgP5-^UMxpEI+WT9Yw6 zjjK7^2_V32(;bu=#!_@Uzlgn5&=7KAtlHi&9_V<=z~o zc7fvOYhMZ~gn@R1bWW^xn9y#P!z@QVfhj>zg19N0os)S2j>=s4PCeIm5}v@C^NGUv zDLE{w^a%`d%M{|eb6AmsDd3KHA=x>Xjiy@A4O8-jDc^HhnY|g=%;mza3%TsjILb$d zRtfUduheIzIoQ2#6qbhNvYH=e;7C11BM9SeT|Wzu*mMbH2Dxm3nK{fJ@l(*G_b=RQ z0rPry3BRbt~F^v@n2!%|wfK4m60lRU_@ko3=TcB$L zzCV}a6`ulDe)=g)gEeR|yMR?S*??o8wRlURkj3OZg+}7OG&L?@4GV2yQ>YrMyvS!) zd~HGWV-vpWRlpSY*@BMOX1rcez{cJr-8+2)inIz@3e_`|AK8NSp9`5mlr7ASCQhB{ zgaxN!3zq_R?s^|v5<` zG$v9%^`!TLy!y3>t(&M9GQ!|8vI>f$}6Qr2l<3(N63jxZ@@cYfP~wErF4 zT2{&&Y5esedf59^DYL#|2X=?<;@vf6?3lzJUMfB!PQ6m9-m(L|qmS^iZ5c}>U)65* zJ?t4=&RVi;;SD~*zn99HlB_)pF*m?xKg!tcId(9<-T-Iuat15y!H@bGtG1T2t~+)h zj5NWw<0{w)@{4EJJi#una<(MH4)WHS;RA66E6=hAo&J_MuBV*!Ut|yaPFZ3_b_F{; z(*dq6ut7LUzjd~U9z7czy@LAgkJ!PckCwRdc_kZ~W(S7Uo8!~>JG+x(4>cZk|Bq$; zakM=QXtl%U3*VXZcn7%k!4XHaSF&0<%cA-@q5oIvk3Q-Echg;PwI<;Sf3Sz%!(FkF z@F?!Sr<$28cj{UD&I}ehfVQ#+4mPi14Z|FvHQ5UThgPva-VU%?!JGOY2~+xxBV73E zi_O=n*yBzI_|nG@3pNpUcZNN@J?V|2Pu0v(-2t*M_@UOA8rHtn5q^ygz{y_KEXLOX zM4|xHBP?;P$BrOBFBmnu37=fS5pEj)vBLpW8-lT&u&OSe zaRg;(g9ATKhBR{U#ihd?(Or z_=GIx2VsLd!MLSSn0}z1by_;XeE-iF`=FkU)N=%@iYSzw*}x{tIl=UcUodJ%1H0Dh z1k05W$3LwnEF&ivT8LPAu7QoZ;Rs1L1Z)`A$f}o;A2gNYjHr4RJJ=a=b)r$AXWZ90 zfyQ`F7&ncqs>TW0>SA!v*hbd)(-H33Mx$k6BQr^-@tefrYQo)0a&(3vS#fA9*T`(m zoT0!g0d?OJHkXeR{5TMgx_Up^Z42^=O_NY`{wJ#-`|8r_L_9U8iPgC}L!EsJE*;Ut ze%yD0Q;U)@F|UceTI>STYf|y^?w?FS+XaeOWMFj9PbNWU`0h`+8{Wk3Ik`Z|)htvZ zeu3J2%wT^zR>_VP1ghM_)QEOvY%v_+? z>LT=$w6Q-2TmcPAur!`HACJ4juJlrz=G4Yq|8s$?Tg6Bf3#@IYE5vUr$Lu5REO)gF zq^u~#I61N?au^@kDo9qe~%zz*pjHk-bKq~Qnptm|Y?zq>-wm!HUH zbTX@27x>&rn70+3?0&Z^>{!==|6)4X&uOkOTe}$*EW21ks2i+SZ^a|>oh+)*4JJCY z<72;0w)ChQTqW%8HtjApY?C{DO#Fp+wsx_hO>Xcqi0ZP2ceCL%7eA9$3}4;N@{hQ| zR=0M1UDnOk?sf;C^xwn*+|5R(x`9*tFSOGC%gC{Xn$Aw_b>uH=KHv`6^#^ay_{ZkP zy2Ij?-KdcKj}81pam!wR@LS72rnS=@Hmh{u3%4G2eJ;hd?*7A5x;<=m4E7*WzNdV=~v1s0qp%iqoSgsdoe*1l4XPp6oV?lDDnaF!f@|IQOSJ}WRYD>*J0 zdqB)QdA8d_j?2yTglP*DSWLSdKQ!12_N6Pb>6LOk@R=t>s4235ZSwrX9WQuXr^K{Y z%JT^$yrAr;68q>O&xIxrxc5ncU4AXk?@2si3jKDok^&ERqxWd{V%ys3nJ!OAsa9eW zPbl!DJTFMI=*`}4SKzYqyi*E zU${41&F#zlCo6Hohh8wcZy)w|ff9ea#v2aJ>`Qj85&+9({b0H65Vqc@H=kzV2U|i0vqy4$xX~1UaJV{@ji+nJuhjEpK7@TZ z{eK)?by!sG)3#edB%~D-u|>Lfc9*4Nfu-B-?(WXl?v@l3q;qb%?QXI4we>Z>=lA`0 zuD#BlbDo;G=bo9)cp>t|j7Ms+bwX!EtDmMdA-#A{S!Wzmo*~CXZGPC)8OwrC(=AI) zuIkeTjm2lEK1qjn_;}u?user&(b?xT|Vg34ToG3Y0XVNe(Br|j@pSd)>4nh zo$Q9;DT!3|MxU3Zbi=u)XX)EQUC!y)9p#>hq}r#)l9=vT_dJo#xEt`E1>G?~Bat@N z>GF5(j`!;mDgK2XOLcp|Uz$Y2ej2bxw;nLaOQOk1M*Jb5JDfj=>vhKLRn-k`pCr?+ zlYLn>r8{cR2rPPUU%oS~8}>)1&}b>9pj_5S|#;LvX*-NL6djBj)x%@cUHSRcOYp-aTM)KZWk3oATC~J#hS2GHqYg zmnC9c{RSnI$0B1s^}aitZY5D~XHnN{To2f1Cexm^eRxG&4@fs9)A4F!URl%w5soPo z+0d685A;B(Qwkm0-j~}x5Z@_q^>0xooNld#gR_%qs_3J4!dMN1pC*%Ci!s|RQ^RDW z&}(ZGzIR#;cN0@7?{+`7Nmav?_*BZ-ZORL@)uHa5Mr}KoaZhJ;cxj7#hxYwhc0e8a zH_|9YX8@O{sH1sn8nu4ZpTGW9$B2M)^z!Ba{;AayrUIKcJvD$6|LKWCn&~7Hy*rm! z^hDf~bZX~2n3tyY#P!7)ls0E5tH$(1rr~+IHgg!ac`xqYmQE&n2J$>-4Lq$sPt)%V zXAeIOtlynM7GnqViTfJ(XWn_*b9yLicJ75ik29#J>tL?g(F-s8X3&)x19?<@FFX|a zBi}Ly@cbkV{B%7>T3h?G$65`Pd_6~jo@U%Psu#XoNT~c&b;}N=C*wO=6 z^AqWcvmQ@(R6~GCB0U?^n=O3RV00vrFjkipC)JRymq;HIb@*AP8dhyhq#nn6^N%j- zAfqJuF-@HD?`pWzIf?X-ik{1H>M%Z&L}Qle^F2RxR4h*-lhdN^ZnioOh&{aYgdu1A zQb(JFB&xWi%jQNsG2=-R^}4OcyJq*quN}!`0R!GRx+m-_Q|P)&AO7Rf6Ca0){G(Pz z{HajP=j&8@_sxW(3VLGM&Qyw+)0dBT(}4AaRJu044^N)00rzfcbRxYkbAtw??x`f1 zXUxV|G%)&P3gwWH6^k_BTAD&dYQ|iot0CIIrqI&vhMZ%n0k`SNbWO;pytGP=f8ko5`nRfo8$EBgYa3UauzAQH2O^RMn4oVUEMEZO=t(V}i zrI5uQLmqs%7vjrP=u)-;|7ojanXeBK5@qH=yS*B(sW?*2jxR~Mww+Ac;M@`}1NQaO#^mfEsHKo9NS9~q(83Du6k%KHv5BJ=y0%ZI zBxfC-`$-e^X312g)ti-DG|_k?nYMn_>b?kUj1xlzgVXo(K1GPN-4eG+xe)aG%0 zw9(W#g-#Uo<}n?$QS?5UhWYm9j?=ZVxK%Rgw`lX(P1-2AohXXs`mk{j^558i3qI=Mcwjn}7wNO_SbZ$M ze2$(c=!tp=`p64Qr$!HbuB_C@?8oVJsmg#yi+Tu_FVks-(ttl{7+~w%3_28J$mYHV zaB4}Xr=|Klc!mKM&B>tF#RlBA$N)Dq&eK)VEB4>t25{VxLA^#9a85r%gjt@a9!Wy3 zjxofMRG~X`4OnBVA$&w$;iNc2UfyVkYq!r+drf2Bci0fl-_FyF1|y!{(FotRU7&-z z`|#=;hNw@vK>a=Ya8H>LD%~@wpMeRx^)`Zczf8)BFyX^Vh8WwDN$ua6@|E|7=#rgD zopk$g!!kpxJd;IdKlkVLPYv;)eHLAeFy&*rjG&X1MYsR-<5p=#*m*9CcE3Gdk;eF*o<)!IOj&)YG333nC~K|g7w=?@s)$S~`Q3-3{u&9cW2Ugv`m*U7 zBP=evK)c@>^T~80tZ}?ReH2D)an}g{Xx_8VbR$$GoTrAahWyrA{GOXZZ7%Bb z!Ec86W|2W3g}lo7-&iy=DF3S-S4+hAe@v%0-ugW7h5-u0(`me1kBe3rAYe~A`6lYJ zmW3g<7o}6BunBKoG(@OF23_r{$3E&tm|c)T-7WNa{}>~9Y&%b#S`66spb>1!&eM)8 z176qO7_-J+pwg#?eBH|!)1Qg>zo!8|m?Fl$;{uHob%_V$7-L)C3-s!VKF_{pjNO$N zNU3MYaVC9m>tH60erU`Zzl?EyOeSp%HDb5PebDYsCTaaOW*tQz{M$K;)|@crq|82W zT9ZZZqx$lUEqxH5nniDZ_2K64ePH8$kv9D{;l0=U;JM>PN*ZRu`yKk?+pUW<_P!~f zp}sh?<)Yx6nDFqEeX&X{hqmo8aI`xN5>q64_HSB+VJMl%mkOt%pW%qvlF-EPB?AHuo|8xD(Q&L3N_6+AC z4gDe2ETUxdVazf!s1+BHZq@pXof9n#kA}FaJDWsLt0%i^{lrL z{gupc^i2`XsUF5h2M)lUYlRfJX$VKiV7@xZ99#bu zQI6#hc4;)nN1Y?$s$Me|1R{sDvVYD^jJ@UY;tZG&J_Qbr37kL2r)gU~jX1;^f! z=bRdZzJJTeOm8Hg`8Eg(yOzgJhQc+df*x+R<97Xq;@aN|IEHmBZ2c zXcgIhcjWY};ZUxvqDi3+eD=d|H2+&gnY*2M^?(sL|DcMld~@KJ2_vxIwwlzmoVn@X z2<(cfrcJeud`;g1=l4`o%mHWaC9}Yjgle*0@5<6^BcQxcO}#Zu12uHvkSoW@M`HHO8qznHa4!c-)&4Qba9 zZ~R~hn~gQ}VTg>^mRMr;(Ha{0RmLR)tZ*`_h6eqTbIx^3oS0NYciy;h#R@BoO0J>U zjdJd}%L+9Y#D8DQ`O04_44GC#FV`v9Q`;Ja=WEC)#EtdFS>x998VdNP;KF6r2zygQ z%U{X(c555_oKQn+;@o-H3u}DPsG${SJox(_YuNm)rYZeBxyN5?v1J8Ln-A?bv8J) zrj|m=h@HpVqC<2o*}2Pj)E-;hcdsRHM>&T+wZ-?`S}I8*4j68Sgvwgdo-O48nRYnZ zwvH~naOEy1>@c899eH;n9@Nbqriwah|J{lAb+t!npE{cJ%$c2z*x|+NTB^u#;UO<< zp`KJrt2;_K*WDJS>uYJ~6j%0vjo{1G(zm4&o;1Y<>ceVjQ4w)pLmTWEUQ1)%O1Q4X z8mrZ6DX*23-OQ|!{;GzOx5`*YWsMUpHIz9{#=jq1Vd&i&a(E-<)l02l`K5+j0*JGx zTj7pjEjewI@X`OQP%Gx@pLMS6xx@;(gKDX|yDL`?v4*~LEnTv8<-SL((KWc1v=Uvp zx~mP=&a9DSMj>_cF7^rRG|}-*e{O3AVWQt5%$M zC$9fuix1{?r2ff~laAS8VN@LzEOFrB5%vg~QAf>R9C`gBdnCTB6LD1sPF(GP@RmBV zA8W_25*^?^yPiBB*s*t|Bb-~+llvM+EB%AZ@&dy!_hz;=G*YLwJwORZ6NmwTTZ<0f{2F=bh(eX|BDNX zUNq3B@wPlx?g}rhM%uN^n%l4|W_M~NV>MfLJnxE4vPMd7vf&?A65M#-K+kvD@x2UJ zyq(=hOVVulM4<$3XBsK)n>F9~B|-bcjg)%EmSbduU5^^+u$2veXeMNSYNVw_Ry?qf zuw`Hq?H*vsL%pOJ;nGC1)V;=vr~Q)RcZVh#Yh%li zFQiCb-9$TPTXAij4Dy&J^6F{BPjARD_HYwv;Ir{BsBA)K8XtML!!px5xu)zBf~4qb2(<_Q1}HX4=}?n*FYN zpitUO7uwl!*T){Xx4)T!-dVGeqbJUHX{Lb>ZMo3X6Q|>w>CjCZUUb3}JBK&ZxmUK_ zuDci7l{eFsCTmXp;fYR1n`uUY4LihoLEq>S9W1lr)+#TQx4J}5iPr3z=Y^bh;{HTC z?mWc{KWoJp*VwSSp*I%%X`&@J?YQ`_7pBf>rueb89JS0F4w+3PkFsa;jovU+Hq*65 zww%(-2cIuClg3gTK62L^i{FahPg--LgODz6muSN&D|Wx-4N2A|s<}0i+b{CLT<=S? zr=Jy{zvhF|4VOr&X31(}e1*?@na;J0;4>w@_?CW&42O+mA00n5?Y~TOo(^N{eSTQp z;W8!M9KnvMei%3H5=E7b!lrlPg5Ic!deGz zKJ1UNLe6ac>&PR92Ec4qJ$1P4z&pkVV8M-gda}Zv70< zxyV(CK0SmC39{pFbCkGOUQefl%+aY-B3QegwC>vT)Ho%6533{TSqCmpRAQ@L9i8}L z&+WPfqRsGn>N>-YANC8x6_+}?7b)uLO$|hk5kg+o+49^Cfq3U$N1F9^{QYVm7FgDk zjX0;f-v^>d=#+0hcD&Ff2oj5WdX;6v93F(OHgz=cqp)XEf-u;&o@O`;`A`;w>k@Il zoh@g@2IG=zJ;ha6^Th$dxGb*sjj?9k9l@~kZy=`!mQ1o>d~Dx9p1&;lPHHe7R5#G} z{E-~ID;Sxx8c6T`NLFv9Li4sp$~LoLtDImII5$#Iv;}YLt3v(h1|t8F{9&pJ2FZ;S ztsKExGgYX2-azI@E%?tR6{^11)8+}5+_yr7V_srDF_QNW3c-Zvda_z)CH(pjp=ax9 z_+3kOUm1c=8FiGp)tYH`2>xqZPm&fZzH%!BZVzke+FBdl-V}mO8g(>6$coJtp%{9( zhHBT@vcaHGyjQQK1J7)D-MUcR&ZwrPd+oS#c__B^tfBJzwtVJRC?;*HqP7?8IqXp= zJPuUT&`x%IbzvCvgR98tls$h73&WquRdko^*{m`Q2ZmNs*E$E*KN$u;$4YuR-GSA6 zg=6o!Dr$9K=%x|jkVq+<`CGEUs&&Hp_QL(FvR$1Ed z{tgki=vqnJR@?KEQ4uIks-mOoZQ1Q&1hT>^X+u|g(W@;2ZT5=)#@X=zyGSfE7dEP{ z1AiVKi5J@{h{U&j-W!Q&?aOIL8%LhEBN9&A%4w&u1ONOQ3EXA+de4zZeT>A+aHc(Q zV)bp2`24+;VzxT-z4!lnP8nTKbK*V9DCErp4fyTAYgAEK)vbbpg|7S^5rx6;L9O*1 zcztdZjxMR7_aSz?tSAa$3FYKvWzT!`qT&0!Ld216Io&84?e3RTtgjuPT@)?s!%BLz z&4!mOi$<{Vk~hT0VqwP$ ziWqIpapAFOOs=4TC6@fnAP$exK~s!u*fA>>546guT4K$=wBnFz!xVH)$nYLwB?!O}JM!tKc;uYUBg^5A>^mnO0}tfT-aID`nH7(B@p<&y%!$wU zj)#d?4(&Vb%sE=|@cbiud^KlYmmdeim)W#-tqVWRj)UrGF8O|OX2+;FTse|YAEr9- z_Lw-V>s&zjs~x$qFb>Be3P`n8e2;EC9<>(!?-P4oQyhoQCkjb^(}6d|#bM~-0;=op z#7ld|;iMv$uH10p#^14c`7n=CoLyM^gjkmsIkY3wmD?PRMcwi|8fxImjJSzF(%0^FPFjBpMRxEMhlxH!h8e2ej_d1Kdg<{>S3usch6DOaH#g)<` zdeF;}kDQK0gl`c||K-S1uUKsSRY*CToH=oA3|va{sePoYh_S}N_i8S^ua|K5H8I%m zP2epjiNhUYaV;jF&RIz~$UFv3Q*xPHRqOo5yj|$F8c~a+S*qP_hh2JtB*E1TH zzjA2fC@GIEkA`DPl}(P&kcMSFr3eEU=s zitVx~Dcg;Qdqly|JBxC4-MK&-h3&^K($hH#wtXH6AIn@ip_KD>?t}wNJu+=}}^@7Sh*JS2pYsjkz0&$QdqdG&>seV@fEr$%!|M z@xGW-NFyh>u);G2%hSu~TBZX_?nh(#s8U+~j{`?7nh40NH5 zEiVp?Md^WZI_8`3^BKHMMd=GnJcFSM4?3NpT-Hqt;O|+&;r_IC*>(ZR)1fXM;DW2 z?Dj4asRwh&OWTb%zmA0bQ7+A&Cg=FAk&u<=Q*&z>E4D{s^U!=Msh9D&5s`RHxgu`p z#tp+F@${{zCwAG5M{J73+v|r8+mm{#{cn)Q@5qqOK0^@$?lEo}HZZjtWrR{U5 z?`;LYnIZI1nAnF(1y9kAK#)A2jy#rgmR~1r%s56PQ~B?)E68 z@=z%&EFv-YNFnXpM7%}lDTCofw4y-5%RfXSsz(Xw40B~KaXt4~2{{G2@E$StbTcN6 zMn?|Kj6$y@CZG2X{8lR(4$}orHPwYTiZKQ}E~DbZ&TKq167L_EP=%K(|0mvccUiH> zo0ITI@h+dHBDyLe9`iH;&9@3^`FttwpDpz7&_X&KBjfdk5vZO}KtluNyoSSZcYhvz zDs$u5{BX?7$Pu`TJKxL%BC+fTn?CHsi=Y`>DVHOR4?#b`(hvD8Jk^AQA$%j0` zAzPhAmdm`j&CD>&o1RU@`#d?ja~O049vfxg!4oyZ@M~l~1sqbaqF)%~?)fA$S8&H| zVJMiNPd+Jb-1d7IzFp0y#@=ph8yk+OU4_(UwT$2Y6OJeSi^;!)_<&9XLe)xWn~eBE zcDSfrP)gN*Tv_8!ICj(*Q{XcR@17EYM$Zy@*H0qyy&~}ZR4E;ecjc6+VxM@Fk<&&O z{&pz>HPPZ6r8x1({0MwJ4f1&8$cqL=qVjDywH5Z#m5K-)epyax!yLJ*DgvkXg4zik zG|4ssW89cd|Le?m=SAS27E_d$3%AmYKvhqsx0_t}*y(W0J6B3&A6>a=SvY%tLe}=909t8RGA@X%Ohd<*RYV3xo-S$O(=XU#98Pp z@S>bhl+MVdvV$J%vpN(H7G%@?9$p-~KNN@7W>dyYFFxNt6xXKbQk>G0JC%n(Z$ma2 zH+ykvMhH??OR<;dpn1qd`~W=w(;V#_f^<*Et`TzdGoM*6=ogJ zB?Esi?lwtci!(rKZ8GxvsJhi?h(^^o!`|1gYRQ$kjEr5w3F6q_EG zlCD^zyu46!zgbG3UP*YZc^H;CFujX*<-hLYzuQ1&16}yz=TMw{T2B2AI{hy$Vqg}X%uj;RkuT+7RIDATf!ONLXaEDR8}M5h;<>zZ&gOq!litCLI|8!mC(I^WNcX&f?Ijf|src!EBF0>i)b)uwE3$(z=1@MB>v*!RnhG}6 z`LutOC$~NrjJ)Jrk)!FwYrY0!iIC?5o_YyBbuc~~6wrcfvEPL6W^bQI5f0uwut%_{ z8(BcR+Iw+LW)S9V%Oi)4-dwOh2!|>Q$j@8sRo5VlxSdDVP2PO6Ul5u_Y-RigFYZ?t zh&N{WG^4u@w@MGhn8}4yT<*nFLISa2bw0iG@L@aqKr~)0B-KwZ-v3C6i@S@-bG9e< zX%mRve}r5;?a8ONDv{||L}P|~bK5CO-1?PIomcztUMMkeZ2|Qu^kH*9CH4rrYixu! zhkp-%MOX<X{d-aZ+2Ro4x7As3>q@D*`XNu=&mx^3Ycit|1Hg^Vv>8NM2J!#YG-GGAalsjY=qD zusho<3W8!#5vk4f-~mlRh$<}?SGUMi$t13frg8jLM#imBr%1%HkUhPh!W zt_-V@-ITN8mtd4GFQY5#WZeE_Fea%)TLrm{L$p-bBkUG4g`8jIsE{xe%s37xLSH4&jgj4g& zY2_aYci0<*8@8ZNyQG{pJqVeaOlz&=e9xvsc9vFm?dS#^9O~K!C0$~`z z6esMZ@;iYTHx+cdNy@IRgE0P3IsLRJzHc6ch{g(@L?zr+Hv4^`gl+(#+qRdW_IA58f+*~Ia>+cH0jbluer{x?lIS~EE zl~D&b1&6r@;%8Nv;QuSw>828~kC@inlk@vON<_9Rr_REjIq*}7?A{<(eK)?gQ;Fw2 zm^x)CxMsW(mwcHNj}<&xoX2!u(ApR`zR_Qa7->1(exUd9ZIt0G?)-(EAUbeCuog(kzOp zX1O;TuMR*sd1$4M2fDLc@Vop0@$M#e5tWmxw(<-KRpZxi+ zhA-@dES(;&b_wHsTzcBSic}NL$I}^Z%bi7geNzBPiB?m9}LidBhcDfVD zCEg;C+EPGS>cO15+6!@p`BZDF;?ZSZ7(A$u_BaOfFdZ-S`C3GOo(6LHeNUYA6ZXbD zCCjx1j=jE=wssHTNkLxN`KXjOs{DD^2QTQFG95hO$EQrapcGh>qFn%gYw^U$Vqw2c zSMsoAPyBdYOfwM3tMoi!JH3$Rh6M8l@%z$$@@eHQ6;Imk3B%WgWE>dG_AZ_nKDmJQ zWUBaMS5JhlEuux@+g>zyK&ykW=Z~sH9~BSLwy>Bk4+`eANDq;vB<$5-B|pFGf$bfb z(qHF>*m6`t@n0mZEM<7sZ5IKCgG zIm?f~U-LlxW~TYK{Q28{4|w{O(PAeh+r)Sv;b#fakw9K<>VdMC#k8|WFppU6j=lQ| z>DXo!+n9NvI9}-GR-rs)ln0J~7xu&F5RU%fj(vTKs9=_gy|UbKd{+UzdmO?8mbv3W zy6|_xR2(C9N6)fCvN;^W&4~*1_?$;h9$~EXbw{L00cjhAvGW)OY$|g}k{Hhao>pLo z;Bx%h7S6#V6?k7zK)=6-@~aPSc&RE99J3JC9H4-)@ZY=lR`IWBh44X&sjZWWqni~7 zNfNraA&7r>bcblKM;S4J+$a&>Fh{J#vOu=H;0`NuCXep{Y_QlJ{|PR^5JM&Vy>-X% zA58KBe?BzO1EV{X((8A$#C)celWiM6{W zz)N7oBd&PzA6E~Aov0#RVHcgdq&L}z`v<$D^@nmYZ}R0! zTJGro7-VbVFY;d%*gKyoyf%OvySO7Ltc*Tc1qxe5fv0Arlyf$Sf9zI>T3DrYWnK{H znu;~DDxuX+gZa-ZH({q0(dV!bZk^>Ou)#w5dnuHcEOo(jZPc?}nYmOoOf{ zx&0eAEX^t-WxGJ0Bi8-QP;p*_yt-koKw*Vg(|rM)ykCL8R^?>#+mC;aRbZxd1&!P9 zD{?3m@Yq~IcgOhh9vcOe`^#xdtsj5*>IO5RN6uLX@cdjiXl!E2IjR(WmEEwwwv0js z1@U|*Hf-6tzvl*zv6lwq5h- zpWq1oJVcIj;w)@g8^P^P$gv>b4?^a1P_(_A)FI*!b#-5RnHd!}%#C)MiBpH`Yj@eqHDz#}GCOm10aU zAp>iIdFDR(YKWLd{Ob^r-YhK z#k4;&l#>mm@HQx+QDP4qN+uMaFQGT)p`30<_%frIUo(}UU|T-zu8!i2N3IwzcyYRt7!F8v#ZHF;a-9;z)e~KD zYIPnBeiqGFty~d!wSc19MzPjs!7(t+r`1cNd04RvV$S5y;)qy|Zsm&BLAhl4BZg0I zaKW4Ei}dhP96zjg!J}o_)Mic``>I?}{W6#O9g5*8S}q9gpF^kg;&|BuXN*6UMelyb z^T94I*jAiFC+cE()g)&;?~qMLtmC>^*C5ENgslg3VchZ@iA<=prYSIONde z6LIY5?u2^JJo=*+%SLKWh`OFbfdO$G)a-~~i5Ka8OFa8`cEYQOZ1UY2&k;KuVX-ln zWG`bmH^LF;b#v&bc|7mZbHsy3S#-HPfn)p}u_Edsl^#ssKD7?ed7eY%X>ok+j04Vv z=8=||^RLexFgzw8A?2rrla_uu<&jO5Wv zUC{YM5uH(w;8z!2AdeC{ZhZtl9PEmPZY9)mB#i%laKW|gV*0OFI8PtziqXPnbo&s& z>L*+wb1tT@3&Z*79ar45D5Nf4k=&}c1e1kbI{0!p{}UjAk$MRkM}@K4CW)wFTT0KL zhj4P01Pzg8bZDH4m$V}czE(=J(p0=`7QtsM(}#~iyod;Q{wj`Iq zc#TAcZyG}1IS2C5r82ZWDDe4*L2P|qhOA_!k<$Y?QOH0&-7?y$70lKqa)^*E%|9XR zlV~~KmY31v8-X0sD2GchXq2Ur)ep#V@gvjw2};%%IweBH1Y0%wv(7C!EJR##b(;Vl z=ivsE))i#9&yObwPRPkO6*R-jm(NwXi5jYvH1&!%=XMl!$kIw0-Oh*G&sAWxMJ37Y zeE7{%1(LO@sNk9xKQML2ohj8cb(04h?QzG|C)MOXOZfOU9#|1yO&`CwbGHHyjQCSS z{|fB7o#1j9jIE)^Llhj>(-Vs?)l%3)8JpF4VA|YTD*P+wH^uIFIirT|3IE9AsXNLu z1V?VAf}hQGN9Dd+I`c)&nO^Sb98^c~%Vc~Z!5v%A*3ppzB3AO)9mTur==fnN8%aIz zYH1yv6LB1yR1e&oQ%AQlq^xh~iU0nor|EknJpQr=mRmPa^H^8jIl~i+GV7^2Qo>ye zJ#q499krYj{&*3*x>3HNLC!6oemGOTdsNQo~plIkc|_~zT>zA&6#PkGx#9B`*E90i|k=S&Hw zo%coa-#W6K=)xNu{LpA!OKU47Ja4ieZa0W)f%Of(?1$29!B0Cb;RAn!|Fxu+2H3lD zx|2Wj+-qpYVF~{k?GHo2JsY9p%HxjtW7g$rQO`l})8LQx`8A@xt}D-L7l2Tuh~uY7 z_@v-?oSaideZ|-}yzz&=s+t_$yYl+20f@7yq+A;ry9^3|ueac83ZCAYodMYTxtvbh z$$864;Y&(Ita+`RV+AL~MeNU0Ic_}0JwWsjDW?g?+<5C{e|+r*3Ndx(>pB7Wd!dr7 z%td>?o=OySuckV<^4XREJm^{@@+Jhwva1r;`d8E7o~}Gmp~Oj(8d`hMnbjsKG2FhI z-pp{}uVBI-?l{l@arUfm|>?JrMgS=~K*LWwk7!imLUe)w;qQHM<1Y$`* z4Q+bm$gc$66)Nuc>gdeJ1YWU2{62i8Bb)sR6fw{$dcDPk&CUf1IU{UfLkS;Q5eVbL z3hLg9*g+={&s$ZIUb-vqzo&$$eHEp@6&R7g5ZJ1U)I_|gahVd)2{p7x-H|O4g0Mkw zK@$oc_)%#PvNda|^-_Co_!ESiPBpY~p#zT^C9q1tSq*V;;&Opcz7MOW5Az(^zd0D% z2gO{Sc4n=zU|7$pq>ORStZu2o`XeGnf6I|yM5<7Jyqeyx7ct^E6&m+d(ZWTJ+zKjq z##hp*9?tyfhzfswDrqG<@$Jqb*s;8dES#wme%VF#mOetEp?p%4@+;?5QD>WP6sC2SY0OoVRlA*m`_0k_FfC{xTc> z@*)^WtfMjatocolO5|A8(&tY${5MsFuD|L?P4v6movXqP4{`QAY}i6Q1XGjisjZ$B zZxi#D6jx7~*RA;KuV73Js->Na?0MIEfnSBx(mfG#-)|6vG9NLPI0ycc9f(!lwN(2| z;D<`FPb9T8f2kv%d8@<}vs!v+>cnZAlvvummJ)7=xcp!x{(D(NI|Rnnp&!j;{Q4=Kh`i5m`}3 zDiQZQcGM3S1wZp^wG%g;^@Gurdh%Z9#QTT%!)ts!O%;5AGh6-fQOv^)T_?UN_*Wj^ z#WN2(u;w8C5o9l-x zqedDpV$BZf*-Wcl8NbBc1aqK&9*xhU-uilOvtLcMnBbw;%4F}%2(F@578%Z+R ziGN=3f?`GkExY2vrCq&HD!%z)vokvgeB>4GhB;ye#LY^bO01`_^u%N;Y!>&bdQaoh=aI2zZ} zt(U}Kb=+aSw~k)L%DAh*7KZ$&C5xSMZpl&z4624AR3b(x{8`1oTKYO%!SfC)FyEnu z+9$j7=xPO~e-`pw#6%oy-0^utHGTH<yuu*>7oKGI8i|&9#`Y8zzMD* zqvKv&ctzL}?gIC2=gU*V-QW~kL4C&f@ygzA*qd2F{#JgxFj@X1gmDi+H}nGevnIi~fN5KL5MRG0fx5sDYzC{?e2)Y}b4uyd@eux@lE7+9 z3FUST;{+WE2K*_Zi+e-4WS1*ezAmM0$sw#NbwPbiiNJ@$c&4!1H_a{HAZ zhr(~wi{y9RT;SBdi1vSuV4Gvk7`a0D%l}025#jqZeiS^4nNj@tffEj05chYDV)NII z`24njX1t5yiL)G0QCmoFBBNNnnYfrX}jjpDH(4w$~Hh%OdJvYGIY_HQhv zXn{qT{&0Z3zuyh9P}sp*70+eLm*O9T(ibV5Q% z5w&?0!L=it;k&Dtyw`?vM65HGwJM=izr*-IxieyXN@?EWQ2rw3@a0^=tI-bO4@wuP zFJ=0-D43@oa6!nYGTP#=;+5@PQ8u-VeqUAb^O>%A)vkw)hnl{w@S7@E5Swg3i5UhV6EW-uUH{CdjgL=>_u2C?0lmPU+$4c z(0(iOWdeNo+80r-Q=I)ib9|UbOELXHC4CY1Gz!dN*_kTRSnk6+t_a?Hq_78qym_du z*#E<7s4>x#SC5zBlz%PlHFM`HFJ-vsQA_&Q6x^jkjwqqCJa)-B=%*Y?!QFihk^eHy z4bqxAGO(7hRB+MBubyVz5%HiY3Y`30PyJ&h{Mtl;62Sr9XDwm3J#J`ssDak+ci~Hi z+|ccJJsl_#GBZPtuCwZCm7|n<&XgmfzK$kelW~!U97k2cN4PCwD3JoQ8dyi)W8L^z zvkZm_wX}Gch!HQBA!?Jz$LZ|Jqr{oD*-=A7#CiX6Pl|>y)igH2o9D(!VRNsVrj>c| zv0H>$R88j}d9&#b!rZgM-h1!E5ZKOk<0?ul_GQ~260{Sx&{1uFc5abibB9XOi1z1n z;gfzgt00|&0c@$1U}VQ~O70WLn{^NwTNL&J*8yjB^SgByi~a$fEV|7#b4bD>f27q%^O|O>5AZ#w)k_t zz)AM5t)%&New<(_!Tljs)vTHx5BK4F=@JYRIZaC)y?OBv!a`wx77p;@ zZwrP0d%cD_z4Q>@LpXR#$mBc^kqa;O!;l&}|F5Uu{YueIBDbQlriT2CJz1VALGbsN1ft=W?#xZZm}*&E;L@%R6Il6BsEF!Q1(J@7vX*8_dA zXPGB=!cT(jDIfef#FNga@VQpx&Dz7BBt7OdjJ5E>5^GOd^!qeuoSlq1s-CpFopV)_ zN%(uSCv`C2DtI;b+;5Mh-npmY$h9dL;5?G%shx&RJG}7v9$t?LteV~JjnkKpq#n7G zpz+2RZ*v_ff@|H=hx+05X(K6eStnc_oS=Oqa`nfagRb!+RK9!hKX2%F$|;LjiCG*?!`BTVfwNWG(kxWHyC6wVioT# zUEKH43c=JnBPgs%fcL+HaE>)|YDy8L&j#Y^e4eK96V<8VtEU!2PwMhdk)svJ>!J+Yg_P z@F01{>1Dt4N0nF)G6^EkR}Vx9MGw{!K-R1d!WLl!EnFo)(cEAhoIHY-E)qe{hfq{i z89`sv#9%xw6wg!*XATJW@ec%}d*N^z!g!?4{Xv-8hihWW1k<(!qE7G#di{m*e)9rQ zvv34ykK{T=wI90f7(u;lolqO;kIU{3r_x*k=|=$=$Y+WJ*Yl&(f>4|5VEbCcV3Qky zCngW4i2))Q7a4}_{=@0XPZ7*%3&q;^?sU;g1Q#EL;n@A|B<067d4&kH9qmrCf$cEB zA`)XixRK)0Hn=Ahg_#H3m^<78pEgIMVU`=E7dFG}!Wf?0ZZt@u337+TVV1cYWiV!S z!|`}LHrkEUPu0Lgtt2$$`)>M;u=jo(ZoBD9Iv<*#G%6OqUUen2q&86Wh{9XD6xpc*UMcQ!&wiBJ_#tB=}Pw})_`VN67D$UN{0(-Vg21iZ0^TA zIOcB8T9u5>BV9@IQ#Is9B;%J17rH@p5Hl_jjg4I>zpe&SKPKV*fi5JftA*+bNjRq5 znT}no2F12yd|2g71DQkpR3jO;`#ZB=QXQNsNJP<8XZrWA9zMq>pcg+=C29bb!|^!F z%7qq}HbBX;cno{)LOq&IaKS$gCv@=VGM>3+MJ)E!a%B&=7O=66K@EQwk{!?tmvdwB zX|M}jXRKq%)mRj^Ig^zt^PP+15GOm+pLg|ecv}LNjdrHO;#%0dJ_*(fgbl=$)I4*9)BJ*U~yj`jUuOk2z7ycII5$B;dQfPDGCN?0c1njloWIaaJuH zew~EGe7)2a)u2B!1qE*>Dv7HB<@?E~-p`3X*f2gYB?*ViJJH}P^>Fn^0=}1VqV#0O zb!Wu$I6Ki*jzj8w<1lWN6UqM92mzk)7<7ZVfp)Es{3;r~4V@{4vCxnkjcu=;X+?4y ztU45h=lHjGaj!6KVl?_SxRBAzHdvh;#a`#G6fm_NKCFnu?Xz6z%BT(q+RD9&)2_56 zxgBiWBhlW*jcf;qSW7S*uj{$dh~XX3;vIo1o0;dxbb~r+(ZI{Wv!WN0z(OI6VPESB0RL8OJ}<#qj#SQ2gBG zMi!kMpB&&=Wtkfd2o;0$+fb}fawGqG5#+xPL#H-Z8vC;Y!k&g>ZoDh)R_*|uYY}KJ z>q@e2?cm)SiJL22XsJ~@tb84bYkQq3)29t|FGb(`nSgPsS=!O) z^VErsEoldzf=CR!x4QDf6S|JrvqxH*DBA5#UrM?6UEq%epWJBk zKZ1hV0Nj-8M)w(i@?k;{4yt!!Ei#1M0PZKoy3y#v2qR7e;l3ZPH1easdO^YHbj+3R zFm|*~6oQw$T*;wY45Mm7G4itueIFnO*Ss)1bI^s{Hj81wz%YF7udE1c;3;ucUp8iSWVI?~3?t)P${jrWH;k@?3q7-$lO zi>#dJ?TB`;6GviWmm|$&ti@RSXbgMeNXNLBk;>~dH;n%_mN^dfvADa$k%qf4zWQn$ zeq^rh4W9;>w>JS_xAApD9ej~W!pZH9WHYW7r!y!2YdQ8nYBK6Kddr$peZSQ zE^JD~kmU|!8`%Jsg$a1@lmmHAZGc=M0VDJrXzq$SI24MgNFa_ll?8xazEtL07#=cT~J--H~^d{rZGFviEs)Hx|9VQ*K zrSgDU@b*o{qRF--tHb<`u0)IcF5P2|quxp{L$8(AO{p1K-(@$M9OHT$YSZ zTWx6Hk2;tsorKb>Y^aDa!`n6`;9PxMve{D))5a!Z`xjfY+GH^6YG z1YF>6M@Rh{p`#=o3*Xq1JY$AWujaGW#g5jg@fp-N9%q-Z>ePS+==_v`GOqSi>eL7> z-{VZ*l9q7sW zHYm-A!Wp)XWaiig8rP#xbBiM>ZfOUtlt@fk=tynr7_Z_Nfq^_Hr!x*yX>vG9$~w`0 z9T9lehvV{TPNeuo1cQVy>}caPRV)UbN1q25&|e6|JdTU@NuGcbJ%60L#f=K`PQbUpe&}@1jV|%+~9|0y!Re@cLHWsOvN;RSK7y1KXaF<81c%5hFPCr9GX7{a?FqkouK@HduMSj zl-xit_I@CG4055ZIt1;Pf^caQ#}a7>&XvJv8Rtx^c@Lkrnd4*`XPWX^41-cbv9i*M zw(wbS$|nrRhdEL4dNEkP48_-99q9w(A8LPvpz9PT(ta(#LX{9qQ3MUQU@ZRS zME=nn_cG3B0LMsMId?ml7Kps!;7b4ocsf%pT+cC&k{Lp8MKJ1&bfWC#0=OOw z!KUYqq{F@b+1o;~d6y$e)r!D{&+#LLj-+>yYZtxYI5ygmq8RI5pc08as*WVfx+}V) zqA-HBCX!lO!G2ye9^C6d-+h>?^*RPk%2=~ve+w)xi^0rb2l9X43THf`vE0ppJQUht zf8QuvvW)dBG&(@JI|6UDI*^F-ns;U4=)im62#&*N?d8K{yd%A1exI~!D0OydCL4My~BpeTi#OynYum zPP<1b8W-KNr;w%=jwNDH>Zd)e>}mm{lo(VxXiq1ZV`#NK60fYYCvC<#+>VRDJ-zni zx=aLHEcpL>@c2v7`?=Sta$EqnuTCgojv7jLJ0oAHJsP>RIJbMYi}^Fs&}Aq z%oY8a8H6*X9O>2)f}F}g96ZsHwhrTYbteFK-QjT%2;R>N#IAKt^x%KB!9D(Xlw;A; zi6_9HbGpoIM>1T{2}(`@xO0pn&6&aVKo`!N_#EjON8rVnrA^Kbl)IGR-I_q`cfp>f zx_5$2Y5;0$^EmW&!XsCI{63e@5#o+ zW&2p;WwAd-PO&GAL7i~TIsj+wup^J>2uZF%cx0$Ob=M#qJ`{wLR@l?xJG|#`p1aK2 zo(ec`H6I^}vflROUn_>on?vzqJ&*Gt5tM%mL)Dx16t%qr7IOS{bGJQJ7IuKu=Wv{7 zYEQUFCDOxaX5>b?MQ{|Z|jXBvFyGb1&nTkzQs{k zd(n=XC0ilWn6V|S$1-|z6U-@z!$L)S(mdM?@oBNlVYH)RFPmYFTP*%uYDaUJV>RSz z464f6(WBH>u-O}pPbS;ZVB1!3d>V}!?RHdB*bd*{M&La@6Hm&DAbLzV-kWGg54esh zuN8*(_t{bJcQG9N6oT!K?MU^o0EQnJGsgGR#)!eYDir^k@;S>mSjS6YSas8uT3JI$ zi!n>BKWs^p=VYI*C`>$WOXsr~Yq2B-8xGjgBe`bq861a`&e~GK`9^5u9Ax4KTZ+?b zf)(H6&{5TvYKJs}j${J%yJ;V}p<+Z2MzHQ|{M7*q0>qn{LgTx3%yxG8vzXt*BkQ23itQ&~l+Q1+t#oa`jZK z9A-_G)zvV2X$o$xv!V%3HE@#ixYQ|DG;>oeEE6T+N?$AL^{WNBmL!aLVo9m0)o}KB z3Wj{Mq~9Z}Kw(!Z%Ivcu=XsTop`C^^t*vNbPbD}XN=3(VOVV?w09CnZsCdPa&d;oX z#plydlwe5)%~i1XO$vtHwIJ)cHE?%MGTOIVP_ueH(2zvTo?uCjncpOND;{$;u~yQU z2G(Rqz!|-klybEZns>zE*VC3>TH+A+|JQQ#)8nMB;pBTMD1o0V<4(v)yP*gBfGIYYNZ# zG+Xk@7Q=mqP^@XSrMB4uTpGqX<^Ve?AJ6+9?}0BO>?p{9xdW#H@fOEjrveCiCI#Yv z(RTE9ErRWwAe`{YmP}d%7@Zl6pe zLfuU^-^}u}p+5E^@IDiU3Pm$cU)okc3Yl}UV<5;f9nyfhQSj@StamW9!uIVqzMii$6;HbCH?Ab zfTG#)7@%ZHv**-9R(S$GziPog@^!H7VIs=xvY@Z5_4l(s$JkyL^gyE;Y|>M3>Rbzw znotS8ebR7IrUji&u7=fm9JlwkpdYg;K!08uw%;=+qk&ZrI4Bhj_p^prc?AsqlZr=F z&FOJ`6@+g~LB$7VX01p> zMO_O@Z035-=mh*8XF(RcFMaHdV;yV@3TIBM_OV#p^2mZ7ZfS;@Q(`b(*OK-Wv_N71 zX!MBZHJjB6+58^$k6KdEomS|$9f^x&tw=GX9VC<@a0{?4k00o|IDx^=}R5(g0a>`)2wM*l?cSST$4OyO_#V%vT#ob7UgL{xd!JyO$#dRLgkbcX`!bts>Dyw0H9`Q&+~U30z7tj- z^hZB4J|j3zYZ>5=N@82uHitkiJpdo_+IjpL;dWpkYHIV`Rwpp-2*4LLHniLZA!kMq zPCaKsix`J_|5_kg#_+s#BG{#CXm<~n~rTlQY(^EYHF z-aKwg$C!(Blzg#cxGi-IIsrdbeKDtt=kV4}=whtzo7Fb-k8x}NLK!n=Z9~?69LF*~ z{Q7Nc5_9cz%ZNbC{K$LD76E+T1aVHmbNHkf9{&nv9=bJIa?GY65sDqWZ=W|3@plMC ziH}xP$~=V)oOkRVXiW6%XhHuR`vXu;yELZYRJB zU%aYnLsx4!77~0gw9cA3+)qHmPH)tcv!RwTTq}O&g)zm}G`^t|4oUmqGhb_3QpCJ~ z_fv7xC~NBKKq$M$cyA?ZTGb=K(X2qMFt#QmcLDk_R$2F?73usDfj#3|Gg!;cNzD9r z#W0K+YDIR;chKbAs-)PGyf3vu4xiVC6_(U3!|{f3B;FitNyZ#+g!o2b+-D1VeXAJ? z8A~Z!%{qIm=deyA7H`e5pu3@su%Gi#Q(FsK!u8d|UGeDp-kcJ%IA>Q(#Qo*wWO=;~ zjvh(CaCdY1HmU*Ig5$Axg*lz&vm^6gEGBlC)AFZHFzY}JiX<$^ScBtpy=eS4#)3{p zw8F5wNW7Y1LC0pdfo*UEc6aj{9a{C-9IElFoI z*TLNRy>GUp;wNHwvM>mP-&@k%#RBX;8i*KRMO&2-EKUWWVFQEGA0qgD_v10KB8Cxw z<86OToMc7HyoaZi2jH^j{8?rK^zsC6UTaBB8Df~_7=&Zh`LlM5V93W{OyafQd#3{~ za=qwyy#>v$Z--F}!tjL1g8p4>1CM3lxINT@$``akhEpVdP_v**qgr4+$9UJSm{Xc& zGwf50K|9t<47}C|59h_AvzIwVF{gXlxj0OdGbjC@bNMDRa#2_-H)VW_D z?#3FD#mtFLh{Vqy%t&rQGwf-P!c}Evq{4Ohv8FNjY?>LF=QqICy|Fmf%!~qE>fzhZ zINb2ulr%2X!t>w+{8C^_XN_yX+d2tdu9#9lRTUiM9)#{LQ~Ib}2|3oO_(E(-k68cQ zq%94_?@cLcS2^pYq~V5@rgYx55za~QWDQ*6KK|D@Q_9ig zn$M|td}(J&#>?u#G&v4WE-r)N%k9XlY-HiW&%%qd?=1gmX=@gVDP zUKco?4+uh8J`)Ffa=jD-ar$rzs$$;I$iCP*6)jWf2J z(j>!1Sj2ejArnlgFanBGanAF`%2{c|}qq^6?$J`-A($ok=1($HXv2{lQU!HVc< zh_0s8Fsgzvw<#E|ep|zm9GXZgx2~D|E2Ns*- zP|eqbp1Cye_ld<*nI`mfZ6k;}qp|jy2~~79f%=>%oU3U{S6_3CYR0{QBvXoGF4e$a z;rP4AloE8ACpak#ck*?{%{G`ZClsCgm{D&|JBX%-pbW1a6Q2Kd--9uwlYa}Zi_syW zc*WC{G`(8kv0FHfnZn&}kB zF}fzS%(xzc8GHZykukNiKJfmZ@wi37gfySA2SG|AF1lb$V%9qDgk)^_ZcOL4Re<42 z9@|P|icGD7Sk5mRGmJ@Hvj)~YO+c#{V`}ELueu~2FBI_ew)GH~8H?h@#&qUc13cjR z-pFEOy2l)lz1~r{_J=X;UfK-wD*``^F`?JYPoL5pjzPOkxQ^5ccb0~s`g0S?u4Rqf zT_Kosi^qIUJD9HKJ=w{WN@t2-TWbIsJDE|gw+Q;@1TrSgjP7zD`O)A2+}~(MPoIdu zwvn;x{LI8vB53LM$B9*@bkm{(PIK*OznLjL-PR75E(BpZ>*$6u?@#JUFb-T`LerkM z!a{-jBWrmKAGAPtZy3I?G@)Ic&2ZB$0{^>XOiNgQLob#0knP6Ig<S=wMAbFv$~x)mY!ylYJ%rB;k)3Bl>Z!3cQ*VF`&qZ zCdJmkmp}2iaGen?71hGC+BmE_V?=X?)x+w6vH0hR5q0ftfSZZYm~hjGY}K2$T%zC`7Q0&h6!bxKaP-%mYgG13*(}WziverRV z5C%q?kn6+_DCi%E06txi5v=4mHrkl%yt%f#HVj2F#-x|p3>S8UV{yF^Nu@Wz`3(^`pMUQ+Pv(-0 zh{D)eMl@n@1C%yKqv9MRdj75s?%#~TdOagj?W~2fk#Q&yZba@2YT#yOJo*nYqWCve z&^jU!(ang)Bv-;P-g7>DG^D!w<*=k98Q+!|QoLRnJlL9w7S{~P%((<=#!kb2{fy}2 zniBRRPDA%yh7=N520LU@@lui@vAI3#f+pkm5r%Y){XT;KB;xq>hO|Sz8om(2PgFJVRR8T??~6$D&7%A(j59g^by;xSaK?-&WQ@Zgw2{+40|6RfGTJ1k?&Q zq(bc~*m*wz?dlAu!jE&A#w4sgZ$O_nS3sOi5@tsl&_uIx*czOSJJbwlTvi#Z%1FVV z-wcS(vX4Mm8XD^xlIMvcu-2N6u~QAnPQ4humQTaI4-M$}z)~1>BNfwY4d`TAF$}hu zhA-zDkfU!Q``OMw**pU(I9>=_*G$Lbb_TSwpcv|l((qqj1I9d*!lZyyv>b0hu4$#P z=Vl6;-`1xG48n5JOvc^S`sBQ@6k6w`;FVeW)W|**az<&Wv0tBFcNeoZdn#@;*Qcx> zh43$J8mnu>ec^=QuGQt;7D!PAoZ z)VEJLxZg~|yW{lf!`=#5vN#c6ZP2GY<0?oDA=*e)A~#$-Th;dQXyF$TvK7*K*q9mL;` z!I=XMsUPDR94n&nSePL-PHq6PVKgcz8j;1`Mp(Nr64Uw`(P{3XG}VRU%g=_)WoU+h zRblJ{Vnp{?@2J&26uu)2R7#e|Q4u-VHx(SpggyYmoo=bdoN34#(Bl8UC zykY}<;q(2rjsbfK)xnfC(dg)IKu@?HHKUTxptt(;Pq7B1FEZyVN1s0Zu7VjgJZ=;9 zDZjW9&@2HbP1UEr@f9#UC=p+%=+j6lgA2_`s3z!9-0V^q$Mr7xy?Rvqx|qHEcs}^* zk^6`u*tazehc4BlN4`a{%OVZ$$mx*-KhwoM#CH#LsUVU4M6&sBjr8d4v{G0

          Ra!FeRxzFlmaN_@INE`MB;*yN5jKb@sh^MD8qBG)#lqQw)1vzbPan*}$8vwh z3}tUn5!W9M<-@un^o9&0r+zVp7lw1Kc@YEqj=(&#fb}uMNtXQJ*w$fukabd#HB@r& zB4Vx#A4TP+E)hYkp3Yb(N3ClSw2;7Qk&s{PYS~>@it1 zQqnirJ%!zx1HY}3oGu)VPIGYaL#6!zSC&iPI!{5 zr}CeFE~a&-GT>?+jeAX{EBQEgcjAhDJ_F`X;a~H7=F9gyqm_?A#YED)^7zNvf%^J+ zELtP+U3izHjK*Ux=T#$(aXfCG$A9O?kg!XBe`7Q+3?p9QT&K z>8Zi!&&SXd(B8GE@97`o=hwk-SW$x ze40|qf~%(3RFsnRxd)rul`^Ei3F=k}9iR1}t>odKZ<%s?VlmII_2jAO*jCKx#eDH$ z`gF~VXU~e*FaO`7p?t3Uy|C6PV#%^T?3z``c<GbxnIMM z4Z$EZmw6YgSR=kh?RyRv-v_BL+gszeRD6$|Y-ss8ms?kDSt)tVYM;@J8k5VAt7G`G zF_-y^$MRV6Chz0pSo%AMdE*^;-Yy5L=i|9xo5SH%6L_&i{2)RcczG_HM&~AqhChoP zX%3te-u*Yd@yrx`T;ZLue4m%a*uH-Owi52P2xoGYk%F$~%)cAJ@&$6;H4w3WeYYsC!lxVqgNO&-i z3!8H(j~Kv!HhJ8gXi1cR9_z;p!16*qcRyIL&$xg)m-;bC`uI;z_7$$M^z|kFr$`)1 z@-?S#3%Q?H`tsL&!OiT=aeSXg>bu@Dr#PRY!M)fgc&BTdKJ1jZ*;J!9_RfU_6q*TN zt&po}J%wK+^;f(p<7|uB7u$ngMa8^HFd_e92~%^7u{kdN{_aM?PZj;Sp)nx~i^#ZU z%z>lg8)n!;a!~1$b~a^!^mi67@4>sFqL=K|ll(jRoLSHlXNjwBgUvWyk&ouoUW~jZ z@#0-is#@mp(789Edqfxcw>et{4;+%$7uWu|lA~O4@>n>=RP=DU zG}&i@#o|0n?M?V8=RqR_Q+$*1Ns;eyGNSyGD7xC6xVBQSIvG*r zT}-QK-PyCH1Pj-0xQ`HD47!W=Ofg^2b`@@MF=y<%u*1KIHW6K9rn&g6o$toaYB}%B zyE3MCAx6Kt;WSqK=hhpsLUcZzhMEv@TKdNYT?9+c$E{8`hRc1u9o1R9r{rAx(@|!v ziSA>2N8X+*;-!9P?%EZT*sv2ux)L{rcc4?hLYg#a$BV!smTzsxAi;aG@3+IRQywd( zw>}KX42)KF;Y><8v60<)bT@-GlZZAO{Z+78SXPO=yl<2a9}^-`ek70++Q#O@pCEd&-?Wmf(uykJS~m$wif@Z#}gI}6weiTeaZl~N?$g4 z+aMOd7Jr#q1KHU>ixvTcIBAzf;*r4&nV%^+&tNKMNnBVk6pfbI%=kHkA7isv_i#A9 zu4VGm!HR<|GI{Dgj1Ai2>ts8EaS5Wcavw=;@wwSQ!It*3GqLcn!$$hfVc+fOFa3e% z+4dNo&!GPJF_aC=z-7Vc|9!p_KW&I@D84wMBmVdNUgP2adu+6AC~liFI1n+I7C$o> zR;sWpPAAw%aZ>sU`Ev#{6rVrBBUq6^! z(H*3Y97>4F|Etv249?)#)43GuXUe=dSKMU19`zD@?7j4Jddx?+TKex5Zlub( z|2{6#wXz)X zEuYSg>p84>vOo+V-hWMv!s_giSVIW)LiArqh^`> zE}205^h`8*I8y6kCT0z$$Sn2@`m3qD8eQ-B8GJrB z?tlO9WQ;v8lGBMfW5<{A(iaOF!=0!!PG^s0+1oUNpNzrmM=F2oj1{hb3Ue&%iGH8L zzA>X2a5fc7D?7Gt6+TC-Eql(V)2yv67ha`N+jJCfWE~iMn9c|-xqtC9h+do_T*z7M zc$&%AUh{}56rM*dSqI|d^?H_gd2fv;C)$x8!nb~uHUZz62^1$xz&$^K(2JAMvP-}% z-x0eLGSm9@6f*u!KxcsyhrAQW?m3Mwg2x5=PRB4Jp6#t?Qtwv+YX{9Bc}aqtc{8!Q z70)8SS-2!7Fy+T=h9<`|<^3ES;}bajZVvf36IkDS9=Vf~NKTz2v-XmxJU$Owk{CSB z4d>d4{C?rejHL+-GIqn`R3h$v3;6a|5`iuYQQ?Wab6>=^7D>dkSwg3fB(#E;uy9i% zH>WMd{#hc94cy6>_YZiujMLK3!Ff4DWJb4c-DRBI5YPTe%dsJWn`2jDCC}TLuEO9@ z9FCDIvCWI4?ZMT!kBg_a#ae1Th{r!|9iPkMcxAPLOSfam58ou(@mRW9ZsA5@ESnE+ zq28Jpu3g#6&(^VYzOqeli+H*m*i6`(1fKMj{z?A?%$97ztVbddTAOh-Oyc_I&2*A} z+K2p&EG?8-;deLC>3%b6@Z zoRbUP#X}~8=_M-&HkP>UyOOe)G?tHFjrkzKO}DQRtSt?vf$QLCD&v00tdQ}->v36w zMS~Q2U0H{dcQQkEuOWG53L5KI^WbPQb&FQv_9KaB{a2BnnMmDRG7CcP+siX6+4&`j zCamC!b_yP8GBZJ?Fy`-->}?~yesUjn$oWw9auqATi{EGF3hrm5Fx+hgm;X&+(Jgl} zPNj0Z^K$Wtl78ve<-D~?BRgXmMm5rz^lmBopVLJfvV_b@>0H-eh*pmDwH(~2dp3=) zR*TSlp320h3%Qb-DqN7oIQgV;vBnb0n~P7W=~6nlreZLE8Mh9ma4T^s<DdMo~>`fhyL zp2~?lH%9i5bMoVS@$pGzlhozfWvRUXHIFOdY3x1j%Bst0=y=Y>;JxVKdd;O%(^Lk{ zoX2+46uSG!bGhF4!)NngVj6CZ=g>P(_;>Cz*m^GoTdCu#y36%`;zISBR32GOV?gUv ztojJ=-!p~cjg#r!Iz@CuQ;B$-OxK#ueDO-g^3pW!w3K)?&xJ#alf~D42D@h@<8x*f zr6-bv&oYx6ZIgrxBOcLJNnATIjoVI1^j_g49z;nTmAe1oo@6F^P3FL}WEz`0vO(6( zFrP`{cbCMF&(pLN= zOWf$-pFkg}6VESCWZc$qv`lFoV?saKk%GpE{|WsTFxsN083E#Y4_?FAs@rJdvl_XisjJY4kmV~x0wEdGwhJ?L6X_J^)14R@!oWU8rXhD0|xq9?BY$wUn7 zMZ~fE=IT=PT|eg?#y49irJxVJn15FVSQIl%l98dH`24y7`wg;o(w*#(QUa(%q|}3A$a$lzki3KW9;zM63_?XS#0!B{wYyD@q{RYyiHA@se9v;Pg2jhxYx@%ZNjFM<1N;#mRi%Uff?D z&!^*N*vYvSa7Zw&m|k-b+vMCld`$4wz6oe-8A$1@1hhvenduUbauGX)!wL8`8_a_K ziEPbN)SV(ck~f1n9F!nj%b|?(5MSWkL%Hx=e3vVSakxX0cySJ)x=R9HzlUKXJd)w3 zZK&8EFL7ctd#@+ZF?I}YTO_|QvgdtZobaqhv(7G#*O}74sUMHU+p+Yy70bx4_B;{Z z#jVB;EE*C|w%e;Lb-#S=KB7t7PY@!V<>%Q4B*?c=3CDS2ScPBEDNa6)5yjBp_& z4^N3kGh{mX^7jwhI|~Ox{Dm{dlixRn+#Gv~1WU zi{Ov;akT$rBm9C`G8c_tk7+Cs@2oj0kJDC-!lX_N6QuuOaxR+XEk@HYIvSqrunXI3xPH=a( zFK`cH_W`1w#0wnfrsw-ruDB1xY%9D{2S1WP~c=iLZ)jvLI*rIED1 zJw(_^QEUksEHn9{Xr8OMP!&n*s)6iY9LZ^ufjoXC`eic<4vLP;(Y7CDPb0Ws)StAC z5zHUim%z!9EL&#IiC&Skx!oHpn+Vpg>%(}ra0U)D$Kg&mk2>~4cU%~b0p@fV8%9mR zou;W!hVSl;e{m=p9=*hCOmu;xdW$cQ=%e5CBHA%h^c-fmHjSp;mY%%QkD=!#Qw-B% z*t4Q1jsJ~B_}p1Dj~l+%52OuuD*|ieea+$Pw~maK{&u~w9kJ__%c7g@={+e|e2m)BdPy#q ztqmC@efuY)+b~e@$TsI%qaP!@3!T<{I8sd7*0%JQ{@|2*ZJ2VkK=fAzoZFR;@w=9| zgya$a(EwNR#krZ$g5Le)b>Es3(^T;KRV_$(FTAD=%~%HDJGfuJqg* zkT3cYmp={Ia4TCp&Kj~eUU(@38shzz@KbH%_hWN-H(HBi!S$xv*Qc-WTDt0LF=%iO z_8046nv+APb9FH@75|+4I;3nCUPfA7Yz2=momPhd>vGt*zc#NHiLT&$;qh4^9xc>=+(tU>WCj2n&__0Krcmu^1s9{x>GG`YG#vXT9a-c zvbZs|2A+benYOCIxz6b{pHrnaED#(~uS(_GiJs$KrFvhGMvoa~Dnas+_v6ddAIWDr zrBtY|d(yaNqrt5isYG6>R{4$6_}5hvm(6L68c>VB<@XPxYqPUW8pcoRkRf`SVV&xU z1}%;5IrVs|Ej*sc`q(WI-fXvqEd7`&+H);x-%F*#s|IYZD|K6`7K3wBWZqLl#$FZN zY(^t0C#P}2RGT|DQt79oLwQ;X-j>?DFi8;{yAi9#q%i+b1KOIUiuZnfuFjEt`noP% zu8Yso@7kOZ-Q>+Tnp9XP6WvvlzgJ1U(zq5TuE``_ugSx*WZI@{aOGqQzce+da!w(2 zZ?%d_PiEDw8f-OAW}L1D&+jA=eyt|AS0@P%Sd%jEBpy7iO^rrLIQ^;3oq3Wk4ya4T zr9@_JsLRna;%DJlpO7|*WJK1(OzN>NXB&v#H;KrA1}t_>;_+l{IR}$D)J48uLJ~c8 z>#*){GOIOo@sxaBuT^8(nI{RKQ-Lz;PNaQyJEE5)vhZmK!mcLJG@(738G_&R?8M3Vcs8x; z$Qzp^7ES0(ajj&UOz*^|Ur9t9>VVxq;RWyLNXJ_7f~$8XvTZz3R$T=L6}+NdcWO_M zBdB{f4(*QRU5oA{JInlv8=W~jFpkDHUAR(5__pIaiHr9rX0?c0V`W8?Vf)r$FJ z;|Utu8uv!>_m!=vDSX={H(Jx-zTiPxt;v|5NVSduPm&UOd%XplHIumeuo+sjB=2@> zO4EMAPd02$o5hkpdNh}MI)UJ;E!p=Wo*{1yu+EA@C&B>DQ*nH-YAH2Cyv(6$Nxx6= z;&a)8al6F-#H=aRE`odQZ;E-8@Y^bz5ELuC-}#MY=3^pX`{`n_D3Moo+FX;@txwTn z=TymeS2V(XdmLY;%Q}25=jG>msOAZz#@3_eJei~6Q=4;EiR>6yhwZ6S2NY?tLh98U zL7JF1NFsK7Eqo>=lDe-J#Rn27KT!+EH{w%qx)u}Vb00fbOR(%XX4I@LUU-5}t*XVE zqoRxV*5pB1EV*myu;fb&{=MrmX>Tm|rqpBP&{&op&|-6UsUJo*!unSnPao?rQAc>% zuXOM&h$s3(W3sK|=`=)7JYM6Na9tlq&o~@t&_j10u`1!{&qEAaw zMhkEGg#o4RF$BdK5N;exNe4rYXT)M(+)lI=v6%GkfPG#JQE?r~F^-`yxD&T7#_;`P z7q;re$o$o=1cb&2FVvWIaZ#K;VT}FmD01udppWERMomny=q-LO(mz|aK3sU7MDMCrsGsSg8IJI(2`PeOj*&R$NOO0Tp zX%Bjzj^y_hW4_jnV#TCxWRHnv&0Hg{bd9D>|87{gMPVl2vrmU;Jg0Qx!l-C=|J4rP zDKXS|(VoUv#J{9LTk-Lcymx6E{0~J7|HObTTg6YnrUjQIul*j@jG1Xs%%K$>o`~PT zzlMUpNuJ(X;(&P+>o>GT=VBB`FSh64^GH&i+smwh2z*LAu>EHwSG#s*hifF`bGvfu zrua$Bk^So}{x?I7S<_kkJq{Z)YF#*G{dzEap!j1*|MX7#Fm69EA>mU92?=sPj6)dF zUiz;Of=O6n%FY(SB){*;b-f@mM)hP(fq)V{O~to9n2o1QxDX$V-Be?IcZG1#)QBNV zLTPr-2z|#eK1)41T>LQVOMX}}Ih3C3y3x=x4DG?)Kr@`4+1)XG9gg-VdA=}$RmY_c zZxundXJ@9%eQ%)Ml@+JL$m!IDA-%#WaOsRiMi{#HIx_r5I67xL^6XB8cvf|yp4_ka zM(z33Q}StlLz1^g;-^}3ux1qI_YL^z5sCKw7W`}ziAHw={4Yl^w6GP6UWsqc3`0J? z31`=nRzz&m{9{V~(n z0PPRqeAwQC(9kgIt!_bXUMS_uTcEWe6raMDjGP?8evOvw3=1Js_H*wYp`zt$#><>g z{u|Jg^>*R(&2J`kU<8|gHDilM1e#v@yl*D;ihmPYPZmF(Sxs@@7|najW~}HE!2IhFIa3NZbvJB`&uqXWL7EAxV!|srSmh>9a07hUzKJxFoNC zYuglqThT0j(}cfw%JXGS*!H*hS-3P7O>!*pf9o(=>g^rJbkS=Z!$T82!RVs7YOcq5 zsSn@1Y=T`*B%05fu+S+Alb?;r`6cz?6J1_Ny&UyOm%B@&Svyq+1G6ZJciP-OCjLE} z8;Li$#HC#gu`P_jDL-8AlA?}+NZdTFUFRVk^ttcWN)~Dh0 zDD0Xx9>nz}VV|wq8;KQ@V=rxLzJ*|tGJYSlmP3R-pe{&mR z)G`u>OfBASj$~o?`aBaKkV!M@{LlZz=DsG&vmyn5*Tir~6lL1AaC433-?EwnmqpWd zxF#oW#&Ez=gY=8ya}ugSy&W?DsYXqiqa){-ZcWSt_Ze?clhi*6!oRA?l%PbxO=|La zq~tH@HP|IOpQ7K@s?Yjl^u4Rq?(fNT@~u>d1+TQ7U#Z@WP37jNQgv^ADj(bm)T?8X zUoI-^rlG$Wj#}IQylh`O3X@8lP(9se8X9@7t843Z<@_)F)pVnWtbi zw@{S}UTCUQs`Of=u;O#M@|Y-icwD&}T`jn7MWuSxL;3^$m1^VuBo@ohi&K*D`L{&n zf0F!aVTpPz{$@qyc`B`03i=ImloCAN%Q;io-Vr=8J45y9A#=a>W~(2AljvBGrCPsF zV#A~iHN-BNa?ez?du5W;oT=*e`$RPD)0O!+nOk)-OA(idNouYdS(d<%hq-E*jXJPx$|t5o*inc?} zI%_9$n|AzGL%z$;x70wRIF22QYw+1Hj>;J|uyKqfZ(I$|pOwDRuHS00)YaeIeyi1$ zavq;3Q^khybo*YY^oNSSPMti}qh$iy{>xQ|M<$T_AyW;RF8PZ^mP(x;&mreDRnRSg zM3+?6DK0_uW$Egg;D6^wrzp)n3F1eesIDxE$6!K|x_T{+2VIiY($n%j#c9gWPkdSu zlhv@-v6LQ6SFRN?|IhJPdT}wrX~|ID7h<_+oUQC%#E||yTQ!jVZ1puyxrz?yz{q@M zKS}0S%`8#@a_$?Y6{+z?v7G)>s!rMnUUr~N%`TO{J6oX^H;>`GWu;pCK8AVL)yg&_ zTJ#dt>i_rUvJo0sUyI^ge+?`@M+&y2L3_bb{+(V+YP<;U$bJY<31?7$O#+L2-`Q}I(5ChKaPb>zjK&E$zxU|#C@zdY zvzu~Yjo>A5O(;AXMx()vnVA>H`~P$}Gct^TxQ4hN2<7Q8Ei!wDlJ~BG%r%m8>P;gY zwZmBRMu(Su#7}Fi4z?+wbZDf<_Ku-Ubl2l-vG{An=woUT!jIKW$$1;hm%?V$7#_^- zWi9w*9*m`h0TE$4P%tWh94&$pr9)&TmBZN;`Ae{$ZnCgqU7%>OoI@X-J! z8nt8G7eCQa%j*LIXnwOJ$vJ_%Y1ak)Pl1vHcE!Os5I5)USQ`e3-&=R?%?uKJ*qDVM z1KDxYM7V`P6i@EKp_;*5x?)7VzkqGp(x(aJa#aWFulHqP?e@x^a) zTQ)TGWv{j&PLX~x8>0ASvxE?^mzAbnc>W^cNK4CKg z(Fj z&n=kGhqSoj5-b|4h77O`#$mNK<$l3*IHW7RykP3c`4O2PBzov3RILuebaYd^Dg)W= z*NnvmfoxyZgaHkL#K*h|Uv>vkSMKv$`TKp7b!j~@h?E`L`0E7Gbi6J*&ju2h-k9}A z0w|l^n0NBMhRtijixfY${?@1Q0)NIXZ6^9DKh|qEXIP>y=JI}@Yx>dLstJuQ`_Z7f zG0BVl8ED*?@@M``@Y3Pg{s697>IknTP_P+YZY>Dp%wuf^9tz}sY(oag=dLe!%W3%> z-+t8NXZv89+Se6caInl|s>kU>S%(+u(KaBIx9jTB{&N^xHrHcANf-l9)ZxzbF!tHk zqV1wE^c!gK*Qf~E7S_NuH5@gjQhBcwpQ-dJ)oqX9pM_P*VtzC_oh2?Gji%T3Vr3-z zH#j6;4fl%Xyj70+ToH|Neuny|TMWC`r>eTWVq`v6ys~N#i)XV$h3I)kn72JMaoQfPFa~03Ts`kPgDBqc&x;{vx{@7%d{vi?VYw>FD=p>&0PE=OH3s^od zUIqS1Vu?qR+Vo5Mesf~fujYx2jfzocQ{uTD9j-if$h^XXQOf?Q)OGWtm0e1#_!2}Z zTE!BxC03nI6Q9YA(dxgMG8b@cyvmkGx2?&lZfO*Yer2fCEb-fl&rwO@JNRv0mdfoE zg?4P7>J}D-*3kkr4riIe=PYq@_2_t=tCf{p@@%CaJ z@eT^b=vy7!+J#WAU6)tZ!Pwub&HWicY?`FWgf)RYFVLjdgg{2`s3UtTkU`;E;y)B1 z8bB>Pt_HAUR3l=Y{5jmK5#v1lxs~65N7wyuu$4O1S=Qb6MjSfn%Y&WTL|XdtqezGT zc|Nq3yzB63AO3!$C$r9dcptEr?ybYzC@)S4 zzGQIIn_8_JN{`rwp;G^T8Q{yTp$&QG>%-}k`kb`zDleV;rg*5y`(H~&`Df@%tkhud_5fOs zsKFikKz<*Ub8%4+{r-{sVMGXbx@%xRR(v;&|ES8BL0FEhP{qz6Or2Y)a_5Dh*Q89n zw+kh6L8-bsI!w-(5|v{e&dzHks?s1r`j*AYyKN*#wiPME!IA88$yLkWM+#1mrf%Gb zqF-8ys`X5K9dnb^=aW(Vy(Cc$I1z={f;g4`J5qWrvFe3?6g$JC)M@u<;Sh%^-wQE# z4GveUdP@D;CPW$bisk)*AQdP$z=8A-r7!y}_S%Tt zAAPgb@=M|9lA(Mv!x<2hqFVP1=UZ`#YA1Ex_FL&{S%WZUm}IH(4?+poNmo$@p_KiT zspgFj;izM_+B+tMp*zx*?W_=%*GN&f7KUP`k*to{hH-6biqe`Lj*EM&$}bD!$BPIR zEOnYjV3b<7Jd~gP!_=3rA=Gw{P!VfFc$E~Q+`k8Nrd_ytXejaBHd38y8p_$Y7dsJE;Tb z+vKaIgM&GiSEjC11oCZ2xw?NRkio{4YT-Wtyw&I`5B4E%(8B+;7z(%$IjfD^>7!Kg@^!QVw#SO?IhJ55@)1;9QwH zEcr%`PPsaMH;~NoVs-g<0M<`)RqV$Awk|4A2MYb!aVK9*Y#G462F1$G#UD$lGdj8Y zVz#qP1<8IIb*Na~%J(I!Re>rr^B14hJe42rFLQUYRGZ`g>@?HW_nU!yY@V$GLjt)g z`S0TMLFgTgSLJKv+%Jw+lUfF`u1kcflDzAvf2jJpI+(vs1uHs-@YXR9a`Tq2Dm)s=ye(epiuCb5z4KN^IpO4{_^Q*E z;V2Ly0?eUfrG>CdZ(R23iL$B3JmYTaf(yaRJp;YdHx4QDCq zhJIB0r>pvJ{CNF3MYZVfPx-?{_0~@wSH`O;;eIlIEKVJ4;wQ6saD`fLMiRx zsoq6s_E^+po1yu{NFy*>zSnvNBMBQPNDi-=FKPF zY<2d$H-oa$)dFoF?pda)_pN>C6P>79g?W)u6{|kA@}~9ZM0K>k7gLiGl+gh%@wHD; zf$u!&)-XjK*YYB!ce?r!;68i-do0#a9WW<;piBrlFX4p+YmyeOF%q8<+LVake7mF?-n6XziHvzsrQ_xPy? zBYm-1>#5F}`0;JIr>ZCG&-;w0+I!xQABVrIwP*b4y8XLKm;Czlm@n#EV?WMa{G!I4 z_T}(~@9M^39|EnvtDTK~aJBPPv2DG%T;E4E{pc;;V*%>bEiZ0f_EWA&p5hBG`|6}8 zepAC#RTEF9uLxJA&wnsNFHC*h_mfkPLzGG4PxQ70Dy=r2tnBKiYE1PcHpWX;zVYJm zr=RNHK5wQLd{cTlKKKm#qE>19qOs$Pdi%tev?HI?KkojNuK%Q#I0i6l>qqq}BY^95 zzbL&+K0Mp~No{E3i`R?yYC~;5-iN(cx*PpSsP|UoJn<%~-zRmk)C)`B|CE#5$NwYj z%)@GG+y0--8B0h)rfx$*h15E~=9!2nWWLQ6Dj_7zB}s`SP10aUn&)|*qq$U4NoA-s z2>D&l^FC|8$8kT$d;I>|M_TsY?Y-8uuJgLi@8@GBl0oGT*|_*MgD!VvF&|nQjrx?0 zUe8q0o|OZfO`(avzY9oKA)V!va>*z*gY|r7lh2$?oV=DnB08Bk zESpL`G3@bUB2_%jLRDJ=1y!)~OD~q>eX}7O9YdpSGhy&HhJ0pbLdGke+)FYbRFp)* z4jH&LD2;sIr6J&PI{orbhf7!zRjtXuLh}UDe3*f@ld)_)Cj)W|qDb|5CSH$@B++B+ zxTn#yvMCJ~WpOlRY8oD_iYMo3X?VCam5fc&aCmkWo!3fZZsR*{Fkrhk2I^%P%}f$hExG~`@5bGp~k%01~gSpAV4UuMAjR5MwA&cKAzpJ~F& zOvGw^BO`Xa^YL~Ho|A#1vM=QPCmoV!I_U8041|bu(WT0CJnQcwVV4Y4W%g3@@N{h6 z%Ib|X8F;nu7YWZ|-(y`r#V*T$RKy?pC7%h|;{%ZVBOMwp10dIxfnc`JbS)?yL0bkQ zR3ifi-3P(EF9Z3#gE2)ei}{HLBlJNg6t#vz=~fmVPZ^3#c3zBS^=9wZY*yzChk9-n zjw`cz<61UK8b`AIo*axHBZAz_Y-C4_MpjD}+e;md9oE?>Rv!yXzbq8Fj>SVZF5!zP zTn}YIbGaA{K4(GRejLn`v$2aChuIr)7-v%)f3tCMn7cTfqjMQ+eLOZPQ7No=%jPA!Cqs`|{ms_HYiAWQCdniu?KAj#aoFsXgE1mwF;X{&<(b4_#p;({wob!; zk76B}FdF`eYziZ=>Qg#B19Pp<%Aw`AB5^J?gML{=!D2@??T?RS>ydd>yC52Q@_EFm zMnUCaA@b-k5#MkGVQyoJOplG$3_XX5sxpz&iH9kNY9 z@0CwCjvJhuY?*A+LQP zPMk=`h5kX%ACUpY?L!#bGXvFrL$PCPCbEYQM=u-4(hWpll%0u>>qp|!*G$Y%8H2do zOjOj5MZ8=l9$SwA=ahjKxzVhTG6Q!mkA&g(bf}k&g!V$_a*!H<-y<^78!v(?cD-dD z9FEjm=`c(mj-l-RSD25$s+Vm1SSo@cY}}zs!!S%K9pS%+U^IK5QVD}`@LB|1w&V!T zn?uPF=((CNIA5Ngio~j2MS}B1q$Uy$qe{pjFA9mRZz<|P6qXIBq~^-#?Ks z)_F%wO;Lz`UQKJ=qhK|pj+!DOG4Ev^86Jv4_TOwicp(})p4U=CcNFC3HjzX@G}fMM zq)AFK7`mQ~Ls2mhTGl{PDzR9s_K~7{VsJaWg*vCiV4_JY*@m(6QtAtR>WPIZn=gzi zh=u;IPvn0rj(L6C*!(mej$hiyBr*|6jv1!K-I(j`3DbC&GxsAChBD?58V-glF@1>DONywk{ zo4f}lB2(=*O?FO1k@NtF%}8Rr!U0eeONL3V5Jpc(hJ&#%%H5J!-fs|OFR}A9XCU;< zQ=oiL7<(tBV2jvbtm{sJyBk|)xSaw?w%*KtKVy%kvR(?d?!u0rAT|vBb5aq+`d-w> zq`^3vtvlzX!vCqr|M@+S)Jwyl_7Q^fAw(k`qWPl)=MjH?siSY|0E7$=1$XW?7bIKeo|pO61M|MwZN>+7o!`0Iqfeym5QLPqqL;JVUf z$F&^q5?qgaa#C=zwnK2ezK}`5@%`Tf*EN5gAKsOWu$}F6tuq<#iaW`1YBJ`ef2Uco z$!OiwL$(i6utckyBKM`>e8>+{o5MbD?l-yCBx79qAF?-3!styMR27zloA15|#uNYc zM6`r|p)V1MY)`Y3-fT`l#n*4NXJ#UHd4Ho{d)WB2;xqlSVdGZSC&9SHk6ZjWwk|yZ zyWCr7*75{+efcOD_xN!z^iMovaEcg~g7Nd(&Nzf9 zeh`eW=Tl-KYE~y0f7KLXv9Qa9fR08Rf6%mV@wRz-6$7~?`2n`v9z>=w9=z7 zuepi_?u)@8hZ(5(ALcK(sLl+N~l z*tny$5r*tbbGIO2#gpN%Yq-D|}a5L++0((Q4aq)d8aY>=(Gn(Ths;FKa!b&m}S($>{zf0~O`p!nB>M zNhIYK^h7t4Nw^&z4O&OJes*Zj-AXlaw^*I4M$bI$U|^nD-Bh#h4(2`CMxl!x@ORb@S~bxDk2E!@L72IS52{m9g#%8=>?iLC z<~*3Vm&PjJ#Uj-sboz)RrUe|JehEj$>N!pmW;rpA%n{<69dZ5pDVo*lgt(65Bpm33 z@cB9vx6v8x4LX$Adk@jvF)|KwhFQ-^a@M|&h8k@eB6**2K=i3a_5rfv^yqfhedxDd zCMClM7%gN>4|H9idiNTAk#fPx4L51j4;M_+zDc1v4-uPql?>V+;>(1a^i=yHZY7)3 zz_ZMCu-TltK0HL#Kx;O%Hj-EEIhGT4gFoP30&-)7Wv z)(y5V%}D#F8{C~ON!jQzUTia?=rQh4T3|`b?>$ER85`>IbH@%*8;V%y&U)GGXb*W{ z-5@)%&v1v;f;-fo>w))!@6epR95vO$K6`@Y7LTY# z;R#0By3@xQ%<1^bo#5_+-Tsfrb>dU>l)ICI(^HHrd_?`DeQ{)j2WdJ#g|4tSeShGK z0wr(SDC!Fz@uzfu!c*A&@u9dqk6o9MZ5p?%J0LET;O`7upm}@PN=B@CD{HB*=(Cv?u_-Ew( zE&z_P&q?lS0P45-(;~ZPn0O_C3YDIr$i;^gZ$8Jz;ePbCE&vU(9(362IX0Vk5hPyV z=w3I9+V=u`FM810n=g>v>PBg@GCf_`;k98UVq?o8dMtyg&i+wzU?b0#|BdHvmjhyf4AyN z<{tVUM3L18QCDbb_gZovLMD@h@^+(gHRSB#W!B;o+G=@*9Iu-g*0dtbQtK%?O3qi42;M6N<-T=~V0z3W-}uBy%qeA=0TNYZwO26`3>-;Rq{DCqv0_ z%yi49%-V3=p)3ko90BzoDT4ZeB?*zAlSF+*kyv;xRZvG59gBj()c>s~lr}_zdzmh% zC;l9X!65$}K^-CcJqDfI@&$Fo#PC=Y&CVkuhd8_*Ur2vN#9`r}w}QGNklptrG}!vw zf9i@8a`Ct@vO-W-ct^yeC$&mYSJsOHh$F4wC|EM+}ZV!bRVTc z`bz`t_esO~ygET0FP+HdSz7NXesC&29(Yf)+)_|`w2J)MJaN>4ivL4No(vC~r_{47PVuCZ@i zD*ArMk@nM644oK5D=($t+I05#pY;!ZJ>*qd3jDgGDLgqDtFof${%AJuONyXfD^uY# zBa&8+O=ErXk(7BQ8S)F`sW3Ge3kRoA|C1EFa7ri356Q?-$RdXm$!K4nMtTpEaNt)m z%`{EIgcIqs);0;|u~}?fNx_4jT&gQc!C8r1x*wK;M+XaNX=Do2-o2sX*c3!>WanR7 zGCYQs(^>0e+`Pu>npMddJEW8nf3erOR!kpyl5zKQA(^Tq!(X(3Ca+9pe&07#SeJ-* zhx4h+KM{6=Gii@PBD7cM(81;el-uN!x?v*Y9~RN%&P2?dSxi~}tbQ0$OmeJ_*d@e3 zY>Sc*b)PXQe5nNXp<<3sTWtU>oD@s7GXgT>5#zX#a3DsF7 zpsu=z7K}?kj8FmT7qRP0GMD-eCP4UQ4rzxaV25@lVL&1dtxKb$ZxdO+UMgMu!QN+c zA`J;mLim{kI$4kem7g&b(~yLF8IknuOd_Ht#nPN}iEKQHr1RnlxM>kZP7d+RM;S|{ z;R$R{Hi252;&H$uf%R|K7+UQUi!GfIRDB}`H>)Da zZcYqr7RHk1k7%qvl0d#2W3lpV5;dHRfzrZcy7wan&)%fc!pSiRaY>_-FJn;2Ws>Wy zSg2mjAOo9d#?4D6*WM@$V6U(BGKx8YQfPow6mljek@=}8NXEud^7?4Tkc_3J52F#{ z9!0L-qFEguPGZ5aICCS6Vnw21JSu`pBBCICESeryMq;{544JTXmy|29ORFBc`y zjDm0ssYoF6nGv{qCzg)FCN`M!x_b^L2mpAgB|#=+EkG!l)QUeWDMQHUEFNL+CQT0>uui**D{ zYhO{#`Ut4b2_c!h2wZ&^Mka$I5N;PvuUNfbvpR~J1Hv(-Hi|+whO@kJ93AXq_Y2)b ziZ%{M#-Mi2t%A#6iwR`j+(zBD8n?IeSRUdG%6hP9fC-dDC5_+A z=KV9D(Y*PQ2(S(ynZx1e-Sdnh=Y}IxE|A7_Gq+&UYr4;#@9Cv5a*+&UZm&qvF=h9w zF|j0>AA%F!@w9M62nz4V(1&E^{pwU!PKOLpYLM{Ajg#7y{otCAs&Z%rD?a%9WwGS^11)l0q>>A&>@o zhT`w%Y`&8gf{Aa!Xs<;o9{y+2u1QaZ+fC1f)6!MNJ}>a%KO>8BPbZf+n2mhN#+S%W{)|qd@0>O7;h^4>3RKY=xRKp%dX5BdHMx8zI~0Nu9vjR zDi}+DyrSxq*RUvhP1<_F2(t+xTlHWJ(~F`a>({vM5kmvl2cuzQJbl<20>j;b?0X17 zblEcsj|xJ~y=Qb(^);eTJf<1iL3lL7jb8lq8uJ#q(mf&Ol2mphtrbCdBjG|z^mA8=!b`RubeHBGe1Rhsj^yU|0*%L+*{c2pehIl! z$j9e+spdk$3!megwkzdbe};Q6+{o%q02Ho1qC_@-d^`0a&H3~Umul~msONK5Pu?Rf z$>%tdsB3#n6*2*g*X~6U#{*zj!{)zH z{&=F|_wWDb7a2gk27d4i@TWE7{IPAOFSTCqM@Y^SI=<2$K_@)_ecY)kH<~`mA5B*u z((j9Y7_7^4_VT-|Neg;{<5Vz(f&xBW&Q7; zmo{0FQ-d$GT+Qk6V_&3KT9eCaU)bEYBjqsWw%5Ny&T_2IaCIbeFJElVawgr5r${>D zLK`f7v7+x0Ss3~;&#xN^4fMnH)gClC%nvUvdD9YcKXmMVO1>q2NSfh6H_UtyG0UII zrJiEXV;4Fo;{&U!E|mT93I6PMrsu&v2y=I$?m!=G-EfEA%KAWkt0Tp+I_Z|8BY8x5 z!yeAmoaqI%h0c@;Z-_~=^C-d_8sc}z?)4MgnRkcG7yDp|j2)RTeTt!Kc2pe0>LYC% z@@7Amtg)n$(5G0WX+|{*d||!Ygq)vrayG25>Ir-X+0Yop zCpb0Sj_&k(q2Mn&`kd&6`2+8e$`&sSVs&9{rY9Etw5MUKJkip8i{|xu;5QKz(w~`< z?h7xZ1)9=@x!%y@xIyxl?KJ7qBaB(Qolc6np=jN1QVDQ_$=dz2E%Gr$zwILj>BngL zrA{4Xu4q%;M2l8EMA3pBbUo%F<4A6z-?v?G!(}rWjChFface2>%>(AeUPo%`E?Dae zY8(3iZ#!1dbFT-O-lRk&iuYmnLYYEy@8i!fMbgM|X3pwWw5R1B>@N{TO>#y~+EQBa z*%@mVDbhpE8Ft3v;HjZRLGXE_cB8tqUo|!~scD=TKwxT}aNHMUGJp&~25b(04NqIh_ip-og+~_V;{bPP>s4 z=*{$7P>d0yrnR=%w`(Hl?zP2}M`I|>(H1F|!zf6JIYsOT()Y`@5ScARq0eog;Wdbq zVr=l!^#@nqV~tZQ2hf7g%&n5z!PV@t#*yq_oT`{Lw)b>!OIKU5eWE_DY^oJZ6kE7$ ze_3L8MHBbY$O6mSJGepamT+knrusqFIOi~k_Rp}wE|KB%X1Fyhj*q1KHI`U0V=SF( zv%=3g<7o6j8_X3QM>+?rF?rA=D%@^^DdVL`R@It$)2EZaoE3UUP9vi+R&e<`k+h~- zA}MM-BX(Hg*B>d0-(rd5sJ|_y zlq6RL3)Zhcj>PIM&|x&17V23t{?2f64YGi~;}FvNZI1IBN79b1=J2{8N`boOu<@55 zQ7dx{s-H$b+{|%&=3f+*VupxSWcfvs~4FtE}}U77{nZ-w?|Q>*9|Dt3??~06ZArueZR&y*FJ(; zBAC1L`d|vOF~-=Oer`qMH9WNF=hU8DNABJZZqB3|n6~m8*EG-s65oGvbvv1x;b$AC z^NKm3%zC(n@EgpBS;yrUm|%lQV;O3WKgJ@?XmpzHOUQV`i#R^xk?AK2& z<J6N~{D50}#RLy#x^M&7=MZ6ji<{8KK5y+?TnrD zT|sDpJJ+st36a+xagxmav2&^eH~#b$EC{va-Y7E1#r%t$knB~2HXh(24qRg%lMUQb z=C*Fwx{h0W>Y;JiV9xKL9^*L9;_}|>V|)H0ZqI1OhMTgM)AG^B z>|3hb0bhO8E1cn`th|W8ioM+49T#zF^hIvC7W+Bfnp1jbhyY1@Zu6^)m^$D*Xr(?Bzt(ZXHt8ej+8a*tm;u{2$l&hR>Erx@D6V_NMclFov&eFCcn&0GBb9F%Cmqxrg!RvHIyPZs&RC z1aZF16-%B+dY~pZ_0f3@oVJX6Sau$F>?OD+pY!Os-mBsidjaK^O<$@@j6~*PM(i^{tz&gTsFJxWHXH z7<$f<3rk?G6McPdhS}t!ub>rtEoa=5b4_bfC9Sobxc&!3>2TDo6I~ zVBm#h6^^m}<`;Ua_;%?c?1-95^FbY~x@4^)nspW*?4GN57M?||exr(!q&5}|7v-b} zYD0IeEVpaHSr|`R!O`k7uq@xj$^ANm{z>P!51Y;+%+Qi+S*MNJO%B|Y&DuEs_%RnI zrj0F&pL3Z_j6L`?ihJ5~7Ofc>oJRdwln0e?!?x<+&YWsat6vxE)5^KWM|5#L`2**f zat>9Vja;d>EEBFS)M$P-zGwIg`F2RYkN4`5qkKME=;pG z=;QsopWOFQeF(oDL>V0hczCRzyMO8;Lbnc~u>s5(WGF<^vo1mT(oo7cei>gw2e3TN zW&HJM7}>lq!pPF$w9A-{_wbNHN)qkd}(w3RHPSqCf`Z%%=%=3AjlL5{vESiwAP z37wK>^CiDUba=8222D{Q)1l05?7D>PyKSL0Nr^r*-h!HkGW8ePVLL~3W}+<&2g=d7 zQX6PH%%-fRwuq~pN&$`52rijRqx!9J(Q7y@Xkt#|B}$|meH+vNtRODmo@LKfD8bzx zyIWS%mf$? zYL0NkgCD!eUHm@Qgde8!`S+n0bes%tKESflGo&Twf(i4_Q*yBj^Wc)S#Wsh#7JZA$_yKR2D)_KG ziZ`1-dQtX^Czu}KMSApv`H_66f3^=c=d7)AMIVmem?PxqT*k{v@o5rec8HQ zRVKyfyn^ugY+70wh%H)d->)+eMd>*t*7FLV|Kw3qb`b7buzirOAoR)<(&0rxxM*8M zebTS-Ao?vee|!z)HE-zdpkSz0m5^p$F#c#2lXPt`a=(_5*z{mH@2H?b9l?01TScSU z`ld}rAt|T7#zgOY+I;^tUUp`a^y6SeH|LUebqFSm&8GO*p_m+vGtLu^7Zabq>vX@+4yZ6y^R41=3{4W-D1qh!%LvR)F7cR$!ZiflOE|6M`n z)x#hxS4KA`gyXNUx3qIh7y?)hsC0E0b`=(|enYlyt(H%#cZR`ra;~7?n(x2n`;+;; zWWGO}??*P5%0Th=V&eOe`F>o!ubc17<@?t8es;dUm+$B0b2WVahR@|FGp>VN^ZWlZ z$HV8b`Fu8?v(~#&iy!{2f;_kK;aYrA|0>9N*D2RRr?*3p{~k8F7W40R)7A1C{Fun{ z)Bnkb^LcSTSIy_C`8@eQc>rqv$z!YjC#TKlxA|N*pZn(X<$Ml|&xHwcU^#KnnEs3I zu>GN(?|xCcQXJAR{-DC!aWFCYL#~J8QJ2wAath>ww(z;%s>p9lgNBtj9>GgJU^em=X3kq*$>cC?-1nhPe^@0fq9pJ2f*_ITte&7 zs?GX~{=*Fr*;3E?vVYRZqIyKR^pi~Qd&YdIRY}@lHg=B z3JrzHm^yb9BE6Eac-R*Pz!RLYb{4Adf=5w=rZkW&6@wq!b zZ^!59_*@>JYvFS3t*a%g-mO+6+TA{jr4&#U#b ze1-1aewxAZ5>x7g1bIz9$2sj)4h&`r3-X;KXXh}_^*~fV$wA(H0e!YQR3Y+;Wd%d;7Szh98MX%AyLnZj=J8Io|L2xsbgg@?UvgKF9mdTr8h2;ByCjzM$xH5za?`7v%f++#jFs z`)4kY&-L-Sb3SLy=g;|EAiB%5qi1>mV-w_ev5@tnEb5;qK73h%e@u% z_fA3`^HvCLlMrw>ht#(reAq7CXNADTY>8F zh=^=q{iYL;f4vpm9xP{)*Mc1nB>sytIhcLVHx7(s998D!up1%ZF)lm&k@=@s9${KD zzQ>J4(AkeL@D+u^!e)HEA%=}>J|Z$s93NITW7|4$nD1)F-H{V8>&{1Pshj|XVjItXKL!l*gV}10@Z{3;AxE=kC zI20rbjUA0>V4TOq4UPD6SX{t$YT&#DKM*PAY z3>iKh%d>JYaO(`Hf6InX#0*$i=GA2?pYpcuPuZL%P-HGCWmh<2dk1P z3yJswD0MGHeRctyJQqVUv=H-lEyhs$LZDtA^Xm(+&_Mx-*IBMNQIU-UML3(OfVO2t z=(S#gVV;GEzrPgUL>a$GZYctL3h+E+8S@1fVm0H0pWIM{F5PA5?JR`su;q+hScH4B z%W->P5ysdlqxW?Y8XJ{iJE;gEavaKvi@=u0v669)oLf{-^M`R!R)TTy-XO~rxUl#Q z>N{6p^{}@P)mw?CCvOoivjTRFZ?UIiC4_dpW&Wqt&^T7ivSO>z;PRH`%hn*+u^0nG z|K*8%i-*DMa3rZ1wr1Px?y2KWI z7b`*j*scGn@$rE9Xp@^u@Z#rIIEt6x+`DbaXB??hDXLIs9D-l2+abw#f63N6V3A*n zU*X%)S60f_HPx_nY$=@8cH-}nQb?`bg-zn6keRNI%W0)>9k3gc5{z#lvtH@#TXCL^?{b*j^Lrn@dq2#(bM7Ly+}8=H+6~b9z7OE-(&O*?yMEDo3V*7KBsE zuz-1*52xA?pF|YP8WTPrkCUY3p1r-pfI|RKY z6&R~{1V3(6FfRE~EHSOX%0&ku%s7}vI}bANDdYI~?1y+}1uo0)#|^~_c-U&8yP0tt zYWLw8`#Uq`_ag901&)~S#h3XN_?pdp(}OCpT}BheuPU%Ydk>l)RpIe$4eTCSi7&@@ zf%aA4+6#58lCHq*mYq1fz5>73sG;X>B`QCtA=!s<*k|p4WFh;#hAJHDD&cf)J3JZR z)L_asjFw^?dFw4WzqSJMw>Cj-b2%~$H#65xIUGGVvUwTfP@dleCZA*Z*$t?jQx4;t z^{`u02J_5y$RAgZx!ue=B3s7R2iG9KfPJsxYp`)Gk`J8T!;SWB``MJ0I7@;klH59^C?CD#?2TJR*Jb&Td_8Uoi8oh@V9drELxaH!HsdF z(stmQcNx4~cVer38Em(xL-=4BmgMioO2;zBhtoh{RvFYB_WJ=luxJANoab*x@V;^knyw0MQFeUtZUozv0TZ_2#h!Ak z+qM-JH`w{Ob_){i8OKF$Bg8K?WYTJsrIz6Ja+l9XppuFeYv~cCh@g%YsY@ zU6RC7me-5OVSMLymN%D@f@(%4%5o=TmR%;~E=)o3;Vk4&pMtTovoJGrDxjJPX9+fc zZq9_$DQPTX_n9M;rSZ}eO@895VQ8JFN;@-!^T%f{(RQ?ar# z3xC&4#^Js!7+#!;7Z+GR_m>F*?l8|G=DEW>&zI*E^ITt^U(EB2c`noc#e?EGPiJJC zVJ*sD|392Oo`c8p@_3FO&)ekrn>=Te=U?(XOrC?ubIo|p8P7N4`DZ-0is$R|e0-j( z&-3?rE-B9`%x0t_} zhbWi1-e)0KF(0NgW+7}%9z-Y3gv!xe<{p^|lc%{DS}~nvYzq*!Vh&^G7vibaT$V*B zK+}x*Xqr}tmA>=gd#wN`OJw1GuMijSEIr$+=FcY499i)W9 zMa7Jh!S0iclcKhFIf8$@#qKm^XzwTn_n9DX%D6yJRxplXF*27kA35Xy%#~Tq_}-;> zN~_?~UyAoTSK_>IDOS8AXdWuTV~v%N9$bP&1?>L0s}$0!RZtgN3SV~)Cu-RJ5>vY+J(S`UNOivIOh&3Q*m+RN&X;{kgnnm-q1UK3d+Z z%X@iw{}b#GuYuN1eN zdFEay3w%@7`x_u~h7)+Gax*@FwdjLBGjHF}RRUknKmAv{zl!%@d48ye*mMZ|KfL#c z_X2rLsKUU(my>zyf2CO6Y<_6-k-#Kjd+hz z4EF((A1z~^8^)WBP!xEXcyAN$bNZ*JiuX0it^CZ~AIji8$-FoDpMKzWqc%MHYZ>CM zwjm~38Rbf!@sN3vma=t(zt@n!zdUkD8{^F3zx=Me&$YMae>~0;#O zzSn;>{d+ZVdKS-Ry3I~Pgr{kY9=$!)WH_KwOB6j%<}$O-cQT> zY8U#p;9JsCJWp%EtsdH*c$mHpSh|I1r@(60w44L4%8aWCv2ZbFNH55{cX3}usE=J?x!_0M|{ zKW!_H-{@sI%WaT5`U9QrTT!I?1FNp6qG@&?n%-~2Y^gr9vH5u(_XBpNYK#rrhbcB{ zIN$pN(VDxkcKQ!U)a*iI^$%3c-VNi>K8U5LBlE^jww|Sqy2d`78m)#8hkr5O^e)Ux z{t3lrJK)sShdYYfq59@0Sn~s35B>?St6Q+Q=_dk&nU8nKPt0-KgyA25B4)}aoITPD zk;t7W+}6uj@#=W**@HoT>X1?D#i6Mhh}_TvFh!0%e^={uZQi&>_hR5ZUpP> zMfTBdn9A(O+~-}4o3i;Uz#wS+=VB)8W`Wu#XRDBu-L5|_a|yVDyEz1&(!g4Mi=7l?Z#Wb?>Hc;j+M1t zXkk9TE7{!`wqqwgy7gePn;M3n??uUH=2tiBWv-L$sDIXj!0v50;M;>6Iosh;!k#Zc z6{Ul^vEul4yzOJJyI2i#9lyh;Y6oL1b^`ip=sVGg8LM_dabE}QChov3`wpD?u?x0F z%!55`H#Gb^@T_V#GR!)0Pgnz~!5xgDuEFZgPE2pmL|0G;9NhOp`$Ib){b4$ zT4<w{}Ez?nM3H?FbyAhAkD};KOalo;~dty>%P9)V`x-1M?ZO z&vj4NHY{iFfA-t0(0Ri?_x{Z|_p=KlBbg^G@cqBNg1l#t_nh(mK?URYcwV|g;3bs( zS%;wAI|bfW-s8%9&Ugyas20hGPM~IU4Z`-Gg2cUd_!NH<`_kS)TJJPYY1P1T^ci%i z)}ng;X_zt}mD{be=!&dGpvzgjkgSE+UL8oytiiRlI*iNCd>3uH&^*oF$B=W3WnF{6 zS&x%5JAQ8Td59_2V)-mR)N9tDs`vsf`q#kDRA1nA9sHAV(-&P7_+K{?QV0F}-(#quHhh%pu|Gyz;FaZlvb=Ye_t5r#XB_dVXW=dO9)7iF@W`YNkC$sh ztg{vsZp=#?U5Bi_rx{!CJ@(!?E%4d$ep~mOby)n4`6tEeknVQ^EmPm4#`lE4gUkDJ zx8>Ji`JUqlol*yl;J*c4UEa4l^mh%0PB@5)ao>=Ve-xXVzQXCz-;9s?6`dE3VZiHm zjE{X3>eBD<^yuG^yZjCc8b<^^QQkAkdq>+Dmp>%UW28uwoq3>h5!>x2eD)wF|g^q!LLH7toba zfrF#8mm7q9KVF_&AtA^@3JscIS#x)Z? z4709=tNTTy##OQV+eP@iuVntCi)gu0g|-5HftQ%~AM-wB-fzr%jaPW|;Ph=1co_6D zSAz+Zw0d!1(M>G0=|R>F_L$Pmd~_z57}yQXtedbt(*rMEQ!KsPjkgh|81$wKr^HP0 zqNxkVX5GZA_AcZtHh~4}mfj$33c0aAU{ZXOt;zHtVzoII_4gpN!wf6x*z1;<O` z1kbgAtZFybIhZ3=mfc?rEFk&08cJm#OX#Nc;8~~zrf%=TzCzYpuh)eyb>@(X>cZFoW;k%Z8@)be zka*aIH|=IvzO56Q@6DL!qZ6CHn!;h+cTBs-dg#v&~_q)XBUW=15xH zfyz8{7{2U)Y@`K-*mojT+Y%{{J1{id65E^F@wkCKe|$Ua`b=@bumjJ}nPQZEJLBJ) z!hCB7KHR+Mz);GnQi;S}m_PQdK*kXSZ^Vsz!J==`204woMi}m_TR5FLKIhzAi zp=pyjq)%1iuRe3e%3^*C*2{00T7l0V7Eqd3!Nwo=m^{z|&vMI=#g5CBEXTGc zb{>qcz=LI$IDe!Z585JdTqSyfZSm!31zxPah41q#ao6b<=H0BoQW-mpRb`$J zLpzp@X6uu~ZzGzmBi?Mijd(Vm?OkY(9qjpwa_wO{x&nP>_E7)M)>++eBes~0Bati{ z6VBfEn_F1wRF2p-TP#1#9$Am0@Zxev%(TJLcIG!==ikoPWe7N6g$p`m=(=i&jzMMk z-f4xx^=0gyZ4C)4wq6)!gLiRdPdXyu*DXcW6SWj>@6ramm$LV7RpDK!{X@w zBk8Q;s=VL-Putkep4~d<)S1uQ**bOBoHc8+ojPkXX1Az_h>C!yh^TazNOyDSZjg`` z5b<|?KfgcrI0Mc(-toTQSG_`y%2~;1b=D(yr+iIk6Pa(Y~$_oHdyjQ1Cy7)dP&ZNL- zLrUcSIs^$9D_Hu>m4-}en}Vz51Ada@KDzY*XLl#FaJ~`EvL2RSGQ!$0neD?KvO@Ot z?|y$sUQjZN)E?1Ij=RL?p?JtAbItS--+xZ#@6<;e`bB&n{(a2!$+Es29^-mhuH!0W zhW(vF;!R^t`6N?4<_RuZNvyFnX6keCh3Ia~wTMJsMm@%8i1;Y|Y0R9}iS%0X1PkfI zf7W|KAARxn`PKxTLrIh#G@&Xek$GQDD6veUX_hHTU;fWe!j!cBiM)DZ$_n|s(`hp{ z9Z~USvKfyoRDAo*Q;Gr-a0oSH^Wy}Za!i>sUnP08DQ8PnT=p=*z*U8l>ItX1tMJ%s z!eP-9)@(FED>s2P=bw;sO2x6y#!OqLV!s@>Tb+uEvyVCaG?Anaj~IM3iR3Ad8MH`z zF@Al-#ABjUtn-K?1LXc5c}TtVhfimSHqoObG#VaYbwJ+N@c|`Wlj-=6A>tu+pZG_G8!@I|B9EsVQ6lHD zebobc2dhYb_=u_fRj7@9OsMp+r^emKq?4?ZsrQ+ilE}bi28?_meo5Q!ar}GH;Vw2{ zkW&H{Msj|0n{jA&i)qh3lc;x-=wrSGzXReXSn8%bOT7 z;5IRb8tM8~kK0a-6o%i%I_VQ#ooVNyc_Tkqdy-jz?xf3HXB zyhe`6bH5_1k*t4iaczGS|0UgI=J-bR*W4od+9xX9Z?SEi#FHQI5bo2!{y*-Lpdt08 zeD7$ZCLW~TWk&IvzIXa< znIC<^Kjj8?R~m`De3L!TKhZw$CTb?>%$Ou`%<2DpA+AulI-R?-u3+CFzQV~@DQm3c z?+3R~@BWb)?l3{dOa1^V#Z=%Pj!!`V{MKrp8s9~(@9bEQS zbLYYxqMlY^9CDj+m#ergzb}#gLsE<$HMwPkZP!EdP8l73zC+{_!Fjmfrs2v5sp;-A zMOBLJgu6JdE9FtIdt9$9!Rx3#E2Z!KN1J;@|6D>#^*tW#Ek@(UJ#23l^XeZ1qE8i( z({PW9|BCoU=N_8B6*JsSAA^1+ycnjBLre*)Zr!C(a1<$qchD7|&U3=CjNe$yeb2i@ zUn=6iF8VB6CBE-J++$owA<+j7C~+$yrObd)$>MLc{66;uH({q^NO>1||5QUPT%}(Z zWWdhNh1~Wuq|!!w)_2}#YGg4VLk&q0zuX*4Bg}(}8MfAl!&gdh{$vEHMFhNhNQ7w# zy#_tt|N0+(QywzuObK7o9{um<-`4#9*S2#7EB>rRcpZ-!aj}%1eT}iVEyi%|V@5g_ zllZ$ad8MV~+CQSZyzWVO$W_4?X^oM6!0rRn?TxUE|3LT~L%jEuQZM_#j?_{-&fKTO z<^!i^-lzFY8P~(_V}Gkm{B;c(w5yCqb_P->N`Gt4eJ0ENX1&2Z8Z;`<3^AbX*b1Eb z+{0&lIkgk?8TYD;L7VR~|8hD1?Z1obm2xh>xWlHi(#M*8k8@t7q2Baqrzdh8##?WZ%13Ne`G3sPu!(U>aTU{^qI3eRdfyS@qL)oThaH}Zz1!~3Vn=1>*(ZqmyzMM zgbRmZ*H3kvY=4I}eH%Hk<35KZ-(LUlJ`R6<;Ip<-->Z zX{*s7@zRj}?-~d^CmMDs(l_#Yz{L5VsOtBS%Qp4Q4l`oIzw)`a54m-^p8Vv8QfD=w zdhm$0`|G*a=`jl~H1PVeth;UvoL^*2uL1SqZEei`_x1RXdxG)KdOi;|!ToR@o*E`h z(XFSZi>Ywx>#(m94!dI=yFZ(<`+Y4R(T*0@qC7! z9QU1qXN;U9MxV zPlR7F#<#VBc0rG5w^#0Wu-w;0b^QF|K7&ryaU@utL(5MjOnrcAMJ;zE?y64K@Oz;F zj)Ut^q77Ls*C{2|kO@uls(K*UgIbc}9`G=#mNS_~1SQmPDBg%LlUn?8A7b~khJLXR zS+Kp9o>`ChPWp2jRF60~sFoiaAB(nl4SgdXYWKu$ot*DKKtpHETm2(bu?|4>1qfnIeAS5%Roi*WeoaK)gb0P){<%c~Uh`WS>jg zP)&NpeGad!;daJ-iqBW$|Ji`?R@MB~#z5{{72k|CU{d>Pt|dL-o2)8KM0;RTeVOE= z#)K{?$1&zHrOoAJm>ILyrJQ;*(P(&GCN-4_XMZe5bD}BXf0r?Go+%|OE9fX12?nv{ z*op?@qbTvw{$k4g)s@UWX2N^zN&=4>i>6WrH)a@9J6-(PB(IGwOyl&`$M{~&V1dUI zI-W{L@5mEc9MXx~XhO}K3?_$~kdu?nwYjF82+QEUlPOuR#7Aa`8J6O=xI5j9vr;b} zcxNJB>Vmg;^@Nneg7^652@&JcF#N%oGoIqRne>PSvOm2jdrU|1pQ`Wtn9HvuKcD(Y zw8v8!YV?p3f)hDc{E!q~d2NyPG&mitbq~e6Fb%KWM(9M8@WU@p|F_>)ZZYF8@#hY> z{FHCjm*BJ643)(5c046Vd<;XApVInQ3Ga2DiH2e^Hxr%_ce#l1o6PAktVrt8XWV>V zM2|!>d`}kB`qb=y-+TMDxoDXu(^JO;<0Z+Myfh(9;zV+YDIcUx3AkiR-s}_t3rsj5 zb%|=D8P(zwXV%w@#8JsuHk#o#T;j;Ar=lw^b(kDSlGGtv2by!tQR*W%bN;bU;ec?O zGNpcdt^FMJ@)XV&J>%JUi68$wXWLQvo=z_)-;jd;Z!fs;Dw*(#7Z{&P!F-MdHsbsF zIoX1unaNmhd?~)1Nmz&mriav5e?&fK*S9Hjd~3;z_JR|cV#x%-PxMk=@`K=9&I|V` zQa_ayC!aGz`gR_(o^e(B0F_70X`YqF^TwxStxD(2DRV*uM|1zgQ&x;lmDu@I`hY2d z!!@H-@HW5pHp6Io653v7tiGAZqYY1~NL7*0@RU<^3B0m>iq}XL*Y1hN%3Sel5-pcU z#}bGh^^9K);u#%hF7uCgbiAK2rB?#mh)%=YZJG=3_?%Eg*lLyO2?VJlt; zg?J3NCCjJ~yPNaD`I4W5+frv%f5~Cj z3KxPWN?*FS3uD*ikW}nK^0jPcTDuVaGMl6mt}K>*xxS7o4Ii^mYjx#xai-``xDnAk zn+~yVIRBZ&o-OVe&d%nVjXNKtAOCc&2g{=~+4IT+N9o_2Pw?c&J=rXN;6bB)Hj^)T zQq@!ZFf+nCQYeP=!ku6Ibi6Qy2-Ox)s(ty>|#jCJ9+d4=e% zb;4irb**40R?aNuw^V0JvWi(V$r{rZxH72+H9@FkUNRP>l>$&h7RG?5i17%tdi%_idx46%y+ydDk~nxt8WPY zD*la|UbCe}h0^qjInpQ4ooL0L?eQeve8u&T@fd_#vRM4merYS(SskQax+8xtDdN&) zOXe;t#8`QQqk0iuFWxZZVWI3-Z;2f&KC~OGx$juOqH#8uP(V_%4Q&JS8Rl=x&3XCQ z9SCm>-GI*ISy;T*=NVVYyiQiwFta1Ob zf=)rUmoE<+-DrehldkmMCal6Eh114p7e6^Q;^anOt+l%jbJ|p{E zvv+kKf!fv-70U5xyk&26E)(mmY1c1~CjnMWm?QpD9cpq#l4$t~ zp6kVYCyaJQq1VNkR=Y^VYfk|B9k^v3NL$zu}j?Zi3~D;?%dYAC^TjzsU{LIZ<3scE>j*lGHsOvI;r*Vdbc z&}fXm@#c0?6d(V7N5%0N78QGw?ibCJ$M3ir8bhbVcYG^;LL+X82T12w+PM3m_D789 zYrNP>KKRl2S35N z%I8)7tUMUY#hC#V4UWN8v|QIGMzi=&;Q+pmX6->gjHX88`q-DV@1y9o){l*=qA!D=J9gKH zOHWrkB7O*$UX73VT87j7hj1VThaW5Fp<@tE>ug_6U5>zXzb}20!fZT>Z^Y z)?ox`0e+;l7oMM~KSrw~X?HMy-Zl~3|2>esGa?!IQxLnl3Qw;?5IyEaP?i%!^1*N} zI0dn%YdC|x31N9`7$#eTX%#-5mR=BTHN$B8V=xv8p&Z{9#Ha5=`Jx?+!KP5ry%sML zqY&{352j0FFvfF3#NR$x@Zj?M;lZq_2qyj4U^G)hSba8#AJ2wJO&cUW)WK}54kAM% zm@&q|j24Wij`)fk3`?rD~5!#_LXpu zzY$-vP;aighx2K=Hy>9;aN5s{#|FZ?sP<%n_>*2;=*gEa5ftt6;QDUiX*7F~6C94^ zzn+{Ce>InN;#trooB{b>^qm`lO&1TTmm=_f=uTQ&;dg|%p8QhfW;1^AQ_6XQ`1Z30Uk*V@4%Szq?@C zrjp-Vow+%+lA-NgS+u1B4=Wd}H7f*n;l>b0!KE#CWt3()0%#&@a5*nkZaA(IUfdP8 z|IM2R>~yD_*$4hy;?A6VW&Aruv~cr3FiQ5bUfyNcwt8@(dl_SHdJ;SBgK!@_aXavV zir!w_(JvKUR8RJVl=ACaFTNWjyvMy>|EsS)&hciu^doz&fj!OMzr`cHQ!tFVHpqr@Y} zze2pI-Pv%zlCw|UX@9wrmCxPi_0vc8^>HU|z(;;v=*HpVkHQajqc->>V_aQ1bwuj+ zzT(kwr;1-^yW;Bjkp@o}Zf&Y!@F*AYlBkgRhZ~7=%2B;>=iKEYN>uOgm;UN{+4o(` zN~EvniQ!hML)v=MB>c;z|9PNRR!UcS|K4e(y!g?B)9*{T8{|QG_Y(Bida`qNF{5-n zDUrO;daxIRT8eO5FIvsz#f&`b!D_P-_Eft6?|SENb|-0eEe>%m^s%U=f04w$9(63s zm39517IS-7@iePJx$R1@^ntqgxU!(E4%Jr|KE2A}w6|#H{*i;8mIEI;NWQ+>9$&$^ zjC$&&`dz_Qe>NxUti( zh>HhZ*&==Rr)}IgBfP$^uI}h%7sxenC+goq%C5NcSv!Y7#hK%RZ~B_y%*Ho@e_G^% zy+IOgdz{7NK<1>oT*%N#LU+9j>-_Rqknf4krhI13_avi30ry{fvHOGITcf=M}7&kHk4 zdEZMfM#joqZ@xF(pQ=#3^k!y30++_UqfzFE`~2TAL^BBkGcPtSi)Y+6IUc7tGQYZW zqD=z1C9)1`W6`bj;KO?1Pqlb)?sGhIoV_?OK3*_^-aOV#;AyaU2`q^hKhk$tTumT$ zoDZw^iqGn3(L}!%Pl9Nbd)mhF)WV1LQE_PBdylhuJSJb?JZ5h{`F4a;He0nrHQ|KMK}{b#PcaTf-Z>(RR0}GacjKz97T#x zob)O7N3r1>x!#dcGM7>DLUPfTNm4fjMN{*gisnBh2m2)f(8T zca2HH<5MxOzj%muka_N>WES*I;Ei?)o#cMc)k(#rT>2-%&C2SZzyV{K)#b-={7R~L zug5dZD-FF_aT1%-Ft{8ic)WC)Z;9`AO&Z6ug{LQ&q)Czo?#xS-SwtN3n^Sl_Lhkpl z6zV3$Gj&EX=cFF^`E)W9e~jaon@RZ2jHPc$65FQ4(zzg!oPlxNG7zuof$?nnNjPiL zpV7-pBq%+e`8g^Me-XakZ1J!b-rjUMw=?}?87;NsYB|nLa?Q>}#j~(DL3-2i7|Lgh z%;Y}Q#0mZ(PI_+f?2Cm36vFBNjtB@0SvbH$N4Bad){dH)3fGme0P8VcTf&5;hecha&&)6fO9R z81jOn>HS>(Gl=2g;%F8Mk7Jm`?BD}({iN3DwKAU80WsW=dZ_!zXzYKBx@JLr;EKAH!dv9#~w6!G4klchUvR>*ZyK^-pmY>hN z@vGD&ans!CX(0Z%Kgj;_O$@Oo-1z>nhYI(r zUp9@Sf(RUug{EsD^ZRGBbaXJWD>Jz?D2Qo0GuhZDn1p#*RM-Xc)4ojZbq=9mdKQf@ zLzw?ZCTBE5u^O4hv`3-n4#}k6C5%Bmv+%wiMpyAUe-IeXh%wn*5bsN?S=mf}DU2lnJWFQ zxhiZvXLD&lB1TC${1>Le+&qV?NrELQ6#Q-5B=o)&-0i_c^0c#=+924Bl{skjP9;Y;^R}Fdmmh>`%g7+?d7Y(dh)A$z*hD8lG=5@$pNi zIyi%WccpWuA%oScGf3^2LFW(YtlOE+;Vl_>36641OgbHJq+ykr!NmX4xxO}&%5fQ@ z=byz8w=`BnW%616Z6~=mMn!_}oG+N%uBoCAoXNtDsZ6uWqC<`FHwR^7AwS2PXLE35 z3WG*wOaE4IM`N?d`8`E?yqRPSN#%9dOuo2_@B7XSuKtory<0jZf?o^NO~#QGznAbxJr)8CxymAY4mMMrqADL z%$9ql^*Eh_vB^}t&cGbeqq?1i(T-$>TFG@09F{}39D=NqQJ&I%A)CSejIe& z8AD+rQ8KIQ*gKJtqRru0CA>ZBA`W^d5iw6RGeYFq{=JaiEyB|aE)>pz;OBA*Fq@f( z`C`$wn4idrKZUb3BMIx&d^+YOq2`uHn&9t3f6AlnszmYq$YbNriOjl~Pw+VvSIY9~ ze?vuwcKPBdD1F_bc{006WN>gUzP*$9WkW9eijx?6M6l~-Nqm`}&D?!*9woBgJXAEg z<}i100(-+ndn-orqZ@fxzf0hsqxnStA+bFrhmENT#5-qW{#AwF>18y9OQn2v3QfmSnfy3~FAq|f`dRj$ zh$Qy)PUoE5gFm}uplh2%`>W|ZmVBmt|4g38%G&#s!7ahU{rfnR_U&ZmCVN+%Tw7b2 zd&IR#V&|wV&dWYKSMaOJkt#CBXArqb#m3&5O#ep3pY|CvNq%#JEQa??;Q3|YF-WdA z$yWBdv65p4X7GAqp=#(*n=X&ai#hkp{Kf1kps zKFOken#|8nQyAuw#1X-+MsAaJxgZ%^Q<zwa(IW9FvKcQ& z%I2*y8~83o^x6~Xu{)Wxvx#U#$$THwZYr1Nj#G4zU#k4mdLZ4b3~rMqIg30 zCedM0JcpO0NN+Trwl7n7@;aUqviECe#Ij0ozE-s{GRsKg?zC9G98BY+)B_gV(;2xS znhZIn5u2k>{guv%Et1z=O=JG+D9)OsGR`qtdZmJ29T-EPQHtb^F*Jyd!ZOM2-bV}m zRq6%vTEUGXuJ@Yh~?t3Kvw3a!q63yAf z6x5bR$y{01zKQgvH>VLdHUck;bbfpoPT#{BIPVT;#$~}({}P6ebvkv+!x(ZWgALN_ zOViJwa&HKSZ)9-zxb*anXHa`Ch|pg%ICL|Rm9kF$84-wC_be8^4B%>N7E1;Oh<0%{ zuda&6o8bB883pj|+H~4}2@qYRbPUP^@!6Bk#4kZSw@Vj&(_nn%UhT{aVaIY=pD(1B zdQ)PsR~Q>5mi}`z9FG|iuT3L(Dflac!SC&q$u1 zwbGjoNXFSQf*Ho-$b@)gaOQz;}2j9~S#6#kT+?OamnGdGM)-$@)f6hge<&F&V3!ntJLcMl~) z@asQyl^$=Q%+;rbU{RjROVKD8cQTC$J0-7OnMRK@0en9`ot|9+WOkFm;%@$&trr}G zu0L~rlKZyNmq#g*PyFc1;!PQ(NdJHIvP@>WzZc$LDyzJFN&H6k1MxzeIVp`0Lx1d2 zrREEI&w-#k@skLk>tu-yP2%BwTk_I=K{#h-b38bh&7HCtGb@D4JA`Ky9LnJxl4A^) z9{uk*JZc-kxW2jkAeuMljAU;=5Q)X(Y!1k}|05|I&2`cInVBPTE{6Aqa~SUy!=$Pl zT&0FMpr6Ctu~H+=$ibs24t?JoMm>sW*FQNdJD5Prf?O_)k^OUVF4H3=rfTM4oEIY}}hq;kWscl!z4RV>=CUL_P6+F{xXSElUQI45jp8`ylgClw z#LGO7q!iJZNyuf!ESW*A&t<*LJY2j)FS05c^CNlGN>4WUSU%?sVp%sL5A{INz$wn- zw^FIi_T+Q$Sv2ZF`OI1t#ipn{W_O69^>Z$pFGh07D~~QRYxpZN53lVJY%8jZq|bLmj@Nd7 z4%?+hJv>*g=cs7ZE=tT7jf=V^xpYkyO(wq_?4}3P;c*UUR)k<2k&RVw2<X4wUCa9=0`#c%#n$I$=H zWj-v75WTMuX1j$k)i{(DPr|uq5JZ?&IKwl7xU?aRU6+Hg4h&`O`5*>FM)2p$U@onS zWJpjD@9iTA?-k7D$5C|D4PmKTG;`uYxcYMxOZJB{^+6;DBSJB{7A3u;FpfAxa=EwY zhP;*8gY3bj(rbG!YoqUzIHqVsi(XqC6OKjl)8ly2rinx`O<+oVBrbzhyxJ9kZA$`H z+hi`4t77toa9l^I=(Hf5=!=Q;k$F)5Pl*KTMX+&b64f5z7>yLJhHnJFyi2CBEF9<2 zDg0L$#&>~&HR>3~s~?i_dlShMRU&=NyoR>}E_XGso_n~hOs8oQ^;zArV+ zsOwpb86+H@B#FK58Jzewlg*1W*)%f~gSlBGob#vlU=}SG{5fc60Nd$zE5UH z<8x&1_rp3Y8_NUY*C@4r^H|%2jc%I`SM&n z@n4i@eZa+(i?2LQAnbv)XhT+ znN*p|rf0xFKp9*+>UTSE+0yLWbk7t?Bj1a*qOYb{UaLVW9ey#72#?eYyTW!+l zqn^v*wrO0_$e~Mqn&9Vh#0yB))T3;6*b45sUk)cfdo#2u8?OiNSg_sDDys*y6VzT@`yodBadU@mPna%z|ahz(O zOQUBTv)bn{vn7tcALP3K8HdVIFdh!Ek~8Jev0DPc!}HO1k{IGtfZjOiB_1rKL~_5Z z=0f5`x8=*WB5L}?^QU0+1Ejw>S-1dCQUtfQtC(orc=4etVTIt>cJ3?TPFWmRj7u?+ zymRC?9~hqyC%U^In0sGx$fgfy?n=POP-bZL63dFqD3!kDgS0aGw3nVwzY2Er6uwV- zIce=ww0SSHI_dj5=~SX2d&H6#mFTUNo~XB z6lzzqY;YWHW>u5bIi9#4HJo1;OShUDZhn$JVp1)$q)+$eNF7Pi2Q=DU&svFvA@%ia zJsQikKLndRL-wqudUO}ZvA$6bB|#3NPq%{L9qKO0Gv{wJ1tN8r-=69)DXJg@)6 zYoBo1?f-=C&Twjs8(Av3Sg*cK9BCKM%jZobE{Q<@ax)_{L@#&lXPPAzZr5t2_p~tj zeJ7d?OGVFVU?YYj!rARDm}`v)oZ2)HEwQ23$Oe9U6e+oSz2pFqqB~s20KtWv`dhRT z&PPd}TFX9*NG=xF5+*p4DIaR6mRxh()f&-$jV8BiEwPQ!G)}AKQWv?t@zu7zGo;3nnPaz(u`Euie zeNHr%Q>#&lj!jBnH4A=@rhI4(0fz)HV_1!|oae7i)woAT$c(;*?w2Atu2apdwSud8 zQ3dm(7;5*Cg_1+JlXVv;ajeFrili;!9Qf@c=a)$DRH?%7zfe9btD)!iFxu(YFhyoJ z`q%1E?-ItsvvsV{lU#UG0~sg7*r3(GzC)q(yWYs^>=0hP`NYCIA*5|Xb!b@c5ROiX$`(RW2R(zpTb^gt%b=lZM(V(WjRkK#Dlj%Mcm7C`sEKC{-upSWS4`DI!l%S5xo7@1Yg{lbnx z;zzvr3zqJF>|NH1u5|#q%UjVJF8i|bl_N(2nC&31tNk(mT}_$reE`qQ)D*XKg1PCc zu9W-wGJmX^GHZ$W3_GbQR>Q)7$_f(uyS03H)6a22a z;-l%yx8G|hI zZ+KJlUR${v{~nj!+RBVAe!@f2RC;~#s!u(GgKsCQg%Da=f}Sf1$iDQ%$LC8^jfBHKlj9 zU|>$FDZ|9)`^!`{W#4j%YfIIX=br-^e)=oFJ`3V|Z8b$lur*2D)s$uOe#1#$v33dO zk5gY+=ODd*w^p8CmD%8muN=A_!mMqrtp6=kN`Y1m^bD19?+d@Q2_yYzE5|y8QM~gj zCr3z5+^vNpJ0zza+k)z?;BZ=6xST3D9_0%w(t-rT(#rMbK(5?rrDRMXy((K7As8Y9 z+b>+L4dTJ>FK7)7=InzOuFeZ$LP86{e~9i}T?_l(3s$FB3scL3h&%b28O^~&eb<6c zT`;OupBert1Wm7I)}IY!@`}%R{t(97%4WJ6gkrb98Hh$-Z^EeGnHi zn{i(d%yZ`^t|tXklPTOopAh^+EKZf@by_{DzuhVZ z85ObSu!>%93fU!m&%F~w3wVSF<6HAMuI^U%?K)v6R}# z&z(cJ3V2rLCK$y6P7QHKL-NGC(i3>Ov51VBQR0VLBsiET>jk z!XeljL3a0Ix}S?+z*OnyN{yDjteC1Z;Uvr|5!`14J;#*tWVzth`j^sQ^6`?^Qoaq5 zeEdr(jpM@EUN0E+@=(6^C}UYpD9>fzu75B4-IH>`)rXQYtAbJXVQ7a}P$cVfz>!Mf zp@fK@W(9XYg)pW@w6eEI{qe3G-A5sOy;{cMT{8RL|A8&<dG@)hYb=tO+ybhr_oGRvw?3-~E(=A+{7wPA_MuqTFIEhDO-D~Rz_Sr9( z1G=KAd@h6_(*jlr9!oP><^s=yIow6A-(Mm8W-j^D!(f*5lbU!@IClLjD3`jVuV`)W z`z3-C6`K|VM!H3^;M(R&!jYqbof;JGNK?T_+;bfGS1>(`A{{UuRn0I%2PW;QVn?w(35mijnkRk9 zG4)LFjpzL5dWPspU);Hl0Ks%Og$kzYfM8X1Yj_alK#oNX>l*Eum0iQZ!wzgaQ!Dre zdpg+HipGOIhb3?5rXxNt2GybyU`IwkEt6N-bJwJfsz2=ryj>@`tsR#X$;TRPxv@($ zm9E?Ilf=UWD_dNDY{2(-JCWc zk(MpCWS(oH<%A7`rZ!1WR(?OKnFU|0DX3_|`nEOun;VH=WX;2rCj9paw%Vkb%a@`Poi*7jTbSPRmUf9P^d0|}VfrnC z(RnL6X`g95^oERSEl8BWYv&iH9)5#+&o9h2e#5K!FT~lrroiM2sZFn`zS+t_!6sX6 zm3@5vYtD@RN^bu*_#OC4-2oeH+&>e0+XiQ&7OG~;_4)i6$1b+q>;9RR0$U#c_L(;} zw*0=gnQ+0-o7jmqmy;b;mY>C+!=79D&7vn}&ok{7#*BA>3&OQ7b6|3Z&omS|2o9#1 zsyatzg*HHr?(NX5tpE#!GNT^OD7IPd(>(V3|$_}Wf ze8`ibXnBiS&yNphb^+WynXk%3X9{Ug_5Wh8k~&7728*M=qD1_p2%C31L*W`AW~yF!XMJVN|p9xHf7iU!|w@Dnvuc@eUPz zY7J$_n@}#hYAC6vtZ?vDQ*MU5!q`tuX&GR}re$hM$rvjpk5X4Ew!e}&x4Lqq`W5qU zsw>;OzT&Hux)NzC+=6}@is4D|2`^Sx22FoW?MrpV;=pUpb<$9Nx3}cy?=+OFzgn`! zSzWp7`;yJ0G?Z9VO9E{*lnJ>n@ygLqympJ<^?5mtzAyQ!QbQSGZNYcfG!)G_77VV} zQ1*3t$-4m>%BX9Ww2V+!O8URzT&$X6di^CY?9>&<9BU@O)Ku20+j2ccQ)%2{!{}jJ zN=I3zmw(b!&W78eJyc7Hm!AhM(o)6_w!?duma=NM9jYWPrNdc!E+lIyMJw&(c(s-6 z|Lpm#Qd`N=vt{NfZ6$w*VCOsQD6Wrf@Xydzem`K#=XE+t*>xL!9;Kt$kC1gAq@%3R zvu4>JI?5HrhR0<(%D=De=&-Ggvj4IzeeK&Q?(gkr$Zn&Qx7adxNL$5ciY+6zwN=Jf zTJw8gTSccyo+pd8${tf2{Cc)i`U$2rdQCgU?~XnH^lYoRpR~vPNgE|_xC65ewoyh{ zIf##1TSZmu$Q_e5O1trnxRmNBjxF}|%+gUN|7_3gv2B#BrS^=l(NQcOI54D(j&kv> zJa2b&lm`Zm+>+zp=j6n#Njgf=Rwt%s%5e{IX7(T2%A`ucxEg9Jk%DzSRHCKqFL06h zp|-OBv2dK?wUrhp7na}EQXGR^3C-40HrBXueV&%GbBrrBJ++jT!jUqp(^P8WUFc`5 zsiYlqrFO2SV(#oFSY%Db@U0ue{*vo1SlGZAEhS}+2X9ZveX?-p+b^1m@jiE~u1kKr z+=Ek+ho?>REJNMV9HXhsN_V5}P))gCZnXZUsSIjx zB`!}xG3epSP!A2|z(p5aztL1o1f!W5sG-c;?#lB#b;Y`~n`mfgC__)XWAaKvF&B*B zL|LE9@;%7*QdfSv<;mPob){v4r)UtXDf%()?Db0`&o)nJ{kf%py4Q8sQ0 z6b%*~<*28PV7s)GWrc6qx_awOf@u>Z;smX%2`8MDe?Z9r-rgAzz(fmno9B=TWY3i zD5EdhbK-@%a#)_vsoP{9yd`naT3s1eZclI7huji{J9b@7nO|f_Qa?3ih^9MFJLxDo zg6+C;Nk=(5&Q1Igbd-;6JXj*v@5qlH?Do`A2CCedAFQoBeei;L)|$$soEI2&(^7hV ze$EuBGc*3QV5YaG;?T>2e%myap#Cpdw?|8fnPtJ4GxD6Be1V;hmf}?Xg62Fe#dYlq z?v2n^oZDESK1W;Gv+D&ZH?);E4iw$g3>OWHivQjBLm$Mk!-PQ#uv zLF(7&^{-Lu-%e?>+lqIZ?Ucp(ujziGt)i=8g`d36>0!oE_jXE`Rc5q~YOl;%WXiSX zcFI5ZOqqJJy>iaRgq^>&S5Cb);ayI9<;E>DrnI(K`lgv;ai@dQU~PhxVFzVue^c@0 z>7e{|(@eNn9h86NeaDoJicU{6&Xsjkw&j_y>3&D0(!_)(I-QigJxvAM(Mi#CFk@*4 zU8PHfiD<{^Dv{Nuba&BJ{>*tIedA7wD)I@>zU!on*!qNVdL5NMe?R5=noi2pe&)it z(Nzl8o3KZ%qhgoz1dX>Hlnoo7V6(P^vdi%a=4I`b#t38HYIIOGUNdIjfey;6c2Ah~ zM2>%|F`5o?UI&foxS+lA*IpBJZ?#iS{bz@6m-dQki37_U+9`XM*s(|6SD)m^e+xP( zy;Xjqo7Yj%Smw{7hK|aPIevU2uQp$NaoE&J=_~#Aw?3T|wR7?W1a(rP8+|dEsjD;! zha|JAlag)vo=zs6l-pCKPrbI2qG9CA_jMf=vsz!iT<)m2>HFcfxT7**ygw~VJ1UmK z@vtzF>lZ9skJ+7+G`#@kZ11E@Tj|eOw@yl6m_JiS=qjs)dva;Gu5x*gKWB_|l_qU} zc4~K4#tri0iCSkx`p1#~Z&{^3t!;jv1ot25}e0iGMS#gN>C4XfXD-aDI+ z9kSQ&{JwwP$9>=Xe!pMu*ZaKA>%5+?=XsvO$5k|x?>~M_H680}fNT4zXr-G0g1;W8 zj(rU9&8dn$9yfq2@i;}68ep{caT*hAfVg7LaXP9Gp?ekiJ>q`Ut)>p#f2pslY58M) z1j@Odn#=(17pqCMP#>qcea8az5vAtbr&D@3ez}@*h5Cq(ucnL#dbsagO&$^Ycssm` zI?m8X@a5xF=BbY|TjqS<)PwPmDk|uuhtkuLW9ZlI6(x(E+$pe|>1aG+~F>Dj9YV( z!uh!7qm%T!P6y@JYiSmbPnvj&uD;X8)XsHOdR80r8PCbyuZ^KI>Zt7?ZFKBa&+A-m z$Tb;vY@>~+ta@_2u7#`2Z5`vOjk4A{QY_FyzEvH4U8{v6@hLiYPz#Q2PLZLbHUc-_f<=2$iDou>nn`-bnk@$va}D->AMDK+;xC_HX5Sl)_#g_GDJ^~XV)(@{9k-~ z;Hn`Kvr0+0#t>QsrPLrW!pa9_6xh}f)x6H%xzhlHtIH^Z{l^Yo@7>`0rMQ(*-_Zsr zXxUG?>=%?P4p57p0c_46r1yMYzkTI&H1$`;-E5vEbo}(u{?vUds|@ttaNhswZN~ebo#s5 z0>jQOWlcm22u`Nb#m!c5sZOQyM%E}{?Z{70tg!8V7VBb|VT&r8+A7U)+$oFd{mjub zm^Hz)tYKlBPGL1xaNm$lrgAITnr70_?N+GRu$-a}T48k4GFrUa3Tds&NFuU=>f17| z0cMR=Hfgl9+y)aOQb{VX!SdIsG`h(eO@dT6EE{aeP9Z}N8z_oW$nv2L zMxR->w)m63gr-H>Lfvi&jag%huU?C(+ZbE)AGDYb-?fEb z|3%d4pe@Qza9F-)GqRa*h z*&a*ISi{IPm-*V(!08++wY0`j!5aD{vW8jQ8d|c>8ui1oS!12wzi~Fzm|NrNscgDm zYXz-j){>lIg{H6^N_VqDf!P}RPsa)wLs`pes1>~0XOqSUODt$zP3;n_5mC*WVvW|Q zu+64n-EA;AH;V>sv%%sfK5lA@sJ*KxMPLh!<*VuZS6e83vzaGui|`YxsD__c;mz7% z-E1In&Zjfh)^Iwzmh~{Kuy{f~{R&|_p0|-+!xY!sZYFmRQz(?1=)oF~h`x1r+g| zpWlBoz1d)j<)89ttD`xtUCO6f?8lndt)*2B?2k%WvuZ52J1&os`kTRLPY!dW&Cub< z8cO|ZhF2D>{kE0=hc$Gqzd0_JX4A5L=BRJ8hB{bU!0K8KWp%c|?U8F}cZvl{)T~un zV1c>pKW}`oK=;Af6mD&a%D;S^{iIGwF4ZMiz$GQ0q}?rW=hRwqnP7o`L-Of%l?BRl z3n;3CCB|D75an9nMoavc zhlkH6ou&3z<+Xs`PZGdOHII_T0yv+W&)Bg&_UxEPTMh`|b7>AuT_nKxj&rH*n*gI| z5?yWMjGdB1S{Cn&E|n8$HBO?Kan2~MPo%czoMDtUnc81>#*X|cbTiQz{d%QS z^?5tYN?J-suG*pX*;0O7J3R89OrPvsQT9BM?u~YZZ&o5Twz{BS@nrH|>57oM6UoHM z4Jkt=P~K!W0 zHH$^4d$p7`7lk;aok4>y3UT~?I#~pZAXuJ3S(+kzw#y{-G7)N{GsyRv2+kWaDRH6$ zHtb5H&M6{z8>iBh`yvEbrjmV>h}WB}Rc-HpOoLQf)Y}24vbU2Z&mYp}ZM1!pC0;ph zr-NpeX#7%0q6TYdyRN5+-L0YdeLaPAu|W;ik*2#fZUyrCy3PtS$D@hl*P zc_@y^(MV-Zg(Ld4ZltI!w%E)5^YJQMw6NA+yqhhI*O$<7e>>#pZK4D-J2Z~iNcuzU z&?4GIK}+lq#u`;8&FsmSw>8zw+4`{9mD1W;EMlkaB%w)`xjh_eEim=%*t zun@Pd6w}4wLIijg)9#%@EPh%{-7X8^#+qiIEJf(k%6>dV1Z8wFnWu_i(4mBNC`1@H zg74cRLd}_C$_sG7vYG5Jt%T@owUK&V6yWXsA{x<804Jv$x;NetXH0Xbroj=5Im$r?e65oF|6e zSb8fg5?eKlqtgTO#OGFxBiG6;;)(|ev{h%XcjJw75x} zT{4QY>fVVZoyX8!%g^G;+Y=~x$}920x&+Rb`7YixXbjo=|0gNDK8p4q{VndV9!W-( zU&RsHBZ=%@i5EN=K_+t=#m=WjP{Hr>;&-O;bgKTec#(fRsjuA>7skia#e2`heKy6D z>C+Z*$=~6mUw%|<^kg_Ct=TP}xnnrzsB91~?KPa9zFjGgBWZ-7oy5mF zNf*aaG;p`JWd6kwl=MMMGGYA~=4cp6KD8uJ|3+QONB6O$8*D0(rjDbs_xcjo2jl4G zH#5l?p9$0$VkjA0G=X|}T1YlNn@9up7)b)-6Dj4Sh2&f@*8u5nA{pT{nf@KIl2|!R zp&!m>l24jbXpOmnWMuhNvY%xvNgFqna8Fxu-ex-8yr3&ta(4z*n(0dlk4`3?_zsfc zhLh-pZF@;;kE!Qyki@w6?XulU46Fa9{C4bO3ogiLtjiSB&B*u^!l}n#JK-_S|M?k^sHG( z$~rfR{Ae=O9P^O0S-psiA9zW^M{ zk$&6+iTFe|?Qx$hIXR=0%0?cLSj3f*iB5&&Js3~ld{p9@v5x|09+nvH+ef{wAC%;A zzRdTBw$^8N6$>6~~$-`&o8OOOJF=75)k==dC z6sya0E&0Ag6n&Xeif&7?*Ipv)d3PmNfmgT|%u|W>vCC9h`CPKx^fEPHc`Q-uU8cWR znkBBR161nwTk%Yx^=T^6QUe4{P%rz0{sAq}5Q{ z{+e{*6yvU2G-$TRNoq5t1Kn6zN0SEVQ7-e-@~idej_E1Z9nz(!J*-94$aS$5XUN~z zjOy;4pGn|8Ww>rhRkt|j;hh;xuwj1ZbW^foosgT4eQDY1&lE54p{Sm%l=0Aq z^j~q^2^U{V{`ZMCzVxFi*(a*)e^rm(tAK7+Dd6a_lNW}GKkKtddWHpU707$y5E1hP~y#IniJZU=7+MrcD+AMGHz!6 zzCY~}zN9Y2ooIpOcUoK;#CgHr=*{~e%J5))UB9lB+=uIhJd@Bp0dq07foxBFq4N?k zslR`r8B0NPbG}f9Kt`oQKGTB|DHSpIBP&iyFGD|5Z-3BOs-$>tD zMIRo0W&B!2CtdmXjY@iL{FRzVsmbWpSIQX`N@sU+-PtHm=IPt4^T*48pSNku^ANhl zd1L-<5;osx@``xM^!ZMSdc#N}k-iz5yB4?64=NAps@lkCo5O0VPk zD&ynm{ETlj`r1&+5r3uH%wdG#UpcR51clE1LD_4#PSL=hR4~0ijn3!%saFHY^9AQt z&*@M3{`W~3J&?wKY320?&yBrXDQNu&s-MpFBnyU9)FH0FQWsBKwZGGQ_RY4;eYpHP zfpn6-vEI*U+ME7~9!#4+X{`S{?a)Lr*ZxSQ)5g=}H!ZX)B9Z=mY@ySACbO>pC;BUz zLLG*FWZl}Sl)Jlyh76uYhqryCfS~EL=vxcTm@jFsJbT zEE+WA4|(SEalb$Ga?)&4toThwy38U);K;Yatct zza?qwLfRbkp7t+HrsgFth?b{Px*l`gbJ8e&5a$TYPN5ZwAJnI9CiNZggEqNjP~aQp zAQom&^~&#bGbMw>9UpU@n>13eoL5d`?xAK}kPf(B|lL zu1~}|n(r9vt7NX9#WLF0zlnw?XR^INV9liERB)B+NiSSM=PFpYHg-8Vzk0{|WNW#$ z?K|?@w3dE{zN5Aub7)2CA3Dhy#Z)zS;@vOBpw)6oxGsYS_ z^C69X&e$C506e(4mK-@pqo>PSQr=_@6{|ejQqFqAY3r%2<}12hzK$;JeMRDyb)>bB z{YCI*>e1mlJ@DT`Qj2etFJ!Jr#&;_A*-9b0-^upzRti}EjrJOErIS(288X>MnX{Su zQ?ixLNMCWz*k-bO-OM#cws0L~hwgl)>IXY$ ztm_Awm$-{Qt$k0iD|T}1`+;6>+({++pQ+&N9>(-Ok@NIDWEuaNj@s`bn-f>*jo%K6 zW?i27efCntS=MX$y@w`zzeayP^4|E7Yg{*-_pm=-CuO@*>Q{Y@47-$4@6D_q${ZNG z%{M46cP~9-zicIQ z{i7s1@`aM79Hq76c;4-NjBf7!OhFpQC|mCf>0YR$L;9`s?c*`B@9>4v_8g=9)>bl` z$a|6Qt)$4RqTIG$=h>oh8u zv$6Cuy|t;NAT`^0r*gW$^})u^KS-w*J)oz(4pPqz_i2AxIX!f`L>=P!ch0%Z=yZrQ z<1f*Xe}~BE_$3-xUO~Z5m#N?b>teNDrS5zjE!SvYeCteL_bmi|31lV{&!l)mFKRT&*8JIKQMKd|_?c?| zagNkL*4&7#rr;S|Z(Xa3f&w|OXes9atz}*6PgQi9wLXU5ucm<3+jP*pnpT!`KJkhw zntS~YO`KlMdVLq@g^Y8t5-!lHj2a5Rdx13jo}>YfFVNp3wX`evB8@j=F1p1fa!IYD z=HC}-6z4rha4z8QbDZz&c!_e`aZbR1i!{!Oa|Uj{XO1CrZ=K$g&gL^z_V_({+MJ;; z{C)DF({v&J9pw^h8+zB%b=GQ34y$9mg0uAdUmXQ}J3}VZ>qtK19Mu$@qA{#d*w|c8 zwhe5%X?2tkew7>p>PfkVZEsftbE&UUvwl65e7Q!xyg%p?f1UmfsHc=?tS9APOa4BM zoM*&w;{HY|(LPB>w%(=M8MRcecaK62ouoH;oRdA{1!*NcB|Ep5RKj^sWeZ=BjPu~i z&pao?PfzJm?QKBH}ao48&8YlzHvMl+k9keeTCaMwIx-qCBi<@1bcl&|T1 z=t(N{e@W>$N%KsaDT#RocecHx&EHSbXy#+T53Hqkr(aN$OAU>?(@bqg@xCp`Xjeoh z=-i@Lr1Gewk&VsNIrS)M5dYr0l3aegq#1pW(lyst)ceL2YAk(2WBVOry|;JtH?@++ zv)+g9x=OMc^@f_JR?@0TA1J4sd0hiOQ2&~vR8sto(hnS^oB3SZ^WhPiSkyw>nLj?# zu!WAEK1`dOKXNTq)||f8LP6<=sAEtISrBW(uK7S`#vh^8&$$-P!b8-n+ehlbV4$$I4`K2mY-yv z^6f*k_iiga`C3k&OSl$BTm_}peWLz*4zPb?AF=ra-8KG83vO0XpyxlTR-T{>5r62` zNVcDD?O>3^`{u#zP`9;?Msc3T0N&T1*QXuEDp+5O^FPiEWDSC88kopBl^g!HLlWm5 zO<M51Q{31ynF=vGgwr)t7*ay|9> zPZQZf=FKxNGFy6vx!#)iJ?jjOoW%U6ZzYuL(g9oKC6qm_1ImI+xb~VR3K?h9&Fp}2 z>v@0Ta|dWnKTZMF%xC#=jC%FZNB@1SX}L!q#S@NEmG=Mhfbyujt3Gn#t%UUgI$OYvhURvxkw}d`|>_iK8BaJ+YkU#KxmWD0y5)i5kZ6+|GRV zLL(Hhrt^&#MzAjKuM!bUMoz z{dQGQm5&MbT|Yz)5)+7CAEHSO#t;pzpy3-#;MbWoHSqn_DmG}1!R#J}@rihuhi$3%U_;2f|A;tpZR;;7$2P_cTZ8zgLW@vi9lREq| zL+60q6gR^RCW2k$GTI!wf9;|%^1>0@Bzk_!69q9zRNd1HM%u}g z^1&0GEt2WQ2rsnbeX(*qFAV&dOzRhUA?4a4D(K>c2TvDK(k3rBty@fwhInE4oyBBz zgpd2|BZ0^Q<5|0WM6x;DKkuV{yUbzqbq{IZH;0g8*Ug`q=Wx4-{wXc7*P)2ynU)yk zI-U77u5jHvowfzKLI2KF*41#sb$*UZH{5VhJck0hyF-80EQ)h-$B^=JYO3IU>U`E3 z4Yk5xwol!;R*0}>UhGv%SO%AI-B?R_9xNlnNK3@zaehL86)eh1Dc#5l13xk!e3=#E z^Y_x9sg}q-xrc<)EaC3Fm-^h`ef{`7w5ZV%t;~BJKAYP)a1XuIvBcR*=5t3`p=!r& znyYUKk=}0V%=@g54farUp#_vyyD6*}UvJiYn()C54LS?x%3ybpXdbN`;EoF`50Dk_ zZ)++JlGjx$xHcRl|8~6p!~B__%dByuC7DeAbBE!4?(bplXlcKYya&3Y`-DZbcA`7# zbrw@Ydv_R*SWNvExZ~okMI?FZj*%*^VG(A7rD+H0jEfB}aV+Zhz#22vyQ%9c=6kSR zZJua_xp#L{Yga4mE7?T>jaHa^Xa^Y{wuY|R4!Ze=`6FMp({3MYoNL%YZQN{N<+_9I z&IWI9?_fPj8;tCL#&DQ%w!k+)Y!MW@T;zb8>sHd(gARBuTg5tPj&P4( zNecyzFu1vbc3*Zth{+1t6y%5lp1G7;!25rTa_IFd5#DL#P$uuo{au+$1??SR^gM@a zjXB`q;#^Ymbzgi*r$5@RD4&%`^ zCQRoVWv-}RlS%*nbH%3XS(JU-5u#pMlw;w9ab2?Le32s-XlB#4J>&$Y%foN%~j zHl5q*1Qch{+>cIZZoiABH`*b%_fCp;vWFe*q;5y-@Km^q!qxmeVJE#=VUHWZ%x6Ae z4^{F`TK=8)!D4y*+Y9hFlX<&$gxK_8BQ+lv;!g4=8aPP^uWg&js@?$!)|+YAD+j!^ z*-XNv4p5&eWF2T{9MLEwhiGT!ffkU?Gbb#$S4jJloH1WeNUkTGnP*qXb;DfnReKZV zeQ?Cg#EsO$-wEPZ8)@2NM^wFyr??A$#9_~5F!|gU9{e{+lMlkY|0-XeNXIiWzcf4(o$7BROhU^~OzI1%40dgFZ4j1b?D&AzlW}@ZNA#@pUSq zk@-`G7c-*~u~80<%4lrRQ?L*1jSkZl_|(1+_MKLswr_7(1}ZS_LNsoDmLoYT8eK;y z5HLO(gD)%4GbI`c9~HRS5{>P{lqiesjUy|RXlUm91u5}+OEgS3DKTzBG^YJhBK&?d zl8scTkaEON*G4=h9XOeK}ULHzmpPE z`LoMC1zNlGLBAUcOuo#|H&}uHTw>t4Uyl4)F=&1zM~QJ?1k@`q|9TAm{ZTN-kNYuF ziLm>8-XtYf%3{zoK#5oUJIs}cjO&Y;D-`&?r7tf2*cziN%{ea=6;}!wBx@;aUAq@I;0b>wa)el_AEgAN~%JVcf1*toN5;u`(7LwoBpq zq%Y1~m*Uv;zVM5e;@RmKe7h#a-_bF6u}_MwfBN8Us}x1s`=IYvDf+4Tedb6JIj=XY zPD$}~aWo2|WSANojc`vH4m^)SK!FTTeng>Wg$#ouqEPB0$C=nD>=`GA^inUp?4ml#3LLTPh4M57BG*P@$}c(gt&4=kYB_$) zkA%ikIeK;G;|t}`H;iN(lB4lz1hi7*xKR{=^RMMtC5=G4d2(C|jKK0NIl}A1(fmS& zUzOo7%$4I;|8TtMB*)h`VHlP#M@@4Wp1+a9#Wfs5xZQX1!eQNAftR8PgfCRU=|ni} zq7}Fj5Y9X*1sZ#WBP>sWf%n2tZJ|VT+i>)Iser@sFcgkbp!8l;eV77+mkjAU5s^&DnC8c=g2n$#PsP?SXe} z2g$Q~V30}<-Z@0rWf`j4^guSZ|Jdp7FgYT_>Dcbr5Gq4kK7LkPhP0+o)MxQ|^FuME zgAB*Msqt*N46nAUu~9>Y!VYRMF%nbt)ktLjkTOLDo!e6U)KlSRunfIYl^C&Gil=WC zXwa463Xj><+obpm1%z#7Xtm&Xvq6gD`ErEv^&_I>@Lngy#kO+1;p-ROX4_dWMe9Nt zzE6}vxJQO-V`ON8R4M~KUW5!;Q;^Mjqur&{o6kY1|E_!2SkF6fqbt52^NwJYkVbm(65-2CPEP}K#^6*8FK?1H=d zWiap41<%wnNal4xx=e<#U;Qy`mkix6`D41K3_~aTBY&q16-s|p+sSeFkU!4Z$}ua@ zAASNk+8^zV1^l~7@6IrEVml4)4DoRpO0IQ+SCAadJvyP^S~;e>cE@)6&$p_@PSL}ySZvWKvpq`QkPEon)CWb`E2^P4-3EUKwQCz9?uXL*Q2*T;O)CEb_r1_D9>s`oMdu48=}9 z$mf3CAMJx}-(+xj?2QS_*gm#;!@Nm`cayyl%l5ui&YvwZSbXq;`EVJAUH3vw4Zq(! zFU;-DelXq(2f6=-czD6Hy9|3;JaKND41JG#!aP)l{(+ttox^_6$rIju{_V9MILY(p zA_or?PL;vY-2+XFW$485p%vTbp}X$*#`gR^%^d^lqzJ2UgI|~wD?7U5MPD9QN8O+~ zT#83>H$_a9||2f4>W^kLLbxaY5V;Db6)J!(hA&_FJ8C`IQVW z?>oclmJI)9xuBly%fc15A>1FCu26NA;jV@o{&tcfWWO7N*75P{Zn#j) z;~>rr(l7izWN!GK&F@#w4Uenk=*e;0m;^a|+qfcVlpJF=xZu_uIp*?xdS>vvcf}b# zA6aGOuQRmRxAcy5LF*s|s&6rWPJ{h$sx#~+C@^)HGko96vEx5yY-fAYZ+60>ehSn~ zcS7X?Ii7BEf|i9GkJ|J4kmHklO(&d7lEZGjBRtse_MhR1lPlyHw9x^h+A1(F+W{%; zv$_R3pzfgzPpchpuS|we<`*rEks*4I2$MU?VR}G>u53@u9Or$J%aITy!s)|2zxa!= z=OX*>Dj{UO3Y2ihU}i5w0xJ0#mEKxK9)isjF6 zJ8b3o<C)^AImxRH4m6JH-7^VW6oU`j)D&Wrr<_{nePl*Dsx>#uK3(V%^j@wA~iH zSE+ITs2zqnt6Ag34#SVAAZTI!WsC}e2KE^FTZu`R?Jzi9iGla+Fhx^|WvA?Lxk`Z` zM|-&T;{La{NAqJjwprT4%~FBG%*WJNq=42kd#vDjREy*8BYsM}_pyf=UuQD&Hvhcm zxUCDv<=s`Vr>ix91^gl;>wzYPim zTZy10QX+Mg5UV*3zCKfk74wvM^qSWjjY@1&iSYBK5?`24=b=_%Kes=mj|v3`g?PMI zg)kiviYirz%@ZPQxC$x=k$qN$^N#%dj%vj7^}cmf!%#zrwRiddr2>3{8r!o4$b7AW zcZdKjz0}w%65#M}6{a@W1H;)a_S!?&NR53__IN)_jrHBQzaOd*=3rn{ZSkd3D2Da3Lrp{|G~U}{On4~TINKw~HWW7V?crO;=jYht zXSo`KGz19RriR8e0eY=fqxz`;M>EvO>?1^ek{UM5cb#Xg#&=&4!ndg4uuuegI;nAlaiyf0YII!ai11|Y zm(RSuU8+XkBqtm#SK)GRCq(di!uXOCx`(OYH_r*@Wh#99=m>Luj|&}~(ArmtS+$Os z{ZxU`_Z{)(ImfyEoG`3O0jtYSXyADFh}s#;`G0TSoY6z2#G>`iNV}!Lr1Q?Wv`&H9 z9xgarsDNRf3#JC}I;7qOb%6@lg}B0Lrvm-w^LqKO0{&NA5X9rlD3twdni60CxFBz; zlE=0yjv6Z=ta8POQm*d#)fMR`9A_VN!zcEOJ~?j4FyeUPup3e}6DdEf}xxRp7*BcPyFD<5R~So*egPOmxHaPD;$)?uMmok9D2h@Nl&f24me|wn&Nl zUtAIYK?z$=H{||N;$EQ}Zj`Y7-*bbfLWv(X?%2fra<88|Hl%QWbJW%&l z0oU{H$c$0KbcH+qlqw+)cSoX*3fj8vh#IMa`#CpkouGniv>RHgRd|!(hSgSTjO@uc zl&u>7@$;-arNW7CZjet@;cYi}9OC!0Vx2qBrEJHu-O=khf4+0amBDIMRJ-GsuNrSd zJmAU4o%?zqk=KnC!5)}ptitBD9AHNKAL;r_7FKdKe{8Gn|b~6vV?KK`@Bx*>;+3H_t#)ARCH1x=ba}~)+n&jhU1cr>`#|@ zVdFmqq8JzS&`?5J>xJsw3eGL}!su|ej|*OC{wBw3BX1aNkz-}7Hv%NQZt(U-&q!W> zuJ^_@#tnKK`oM51w=>NLcRBv+*5HFBJYS91^hIo=9DnM3u%$tc7^x3>@qG4rv=45x ze{}oijWL-DSPOk{e!K$e{oZ(Xhwp#a8~u+cARgxpZ4)INS9`5k#W;CUP>%roOM6@y@P!`(RB&?#it&) z_e_cPR-Wi_M~RO`9-Ifu>#)flP+P08b}+w(0V+gY@IYLU3X2jv;l5ji!O@-=$n)OJ z)1FY9^89y`@%=|^my0}MR>b4>iYL0iP-0{^FI+js^X3LGY;B`Lzjof3U8zKKUvIRI zQDXZHjvvE$K5FvD;aVkzo#+1Tz+QE_H{!>r@R0jCXQ2wyUi16(R^e5S7p`trq3dEV zY#7XT<>v)`o_7Onz0l?%;}b_cF_q`j--A4{{(}mr^+4uU6-H)y;Qko)uZ12EZ&IVX zmj{;IQX}e`JLfB?(J#^+3rDNbhsP7K|7***YrzyX1~$8)`LY`BV|ZM$Kf5^J4JY`x zogwEFu)n_6=!&gl*`Ka=MU^J|`2<(w#j6qI>Wc2)Rp|4D@hA4Pxl>&*i0?D#wF~~} zg<{)kKK_CI>`7;M^Z8Dh&OBz-D2;N)gzjqOTR6jb2geByolyRs{c=~1$C}hoS39Cd zqZ;WEju;vm3WH2X z93gzSh2m{5A=J^KP-zOWzBCjA?hBAGG!*aG2(bG%KW~))r*uOxGg5$oiJ{oxD8MDF zP+WUr55??IY}{^-Yy4b`eTCS}&-J%Nh~baah&2--j_1FwocC~Lsv18zE{NiJCG9F7 z=lAaTSAa!LI?QWQ{(s- z5&Az=GiEG;S$j49s2!j`N(s%Gu~;fp;)Q)IR0T@>WZdt~8zuIo#lm)<5^HbA!XZ!z z#e-Pv|DZtel2~lo#q*JKEF9UN-&+=ooFE0Z^Y<8S1&;?ZOUB)DMl0 z3anb!4_`~=u#M=C0pDd%UhI$JiyZ$u^oPthyv{qBc&Lnfyzchz2Xjb~`!g20eB3`L7SY=P*Tu2WZUUCM#iD#3&}bZs-3NgU`}?BDOd!~$ zFFG+6U_QJr3LXK{-!bU95-<#p!3sOZDR#tQ<0!sg?-*QANg+Sn2gaSGNcq(pZ#qa} z$9UxaNGXy&MkDkYu;pGfMtC!xu_PMHkAv4q(Xcm@;;JYbwbQwsp3yifl|uJ;6r33! zb37RZ-4H1%Wl^Z*^AqPrp@G}0cfJ=E`AZoKV0>zY6yJXF_p?$&&Fh6tnNpWFh79haNT@vIyhe&Zh!0~s(UCB1mLk5U7mSP;H|Q6J?j&O$+!JP7 zWw=n-6PrYg&lvS&m|ccC*PhVhc2$=3KrF9M=XULZR>po326RWaHByW}ABvr;cwNk6 zd=&RrUZNT&#!JzXsX}&JDPDh7LGl#1!7;@SUN29(!oKz<*e5WyDw86Jv9}qF9R-|G z0P#S`djBYfNalcOT3&x5rjIV9(hJji#OnwyvgU*aITn)rJ zL&h^q1EJeThQsf>Vtcd<{pNSY_r8pe{AGNIk7p$ZKolv%rN3S9mfN208-NGbrReO_ z1=dMY_*MC1akUgW-TYy8LkjDeonduPiiQuJkQK|%b+Hp1c)VK=?S#dHrLc7GgeN94 zG#Yk-5x<{{r5zE??OMt>&ygr8CN=uu$5Y1m!u;6QWXN3WhXrExAKHG%-NCpU`9XSx z$Ik;_=yM+yFYv`?7by*w9B*urIo$dRLH#Bs){bFw%{~$#j<2Cy; zqzJC_!t^EFuL0iB5lE5s$P1sHrLYS0!p(hvAlnNqWt?iv^X(1D6V< z2<5orS$oD$!g$|zixkIyxx+kAij#I8c*}m}{5E%-=W+9Z_j|9WNFfUHLgHg!dz3rw zu#KF!f$Sdcu@k@X|Jbs4<@prcSvAnLlyh@6lfdX6+ zNm1*`_y~^!ziNBr)^Iz|+H*d(6y0L%@$!=tQ{xyXI3$JbYdhRy{}s_{he2$&`ixhs z=`X_<#xX|c$}r`x9n@!K7?o=WZN~e`9PIFyak;bvd)C+B&l~p0`zHky0tg1nFny~4 z!zQskMF=pdi2LE8J(lS)e)^L0Mc=c1jpe-1)iSK+b@CC$n+FF7@sa)a=xL0{D0yr@ zu|pO6p-KJiaDe^5vb%OD?*qo}>=2L%6v*t6|CcbuobxlC`2D8XgSYXpbCf+Q2NI(A zIg)D#PJ0;d@g(>UvxoL|39cA3-f>j|i=B-B#7i*!x*a|yO0bjn9}CutabIGOwrwSt zv&bIDO2kO6;{C}0F(xv8vc_GER(-}(PKO}2FXKx$Lh$K=J^I9lU_~LH7ZZY=4*b8@ z!5s73F9yLV;`dSbuN%%q*u#5eH=JR- zs`L78sQ6`%M%!R$hBDr=y&G0c5#Y<(U}UWjz|J`s#zzEDtqaClZ6Ty~!5C>JPA*;jz1L~g%@0M-ve7`qlA9Ac!j6EO8x z4C8JB{AefPc)%V52S|`Z0@(Z~!Fa}hhHT^hVf&h+6vJt@0RKG;K_j13$XlU2nI6#BM9Z|z7b#mpO@|^gnb7IHop^~aF7It`Mf^oBsiWfK*%u(QW*Cz z`5}Q$jXj$B5C*K`yu*ov&FzFZbwYxQCw%{z5}0%nVhy)%^+3i~Hih{g<#_jA>tkdBeF%vm`5;zuXEn6aWEco+`2&(jB%bK+|K7c z2)PIkMh2tP3K2G!a{nu}LUiN)o1)D)(H}8hoD-rsN`ggMLR{T1!N>w3oHPg(av`oSCWOusVz!F#?~xGe zZc31?A;Lxnf_}6JzfVb!IZ=ey6C^kqE5gbV5={Ic?W9#gK;b z{Xc|Ya0=(`=7wNoqzL~<(piQ{bv0WUf;$8Y!N=VgZ&}04w2d<^xD(vno!|k2y99R) z7Th5~aLtDVcenc{_Xp2;y6HKx&)!w5R;{X?MQ)|=czBvGk@~W)mgfA$eDfe*E(5va zTKbjW)#dxc&kb7qrk31OjQV{Wx`gdUegCkQ_E+HjECuiPGpXn9TI9A&ir7<2j^!p* zuT)#u&wRNGdN$-2qR$OJ1UcvVU>@?~G_RElJ)VPkdRr`fON1E5xr)dTi_pPnE zfd*w1a?)x(ubo|6@7@{o;bd*S%`~drm)a`0!6>(VwPj(x?JfX*Utv^*T2AtBZPW_* zw_L&B?E9In1a}1i?-${c$8&qtSlm1LL%KF$zk6#&7vYfLDFfZ3WaMJV3 zk!T;BICmtVxLJZPu14hJ0^93Z>*8P?z4?+>$ofS=nweEqGnZhcGBc!CT)mt zQqnMfztl;4Yn!xbhm%5>AAOviRsO0`&&E2dK_{b@FXg%gj9R(JS)mC=jVR@!`F9Lj z=?#D7W>jD={Lo&58cuQ18=lwomWzIFW>nS@7rh^EL_gr7q^(9--Z-n2lSylDI;#`+ zJ)?)SOf5|6Thdv@$=ywA=B$T5n{*4FtZGY>;v!u12X=9eFL{F3Cf(cXtnA`u^-XbB z*-W!;E_T-ZMrQRlJ1Z{CtV;N`V)NKO@Fn%WQ_QM5+DXIv^1PLt^b=dxZI_b{oHc9u zx!P*uBh`IZTU*OXWqZO8l3RSx}jP+y~nIS zSYNFrHC|s+KV2ag`6IkBlJM8dYp9Q>^y`5d8iD;EpHf3dJApU45Kl%EcYLj`-anZ& z5W9K_yYaenb-fsCR?T4i;$W%X#_DQ_zubzwZ(TY{s~y#qutB<26}`z4>CBxPn)r$H z?}Mjp8l?v%YiZk8sZmHRt(pFB992t?W2Nk@S}On8tY^krT1|?mL6O>;+(P=ydNJ>k zR1`qU%@9lXH{?s@pa8VxZmvBs!}OR7pB%$^`23B+yxxa3Ow_?w*LMi zRVwPFeEhE4&f2QnL7KU!w&L4L-a*9Ylcc`ztTn;IQ<1#5q-v`q zckss749VERN$sDTnTt;3cQ_V-H{kwz-f~jFD8c7CEBCeZ(gXf9Q%arWtb#T99^7JM zye+MrHExYrS8h3L>{~OjwzHa5m6m*TR_~F-ndhC=>Yn8H#90H0-!`SW==KOHg86j7 zpZl!uqPxdgAL%aY%sO$Y<)ZH@@ZP4oXu|@N!kN!kL$PZMUG&cfqsqtgcPET`u+c>) z<{EXsx~oRve;Wq6YJ5kdQb)RKZ$YCD&T!T7D@Lh@t9BPPsdGv4b=^#A_{Bw^@b6up zxJdZ@w*39lL)epSR~2-a)TgPdJgYO`&$;T-Z$`bn<*H6*qdq-%Rl8nBv?gvkcHO9r zQRtw;O`0F+rgI~~4TargWgUmFa8>L7nRMuwD?A_LLtfB0-z?ua@@mYxWw%|F+|#VI z5iSbZZ`RtgE~-LmsKs`kX9#iAuP*ZJE`2QMDq5`RGCXu2=JB6Aj~Dpm&>>fKjW+B4 zS63xsU(Rv;M_f0utD8F3G$~}3n}%#NYV|rd{f6DHyqmn=Orsjta@RX=qdIxG>v(UY z*1|upe~UoPu zIoi2uQo%^|m<&(;L!>siGcFqwenD3SA&vLJ=8GKpzM3@`Zn00t%Ke5{SJc!U%u^UgS?_W6x-gQ z)hj)eUc^9N!9yMkBUR$6hg$KxEkixEy`e#;%6V!xc&Y0=5A9$aXOdS=AeKCK$6ddV zHfm8h;*T(+dZ&3PiTU)~HV+M%XjI}5`1pH9CBq{&<9P78yLvn~>P2U+U)Y3(jyypZ zlk#r5Dd{rydZnAX8q6BY`;MNC{WZF&^EZ7_Ua)lgH#M z%GymjRl`G_qxd}5LwoNS74*A@1`aXm`77?fqEQ=az^`vMXnhmnu>^zGjP}$3#=F}J zPc5_>l=|LNf8tNupZ3(I^#)Nri66rcxABta`AD^K@lx?>Mr}g>J@rSUPQfQn9Anhe z+n%xvWWF}=Qh%=Vc?j|1T7%M7d+AkCqw>A-(%vNo{Z+$T1Kxlu(GBE+zebGr);hE$ z4bOP%b9b~R@bUY2uh}La^~p5oRdXK={?(v~D||E}*dW^}A6YsXl;7m5^eqOZbn=z& zM}vlp_R*ypMwR~2M|~SolHcA(>xN-(;Lle_fnQg8>-XhG6&UBOul0@UYVualQT%aD z@&cWWYIO>J`-V{!*AsU}5LXoSR#>7*Wq&1}-C)wY*WCYBlZJQkQbv7~8lY#`caV7F zqo_ay@l@rdcZjJ$0p^RJ{cGpLR&1{_)UX zhoxE0@a(?$zsa5&v`<>G$y05ckV0?dsa@~QDmj=qf4o`mmwKusc0A>zr`&3q)jh^b zH%FM&xT=?$;Lj4@d8&A}8@V=T4H0wiQ z=Fc6oe!Ase!6AWfX46_oy=-B)LZ9Ynl!hgw|*T?Jk-WpZs6R_ z-MlsHkx{|_^H#$Qlg|I?txvqq^S8(!c@l4)_SR{xQ>%!Nz6a-YNcK@T@KNj_9}RUf z>sGjrE*vqbP-`Cz8;C#hBfsGa&X$k<+Q&K||8aC4cIAkV%0(JA5`E2rO8BEZUriir zR1u@E9y~D0?&OQk)r5A^M?=!^XN7##@+aosG#~BSZX(|Hkylmx^*a8)t69h2`pD(H zSrra3&x54WbGa^NaE6F7bd3o(yz#*qCI@| z`K(b>r}(NQcz*3#U;Pg553c3M^I)eVIQBE>_hdiy@Z@u8KRs`4(60ymnB`RVpklRm?XRZV0a9q<$7S6V*J51R>I?BJ(4)uip8 z8Q(#yhwuI9qbV?sFPy8iuBWfMc*9BZ+=<|yZBKob1up8m*H6C{hxfYTr{v$vssbOE zE3>LK^;fC8Cf$AEr+fWPdj5mIrdKg({4qZ@Uuo3DCw^LEFluy3e+3>l=$pI0UZoji zj`i2#50Oec>!&V@BXzZlpI)4e)Z|cql`C%050m|M7=PXLw7+H%mxmM!P@6pBtEK^p z8)wji83FPL2JiFWdR?x|XY(+BIfz@+oBJ#1dy_Jv{Pnb#iJBaL4ZFp>;`nh)=irYa0AWmuvp&!7(H=K!JRJ+&@4ai5oKp2B-zknVS}%Vh*#$ zxCGE2kaavWKs^}WsVxF@Xqj1)Uis^D3HU3&08P%v{MzlWQ`m{zm;Soni1FtB=6^D4 zC;VoUg=SqE;I9kmQcw+lrSArJ2KsA%ktogV=dX6%qg20^zuq^UbultpUjr2v_mm^BYx^(Wqc^05Go8)8z`HvxK9#-u090#p`$;iuC9 zN(X;de#`wHGiX_jKsCV65A77F&nFCeKQmAx8TW+=ftps`pvJEQ)fxYH*F8uftly-E zfr^6v_yEl?lJn`E6FsLhP`2+p?(e7Cn{po+gWX`GSsb}(zlxInF7y>5sL zRAmQvzBA|fnKmQ^)tvh%P&kNuBI_z7NP*y%)aF52e!-wVzXZwL*`N}K zgLEyHxbkL@8r(FfM_F`@;LfqRb#xWJMdRwox2aLh&eze=ulV6Y!TJUKx!E49o8N;+ z`v+_CSp4PAVC{A_YVV6+ygy17%5T!&y+ic;SEFhKgy`pQ;GKLSYWtG- zV@$BV5(i{d4A%9=Ce2O?R#!9c=RzHQJ80Cjd3998g>h_NN6$AJ<>y{Us~FGL&w}K{ zI{vmgNY3R<8qzyRRag(bY>el9&Qmo=F7?a`Y#pS$>n8OZ8KkbnEn7DS=`_E~=T=AA z_=mIif^-BvVGiTIgt)lV|ANFeQuvV|l`Vpw_776Cp5$#B1gQ}I^ZAcKDqJ%P8xtfq z;>e)!L3)=!KJIOh=3&pOm>}J-)qjmHF z|CwtG)(_nOYOq?hH_81{FnuA>9A}28=Q-?4bcl97HpzG~SZA`#TDdJ)EAwM#9|kM3rPT6Z zu*P%0-70$4P9Z@$r2$t%=&5J9io$gW=)$Dq7LBllz|}%o@`cuS0S2#->>$4s2YwV z-_?>M&;4dpsG1x$Y0vf$)oW_f3iQMua!o3q6skG9O!Ptx)fN}&=+_-U}n!&iwW1d^~F#b(K^%*=CIU__?_b7cA7^=B$WDqP zbv{)4e}}h82vZxbzrRP=fA=%lCrs10&+!>y>hBD0>>H+P#1la-VOpL}{C*@weyTC2HE zA)}f)hf|MZ)S%Yoz_Gs0!&|C==n*NCIi>PO*P ziN7;74cA-vnm?nLWk%|sDhAa&g?^v7D*&54`)Rt$HWxd6 zF+z>X@_cXx>lPU`e`=(z5FZ{QXR+VIC}RM}Lk1-@FlbLR;={29MeH)@66YLTnt2jr zRJVN88tgHse=mcEbMJB3Tj{>g8af!t5e#_({Fj2p)<2O{Y^Zq}VtVt4Xp zyH@espa10}47xejq=glXii$E?=UML^Re<5Gg=6PN`*-Wjl6$setB?l+g8%} z=H%Hvo3;5uq;BDh9-85!lCho1kvg_T8cyD9b7Yhft4C4~Moye#J8WW6@vBb z*nfnHI13I5zHt@v_T3bdR`xS0fw=TQl2NW)Bc}#Agq6fCFUb8Amh49j8cV!#mt4o0 zz0AwWkxB>m4roJ;Ybf@e+?MSddJb}sE%A@r!Fa>E5qC58Y531Mi-_tq$#f*b3&GfK1I+zP;7Z)yOxVodH{CU;?DY$qGlHXJ=jQLrZQcmc*_ z61?#p8L z(Zr-Rx8W)L&1ybc>VBNuWG&(V#=>wMK41a4!`|@m_#mH3@Md7DgUt71V6Gjl;6JdD zpII;Nk#J)#z*%|ByL%?JV4gi?94D_e>u=(cZTL90@z71qaip?D>rVxezsPqTOvJk_ zSpdvs1LwG+MFGE6g+plH*QCmD5nqWL{#Q)ODrD02fpFuU$!|7;>tGEm#iy(T+{@dxb5-i54r;>ah*rGmtf1)hW5%x2a8 zK1#p-Y0{rTU_9o{zAMB!;M=!o9OB^*G?#k^51;!(dT`#L?;fJv!T!1B5-XAKYHt85 zPKDj}*D%vjQZ^DWwEsFRT2SuTaHEVuLG(3f*KGE1bo~vp#v}$do zul(*4@!g6*YG{c6c5O!!g8!Owot#OCnYxy`iaBc1)!KD+BZqg4Hp2W6d)*xE6>H%F zTB;GHh({LIRoeyFwm&#VuuiGny~uk0Yf@dk%)^H7rRL5PUxaoh?pTCMaGsI}B2(rz6G3Q)4@YWE z|7eYd-;6C5t$N`Gxwni~WKI4*lG=tD1|5i`Mz;uS1kLY;PWYtm)L`Z3z9&#KiQTJ@ z_OCy2)0(1a0w)+$&m%@PJ{jcuCWf(x=V%h6lkJU~_Yc~MYuI9HThnhD^*Ei{(0G#? zb3b#L^CziI3%hI7glp6ig2x{GPEFkb@)k4EjDTC)^{lJ*Gs!QbRigdADxxt=V*L$! zPVM4uZ1wll*uWdL8o_g8t1ePgbP67Ml$Dy?@z|N&)N+DLe5%B#$P4D-)EI^Geenot ziovmGZ$zs&JZH&oXtJ?u$7;r?J8OCx+Uh$Ov4?1t|H2;yOs589Gx_449Kn%Gv(Z*h z0OwF^bM6)X2~GW9c~bMvXszJ^YoSTL@)6rv#-axJfbC0SW#sssKiXs`v!c(&XwXLZ zhUYPIjb(n6ja9zCz?lKD?Ehnw=j9l!Zedhty;u!;3!lPy`;InfP?cB}7>h5Pk5+Re zJn`gM)p>2ugoo6+5KrzYVbKWU+D_E=wEWYkCcnih4t_j-BsDkqwlFlx8C<_|9NP72 zsIx*yy7vsKIeOsa>L_Remj(u&zM7vJ)m1)1Epe-N~}+7JuKkuU!jy9=8*AS;@<_er8u8-s2ssL-Q^eRjjQ;Tfw8p z{%~mjZS2oI2e}@TN}J-;`-xGPn#Rc=`*dtuoC#`sUK3u4dTz?KVEd_{&T&$Y- z6YnFRRnPGy85b-n1r~^%L5&aowkaC*p}xcgm91)Z&aBo6R(<0=c0|j(0c=wGnN^oA z!fWlb!plj8CR){L2AJa)u19>=^a#HLqrCpjrcNu!Kcmsc3hCAWn~DHACl|5l+cmRx zN7$&*!r!&DX>C8wcf+Rfe}hxkqXD-P7r(Ws=X$A#!LBUg%z+*3a>YMC@vv+55S}O7 zu4`lPYp3l0#e0wD+o{1N{=93~_3cvO^>$6(kA3!ZsBJ^?%8eY{yIIyB9r`#0+-P@* z?G?0jzeB57x0zEM+SCRgc-f%`r@*m`9O?((@0RM&9iGQN(5^=o^ltg%bmSJkEh0{? zjMt+hae7}`YSlJQQ}B}>ilgR)eCUoi&8{i*Bk_6!|9r&G@w12-;x&&v{fJ9(|LGgw z42_fJGUu-tuQ}a_yHet{s5Eib=y+moDR_UpDg}TU2gU2&LF`{xynec1ruRGZELsZq z9Ix7pORvBL>Ot$9-q9$Pv(-$PF9qZ-T@kA{ne(PE_Nki(HRL7R2%jZ~suM=fG47Tf;D1YpF zP$zW4_&c9zNxH#0O4y#H8W&9}RTKc*7M?ILS>x|w@9!mRc2|>vmnLf<>#26t6kRM} z($PPYbqAc@J~vru`1St7lGPSJIk7n3PXnKRN!DW4-FQceHo|WXrEfrTrGM9Nic;2s z1D>bgYl-J0>S^ju?AK59mk1#LyrG_IOyc_e>#5yvlP(siC+8U?5-qZYDZ~>xnuwKzi6ZQEBk)Nj{0{%{|Wriv+!RO5Pp)_nYs) zl^%&|KN0MADM73Ho3*5Vg07b}D|J|cnqcpzeofGR=D8d1_Z)U+em53VfLXsiN~HGI ztj~KB^}Yi6k>!d1t)orFlk{!6S?Qrk>{~z{sw?k*0eP4eyjR9&d+Q|hcjOz;hcBis ztJjVU8E;URvnNCAHq(!T{voFeTePxuh6-6MS~@pFB|B1A7?7d*P8OZ`GhKlbsl(f! z4tHzOn^x(XP5of&E$M24Psk3U@jfVB9W7Q_ z&Zeot?^acKo~GK=4^HcxrcCN9CU#BJ4(e7$Y)qwg-=bDk($w#nh29IPI?7P8S8qp`D=2eUK-%8Q%^bh&;TZ&fyMqO;L z6gBQf-4OHl&^wF%aZORJV-~gBnyl4zt@`tHvijEGKAR?M&Qgmy+LF}+Tf6;zlHOor z=N?E>=s0XE{V_TXx2p2MWCicCs^!^aJ;1isZ?iHuQhhpUQz@ZN9=!fx(L+d=K?_1)~%nkH6xnb8d>P77I zr`WWVJ^=+B8aSDr5MFkW`X9sd1?uF={? z&Cc92(VB+;uh=%4nhl$p9g0@zw^pS)$LPy;s}AjqRD}vu1y2R*7jaco; zr0)hbXG_6^a~Xqg2cvb^K<)7CXmxyo@kI}Oc3_Ok->j=?*Q0go6nz-tqxHT?G_}vv z@^z&DNh5IjW%{I)idKUK^uT{PS-UtFdYHp;;QMuVC&+PhvHh-x$GT6}rc0Mlot%2k>6{S(Q!w z-3jJWg@x1uGH&}jbrlc(+$Q&a7Wh89-c!3VA;69pgu3$mHdRixD&dYzZGEk3-OQ#}>ntjq zZIkODi|j9~^w8kCMw@ySvuMQ`tHQvXi>FcBR-3xDfmTJHp$^o;s_xXUPjs`Y+*<6% zaf?<(T6AlTMQw&!^j!?K=(l6BCl-Y>2b{p;=|56;2fqGsy+y-^QJcEaqS@f^;f<(s zV@_ZH)1pdSdC%>^M8q?-c@As07)5loP#YYhooA^xd`K^g-kdLy+F8ysYY?^k*sHyp z>#8Qt_pg?GM0@6_iFl@xRSTVn7qKTfv!nEdzq3&*RTzwI{);)}Z_#{e2O17%T$aGW za=+sbMyVI?C!UcUD~{e-V&r z)1NiMRIaj3;Xa`%)W)WV>q50|r%jVbglhL;n?`&N)$(07HSZLrhpd&Rv%<8BwK8FU zm@au)HRx5CBJdOM2a=~qvgq3KaM_q=Pi$!N&&8_ZPZ1i!=MMWKl!;&P>K&ni&Q{IY z8m=8rttz%HTtzs>Muuy9x=jJ)!WB!5vF%Qn)|3TP7Y$e1RvW!G!ZkjPI>_PS^5l0N zKky#;o%IOUtzuX3lyFVzW2d$%TyA^pDt04GzLV@KRVNHhsa+dl!ZZw9Fz+0BPB8xM zW}(_Vi&%~4%_`{7?JuE9USQVX zI}B~G1O0TE-b`|6J0You;(wrIhmNM*TF{|UDF8pU_a`=lvEBGU!^S zMG>ajE9X}^|cA$ zmL5hOp2K`F8+DgD-R^KjQN(mDKU1G}-ljotQS~a>b@N(;Hg~n_6&lK@p7;#%Iwk+& zJ%45X1UXce`4ce?pE4<2Pe(dbtw4kZ`#9)5!}>d8SH<=bns>~us+{LAG2zDVBek!! zT^(4z=bPBI;3b^-F1!BT8L6%Z?CO*dsiCzTYEU^+QEm>oju;uKK@}XTLarvYyF;b+ zN2<{ohw5XWyxKcdkGxMrDTmB04Z4p2?H+b=QLbI<&|D0ItJnf3@AjV9x2RD^@Qn=^ zx0k=zv;z((5?|-XxE>C+X*HbKEni|{#y@M6O(({}x!ktt6W`Z-U{fZ)i?zZ9pwSqc zW>*k)?fhE1?AYh@LOkzZT%UDvZ!TH`xQ^Ji^sid)(2z@TNm=;r(neMKVpkGciC#XAwf$gg(oyaNXtVOMoHm(#qzV7QHz19`91CEjv_YY2oxbFt~zUAX7E=tjqTwLNB|0>Qm~z@uuqw}cj2M1KNi@_Pd#p6*m}i_m+sW0w zbm-S^M$Mk#Q2GX=mc=_1_=R-=$8hzMN%O|r^-mO>$XC0X_@Y&7>d+^~rPEx8-g}tz z9rMSN_n7~0#+`h?uO;GCqY4^;y$%IELQBE*7dL=|sO!)uVzvF38Gks=+pL4eJI$(D z-LCP(^2>R@Q{WWqj<@OLOLBAA_mdCEZ4h5fCMRAhpAAhL{nCgVCQyr4{G(O>+@Y4R zzKz}m)X)XmG{LW~T;N*zO{=SI9N*Hj=uQKx9(qP=D!63MQ!wf!i-JO9)YP5+JwJmj z;c#-=#!&YKw{ty4F5bjlDfBiVe(824Rs+FFgFk|g!J3c3Tq(g;RY8>KLHy-a+^UEx zR_$*=oo<>{{eB>(7z-AKhn%;{ifyJh0!3NgD#1wsk>zdauMdL^~U09VY<2{=^V&OF^!%<#HqR!8zm_bSU zwXR)Z4U;qy`;b&PNi*x)^~3E%mHTRw8~0bbn_X!?C2EeVU6J_{<;r@U^(jGv{;|s| zH&IQB(;M)4f?E8J-yNTz)?NGT+pdh-37VL|Jp3U+{YpCYc5}R{W533)ir0RV zLz@%gwFWypIz65mJ%_G6i_^C*aFX}qv{nuknh>XZ%N=0UIKATUTKdPy`=&!hUEsgC zZr8{-`EdRpFFG_}B^>K1hbm%MhquFK(vz?_Ys!w@e3_qf@%Lr$xm~OdO-Z!tBr)TR z=GgK-;Xb$8^)u^aGq!f}4%QJi^CH~nxQ+P68`$S5%b+iwoZA1vhS&~MF& z7jqnndSzA2PKWX{7c;Qi@9@=#chWiTClXA)KOgJ)b*xffgBzH)E8q-2cZgNB=irTMvD#sU z^KDD))-q0Q;OqaF$(S8y-3(+L^3hZDs6*XZ~$LP}_ z{9HKe@Qy=qrRnL#a|WLyX8a#^ys0MatBhMW=ky@cLaS9j)oyR*J;Dk2XJB~f3$tN=YH^@Qe430xvNA4^cj$nXU z!DAgdbJVP2h2vz3Bp>M1bOX8-ZP=rsoIL$UCmfy(~}G2 znZU1q9j>c`!hcX3{B)IF=49gZ)7a_T^iVZ3w=YF0Kkwu3Kx&<;JCtmt=J=gmXV%pP ztK0wU!Pu`SHpxiO&S!8Kfzf(3%!V(FR(E)&{weg(*-VU1-f9^AO*-w1R?7o6m7PHk zIDfka&=d6U_I5?xkCyQ}yJBBPtMhc5Mv<>N0{+fq-gxD=DYZ+Crd|Z65o_(9$M?jo zX)Ww}%5e|Rb1jj+ogEp^sjL zg-b6`7tWy$>#qng9&5GQ&1j_+b!a-hi#+@ts!)MrZHKeUoMfChPXV}q z!L{(|_{oII79A|Xx*SK(oKA2&-z;j;5*!CME?mm4tqU!B?!tS*HZMC(pB2{S>UB0a z9c+D5{KQpy*L=VaL}3T|+ccx6P5*mA9~XSU#e#NqBX9Hs+fjTPd800N-KcI;E5`3- z9yS`TY10v#u41=8m%+9TCO5*feXU@VGuW)}M&dK({`w-|n5_;uI9D5Dgvcu7q*xp0 zqO9^?8Yjmrt4bY=Q!#LRCGtOUqv0j%CTP|=_{PGCTEI24lM;2u#5{VJpd;Yoq4Vg| z@x`iP7I?SI_=l_UGCs5FNV9l3s_?swW&QJ9{zH4{{U`5iSUUhU`DRc0@F5axkzy?Ao6Is)QfR#E)mh+cj!Zg6a&n>2h8o{lvfxzb9(f1e-p%Ch5Rx zn~v^D)JSrVqsC_F7&bn#K&Im1k@{WDguAuq*^n%Kw=Y)n_ho5PUu=75mU_g}FM4|x zIpi3fubQo_zVLK^WT|Z?{7F!@T*)Dq-I%Rf$631vvb8=ZT6^wfYh_5ZM)~B>^Adh= zbB>Ch#sKhFmvT>db>&2 zHfHH1`6a)EEP8-~eFtRzyQKxS{+ViB0GpGV@gHB`D}9jywD`-WQ(Tg9(lg+Yoy3X{^8cv6iv8| z28zBqZ`PW1l>E#y@)jFS_2ff7-AVOy293#K`gkAhiT-DLie{Z8UqXNC9P%THo$Bch z<5Q3R;xXINX3eXo*w*C59@dlJFtd{Cr~Wryvj(M-gGVP&CRN!%#2g-c?jw~rSx?>P zpdXD$6)lOVhe{P&nrPgMRGkW@PPR#!uJxDd6iHLqe(CA*RPFjoUNI?63zkaNx~FL! znEg0?!ncw?EPpdiW!~_-mUO*pM}I^5u@@>ye=hPQ6aKQIQ_j%((^lR8oBYQK;_-Ir z%I|K|eDWJFDuHk5U-aXTth<;rHDj%ge4DDt;L-lPpOe?HLqk&W-8OkOPL=m};L`G` z%v0?A%X+#BM%p*Lp4LXQUL))2{#*Kp-Ahqk7aM!7r0DW8o2GY3(Z}mxsA4JVgMA4n zFZU+au9S)?3N8Xi+dM_hu(KOZq$rc$`_-5YG2Ovi^Bt*M-y+wFciUa86M=$1fX`_3)ZqoqtN!65_GWG0AF;Ke=CuJRhIk zjwh)VIM#Djk^%!9N^Fv()0^z%%IWiMbg0dG@@NgfuZi?Q0@wBVJ3*a)bttJv!hbl< zsYHUBf_JtwP0&7YPRgfv{k57neodnG4{*>!AxX~19qMfc*AK@2kf(gp)UJ`{WF=x3 zw~T5Kxs{p1+pV)9H``18=OX*!2p ztiihbT*s!w)#=K?52V-5P_CVLe@cc%{cV-s@eFl=PuZ6*Qy$fcrwo~jLsL<4P^NmF z2WuA0((%dg&|R|B8yLE6QfOIvWYQbwB${; zveRP}9G{~yXm0v(wCq81b1DaY4}D4h%F$w1`qVYf(fRxI_j;7A1M&2SyqT>+Yw6c` zJX?Qc(-$B6wWuIGrBjXy&5Kowx;a`sIaYzYbF}O`i`M>lMz`^^@?)zvXHo zG2GSETpfXwzOyh_t%Kl)$K>jt&*VNla+N~9r$%V5I=-%}9?f#)x2t;kXPD6s0D z9Ci5+rI+Qfm-Krn{3Kg-o(O$(j5vm50ovl|-4^VzzPLY;QkY#l~-6?`aL$BIBf zb;(iMVYux&Ir=<`I=0){`h@PJf17O4YFnQwW@|9(F%vspAA9IKCQGxcQ%CVV*Px?ZPPgS|*e9wBEH4?pUS?mD$>zmlw==tbN#-zy` zu3+w|G+o{S_fsHU`_TdIh)LJU^F}r3ldjx6?CR!pU3zTP!n^4z*#Z4g4dzoJbUb+( zXf%u}Q5}EQj2`A|)8+Zfpc5C;Rq!(04}Jd2d~Z}C{6qKIMxCCTp(WK#n)WCAK@2o0 zX;Ov^*Wr}dx8NbVw}u1gqqd&>dC7FWH=*xf-adU!ozK1uIZeji7o;CtxJircj2HKt zR3=k?LG*7pnW1J^;EG0NYEPC)mv&|9#Y&T$dS&VwdX&6C`p(6nlY5aN6S{=?iJ7`x z(=7We`qQ08GkPymoYS*abNxhFRpW*1-)_@n*!0A5D zRulBaLs$nR!_X1`o~;!>81&GVtyih&$h~uP5`Fov&2w}Gjjh+#92Hmw*LNvLWv9{S z1g@|)W}uoeCWbH=O`FIeoZ-Y97AvPEl1ysX5MYCCY>gS%vMDQBQ%lxcpV@hG6i0V{CQmnJq39u_7l|RYRmV&vWz`eb0eHx%9t|(i%&yUZVdPbDsN0 zA658hF8+>wUp)68v!c{Jh3AI5d$Kb}qtVlExxzg7HzsYDqa0%K#iMgnya@gAu$Mg! zpp`wFt33KzU1gk$fG7K5cVk*alY`FH7-G}HMe`Ig-=_Wd(v_DF{&q#W++Nx=&H%1} zXZq)OnoRidAr08Cr6~OPt5o)qz|W6H|6oT$<&>(s?d&SQsh(2LlDl10Pf>*(dK`-1 zTVz+WqTr$J;P4Tt^6HF#zmTdj;P1+@Y4jknYt7s=`X8aq`j)2CEA8sOIgLC%d6ZUZ zDtZh~Cx4m-?zL-$bGpjI&(HoTT`pX2EX6{xM~MHYq-zz|bt{^o@g?ngQzb*!;K?EZ zb-jplJ@K0dh(j(H$&@SHPGH?k<(p*Hy55;OU5EH;Yo^A=<4*&#G@j6(u@mvn=L}7%Z0B8OXiE?H1V@IV2HG`YJNAE!T?2hHRRbRR zF~wsg&ZA9Rm#N}C(5^kp)R@X>4kNN;-T|I#ou#VHtV*Pqrr{U*wGPNqE_s=vC$ltW z1-cVMwmd@U9~_&lQr#^~m~8!sZe#aP+3HdTzVU6A=68libb+jM%KinOcPs15nS6TxTzQet&wib&v46o;1?1`YeBvR$Jo-_SuV0#{ zEv;kKXk?yh!DSWXcOA)%hw{5syV#%SO|DKiqn|m)nP1qyO%C3f0WCfCg9xadAi@6n0{rho`7FV+{%?@9K7?`Je7P;J~Smy_rS5u zcjc)9eDc@N*bj31mrmyC9QvB_4eBc=%&Lv%`dYdazPWvU{ahS;@%hL~bR(%D*zn;2YUnSwaJN&P{cE2Dm>(@Z-M%vV_aeXcEvFZl)dd3Q?#(%}m zf|pY!W~;&sGzj)=S&75P7S2}331|y`%~47bn~cPD>l)issB4Z+b6<%H%Y4A@92LJvt=xHm}(?sCA!M)mWS^_Yd$p6;n0Hi~jG1 zdb%=@JoU>Ib#D->g+svSyU1tPOp!PF+TTVcE8^!^`R-2!L8Ws;tm(M7yWG_f=H^?|=IuGBrl% z8op1_^AhY+aGH(VTd|+g=M>#SyAwzp=RP`C_u=%%O^nrX=GtO(4b{mPtYCcl&WY8j zCTOUO#^U4Y_wOC6%5YM}PQ@sOVwas~V>EOK+^reROkV#n+Jh~7!N2Iwzw#XQcC+UT zy0zfm>}BD>cn8;2G4wJUzC_Wtjq84qEGG61pvJqxSG4bM&2Z=3pC7#$F2LoH->TJ! zeTaTEYaRWwZ%sjS_=FmOee~2g!u~yIor}`$-01<|^PkE|ELekfCnTBB%P|DITVW3)EEK|76RJvA3i zCb}noeCNgC^z$UFAZ7GAU}{n7*BEN|6Sxjr_fRbjuf zCghsYRt@^grUJFOFMLsaD77L3qP6`ndk3N6n#$+eX}?6%uOnECKSeA2Id#Yduy;L!6^K4;l}Ctv_&!D%{X?~a z@foxzRFf{FCwmd9?%C8hYz(8{GW(g_4`Uw}Y6aNWXP0k`S{cLi9Q{cB24QNvhW#Zz zhROp?k)u+mN+iX|);mNs>BszPO|ZVuciE46;NOPCDC|-lc`@&*6|SQ&c&LBtwZqUL z<&6tcct7-B-GVftKYE+@f!bM;T%IEkPAf*YQv+3%8iT?&0(ItfjM^Ot(w9cDniWCa zHSycK!9nVPo~vW!AWdTZSpEpqE$q|a1%XO4S!AUC{#q2essVx2L1JIL0#y_(RZ`(V z_Ju(wvpzsW9ccT<251NR%&jp2>Yj$KX^}rQjTY6T55mu^)%8C9x`v%BSjJyRI>H5S z^;54KjPM2nX0lTk)h(}xb`ifmMRpl^!*wK%jTI0i>WcWe($of5;aC`R4G+FiTJ^gy7 zqGOolrODujFQw>zV@4P8(o=12k}DeSsm2xIL)<;-j|Q*O+(Xl9+EjE2eQG@Db6(h8 z2RehJesb5)Irts=rdR7?Q`ePlYJVU8Wuu$w%*GEn*cZp!CZ{+zb)YY~+e25a|H(!T zx2sC`>?;B8 z>lWdnN8r8&OI)-Czm{FZRUYSfjt=Yxw8N%Gw_H`d7(7TceVLrmXkKtddBgSExvD2T z$<1P}Dhlq~8RW)(W$^Y#TveXDP4F!C1G2ya6=eSfaOU&c?&^HdroZ~p_i61X1+_LoH? zJNoK+EP3rzUp)cu<^QswYEKZlY1WWn`+m=!R%A9 z2AxYa4{ZP^UtQy_JEN%q$zfmBr*`eJ(l>3nU0a?p-wwk2k8;x_aC`VScP*&sQ0ulH z%DeNg*3v^0w%Rq*=&4TN+rYV=`og#-tY<#~#(#HJFLYrxRT}N3+I!*Wzj*m%+noI())peqbeBFs5Vo(e(jt zNn!miox}08pN@o(Cwbf^0CunBv?x?ED%U-e(I zUdQ`u%WJEWYx*nuEBTYPe#&3XrYbRhs(%5!=nMKl8`uxvs;}DAv*}7(_Wvqv)540r z8peGmfArB}FPk2)&)2=tHog1V2R_241o|1>WggCP^`Qp{anm2(>h~RdUkh(lMT6Y8 zJpGg^k_X$zz8cK;a@)N0X@yywrQPUF%c5l=soDmH}RR5oRan>!o}R zs6on4A8E$B{A*8T^8dwGd1}22dZSQJ_Up3iSX*zch_-9-esB8XlmD;fqr3;`SqA&4 zMJ;qu^iL`tZ{kZ(~8dI<=Fo>+vZRX`+A=dcGieaLf=2VCc?wx7_@#$qp*q9KZJcdTZ+C#SILjg_oWX6=Uq*|BCB0ZtNQ6sRqnU5 zpH7s3SN+>hhE3$+vHMjsSogf|!I|W-&iZQt?{j-T`qVUl$F>FN^j2_m=>Uas44C1s zGL_Lw)%VxJ4(M!n?*rP{v8jG4$a?5s-A}o!gQ^>RbvBJ-bzLs3+_A zZ*pfX>iTHm2(;$(QS&)S-aMDS;N;eV&im;6Vu$io_EkV5^balQPvwqo=bWvUUi4`?LcF?_zD64c5HHX5*AnJKqf^X7?C;=k`UagOw>U9Ctr}9Jv?G8zJb2yP z0qQpv`$FF$%V=_v#R65U7W+Hw3D61jf!hM{&%|w|@vle7N7XtWs7H$|Dr3MO_XQIz z4bqeSvDC{4v7aHD0Y@Eeyn_aZ{_6wL;9Q+nN58_)_Drs$+2m5o(!ZtX_vlU6)zJfR zZs4^#$~Cf2PS;?qzs7zr{=vFP?Vn4@5cPWp4#*B+KZ;o00cTvSj$I26(SXNjq3IiQ zZA`2@w*;#oSh}4fSf2T~zv}cIX+|9Jf<7w5w~J=f(ay^jz0Ikk2~W`(J`U1!a<*Lu z2GNh6__W;radg#jQGQR?zy=#oQ4pm>It=!i85O}`yTLBRj<4O_9jMrV-Q6vUq5^h{ z*o7UK@A3Dx0 zzUOQx;y}!kY7i#Jd&Ek+_%JC8yS^tQOhzi;8-<0-9dJI{j>Tg-<^WX=muIlgu^Yog z=h;Hu&kU2!RpG}g;=YEVryvD7K-Xd=G8_6aK`rEK)d<<_-9p;jg+9wh^cLX$1ZcrQ zLNTX5V%B#JBP2}|BiB1X2MD~$d4&-YRwh5m@Dnb0*seABO51H`uI2`$n9bCxh)CLVm=0K{F;HQ6^G9Q0!iWaeb>lrjIY{T6V~ z-!~N9AaGL54Wting1--;&yRTK@6kx)=~%aC1L@A-1*9RK#rYfxo@^kL zgT6{j_@6Gjp+7SZe*RUsM9pa-PMyQ$=6BRp&WA(C3OpkNp6><^p)gFg!XA2F50fhk z5nqfBlMesz`z3_QhHk)Rq5JcwJNOqICY?&bFFgsBmcaF`7eeJacmn;lg~|>1oz1FH z`Bbcxq+JPtUM}iN!$YJd_yTJZL*&m`aDt!<)o3Oj)giJ8JOkCYU}?0tm1O1wi#4j1 zlpPl=i&ny)X@jM6Ab3I!!EyoTdUs|JwC%wofxRj_8GOB;fimk@D{-71DC%7BPKpG{ zkE`JK!ft)ZZYAg521zB@i-B{4q&Dnh)9u01_)<$*;}{~DxQ+!iL*P@uH>!>65ZH|w zp>h^Hp>gI=c?<0QS=BJPf%S~|6Dq-|Q*EdnCdIO0kCSn3@fcq|T&4lXE(i{n4P9Hx z@lE0A18pg}FQF@?M_mlMHq*8OXNNw|vNN!2VUh9(_PK#?gbdEXdZva$GZWl{@!>KM zIKBQg?t3F#=RoKir2_Xl6D9}Ow~}TQE^)iTRlvD!g!PU$M#v8EP_~?jkXrj%$@L8p zqD^Zh-K$2*#{lp&u>UfvfbW!0bFW%S$3BtrrZzDA5-48&@AIxjO3I;D zvUpMh8F93gY|d*SU6KD(Ob?UEX6#EdbkW)&Z@(KNSLQ~`lcLaN0}eIjL$I7ePVJZ+ zEESQD-y4fKe{Zx*a|xDx$eRY%36^agqUAaKwo6X5bXpfA$#~tc;+X3RTxsQ-AW11e zpHa(TdGr_j{i{LZyb*Jo2Em_LkzcrC&Qyu!a^OTDI2+M2W^$lBi9%d5`KWj^%Gl0QaE zlg^>C=^A?Naa}%bFt-HzwFNjn)nLDRf&0@LzyE^0=q`d&|!Mac-QwWyW62D9QJd$*|8ahkMD+7tNum z=p~)7jvEJ{TYVMW$JuoyuT6~9`%zbxjDVdT{*Wa zd{I8~5&72f3*NE_aoEvFZ}eZs$mm2bamj@4=Z`wl51iBndpyClY9@O%Uh)z7bg5Qe zvT`+e3$4AxYXauWY^y6Z3oy@gZe2+Nr}W2`I^wyisW_f2kc!N%z*&6^ZG@1Suh#BlVkwdB;$czJ)WsA|ZV zc-g+Bo65UJyu>zZsImZ)c$2bN<+?pya{H&Mp7n{B{4v=o@6z!y+k9MAIXGUfbu3hQ zE;n)p!|0?K?YP`sJvd5AjN;KRQ`vVJUz5j zDZVyd`p=%NG(=6XeTfxH!_V=UbDXX$nG!GVx(&+MBEVE$uT}#6N~(z`{gKqdc=$K#Y@VF@$uL*_mtT8@!}csOewoCUV3M|Rwfk2ORYIy zl)*ykLkZWXu!C5Nhw>GmU;lY@T*O0Lx4qu`%>;{yWAV)MHipjrAP1jG;Sy` zFzcZ$s~Lf8s<%owu$mPm?Y1*kvb=WYx5(W{QH>X<pr;@lYP2#uF=9S>E$ZiS^HOZ*~yJ*pQqlDOY((kQC%x>CB4>}m- zL4zF>7-JN_q%9PNp4wsmt*3wKc-`!^)MYz3GoM$|9Q5A0tV*FNYNPy4T0w(Mz?zCI zqip;=_DeD?-(r;NK?^C}3=WNEF}3<`ko2}o=t==N7lkRLdt{J?V^)!^nNb`otRd?S zgY;LWQpE;FS^qGN#zq>YM*0SF1vlgCT-<+fUAp{Aqmus_#Fn&%u1+yX!Ne8xW065Z ziY=oHE704Ux|sU^Fvy*(g>*C8DB3aesq%cIY;l}R-TxS+#HiWiQpO}tJf_k~+~)&( zr_q1l@;t9TmHx-cslISBnOB)*!nvvRbFo>{%1xpPjQzK467|zqvdQ_WHrlP=+>B^TP2XC7UJpIhF@cDSUebyx7$4sPBhk#*R8cP;8v-BP^iXxoM;_N+`+VwHRe+{7F z;FdX$=}jvRfg{m5k&c2>P@`IBDnHU94t2Uw_e6_)8s3gF=YykgBc8?`v`B-!cB)s# zDxt4Tln0FM%Qh?ZxM`KaQ{ySZ%OwffB z)7RrhX_BO;qIj%U+eXJu7-im_c69HoQJT)}N~e8IQqZb9C0{nmEqyO4A7PSrfqm)s zZKE{y8Ax-zP3Zd_Ogz>oUqgma$Sk9z^&CxkHrSO-9oyYgcin3 zx?UU{x0$nvUK(WHsCo2!70y?c1+<`pLAw1~NPU3uzK>c$%Uc-G$CpBT>*CyWT}j(M z>*aIm8hVQ7{R60xthoK(^9 z^A_op--PD(0JmjMEWHMHJU*uh-6;oucyENq1@|cdDSI=LhqWzJkyKn1>*CX z)u!)bE%NrJ8%@l&NKqemsvcvNk}GS|hz;Pke3(cU;L6>uMW4Y@?RnCJmPMLnXfa=E15JkxbL&zaa0tRq)g(PQ zNxS-2qyFFw%xzbVs;x7Nc11<%2Rq~OyfUrnVv!D=%G1#^7D=04ksA6~^&6u}R7CHE2h9V7q%g=mWUC7dHCP8*s#?gx8_K19r(7Q;YVy#!FnK>a@WnURvy~ zOgD}3xW4jqY@1yUKP*pm@Hlk33-vVGWrAN-deP1ITNNEcFXO`h^C8!U6pB-g> zD|hEvq{pW3ig$rUd~5tv9>We^y;YKu!JQgC%(ml z$3-a~ahtZw4`rx7IMGjkD{Y2@TlnsivKMh+`>wB)UaELW^7^Q_`oznQ-;b3$;7n&+ zzNyilCsCzqx?R~mr3QM&njg**}-eurHr~`7vJamlp}}1)ehXKXq(xkLT;M!CrQEXPTtD2XJjeN;p<1I<2508>qjV*IBkWI?g^I1DO~!dHRg%p%xx9all8t?P z$YZi{9qVrVdYV!O@&1l0vy@xdC$>o`${$>>#c94W4xG?Op3@X}1PXfy6P&-4Ecd-x;Fhjm32@>aRTgW|ijAGnCw!R@tVV zq=aEV*BUrSvHZbI*G@|m$29DF?E`*5C6=i*sh+dU;Ac*yE~x@09c@W+{LEjj~`Vv}OLce-X#`ZTeLi-Wr^vr$y+& zE%^06r6>!3FY=`{WqdSAouEooCk^rRWfxl6!X(S*xYIAhz4cel9z+h@R-Y9jw!)Pct=9fM- zqQ!ZLd*>_k2b}F`_nJ{F#Uz@sjY-qY3=BJ*PQ&hPt`tbSU5rv>Yb){q7i7v3J6eO;3JGC$J+)OFmwV{8*h-K zN5;{(kp_7_Zv<5vWDpfZmv;3qAg)iO`0WOH?B0#qf+PR6TpQYR1X?%GO~gkH5_(Wg zMe+Q@^cWi0-XN1+wM6^_4W(*&I^NA7e$h7S(A^+C6Wh})Cxg8H)QQ$rMqKUOgFaO= zh$r`_o*o7nWgklW>lj3xIEJiV26?t=!vDwT!NHTrTF)Tk+^78i^Wz7m(#%kUoLM`a ze8UaWuIp@SSkxd-GUw5^J$k88dLdQg zRM$)SM{DR|OTC==kVb9()5}M{4Rk3*4<7AiYI9mI=d-ub@Hcu{Q)d^=wHc(7Y8Peg zG+?IPF4|q)C{^8ellGQDOm+9s@Notyv1u=>XwR`>&#MzjQM6W(v7n)QL7{ z33d9XlagH*QQdZWF*Kb|BQo@&X)>4A-q6dj)R|WN+p?~$EpZ3l4tZ9V91 zcfHK$)t_AY=w;y0p>$<{UV1$lLtESEC2Y_{I+>)$xt>bSxUan?%%CAt(W|;?HqD9D z%en`1=pDE@J5&p(Bebx-Y?(t%E9hlIsTp*(m|i+}otus^A{7V6fAZ6D)TyRk z7WoqQOfC&L4LPxXbsABMm})03N;vPlCI4wl54aH zdaI?#WvvOd@M5$n$0YOqzE?7W%rZ}TsicCdHR0%8WoHMo%-ol)lqq3GZT*JQ@U2N2 ztiPbBEXezFPAOIY_jrG=ay{NG?~*qvD-bvS^;iS>c(bTVFHp{!|pahus|9TJatNf7r^XM4z+B^{P#ji@sJlSfaHu2XR=xyWNyq zbFGs5y02n=h2E!Q!<6($8~Bvnl~&_z((buMnFBvRvu1mxJlm!6yl#qly=(x5K2t!|F$@Kn2e{IOc~KmTW)y#N0n??;VSsdDU?@B1z)u{`Q$r&dQL zEw@V*Y%>tL{9tpg-xE>fJz#d<}o7+8kt&JNq4!C7Iag_X|}IhM2*}c2wS> zj_~MRO(ixD+HA>z%JWkuNph{IbVnVbThAiO&VFV&S3h5M7wgzv?gn!+l>W1r?k-1!zx5Ns);I^u|=;639GFY`L0JG!YC8=)T zu*h2DIMsnU(4g~-Q(b9@bFq1tD*6`gW0QHRVOUqcH=9-Jnr6vgm8tso#v-OwHB_Mn zD|-A3qq0y3tk}MlVskcQ9+5@a?15SGz4|DZE}P^{I8g{VOdVp9GlwoK!NpDT>qoZo67ffuzju{k=)oJY@u8CEZj#i2FO|8wjN&%xjZy{n zYxjY#%J;=aDPH%7LT~W=WKrtV61`}3i_q^2uyglIQ=Mw4SM+hBbJ<34Co7O2>H(j( zI#bS4qs$yxlUy4b<({KEMIvub&Ge=L`37-wu1Bvf8sz@I5V`>Sda_qT8m2SIvIS98 z|Gi#z4PrV24TG@R&8RQ@>aaQ#< zugqAoO+oM1Ar+NIo?qJ5kPl#2i(+yHM%9|P^ei`CZo1CAZmvF2r zb=Dh&OSw|X!A6kuDpe(pf`;KxsnEJw#{ z;Qv1=QQ0hm)NWUSCP#r=JLR2XACBv;@>nUg)hPXc-%xyqqE1+~2CYIoGx~6CnqUF< z-N~1FA%2lE0dxutM-P^TP<#@4E&R)=T8}eH_s&C(&lV&!&#N%GIF zQnHGfrQrHDrR-Oem>L{W0=J>AG~t%gYO+aIw|=Jl*V!bkjh~dDCnlM&>9Mllg;6XS zr<6o+h)q!)DRUBfp?rE!I_mC2qmt;x&3Fk&>PqAC&>MBEFWG@>XJfX{cLh$$8!2~7WR3-N^%9>(0K4F`hk4w_VYF5TOJ(zx~cT9 zj17FQRaASMRciK0qw@(?X=GnR$6yC{c(0>+d8nrzPo;d+OUBnqCsl++{tjA0rLUO9 zdvPkghJC&|dmVKiXO_yNHc$fmcgYW%spEdLj2gU)8udngQ*keiL44rb?GR18Z<3ss z2k4^)b-fRJX~=7%c)#95iO45*|J+S+Y?Sm%`zY-<_UpleG&I>D!9fQ}hhD|1R}Ro_ z?AP!G2k1dBy%^00XaUaQx{`Y-3Y_ZL%{%El;;vS$wo%G)oy_{ai8?OUNtb==sc0{q z1dmChKF}fw2wy{!79!5;y^>~+(MkTY6zbnWCqLdTq3IKKGCX=Q{ca4+(@zV?589M{ zIweyHN1ZJCy^Pj?OWyX|3ZgsEfW5Vvp8nCw2cI;${y&a6@PV2JofID1M5>X{$Sk*w z)~wgb)pk26;hIjo5AC6XBG6)W#PtUvE;JmbOH1_feZ^rS#DT@09;R0~r>BFC&^=#V zcg%5Wg1FxO`!QM+ua}X@$7suYomiS4qtr9#VJ&r-dL-+_@9cisnxvD?L-&xcN+*B( zcT&X)xUL6Vsl!vP{GPpumY@f8g{-H%d0MPLmD=>t%J6Ng>E}VMB+OYsVQaK9z56n1 zGg*sS^T{;yvR3>WEu?19wtZK99<}PGlgQO`sl{r<^93>g!>wOU?Q0&=p?ZE1WL%($>|4U zDe;s}n!XxF^AU$%x;T&mp&e5^p*Ph{)X9zGLnwE!PJT}xO;Oc!Qe){jT8$pskE^HC zKJ)+_*guP|ZA9;E#d-9li&l2LSU{f8^6htyMEksn%6=v z=^M^aIP$1Znsd}1c}n-I=ctz#^1f~ts0#LL$b(E8u}mk%7a0_e-tj4~PE%~G4n1Zk zXxV+O3|V)APNUc1`K+U~>jQd*7apP;XS6c1(|+=T4>LlprXsQa&r1<8dL)3 zX6I?D9*Fz1A%lXT9W-}zCcS(Ctshe+<($&WxQQ9$Zr4hsZW)vss>Lkp(=_D*dNMG) zd%$~*T&kZz3C>zM5uHf^qqQ- z(>0hyeU`p<)kw{)rzj&;BQKsGr$eKl`J8ctc0fz0Rn|p%f*y{ir!SMkPmTCgx3?skoy;kvWVT%)W>&>%A3q^0Qj@Cdv`W1x|gUi>=s#lGp< z=O(RNfOYk~PWN54^1Vtfx#VkQ;=rr)G+T>avTX8)#&g5&S7?{74t(v)v~rM6PMET& zlao%;zF(w>+t7l3m_@k;y=660sr{#B3Xf3FEdbgqJ@`JQwlG-lNnM@mQ6$hiKYrqm=r(pVk70tx)d(-4Wo;lMYiIgGqi) zJ4SsFCp7aqNwq$pH>k!@a&2Rl(zTD#*KZ~%ZaGC8+5%55d5-2)25$W{gXY#VWAIlN zwcCO?qTdxt2X6G}$R+BC9=kVjS@dR`QT9b&rauWr=n`a8h$C>)p1Gvkg!;~~9CAgT z-EwO-)rmtd|I94vxJ@rNr{_@fqk7r8`xw$y#@(PT=k?O++D*DO5Os*nx2YTa&cM63hSEKa0f1O@+F`{4gDtQBEPMMWM zaSkTwJM#)X$9hpBXPi{xB9K>@GLQo?YCULk+G zvGW4;as)qN-(@PA0$hFkRhsx0cxv7)nm@)QZ3}LaFV=Io$u)XZ0`-SmxwPs4;?lR* z=mBu4)gCvg&I1E9Ms87A)T4U;xlK)jaJ|Luk?yWu*5}`+fs>(;vFahs_QQSd{D6LC z=w$2I`*a?D;nLxIWG|(YgcEmZ?>gM)%XcWhxmKKZ-KHJ|8o4;(E`468k>ZheXrw?h zrRi<*R&cHp?orlqXp9}aPv?H4x9iUX-~w8ylYNg8cWGr^=6%{;RR_(;2Q*_i{F>_{ zT6Rwd9p#5K6MlO@!#oO_j(XJ8$CLxj?AmW1(XB}M?SO~>e?IeL?-Sv=-j2LW`Lm6Z z_4PJ&nTq`6@qKE7yyX1*hvf9sAeT$#QT{Z8?0Wc!P7!i-_JaU0O?Sc3EbGtO>6|bd{i5c&y^V@K=cc=1=X1%A@w z>@#YFxZqBwr{r=~D|tEjv}J@=I*!h#;)+%#`#z)W&l(BX@`AoW`@L!GYkC9wE)@&t zKKx9A{S7VZsFf=RUebu2@cX5o(>mOrG1os(OqLG(ji+=Hzr)7O&&UPm)n&vBDuX)U z^h&SD^$OyyQZJ|(>_qPLx3p5NlO9_Ns0ZSP?x`P0f!{V({X)BEXr;*OZ#1N-Ryu7i zB*z~b(GUDh^JZxzsm(81lEQw+`o^@|Iq2JT2UVSq`lv@QoqR$^27I^DDsV#YOqhdKGFJ3h(ilM)3f53 zLGbS*Wh4HWv#x+jTlF%o`3DN=iyq9W??{b0Yn>J!s4yRR_~1A6&l~x2bO8-&iTd!` z7t~|2L0k{LrRnfDp{3qX|5pZ?vHS(;;UBguuV^D4_n&x16V`zzV17Z1kiXx*@q|1P z&;QoslMm|9jix-K6Pw|8*5pxXSJWTVpHfc?^3A;0CpAMhsPIL5ttE;q_(>0&exMqi z;KvdR$RPxIvTp&s|A%_3+Y5TK5P8wVx8xrHoZ0@7##RRos{TSQ;NNt3{*hjyew3Q~ zjSRqX{0j?d)EnURjek=5G-wvx_(A(TO|oD2okBxQvOfDK-Oey#9zr2a=xLN~e|}Ow zZ}1>W{GlJfJMI_#M+;DYFwgiydiBI3*!e`(_w?9cIPK zi08JKV4trVvALGud-E|vVw?kyMV$FgN^(8ezcBp&XOKoh-xlY>hib{LRf4aMfkxVV z2abeB*n-w2xqBGy+p!Y7vxyq|tEJd!m0Bh^lxBT_S}NTs$*&QI+7nB$d8bCw-j(9( z4$$PhQj%*Tt{-VH#qV(bd0H7RejKw8=9J-P?O?B6@c2h9@8_3hw;gJka;6No#r@wN zR)$@>sbzj%S#F9M2x2PB4mH(s+r^PXv92fU9XaB>TDtTs#|tWGB-6JnXZJ_^yt*vA zUe(C?;^lbQ9QX;FBaiggh|}wGeCVlKenmL(@#W}|?pvOpgsbJqJtr=sQ%lP73cUJ= zT87rI$ahNNI*L``EAT%DcRKOz{n$69%X18RvbSz>V`(*?pNidUGTWPDl6ZiX*Z=RKb)nO z(44B=vYuK7x;b;m>o{4JR)u#DRLjJpE}W0=t-s!dwT;yBt#ma$^)OC?T2$k}NX(eo zSe?6HjFSgns&nt!YPoN6<13g|^KGXaPr8yrt7-odffkToHQ#{k8fU%lV#WZxkd=?f2;a@bTMYd z?5fWzeyOF1a{w>ei3u(<0{KxZXcGnp^023IGVo*oZ!V>lkyV3uO|V*Wx&-s<%s6rU z62uo@#ffiL2=|*7Cz}U_@aqk6(!N$0hql5@qKBbu?hz-tCE;A7v|26?3F83FEE<;; z&S^MT+K34D#7v_8_DFX0#qVFf0iXX*EeQ`Icqz`|Wyf%ChJE`nHk6GxKNp?_bFaQ? zIWQ)O+g*pf*bu~jzrj9C4CX6{tBlT}Ts&4I_l^W}b?k$PMWOs>4f0;+5Kf<35W?V;7#IaMzuZr0$| z$OBGpsK&miudlk|!c7~2H|tf6(-A-S$3Vy#TMd#{&zaA_kGD>D0=!qwH8zg|ogHC9!8!_C(&g->owLHG;1=qzd0|YLdp=DskIOM!B=E zB2TFV-tou^+{+I0+=au5t$B?IOD9vw9m?W}NN#51~e9S5(IBGNE1cLtqZ}U)Y zG5$3Nd2{!oobuEtxwVS$Bj71+aeryz4I}i!f76UbCTR+PefqNrb+|v&F3v2$xBk)! zUOfAZWr)CLT zScLz+2mf#CFIobKEV(U^s z;r`$UX1u1LQWlvx>nW9NXOYC0k7+yJ=W`;TMxt)KpygdkPk?6Eh{v>Lr&$`ky+yaf zEwah$2KgfoRiC{^UNPYJ?7Kounpx!O--~n{dFSA@=gF|dB2`vpP$BqyRd1Z2wy&V| zb>S#A1|FvBevr=K^E;2&PXoc5S~qGpEyj9EoZU?;p*>iz7Cg;I$Y+~uqMcC|=@+?y z@=jQ!Ptna3g7^O(u$`t<0}uE1E^=#Nm1Vc~Q?V6RiAvs0y#t_8H+vuLL|wd7)L{yN zmY4I6!xRYZ%zxhw5`({WC-EqKd=31t`f)1J-zvLNuRZ-1e5J6HRQ3hGb>MZU z#-a{0!y>aXvZ?G%Txa1W+BC$9{-5*Y4Bl5AzYID#+bYf0pP*Oxyp0o1(T^rJ8FB3d z9a;=+yrAQx%Cf;O9ikZ#=vP>9ggS#?b{KWDU1_M}?>a^E@%pL5&rl-p;$E}Q(Sty% zWF=+O>01_AACpTJCR?O`z%{Bo$s!f!+@vB{Ps6Eq!1uPu(TWf0KJLdPodoQSmcP2cBQU?JM=c^YKZA^vHtyH|HO%z`psDQjERvySCp`oO8kJ zuc0__Qj}S!R7viNeNg{=34Rc1meXBJu^POAJZ%{c1JChEh0+|f68xvUGOW0RC)BkZ zhXHSFIj}5y0Y}?3Z@zs;y*FLGiW06-l-m1yZmm4G{$eo*l_giV2 z2kVe$6o2Z;JMcRH%C$MWlu<&Dx${`m%LetV#VwKFydPha%Xcx!)J<;ea1`foRSk}H zLH%T5buJ0KV{or(oCG`ITGo}jzeRt+b!T1zeB}ACDjZYVj5!FEIOq#_&U-4bKh9~9 z9p$;w8))MVaYTG=ksG=)Tta8T4BS#&2K)cUV+Z~V-YN$aj3-qD62t7z`Mq557{nLqX=HFAPxojjpcx51mZewzm3_tkE?PCdbw z7_sCkHS-7WvhhsC2?BK(ny-Ej0S;f^Qmv&vnJ~d^N*KMpnFN+M}(1i59NRD%Ck~bxj^b2jW zuSy1Wd<7op`*ZZ+o=tA;xJ>n?+2sEBESgy#xPR(ps_JKx1LbpR@I;&ZI)9b2!TVU$ zFPlm?hL)sL4qaEEtr&fYuE*HrQMdE--(tH=zmY+v`*vw}=M?Hr;Bx?Xv8(|9q2Cb- z2T!ExoqhD~A^6C-dnjqDO(w@2APx9_7jNyM;dQXSTD$2Kco$whchc%4Tt~)sYSP{+ zYyR6p8!gbljM_*G&=(Q8Wj&?u18?{8Cdxc&#T=$>WUdLG!rg6@3T?iz19sAxT<}5< zZl~V=+2nDRZPXt)-j~yxs10}(TN`hrKIOmz30Ox@JKMzdLK?Nqw8`7&8|XCnDB=1o z)CBz0Lm#(NF4~d+GCQyByIRq8Rj(jhcIe91?*yUN}JqpMck~?<`Gv z2<@)lnKUW|eBn(OsrO81WoBm6nQ3-8in?cZfL+$#zD25Au!m)Dkw+KUr6ITJGx*1` z33n)XgiUt#d`PATHgRcukGe(L#mDOb)qjD0r;d4)7G)FFg6C8S95P;0K=WW%=j42# zq648t9QTzRE?OnH+z+aM9Q&rIoINEcoutdspQ0;6Ih|tIQ7YZ}Ar@b9`-!=s#CrE%=&wFDmiU#;|`ID)G9` z;B7Xm%2mKaZ8@zfAKhY>XX(zYH=3pENf%yo$1F$YS3~{<{))A~YI85}_Gia>aM1vxTu-jeYf%pz^4ybOmo!R?ZFM=^9?~SuH2d$8km!G>yG9Jfl5k zur`n5zw0!ZIjiP-7c{c*ZfibV3Hz(7ntdZNvvo#m?f|^7VW67xfM-W1wC0Adwc_TX z=JCjLw&+`P=2^^?oQmrTgO=QsmVCA;W}2*u5E(P9^eaMxv{)>oK7lzY0g!v zfiF5HnjfN$IbNXy!?i-Fg$jLCwH+{K2aE-_`AFdE%lsGqEe!CTRWr;8EN8i|j z8h(7FlS%5n@!_8r5vPswWjFBP{M-8Q4GZGJpU9$L+d`QI_uJ{$SAoy*^{N~XsdI*9q}|i_ksu4!1}rs)aL19EaF+L4(~@FWUOOd&H+Er?Ti;^f@gUl z+J~DV{%-H(hx#h|WTWbF74W;7`S|nTNc8LesK-eU!NYf`&+U-U-aZq^qrgjRG&_{5 zgoDTRE{tct1uvz21TR?zURyWVX+3y41r7LB4TCtq9(%slOG%1iE%1bYB@|9ssFy*v ziOci=PPR_Cyy)dizos0A{Qlm?XfCr|552^uoP@f8=C$xZ)Nh0Rm}>_E|Lmb~9mMV4 z=?V`*ePG8B=Ekjno7Hc^F7Ch+@|*IpB?f6zycrKUV-RO^6aI_*f7wR7&I7!nzX~75 zKA-Fw#pgBXr`4#qn4?i@w{Of|ql|KNCd7^fb@M6>dCW_r{JhnWYxj2!S>2E4T{cT`$NKyadGPFw^?BEB1)8y4>hfpAPu=qBaEo~K z@vZRWF?+0XBe6CYMSp6CJa?{HV3jMHTHLI)O}1C4$&Xvuz;~*_6}Q`@*_~?q2l2Jz zcNb2uK`S=Fnd@A(N{dR)e6lg}(2iBu^CkMzf+}-Rh)wpttjMRqUoO+E0x!Vl*#9|k z<9aqZHqenL``Dyrc3EzWe7bl<8TLn9co9V;G16JwmgL>I8t2A5-`-nJo??8WU-W%&F@6Q#M+GLfdFE<9yFz~K7FYJSJ zy{`_}1Hb#R!IO31dt3i`uw#3>jC$fS*Z2AH@dBG%TjtLd=b^9iT7Axrv&q7+K=wf2RCaT?&G^*$(teCx!B)B;@f|!?-{4&bo8M_%rwcjxWPG&>y`0bK+=ZNc13F5`L&pTU(aMePqbl(-q2N2(%nik4qbXM73 zBAh#6z2T!G`Lhl6n+uWrs58a#$5Oc z=lOVJu5#Qc@xxX82t1WBUc~L;*8(z_XN7>j(zOY{MO{G3HRH1A?{zyE%@L?Op6V0B zB`?DNwus><@I(CkV|Xx=S=y&<0;c^oY4}8|J9d*(t_0^nm zRxg$NwdP8g`7yYLnk#|7;;>K0*v_kxI5`oi=ifu) zWZGf_|5qRQM3j-A&r?fYs)3*VK%Kp;;s5cHl2i5EHCrQYb@ki={HydwIv&1BD`{9q zfAAk0Y%%aMJYRU)z-!&L5^%=A<4|}0x7ftJOMoY~!^G8gYvg`;BbP%xyXhDsGw|&+ zCll8JZumIO#9J$>B_znqKB&V_&N6cUopI7=qnUGoH#k+YaywHGV-B-DV=#5*59OQ zSN3%VpXF&6eu3+r64;r~js{LLq6=5;4ji&VH!k%LGeO38V=eNaHqW}TE>OFZH z^1BijdvWA8JmJ2`ueElM}1P*KDn1VlxU4g)2nrS0zS?(XjH z?z_JG>wP$!cw@)RtQZ?F#F$%3*;8J)`o%&%hfhJ~5)1ZFpNzm%_AYrj1tXqVh?jVy zd|yjx80&+tne1&+&IhZAYuW^RqdjrE74N(dY(?BE-3Oa?|# z=s{CqcEv)b|MNizdsppU>y6gaEu>n2FFqc&5bd6+_(R;P$`3z$47QYYv;1)Kt|jBL zso2Ns|Lrst>$9w+Z;>xrBwI-koIDWeBZ!%^}$Dwm&zMZ7PU@&oa674xg* zfv|FAews6#d8LJ1els0)*_*!jVIchG5|2unff5|2mVIVoH1npr4l~h@`QF34AgoX1 zeHL9evkX$?Sp|C_RPv@6Vag^1jCw%*5N>#6Q0W!DF_ie6$ZnHRgpL zxgiL@#BuHzg8iSFpFW+9%}EwAJ7qS^^p@h%KNMYxET#Up5KL#jSbA+R>ejH5PX4n| z|Cpt0$P2~XAm-b*!|;T7?zn|vXt~is{4`~=Mfmt~5k9d5$V7$9wCG|am zP;IU?ZRvw?iR)9s_Yjj+Vi5xBv8J=QYtIp@PO;%mI_fA#PxFQvq&6f{bGH?Nc8?|CF?#!pbc?n z=PnTlByYG!r3ge2PaNGP9M@-(ANMC5cgfFiZx@cPw>(Pz>dI|90GL z+$I0Df_Vsv2G~d^-&qK$O%M0aGf|8A^3aVlaPTSbzwHcolxF_yKMfAo$*Yc^ra6{zuQPyjt@$6fBxIi8zH;7|6cP#NAk{B4)wvzovd4xn+n&? zw#&W zm~6wkK_gEL%(sy(11DnMLB8+M1pH=iDCZ6yI6|Jv%5@V^XwROgT&II;u-DZ5ad;eL zE9M^KaJ~n1sN4^RE~d_O?O61*v6ZT=#=vwpd8QvmW21+ybntLP5_J#e-QAGSIzh)` z19~xk`s!oAD&nH0Z|iXMr>*QEM${#LxSA8jk`H6+?tn{!?c~lV2h?G_F)`2%tJ)HGoMDIQ_sD}?X@?#@HnMz; z9WE0e?!bM01bOLKrn}(1m$iItDZ`*<~&wVs9H?fY#2E^64j%Ae@ z4aX){bc{1%g1eO*SmlOl8%kRX08j1OO3-p)-AWq9s`?c z*7EVI8>Wyab?x~WROk5)J~9SNZLGyS+8v!47p10-$9vZQd^HnL+=RXOHhaK{JVw9v z9_W#6Ee8_DVcBN#3h#}@*-hko_jiZuD~^+&ZjeOkP0EhO=os=@e;V+ijEziaU_`HM z>P*II5q^a8X@(1yH?oz!J+;`!`ceg37hKy#{&=txa>!4#PIQ1RbucdB4*1uVIJ>74 zac^7M>#oPm4w_~6=q>%by!tZi>C4u_|p;F^`BZJUf0)EVq=H5p}JTgkx6 zld#LyT0&<|gfn^Zb30E#vruc9mF5NODb|v2=8F|2*_)w%#QaJ!W z8d%GPlmP4>Z!Jx2{jnpSJl4+vsDFXFjvRk%IYAy)EzVQMpD))<#U<)6-o6V!ukF^d zx*!l5@+$p%2I7~uwcNfx9jX=QbJLlaMjpv~msx0#Wi8(mXQF_0x+((#kU`zg&JaIn zlE|m2QjB|h$uBuuj3*N<#kjc`sqa~jY*Y-l9hP#^p$Lm-u}&OVh-KtIMHdue(^gCQ z^r8SK$d}o8w*U?JzJnDCu&OJ2t~D#b<9Dowj?Bk4t(Dl%$VW5oTi18z!F8V{eRuP) zzXEj?XLI2nM}9}|JUkg=C8K?FQNx7s+~>tu?@v9%^2JClPn|-&#c=1}re||7t*Moq z7@UL0lNm=p%EoZ6|C1(WGrwWnUpX7Ax!<`h$cFVkE9$^=FrDlFtQm_@ZoieZ^Ur0z zWhG6==V1k(V~4n0OmMcQ5C39Z<+xQVb5Nc<)yfZZ;NV~_#y8m*yWd)B*UN!B>-u9& zv+>5y`7|tGeSLJ*G|cs8oZ`F) zsodYDSS&)>p;mG=Jr&Jwur42#ieC*`hd-Bsnj6WpTAqT^uPnvuUoxf#F}~Q9i~!~f zkw`{&<{5!IlMui-Zd7m*wlbcXa5E7{J~N+Kl8AA9|NTmd7+TPQW3? zZ|9CJMB~ZixeZ*1yQj#1d%pk=83%3~w*c2_@cWAvAfgg`ZO1OeRK|msZ!W-0<_jf% z#KVjA@F9oek;%Az)Vz4KW1arsv-wC&WSq8fKCW3YKCC_;Pu4S@zB3OW8E@DOoQHGR_{(dC_52$Nduss5nGA=N^Z2e*T6>9PFtV+;}b)w=?*=r(CPZbUSSl8FbD ziiRcsUTlcM>m>ed5``V9Hj+Ld5^ddA_)Mq7DuHx6d5tpDGLLCNXlX)#Vcd4PJC!%_H0d@yrJ z6fz6#q9h4odpHxaPOXZ^(`0$SpYEf`OSerKI!O*jtHf6Q-87{ciz zGeaMWbF8=K`h?(PxV>!q5sXvc?4{KBSqNQjFS^{BsBcN1$FLxndyqe|DG-tT{OsX@ zSVA21cBue-r2b`7oYV!J>?D7GGv&C7d8>MXmo5cidiRi z-|r3E5&YZU2dnQ8OnG@l3k#T0=MEvK=QTN;gv`(R3Xxjwn z_E4Wy%>x%0j~&-eg!vyE8E!EV6B+LqKvyZ(%2c8K3&``L=WL$C*-glCXRlqP(cjj`v3(@tgH!{IHDt?d9*M;R*TbwY$y4 z@&|k#OM;L=+$L*QF#6ch&+S<#4m7Zr6Z=Bp(v11dt74RPARgAE82`9`qiVPrYxBwPY*K)w%$Lq|%tuINYx<}bpxFb)LmvuojQLQ~mO>05 zZ}$GeA`~>TCJ(g`tt_miMb$!FWgc*3XaN@V;XZDckMB#Z<0q1Ga!^OzfF|P4j418x?P-F4`=S`iyIf$nocZx?2db4g; z-zggncwa9kWkWlMaZW@QLU?}@j%DG$o=`sfGqIU*&cHHR=(f^^ebO>8(2Kml;hAVN z#8%GPWMJeV_Eegb4#(B3vn6JrFYyBX&~%(0Ybz#RX?XR5^JDKKT({!5ZoUY!|56`T zl#2b!spG$qf(OJKQb(lX3H@|3JEdSE=Y!Me6ddeK+#@C#sf^D}os)6r5BcP4ldyj- z$5VI`7N4?}^4Akl*p2$+c1gHEJwi%!0@7Lcvz?Uy6Rv;lEf&I-eDOILQ0JRNUjZs@-T2IwVoQ5t@e2yU1^PpN^m}^gZH! zt1+^-aql!-_qCU_n(3I|ocimH={QRM!QX`$=*>E5)jpXB9b+fchGpRUP3kUYXCgD_ zzx68%OUK*FvvS!maJt%4eMJOiDwCHXMp7=S+LR~8KTsp~77f=v36X3a{*$sGD~bW4VgcwULmiI`5^UWzdZw%^FFT$YHBFRA}COT?QA zjxxPZ0(tdLGAcI#y{P+Z6}S*>`_Na+egT#w)892I9%lUgG56+UBYjgBq|L{$XY>W` zJ|AB^$tx*4AKMejYmJ?YNM6T=w{y{~C;d1^&PDTJ@>-V6frlggNN>bp(H-h}TFpU~ zBkUDz8i#YU9Oe9?IGkR{y1jQST9`PBeP|3!$hR4$VsQPrqnw@=gEj}q3(Sf}40)Vw zE=1#cW$F&UN1>2->z2;ZSYb_m;=m}JAWzkv`@zUt}dFq|+D4{JUfn@T&&$gv@qSKV2* zjtoLPaox-1gOE=C(}0Lz%q&YkJkwd^7t+V5KI`ny&tp@ zDnq}^@{^FUf#a^@MC=<#e8|NEwue;!O{-utTp z{cnO?(D9I?Y)x{475T$wcpTN(N#X|DV~&A6;=P@qBme5oJv&5YIZDmV*2oH^pU)y| zSe0~=^xD>V!ROcYf(07UH|OvY3&wNAK^;fJmprl_*(1@T6nkUVHphJ8^Cmw@;31B> zB;6bpoY*k^`Ecm=(Wl331QrobjoLpH_sKu3x^*~0h7(t%Fm|p!+g1$=s7W75WDePIi zxG$WDCyuYu2j_yF#hBI$jdqfE(4r@9k@tAYr6+2V2YBaecbr~A9&}bWc>N+z@lH>y zC!X4?xF`Bq5{E6>8@(SB-`m#g?7WMG*4EdI$>!BWx$!BY0Kk?hDUuxq3dm9H?;2vektF7uJUEVFLm&MtMq&FRW12RAJ6GuRJpyp zPa&UFTl(izr5>{67FYRJ>Ajlz+*S0cZ`HcRu3|X!QVG8|posd`Mf69DeWd>TU6+8z zszqn^YM%34b?vT|-FTxW_2b{m-mCCI>{n3#vzk0yD~%GqDT`rRX=3(QW%B=P_LP84 zd-|zODTR2QR?PR6!7BRyIAxbZ8~Wb-Ze0N%>4#J0M;UBBp_QC_rI2udJ>J`u#FGVD z*;TFtg3`1yi9F-L<60Sb=!5#e-s+8azg4eiYx#U%sV})&_LhC2YQ<=&=X|2F`?42w zuZL=U9D7useW1qh_~yhd^5NO1!0xtc%JV;1`Gz{Skmob+nyOtxE6dwmQ3n#V68rCx zniS6-s3zzCf8D#jo>tNPzT___)iEBojy|TQJ=cn{-(l4&iN9}tLLE)iO7AqzzB=5;Tp_cNfZ+%AD4cAG}Rp-@a{@>L8qI&d6D|a)msabcmQsjG2 zU23G0i#498lQ*?ee(*D;%yn{k;44+sN+)}#e^8cBw9@v%clBS-+n23M;B;s9rd|3| zeQu+Z^@G2u1?$)wn*97Fd)V*c@&|QwwN64dyro`SCzJiDTVAY_nSCB9Cw}i1n+K{J zds2UlxT(^|>*UG2%gX!|`zg4dSC!YYmu=B0Wl==mBa7qe^H7~^YkE`-;dMODJ*Wa~ zbaJE1K6UnmR-QH4qY__gSH?CK?9BcYrMCS4{@qAluiA6ot&du({)V`U zSG!fpy#;%E2dz+j$GfsW*fP~-x2wFcUGe|-2fMCT{-d<=wQ!B<$MF<#b%Q#``~7Y8 zMit86In`vVsy9L>3tMbg+j&0^=Iv51c%CQP>{QEm?7e=gs>s)i*KSr7`My^rHYf*v zzPWy#8qV`;;Ic-A9M;O85i8V(H}qj@w_3Tg560_?tCX)NzxVz!m0OMdF^(=#{`<6Y zBBDqI8MIQ+X^Hy##g#s&%hfyfkEm-#KYpJ76Z-MLYvd}|tnyUfR`jK+oul?g^Z)e2 zY)_xr+ctTsCD)T6`tHP()yfphC8~98@~{6CsQOo3C8}%g|F3)1s7%$oKc9Qa40Xs< zD~6P871}~8<9Fq%rGDgXH!4sum$Y)PW4?-s@wA`$6D#JGe@=P%O1#G^3)nLoz(eQq`Do^$<>cbRc1}SJiN71HC@8-P;QM%D$ogh z*Q+um^-|Jei}K~M=bG*6V+p-1ZNFOu^Z0SqKIK=alM(F>s2P0!*roIz`KOalT@I<` z>^VNS_FiS;rk7fskEl^?^b+y>go@|uBUheNo!BF}cfeJ(@Rv^VR$fyce{_tS>1R+z zFB?}sQT}7~@+JwLt@%&Ka|tX3tArjMB2(aMM? z&;Cqe)&H;G6|AabGuNM((lzmw>ujsewa}M7!zF6eh8z2VcU8Mei`Y&HAV>Z{#6OSsPN_)=dxs|Yy zJ*ZzsRD?6<`=YPq;A7N@^T4tw&HEnxsw{$z>13I<6po(J$-}|_R3v-2*SPXa**Dfp zwfvt-rs}1C?;q-ow_cJqeo^zb^0@}QS63<;WRm-Hb+J0{b1r=srWj;whes-zy{dPu zp<2z)Ag4OtR?hc^2;@S9rM#2_9qKU9Sy9N*dB)TZNlsoVLN z+SgPs6aM^BSG($EOS@9I%)jT^m4RKDp1StZSkl2Dk@d?U_p)9-g_c9iWW5aN$*yCi z^s?i4c^u>VY8F!tL)i1XRatrHB(zLrRA5i=7uzc1Wlz0iSFMbQojN&VsD=S^b@D5z zI;^-}dk58oCFh~5du?>+&FA{9HXd?48&*&UA3^`p!*!6xeXiNOdRSjyEA2E5VEdPP zme!4Mi*Z2Lw@u*Ell^#xH%9YtE%B>{_``MaX4QI#(r|sKR1c|lb&^=OF4|Ys%dq{m z;NCSKMf7kWFi1Ekc~afG1zy$E%Gqx%@z0I>LjTt2!1aCP__k>5tCi2>-L10G zN~wSC5&q0orUrIEdBz*D&YiH8@l43v&aemLs5@QoFv?Z5_TBMvovRG1+!LvM-{|$d zkdw*ytxO-Zp^sp?zAvVbmshFQ0BnBAxc8tLVj15q8)t?)R@5Dx(V$V9in=JaH zDbL5MLVwgbL0`g^eG$Uv_j+I-Joe=OZ}oyF#_ZGTqRY>q&>f z-4MIVRc1PvqVSKaSa;|G>j?IH`bZvc5%3=wn`sg~01Ae#Yj4yY%&mJ>H=m(vo zT6TteFTI%6?TGe0^zx{2dz>t%r|zXK%4FyyoVpXgXF91euQkf%>!fm}R;VzT&wXwy z%xJ5Z&?7ByvrsQ_3tFPQO)3*jz9Fs+vH1NG~z3O;9pd zFEy(*LA{1tcOEw3xHrh4Wldpt%5{8qGwdzJbtk$7Jn9?dnsqB&&(h1a>8;^;MlWSL zx5dBq2Jvpv28LLJ*!^pTYiS0#eY_2pYYg&)di8pb^>U*`d*sJ+zp2>))r$49_gP2G z9;uhC@0}2AuNULxE~v@t=vCMimh^YLxt`;Q^YKcLp7?x^@$R$k__j$aV}AC)Jo-L9 zdfp4ub9G`eqZhtb(M$dEJ>inU^=DZ(T;qDQ>WC?LM)?O^PtLW(RIayy-CH7#>uAES=J@4i zAiuRaN^CR8#vaXxiyCFfzGmoN+bFu*CMcb3ki#)1=yA;;TShiP3fI|xCmSPqtAYJk z8ezPxL4N;jhz9&!Yw9Occz?PNZh-cS4br!FeSE8CkcCa_qTw8aILxVw*4zg^U#*Q> zj}5YVb{*nx2FW>H3k8-2SZ3e<{OJ{_eRS zY8THlVd7WSg2%OgKPm%{xk>L-8jnp)UaS6x4Klyzx$4%!D34n`Q$5=lWkt>-70}Tr z)2rQAb-Nqoz|7m~WV*b$GB*?i%c2!qV*eoR&2@q6AO75~T}=T06~ zFNYZA*3Ofvb}@f%(P{Og&?v1n=T(h-qcnPONu_1;_hPRpd;Z`3?Q!Ka)F|ib9a9~K z871ETkgE3FAR}uZP#Yr+^5gD4RfoU#>fQmR<9YbZ*{!OL=KRdxsosv!i>~`N^^nJX z-#4i_M!h_Fwq6Zj+?V-#t(wE}+IH<~b(+_azki)7sA!P$Z8y+&R4*IWZBa3M^>VA? z4z=CfARU7?s~pAwHYw}XS>DfQ>rWxht_D!lS zpF^Fr4Qd7N_Z;IoWf8}?;@WEUyPZK=m|y!NY$IC6R(&8)j6B% zU%gy4mifcW=h_nk1@o%$L$j#;Xx~b>et9S($MiUG*SM z^;^b$b6=Lq`pfTom7_x5>txc@eC6xJ`OZAxJLBBi)pAsW3VI1%kf~5hFR=#}sS(^? zU(8QbSu^$0aDS?bo~M^?RgzT4Mh3YUk)pa@&`YcS>8j2Yy*NzBP-hv(yuO#E*7N@7 zwa-}KsGL_EU)~9-UZP&MRb8O+Kj|dt`+T*X`N5v=acW1bUaJ3|qb9!8%bGUx)sZ2b z*LCNrodpKbN6%MfN*U#OuZ8Nx7lU*@m8_b6=Xk!Dro6d63@OY~*YrklJCmclO zubZ6bs&3hw=eJ_j?Y@jl)1p05k>@wIuRY8AqHk{Ycn8tKK}T+2lTjv`#j0CIqfD`mRu#BDmAM+O*55LS z+wV}dewKkc{8`G#ef7_<=_-|ZQuiD`Rp6)>`>$Rqf#YmvwTbFnWrH;N=A~R1XaDKx zr*cjkBy4`5YT3mo5mrH}YKl?n=ZC0*<-D(mRIX7*2@9O2EV+JepEXsb?&CT<$cugC z3^K6eIOSkzkR8k2)RZ53u~Xxe=_0*UJ?y5gaew`pI!?XeJhJeZsC@3~l)?BQcrb!hEYm? znWA?6o`+xYmGeoml;}#`(>v7DfZW?I84>A#q+Dv zU#(-kwZ+gLs>f*7YtHmi?U)BQnb=LGGk)@`-dP1$GVk8pPF-OfS$M9MivLZ2ZTIHt z5a+|&UaeKRCwj59X|H}ebDfyqS^eTZ({EijRm5@j)U<=TDBO3Nw^5f*GmrV%Tm@?N za<+_#s`-NTqY(|2?*g3|mo`zM546(MzKv?1qLpzgJ18^e9fSUKQQuex=;2sbJ-M!9 z@9tV^!cfk?n{`#hX1(OBXsDLAF^JD56IF}jXWzOOD!h!5`E46j(AX%)es)$SPYq&q z+C-h?yiD!aLY-&a@GqmGvf(=2KdGKlyx)r~8Y$DU23fzVmO59(Ab$teQ{j1fSu(bk zO5^;vbiSH0S;+jfU1c@pv0lneDX-#Y>&5j!X?6FkUbepar?Kv3klOmvDytFW-+A9O z4S0T)HoVsuCh5hZ><^7)1HGK{FQGzMr%8@4uafucr1jy_Dxc$N&fQAtq^C}TmX=eN z0Xix5x~i(le01shYO1xC^Kaz`O@~c7*%ZgaV>*oU;rd<8+ZD{?{T^%PaQ;~Tx~$pEIQF3TP0eSH zuM00uYL@zN-!MI*S-|@_&+MGW`4;o`gV!}PeYkHlxTG1_g7fLsEzQVlJl~;@HJ6zW z$7R3P9OHg{sLw5phU;gC(N{HdO6cX;tTUQNwj7s74r#`*-t%te2~A*GgIsamrLle(Bi_?=_&6;K0 zcTO$PG~~Fd)oYgKH`nd8Gki79(Rx`>XOw0*>mH3)88xe3>7+&aRLzYLt{_{G|v1C2fY=oJ{zLcJEFElR(F%N6jUSqe8am(@UntOM6e>d4_epoQR->%o3<$AX# z&rH*O9_L@?FwJQlePpYbEbcOrc`KFqK6ZyM$>S{K$)5-f@ zoiyoxwBj+cs-~u5J?qIEv)+uSy5IV1mUmAlwam_$b+Tk0_VS_GkeNCuQ*N)>%-S5M zYuA{0U(rgxu6NCDzt+mr>NaN0$@e-rY6<+w>t4UK7;QR`C;PMrZAa5Ty=@U{lBc!S zvk=?KQ@dGQfKlX|pTC=rhbFdi$|N6W$>;FvnU58_Y$aoQ9{!OBvUzhZIya$D?c2pT zW66H2Z5Lx|B6(L;axqS4CqvHXVtIQz*_@Dv!(Z4h$vhwaRkIQYz z=h$2T7xIU6!G(w+57>$4b&EW*-DQh$-_1s5ZZAdx{Rk_}TY~!iZDmOHrFcdEaBHg~ zIC|R3Pk!z&`Eq9b9upZ?MtKIBplOdieAQc{r~gJw&%gc#6gz-%|+IH2Ps=S4=d@j6G%R7Gx`r(Z_kID zt%Kwr%ftJ+4$>t!A5E!Kf8djkDUw>+Y1ob$WCl#72?l+_SD4ZJ~A4y@6LDLM;k{O(IOA$=|@y` z-Qxf2maYEfz`7a#-!lh4$cs4WnT=cIiL~08h2HE3<@P2MkAod$K&33aqaOLE%EZRK z^aFFv#IgVM@13&nsjZV-B0p&OKl)1BW*}sNqj+jF;7nf1h*s%XzuA%f&C)Pboao!1 zMm_@jK`qWeIr1U=R;0uE1Nk2h)8IduK1UtWalpb^j+mvPAN_(%qSD|>U2CvA`7$S| zbN;gk2lvwl0E?g{p1-l~BIv0{UFndDGV~2dS(1Y9)Zw=|oQ$1c+0QB`84b{fy#N)XI_55e&!;`xD z3g72p&Iu>kvvVG7sk=_in~U1yOXOagi>j{9Qhn__93#%2S9%^CsM8-?YcB4vA5|Uw zTzsdFdUozy^t5)7Zky&{E%EIax8v}Jc=zo=bFkXUMZWZkLv6l)aQQfNBR;<07>kDo z$QS7qi!ADA@5INz&W?KIS~2jUPC0gaG)7TB?NcQh-dosj`C$~^{idHm-zXfP`X8kw>y}cQ|HKPyDbJ^*$fy z-{dhH-MhNTt-HY}LwtU_|15MTuK)4kOvJJ8ivaRn#_aY+hc+$}Z|aL_)PoPK?~Uh= zoTb68DRAfga@e)>@D z9EYFOY0sZB9?87VNk$JK&P6)_b#f=))8gGWU z%3u8$RDDj}cMUgurms;IQ#UlAZhTjv0r$wOxY0-t*9$IURZfqiBV6Q3byt)p?;&oC z7C-sDcMiJ1-OEK5HFU<7d+cvp#~A^cF5)-E5nXE#Z})LT(J2@Cbj+SUKlDjjYmW~d z*oSncEk2SrQ2(b59xZg0eR^x$y6!3sTUx=w-c?@hutahN)_a>-qes4rg!1(k)WiR{ zI|^HJS#Nf*fcpgU2DXeu{5SULEE*24wyttEV<=L{Cvd4f7{^jwC3F2iTzKFre&&MU zPON8KQSc8W4q()v);_JYe>4E8#07l4`(q37*Th?W5x-6==`nrKdaqVieea7hjB7^w z_J{8foqTvO0A|c1GFkam~**5@ltXa=G(+_5uI;o!07gY?zvB~?m&i|Xc^g&l= z;xEz%KN9tF#JLxad}lpG-xD4+8Lv+5hH1lD7wXmn?vsf#ee8*y#P8-&hu&p*;!*CYFY65{RORfy{DT3`^xkDRs*wGHkbPUXKOBkEZM0G@%mT&4ANMt~!kj|#3zk`+e1KMllo*AK zVOlBnF^4bn8Qb5(G4PsJzE2y5@6N2p4;hA|#mv_thG6Ico#fMx;}hfB?3sfR#(G4V zl0z}^oK8%q48z(~KEH#*p(XzK?HPS?Zm@rFCizZx$a}CD1h8$5P2$j>3x)aCq#KUz{R$-2o_3-o9H@nD}hM(7yVn~cC> zGvd9z!;m*qFMVnc#i&hsxllY9jhKhNavy{mte^g&4@*<#8TKs|K%6tw%M9gM$9FOt z0E^Mg^Wyr!p^rgIULenlIOo>l-l)m^%GI_np0SQ#Pu|vt9R@kDqz7)zHwYe*H|9*7 zpj}s7V*Yn%c~`76WnJFC3p8_BFO<&cy^?tEk1n|H#rocij`(`OAghLSzy#KVf#TQ9zkSFP4CQ^cuprNg_y&1|ZU4*bIseRwmmK>x0@17ku6Q{D&cq>x*bGB= zGow`8HVn&{|CTO20y}uV^ER8~XJ6K{JxAfv8{#t?EKrN}tgF8)kxRT{%qnY?u4RjUe>i}sT9gs1bJb@xdT-0zrwsgkbzgpQ*?1BxGIgeMn zz=P{RPiSGT*NN439qQC)K3B_terH%Wu{I!=>rC&xM&yoW-KNKA9RA8aW&KB^=>qnh z9L0ThudC$bjKSWvlpgZUJ#PQhHfctDd z^|0`{XNDpEe%1?lLa=F#)-&T*NSHA{I_(9JYQEs&XHvp4tej#H74;VR7+cw-p(cTUxP zsnc?mp4+A(g8OgDuYOoz%kv%>fJKZ4vKLQ7G-^Z__Sswa;k8DNST53EBt;5q;I*ae5Zb7#b#HzzBm9E z`e~(8=KyT@&OW4e{&-3}J-~e`j&r}bH^moa%acd9&l^j9$P;Mn19R>t5wE9UJMXja z2``jkUOoNuB!rdXbFlTn%F?X+{P0DuwdBn?_~Gm+t(?E@4-f8F9rOL*R*yWDl>sP> z%`SJk?)*A-^V&3 z^lzcx&9>P%8O-NcHw>Q&Tx4lbIEEj0k)5X0r&nbEz|e4fe&iyKx-jIGa24Io5FB@9 zymTN8!7;A#HX|JIrtG_J8-Xid8AsNPMBg>^?Oj9N*k$_lL`0!`vWryf8I7_0{C=Nk znDBgJS43e8&oBRbB-$)tTy`W1HN#!ye10@8ALHN7FpA<@dTC-^M;C^wzEgCO)|1ATfP}-Hez5`K+WnJl4Y9uDk;QmQpfmcpCiJ2CG z(}&6Lqb~0n?Zzq%>zx!l8-?Dlv~7Ko_8OQY}P;1E4U+( z>)vV;cN}FMKI`6S94M`q#l6U5Coa(;*nq9%>l9tpq4GDzbAejyizMUPM%D|0Uq#QpqH??30S+Db>AKn;ln!L z^t+Q#<)vQ2=TCu_IBRepZ+H=B_}G$uCEOS1CU~Qe`{#)Z-t^5kNS}0H+$IkG>*Q3J zXbch)Fcr%(i0AwH!-V_fzE1&Y&i!CSSRgKN{~pw02Bu!+e$#&@3e$;`9u7iN4};9; z8;sh2_40R4Fb?xRKWG_(9~X%?wwMjeeg;{7F@%0;#0fTrpcLP~XILnH|KWLhhGKON z>%%ib(X~12t>?nv6;C|uP#A2v|6Qd|h@rAkmU7-2c;1(L2E%8RQF>Sf<64MO(k{_w zE-+1R=VHQJP!|LQB@qg?jEhQ{q^qW}q@ZpFDaxbqz-8qzz=AVUPx! zrePuR^0;sQILqU~!G6@i7^QdDsaVA0Qu@p+CEh&pi5E)#;65*2IM|!NPk)EL&v~AQ zCnJ^Lo7-j*HZ3rSNz7#29Ya3ZZcn6qVg2^r1e62$4)GpXA7hYbL&l@VcH(01Ctyf( zqZHlt#J7q@`P+X2PILc#nNJ@dtx@jW8jo{rjp8zV9NZZny!+seSHx8trHsY3wFY@U zXe|2x5Vv?W8b6Y_PiKtAO~yG9Biu09-yn@X7~!_tAYF z_2?%UfL5f@koKJS9?zItiW#1*4!>E(`(GpzOG`JBOrm#J$1N19HPNf zJ+_zQI9p_79|H2-xQ}OYp1Zsn1N{Wvr!;r;XB=ARy*=#m_&k=-C#srJdX=-sfBXvz zCkM0+BLAb%5my*5ZM1eq@P5|i|F|Hgf>Es2IHUA4K8I3H2)8lHWxW&Jy@@COa>nEK zM!Dz2^CJ#zzDkQN#9ey3=rM*ojU_(}Xgts;=^1Vq<7t!)m&RfQ$CJwjBm9Wx4qT_l z-4Vn`%jz&L&L~HUT=Dr7aT{@g331aC^p$Fo#n1nBAb;N|r407?#OHW-t1adoHi~aK zJ3K4mxbv{V#A2g_SnKeOJ^}?hsJo|6P&ex9f71u*-kTh((^yJxw_GHoT1t(aT;MqM z;I|jUHk17@e&-;J{XP78Q-@D~nAelCp^7cVtRM^7Wv#?IJPQfbe-A#LiK5!{x7wP? zI)$bDEuD!k^x62`k-9VbeuX$?V96@_@R(*`8TIh9Gt%*RDSfC0rQ;2K32N?7L#iir z>2uTYgFXh8-Y&v>#r}u$(lL#CJF}CS7`%*rws~39IaqOD$U+I~$6uiGFK zCw^MU(#M(Dl3^jM?`Gn*o29t%=mz?dEzd&J8}##9orT&amQu<)8#PAL55P1BdVX#y zj}i2xdh$63reXA1G3FrhtDRJxmV<28p%N9t3ZJ6Mb9 zmL!zj!M;0LNicb9C6yi~BEpUO%I}Go(#Bf0nlR{8}sN<_am>_6t3fTq;@clSv^ zTub&7%~*)|%~n!7av^nQ9Dj%Cdk}6#|BVHhOuv)RkMZznK_8bg3(!DoEsL)&KxU$~ z6s%o{1}E9yEg}I!=?C$2a3ac{v6gYwl5jcQTJD@m!r!y(x0*#?2LA1Bm4a3D4I1W? z3Rn71lwFgG@#geb8MO#|%3DkMcZ(Qbu^;WrG#sbTM_{E4)SquH&o^e^CHva?)yTkV z`hWy*d@rBH`(l!YtL&3HgT4`e8`CeqXAwFPS2=q*6}4K?x93F)O6qN7gJ}wAv@e?< zBq5c4MP{v&aJrO@_&X=!Ic&slbpq^4+Q^Xu3$gQ}@s?WFS*-nV~z-53vR>PsIa%*Xf()SWMg zhx=dl{hP1=I^rNcd*U&*A$?XK%*W;kdui7o9{M7CnY(Nr`#{-Corm)fe}MQ!$GIrv z-+x}uMT8Igf!~>fSoR~k+>z6Zn!_E(6-kwNy7a3}`P_`UV& z#o!HfoZdrYQ09m|&5WZl(a~PMnMETd(_VUKM!~Zc`>cfp?DIBha4pO0WIG#~w zx@T)BGN?0kZ!jD8sYjh$9E=-z4ubAM81m6UMtICb@BZ`?{uqdoABkfOoQ`tDCsJ|) zU`oB|_$U6jO#R^b_kPIR?kKOUr(z~`opDXP@vAp|CjGros=!HJrF)^3x04(kJ_T3m zIEm%<$*42UNop>cgj%fopZPTzeXir@OFV2yIP>BU4idk`4F{(>$Qer=ir2FL%x!1v{U1kX9T#Q$ zHF3m13``8V%Wf2Q4pIgR(jbD3-Q9>tHv*EPAlN7tc4Gk+V4|X8Jt``;sPFvVzxYtQ z_uhN$73a)+hyQQ7#RE2a9+H329mm**>CkZu?y(QE$k-X}m$}P|A=4B3bI`U!-VJy8H^ml@c)zX5@4dsm z(P*oo81abjhpG+M(SIBHU69;~yl2)uGlJP4$^+&x-@@KjfgQ&@q+qB5?bdn7$E#L2 z`kr|p+*;Z!>FXmt< z1(L7s%lGkt6{gjB%B`6SR7QJBpNR@wGUDHlR3PXb`%Sy~@#f>FGzdcHkvAZYl zt+d6Aq2%n|vcod=r_2*7>y?f`WF!N&r|+r+2Aqz zRr{=L=zsPUhrL75?-zZ=26mXX(?ceAu}7OFU;r5tEpJ!7i zJCvt;%F9zju|<_!=W<)TzUj$a5_=fFXWmD&BOC{K$w^xWn9v8B>Sl}Sd+8q?WQ+Gd z=qC;ug4ARWIbJscYH`eIZ9N+MnNK|9SrYDhkh|C=35&x=%XjZY^d8Rqv(*W(TR}d= z<#?2mo1?50kHPfOAGV8wEqRAa=fuKQk360981%CpEgJWuF@yh~VGvF30XbZ~qH&As zN8fQ#s3#vNZ6dif>+uLmZBD% zpH`9Y)gv6k+LMnFAC5qBr%v_`XTA}ydssNsXE5hWBLe%$uW9l&0>3*m=j=cv7L&j9 zdSw*OJsKtI&e1q^i(Grn7(5{F;`fj^c=NiiJ0wDfyrqAt(YWnNt_!bIg|AOFJ(A~b z{`_VHrd5z{r5u4$a@r0)4}&u~0NWkIv7MZSuI(alkMpH}6G0{_TK(QgtC1Fq}) zeM6zKkGzQ6A;@H|Lr=93sB|Ka`dtV@PP&T2@oz<}h{6u;o9@qy#6j*Ozve}tk3aV{_rejoa+Fjmg=5q}a;#Q{ zVKw&~xlO~!>2(rqa&K0UPnb0+6a$Vp$$$L$YVK34E`&j6m6M#w2tzyO1B7RV<1hDV zxvt^3*m#t|x zlsFEj%^88U+((T2GaNSKnfL89ocW04@)$XwE#LoE-|g{TK`u~FJ2d0E`mk&$+H)OU zF~bI--CX2p13;HFxwh6gxYULHWGi%Mt||ftL;nuB{N!_cog-)O&j1`&8zUo&`(q}# z4Xf1p;vBhXMm&l@5oat2(`d$I~RF1um|F{kY78h7haQ(G~s(MtXoL#k!K&Y z)Fsa>p)ZPWGY_|-ANdI6YFZ3H0(n+dl>?yF-W@Cp5)!RNQb7~u}yW1T+Qo&WtGgc&FPJIG33C#>w|`Vr?V{YK!3EOv;18;5U2l;_gggxqscuRQ8pNzraH@u*_J5($oyIM<8EFe zZ>57ZJoq~Dw^-p8IT~RORv19u%bowM;m>{D%^YAi`KodDHt-@pH>PwbP(VKC(xLF4 zOTOeQTbO6^{E%%A_Xqq6J2-Kk@!V>MexaNv`q@J7#Axx|Y=bn;A8l)Bo98}r;sN&6 zn6un{k1byEd~sXP9_<#4mR(C7u(lcJoxk>|BiGg=&k^UdMoaM2VbCB~@5U1c?CL?@ zn~4LCa^L%Buq|GY7_vK zBy!5$0?XSu%NYG(*kH%;I%GJ!$pakytOp_{GIw%icUNzeTD|E&Lhu+ey(kgT*S9?S9~Vda$Qv?>IlZj+7NXt-RmOf zVmqQ4^CtRObik_#A?X`ixoM2pZf}FRrObCoXoYbGZqk|lMdxMQm)>cCU)szE&}xAK?h6YIRgrg?&qo3 zF=&p5Q>n9=p@NGO$d##Rih<0tS#`J>1}ZVHJi7@lX1YlL{oR*h-Na0z5tebESvZ_I ztOs00<~PPd8&_H1uPH`RH`S_BVpy3B>&6Gzd6p6C-d)dbCeBs z5vOyi&?N83&qEb9i=E|WZFA;tI*VAfz-OLkT;p3{@-WUP-&-Ij(?$Gyw17E3@9zUu zVKQcnoN#POUm&@Xu`OXW%0-TPwL-_=JiisU#4?WaE)QB_C%I%Zy!rbio`Z5)W61|{ zB>%L+HF8Ro%UfeA=SP=DtU|v$(z`j%tGt&JRakv_l+uu-%xSYGKXw`U7*zn5U9t z)ByvxI!ljk?a-Fv`N6FADEvZBoPS&94{*Mk-VUyOJwCeaaI(QgRG72TvZJfypXWH5 z>ngurwZy?I)J>_hL>75xp>8cO_nfQbOjbqD09Scc+?@G6u3~gj1%o=e$^Kc*QJ?E7 z$t{{;yR)m9YN#NE^Z6$2=IBGN>EAFF=nWuWslFM8K6jCcA5}2Pk^IZG%~3#(Q*Uw= za>!AS+og)r?a1@$*AiV1k~0_C0y^$v#QK{mtT?aUjqiYUd>vgYI^sesIal{OV$D$I zhJRAW7M_PywYs2om$RHH=mhrCr{K^$eOF0g#$`l3PSvPN^iTp>@ zW!iMbqYu=BHtm3E9sQVVt$|jT*)Kezh3;+1HE?F`=P_SV=Y3dUF;+%S(ue<6>JYLF zkjs9i^R{+aL;bz(pEkJIkN&Pv9iTRm{+<@<@cP4ksc9#2m|3q|&=s#)H%@P+iO`{} z<8{@-jVb=pqq-CB(04E_wgX0o^XrFpu%sWuo<1|um1XfMHPjl>*D<9vn)3Hi)~&H? z6YIzGTVe$3clUp&VpkErpWYmSeyrQl=j*fFUl!eOip8uGYE5qfV?Ixd!^%h>>n|z~ zl`zS`UwYsBt2jX2aF6r96}vV4<>2%mic1>w8#MW<*u?MWZT_UF(4vpY;De%C*I%+? z|5NPe<2w7lR``ed%de)-6j$j}37Yp3d0Cud4XvPG8C0R*IiZ`MMmNDVDxxKjCgm#e+8fk~FZrqW^B{ zrXQ&(a#!;G(NI^YvEJ*ywVC48-EqvjQBuU3`pfkXN{W-bPe}S^U2uUuwnuFhj|Ywu zrLM~CKT>z%(g>MLsgKrELa#FN2+sXg+%#aHNbip#s{1$@GENDrLOE|xXL&~9F76M> zYvp-c8uBpQjC`q=xllXKJjP48C?w~nN9Hzcr#>-#X)Y#vQ13^co&PCMIhLP`70gR) z@Z5&oPpK#To`VO}?bU~F#o8F=r0mE+6D4oC`8Ee99x;cfbq-wSk&9Ed1vb>9t?si0 zr>R@i$;w7jHaSh6*$_)Fx!N`x@f*CP!>TO!=#eKhFbgheUb4m_6XhqEZ)%u{(;nmp zm64nF#ZxSzGtk_gT&F+j(0=PFlTW4Nu_1MUtiQet=lOA88kEU*@(fDDPV$Iug`|-i z=_S5}n=zhT9=9i(v7Fac{W%ra)xG5HhRq12KGD}R9aUXC#iLOM?(8C0?0!1>lMB`* zGy}m29r+Tt~x&>{ix13V51(*4L6b0s>XeW75iY@56%|o)Odkv(n z({^bdcBXks#pOIGGbf~tPafipsbhSXi{P!y9a)u&YIo`&SCbpZ+>w{s+o3st{p5f= za;d$gXJRhvY}CgM*@h82n8WC{4O6Chi+aFTOpErGIrp|8hdifW3%5YQ{ZjT7 z-PmOdI+jw`sK`cEcjiC#$ij$FZ}Hrii6wlz`wp4dHkG=7T^V@)$4kb~%D^=01Mifl z<2m_9n-kKpjgK2!pN1vnUZPc;hL+SlzHgI;iw(?$RPg;GKkDI>RQ!Oq^vOzv{RZac z{7u1<4EDV(Q}CXD|L1TrUheRgnYEixPQAj4>Lhfgj=`$=Cfuiv^X7p>T;TO-r6l11 z^`T34u|7{u)tpUX=tcf|BrL6|Gp&n6Ep?sWtD-QF{qy_pBhiTYJvrARkUG;x-VTc3 z`a`|er*IVcQ)e|b9QQ`}lCK(uhg#&O6oo>SoC~A+jkv^q`0gE{kbczPeb@-6)??*g z|BZNDL0#MCjp#}}nQaDn`qZ`bX&i!@&VF(}a0BKCvY&M_7<-E7YikjVh6X>m;KRBm zb%)osQa5mToV>{i!iVqFEuCM7_v{lMVP7-&gTD+hUPIn=fYfhag{1ZYvQ~K|z9a<5 zd#{yfahl(otVZLR0n&cL8kA}Ti2Lrf_{RCWOXDEs_xa1c%5^wQAKV@CTz|4pdzXCJ z)cN#N`;+HNAK#je!H}nZGQBJqf0F5|57~h2j`X+LhhRN*UYjdJ@MVCXcy--~VQGGH zMQI~`^Y1%HhCs7D^=uZq#2CYE&QcZ?_dlYK|klB^{|X*->ftU zZ@6we92tyTR@5Oi+kp4%NA7+Rj3x#2>Hgcmx-k9m%R{h_ecpvPHsS>5VXKmjxH#TV zc3t0y(_H62q=n)`##phQ7>dBBV_B~XLw{XA`S>>sDeRxm{~m^>)GO>a55v)}W2JdY z7?x3=xVJnE>d$;-<*aaQwxQl_Y&dm1^w~ZLhs}_&qB1!GH>pE$85)7b^mQDojex~a zU)f?CNxc~PO^YJnx|KSOu90YK<0CCkN1~{JI*>1s&{Fah+n^{UbAMrz5QXVRV`ZQ_ zb=zmgisQxz-1tD9%8784O!Sko3*peC&Y(su9MKx|vGTf=sEfLi6$(T8uwLbcqQh3+ zmoFPpOZ}Py>*iaykJu6)g7fSf*B#z~5bh6-Rc}DAVxnz(A_ma49A8*`UJ@LRU1&M7a*fTgAp0Yug`XHe<{5e#Lh&3{mLrj3I&|3$ca(|i0_kXr|fDEbLh-pvRSB(ipw{-4j zhJ_*2je59WVVM7q{p4iUw>U1E_l>|1n{kq-8i5NH)C)cf$AW3}-RVZ+WH+wYt0E9m zM=nJ7NLZ`+Nzy02U%q2yUWX`HjT|dU4%F3C=T-MQ8twI{H~tolc_)12_w{IW${{~( z0lAb*eME=zhgv6oO^JqL5A&jwqfv0tTZXVsc{Y%`n_bbk7eqeXx)`WG@|L9sV$jOb zM;@ofVsO2;m_)^5Nedr&I5iFlYncD5h{F!*v;uF(!|*C~+KuATSCiZ(k0dY^Q3kTF zDG|&E-kXGd)KR6MO@w=jj~p15fKUVa6I0`$MSWD!s#yG9=_{w-$6#fRuN2k9;Qdni z#1HYh?~fHV+ZZ(AzPHpP8tbTgUB4y@{dL%HzY>K_+|Qs#6e3IfL^UQ7kD81V$Epa- zoz6b__XwP2AN(Tun#JskH<}dzFZxx@K8B-;`#Q^>;TZCn{pHpXFh1rlA8$vXj5@!j zWf8dF&R_nyMPk~1j^Bfk_(HwMnc7IK;JjeO&%y7F)E#$@hD{IZJoiWAu)w)bEDGnl`pX~vC`2vgJ~1^C18dkP=i|E@a{RrI zz%u6mak?6bPOSn&5zhHMf#Y-;-7VbLjjM}-^HJ(5W=F$(0d)vmH!75<2Vy_$f4=sf zzOl&LK|Rl(80_;Pw2-hXO66(^9$KoU2}vY(ij;uSj4L{%rIWkK{y{8~RGS8HvcJ&ilg01l)Y@E2Z?2WHuWs z@42pS;JlNt+ZRHytu z|0&-(1+zHrCnhGtas&VWY%&H>2mFrymA2~C8!g?0W7J>WRcyi+>a%r}lF)r0$J4|_ zT%_Ks<(~u?)zkMjJ`qNhV`a&cc;u1CmdSP8h5Dn&KOFCzcWX@JFq1lTn@MxGR0>ol!G1PQ7z~>3FSpjlBKxGjynGgeke&gOq#BEhFa70Fc`O!&a9!c& zt|iCk;+}C(YeXMDIs0+c>n@0j#~u1Z`*olnhx&iV>Ubm1gu+2olkRem+5cR;Li{79I>t{9=h|$E$AE%rB_^6N540ryAy zi`oHlaXC-hjY-6=?VM*nC8CDmFG)~6NsEr^hu_p(wERB9Iu3rV|2>j_S#f^-f1fA$=^ZGN7%)Jnmr`=$k;@XK)7omtP)TlaAJW{z}Vq z_!&4Z|*xL-cGj{&D>s z?zS0W9%H4&686)n-`{Z}1#hWy`(2U(8~PWf-cCUS-ih-p{+(SWX@%_g#|VaG5-dImw9Q zIa8Nh@2AxD9DKY9QPmu812^G2*EOxEB=T+oM_i`w`baYC(cF(Eq~LoIc@DOz z=rqJ%Z0S$?A6H`Wh!j+hqrU293eb`ID2){8RQrkkn-q*IAP;3fIpPDU|ISTCKDkL} z6H?*HedT}WHp3;8JiPRDr0SC25Sxx2oImak&OnT(uLP)N;CnNE-j8Nr4adjZaha&0 z-$QZ@btnW+SUu-54gMDS>3%=j<`5#cr zL>SlAN6RwM_<*mZoyx?-3FKi-&VpteK40r>EJ*SZ#r-T4aGfj9&Vm!4Pkm)J#vbJO zJC+Tr0lw0m{!0z|5&Q>dGiS?Js&;1K%|!Azj?lMR#Cb+F3o{#0k2y9IMf8Cz2xHEO z6MfG-FLveU#oaU=1=N-O8k2_4Gs){%wHZaM2U&)1MqU@{(N3qLA(Zn>MJo32b2$4Y zeSUMvq4~>s@dfJ|I-7B23;8(@H)CLTa!Af|93JO>cpt|<-{*ZP{QR`#etdiyM&2fO zjn6kLfj;-Q>1d^3y`V4yh8MYiKbrx!KJ=+K%|e@JW91NaRjug9-W-{YQ`}#!7_G0*e zK6OeuM)C7xK{4o-fH;L&}b7p2? zrEniHARB(%AGDS&fCKp-sX1__E->lvR=nf7^E`GdT>kpX2kUJp??oMWhg=*FB7c;= z)1TB8Pwc-9`(JZ^u`CB|`cVgZX$u;!p`MYx-SA8FgRlnNHeAZSxW*urDeZo0<{t}~-L#{TT-yjFWAJ9iJ zVGBm;1js7ZbJUsyNKvmG^gqY-gmt0U&i;K*TIM4C zH+@r;+n{uSoPf|=xc4PzVnQyS9pJfVNG>w@xw`r)7gz6b-8jx%AthhQx5~q6a)jNV z;IRAT(ll(t;6m01r*6X$uGb|Wx53)NU(QzKqK5Upr?+#F z+crS1mC*N0UUc`9SqNf%BE5#=LX|nTso6Ngy4J$J8JHU7C8d7p2(D)zbWjHFv#%RC zARQXaZLnREhD*$4Ik03i9NW2wLu@Lx`nt%Ok15QZVg37L3R<%N`^`87Y1u9kJ2?f@ zm=91BlZ+t`SchMojOV%Rx5y^A-)Da%E(yu2slV!$2p8s974IhHNy!MLZp+Ox8EVXxE-TywLo4Q*R3>3gJL~amx#q0>V?$4#NzB# z<`#5~Lr)ubsaPBjt8zCPqE^`wsEx9jOa+k>~lCZqHyR4&++vc&G z%&Xr7-QS*)7P<+{bd{jlT;JDv$=aAia>qR-OCu4QtTUZikbp!JFS%`-fO7tR>ezUE zWF7H9a2&v#_Y*uXY#{$W{&oyz)2IFZFVBx}JVllFYhAXd6s+Vv_>!kAaf!tf)?f1t z`Fi_#Ngtj=QreK4Ul0S`L*z?pC7^{8*OMjj=%T~*Wn=>W<2i8V);JuZp312{6zw{? zi$DD##pE75;<Lz{T zD%2CbxDbi^-#lcDUL?+xddTHr5qRn4A)3^!gygc0J2xDi>*%w;9)?GkJjD8QC|Z-# z-~U7yp0r~wf^#TTB0QyheJFk&^b}=Zp5v8R4`lAq_DWBg`*0(?16W7h$$X<-o|4gI zBev=@M}YOS;BTJt$)CQM*UwDL zzLoV~5B((i;#UQuX({Wyq4ceE=KXsTj7`)xeOC#_wNx(|GjSu1jPjBhs-Xy4%6fKn zC~A9n$%^nW6g?(~zgIYX6R7v93P(SF4$tI;Bd0le^-UrW&AM&}zi`}Y$=rZL5m>@{ z|0C9m=CfY-@x=x_f9@lLwdj98;v*^}g3-c*oN2>g+>7^-9ShdOypHRA%z7Ac-*cOF zk&$=E<@|3onoahR}bUMxW@`A(lF zEy55(`eyzu!kfu{GRJN)gQ@+bWa={1@Z9re-*UWpKpno_a-58%fA-J{oaA}1%6t{n z-_ws*y8_4U$nU%xglzhRzMHK_quD&ajt@pCd7-6Kg7Myue&GJh`wSl|-Afi=qPm}a zojVU|U+GIJo5MUN>iW;j!uWWeGb^T})xxo&ZZQoVdEQ*Y9N|r@zs1%}#$qjU?1oQ* zE!U-i8IzH^z*nrNPDV0)X9c#CVa;_btoLL%l+dphJOxWwXIWY_6^n+@uYM^Id%O9_ z)S=Uv^Fbed{tTSt{;6-bS%{xY4(q2GQ0u{S{IQvcZ%rR@n;BSFPrugkX>g<8SHEN$ zrm^1V+ba-XxBJTdm4Wyf&3fU>DH!<4S335d3b&TzpWh5bge~_S$}_N!=QFpm*%-5) z`{S~C=xR>?*&hD=WBR&2O~u7nALhDG!v{-uv58-WS1InYaNuHe{O2wy2NvNn8uU+o9uZ zH(B^+D8i`+37KevN4(x{H#klIbCY*N6wG@iza`5GW3$PRIckN;rPLi848dA3Uu5tQ z%%96XR6cd0d>=+#vci9S-^?5pcr@2t3>*}gZ0#<(*MNGy&+dnYq7B!X=!Zk$%6zeD ztL?BO+)bJ>-+jzX=9Ar_?vnTOr`2#Ie{qx1`$k~XeK*NZal#E=U+Yh!Q2otKV(yN{ zoB{6Ae~l9ys;JkGbA+u5_Y*tqF`0Qjv#iMrSl})`y=;)Y(_Mm30F%49%M-0Jc=*sw z3~suh4gatFpeuIpx^ybsFg?~?61KR)o$JH*Mq^+^{dB>99tg2@m#U@X@biuvx&7m? zir0O;ZvZ}MaD37Se}L?nvm7m1x7m@g9Db}5*0)}UcR^Mr7|6_S1^}t%2cdt%RIUfQ*nsnH+b+=q`SI` z)`ZCzK>bA~$F&pl=^9mxM~~sI@hdR$#CcY7wR%kbsm3T7l`%6uClv$I{N;0m1aw4qQHW>_$$-V=cTJ0 zr4GCQj&bt55B1!m$oG0V3t#Dze(%G4w>kb|yq7tx+|M80Mx8eM;Z~|sFrD?QovxGM z=jSfk4%4uR`-g2GCqc#0OH5KHV#9uNR;EwHe~Y+oHJgCR?5pM1j7PHqFEMHsfUwry zGS(viKgmm3VeW@*{QZU@K3EmTeTbbG{u$BNJIw>d?%s0xq#L5*`F-6Oxbpu#zaEXF z3%q5g(kPfQ7v<2q0Gt;~=lzQc2 zUtdhq#{uALg%3JJ;$73t|%a8xi=SYrH>!ZWbnt6x5%JjdN zavwZ*5PFlVHF8&PY`0`C+0WCQBN50eOC4Bj;21Ya$=7KM#5D#w={?K99J39 z!vrq=>{n)`DMoUivOSx;PVN^1zh*0*4Ca2YXNIC@iH8Kg$x`I;`76$+DLPZpZo z;YnY>xuKgC`ktQhgS^mq>c<~2B}Q+fmjtg!R#>s0+iUwK#qT%d^IS_*6pmyL%C&e! zNwPQf*YS!i%~+@D7^k?hjqhvY7{!9FUgFa@QQ=O#xaPQIh3<9sy%XXT$GM-mN}g$7 z?w9&~icl>2Nqs?Hn8L@Nea^=bie>Cq%-pm>(d&noyn7z3u<<0fYwtP5|8&8Y8%`^d zcur_jctUYb-%ZYUIjLAT%uQ~8I;}8z&3wmsXB3Y!U1eO_IYl-7O?Q{)!mHXz?hegE zC3C`~a<`#Kf0RtzvK2auN6Gha=KhVKe)?h#CaxPL%R1#Cv;8P}`+W)|Brs=wSNS%0^zfIu?TcX8hrG;J3s9TsBsqzbF=wxr99M6KoR(e^-b)pp)H7s< zw7?wdBi>DBZVmhILGM)XyCePVXPRN{Jod-GHbv(UZy7qO3I6-$CA!ZV!<_ZZp_h~~ zpMLl6p^Z`b(Oa}@8X+goTTcB_!a8qnS=C+%qfW4Yp8ZFWMefdzNxu~hms$UO^OfBz`*{d{DL;Xg$eD<6p|QAVwr zk5o4_#pBcLs|QdgHY%qjd( zt62NQRdSU=6;GHaTl-6$x+5p~vd{~o9qIE(d8BZqAEeRmCyG;LocB zY$TC;{SBXNmc8^VG?$l`?4<8Ub5RShlf3ih zBK5YCn_@1V^K9kO3v>CerJam#X(3k^+R4%Z780<*PHq-hNVT4wn69yqdB<#}#MeUl zF0+;2t-H~SYAc5>S%~xQA<}=fmAvZiDC)bdrK*X&#Ov9Ljgr0mdTT5F&)Ugj69<`J zW+$cB9OO}zoeY7aY=3Siss|jUuHH^+jfRQcWP91=Jxq=`*~^6&j&f;;y|iEGDD%48 z%TgsrX=P$BhOrJ(8D}pky&Pp+IlnG(l!>?O#boR->F4VpTKU7|-XmM_{4_$k|FM;~ z(?&`|J3H|_?IedR6|(BPnRr%Ni>bM}lrOdx_o?RMd(B$TN1IEbsY3csHy7jP3VB{- zE-T(!^A=f1+dD&KZ;Reyn=?!T{`Qf5mczuqOJBJ#Wtddd^p)k!tt5V9Us2Vz65BHa z#qpN4WSkr5t zc9PL^EhTt-C$YJch*g74#QrutpF2&&gC0qzqOeAI>L$d4&e zFy-U_@QK1DZBq$jZ}GQ}v1HW6V2iG?bUGXh#}7t4)5Iax$XKlZi@}*#BRN(Wi}+w8 zQLl}~ua-vQ+&&h{3k_w&*htJ$?Is^qM&S79Zp@;Ifc`5Bsci_uXhV~I%IfG4J= za(H<#Lb{vE71&5o^VFG|9}(M&AHUGL^HiriZ3ftjLD_TMhYCpNS3& zG$pZbCf*&=l;TN6_-)-q{(d=tozeXbSe?BuvROP$zb}Z9uAs>|TVRubcYQhUp@T$4|e!U%S zBAQDd=X^}Pp(1m>>_$>*bNQEf8LbmqNLa~L#I$H3k9@9TjHjv`ZF3Dhb5!N6>oqj# ztx65lRg9d_Tr7HDepuo2f`(?KOIcnn_Z^b^Q3$OmO`=j;?Jc zE4y8X<11ycS$G{WYm{Y~QYq@MD9e+PrRcr5vCKSs9q*bdOHNfOobr`r+MpXqJFLvl z?+v)xDvOf#O+;lWi^qtYs4`O)t!B5792!^1wmVS}I9lZ4qYt{)c|A4kB&!KdehSgoP?fGSulXBAx!hIp#1P zYbsH@dl(zv{lVHkhv3uu58~exL8adxlqMd+C#41)eQ_9TZ#2Mge+5nqRhGve?_m4g zM$-Fn1!^xhlIFS<*fhS8+-_Nkwl0n2lLLSLLP@InRHDxvC3!uy0`sRUiI;07x_K$d zx0EAfsQf@}@nJ+~e@B<3BS`oDj_AKfaLDc(v>ndiO2&8O%s!2Pg73`7K8<@R-%ycN z0o&O>(6e_1I#hp$mVPDn=zPcatSaQ`{ltfhmB>Bu1ACIIux02EY+v&L=dOK&^6~rd zTKx^n10LX%)>i~MKE&kt-!Od3eHey+#ou$4=sVym@>D8OdFBh0uT^5d#}_Q!SOvXH zUtk=1g@s_*sOORfnN34 z)$%+#S$}3e?Rh9&_>3v-F2LE~6MR&!;QaAVu#dZn!3}k2NO=f{$)C`^_5n=mKVnbQ zN3ga2i0FaUSaRbt-mQ6r0c$@)r?whvT|Z%SW)1#3_Zr>%JcY^r*GTVLgC+xBqr#{R z-P9iAhhaIqXFW!%Gc{Ok^$ZG?8mJf5;6-H(zKy7XR%I;`+SQ-hvn-D**>;0Yd0dyPB4pWsf{H>k*Xf{RY?G3wE6 z{Mh*)I&Hs&&i?Q5>Fq7F(t8EHv@%3%y~4T7Qk;MP3MW*{(A3}+4)4B>b8lYZ^Wf`f zIQ|-SLD!*i?Hvf1<$3=d4DOa8_~AS33NFLopcd(8r#aXp?Sn#qGIVaz< zhEa-`@DFJFjF0bCN3Cor{)N_I(z)xHZNXy4;S#L=P>zjjFXP_xGB_V9!M?}kIHr3E z{ZHK_)2sv|Rd3>=+BzKo@E z3zOenz)OQ$*!t@%iaOpxw%S?be7i|@&>3{ObQ7xwoQBt~H}KZHjH1Zb7}5SR7COH{ zwtfjN^?QqZp(W(AyoH~}WrWthMQh~}UejBwDZGTRBX4o|;zg7k{|}F5T!L}^8`ipc zy&lyl@jpTC$Rl+AcN`T7k8ri~ag5#l0J8=i$0cu$@4v^H!~6iBLyo~d=sqU4D~9!o zNAP`84D_$YqDIANd;TF@dmn+V)DY8&1*lQGkqVvx&4IGmAza$exb+1y+~jF3$2>(#s03pp)zh4&bj}B!h9DB zXa9!XlO3op`AN_74xIV#2XcDsU_bmP`t~b8FZ*9)W)vXp$xrwn zk>5Q-)|f14+7q|QhhpR*8PIluXO0H`VEJV85pkr8?&BgqF0*+ z3}-I(%JdhQ{~#V-Z(cyPCJukC8}Mdh7&ciop!_KJEUJGH+b9fb2@RNcB^-5?4Hy;A zy1!Zj?)h!NA^QewJF*@fhke5s$K}v;|BA>a%kiq)H^gpQ0*x8Jv1!&S9J>4qqkF8x zjO5=~nzjPl2Q|R6awXoXHo#`vYMh(YfZL5%!2H>7oM~8sQ+f^X@mq}S;s)6IFToVf z{WqpA!q^~QPyS-OiT#6-ISVmkz(1&bT>#yTzxWn4A3i1jFznu3>TJH?d)Z8E`Be|E z&NETu`UOFwSa)9W9$7s+aWwrMTBmy;bL4x(E_TO>?jNvJ*#mR`yvI~mH>h^3!>pwq zc)srgMp(F_(~^fcdTcZT20di9x)X|;KSJ9nqfq~}8kNtT@o_*kKD>9v$vM?fNpON& z{(G2TbB6EjcbI47jN$X%V~Fc09MSoRU8*BdvyqRVM=mCx$NHNCxfY*MYeAp??oaG- zj6|2NpD}aR2n>=>sM<6P4yQjsHaMcgi_b_4bwvNSpRl6Zp82z{@SnRK{QX|y_EbAq zO?!#gM{J<;x*A~%d!e{vHF~Y?iO|Q@FiY)$R@d%AP0X+``7YiYnPAWKC+N`B0>M#_ zu}`-SDHgb-@(>F>nUiJu2-<_pU^)FEdRG|1^37ee-DQZ(+`D-E zR3G+v_t0juAsYR?ixFOWXl`~NPh0C_R`ES78n1))Ywkl6x;WSC0p{J*K}}pG9{$rp zrfww;uF%AhCRNl{Xkxf`B_bPj#W>5esQr6R@#F!$+JBuDS?^;}XV_9qd8-Q;(fTWd_KJcJ;g-YhwX&L0b?0GdKWU^8_AsMI}v1J zB1Z#vVQ8s|3_Z6C+0RU5W&TdoFW{bh@osdwVJtJMc0*^ct|Xt@ft6kL#Hq(lXdTg& zYX05b(YlgycqdLeXh`6lT$JzEkkA2nm@-*I2Hwkq#*ePjbY&iHscVS(vhA3%tE-&X z*^Zc)uF|t3^Xvl+zTuoOA|CA3!Ukynfmrov>hD35c+L_Q*-bWT->b|bBcI*xm zU)GgzOLn8STvzIS_ds)wuKdg1gZNoy%(>=Xt=vpjXz$0KH)i4zaR7r8&E$t>5q4Oa z$>=Rbc-h`ecD&k;=GRPRb5IdRJDACdrw3vC(^P6L4&mo$Q%QL5Dg8%x#hgZMhlMD#Ka zA)=*;G}AwfI8$Q@@Hm8uea5nG`(b!k8%s|d#$^K&acy}7LF-H;A>=U5YMP2?$|0N! zFqP~vhoO{eBF6KMVE7Od+4uDb=3g=vMf?#gT*R}%&!booZ7RDBjv}z9nG8O17!%f- z$@+(Cq$KN^TaxUN)-hDEY zIT$b7r`(^pLu5oQBFZA7)EYxEYI+jG^G%p* zcanNXQ}KIt5_6B5NY0c~I6TrsI@F!SM~?rhMkjIbv9YLbJc$-{#xiZuDJ*6!rM~$o z^oui=WooCZ$I!Y?Ln>X4|Nz zkN0Uv|Mti5it}{&>|@yAs3HB97vpWXmPBivz|;F$VzcrD6g#w-YjzT+{q$we{j(Uf zNMCA7&!KY%ed?0VL+69OJQ#Ta4R-os+4mxjUDcC&BQK)!X(Nf%y@0kR#$q3H0k*77 zmHAzS;UpdTq<$W@&vfKk(RrjV(GgpoxfXxXmcps$5#5-dgGCo`cZ0TMEl0xGPc#xq$6vhF2W>HM+UaNNZx>s9NT?? zdt}zWc3i}QgF52Jefn)r9cdSR32&>kWxMtz?q#%PL;p+Y$H#wr^8(i9Xo-dSMGS(L zgzdS2mczAVNX2=8>q~(11w8+&DT^I0qVIT3nPPJZr=Drb%P}SR$LpCm^Ai3()RMgZ zCAg)~7ImExSf*=BT2Tqk=xNKEI-XWaqp68!f@M-r7UBQQuuG6FBNCZi*Zn_R~GliIQ_<1&ux@%vYoF(X(<){VFV+qXK> zq~kS=}LS8%6Fhx)lI_!q7teTQDfSYsXObomN~nCgg5#8u=q(v>+= zucGa8T?tup6}La>NY(ah$X=%-ze=v*^Z*@sYIhw+?rO_ryK9(xMOzF!uA=6uwoD1U zj%2<+W&5w;nWeVmPPmTKVcPPgO(|6SXv;#UQugDuzGz6`DRX>%PeBX3Y!&X<>C%19k~)1n+NFX@Q(*fO-}s7vmADc%gwl{<-L zFlufgce5_Ti#7Eg8CMXUXU;sMD>(GpT&D3Hxp0BGTs(CZZ=aaU<3ra_5o|8%itG3? z+CtJ>UdQv<7UFs9D$+GM5B<9WA6)}k``{|7F6xU%_*LAxp)aGHuR(2@zGNA)_Qd(N zu(kv(IsaV^zYdRI`qE`eDc0xf%gaC4VX<9bQfo?);i@k|!KEm7(U*?X%P{evp2W{9 z!;N$1@{Bd8BbDazNv#|%tdZ}HFGHtQ>=8tjqx6!QoSjsT5Blb!l6(XGL(QdK%ndB% z>q%C-0d3a$)L3iSyxmAPDBpmOuMu_IH&AG7BtL(YVT-<*-2QR{x6;kT)b=K92bhWO zg`2qFgf-sC8?ZDpl9p3%!uo`vG#h*qyJ`$2rTZ zt0&Jp-hpPJo=pCB2aQLwSMuQw?&;}CY@a)Dyr(O>EAL>gx}JPKRDlf_bS3Fy1@@2B zBR{PYR-N_a{F*A5x6_fjy|Wa_n3S4JxJ}Re@Ij}l%y<;W5aoippTLELvW1pJb#gCIZa{TmN zY>eVM^1TW@`8nvZ|1Q>R>BzI1Dm?em5#`=h81_V4{*R-pj*F`6x^#C<(lJZ}HadG* z*pJ=a@z@=YB6ce(HU`*=7}$w{B8uIFbV!#-2;Y9czwU49&b{ZJv(JvT)^<7gm9F*l zK-ZLS6tt25H~9y-^Z1mk|3NivJdiOZg~lYiW0)d^GGg2j--j!}Q+a*V{UH7I?x_68 zpL@C^`cw+@zTGkZ!w=fS|KG4Ah3vn(p=-BPs$%=Fz%rG#Z{+ovm`WLJe-4P!$SK$z z9XJ;@C(<3Iv8hy9;EsMKskEq{2h2L9Qqma@C@-bZ6rSHkTT)4h? zzx%qwVMrS5=el8kSsI-`$oCzcMz7hv+v(EC`5!mzeVI!s2d7~WK#4iH<%`6k(j?Pn4U$eN4Vqts!S?<&inhbOnQ9Q z9qUpv=nns1nk179*-!FplR+61Jdis-gRXV;K=q!V)Rpgd$eW+Ebhii2RHl<$-xIGn zZ#VXb2g(MfQ@Fn;>P<2zf&DPynG8Cx#shB#XVOxBUX6NLG_TMdtGWZ!43BbtQeKlER!97#dGRtdO#Dez&i>GJ$t18Je^!%8 zagW)5&dQ|z6J_vn&!U)GKm4~XgZyj!P&PJ;s@ush@>4ctq{*|@@85)GQHyte zXc3e{+v61Y9h1j;e+tZbnoDh6mGIe+PeZ#auq7yuW)D`Nc49sSWXdu0bRPBR@58Zx zv^^DYyk1DVZgY)u^e?(DP~zp@LW)_agy}lYvu;$vyG=gz3{|3qB$r}blsGatm)D~b z$42K+!)hhWO0#KYG5?=sE}i_P#MZEE5-wM=zm!cUa+FxTH;b}Nl-&0=lV+zWarbm4 z1-wwgXmtjyY*gUJi=R}StmHnY>C{oC!urN^$_P>6SN{yUa8re4ML+4pbrptvNT(>Z z8p80OG{IdB<*{_m^{KJ%TpIN+R3S5g*Gs4xkGiJOvT!x#Af5UfYA`4(ji!qH@rfWntwcM8B#pA_o;J^&w+QYf=H01KmkP<8h}%$l1* z4<82NzGDjgTpNh!kW~8jpCE)>OQAL`gW!4d2Pxx&xaO8ZW@m!%bMO!9H6;j%=ThlF zaUcd7r_r!QfvBF8Mt2JW@RRMr$@u|z>61qJby|#Cokl~~XtCy78g)3VMfmr0a&QQM za&wf7f6}NpE%V8K zl987d*Moji$axJiw*9090UFjb{YmDh)cDlyCkd{r(Lg7GR$=q= zOd7`jqnw&aqtB?(wwVRS+%<^UmqkvO)L37dMH$h2z7N@Cq|)I1v22Qu)WF9jo6eYM zvGiybDHdu`(JG7HHED74YZl#^69BixS#&Ek0IO`X=sM2>Kc4reV*?S)_Z#XMgr)Z~ zD8(iSLm&Pm8?zvc&q^nozk&Er!}D@w5FA&g)9S^1j7Xz7tAem=bsgE~nbEwjQCL!CijH^W?_EX~Qvl7ajtw89S zQY!ARMC-L>G`~QB3ngW=HAI17Mitbhs}fm*Dyd7c0&N_tXzWBKj!&tgfmTXfuBxK* zY)^$Fswu!%iB2D?X~8Nb*7vHWbHkO~zpREz*q*IY)==?#CG4J6(dRxYYzpMhN2zcm z=r4iyans;%ei^;Kug0o>%V-$ezddE8beq@Jfz_pS%vFOU5hY~I&->kx66%+xMqYC< zeVM0bo_sOIzEtDs_age#P7Nb|4rdOkk#V+=W(`uqex$*j{ROnyRf{cF1vK4Mi!aXk^e#+`UE%puJWGqT!+Fd{(n6}tBhwJJOHXoH z?&#jPlYqbc`<62S&EsmBK(&hIW)>AB`&1|oW zWrg(1ScB)!3h4>kslF?VC`YNm`til2*rWkv6w#w>4c1NOdGlR^c|(4YQztE)%YTu< zDJ|wq`bGQA0{FfPY5dLrSOyi+JXIhf9_Q1Spg@kx^JsEJAjZweqw>Rn5dWJ?xoZNk zd2$YUFARixXf~z(48#xfY}yF6=i9Sr{M;bCn43-8N&_+BXEwPE41#u04mS`ALUjvX zCsBdi2P>az&jFa@R7k62fk@`@+!`2&v!@EF;Bx@}>Gg|(Cj_uA-7ngkp~Wmo5p6%G z#ewbCNveif}R(%@zg*Bbaf#to~WfyTU_b*dm0+mrY2D`?zkEf)8vB#YU6 zpKYt?*i9{rdRCG7DlPnct4S->BJ@Hv^-j>Bv&nB7H;U);lN#Dssz&bE8m=p-5ytB* zi|viy%o_UbtH#11zbPz2jWy4H(~3W8*me6&Q>JL(f0k=TZ!~COQcD(UEe?nA`TVpf zjHn@#?OF_Psv(;~p0``8XX?)d<0OsJ&4 ztpc#;pGv}E-haPU(8*0azOTzEg!kp~T!XRS6@YEVW#k?f0EvD%Ih6(A)uM7*FAc;g zpE8n;=6QFooVGOvplVD7eYW6v(Y=!UM+L&MRTbIz1R~6@nvSjxL{4NC?PdR<1-*)Kby}H&EMn zEhet0rdJ`_)JT&uY>7^Ix*&b?Y;N z?{lsOe_WcVnD>{G`X(B2Q4O6!4|ZY=4Bj@AQJMxG-s)C(^KBiRh_%G7O3{s=#XMI?( z|F+G@0EVV&#{C;$C*Qy8AOqazacMF&z(hNqABXjklCOr?T_3JIU*8PW2ldpT-48u1 z{K)piULPZ`^6{`9qJ`{tjL^fj95t5wYk-__e0_`)>Sn9K*Bk@9{-j1-PeWX1KXB?( z19&}AVb3l8pI{Z{-!(w}JQWhm4bfYoLhS%UwA-V?`DKQ1%2UC_&yahXv40zE2#d{X z1YR~o+xIHGNHt{54;8*VG5jBf9HUzr;hQtB8#g0Nk5ePd#|Rt7^ZvTZ2x4P3B3~Kd z7~3JE1|y7?@q7q3M%yqItj`)@_Zbyl`52=z)DzAwS>*ZE6Z7*jsoMol%=nf?YdNpH zhyB&QPrRX;pG~h8c_T@bL&f&q@ZcJ~MS~YI9kWSs#|ul(W>c4)UWl>DCWE0~aDSUk z53YG}|K%JC2=PKO`)LDidEr1X?_2FT?>{q_{ypS{=(s%U;>PuX8#$yH_s z#r|F~W9pXb^6B6XKe+wMr&Pw$St<)?<$YhgT9Hq~l6|pqMIL36AHI#qqdtayNVuCz z%ZB^09!D-+<~qYD`#ieG^@TvMTynLM!SH1+wd6X$tDAXro9n8p{w<(uVV>x%;Qw35 z*C))UIISl8Vb>I1yb)vEO_!wy2O=FZbbog@xoZ#|Oh( z{i5s^KG+;tNLze-aALzRdiT&9Mjs04=4fx8<3;2v@PXajBDyl!2YY;rsO3i=w95WP zJ>ZMLW54J!AH9zh(Mrz4(~lySe_*ViLoqclb~ArSG4t{`zZYLbBU*T)#JZT|hq&%~ zx|rhhd|(<}LO%xipnXj-MI`$mGLbPrU3?LDu$a2u^}+a)B_!!(eX(-OTYu%%preoa>EF?Fwkp25(GylTRO4dgIuU0uu84OA9HW zFGoGlzbv2fCUTu3KZo>_UGW*Y)M2SBa^L0BUTasx^L#w-!mkIgKY3n?;j&zM+DVF$ zuX1TA*BOR=&LQDDDgNr`)9(MI7>e75lt8~N4lzg&W!+AQ}LTWQwf`45LXhOA^ z`6C5XctnhOck{_$lNgy#3g|u8M;^;cxDPAm-ONhKm-FoAvr5S8y(_kkF6Dliu6T8g z{Wn)v+;l6Yt|C_iYs)Bkvk#W8uc84}oHs72q=$Np75-dJ*<%#&?DU)RUMjFY@;4PS zhP&?+#tkOPv1`?DYIIhh?qLnhsF7oIb1gYV$c0@zA~jUXU|RFnop=?%%H_qYqy239g};b9sK=uA%9fUW}Fe&3t+<+&cc7vMjtX zA@DaXa`i&EYb~|se0~2@zp3f2C)V$(rFyn+x~y92*UB4&J@mb!j=ZaQ!x+g5GtMBI$G`oy?PP{j8Guev@EUbtOqxOAtGh z-=8Bvj}BE-DU{&-;Yu18Ai>+~6;xm(!MCs~T9z!qi|Q)6(Mk%NZB?{ZA%***YSw}A zK!+cHNPW%&&Z;^(yUzoP7WG7*-0}8W9c^SR`L%t2sKLzxf7>?Fvi+{;e5#glN^UTp zT}!U{uDJG`p9|L~TeSO4qF}~CXZ)s9uf^E!S4-tu37)fG7XO6nk8XeH>{u~Gix|T- zSd4}2-({4EaP3Adwb>~__>4O4TP%T#bv=b_li>20dYbPgfz!=8+Uq94yL0svyp`{x ze*^V$mZ0)@0~MbZLt9x-v(||rkT#Mp<3QwIjA3iR-~ZG|U1G#&<@A>X`C@dM`j^hh zB@oM+=rGqq#gG5efWu-O+t);&4J5Ga&`eR`Vz@*!)5O1G&iCkH0>9p)(_@YVUvG9Z zIdlECV4WWR?i8aWRu3EbI?Y`elU2`k!u$q$^;?2l`VEv@D#5|$jTCm)hcWTZbTr%t zbEoOyfA!imf19a5!Px!VdPq0$L4Q|0)J1!vM@K!3IO@%PSM=cD*BkrRv){rP@l*AB zSk}z-?>BmAGVq2ZSRcvfd49U+BRJLzKi2D`TfG-tzu2%YZl`Ms)lJV61yDxJXUwy&cF8^Kc^-!o;}lt z)f+Ktrt0J8E-{K<>7#NA&(mf4C>bEe-Bt#uOcvvV!T|d&i_!B4`>9F^?rkx^W1g>@ zKN!I1vlw%GHZHQlWBIv>lv3{BuyFVIY;Yh}1>5Q=E zl^BmajWFt#7{L)n2=67v@_R-Ii4r5j(il-CSdU5r?JN zSgQ|xuE$RtXn>jsDdR#6Fo*ZS?)>}BS0vE(FvNg!5|q6*#5`Ai|BxYTsY!8gfgx7! zW}HijAx281sB-7~IL~;Bu0{wrE5V5KM%Xh;f+iDV>@<|Xq_;6{O_t!#GGl}=u4199 z0c2U8_{{Uu*2D`_V)fyB$`c>9=;QfO7py32rdV?UP7G(f{5}_iFVcg^NWgs;^w4gX z3lb~zP#UB{#yDg6aNIZLxG~b&sc<3H7$zT;n0?L|Ykw+nRcQjf;VMj?VuA~MRTyq> z0vn|Yu0Kq${Jat!vrW*sR>?eEQ(O#DqTNhWNIBm(D%ljNtyS1}(i9)3t6=1AiWtsI zT3ean*FGh5Dl@Dt<2unX1DKBSK&OWW_-M=ZBUeNG?c&D$L<~{e%?&s18esn)H{^5t zFfYXwPn!*(*d&58kN+SS5%<63=XF7dIbMcHtZ`voS_8bDB7n@-5Jr_QnBUD1hG8y9 zD=>g^l?$Fs;dtYSGu|FC#0?`CT+}l{<#uQ0eH&q$$_c0E7@{%S2}ZvS@j~r{e*8Q> zA8NDhHe?`S6negP7lWE zG?`%C7xt6uOmOYB4?a#XL4S=e^TdoXEXo(E9VWOt%Lnsrm~bx42Q$M=al+XLRf(op z%6{^xfu=Zg)f>jkOcCwk1K#m*{fsxvXP7}P^1-g_X7F6kcOzkSvO#~DX*xyl&pZ%EL3fC>Kl%Ip8731Tj?y|6ch&1os_-!#E&fh+Vy zrqDiT`*Fk+7$(K|JX7xBCdE?^Gf2E#G4_cmp01Q)S${JWxJi+Akgxlu1g9+deufCJ zBIeM24|3>^+@O%&)iJb;S66#+d2j#QnLAvHKQtdt6Kq zHoy_hiN<)}-4T5|nQ%?l5rcN~Jl*UB?+_F0+v|k3{P{PXBOLCSAeK3aR?+6zuvmd^ zW{h$)Q6Q_v9O^1Lmaa0#to~fjYiW+zdlgtd*8+VwzkTYd1!9@wXL`{BlWXPJ;bMul zo8)-cXo0Sb?~C1HfqnuxL>U&i+Me+k11%v<@<)%hmbk&V#CA_CFm|XvT1qUjhjEJ) zJ1udwQHHLIELlU6@ri|&=yhHOzgkP!8TsSR5-T{2WUkpdD~_RMSlrVJnP2?y?-46( z)swNVt2Lf%^TWV$E5z9Pq5l^v^y%UUmp;}ozQ;JsN!IY!$>6=j8r6(5+h%ElZA<;2 z`C^UXwZ1qRYYjEm{SVKy#*VeV*yL)1Jobwx##_Y9}G|C4Tt?aNh(Ffs1c6e6o1N~jLcyH^AuVPzV zYT=8kCv33rxi1zjv_UHmKlI|)Da?Hv8pcTIcpis98^kS@q2j0wViIMj4YEPJmp?jB zw8n+SeE-hY$jV_(pS?8#xBKIywKY0t`=iSvD_&Fnh#h2w-k1C_;jbl(7{@vNoF(V7 z`FTFF#EFY?1paG@eedLG`ecdHK?=O;VhR5%3QYKFfo@ym_|M-8iBdV&J*;q!TUk8j)= z8Ip``(I!NO38uDi;O8E1X^S~i{P2&REjCp9!ot}W2K?OeTx{`W6x*XMwp=6h#l{7; zShwE~+G1NI9rr~?OFJBHvSr)TW2!@?Uw=Q<$BjN_9?2l)PCoKT)U z*SbA1x|;*iS93lg#{sKUp70&!fJ=DcsTermo4CSG;Ik|CaGb=Ha3peK~fU;V~-z7v5?7${~x@P#8P zCVRo$!x3f=ypRh={L_c=tlu55XR$Ya&URpqHqXaI2iC0jhGL`xijR4-E`S3jn)yI4 z-<~=5-f)ewXC5cp(Mk3=#rX%-2z#{b=8OCR_VD9;OZ%SoNK9qi<##*WX!J$eG&@`$ z=m*7HJH!Y2Ax>wH9lQ?RFWN(Lgva}qJ+}GzV)tWvw7cPhC$H_1bBOa3T^vwv%J}v` z2P|3699CZklnwR8vb_!{$n!ybv;%H?alYb)10w3YF~P?XJ)ZjDrGq1W?({}uOGl8G zH|twFqJeRzsch@^O!7w92}k&|T^H?kM09I@K9)|*Q})6uA=|($Uif~G$7hTe9{D=K zG0+Qc;ZATe<~Xy#36BnXVwtHkjFg^u<=~9?`yL#BJ7eWC#$()d!qUDTSRix8Gjk7Y zdFljphC6mJUs!s?9XYR^5Hr^u2Rk^kcBwmbDNb0$xR?>$ok4!?xNhPC1#@|4UUP>1 zRyPFncSg%`ZWwaU8Bs2b?;Gk2Ww9%Qo;YLwNmm$*bcXdISLAJT!CjRrnl`#%tke~k zCOJdR_{EHu&X_b=iZQKS;2tYwAKC?nT1ZiH-Ua4uq`2rQz=Tu@Qj7(R!D9a_!UZ=t zt{D{Qf~&mmTz}z=r5v9ck9Nk~c*Ym=@nV^j`?fk^{SOJuMmXc{MF||AI^zlZxjzOv zL*GP#kN2JNi~ZeVIHT8c-VYTn+&e@9S6>&r-7RKZfD0Npe!REI1=~4Z^x5eGPdD~| zJza3`ya;36T~M+>gk<(fq8SfuoZ*65?qbH(xgdb!%C8*-sApb)xV-@1=8CX1Sb$ml zyXGj~8?_=l*eyV+mk1{zL>E0VI`rQ7^PLo+9sAiIMMC_n z5M#`J0XB*xDAx(Gg7YeiKl1l?OK`Ni5N0nW=$|Ek@nH$vXA2-T;J9Ly00(AE5w}Kw z+^CTV-(k{MQAM*If}kO@IxI*Q7B#-nFhcoFG61#~0_` z2@uoO6))%Ud4;Z+kiyr&`J^7X0t{)#{z0Jtqd8vr@{f?Y2NEp5CWL(m$17KbSmh{% zzeogGv;-FRCmDPxlV8U^`xfts@aNdH)cJB%ibC<;^V!p*3ekLwUM9A$eLT7$% z^LmO9{!EOA3idfUF4uX85W^hlUu#9MV!!^8lgy&vjEIKWM0UU$roW0=dUsc@p~#UCXN$hZm9^RCSs`WiLi`gnx(ZOEO^Af-OShULJWf* zB8X;+@%y6??fIA(EyM+$TfN!u%}Ej?YLEyfJ`&8#7NWDi1Uu&o8Sf}Th(?G+{(NM! z03yy|Y$73caqi*gB_Yb!F!$t*02lX4a6N{!;W_Bw~!Y6e33voEVS4;JgrC zOQnq85~5WB$CF)ztP$u6r?x^2PjrP)CB!nux%F}v;?FeB-`x?QHRE7E4iI27<9OS~ z2=LID@oOOhXEoND%fU#K$-XM5t~0%xRukqghX(o6Hp}j|y?RnsMhm z-;Blykj!yV#4!Qp7@1=KycF|WnEapv$#6<~qX9P=Fn7_-Y9!GoL;SYZlz zv@?osnWBQn>QaOm1`KzCiP#M16P!@~+Z4-oIN|F>Gpu{;fJcK&v4QuLGaO$m?#Fxa zB2)b6?0~<8rWknM0lhky!MBYAzKu15#eLrEgl0%iut%r0W*F*ikC+=~n9Kgn$4%Cd zz4wR9Gxjf^`D2lv4dxzl#$PK-+%acct+s>*+wky_mYD4$!_UR+mn3q2snH4*N-3VR zzcn>TiuGNr;WmNe-XLq{a!EiBt#EiaHQ!}qrsDdVg$nDf7rzgeSn6X&ybSi^*m zLrraPr%{Z{eQYo&hU0er{{tgAK8~}2QHdBcui9WI=hY@|utC-<5q?gwfjx14EY*gw zxFT$AXN#2+#W>&F7N^gN(XYk^_ujKzpKi;(Ca+iatL|^%ct6+{?K$7kBHR|yrEF*O zY%!Sg8#`{>!d}UIt(&%Zb65aJ)sEP)hvWXi?EkbBpv=*cv7rL& zJMMs{egZg!IwJD{&*}4yNE^$0h1>}vjfFVe(+Qn+3NZYb6Ix4o9#7)ABNHIwn-lsz z7vP_@ydTdK!l8s?<7q?G&z}d(iRx>&8y2%c=o=Pz1 zo*mB#3Dj-v5Hmu8W9-M)bAIH?9b0s;lcHCaEhZO8xISx(@wRLOhuY!K7BT$!nDvY8 ztHcg&St86VwuAR#5%l$)(1!PkMSOpIMv9P_>BKrQLX6{meKqe%rV2nHB{pt#;C={}9EUsbdb31dZwE~K#}WgFI^e326`Yx;@{i6I9~-@JG0qnI&v@a+ zVOzY+^TKXlj&s;=_UvYdW)C60Y_!6v&O)63YlYZ{0$3$jLCWh|ubnkI4i}utEl8v95bFN|H{f|+A& zp%A#>af1!^y>Y?)7@nVV1t=J2i^$0WIHcHO%VoBGeeE!EEZe^8cCel*L?`~ghdj5# zmRVqCrY$Nqm0+k z>?RvH>N()OuPv6Yv&Y)qw(!(>;6ZB#d|&B-ewQ3DuF@S}OC8Yvv^%8t9FS$exO@vo zj6CelI&+T9y<mXXFL3Y z@9}^4d18n?PM@~Jh}j&se6v6x$Lj}wS+I?_Va}ulT+M88NMnI-2{wpqZGp!lZL#l@ z9j3P9acFCgS*sk-_M;ub*p8e`G{@ma8$_p>BbVn*#0qn`&bGyW8_e;5({U%L zip=p`>jbhfM@Iu^cy=|%j5*HO@YxKHr#WM4lo_@(IRU$EU>D3j-~wJN>@W7=y`g}8 z!s~Obu(2)M(r7DueI!8iTT8^n3Q%>+60Oi>_UKYCfg8t`683F> z-?YcQF;cwcJ#IMr)=}fFF>tt)b&{+QIzft%@fK)lD8_7=1(x%kHMQ6r25LS|H^-qf zyvK!GVL$ugZwFZ6>PsoK3M)(xW$st5B|JHI=k&@F4LiB^P;ZIO!BXt+WQq6#Qr53B zLmlVBZ;dl!e6ARt?2FX$Q8&{L6GvL>_N3XN@TGQWeB`8?%ypzkZs&DMDRZu1I9s46$;qVgTFB$M^>&N$-u zxNSO3xdSE~S+3hT!V%|(uhbPaaO}S(Ocxhuhn*g6bZyy&FZ3au!BgIAC$!Ps>Ft1f zzt-!fws(NeY>loG^36IAp4TtBtk-@1WrxR~HtI%jY`*l&THSy!-V3A~bfb>i zA+qBZT}6N$l)E?STK2X>&y(A9PucDr^x3Lg(Ax>7gO2JZa1LVR$m6ueo zWo*~t9g}rOa;;#ne5>xzQEPnW>mJt48XF#N)9vSZ5&3Y3uC0qbbegw1+_u9Y&v!Zx z&h0FYeyua=WXHLqce=yPwrExHTK6H@7OT&`(_QSz_>}ghw3~4he=nJlqPsWyZ|3CU zVT~5f*L8N=tdUuAUDvz2HSQ$e(zRLaiS!6N*1qt>jz!kA_pc|8b+Dz#3g-7V*wM6+ z%#T{+NVSfh=-AJWK7I1U@lYpf;(FS+70y(~Jdr317qSZQM0J7-y^HkZ`6HmIoHts& zQ9zsTFwZDWNa=k%F@BzqY%@GC!AwZA7BT;4s({)s|K#m`5e@p6`B@4v-FoMV%1AMd zz2b=p^-{`n^Tdi!2|a$y^|_uBI%y!ot|&Q`4U-}5xq^&XQ>to&k}}sjVa!M&b>MvP z6>l+(balen3K7lupDlKh(g4npY&s{U)BiX^+AN|+E1huSuPf;>Pc8Ck2=}{@p`t+aW+rMSI$wEnwb52hv;0e!w9e zZO`WzeFM?b-a@Qd&HA~Wgpen;r>h+Aovm+2!5l+(3;=Df72xHdjRagR~kIW}aM1(N7qU_;m>#bz_`j)?)e+$#_QTYD#*chAeay zIXi1`CMuNt7*9RlBaBY;Rikxo7*!T3u;aflIyX{@ZRuguhIul^+|O_0W(87>*KmIj z1srU{$WP3C%PnEdgHfU@_gmXKQwgtUYiQs)C8{s1C81o2sh!plG2ds)OV(&31p>x$ zUpD3gMUP%bE0YvZJY7foW-1WhWj$F`%VF_-9qDB#AUnODW^kMvZL*I17kc1;Y(1T@ z@IcC{^`tkOd5TpVsEd&Ye5Y?9?>Qd0X0?Hm<^DLN*hCJS{o!zVBON;GkMTz~k>@~v z!hw*bgwwYcIW&Y9ht#teg^8g~Y(!$Y7WKP;f#i5)hH{C|5 z%r9^Y+)is(C@`{~`%i9ApyPw>-2av5Pv0HXdx`?aPOl&T#+Ba0Sjh+(p+IuM;*qoNT`-p&c1crbASiY8*~w15{i? z2&aF3D>1$M9#Rcv{Av1bDqvh{(W^c5Z>|!)+~;U?TNScy?Ij8Gr(CQe=m_H%x1Nol z)|0ewbquE&y|j4tE1cdjzIxyDa9Yi{`MZyI)3rnm+^zS}tCbpfZre?2#y$6&xQA>S zHJHeK>YiOtV6i#(JyIx9kYm~56V!N7{d`a|92Bzf%f zXMX)D>dWJ|Fa8v{otERA?P*$Wt-wal({!1y=X1qr%5A~d+3gH_Zt2TIOUUN+b9-d$iF zXRhyrU7+DRSnG4rMY8pkka&p#pYmep z!*>PlXT*@_Sq1(cx|0eP>-Rh&jhpw!{F;#(b>rtA>>rOoG2wgd?LfX5-)_lt5lw$diTI@_sAMnOorL35ca8Z^qoYVSiuq4(xbIG)5_8r>(^lpU zimn}{16P7z*y0!+92A7KsAE)lBMAD+;}ot7!oFe0De+Da#wkzGE9RZt+kS$^4p87M z_xUkqe7Yi#`wcN(z1!yFbZi~-+IF0vt4hXci@ASMlo}q(_&U3*G1e%WmhygO)-RgA z{0c--$q5=iBnUG?qo|B|q1Jy+((ms|bf0*Vj7peq)%6tJKcU3Kwx{WM7bX6idzvzs zCzaLj45b$|=wAPU5!t0!ry8}l4DoM0Yb0PeOpK{+G%$m2FN zLyOF=Q8br%jhk9TQ&A@+K5k(c~OZ!C3@BJ^9+FHn9$9i*j82=xjcai1<{EvTnk;-Bwz&n1R_&1N3Y z@feDC*W%>hOH?qH_y3eDR2{0shWM*=mG__hGq2K5sS@UcSjX-dug`|7wDW-iZF81|d zmGQ~}=+`=qoE8N_UVV*%y#kT9FOFt?3IO=~#S;RM^)ZfQ%#YE;U8mMX0eDX{K^!d^8-#UnH&{0&2&N-%((5rn$T@eD_m3brA7wqAhCuAMzeVLw0@2*_ zHhKJ3A)@nLYQy~D#6;FpTEzT~-gha9{l5w2cd3U;i9xtWO$iFbCf}pj9!m5R-e+Eo z0w-hclXRK_A&c%)zsX8$s=H5iPDuDA8?m7Z~gFD zaF0IR^Tj9D+v&4S%X!5I^v9g}J|iAb{B12Z);*xEZM0Yt_ki{@kHhNuee#&7#ie}@ zDK^U=wW5b~rJ483`iHcCmp^tU^6RVq$iDoD*0FAudhR1~n8fycIP2300&woqBYOI8 z0OJ2Vq!u5T*E>C)qPPyMTK$BAJNRJ(>%FvQ-JVf-Pgu9X7yXVurTUJ3xNQ227A$Uo zw;LYOqRbXJAM=p978Z+=2&8BcZl#Z%S@R>3#+8MSz=#O<-qXaw^oCwEVv z$ZblzsCY)VnKxdYlt4?0l^E>%ocubne;AQKRmYTQf9E+#yR!ck^PJAau|M-~0=a$A zK(EJhDr5fFDzoQwNIsTl6mau=l z@;S}*WB=+_0$IOd{<YWwzptt0jSPogCQ_({KQ6QGjoCRF+U|ZyVzz4uE-xv~ zSO(dem!x`zYCe4^W_tm8J}6B!PbBdP5t+Q_(U7i{81YInf0~&VH3bw#_RpLzxx-O$bNe5k}ni^!XHnJzfvcm9AAfgr4Fp; zGyKjMvKb)9?)1-Ok|4(w%P*v7%YJIV&#V>6e%uB=5AU<9Q$A72IR(s1KGOYm?2oni z!hIX%*jw<0{;iI(~?-!JVWo%3S8 zU+E{>#5mBa2R=~@$H^8wztGffDrmlbrc=LsVZZPb^>y?^OTO+I{M>K2d?vLp5b3Tw zZt6gMapmzj6#(nypUCM>0Cp^6eHCsnzoR?&gkF63* znSX3_h~o#=K|UPA`XA?WsDS89GlC0CpOh=hx&IdH zKJf1k<*OjL#r)=XDtQ0k>+t30)4hb;ESUd0xtPXvRKwZ7lsfvWnJ-pGUzvy3s#Q51 zjaT8WZw0lUrpBFbqR6^~Ca~`8*5q*E^j|-=ZD4q9R zOTS{e&3^q9)^;7Y+@I@DB~;$Te*Iq7eC7DYF{+5HdEeG}l#+az9JH{EvN(@%ty4Ko zZpCr+Nam$f_~WXig1k6>h+#g-WGl9p^NJ|)KN;!-MHID3#<;j*YQ3K|^Bapvd`gBV z1tnz0ILnw3C8XDa^<#RLQp0sWbdD>b#7nFf`Jt42NQS#@%1HK}b(D^jkz)_`Z)N4Q zv_JcoCKY5m*$?gO%IH1oRc&#$27Q8HA;SJEif@PE;{l6Kay zuH}d-+PIxH^S@NmH7V=<^{=Fr-?*p3u4;;(!1n)h72V{0VUoOx7C&YF-iZpDbVr8X zSITMhbJoA<$2@7)!?Z4}qMTN&H)&MGeVjQCeO^t)yf2JxS3`k(p3#r0sbiBL-c{64 zeQQ6ozEw?q`F*DzzsbXh_nir~+;>!l!AY!>ZYD#`wLi3C0snqp9mz~MpSrV->IxW# zYWIh1KFV;bhV>X2xBB394fW-??4)%qo$Kz8iL3rlRjv#rk#($#A%k&fJ#q74u1nRE zW2g*M1~kwxKA&=Q1MB+95T|LR1H7ND>cza?uKo}x8mKStSEl3ZX=OO;h}krd>Wm!G zMGchRQjWRD8fX{C>D70bm&7a#a_Jm+&`!u6o$Jj;?pdg#mJ*K%_+HMw!##a$mq8IO6B z`7?JcR2cGq99?BtR%shl!0y8Cc5PkPVn$s%NDD>Ru632Sv19G-z*bZY6j8AQ1VOr# z7F+D@`ewgh=X&#;C+?nSZk>b3ncA4gyX9q_v5keJ$g6%K%6ERu%T&ML*ih#n`Y2xO z_J_`!$j`O2w_|7JmAb68V`Rlf>Zd3k|GACm@yU*#g)7}sO6LKVHe}T^_B4KIz`=Lz z>2y&zP)~a#=VOd*+{9 zkHzQMb5Nl=tiD|5Zau_nsPnh~o!d!o?Z6A-uk6%M=VvzyH|T56=fhNwba&tooj>ci z$DZv!)#Ar`4qO~qn|qTS*rIM7&bi|7e|%)s#`&1Cu{N7^$;Ww5YxCZ|e0(sZ4(nCP z$L4L7r!(ebC>pWfqkQafyCGdpn4(`V)>QR z5+CKi`8n89i%%2t^VWUwW}eT_N;hk3AThlwjQ&}d$KwleL$Y{+ zs}*MU6!B}i7N*;ydg8q;%!xDW@nCpiw#-wF2PPHbw%lrbJ)sbn4yndPD9i=IO?K*B zls(_o;x|K4PHCm*j4sL~7o8_Qr~31m+Kd$*X7P>M;!`O`XW^SozZK`H#9EAaP>lY< zXHNX9IIW2~7d53gQ^kXLJzKTJ7ve#?Uz8X2h`&(v@BZ#J7@bst_QJn%ukgOfHMqT6 zNq$j&_*$cqtS;QrkAo%Id2w|{Efc`{~750_+P@qtAcOR-L)>g@bmDV9j7!n>;1AN8!tv6V~HOFWP}Hkan)CRJ!zRhp%Q z2fHEMM#b)qTvw+w7YSRLcV21M_`{Ja50++fRuvZhS%%F5s&K7pDI>;JVd`&XdHjzm z3}0TBr-kny{6=-|LRGl!by+U+uFNOjgzFMsuIek{y26D|>?h1qi^{wzyx`O&mAFHA z%df)5MO-e&vZYm@5O!$bZDH+%%NW_NBC~TGIVz!s<`a&*no*kNDwJnPnbNG{7CiscImOE;zrIimub ztKRuln2wxBW%wkk0;i5H!J!WwIk7_tuIr+j%_m_rVjS7~Mscp_QJxnAinEbwKx?%Z z5`?`u*R43uWR%yLKu5MKEDYf?NA?|4iTi~mO%1NZ>$6KUM|i+XX~GC=t~z*>rl;_I zOOBQnHnuYNG$>6+U7xNf#nl^i_A6g0o~u`x4#P`v#5Lgrs}^C`ze+jz>TJRK8s(hc zKP=2;t1CNY?=H-1V;!ApoYk3!f+d``eJRADDP^2$6)H^Y!6HtaR+v$}syKOM72=m! zHJx6UF3i01>pNv1Da5>+>pNAQR*3r=*K#uSEX3gx8#o;pBq9Csvs^jGCS&&<&*K{g+yCB0?HFUagy&$bFj!s?M6y%KkWt}{Q2bkBg zxYMe)1$fT0gwu(*0?a&J&S^r9i3N*&!^Q}c@KN88KGnqYPrqVrfQbcMzQXdu#2wAQ zqE9JR@xPhHL-Gx;s+ie!^>=)kWoE0dcK7*g??glR||J${=~ItGdG%lA*sBDZ%+O~=R6jc?3sse{<3h1 z&gad4WoFOQIv2Ue%w0O4*JFv9Rnqd%kYnch-}187cr!gZ=4H$-GsEWPrBgSv_)^8g z;A^JiGuey!W|l5$#}%W@{NCM;fyK?d>SM=oqs=_J-;NUtnECHLonxG2=JRs)T%2iQ z(Ruc4*vHKN^X(Pmn)&mAJ>P_w_`A-LRh?xLKa{<=5KP>t^HP0+Ok{u^pNE^cy1gAM z-8HdSw0I+anb_j5ysTc`O!J34s^ywFccu6^hML(~=SENLFmuxSpWq-fi`xAZ?~Iw_ zQ+{GqIWzMF{6f@g6BiE5!{+BrOwc(_({>Z_Z(eb{n3((~FFC=)WutX&&fUZbDRwN? z*2MRnWUtEW{<2%ey-YmyUE}#;hCnG1{FUTkBjf~1$h(ofBeB@S$*L;i|I7R(} zt{A!EY9USv3|$;1T^ezKj3ed7vqM<*k_W)xxnMMm*36rrW2k<*_R;k^k)&gxW@ z?H!Cf<*9QleT>|GyeR8FHn8=LqReh=aRZC^7o+1F z1No~MO)CwYRK7S*>w9^u#re-51Fy|0&bAE0$G8~SSoSVuyn$VHzR2-k1N+}8 z%BFh^>?^w%b;H2SXGJ*kyMe*AiZG?JkrPiA=I1f-*s-QuYo(YK55Pd`jsxq=N<+&$STY_Qw^+SD9l93-<04FC^5jqEnhyMW?${s zAL2VZVdC9w?~!+eSvUsqDOEPJSf}?Gx!z2#WW6svRr>q~%r=|(=GsS$dTC~y_>|sB zAMIHG3CHSKcx=Qc9H?Spr+VspbW(CW<}(}|Eo|`VGdvGVe{}wW4^=HZBz~W2@n$-A z`3lEI7IwS%6)opk_`b(itXW{;?Uvu**+kc)-{7{;Lf6{gaip<@Kev3x9=$H0^XCsz z^_)5<{yts$K;QpsxtY1a(!-0)JhbK;0=t{pyxCW5{>{wK{l8#sCo>oMe8#z9W==o* z33fHijNJAS>#|HNrv6NK<4kP4>ND01mz*VjLHcMD|4RLg9TTPBb3egBuhTw$#MO63 zCV6~BeM5&aH#ZyH&}`yD=Xm3}Pv9$P!;TJ{|> zj+i(p;2rXpGV`wcJB*lXR$TrL&)%C^@6Y$BUcthG)jlA4ne_RT512X1!ePlDQFEGw zgHL_JhUpewSf@B=rbT$aFEHJ)@VBHd$bZj5-!os)?yiL{`@W%hmPLK!KVx`DD~*G{ zU|$<6>li-cc&bJHr$3{66DtcY5nt2|3#Zf_`udyv@&?= zJEZ7;MrXdo>0cHuTKg7HhgrE!adyu*E8B=StH>EEJ4}9q*WIl=RqhQg?y}N-uy%b z{|ju{VdZR(7wGYul_`p&FD=w_O?i&d6|BsoyvA&U{&&$cI5=4U&;K%exRrnGd#ZR} z^Y!T|9v-*yW0|K2?_=eZt4}avyRI#s;PD?;*2u`kb3M-pXYt}`Jd?zC*r2$T8C4#` z^Qwgx4?ITCbPKO6%EgL@7Iq*11l`_QnAP(s-fgyUg?b>R1X)x+5P#t{3lDGoFRx(X z^VKgfE3cK)XT5~)Aqy)HdWn(4E$n>%1wM_jDDUgJA_c1R;>l1h%Zknh0x9;KF zc&(dwD5ss)eEhtN<9}&>Lhj=4BUV;uApYMWnxAKP@SC5NcRcQ(`By8G7u~^)XI7g1 zbMS}OyPkMn7i#|J-_F6>8|pw6eH%-g+W5GD_(&_-I6Uud)C;%rt9paYv|1S^p5iN) zwI7l*@vNwgcssG@qQY2R*GaudlLZEVo_Ca&JIvF72M`0>ofp0`r4 zZ;y@J#-yO!M;lvyOUC7+Hl{2{MhSZ#Vepet_mqvh4klq!aUZtqmW1t^uT`UyaNonm z3U`x{(96b?*Hd8mY-RKIDR}qY%8Xw|uyG)(cbisvm|z5gU1;-^l?XJvs(8Ay6*(HZ;dap_Pr5fBvhHl?@IhV){BO{|-rn(|aoeCne&}ARCL7OM*?; z-mMccX0d)3lOR41D-Veey@JuoX&Ld@7;ojnQSta7xo!F|4s#@T)u+axN4ACaI>lk_ z8Y|ayjzwxg8`E-Qk@?EXIX}g3uitm_k49Wq8yyWX*dzIOT^EfF`hI^)6tZjU{Y_Db zu4LoeLpKn(LF1cy1DS z6M^sBZ0hTK9rGQvE;qt)e3p%wnc)~d%*HQoRoA*;WBb@J{H^sJ*XTMLwe^t?5{@dB ze7I|E7~a3PvF(9tn7ml?FzFh$bg=Pe(J-8NYGsduVHmX0%9b6&5wy?B_v^3Yn&!KI zjc|;gVPzTB&HQ4ld>3{N>m>&T8(u@Qr;Y35LvTFS#;zAbk$%L+b~i&XZ>ddn)2rg& z)_$%Zg6sOc6Ru)rdmHZ$zlu3GrT@o;V7m6n(Dk8k9&P30nb*+wtJZt@HEe8e&SPck?5o&#-omc)L$Fl#=I6jrq#d@f+Tv@dDErkx>u^{0=YaopjL`lb zlpKL9{cg-35sII*pG!ufaSzGIt4Q?G_%_VBfx?9(|6`-@udW$gqj9N(?prSgJ@#2R zdQ}WgAGOdjB^K$OEjsfTizeeOTz)+cRWi)9c8wDslZCt5#>);_xc*!`LfTts{+xh8 z`z>sDI05xSEHuR=;-c*C0An&HzqW9Jc=qSaw(wDt6!j;vaKgHqc=X7^{Ecs6{3_|= zMYk09S@^b9DndG1c(Xt%0tZ{T_G2pk*=gb4{prY*-tH{@Rja7htBds93E3C%NyjQ4 z?9@IJtNK|udr1~PT(Zz3E(=9`^nTads1qfBK|Johx~}lZL8{e4pXeOK%RY6wcLy!> zy|j~e(BEWXV#HlUM_RZ}e8{^mT9{|leYBdc`Ox*qEDNjt`2d^iS=b}zK7ty^FAMpP zXUoi*E)UQ&#mw^)?&FpG!d*f4v2VKK+^Y|8D^Y%9yN5Vvm0uR{5La)S*{9YcaKWu!CIa|zpSycIQ#k*;Bo}nVlT(IdW{9BocV^6TTj+upTHs*8yw5P(fSs)AD523AIx;~OT#>k@80HA9KR#Kc>gWrZLM{vdJ6%`W)?Vm z6ULLe@1H3cSwi-GLNYc@kw5S*36q9cm|GwTKOUKdJ559@#qkA0)Em;MabA)h?P2Dz zs8}35Zf0KBSj?_s;rXZ-1a+}+=Fe!%-)-ULgVE~kXJP92DA>=nuymOl_?05RbAKd! zj#yYBIs(CSeTd64(=S@?eO7v&vWQ_Nd7_6Sv-`!b8mJQzZ-pM_Bo4*-F%p| z@eIC1+Gy={2CmZAZJwV&{WdlZ*mf3EM%w5u=?_&$>^T zl`V44qoVA}a>onE-XXu^)CB~~kBsuUfM;(k%5h#q>&F)M?{FDEq&Iw;sV}C+-!knA z8tCf3?h^bZzeSQR;-LJt(m5A!bc5u_b{@;*5586(roMm6?|Xk11LSXSX?P9|BCH(v z&sp4au`$2>8LZ!7qxETA zJLyB)jMI3x*oT$YpTf-&KK!fiDLnArm>!VlH&^1kes`b`~Z?xXx+5MJ%` z;nHtG=wsEql?p~Y@QAPkb<=%D^vCkMz6`=mZ!vY&N32O({t zjU9HLK(hoJ>wF8uSVtdz>=g(FdHgjs5c3E7@apR0us)TYnQ|P#^1D{m48&PC8$X8z zVrKyxUyV6|i*>Brbu187Bdx49HxON$*tk^v%-+njadr3OxEW^STJ`^Y)KvB?_!w4g z^AXSLF&sDfF#US~<`?o|-8%tzD*JfgLV)UtdcJ|jFtCD+KkbjBo&4fUOOJy&R{A>y zzsV0nJeRuz+LP4 zV#N{kH0XPqj-ZC*qm6K#-Co-G%=<99+WD}Z_aXEh=fi_%41D= zUp{Q+;E&25z#;#w&jHkVE;*cj0QY)pJ*pf)d&zU5>-+J(f)CFI?uTKu55xTTWBQ*y z?E1_PljF25-~Di7gpKdZ?#H$#ic?SSN4ET;ZD$U^{i2m#jr`GF`{eC-U4t#+Q1HjF z!B*jPkDzgH`HS8GIIZ~SWzA#gWiLNx(Q!2Ov~bYr_t z2x}Ej-99HAU0(}Nl{$%z`rLWuN%YTeSuj$4|N5Hw`u%C#Tr2z1<1}2Q=Y7?0aE-(l39VrER^ z!#LXCEdC^aEYUc=k2r`AQ>;w;=OFq8DbAg80FTF5xqP!9Jib|2{Ei=dXj*ebm^!qX4^7uZ--cu&taHu0>e&+KsNiE4hhykGwC-}{hO)Q2+%@52lEfn}EO zMX=VphhZw0VNZkI_`QzoN`XDX+t^q>bPv|$x6veA>)4?-PT9K`=}z+h=Lo;O)ym4t_Q0h0 z*0cFu^q;J}i**kiMq2n)c-`U~<=;*8!--lJ&RU>-CO>3a`GeSg%*=#kesGf?a;n=t zob)nt-GV&`(zWG3yD{2b`K{!gSbk3V`P5yAZ>)K4zZ=&NS=qMKZq(Dhoik?_uDj}a zdhCMXoQ-QL?m~@d8>_e2iI$2-rj6W*S<-t|qIY6y3&mM=cA?{E3nK>X#PD8Ly7t(K zCFkY8Chfpw#WPOA3GemR`dD`$TmJU8t~>Bq@$8Hx+cD#={O|tTQE!^$d-FCde_&(4 z$Zd!*D^A$&i$(VoCrtLmd&SMRQ(N)mrDwh2^1ny!!00CyzIe19zPII{{@jKaPTFs)w&9E7(T*Q|QCxP;wf|N; zuWl7D*H#qJxKf3$o~*pb#j@K_u8;Pi&o<;!-s1em?YOed!tmNV(Jb4{VUu@YS#{+{ z>Tid$=D%dCZKyHQ%vVjfV~EAfRoDRs<^9gq--!v4s#omZiDE6xtmeNHXFHi`w{{mY zo|<@|=x(h0Wa6>6yV2I(%;PD0@VvB{*}w0@B>9O!m;CTzjG04(Gq3W^#1YSg*Z@ejhj+T`ks1$(XhfR!a9e~BJlvjTkfK8re`ri-0$600u z%0A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 @8 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Ð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%0D^uginSQ=6JKf_cY1zR5fa547sS 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 z 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 z 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�T7i1ys+KPtTQC$Aw$liSzfpzRDVNN*l5(oAOig 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

      `w;0L&vxxg8YvfY}Kg$v~^uNlhd5 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%0D(;4q&4 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 @u%s*I_K~!mpfNa;iw1%!Xua>G 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�N)pcEqkM?O5oAs7` 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